42202.json 238 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653
  1. {
  2. "skeleton": { "hash": "yJ3B1ipySEyPe4gTl2YYGS7o3gI", "spine": "3.6.53", "width": 102, "height": 193, "images": "./images/" },
  3. "bones": [
  4. { "name": "root" },
  5. { "name": "bone", "parent": "root", "x": 0.67, "y": 0.44 },
  6. { "name": "bone2", "parent": "bone", "length": 16.52, "rotation": 87.4, "x": 4.13, "y": 65.25 },
  7. { "name": "bone3", "parent": "bone2", "length": 21.46, "rotation": -2.41, "x": 16.52 },
  8. { "name": "bone4", "parent": "bone3", "length": 6.24, "rotation": 7.74, "x": 22.3, "y": 0.03 },
  9. { "name": "bone5", "parent": "bone4", "length": 49.35, "rotation": -0.31, "x": 6.8, "y": -0.92 },
  10. { "name": "bone6", "parent": "bone5", "length": 17.28, "rotation": 153.22, "x": 74.06, "y": 1.04 },
  11. { "name": "bone7", "parent": "bone6", "length": 16.72, "rotation": 12.05, "x": 17.28 },
  12. { "name": "bone8", "parent": "bone7", "length": 12.48, "rotation": 10.94, "x": 16.72 },
  13. { "name": "bone9", "parent": "bone5", "length": 17.91, "rotation": 148.11, "x": 66.83, "y": 19.4 },
  14. { "name": "bone10", "parent": "bone9", "length": 13.46, "rotation": 21.75, "x": 17.91 },
  15. { "name": "bone11", "parent": "bone10", "length": 9.62, "rotation": 17.18, "x": 13.46 },
  16. { "name": "bone12", "parent": "bone5", "length": 17.44, "rotation": -163.51, "x": 68.18, "y": -13.35 },
  17. { "name": "bone13", "parent": "bone12", "length": 11.11, "rotation": -34.44, "x": 17.44 },
  18. { "name": "bone14", "parent": "bone13", "length": 6.33, "rotation": -32.98, "x": 11.11 },
  19. { "name": "bone15", "parent": "bone5", "length": 19.89, "rotation": -161.1, "x": 48.37, "y": -21.44 },
  20. { "name": "bone16", "parent": "bone15", "length": 17.7, "rotation": -26.45, "x": 19.89 },
  21. { "name": "bone17", "parent": "bone16", "length": 18.38, "rotation": -15.76, "x": 17.7 },
  22. { "name": "bone18", "parent": "bone5", "length": 20.4, "rotation": 164.78, "x": 40.64, "y": 31.14 },
  23. { "name": "bone19", "parent": "bone18", "length": 14.55, "rotation": 6.56, "x": 20.4 },
  24. { "name": "bone20", "parent": "bone19", "length": 8.84, "rotation": 10.64, "x": 14.55 },
  25. { "name": "bone21", "parent": "bone5", "x": 44.73, "y": -43.62 },
  26. { "name": "bone22", "parent": "bone5", "length": 7.78, "rotation": -163.98, "x": 6.86, "y": -33.39 },
  27. { "name": "bone23", "parent": "bone5", "length": 8.8, "rotation": 151.02, "x": 10.08, "y": 25.56 },
  28. { "name": "bone24", "parent": "bone5", "length": 13.78, "rotation": 2.78, "x": 10.63, "y": 19.4 },
  29. { "name": "bone25", "parent": "bone5", "length": 16.11, "rotation": 6.5, "x": 10.03, "y": -9.77 },
  30. { "name": "bone26", "parent": "bone5", "length": 6.4, "rotation": -1.02, "x": 13.59, "y": 8.04 },
  31. { "name": "bone27", "parent": "bone5", "length": 7.34, "rotation": -4.85, "x": 26.19, "y": 7.04 },
  32. { "name": "bone28", "parent": "bone3", "length": 19.36, "rotation": 160.08, "x": 20.36, "y": 7.56 },
  33. { "name": "bone29", "parent": "bone28", "length": 19.09, "rotation": 5.62, "x": 19.36 },
  34. { "name": "bone30", "parent": "bone29", "length": 16.15, "rotation": -13.62, "x": 19.09 },
  35. { "name": "bone31", "parent": "bone3", "length": 21.19, "rotation": -166.21, "x": 21, "y": -15.57 },
  36. { "name": "bone32", "parent": "bone31", "length": 17.12, "rotation": 2.63, "x": 21.19 },
  37. { "name": "bone33", "parent": "bone32", "length": 13.01, "rotation": 5.09, "x": 17.12 },
  38. { "name": "bone34", "parent": "bone3", "x": 16.36, "y": -10.65 },
  39. { "name": "bone35", "parent": "bone2", "length": 9.16, "rotation": 172.98, "x": -2.08, "y": 2.34 },
  40. { "name": "bone36", "parent": "bone35", "length": 8.88, "rotation": -1.3, "x": 9.16 },
  41. { "name": "bone37", "parent": "bone2", "length": 21.63, "rotation": -176.02, "x": -7.45, "y": -9.92 },
  42. { "name": "bone38", "parent": "bone37", "length": 26.13, "rotation": 0.14, "x": 21.63 },
  43. { "name": "bone39", "parent": "bone38", "length": 13.08, "rotation": -71.4, "x": 26.13 },
  44. { "name": "bone40", "parent": "bone2", "length": 20.07, "rotation": -177.4, "x": -13.41, "y": 6.96 },
  45. { "name": "bone41", "parent": "bone40", "length": 20.24, "rotation": 0.49, "x": 20.07 },
  46. { "name": "bone42", "parent": "bone41", "length": 15.71, "rotation": -63.64, "x": 20.24 },
  47. { "name": "bone43", "parent": "bone5", "length": 12.15, "rotation": -153.69, "x": 69.21, "y": -18.27 },
  48. { "name": "bone44", "parent": "bone43", "length": 9.36, "rotation": 2.24, "x": 12.15 },
  49. { "name": "bone45", "parent": "bone2", "length": 20.58, "rotation": -179.56, "x": -7.71, "y": -6.36 },
  50. { "name": "bone46", "parent": "bone45", "length": 19.99, "rotation": 1.05, "x": 20.58 },
  51. { "name": "bone47", "parent": "bone46", "length": 19.59, "rotation": -6.86, "x": 19.99 },
  52. { "name": "bone48", "parent": "bone2", "length": 20.58, "rotation": -179.56, "x": -7.82, "y": 8.54 },
  53. { "name": "bone49", "parent": "bone48", "length": 19.99, "rotation": 1.05, "x": 20.58 },
  54. { "name": "bone50", "parent": "bone49", "length": 19.59, "rotation": -6.86, "x": 19.99 }
  55. ],
  56. "slots": [
  57. { "name": "toufa8", "bone": "bone5", "attachment": "toufa8" },
  58. { "name": "toufa7", "bone": "bone11", "attachment": "toufa7" },
  59. { "name": "toushi", "bone": "bone21", "attachment": "toushi" },
  60. { "name": "zuoshou1", "bone": "bone28", "attachment": "zuoshou1" },
  61. { "name": "zuotui", "bone": "bone36", "attachment": "zuotui" },
  62. { "name": "youtui", "bone": "bone37", "attachment": "youtui" },
  63. { "name": "youtui 2", "bone": "root" },
  64. { "name": "zuotui2", "bone": "bone45" },
  65. { "name": "zuotui3", "bone": "bone48" },
  66. { "name": "qunzi", "bone": "bone35", "attachment": "qunzi" },
  67. { "name": "shuyao", "bone": "bone2", "attachment": "shuyao" },
  68. { "name": "xiong", "bone": "bone3", "attachment": "xiong" },
  69. { "name": "bozi", "bone": "bone4", "attachment": "bozi" },
  70. { "name": "zuoereerhuan", "bone": "bone23", "attachment": "zuoereerhuan" },
  71. { "name": "lian", "bone": "bone5", "attachment": "lian" },
  72. { "name": "zuoyan", "bone": "bone24", "attachment": "zuoyan" },
  73. { "name": "youyan", "bone": "bone25", "attachment": "youyan" },
  74. { "name": "meimao", "bone": "bone27", "attachment": "meimao" },
  75. { "name": "biyan", "bone": "bone26", "attachment": "biyan" },
  76. { "name": "zuiba", "bone": "bone5", "attachment": "zuiba" },
  77. { "name": "youerduo", "bone": "bone5", "attachment": "youerduo" },
  78. { "name": "toufa6", "bone": "bone22", "attachment": "toufa6" },
  79. { "name": "toufa5", "bone": "bone15", "attachment": "toufa5" },
  80. { "name": "toufa4", "bone": "bone12", "attachment": "toufa4" },
  81. { "name": "toufa3", "bone": "bone43", "attachment": "toufa3" },
  82. { "name": "toufa2", "bone": "bone9", "attachment": "toufa2" },
  83. { "name": "toufa1", "bone": "bone6", "attachment": "toufa1" },
  84. { "name": "youshou1", "bone": "bone31", "attachment": "youshou1" },
  85. { "name": "xionghua", "bone": "bone34", "attachment": "xionghua" }
  86. ],
  87. "skins": {
  88. "default": {
  89. "biyan": {
  90. "biyan": { "x": 3.97, "y": -2.19, "rotation": -91.4, "width": 48, "height": 15 }
  91. },
  92. "bozi": {
  93. "bozi": {
  94. "type": "mesh",
  95. "uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
  96. "triangles": [ 1, 2, 3, 1, 3, 0 ],
  97. "vertices": [ 1, 4, -4.78, -7.86, 1, 1, 4, -4.17, 5.12, 1, 1, 4, 7.82, 4.55, 1, 1, 4, 7.2, -8.43, 1 ],
  98. "hull": 4,
  99. "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
  100. "width": 13,
  101. "height": 12
  102. }
  103. },
  104. "lian": {
  105. "lian": {
  106. "type": "mesh",
  107. "uvs": [ 1, 1, 0.4242, 1, 0, 1, 0, 0, 0.42192, 0, 1, 0, 0.35804, 0.33631, 0.3626, 0.78124 ],
  108. "triangles": [ 6, 3, 4, 5, 7, 6, 2, 3, 6, 2, 6, 7, 4, 5, 6, 0, 1, 7, 2, 7, 1, 0, 7, 5 ],
  109. "vertices": [ -6.77, -36.23, -5.05, 4.61, -3.78, 34.7, 67.16, 31.71, 65.9, 1.78, 64.17, -39.22, 42.23, 7.32, 10.66, 8.33 ],
  110. "hull": 6,
  111. "edges": [ 4, 6, 0, 10, 6, 8, 8, 10, 8, 12, 12, 14, 0, 2, 2, 4, 14, 2 ],
  112. "width": 71,
  113. "height": 71
  114. }
  115. },
  116. "meimao": {
  117. "meimao": { "x": 2.94, "y": -1, "rotation": -87.56, "width": 49, "height": 10 }
  118. },
  119. "qunzi": {
  120. "qunzi": {
  121. "type": "mesh",
  122. "uvs": [ 0.75711, 0.20676, 0.80219, 0.27788, 0.89321, 0.42147, 1, 0.59538, 1, 0.73279, 1, 1, 0.73382, 0.99556, 0.30389, 0.98668, 0, 1, 0, 0.71562, 0.04525, 0.60433, 0.08031, 0.51809, 0.17435, 0.32271, 0.20437, 0.20408, 0.25601, 0, 0.43913, 0, 0.53931, 0, 0.63586, 0, 0.35535, 0.37179, 0.32467, 0.67697, 0.37243, 0.25677, 0.33049, 0.52555, 0.30977, 0.83184, 0.59711, 0.23288, 0.63656, 0.32341, 0.67688, 0.47086, 0.70516, 0.63694, 0.72108, 0.78185 ],
  123. "triangles": [ 10, 11, 19, 19, 9, 10, 22, 9, 19, 22, 8, 9, 19, 26, 27, 27, 22, 19, 6, 22, 27, 7, 22, 6, 7, 8, 22, 23, 16, 17, 23, 17, 0, 20, 14, 15, 13, 14, 20, 15, 16, 23, 20, 15, 23, 12, 13, 20, 24, 23, 0, 24, 0, 1, 18, 12, 20, 24, 18, 20, 24, 20, 23, 25, 24, 1, 25, 1, 2, 21, 12, 18, 11, 12, 21, 25, 21, 18, 25, 18, 24, 26, 25, 2, 26, 2, 3, 19, 11, 21, 26, 19, 21, 26, 21, 25, 26, 3, 4, 27, 26, 4, 5, 6, 27, 5, 27, 4 ],
  124. "vertices": [ 2, 35, -7.52, 18.86, 0.97505, 36, -17.1, 18.47, 0.02495, 2, 35, -5.58, 21.88, 0.9491, 36, -15.23, 21.54, 0.0509, 2, 35, -1.66, 28, 0.89103, 36, -11.45, 27.74, 0.10897, 2, 35, 3.12, 35.2, 0.8485, 36, -6.84, 35.05, 0.1515, 2, 35, 7.72, 35.98, 0.83027, 36, -2.25, 35.93, 0.16973, 2, 35, 16.68, 37.49, 0.80335, 36, 6.67, 37.66, 0.19665, 2, 35, 19.16, 21.98, 0.50182, 36, 9.5, 22.21, 0.49818, 2, 35, 23.1, -3.07, 4.1E-4, 36, 14.01, -2.76, 0.99959, 2, 35, 26.54, -20.68, 0.10115, 36, 17.85, -20.28, 0.89885, 2, 35, 17.01, -22.29, 0.19822, 36, 8.36, -22.11, 0.80178, 2, 35, 12.83, -20.29, 0.30055, 36, 4.14, -20.2, 0.69945, 2, 35, 9.59, -18.74, 0.4283, 36, 0.86, -18.73, 0.5717, 2, 35, 2.12, -14.38, 0.82671, 36, -6.71, -14.54, 0.17329, 2, 35, -2.16, -13.31, 0.95557, 36, -11.01, -13.56, 0.04443, 2, 35, -9.51, -11.47, 0.99995, 36, -18.4, -11.89, 5.0E-5, 1, 35, -11.31, -0.81, 1, 1, 35, -12.3, 5.01, 1, 1, 35, -13.25, 10.63, 1, 1, 35, 1.98, -3.57, 1, 2, 35, 12.51, -3.63, 0.16329, 36, 3.44, -3.55, 0.83671, 1, 35, -2.05, -3.23, 1, 2, 35, 7.38, -4.15, 0.99795, 36, -1.68, -4.19, 0.00205, 2, 35, 17.85, -3.61, 9.0E-5, 36, 8.77, -3.41, 0.99991, 2, 35, -5.06, 9.7, 0.98702, 36, -14.43, 9.37, 0.01298, 2, 35, -2.42, 12.51, 0.97384, 36, -11.85, 12.24, 0.02616, 2, 35, 2.13, 15.69, 0.94176, 36, -7.38, 15.53, 0.05824, 2, 35, 7.42, 18.28, 0.49947, 36, -2.15, 18.24, 0.50053, 2, 35, 12.12, 20.03, 0.4542, 36, 2.51, 20.09, 0.5458 ],
  125. "hull": 18,
  126. "edges": [ 14, 16, 34, 0, 4, 6, 28, 30, 24, 22, 16, 18, 24, 36, 0, 2, 2, 4, 24, 26, 26, 28, 30, 40, 40, 36, 26, 40, 36, 42, 42, 38, 22, 42, 18, 20, 20, 22, 20, 38, 14, 44, 44, 38, 18, 44, 6, 8, 8, 10, 30, 32, 32, 34, 0, 46, 46, 40, 32, 46, 2, 48, 48, 36, 46, 48, 4, 50, 50, 42, 48, 50, 6, 52, 52, 38, 50, 52, 8, 54, 52, 54, 10, 12, 12, 14, 54, 12 ],
  127. "width": 59,
  128. "height": 34
  129. }
  130. },
  131. "shuyao": {
  132. "shuyao": {
  133. "type": "mesh",
  134. "uvs": [ 1, 1, 0.37916, 1, 0, 1, 0, 0, 0.42621, 0, 1, 0, 0.37916, 0.59072 ],
  135. "triangles": [ 6, 3, 4, 2, 3, 6, 1, 2, 6, 6, 4, 5, 0, 6, 5, 1, 6, 0 ],
  136. "vertices": [ -3.96, -15.94, -4.81, 2.66, -5.33, 14.03, 17.65, 15.07, 18.23, 2.3, 19.01, -14.9, 4.59, 3.09 ],
  137. "hull": 6,
  138. "edges": [ 4, 6, 0, 10, 6, 8, 8, 10, 8, 12, 0, 2, 2, 4, 12, 2 ],
  139. "width": 30,
  140. "height": 23
  141. }
  142. },
  143. "toufa1": {
  144. "toufa1": {
  145. "type": "mesh",
  146. "uvs": [ 1, 0.30985, 1, 0.40416, 1, 0.54925, 1, 0.68225, 1, 0.83943, 1, 1, 0.38057, 1, 0, 1, 0, 0.82009, 0, 0.61696, 0, 0.48638, 0, 0.28325, 0, 0.20345, 0, 0, 0.65261, 0, 1, 0, 0.47125, 0.34854, 0.38964, 0.64598, 0.51084, 0.27246, 0.41862, 0.54036, 0.38504, 0.82554 ],
  147. "triangles": [ 6, 20, 5, 20, 4, 5, 20, 6, 8, 6, 7, 8, 20, 3, 4, 20, 17, 3, 20, 8, 17, 8, 9, 17, 17, 19, 3, 19, 2, 3, 19, 17, 10, 17, 9, 10, 19, 16, 2, 19, 10, 11, 16, 1, 2, 16, 19, 11, 16, 18, 1, 18, 0, 1, 18, 16, 12, 18, 14, 0, 14, 15, 0, 16, 11, 12, 14, 18, 13, 18, 12, 13 ],
  148. "vertices": [ 3, 6, 4.28, 20.21, 0.63731, 7, -8.5, 22.48, 0.28319, 8, -20.49, 26.86, 0.0795, 3, 6, 9, 22.35, 0.43749, 7, -3.43, 23.58, 0.40118, 8, -15.31, 26.98, 0.16133, 3, 6, 16.27, 25.64, 0.17886, 7, 4.37, 25.28, 0.45958, 8, -7.33, 27.17, 0.36156, 3, 6, 22.93, 28.66, 0.05225, 7, 11.51, 26.84, 0.35789, 8, -0.01, 27.34, 0.58986, 3, 6, 30.81, 32.22, 0.00484, 7, 19.96, 28.69, 0.18781, 8, 8.63, 27.55, 0.80735, 2, 7, 28.59, 30.57, 0.1128, 8, 17.46, 27.76, 0.8872, 1, 8, 18.11, 0.51, 1, 2, 7, 37.97, -12.42, 0.00206, 8, 18.5, -16.23, 0.99794, 2, 7, 28.3, -14.53, 0.1288, 8, 8.61, -16.46, 0.8712, 3, 6, 37.81, -12.91, 0.0286, 7, 17.38, -16.91, 0.63875, 8, -2.56, -16.73, 0.33265, 3, 6, 31.27, -15.87, 0.15306, 7, 10.37, -18.44, 0.77267, 8, -9.74, -16.9, 0.07427, 3, 6, 21.09, -20.48, 0.57562, 7, -0.55, -20.82, 0.42431, 8, -20.91, -17.17, 6.0E-5, 2, 6, 17.09, -22.29, 0.7342, 7, -4.84, -21.76, 0.2658, 2, 6, 6.9, -26.9, 0.91271, 7, -15.77, -24.14, 0.08729, 2, 6, -4.94, -0.75, 0.9996, 7, -21.89, 3.91, 4.0E-4, 2, 6, -11.25, 13.18, 0.9697, 7, -25.15, 18.84, 0.0303, 1, 6, 15.81, -0.11, 1, 1, 7, 15.29, 0.18, 1, 1, 6, 11.28, -0.25, 1, 2, 7, 9.34, 0.19, 0.99826, 8, -7.21, 1.58, 0.00174, 1, 8, 8.51, 0.48, 1 ],
  149. "hull": 16,
  150. "edges": [ 26, 28, 28, 30, 10, 12, 12, 14, 22, 32, 32, 2, 22, 24, 24, 26, 28, 36, 36, 32, 24, 36, 2, 0, 0, 30, 36, 0, 18, 34, 34, 6, 18, 20, 20, 22, 32, 38, 38, 34, 20, 38, 2, 4, 4, 6, 38, 4, 14, 16, 16, 18, 12, 40, 40, 34, 16, 40, 6, 8, 8, 10, 40, 8 ],
  151. "width": 44,
  152. "height": 55
  153. }
  154. },
  155. "toufa2": {
  156. "toufa2": {
  157. "type": "mesh",
  158. "uvs": [ 1, 0.08298, 0.87725, 0.20226, 0.84026, 0.23821, 0.79604, 0.3182, 0.71892, 0.45768, 0.71961, 0.50234, 0.72057, 0.56473, 0.72272, 0.70392, 0.74732, 0.78746, 0.80992, 1, 0.37009, 1, 0.20326, 1, 0.07618, 0.816, 0, 0.7057, 0, 0.52549, 0, 0.44341, 0, 0.35062, 0.27716, 0.17055, 0.36251, 0.11509, 0.48067, 0.07081, 0.66963, 0, 1, 0, 0.7303, 0.1829, 0.37768, 0.46303, 0.31322, 0.69321, 0.77459, 0.15286, 0.62175, 0.26913, 0.42977, 0.42165, 0.35335, 0.5499, 0.33384, 0.80446 ],
  159. "triangles": [ 29, 7, 8, 12, 24, 29, 11, 12, 29, 10, 29, 8, 11, 29, 10, 10, 8, 9, 28, 14, 15, 23, 28, 15, 28, 23, 6, 24, 14, 28, 28, 6, 7, 24, 28, 7, 13, 14, 24, 29, 24, 7, 12, 13, 24, 25, 20, 21, 0, 25, 21, 19, 20, 25, 22, 19, 25, 18, 19, 22, 1, 25, 0, 2, 25, 1, 22, 25, 2, 26, 18, 22, 17, 18, 26, 3, 22, 2, 26, 22, 3, 27, 17, 26, 16, 17, 27, 23, 15, 16, 4, 26, 3, 27, 26, 4, 27, 23, 16, 27, 4, 5, 23, 27, 5, 23, 5, 6 ],
  160. "vertices": [ 1, 9, -7.28, 3.57, 1, 1, 9, -0.53, 4, 1, 1, 9, 1.5, 4.13, 1, 2, 9, 5.58, 5.21, 0.99733, 10, -9.53, 9.41, 0.00267, 3, 9, 12.68, 7.1, 0.73823, 10, -2.23, 8.53, 0.25849, 11, -12.46, 12.79, 0.00327, 3, 9, 14.65, 8.24, 0.50425, 10, 0.03, 8.86, 0.47912, 11, -10.21, 12.43, 0.01663, 3, 9, 17.41, 9.82, 0.2235, 10, 3.18, 9.31, 0.70717, 11, -7.07, 11.93, 0.06933, 3, 9, 23.57, 13.36, 0.00717, 10, 10.2, 10.31, 0.52792, 11, -0.06, 10.81, 0.46491, 2, 10, 14.35, 11.47, 0.2209, 11, 4.24, 10.69, 0.7791, 1, 11, 15.18, 10.39, 1, 1, 11, 13.44, -0.02, 1, 1, 11, 12.78, -3.97, 1, 2, 10, 17.95, -4.3, 0.09103, 11, 3.03, -5.43, 0.90897, 2, 10, 12.62, -6.86, 0.7775, 11, -2.82, -6.31, 0.2225, 2, 9, 24.18, -6.22, 0.08764, 10, 3.52, -8.1, 0.91236, 2, 9, 20.54, -8.28, 0.41556, 10, -0.63, -8.66, 0.58444, 2, 9, 16.42, -10.61, 0.76849, 10, -5.32, -9.3, 0.23151, 1, 9, 5.15, -9.33, 1, 1, 9, 1.68, -8.94, 1, 1, 9, -1.68, -7.59, 1, 1, 9, -7.06, -5.41, 1, 1, 9, -10.96, 1.49, 1, 1, 9, 0.35, 0.44, 1, 3, 9, 16.95, 0.11, 0.99075, 10, -0.86, 0.46, 0.00925, 11, -13.54, 4.66, 0, 2, 10, 10.98, 0.5, 0.97304, 11, -2.21, 1.21, 0.02696, 1, 9, -1.51, 0.61, 1, 1, 9, 5.46, 0.34, 1, 2, 9, 14.5, 0.16, 0.99677, 10, -3.12, 1.41, 0.00323, 3, 9, 21.09, 1.78, 0.00389, 10, 3.61, 0.47, 0.99524, 11, -9.27, 3.36, 8.8E-4, 2, 10, 16.54, 1.75, 0.01288, 11, 3.46, 0.76, 0.98712 ],
  161. "hull": 22,
  162. "edges": [ 40, 42, 20, 22, 0, 42, 18, 20, 36, 38, 38, 40, 42, 50, 50, 44, 38, 50, 0, 2, 2, 4, 50, 2, 36, 44, 44, 4, 32, 34, 34, 36, 44, 52, 34, 52, 4, 6, 6, 8, 52, 6, 46, 54, 54, 52, 32, 54, 54, 8, 30, 32, 30, 46, 8, 10, 46, 10, 26, 28, 28, 30, 46, 56, 56, 48, 28, 56, 10, 12, 12, 14, 56, 12, 26, 48, 48, 14, 22, 24, 24, 26, 20, 58, 58, 48, 24, 58, 14, 16, 16, 18, 58, 16 ],
  163. "width": 24,
  164. "height": 51
  165. }
  166. },
  167. "toufa3": {
  168. "toufa3": {
  169. "type": "mesh",
  170. "uvs": [ 0.41183, 0.03831, 0.53253, 0.11366, 0.6178, 0.18663, 0.71148, 0.26677, 0.8117, 0.35252, 0.84863, 0.47, 0.89666, 0.6228, 1, 0.70137, 1, 1, 0.83901, 1, 0.55984, 1, 0.48679, 0.77084, 0.45363, 0.6668, 0.39872, 0.56532, 0.34548, 0.46693, 0.29887, 0.38081, 0.19337, 0.2987, 0, 0.14823, 0, 0, 0.05308, 0, 0.35046, 0, 0.40811, 0.21423, 0.60232, 0.56309, 0.31613, 0.15873, 0.47694, 0.33787, 0.64784, 0.64711, 0.53916, 0.44964, 0.72607, 0.79152 ],
  171. "triangles": [ 17, 18, 19, 23, 19, 20, 23, 20, 0, 17, 19, 23, 21, 23, 0, 21, 0, 1, 16, 17, 23, 2, 24, 21, 2, 21, 1, 15, 16, 23, 15, 23, 21, 15, 21, 24, 3, 26, 24, 3, 24, 2, 14, 15, 24, 14, 24, 26, 4, 22, 26, 4, 26, 3, 22, 4, 5, 13, 14, 26, 13, 26, 22, 12, 13, 22, 12, 22, 25, 25, 22, 5, 6, 25, 5, 11, 12, 25, 27, 25, 6, 11, 25, 27, 10, 11, 27, 7, 9, 27, 7, 27, 6, 10, 27, 9, 9, 7, 8 ],
  172. "vertices": [ 1, 43, -4.14, 2.37, 1, 1, 43, -0.61, 4.43, 1, 2, 44, -9.55, 5.99, 0.00218, 43, 2.37, 5.61, 0.99782, 2, 44, -6.23, 7.17, 0.0591, 43, 5.65, 6.92, 0.9409, 2, 44, -2.68, 8.42, 0.24336, 43, 9.15, 8.31, 0.75664, 2, 44, 0.69, 7.65, 0.54604, 43, 12.55, 7.67, 0.45396, 2, 44, 5.08, 6.64, 0.94279, 43, 16.97, 6.84, 0.05721, 2, 44, 8.51, 8.08, 0.99947, 43, 20.34, 8.41, 5.3E-4, 1, 44, 15.68, 3.78, 1, 1, 44, 13.28, -0.22, 1, 1, 44, 9.11, -7.17, 1, 2, 44, 2.52, -5.68, 0.89145, 43, 14.89, -5.58, 0.10855, 2, 44, -0.47, -5.01, 0.4821, 43, 11.87, -5.02, 0.5179, 2, 44, -3.73, -4.91, 0.07315, 43, 8.62, -5.05, 0.92685, 2, 44, -6.89, -4.82, 6.6E-4, 43, 5.46, -5.08, 0.99934, 1, 43, 2.7, -5.11, 1, 1, 43, -0.79, -6.69, 1, 1, 43, -7.18, -9.58, 1, 1, 43, -10.82, -7.59, 1, 1, 43, -10.08, -6.24, 1, 1, 43, -5.94, 1.32, 1, 1, 43, 0.13, -0.09, 1, 1, 43, 11.4, 0.15, 1, 1, 43, -2.52, -1.68, 1, 1, 43, 4.12, 0, 1, 1, 44, 1.95, 0.1, 1, 2, 44, -4.41, 0.25, 1.2E-4, 43, 7.73, 0.07, 0.99988, 1, 44, 6.58, -0.03, 1 ],
  173. "hull": 21,
  174. "edges": [ 36, 38, 16, 18, 38, 40, 16, 14, 12, 14, 34, 36, 18, 20, 30, 42, 42, 2, 30, 32, 32, 34, 38, 46, 46, 42, 32, 46, 2, 0, 0, 40, 46, 0, 28, 30, 42, 48, 28, 48, 2, 4, 48, 4, 24, 44, 44, 8, 20, 22, 22, 24, 50, 44, 22, 50, 8, 10, 10, 12, 50, 10, 24, 26, 26, 28, 44, 52, 52, 48, 26, 52, 4, 6, 6, 8, 52, 6, 18, 54, 54, 50, 20, 54, 54, 12 ],
  175. "width": 29,
  176. "height": 28
  177. }
  178. },
  179. "toufa4": {
  180. "toufa4": {
  181. "type": "mesh",
  182. "uvs": [ 0.91467, 0.16942, 0.9443, 0.21486, 0.98241, 0.42696, 1, 0.52481, 1, 0.8154, 0.75193, 1, 0.28406, 1, 0.18193, 0.79752, 0.29945, 0.70634, 0.40679, 0.62306, 0.53343, 0.52481, 0.51564, 0.43958, 0.48896, 0.31166, 0.47405, 0.24019, 0.3458, 0, 0.51442, 0, 0.80417, 0, 0.6308, 0.2089, 0.8113, 0.51438, 0.69968, 0.72897, 0.66882, 0.27325, 0.71392, 0.26403, 0.7596, 0.42689, 0.51829, 0.84725 ],
  183. "triangles": [ 6, 23, 5, 23, 19, 5, 5, 19, 4, 6, 8, 23, 6, 7, 8, 8, 9, 23, 23, 9, 19, 19, 18, 4, 18, 3, 4, 9, 10, 19, 19, 10, 18, 10, 22, 18, 10, 11, 22, 18, 2, 3, 18, 22, 2, 11, 20, 22, 11, 12, 20, 22, 1, 2, 20, 21, 22, 22, 21, 1, 12, 17, 20, 12, 13, 17, 20, 17, 21, 21, 0, 1, 21, 17, 0, 13, 15, 17, 13, 14, 15, 17, 16, 0, 17, 15, 16 ],
  184. "vertices": [ 1, 12, 1.65, 9.26, 1, 1, 12, 4.15, 9.4, 1, 2, 12, 14.77, 7.05, 0.9293, 13, -6.19, 4.31, 0.0707, 2, 12, 19.68, 5.97, 0.42301, 13, -1.53, 6.19, 0.57699, 2, 13, 12.75, 10.16, 0.56283, 14, -4.16, 9.41, 0.43717, 2, 13, 23.95, 5.03, 0.00216, 14, 8.03, 11.21, 0.99784, 1, 14, 19.24, 1.29, 1, 2, 13, 18.88, -15.31, 0.0149, 14, 14.85, -8.61, 0.9851, 3, 12, 21.17, -18.24, 7.3E-4, 13, 13.4, -12.93, 0.12045, 14, 8.96, -9.6, 0.87881, 3, 12, 18.27, -13.61, 0.0384, 13, 8.38, -10.76, 0.41367, 14, 3.57, -10.51, 0.54793, 3, 12, 14.84, -8.16, 0.42067, 13, 2.47, -8.2, 0.49204, 14, -2.79, -11.58, 0.08728, 3, 12, 10.54, -7.29, 0.86037, 13, -1.57, -9.91, 0.13373, 14, -5.24, -15.21, 0.0059, 2, 12, 4.1, -5.98, 0.99855, 13, -7.62, -12.48, 0.00145, 1, 12, 0.49, -5.25, 1, 1, 12, -12.43, -5.16, 1, 1, 12, -10.68, -0.06, 1, 1, 12, -7.67, 8.71, 1, 1, 12, 0.61, 0.01, 1, 2, 12, 17.22, 0.43, 0.77011, 13, -0.42, 0.23, 0.22989, 2, 13, 11.08, -0.28, 0.43457, 14, 0.12, -0.25, 0.56543, 1, 12, 4.11, 0.1, 1, 1, 12, 4.13, 1.62, 1, 1, 12, 12.46, 0.31, 1, 1, 14, 8.47, 0.42, 1 ],
  185. "hull": 17,
  186. "edges": [ 30, 34, 36, 38, 28, 30, 28, 26, 30, 32, 6, 8, 10, 12, 8, 10, 12, 14, 26, 34, 2, 0, 0, 32, 34, 0, 24, 26, 34, 40, 24, 40, 42, 2, 20, 22, 22, 24, 36, 44, 44, 40, 22, 44, 2, 4, 4, 6, 44, 4, 20, 36, 36, 6, 18, 20, 18, 38, 38, 8, 14, 16, 16, 18, 12, 46, 46, 38, 16, 46, 46, 10 ],
  187. "width": 32,
  188. "height": 51
  189. }
  190. },
  191. "toufa5": {
  192. "toufa5": {
  193. "type": "mesh",
  194. "uvs": [ 0.84358, 0.27942, 0.88833, 0.32918, 0.92774, 0.37301, 0.96385, 0.41316, 1, 0.45337, 1, 0.56895, 1, 0.6781, 1, 0.74418, 1, 0.83236, 1, 1, 0.68114, 1, 0.46327, 1, 0.5411, 0.8286, 0.58367, 0.73482, 0.58771, 0.69628, 0.59288, 0.64696, 0.59574, 0.61968, 0.60087, 0.57064, 0.54571, 0.48727, 0.51487, 0.44066, 0.46344, 0.39788, 0.37154, 0.32144, 0.52061, 0.21187, 0.66203, 0.14064, 0.65438, 0.3311, 0.80154, 0.54512, 0.76523, 0.74155, 0.69172, 0.38541, 0.7246, 0.43322, 0.77545, 0.50718, 0.7901, 0.60698, 0.77433, 0.69231, 0.73649, 0.82988 ],
  195. "triangles": [ 10, 32, 9, 32, 8, 9, 11, 12, 10, 10, 12, 32, 32, 26, 8, 12, 13, 32, 32, 13, 26, 26, 7, 8, 26, 31, 7, 31, 6, 7, 13, 14, 26, 26, 14, 31, 14, 15, 31, 31, 30, 6, 31, 15, 30, 30, 5, 6, 15, 16, 30, 25, 30, 16, 30, 25, 5, 25, 16, 17, 29, 25, 17, 17, 28, 29, 17, 18, 28, 25, 4, 5, 25, 3, 4, 25, 29, 3, 29, 2, 3, 29, 28, 2, 18, 27, 28, 18, 19, 27, 19, 24, 27, 19, 20, 24, 28, 1, 2, 28, 27, 1, 20, 22, 24, 20, 21, 22, 27, 0, 1, 27, 24, 0, 24, 23, 0, 24, 22, 23 ],
  196. "vertices": [ 1, 15, -1.31, 10.24, 1, 1, 15, 3.5, 10.53, 1, 2, 15, 7.74, 10.78, 0.99995, 16, -15.68, 4.24, 5.0E-5, 2, 15, 11.62, 11.01, 0.98533, 16, -12.31, 6.17, 0.01467, 2, 15, 15.51, 11.23, 0.91621, 16, -8.93, 8.11, 0.08379, 2, 15, 24.98, 7.54, 0.18897, 16, 1.2, 9.02, 0.81103, 2, 16, 10.77, 9.87, 0.94157, 17, -9.35, 7.62, 0.05843, 2, 16, 16.56, 10.39, 0.63224, 17, -3.92, 9.69, 0.36776, 2, 16, 24.29, 11.09, 0.11191, 17, 3.33, 12.46, 0.88809, 1, 17, 17.11, 17.72, 1, 1, 17, 22.23, 4.31, 1, 1, 17, 25.72, -4.85, 1, 2, 16, 25.81, -9.51, 0.0054, 17, 10.38, -6.95, 0.9946, 2, 16, 17.41, -8.34, 0.42896, 17, 1.99, -8.1, 0.57104, 3, 15, 28.68, -13.82, 2.3E-4, 16, 14.02, -8.46, 0.75977, 17, -1.24, -9.14, 0.24, 3, 15, 24.72, -12.03, 0.02692, 16, 9.68, -8.62, 0.93197, 17, -5.38, -10.47, 0.04111, 3, 15, 22.53, -11.03, 0.08757, 16, 7.27, -8.7, 0.90388, 17, -7.67, -11.21, 0.00855, 2, 15, 18.59, -9.25, 0.3913, 16, 2.96, -8.86, 0.6087, 2, 15, 10.86, -8.89, 0.93432, 16, -4.13, -11.99, 0.06568, 2, 15, 6.53, -8.7, 0.99457, 16, -8.09, -13.74, 0.00543, 1, 15, 2.18, -9.48, 1, 1, 15, -5.59, -10.89, 1, 1, 15, -12.13, -1.14, 1, 1, 15, -15.66, 7.07, 1, 1, 15, -0.17, 0.66, 1, 2, 15, 19.78, -0.02, 0.5646, 16, -0.09, -0.07, 0.4354, 2, 16, 17.27, -0.15, 0.77978, 17, -0.37, -0.26, 0.22022, 1, 15, 4.89, 0.49, 1, 1, 15, 9.35, 0.33, 1, 1, 15, 16.25, 0.1, 1, 2, 15, 24.67, -2.48, 1.5E-4, 16, 5.38, -0.09, 0.99985, 2, 16, 12.92, -0.13, 0.99904, 17, -4.56, -1.42, 9.6E-4, 1, 17, 7.35, 1.3, 1 ],
  197. "hull": 24,
  198. "edges": [ 44, 48, 18, 20, 44, 46, 46, 0, 44, 42, 20, 22, 38, 40, 40, 42, 40, 48, 48, 0, 48, 54, 38, 54, 0, 2, 54, 2, 34, 36, 36, 38, 56, 54, 36, 56, 2, 4, 56, 4, 50, 58, 58, 56, 34, 58, 4, 6, 6, 8, 58, 6, 32, 34, 32, 50, 50, 8, 30, 32, 50, 60, 30, 60, 8, 10, 60, 10, 26, 28, 28, 30, 52, 62, 62, 60, 28, 62, 10, 12, 12, 14, 62, 12, 26, 52, 52, 14, 22, 24, 24, 26, 20, 64, 64, 52, 24, 64, 14, 16, 16, 18, 64, 16 ],
  199. "width": 45,
  200. "height": 88
  201. }
  202. },
  203. "toufa6": {
  204. "toufa6": { "x": 2.34, "y": 0.71, "rotation": 71.57, "width": 8, "height": 17 }
  205. },
  206. "toufa7": {
  207. "toufa7": {
  208. "type": "mesh",
  209. "uvs": [ 1, 0.24252, 0.92589, 0.3201, 0.85596, 0.3933, 0.77393, 0.46853, 0.70298, 0.53359, 0.62222, 0.60765, 0.56407, 0.68503, 0.52447, 0.73774, 0.52447, 0.79539, 0.52447, 0.83826, 0.77947, 1, 0.34172, 1, 0, 1, 0, 0.88852, 0, 0.81608, 0, 0.69191, 0.03444, 0.63035, 0.09097, 0.5293, 0.1694, 0.44917, 0.25638, 0.3603, 0.36297, 0.25139, 0.39088, 0.20905, 0.44065, 0.13357, 0.52872, 0, 0.77521, 0, 1, 0, 0.51597, 0.28835, 0.32897, 0.57513, 0.28222, 0.79687, 0.62645, 0.16547, 0.55978, 0.23962, 0.44134, 0.40279, 0.38676, 0.4865, 0.31069, 0.66181, 0.29956, 0.71463, 0.30159, 0.863 ],
  210. "triangles": [ 11, 9, 10, 12, 35, 11, 11, 35, 9, 12, 13, 35, 13, 28, 35, 13, 14, 28, 9, 35, 8, 8, 35, 28, 14, 15, 28, 28, 34, 8, 28, 15, 34, 8, 34, 7, 34, 33, 7, 7, 33, 6, 15, 16, 34, 34, 16, 33, 33, 27, 6, 6, 27, 5, 16, 17, 33, 33, 17, 27, 27, 32, 5, 5, 32, 4, 17, 18, 27, 27, 18, 32, 32, 31, 4, 4, 31, 3, 18, 19, 32, 32, 19, 31, 31, 26, 3, 3, 26, 2, 19, 20, 31, 31, 20, 26, 26, 30, 2, 2, 30, 1, 30, 29, 1, 1, 29, 0, 20, 21, 26, 26, 21, 30, 29, 24, 0, 24, 25, 0, 21, 22, 30, 30, 22, 29, 22, 23, 29, 29, 23, 24 ],
  211. "vertices": [ 1, 18, -6.16, 10.2, 1, 1, 18, -0.54, 9.65, 1, 1, 18, 4.75, 9.13, 1, 1, 18, 10.25, 8.36, 1, 2, 18, 15.01, 7.7, 0.95471, 19, -4.47, 8.26, 0.04529, 2, 18, 20.42, 6.94, 0.51854, 19, 0.82, 6.89, 0.48146, 2, 18, 25.94, 6.76, 0.0455, 19, 6.28, 6.09, 0.9545, 3, 18, 29.69, 6.64, 3.2E-4, 19, 10, 5.54, 0.9498, 20, -3.45, 6.28, 0.04988, 2, 19, 13.95, 5.97, 0.54311, 20, 0.51, 5.98, 0.45689, 2, 19, 16.89, 6.29, 0.15185, 20, 3.46, 5.75, 0.84815, 1, 20, 15.06, 11, 1, 1, 20, 14.25, 0.52, 1, 1, 20, 13.62, -7.66, 1, 2, 19, 21.71, -5.84, 0.01872, 20, 5.95, -7.07, 0.98128, 2, 19, 16.74, -6.39, 0.34434, 20, 0.97, -6.68, 0.65566, 3, 18, 29.4, -6.33, 0.00198, 19, 8.22, -7.32, 0.99428, 20, -7.57, -6.02, 0.00373, 2, 18, 25.07, -6.47, 0.10416, 19, 3.91, -6.96, 0.89584, 2, 18, 17.97, -6.69, 0.85096, 19, -3.17, -6.37, 0.14904, 1, 18, 12.17, -6.08, 1, 1, 18, 5.72, -5.4, 1, 1, 18, -2.17, -4.57, 1, 1, 18, -5.17, -4.57, 1, 1, 18, -10.51, -4.56, 1, 1, 18, -19.97, -4.54, 1, 1, 18, -21.28, 1.23, 1, 1, 18, -22.47, 6.49, 1, 1, 18, -0.5, -0.43, 1, 2, 18, 19.79, -0.42, 0.92135, 19, -0.65, -0.35, 0.07865, 2, 19, 14.68, 0.2, 0.39333, 20, 0.17, 0.17, 0.60667, 1, 18, -9.35, 0.28, 1, 1, 18, -4.01, -0.15, 1, 1, 18, 7.6, -0.42, 1, 1, 18, 13.52, -0.42, 1, 1, 19, 5.35, -0.13, 1, 1, 19, 9, 0, 1, 2, 19, 19.17, 1.16, 8.7E-4, 20, 4.75, 0.29, 0.99913 ],
  212. "hull": 26,
  213. "edges": [ 48, 50, 22, 24, 46, 48, 28, 30, 0, 50, 20, 22, 18, 20, 46, 44, 48, 58, 44, 58, 58, 0, 40, 42, 42, 44, 52, 60, 60, 58, 42, 60, 0, 2, 2, 4, 60, 2, 40, 52, 52, 4, 40, 38, 52, 62, 38, 62, 4, 6, 62, 6, 34, 54, 54, 10, 34, 36, 36, 38, 54, 64, 64, 62, 36, 64, 6, 8, 8, 10, 64, 8, 30, 32, 32, 34, 54, 66, 32, 66, 10, 12, 12, 14, 66, 12, 56, 68, 68, 66, 30, 68, 68, 14, 28, 56, 14, 16, 16, 18, 56, 16, 22, 70, 70, 56, 18, 70, 24, 26, 26, 28, 70, 26 ],
  214. "width": 24,
  215. "height": 69
  216. }
  217. },
  218. "toufa8": {
  219. "toufa8": {
  220. "type": "mesh",
  221. "uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
  222. "triangles": [ 1, 2, 3, 1, 3, 0 ],
  223. "vertices": [ -12.61, -56, -8.65, 37.91, 82.27, 34.08, 78.31, -59.84 ],
  224. "hull": 4,
  225. "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
  226. "width": 94,
  227. "height": 91
  228. }
  229. },
  230. "toushi": {
  231. "toushi": { "x": -1.25, "y": 0.27, "rotation": -92.41, "width": 30, "height": 33 }
  232. },
  233. "xiong": {
  234. "xiong": {
  235. "type": "mesh",
  236. "uvs": [ 1, 1, 0.40024, 1, 0, 1, 0, 0.49401, 0.2578, 0.24936, 0.40306, 0, 0.51729, 0, 1, 0, 0.43832, 0.44471, 0.39319, 0.6685, 0.22537, 0.42574, 0.66395, 0.44281, 0.11255, 0.69884, 0.69075, 0.74056 ],
  237. "triangles": [ 11, 6, 7, 6, 4, 5, 8, 6, 11, 8, 4, 6, 10, 4, 8, 10, 3, 4, 9, 10, 8, 12, 3, 10, 12, 10, 9, 0, 13, 11, 2, 3, 12, 13, 1, 9, 12, 9, 1, 2, 12, 1, 9, 8, 11, 11, 13, 9, 0, 11, 7, 1, 13, 0 ],
  238. "vertices": [ 1, 3, -1.42, -20.2, 1, 1, 3, -3.47, 3.1, 1, 1, 3, -4.83, 18.65, 1, 1, 3, 9.79, 19.94, 1, 1, 3, 17.73, 10.54, 1, 1, 3, 25.43, 5.53, 1, 1, 3, 25.82, 1.09, 1, 1, 3, 27.46, -17.66, 1, 1, 3, 12.7, 3.03, 1, 1, 3, 6.08, 4.22, 1, 1, 3, 12.53, 11.35, 1, 1, 3, 13.53, -5.73, 1, 1, 3, 4.25, 15.04, 1, 1, 3, 5.02, -7.53, 1 ],
  239. "hull": 8,
  240. "edges": [ 0, 14, 12, 14, 12, 16, 16, 18, 0, 2, 2, 4, 18, 2, 10, 12, 10, 8, 4, 6, 8, 6 ],
  241. "width": 39,
  242. "height": 29
  243. }
  244. },
  245. "xionghua": {
  246. "xionghua": { "x": -1.55, "y": -0.09, "rotation": -84.99, "width": 12, "height": 12 }
  247. },
  248. "youerduo": {
  249. "youerduo": { "x": 19.25, "y": -36.33, "rotation": -92.41, "width": 14, "height": 22 }
  250. },
  251. "youshou1": {
  252. "youshou1": {
  253. "type": "mesh",
  254. "uvs": [ 1, 0.33921, 1, 0.38643, 1, 0.44938, 1, 0.59101, 1, 0.62564, 1, 0.65711, 1, 1, 0.7203, 1, 0, 1, 0, 0.68544, 0, 0.64924, 0, 0.61934, 0, 0.44623, 0, 0.38957, 0, 0.34236, 0, 0, 0.23071, 0, 1, 0, 0.41311, 0.39115, 0.58111, 0.6697, 0.44269, 0.44019, 0.39109, 0.34394, 0.6915, 0.66341, 0.54132, 0.60373, 0.5619, 0.63786 ],
  255. "triangles": [ 7, 5, 6, 8, 19, 7, 7, 22, 5, 19, 22, 7, 8, 9, 19, 9, 24, 19, 9, 10, 24, 19, 24, 22, 5, 22, 4, 22, 24, 4, 10, 23, 24, 10, 11, 23, 4, 24, 3, 24, 23, 3, 11, 20, 23, 11, 12, 20, 3, 23, 2, 23, 20, 2, 20, 1, 2, 12, 18, 20, 20, 18, 1, 12, 13, 18, 13, 21, 18, 1, 18, 0, 13, 14, 21, 18, 21, 0, 14, 16, 21, 0, 21, 17, 14, 15, 16, 21, 16, 17 ],
  256. "vertices": [ 2, 31, 18.48, 11.97, 0.68493, 32, -2.16, 12.08, 0.31507, 2, 31, 21.33, 11.53, 0.48529, 32, 0.66, 11.51, 0.51471, 2, 31, 25.12, 10.95, 0.22363, 32, 4.43, 10.75, 0.77637, 3, 31, 33.66, 9.63, 0.00332, 32, 12.9, 9.04, 0.87123, 33, -3.41, 9.38, 0.12545, 3, 31, 35.75, 9.31, 6.0E-5, 32, 14.97, 8.63, 0.74339, 33, -1.38, 8.78, 0.25655, 2, 32, 16.85, 8.25, 0.57363, 33, 0.46, 8.24, 0.42637, 1, 33, 20.51, 2.3, 1, 1, 33, 18.92, -3.07, 1, 1, 33, 14.83, -16.88, 1, 2, 32, 14.59, -11.7, 0.59325, 33, -3.57, -11.43, 0.40675, 2, 32, 12.42, -11.26, 0.7398, 33, -5.68, -10.8, 0.2602, 3, 31, 32.32, -10.4, 9.7E-4, 32, 10.63, -10.9, 0.8356, 33, -7.43, -10.28, 0.16343, 3, 31, 21.88, -8.79, 0.38224, 32, 0.28, -8.81, 0.61768, 33, -17.56, -7.28, 8.0E-5, 2, 31, 18.46, -8.26, 0.7098, 32, -3.1, -8.13, 0.2902, 2, 31, 15.62, -7.82, 0.90489, 32, -5.93, -7.56, 0.09511, 1, 31, -5.02, -4.64, 1, 1, 31, -4.32, -0.08, 1, 1, 31, -1.97, 15.13, 1, 1, 31, 19.82, -0.11, 1, 1, 32, 15.94, -0.12, 1, 1, 32, 1.67, -0.06, 1, 1, 31, 16.91, -0.11, 1, 2, 32, 16.01, 2.12, 0.70998, 33, -0.93, 2.21, 0.29002, 2, 32, 11.84, -0.1, 0.99983, 33, -5.27, 0.37, 1.7E-4, 1, 32, 13.97, -0.11, 1 ],
  257. "hull": 18,
  258. "edges": [ 30, 32, 32, 34, 12, 14, 14, 16, 38, 14, 26, 36, 36, 2, 24, 26, 36, 40, 24, 40, 2, 4, 40, 4, 26, 28, 28, 30, 32, 42, 42, 36, 28, 42, 2, 0, 0, 34, 42, 0, 16, 18, 18, 38, 10, 12, 44, 10, 22, 24, 46, 40, 22, 46, 4, 6, 46, 6, 18, 20, 20, 22, 38, 48, 48, 46, 20, 48, 6, 8, 8, 10, 48, 8 ],
  259. "width": 20,
  260. "height": 61
  261. }
  262. },
  263. "youtui": {
  264. "youtui": {
  265. "type": "mesh",
  266. "uvs": [ 1, 0.33624, 1, 0.39591, 1, 0.45388, 1, 0.69427, 1, 0.7207, 1, 0.74116, 1, 1, 0.6643, 1, 0, 1, 0, 0.84483, 0.38416, 0.739, 0.38154, 0.71022, 0.37938, 0.68642, 0.3602, 0.47576, 0.35483, 0.41677, 0.35087, 0.35491, 0.32816, 0, 0.64356, 0, 1, 0, 0.6643, 0.403, 0.70163, 0.81611, 0.66156, 0.34984, 0.66974, 0.46326, 0.69486, 0.74123, 0.69077, 0.69595, 0.69289, 0.7194 ],
  267. "triangles": [ 7, 20, 6, 8, 10, 7, 8, 9, 10, 20, 5, 6, 20, 10, 23, 20, 7, 10, 20, 23, 5, 10, 25, 23, 5, 23, 4, 23, 25, 4, 10, 11, 25, 25, 3, 4, 11, 24, 25, 25, 24, 3, 11, 12, 24, 12, 22, 24, 3, 24, 2, 24, 22, 2, 12, 13, 22, 13, 19, 22, 13, 14, 19, 2, 22, 1, 22, 19, 1, 14, 21, 19, 14, 15, 21, 19, 21, 1, 21, 0, 1, 15, 17, 21, 15, 16, 17, 0, 21, 18, 21, 17, 18 ],
  268. "vertices": [ 2, 37, 17.52, 8.76, 0.85087, 38, -4.09, 8.77, 0.14913, 2, 37, 21.16, 8.67, 0.55163, 38, -0.45, 8.67, 0.44837, 2, 37, 24.69, 8.59, 0.22253, 38, 3.08, 8.58, 0.77747, 1, 38, 17.74, 8.19, 1, 1, 38, 19.35, 8.15, 1, 2, 38, 20.6, 8.12, 0.99917, 39, -9.46, -2.65, 8.3E-4, 2, 38, 36.39, 7.7, 0.15732, 39, -4.03, 12.17, 0.84268, 2, 38, 36.15, -1.36, 0.00405, 39, 4.48, 9.06, 0.99595, 1, 39, 21.33, 2.89, 1, 2, 38, 26.21, -19.04, 4.1E-4, 39, 18.07, -6, 0.99959, 2, 38, 20.03, -8.5, 0.51581, 39, 6.11, -8.5, 0.48419, 2, 38, 18.27, -8.53, 0.72102, 39, 5.57, -10.17, 0.27898, 2, 38, 16.82, -8.55, 0.82479, 39, 5.13, -11.55, 0.17521, 2, 37, 25.61, -8.71, 0.14923, 38, 3.96, -8.72, 0.85077, 2, 37, 22.01, -8.77, 0.45275, 38, 0.36, -8.77, 0.54725, 2, 37, 18.24, -8.79, 0.79719, 38, -3.42, -8.78, 0.20281, 1, 37, -3.42, -8.88, 1, 1, 37, -3.22, -0.37, 1, 1, 37, -2.99, 9.25, 1, 2, 37, 21.37, -0.4, 0.69412, 38, -0.26, -0.4, 0.30588, 1, 38, 24.96, -0.06, 1, 2, 37, 18.13, -0.4, 0.99867, 38, -3.5, -0.39, 0.00133, 2, 37, 25.05, -0.34, 4.9E-4, 38, 3.42, -0.35, 0.99951, 2, 38, 20.39, -0.12, 0.99683, 39, -1.72, -5.48, 0.00317, 2, 38, 17.62, -0.16, 0.99871, 39, -2.56, -8.11, 0.00129, 2, 38, 19.06, -0.14, 0.99772, 39, -2.13, -6.75, 0.00228 ],
  269. "hull": 19,
  270. "edges": [ 34, 36, 12, 14, 14, 16, 40, 14, 32, 34, 16, 18, 20, 18, 28, 38, 38, 2, 28, 30, 30, 32, 34, 42, 42, 38, 30, 42, 2, 0, 0, 36, 42, 0, 26, 28, 38, 44, 26, 44, 2, 4, 44, 4, 40, 46, 20, 46, 10, 12, 46, 10, 24, 26, 44, 48, 24, 48, 4, 6, 48, 6, 20, 22, 22, 24, 46, 50, 50, 48, 22, 50, 6, 8, 8, 10, 50, 8 ],
  271. "width": 27,
  272. "height": 61
  273. }
  274. },
  275. "youtui 2": {
  276. "youtui 2": { "x": -5.37, "y": 26.01, "width": 19, "height": 70 }
  277. },
  278. "youyan": {
  279. "youyan": { "x": 7.64, "y": -1.86, "rotation": -98.91, "width": 21, "height": 25 }
  280. },
  281. "zuiba": {
  282. "zuiba": { "x": 2.5, "y": 5.41, "rotation": -92.41, "width": 8, "height": 5 }
  283. },
  284. "zuoereerhuan": {
  285. "zuoereerhuan": { "x": 3.13, "y": 0.96, "rotation": 116.57, "width": 10, "height": 16 }
  286. },
  287. "zuoshou1": {
  288. "zuoshou1": {
  289. "type": "mesh",
  290. "uvs": [ 1, 0.11074, 0.89318, 0.29004, 0.85616, 0.35216, 0.81204, 0.4308, 0.7062, 0.61942, 0.67276, 0.67902, 0.51465, 1, 0.14468, 1, 0, 0.75145, 0.23006, 0.54716, 0.27556, 0.50009, 0.44132, 0.32862, 0.50833, 0.25931, 0.54383, 0.18998, 0.64114, 0, 0.87514, 0, 1, 0, 0.64746, 0.31502, 0.45773, 0.61402, 0.49533, 0.55477, 0.69161, 0.25393, 0.60262, 0.38569 ],
  291. "triangles": [ 7, 18, 6, 6, 18, 5, 7, 9, 18, 7, 8, 9, 18, 19, 5, 5, 19, 4, 19, 21, 4, 4, 21, 3, 9, 10, 18, 18, 10, 19, 10, 11, 19, 19, 11, 21, 21, 17, 3, 11, 12, 21, 3, 17, 2, 21, 12, 17, 17, 20, 2, 2, 20, 1, 12, 13, 17, 17, 13, 20, 0, 1, 15, 13, 14, 20, 1, 20, 15, 20, 14, 15, 15, 16, 0 ],
  292. "vertices": [ 1, 28, 1.3, 6.95, 1, 2, 28, 13.21, 8.13, 0.94079, 29, -5.33, 8.69, 0.05921, 2, 28, 17.34, 8.53, 0.65762, 29, -1.18, 8.69, 0.34238, 2, 28, 22.52, 9.14, 0.17462, 29, 4.04, 8.79, 0.82538, 2, 29, 16.55, 9.02, 0.75428, 30, -4.6, 8.17, 0.24572, 2, 29, 20.5, 9.1, 0.39875, 30, -0.78, 9.17, 0.60125, 1, 30, 19.38, 15.26, 1, 1, 30, 26.82, 3.77, 1, 1, 30, 16.59, -9.24, 1, 2, 29, 18.08, -9.11, 0.41848, 30, 1.16, -9.09, 0.58152, 2, 29, 14.72, -8.5, 0.73041, 30, -2.25, -9.29, 0.26959, 2, 28, 22.46, -6.01, 0.16447, 29, 2.5, -6.29, 0.83553, 2, 28, 17.46, -5.6, 0.81262, 29, -2.44, -5.39, 0.18738, 2, 28, 12.94, -6.25, 0.99907, 29, -7, -5.59, 9.3E-4, 1, 28, 0.57, -8.03, 1, 1, 28, -3.08, -0.18, 1, 1, 28, -5.03, 4.01, 1, 2, 28, 18.47, 0.54, 0.95769, 29, -0.83, 0.63, 0.04231, 2, 29, 19.26, 0.23, 0.39498, 30, 0.11, 0.27, 0.60502, 1, 29, 15.28, 0.31, 1, 1, 28, 14.29, 0.4, 1, 2, 28, 23.21, 0.92, 0.00274, 29, 3.92, 0.54, 0.99726 ],
  293. "hull": 17,
  294. "edges": [ 30, 32, 36, 14, 28, 30, 18, 16, 0, 32, 12, 14, 10, 12, 24, 34, 34, 4, 18, 36, 36, 10, 20, 18, 38, 36, 20, 38, 8, 10, 38, 8, 28, 26, 26, 24, 30, 40, 40, 34, 26, 40, 0, 2, 2, 4, 40, 2, 24, 22, 22, 20, 34, 42, 42, 38, 22, 42, 4, 6, 6, 8, 42, 6, 14, 16 ],
  295. "width": 37,
  296. "height": 63
  297. }
  298. },
  299. "zuotui": {
  300. "zuotui": {
  301. "type": "mesh",
  302. "uvs": [ 1, 0.35018, 1, 0.40125, 1, 0.43918, 1, 0.63906, 1, 0.67116, 1, 0.71056, 1, 1, 0.71727, 1, 0, 1, 0, 0.84124, 0.47334, 0.70165, 0.47672, 0.66389, 0.47988, 0.62863, 0.49654, 0.44246, 0.50044, 0.39885, 0.49777, 0.35163, 0.47786, 0, 0.77148, 0, 1, 0, 0.73986, 0.44582, 0.75341, 0.77682, 0.74195, 0.40254, 0.74547, 0.3545, 0.75109, 0.7178, 0.74944, 0.67548, 0.74789, 0.63613 ],
  303. "triangles": [ 8, 9, 10, 20, 7, 10, 8, 10, 7, 7, 20, 6, 25, 19, 2, 13, 19, 25, 12, 13, 25, 25, 2, 3, 24, 25, 3, 4, 24, 3, 11, 12, 25, 24, 11, 25, 24, 4, 5, 23, 24, 5, 10, 11, 24, 23, 10, 24, 20, 23, 5, 20, 10, 23, 20, 5, 6, 17, 18, 0, 22, 15, 16, 17, 22, 16, 0, 22, 17, 14, 15, 22, 22, 0, 1, 21, 14, 22, 21, 22, 1, 21, 1, 2, 19, 14, 21, 19, 21, 2, 13, 14, 19 ],
  304. "vertices": [ 3, 40, 13.96, 7.3, 0.97462, 41, -6.04, 7.36, 0.02537, 42, -18.26, -20.28, 0, 3, 40, 17.08, 7.3, 0.82992, 41, -2.93, 7.33, 0.17008, 42, -16.85, -17.5, 0, 2, 40, 19.39, 7.3, 0.33, 41, -0.61, 7.31, 0.67, 2, 41, 11.58, 7.21, 0.99986, 42, -10.3, -4.56, 1.4E-4, 1, 41, 13.54, 7.19, 1, 2, 41, 15.94, 7.17, 0.9941, 42, -8.33, -0.67, 0.0059, 2, 41, 33.6, 7.02, 0.00771, 42, -0.36, 15.08, 0.99229, 1, 42, 6.96, 11.38, 1, 1, 42, 25.52, 1.99, 1, 1, 42, 21.14, -6.65, 1, 2, 41, 15.27, -8.1, 0.51822, 42, 5.05, -8.05, 0.48178, 2, 41, 12.97, -7.98, 0.77563, 42, 3.92, -10.06, 0.22437, 2, 41, 10.82, -7.87, 0.89618, 42, 2.87, -11.94, 0.10382, 2, 40, 19.59, -7.3, 0.48356, 41, -0.54, -7.29, 0.51644, 2, 40, 16.93, -7.18, 0.76629, 41, -3.2, -7.16, 0.23371, 2, 40, 14.05, -7.26, 0.94136, 41, -6.08, -7.21, 0.05864, 1, 40, -7.4, -7.84, 1, 1, 40, -7.4, 0.68, 1, 1, 40, -7.4, 7.3, 1, 1, 40, 19.8, -0.24, 1, 2, 41, 19.92, -0.02, 0.69597, 42, -0.13, -0.29, 0.30403, 2, 40, 17.16, -0.18, 0.99726, 41, -2.91, -0.15, 0.00274, 2, 40, 14.23, -0.08, 0.99991, 41, -5.84, -0.03, 9.0E-5, 2, 41, 16.32, -0.05, 0.9996, 42, -1.69, -3.54, 4.0E-4, 2, 41, 13.74, -0.08, 0.99932, 42, -2.82, -5.86, 6.8E-4, 2, 41, 11.34, -0.1, 0.99938, 42, -3.86, -8.02, 6.2E-4 ],
  305. "hull": 19,
  306. "edges": [ 34, 36, 12, 14, 14, 16, 40, 14, 32, 34, 16, 18, 20, 18, 42, 38, 28, 42, 42, 2, 26, 28, 26, 38, 2, 4, 38, 4, 28, 30, 30, 32, 34, 44, 44, 42, 30, 44, 2, 0, 0, 36, 44, 0, 46, 40, 20, 46, 10, 12, 46, 10, 20, 22, 48, 46, 22, 48, 8, 10, 48, 8, 22, 24, 24, 26, 38, 50, 50, 48, 24, 50, 4, 6, 6, 8, 50, 6 ],
  307. "width": 29,
  308. "height": 61
  309. }
  310. },
  311. "zuotui2": {
  312. "youtui 2": {
  313. "type": "mesh",
  314. "uvs": [ 1, 0.28488, 1, 0.33734, 1, 0.38671, 1, 0.48545, 1, 0.51168, 1, 0.58574, 1, 1, 0.3137, 1, 0, 1, 1.0E-5, 0.62123, 0, 0.58111, 0, 0.51785, 0, 0.3898, 0, 0.33426, 0, 0.28026, 0, 0, 0.3721, 0, 1, 0, 0.34341, 0.33766, 0.3032, 0.60722, 0.34793, 0.28448, 0.33539, 0.38802, 0.30714, 0.56532, 0.31654, 0.50633 ],
  315. "triangles": [ 8, 9, 7, 9, 19, 7, 6, 7, 19, 6, 19, 5, 9, 10, 19, 19, 22, 5, 19, 10, 22, 22, 4, 5, 10, 11, 22, 22, 23, 4, 22, 11, 23, 11, 12, 23, 23, 3, 4, 23, 21, 3, 23, 12, 21, 21, 2, 3, 12, 13, 21, 21, 18, 2, 21, 13, 18, 18, 1, 2, 18, 20, 1, 20, 18, 14, 20, 0, 1, 18, 13, 14, 20, 16, 0, 16, 17, 0, 16, 20, 15, 20, 14, 15 ],
  316. "vertices": [ 2, 45, 16.18, 12.36, 0.65841, 46, -4.17, 12.44, 0.34159, 2, 45, 19.85, 12.5, 0.41094, 46, -0.5, 12.51, 0.58906, 3, 45, 23.3, 12.63, 0.19805, 46, 2.96, 12.58, 0.80191, 47, -18.41, 10.45, 4.0E-5, 3, 45, 30.21, 12.89, 0.01262, 46, 9.87, 12.71, 0.95259, 47, -11.56, 11.41, 0.03479, 3, 45, 32.04, 12.96, 0.00315, 46, 11.7, 12.75, 0.92752, 47, -9.75, 11.67, 0.06933, 2, 46, 16.88, 12.85, 0.72321, 47, -4.61, 12.38, 0.27679, 1, 47, 24.11, 16.4, 1, 1, 47, 25.91, 3.49, 1, 1, 47, 26.74, -2.41, 1, 2, 46, 19.74, -6.1, 0.47404, 47, 0.48, -6.09, 0.52596, 2, 46, 16.93, -6.16, 0.79354, 47, -2.3, -6.48, 0.20646, 2, 46, 12.5, -6.24, 0.98653, 47, -6.68, -7.09, 0.01347, 2, 45, 24.24, -6.35, 0.13127, 46, 3.54, -6.42, 0.86873, 2, 45, 20.35, -6.5, 0.60273, 46, -0.35, -6.49, 0.39727, 2, 45, 16.57, -6.64, 0.95808, 46, -4.13, -6.57, 0.04192, 1, 45, -3.03, -7.38, 1, 1, 45, -3.3, -0.32, 1, 1, 45, -3.75, 11.61, 1, 2, 45, 20.34, 0.03, 0.66556, 46, -0.24, 0.04, 0.33444, 1, 46, 18.64, -0.36, 1, 1, 45, 16.62, -0.02, 1, 2, 45, 23.87, 0.01, 4.3E-4, 46, 3.29, -0.05, 0.99957, 2, 46, 15.71, -0.34, 0.9986, 47, -4.2, -0.85, 0.0014, 1, 46, 11.58, -0.25, 1 ],
  317. "hull": 18,
  318. "edges": [ 30, 32, 32, 34, 12, 14, 14, 16, 38, 14, 26, 36, 36, 2, 26, 28, 28, 30, 32, 40, 40, 36, 28, 40, 2, 0, 0, 34, 40, 0, 24, 26, 36, 42, 24, 42, 2, 4, 42, 4, 16, 18, 18, 38, 10, 12, 38, 10, 18, 20, 38, 44, 20, 44, 8, 10, 20, 22, 22, 24, 42, 46, 46, 44, 22, 46, 4, 6, 6, 8, 46, 6, 44, 8 ],
  319. "width": 19,
  320. "height": 70
  321. }
  322. },
  323. "zuotui3": {
  324. "youtui 2": {
  325. "type": "mesh",
  326. "uvs": [ 1, 0.28488, 1, 0.33734, 1, 0.38671, 1, 0.48545, 1, 0.51168, 1, 0.58574, 1, 1, 0.3137, 1, 0, 1, 1.0E-5, 0.62123, 0, 0.58111, 0, 0.51785, 0, 0.3898, 0, 0.33426, 0, 0.28026, 0, 0, 0.3721, 0, 1, 0, 0.34341, 0.33766, 0.3032, 0.60722, 0.34793, 0.28448, 0.33539, 0.38802, 0.30714, 0.56532, 0.31654, 0.50633 ],
  327. "triangles": [ 8, 9, 7, 9, 19, 7, 6, 7, 19, 6, 19, 5, 9, 10, 19, 19, 22, 5, 19, 10, 22, 22, 4, 5, 10, 11, 22, 22, 23, 4, 22, 11, 23, 11, 12, 23, 23, 3, 4, 23, 21, 3, 23, 12, 21, 21, 2, 3, 12, 13, 21, 21, 18, 2, 21, 13, 18, 18, 1, 2, 18, 20, 1, 20, 18, 14, 20, 0, 1, 18, 13, 14, 20, 16, 0, 16, 17, 0, 16, 20, 15, 20, 14, 15 ],
  328. "vertices": [ 2, 48, 16.18, 12.36, 0.65841, 49, -4.17, 12.44, 0.34159, 2, 48, 19.85, 12.5, 0.41094, 49, -0.5, 12.51, 0.58906, 3, 48, 23.3, 12.63, 0.19805, 49, 2.96, 12.58, 0.80191, 50, -18.41, 10.45, 4.0E-5, 3, 48, 30.21, 12.89, 0.01262, 49, 9.87, 12.71, 0.95259, 50, -11.56, 11.41, 0.03479, 3, 48, 32.04, 12.96, 0.00315, 49, 11.7, 12.75, 0.92752, 50, -9.75, 11.67, 0.06933, 2, 49, 16.88, 12.85, 0.72321, 50, -4.61, 12.38, 0.27679, 1, 50, 24.11, 16.4, 1, 1, 50, 25.91, 3.49, 1, 1, 50, 26.74, -2.41, 1, 2, 49, 19.74, -6.1, 0.47404, 50, 0.48, -6.09, 0.52596, 2, 49, 16.93, -6.16, 0.79354, 50, -2.3, -6.48, 0.20646, 2, 49, 12.5, -6.24, 0.98653, 50, -6.68, -7.09, 0.01347, 2, 48, 24.24, -6.35, 0.13127, 49, 3.54, -6.42, 0.86873, 2, 48, 20.35, -6.5, 0.60273, 49, -0.35, -6.49, 0.39727, 2, 48, 16.57, -6.64, 0.95808, 49, -4.13, -6.57, 0.04192, 1, 48, -3.03, -7.38, 1, 1, 48, -3.3, -0.32, 1, 1, 48, -3.75, 11.61, 1, 2, 48, 20.34, 0.03, 0.66556, 49, -0.24, 0.04, 0.33444, 1, 49, 18.64, -0.36, 1, 1, 48, 16.62, -0.02, 1, 2, 48, 23.87, 0.01, 4.3E-4, 49, 3.29, -0.05, 0.99957, 2, 49, 15.71, -0.34, 0.9986, 50, -4.2, -0.85, 0.0014, 1, 49, 11.58, -0.25, 1 ],
  329. "hull": 18,
  330. "edges": [ 30, 32, 32, 34, 12, 14, 14, 16, 38, 14, 26, 36, 36, 2, 26, 28, 28, 30, 32, 40, 40, 36, 28, 40, 2, 0, 0, 34, 40, 0, 24, 26, 36, 42, 24, 42, 2, 4, 42, 4, 16, 18, 18, 38, 10, 12, 38, 10, 18, 20, 38, 44, 20, 44, 8, 10, 20, 22, 22, 24, 42, 46, 46, 44, 22, 46, 4, 6, 6, 8, 46, 6, 44, 8 ],
  331. "width": 19,
  332. "height": 70
  333. }
  334. },
  335. "zuoyan": {
  336. "zuoyan": { "x": 7.08, "y": 1.04, "rotation": -95.19, "width": 20, "height": 24 }
  337. }
  338. }
  339. },
  340. "animations": {
  341. "stand1": {
  342. "slots": {
  343. "biyan": {
  344. "attachment": [
  345. { "time": 0, "name": null },
  346. { "time": 1.3333, "name": null },
  347. { "time": 2, "name": "biyan" },
  348. { "time": 2.1, "name": null },
  349. { "time": 2.6667, "name": null }
  350. ]
  351. },
  352. "youyan": {
  353. "attachment": [
  354. { "time": 2, "name": null },
  355. { "time": 2.1, "name": "youyan" }
  356. ]
  357. },
  358. "zuoyan": {
  359. "attachment": [
  360. { "time": 2, "name": null },
  361. { "time": 2.1, "name": "zuoyan" }
  362. ]
  363. }
  364. },
  365. "bones": {
  366. "bone26": {
  367. "rotate": [
  368. { "time": 0, "angle": 0, "curve": "stepped" },
  369. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  370. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  371. { "time": 2, "angle": 0, "curve": "stepped" },
  372. { "time": 2.6667, "angle": 0 }
  373. ],
  374. "translate": [
  375. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  376. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  377. { "time": 1.3333, "x": 0, "y": 0 },
  378. { "time": 2, "x": -1.23, "y": 0.02 },
  379. { "time": 2.6667, "x": 0, "y": 0 }
  380. ],
  381. "scale": [
  382. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  383. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  384. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  385. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  386. { "time": 2.6667, "x": 1, "y": 1 }
  387. ]
  388. },
  389. "root": {
  390. "rotate": [
  391. { "time": 0, "angle": 0, "curve": "stepped" },
  392. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  393. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  394. { "time": 2, "angle": 0, "curve": "stepped" },
  395. { "time": 2.6667, "angle": 0 }
  396. ],
  397. "translate": [
  398. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  399. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  400. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  401. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  402. { "time": 2.6667, "x": 0, "y": 0 }
  403. ],
  404. "scale": [
  405. { "time": 0, "x": 0.65, "y": 0.65 }
  406. ]
  407. },
  408. "bone": {
  409. "rotate": [
  410. { "time": 0, "angle": 0, "curve": "stepped" },
  411. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  412. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  413. { "time": 2, "angle": 0, "curve": "stepped" },
  414. { "time": 2.6667, "angle": 0 }
  415. ],
  416. "translate": [
  417. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  418. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  419. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  420. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  421. { "time": 2.6667, "x": 0, "y": 0 }
  422. ],
  423. "scale": [
  424. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  425. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  426. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  427. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  428. { "time": 2.6667, "x": 1, "y": 1 }
  429. ]
  430. },
  431. "bone2": {
  432. "rotate": [
  433. { "time": 0, "angle": 0, "curve": "stepped" },
  434. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  435. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  436. { "time": 2, "angle": 0, "curve": "stepped" },
  437. { "time": 2.6667, "angle": 0 }
  438. ],
  439. "translate": [
  440. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  441. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  442. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  443. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  444. { "time": 2.6667, "x": 0, "y": 0 }
  445. ],
  446. "scale": [
  447. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  448. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  449. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  450. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  451. { "time": 2.6667, "x": 1, "y": 1 }
  452. ]
  453. },
  454. "bone3": {
  455. "rotate": [
  456. { "time": 0, "angle": 0, "curve": "stepped" },
  457. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  458. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  459. { "time": 2, "angle": 0, "curve": "stepped" },
  460. { "time": 2.6667, "angle": 0 }
  461. ],
  462. "translate": [
  463. { "time": 0, "x": 0, "y": 0 },
  464. { "time": 0.6667, "x": 1.5, "y": -0.06 },
  465. { "time": 1.3333, "x": 0, "y": 0 },
  466. { "time": 2, "x": 1.5, "y": -0.06 },
  467. { "time": 2.6667, "x": 0, "y": 0 }
  468. ],
  469. "scale": [
  470. { "time": 0, "x": 1, "y": 1 },
  471. { "time": 0.6667, "x": 1.07, "y": 1 },
  472. { "time": 1.3333, "x": 1, "y": 1 },
  473. { "time": 2, "x": 1.07, "y": 1 },
  474. { "time": 2.6667, "x": 1, "y": 1 }
  475. ]
  476. },
  477. "bone4": {
  478. "rotate": [
  479. { "time": 0, "angle": 0, "curve": "stepped" },
  480. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  481. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  482. { "time": 2, "angle": 0, "curve": "stepped" },
  483. { "time": 2.6667, "angle": 0 }
  484. ],
  485. "translate": [
  486. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  487. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  488. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  489. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  490. { "time": 2.6667, "x": 0, "y": 0 }
  491. ],
  492. "scale": [
  493. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  494. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  495. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  496. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  497. { "time": 2.6667, "x": 1, "y": 1 }
  498. ]
  499. },
  500. "bone5": {
  501. "rotate": [
  502. { "time": 0, "angle": 0, "curve": "stepped" },
  503. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  504. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  505. { "time": 2, "angle": 0, "curve": "stepped" },
  506. { "time": 2.6667, "angle": 0 }
  507. ],
  508. "translate": [
  509. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  510. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  511. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  512. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  513. { "time": 2.6667, "x": 0, "y": 0 }
  514. ],
  515. "scale": [
  516. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  517. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  518. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  519. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  520. { "time": 2.6667, "x": 1, "y": 1 }
  521. ]
  522. },
  523. "bone6": {
  524. "rotate": [
  525. { "time": 0, "angle": 0 },
  526. { "time": 0.6667, "angle": -4.75 },
  527. { "time": 1.3333, "angle": 0 },
  528. { "time": 2, "angle": -4.75 },
  529. { "time": 2.6667, "angle": 0 }
  530. ],
  531. "translate": [
  532. { "time": 0, "x": 0, "y": 0 }
  533. ],
  534. "scale": [
  535. { "time": 0, "x": 1, "y": 1 }
  536. ]
  537. },
  538. "bone7": {
  539. "rotate": [
  540. { "time": 0, "angle": 0 },
  541. { "time": 0.6667, "angle": -0.51 },
  542. { "time": 1.3333, "angle": 0 },
  543. { "time": 2, "angle": -0.51 },
  544. { "time": 2.6667, "angle": 0 }
  545. ],
  546. "translate": [
  547. { "time": 0, "x": 0, "y": 0 }
  548. ],
  549. "scale": [
  550. { "time": 0, "x": 1, "y": 1 }
  551. ]
  552. },
  553. "bone8": {
  554. "rotate": [
  555. { "time": 0, "angle": 0 },
  556. { "time": 0.6667, "angle": -2.69 },
  557. { "time": 1.3333, "angle": 0 },
  558. { "time": 2, "angle": -2.69 },
  559. { "time": 2.6667, "angle": 0 }
  560. ],
  561. "translate": [
  562. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  563. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  564. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  565. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  566. { "time": 2.6667, "x": 0, "y": 0 }
  567. ],
  568. "scale": [
  569. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  570. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  571. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  572. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  573. { "time": 2.6667, "x": 1, "y": 1 }
  574. ]
  575. },
  576. "bone9": {
  577. "rotate": [
  578. { "time": 0, "angle": 0, "curve": "stepped" },
  579. { "time": 2.6667, "angle": 0 }
  580. ],
  581. "translate": [
  582. { "time": 0, "x": 0, "y": 0 },
  583. { "time": 1.3, "x": 0.16, "y": 0.26 },
  584. { "time": 2.6667, "x": 0, "y": 0 }
  585. ],
  586. "scale": [
  587. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  588. { "time": 2.6667, "x": 1, "y": 1 }
  589. ]
  590. },
  591. "bone10": {
  592. "rotate": [
  593. { "time": 0, "angle": 0 },
  594. { "time": 1.3333, "angle": -20.13 },
  595. { "time": 2.6667, "angle": 0 }
  596. ],
  597. "translate": [
  598. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  599. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  600. { "time": 2.6667, "x": 0, "y": 0 }
  601. ],
  602. "scale": [
  603. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  604. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  605. { "time": 2.6667, "x": 1, "y": 1 }
  606. ]
  607. },
  608. "bone11": {
  609. "rotate": [
  610. { "time": 0, "angle": 0 },
  611. { "time": 1.3333, "angle": -12.78 },
  612. { "time": 2.6667, "angle": 0 }
  613. ],
  614. "translate": [
  615. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  616. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  617. { "time": 2.6667, "x": 0, "y": 0 }
  618. ],
  619. "scale": [
  620. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  621. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  622. { "time": 2.6667, "x": 1, "y": 1 }
  623. ]
  624. },
  625. "bone12": {
  626. "rotate": [
  627. { "time": 0, "angle": 0, "curve": "stepped" },
  628. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  629. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  630. { "time": 2, "angle": 0, "curve": "stepped" },
  631. { "time": 2.6667, "angle": 0 }
  632. ],
  633. "translate": [
  634. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  635. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  636. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  637. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  638. { "time": 2.6667, "x": 0, "y": 0 }
  639. ],
  640. "scale": [
  641. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  642. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  643. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  644. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  645. { "time": 2.6667, "x": 1, "y": 1 }
  646. ]
  647. },
  648. "bone13": {
  649. "rotate": [
  650. { "time": 0, "angle": 0 },
  651. { "time": 1.3333, "angle": 20.99 },
  652. { "time": 2.6667, "angle": 0 }
  653. ],
  654. "translate": [
  655. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  656. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  657. { "time": 2.6667, "x": 0, "y": 0 }
  658. ],
  659. "scale": [
  660. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  661. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  662. { "time": 2.6667, "x": 1, "y": 1 }
  663. ]
  664. },
  665. "bone14": {
  666. "rotate": [
  667. { "time": 0, "angle": 0 },
  668. { "time": 1.3333, "angle": 23.87 },
  669. { "time": 2.6667, "angle": 0 }
  670. ],
  671. "translate": [
  672. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  673. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  674. { "time": 2.6667, "x": 0, "y": 0 }
  675. ],
  676. "scale": [
  677. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  678. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  679. { "time": 2.6667, "x": 1, "y": 1 }
  680. ]
  681. },
  682. "bone15": {
  683. "rotate": [
  684. { "time": 0, "angle": 0, "curve": "stepped" },
  685. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  686. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  687. { "time": 2, "angle": 0, "curve": "stepped" },
  688. { "time": 2.6667, "angle": 0 }
  689. ],
  690. "translate": [
  691. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  692. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  693. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  694. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  695. { "time": 2.6667, "x": 0, "y": 0 }
  696. ],
  697. "scale": [
  698. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  699. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  700. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  701. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  702. { "time": 2.6667, "x": 1, "y": 1 }
  703. ]
  704. },
  705. "bone16": {
  706. "rotate": [
  707. { "time": 0, "angle": 0 },
  708. { "time": 0.3333, "angle": 6.05 },
  709. { "time": 0.6667, "angle": 15.07 },
  710. { "time": 1.3333, "angle": 0 },
  711. { "time": 1.6667, "angle": 6.05 },
  712. { "time": 2, "angle": 15.07 },
  713. { "time": 2.6667, "angle": 0 }
  714. ],
  715. "translate": [
  716. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  717. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  718. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  719. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  720. { "time": 2.6667, "x": 0, "y": 0 }
  721. ],
  722. "scale": [
  723. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  724. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  725. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  726. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  727. { "time": 2.6667, "x": 1, "y": 1 }
  728. ]
  729. },
  730. "bone17": {
  731. "rotate": [
  732. { "time": 0, "angle": 0 },
  733. { "time": 0.6667, "angle": 12.13 },
  734. { "time": 1.3333, "angle": 0 },
  735. { "time": 2, "angle": 12.13 },
  736. { "time": 2.6667, "angle": 0 }
  737. ],
  738. "translate": [
  739. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  740. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  741. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  742. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  743. { "time": 2.6667, "x": 0, "y": 0 }
  744. ],
  745. "scale": [
  746. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  747. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  748. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  749. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  750. { "time": 2.6667, "x": 1, "y": 1 }
  751. ]
  752. },
  753. "bone18": {
  754. "rotate": [
  755. { "time": 0, "angle": 0 },
  756. { "time": 0.6667, "angle": -3.95 },
  757. { "time": 1.3333, "angle": 0 },
  758. { "time": 2, "angle": -3.95 },
  759. { "time": 2.6667, "angle": 0 }
  760. ],
  761. "translate": [
  762. { "time": 0, "x": 0, "y": 0 },
  763. { "time": 0.6667, "x": -0.52, "y": -1.93 },
  764. { "time": 1.3333, "x": 0, "y": 0 },
  765. { "time": 2, "x": -0.52, "y": -1.93 },
  766. { "time": 2.6667, "x": 0, "y": 0 }
  767. ],
  768. "scale": [
  769. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  770. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  771. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  772. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  773. { "time": 2.6667, "x": 1, "y": 1 }
  774. ]
  775. },
  776. "bone19": {
  777. "rotate": [
  778. { "time": 0, "angle": 0 },
  779. { "time": 0.6667, "angle": 14.76 },
  780. { "time": 1.3333, "angle": 0 },
  781. { "time": 2, "angle": 14.76 },
  782. { "time": 2.6667, "angle": 0 }
  783. ],
  784. "translate": [
  785. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  786. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  787. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  788. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  789. { "time": 2.6667, "x": 0, "y": 0 }
  790. ],
  791. "scale": [
  792. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  793. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  794. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  795. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  796. { "time": 2.6667, "x": 1, "y": 1 }
  797. ]
  798. },
  799. "bone20": {
  800. "rotate": [
  801. { "time": 0, "angle": 0 },
  802. { "time": 0.6667, "angle": 21.63 },
  803. { "time": 1.3333, "angle": 0 },
  804. { "time": 2, "angle": 21.63 },
  805. { "time": 2.6667, "angle": 0 }
  806. ],
  807. "translate": [
  808. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  809. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  810. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  811. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  812. { "time": 2.6667, "x": 0, "y": 0 }
  813. ],
  814. "scale": [
  815. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  816. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  817. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  818. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  819. { "time": 2.6667, "x": 1, "y": 1 }
  820. ]
  821. },
  822. "bone21": {
  823. "rotate": [
  824. { "time": 0, "angle": 0, "curve": "stepped" },
  825. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  826. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  827. { "time": 2, "angle": 0, "curve": "stepped" },
  828. { "time": 2.6667, "angle": 0 }
  829. ],
  830. "translate": [
  831. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  832. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  833. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  834. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  835. { "time": 2.6667, "x": 0, "y": 0 }
  836. ],
  837. "scale": [
  838. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  839. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  840. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  841. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  842. { "time": 2.6667, "x": 1, "y": 1 }
  843. ]
  844. },
  845. "bone22": {
  846. "rotate": [
  847. { "time": 0, "angle": 0 },
  848. { "time": 0.6667, "angle": 325.76 },
  849. { "time": 1.3333, "angle": 0 },
  850. { "time": 2, "angle": 325.76 },
  851. { "time": 2.6667, "angle": 0 }
  852. ],
  853. "translate": [
  854. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  855. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  856. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  857. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  858. { "time": 2.6667, "x": 0, "y": 0 }
  859. ],
  860. "scale": [
  861. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  862. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  863. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  864. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  865. { "time": 2.6667, "x": 1, "y": 1 }
  866. ]
  867. },
  868. "bone23": {
  869. "rotate": [
  870. { "time": 0, "angle": 0 },
  871. { "time": 0.6667, "angle": 21.93 },
  872. { "time": 1.3333, "angle": 0 },
  873. { "time": 2, "angle": 21.93 },
  874. { "time": 2.6667, "angle": 0 }
  875. ],
  876. "translate": [
  877. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  878. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  879. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  880. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  881. { "time": 2.6667, "x": 0, "y": 0 }
  882. ],
  883. "scale": [
  884. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  885. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  886. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  887. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  888. { "time": 2.6667, "x": 1, "y": 1 }
  889. ]
  890. },
  891. "bone24": {
  892. "rotate": [
  893. { "time": 0, "angle": 0, "curve": "stepped" },
  894. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  895. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  896. { "time": 1.9, "angle": 0, "curve": "stepped" },
  897. { "time": 2, "angle": 0, "curve": "stepped" },
  898. { "time": 2.1, "angle": 0, "curve": "stepped" },
  899. { "time": 2.2, "angle": 0, "curve": "stepped" },
  900. { "time": 2.6667, "angle": 0 }
  901. ],
  902. "translate": [
  903. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  904. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  905. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  906. { "time": 1.9, "x": 0, "y": 0, "curve": "stepped" },
  907. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  908. { "time": 2.1, "x": 0, "y": 0, "curve": "stepped" },
  909. { "time": 2.2, "x": 0, "y": 0, "curve": "stepped" },
  910. { "time": 2.6667, "x": 0, "y": 0 }
  911. ],
  912. "scale": [
  913. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  914. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  915. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  916. { "time": 1.9, "x": 1, "y": 1 },
  917. { "time": 2, "x": 0.284, "y": 1, "curve": "stepped" },
  918. { "time": 2.0667, "x": 0.284, "y": 1 },
  919. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  920. { "time": 2.6667, "x": 1, "y": 1 }
  921. ]
  922. },
  923. "bone25": {
  924. "rotate": [
  925. { "time": 0, "angle": 0, "curve": "stepped" },
  926. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  927. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  928. { "time": 1.9, "angle": 0, "curve": "stepped" },
  929. { "time": 2, "angle": 0, "curve": "stepped" },
  930. { "time": 2.1, "angle": 0, "curve": "stepped" },
  931. { "time": 2.2, "angle": 0, "curve": "stepped" },
  932. { "time": 2.6667, "angle": 0 }
  933. ],
  934. "translate": [
  935. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  936. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  937. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  938. { "time": 1.9, "x": 0, "y": 0, "curve": "stepped" },
  939. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  940. { "time": 2.1, "x": 0, "y": 0, "curve": "stepped" },
  941. { "time": 2.2, "x": 0, "y": 0, "curve": "stepped" },
  942. { "time": 2.6667, "x": 0, "y": 0 }
  943. ],
  944. "scale": [
  945. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  946. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  947. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  948. { "time": 1.9, "x": 1, "y": 1 },
  949. { "time": 2, "x": 0.262, "y": 1, "curve": "stepped" },
  950. { "time": 2.0667, "x": 0.262, "y": 1 },
  951. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  952. { "time": 2.6667, "x": 1, "y": 1 }
  953. ]
  954. },
  955. "bone27": {
  956. "rotate": [
  957. { "time": 0, "angle": 0, "curve": "stepped" },
  958. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  959. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  960. { "time": 2, "angle": 0, "curve": "stepped" },
  961. { "time": 2.1, "angle": 0, "curve": "stepped" },
  962. { "time": 2.6667, "angle": 0 }
  963. ],
  964. "translate": [
  965. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  966. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  967. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  968. { "time": 1.9, "x": 0, "y": 0 },
  969. { "time": 2, "x": -3.18, "y": 0.27, "curve": "stepped" },
  970. { "time": 2.1, "x": -3.18, "y": 0.27 },
  971. { "time": 2.2, "x": 0, "y": 0, "curve": "stepped" },
  972. { "time": 2.6667, "x": 0, "y": 0 }
  973. ],
  974. "scale": [
  975. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  976. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  977. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  978. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  979. { "time": 2.1, "x": 1, "y": 1, "curve": "stepped" },
  980. { "time": 2.6667, "x": 1, "y": 1 }
  981. ]
  982. },
  983. "bone28": {
  984. "rotate": [
  985. { "time": 0, "angle": 11.4 },
  986. { "time": 0.6667, "angle": 0.28 },
  987. { "time": 1.3333, "angle": 11.4 },
  988. { "time": 2, "angle": 0.28 },
  989. { "time": 2.6667, "angle": 11.4 }
  990. ],
  991. "translate": [
  992. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  993. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  994. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  995. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  996. { "time": 2.6667, "x": 0, "y": 0 }
  997. ],
  998. "scale": [
  999. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1000. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1001. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1002. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1003. { "time": 2.6667, "x": 1, "y": 1 }
  1004. ]
  1005. },
  1006. "bone29": {
  1007. "rotate": [
  1008. { "time": 0, "angle": 0 },
  1009. { "time": 0.6667, "angle": 0.67 },
  1010. { "time": 1.3333, "angle": 0 },
  1011. { "time": 2, "angle": 0.67 },
  1012. { "time": 2.6667, "angle": 0 }
  1013. ],
  1014. "translate": [
  1015. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1016. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1017. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1018. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1019. { "time": 2.6667, "x": 0, "y": 0 }
  1020. ],
  1021. "scale": [
  1022. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1023. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1024. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1025. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1026. { "time": 2.6667, "x": 1, "y": 1 }
  1027. ]
  1028. },
  1029. "bone30": {
  1030. "rotate": [
  1031. { "time": 0, "angle": 0 },
  1032. { "time": 0.6667, "angle": 0.79 },
  1033. { "time": 1.3333, "angle": 0 },
  1034. { "time": 2, "angle": 0.79 },
  1035. { "time": 2.6667, "angle": 0 }
  1036. ],
  1037. "translate": [
  1038. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1039. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1040. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1041. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1042. { "time": 2.6667, "x": 0, "y": 0 }
  1043. ],
  1044. "scale": [
  1045. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1046. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1047. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1048. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1049. { "time": 2.6667, "x": 1, "y": 1 }
  1050. ]
  1051. },
  1052. "bone31": {
  1053. "rotate": [
  1054. { "time": 0, "angle": 0 },
  1055. { "time": 0.6667, "angle": 14.76 },
  1056. { "time": 1.3333, "angle": 0 },
  1057. { "time": 2, "angle": 14.76 },
  1058. { "time": 2.6667, "angle": 0 }
  1059. ],
  1060. "translate": [
  1061. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1062. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1063. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1064. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1065. { "time": 2.6667, "x": 0, "y": 0 }
  1066. ],
  1067. "scale": [
  1068. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1069. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1070. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1071. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1072. { "time": 2.6667, "x": 1, "y": 1 }
  1073. ]
  1074. },
  1075. "bone32": {
  1076. "rotate": [
  1077. { "time": 0, "angle": 0 },
  1078. { "time": 0.6667, "angle": -10.33 },
  1079. { "time": 1.3333, "angle": 0 },
  1080. { "time": 2, "angle": -10.33 },
  1081. { "time": 2.6667, "angle": 0 }
  1082. ],
  1083. "translate": [
  1084. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1085. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1086. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1087. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1088. { "time": 2.6667, "x": 0, "y": 0 }
  1089. ],
  1090. "scale": [
  1091. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1092. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1093. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1094. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1095. { "time": 2.6667, "x": 1, "y": 1 }
  1096. ]
  1097. },
  1098. "bone33": {
  1099. "rotate": [
  1100. { "time": 0, "angle": 0, "curve": "stepped" },
  1101. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  1102. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  1103. { "time": 2, "angle": 0, "curve": "stepped" },
  1104. { "time": 2.6667, "angle": 0 }
  1105. ],
  1106. "translate": [
  1107. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1108. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1109. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1110. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1111. { "time": 2.6667, "x": 0, "y": 0 }
  1112. ],
  1113. "scale": [
  1114. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1115. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1116. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1117. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1118. { "time": 2.6667, "x": 1, "y": 1 }
  1119. ]
  1120. },
  1121. "bone34": {
  1122. "rotate": [
  1123. { "time": 0, "angle": 0, "curve": "stepped" },
  1124. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  1125. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  1126. { "time": 2, "angle": 0, "curve": "stepped" },
  1127. { "time": 2.6667, "angle": 0 }
  1128. ],
  1129. "translate": [
  1130. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1131. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1132. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1133. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1134. { "time": 2.6667, "x": 0, "y": 0 }
  1135. ],
  1136. "scale": [
  1137. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1138. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1139. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1140. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1141. { "time": 2.6667, "x": 1, "y": 1 }
  1142. ]
  1143. },
  1144. "bone35": {
  1145. "rotate": [
  1146. { "time": 0, "angle": 0 },
  1147. { "time": 0.6667, "angle": -0.53 },
  1148. { "time": 1.3333, "angle": 0 },
  1149. { "time": 2, "angle": -0.53 },
  1150. { "time": 2.6667, "angle": 0 }
  1151. ],
  1152. "translate": [
  1153. { "time": 0, "x": 0, "y": 0 },
  1154. { "time": 0.6667, "x": 2.53, "y": -0.33 },
  1155. { "time": 1.3333, "x": 0, "y": 0 },
  1156. { "time": 2, "x": 2.53, "y": -0.33 },
  1157. { "time": 2.6667, "x": 0, "y": 0 }
  1158. ],
  1159. "scale": [
  1160. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1161. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1162. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1163. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1164. { "time": 2.6667, "x": 1, "y": 1 }
  1165. ]
  1166. },
  1167. "bone36": {
  1168. "rotate": [
  1169. { "time": 0, "angle": 0 },
  1170. { "time": 0.6667, "angle": -6.82 },
  1171. { "time": 1.3333, "angle": 0 },
  1172. { "time": 2, "angle": -6.82 },
  1173. { "time": 2.6667, "angle": 0 }
  1174. ],
  1175. "translate": [
  1176. { "time": 0, "x": 0, "y": 0 },
  1177. { "time": 0.6667, "x": -0.74, "y": 0.11 },
  1178. { "time": 1.3333, "x": 0, "y": 0 },
  1179. { "time": 2, "x": -0.74, "y": 0.11 },
  1180. { "time": 2.6667, "x": 0, "y": 0 }
  1181. ],
  1182. "scale": [
  1183. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1184. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1185. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1186. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1187. { "time": 2.6667, "x": 1, "y": 1 }
  1188. ]
  1189. },
  1190. "bone37": {
  1191. "rotate": [
  1192. { "time": 0, "angle": 0, "curve": "stepped" },
  1193. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  1194. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  1195. { "time": 2, "angle": 0, "curve": "stepped" },
  1196. { "time": 2.6667, "angle": 0 }
  1197. ],
  1198. "translate": [
  1199. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1200. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1201. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1202. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1203. { "time": 2.6667, "x": 0, "y": 0 }
  1204. ],
  1205. "scale": [
  1206. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1207. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1208. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1209. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1210. { "time": 2.6667, "x": 1, "y": 1 }
  1211. ]
  1212. },
  1213. "bone38": {
  1214. "rotate": [
  1215. { "time": 0, "angle": 0, "curve": "stepped" },
  1216. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  1217. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  1218. { "time": 2, "angle": 0, "curve": "stepped" },
  1219. { "time": 2.6667, "angle": 0 }
  1220. ],
  1221. "translate": [
  1222. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1223. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1224. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1225. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1226. { "time": 2.6667, "x": 0, "y": 0 }
  1227. ],
  1228. "scale": [
  1229. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1230. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1231. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1232. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1233. { "time": 2.6667, "x": 1, "y": 1 }
  1234. ]
  1235. },
  1236. "bone39": {
  1237. "rotate": [
  1238. { "time": 0, "angle": 0, "curve": "stepped" },
  1239. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  1240. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  1241. { "time": 2, "angle": 0, "curve": "stepped" },
  1242. { "time": 2.6667, "angle": 0 }
  1243. ],
  1244. "translate": [
  1245. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1246. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1247. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1248. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1249. { "time": 2.6667, "x": 0, "y": 0 }
  1250. ],
  1251. "scale": [
  1252. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1253. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1254. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1255. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1256. { "time": 2.6667, "x": 1, "y": 1 }
  1257. ]
  1258. },
  1259. "bone40": {
  1260. "rotate": [
  1261. { "time": 0, "angle": 0, "curve": "stepped" },
  1262. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  1263. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  1264. { "time": 2, "angle": 0, "curve": "stepped" },
  1265. { "time": 2.6667, "angle": 0 }
  1266. ],
  1267. "translate": [
  1268. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1269. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1270. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1271. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1272. { "time": 2.6667, "x": 0, "y": 0 }
  1273. ],
  1274. "scale": [
  1275. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1276. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1277. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1278. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1279. { "time": 2.6667, "x": 1, "y": 1 }
  1280. ]
  1281. },
  1282. "bone41": {
  1283. "rotate": [
  1284. { "time": 0, "angle": 0, "curve": "stepped" },
  1285. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  1286. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  1287. { "time": 2, "angle": 0, "curve": "stepped" },
  1288. { "time": 2.6667, "angle": 0 }
  1289. ],
  1290. "translate": [
  1291. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1292. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1293. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1294. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1295. { "time": 2.6667, "x": 0, "y": 0 }
  1296. ],
  1297. "scale": [
  1298. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1299. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1300. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1301. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1302. { "time": 2.6667, "x": 1, "y": 1 }
  1303. ]
  1304. },
  1305. "bone42": {
  1306. "rotate": [
  1307. { "time": 0, "angle": 0, "curve": "stepped" },
  1308. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  1309. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  1310. { "time": 2, "angle": 0, "curve": "stepped" },
  1311. { "time": 2.6667, "angle": 0 }
  1312. ],
  1313. "translate": [
  1314. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1315. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1316. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1317. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1318. { "time": 2.6667, "x": 0, "y": 0 }
  1319. ],
  1320. "scale": [
  1321. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1322. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1323. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1324. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1325. { "time": 2.6667, "x": 1, "y": 1 }
  1326. ]
  1327. },
  1328. "bone43": {
  1329. "rotate": [
  1330. { "time": 0, "angle": 0, "curve": "stepped" },
  1331. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  1332. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  1333. { "time": 2, "angle": 0, "curve": "stepped" },
  1334. { "time": 2.6667, "angle": 0 }
  1335. ],
  1336. "translate": [
  1337. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1338. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1339. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1340. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1341. { "time": 2.6667, "x": 0, "y": 0 }
  1342. ],
  1343. "scale": [
  1344. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1345. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1346. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1347. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1348. { "time": 2.6667, "x": 1, "y": 1 }
  1349. ]
  1350. },
  1351. "bone44": {
  1352. "rotate": [
  1353. { "time": 0, "angle": 0, "curve": "stepped" },
  1354. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  1355. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  1356. { "time": 2, "angle": 0, "curve": "stepped" },
  1357. { "time": 2.6667, "angle": 0 }
  1358. ],
  1359. "translate": [
  1360. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1361. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1362. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1363. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1364. { "time": 2.6667, "x": 0, "y": 0 }
  1365. ],
  1366. "scale": [
  1367. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1368. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1369. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1370. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1371. { "time": 2.6667, "x": 1, "y": 1 }
  1372. ]
  1373. }
  1374. },
  1375. "deform": {
  1376. "default": {
  1377. "qunzi": {
  1378. "qunzi": [
  1379. { "time": 0 },
  1380. {
  1381. "time": 0.6667,
  1382. "offset": 16,
  1383. "vertices": [ -1.49082, -0.09929, -1.39085, -0.54587, -0.95747, 0.66671, -1.11437, 0.34562, 0, 0, 0, 0, -0.42201, -3.2604, 0.58461, -3.2352, -0.69577, -0.79507, -0.4225, -0.96838, -0.46314, -2.09441, 0.19249, -2.13635, -0.84613, -1.82772, -0.25324, -1.9981, -1.24118, -0.55746, -1.01423, -0.90699, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1.44969, -1.26528, -0.99873, -1.64473, 0, 0, -0.97603, -0.16543, -0.88019, -0.4531, -1.28728, -1.23622, -0.85274, -1.56787 ]
  1384. },
  1385. { "time": 1.3333 },
  1386. {
  1387. "time": 2,
  1388. "offset": 16,
  1389. "vertices": [ -1.49082, -0.09929, -1.39085, -0.54587, -0.95747, 0.66671, -1.11437, 0.34562, 0, 0, 0, 0, -0.42201, -3.2604, 0.58461, -3.2352, -0.69577, -0.79507, -0.4225, -0.96838, -0.46314, -2.09441, 0.19249, -2.13635, -0.84613, -1.82772, -0.25324, -1.9981, -1.24118, -0.55746, -1.01423, -0.90699, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1.44969, -1.26528, -0.99873, -1.64473, 0, 0, -0.97603, -0.16543, -0.88019, -0.4531, -1.28728, -1.23622, -0.85274, -1.56787 ]
  1390. },
  1391. { "time": 2.6667 }
  1392. ]
  1393. },
  1394. "shuyao": {
  1395. "shuyao": [
  1396. {
  1397. "time": 0,
  1398. "offset": 6,
  1399. "vertices": [ 3.31154, 0.15052 ]
  1400. },
  1401. {
  1402. "time": 0.6667,
  1403. "vertices": [ 2.36259, -1.23799, 1.34261, 0.06103, 3.88826, -0.97643, 3.31154, 0.15052, 2.65907, 0.69747, 0, 0, 3.45242, 0.15693 ]
  1404. },
  1405. {
  1406. "time": 1.3333,
  1407. "offset": 6,
  1408. "vertices": [ 3.31154, 0.15052 ]
  1409. },
  1410. {
  1411. "time": 2,
  1412. "vertices": [ 2.36259, -1.23799, 1.34261, 0.06103, 3.88826, -0.97643, 3.31154, 0.15052, 2.65907, 0.69747, 0, 0, 3.45242, 0.15693 ]
  1413. },
  1414. {
  1415. "time": 2.6667,
  1416. "offset": 6,
  1417. "vertices": [ 3.31154, 0.15052 ]
  1418. }
  1419. ]
  1420. },
  1421. "toufa8": {
  1422. "toufa8": [
  1423. { "time": 0 },
  1424. {
  1425. "time": 0.6667,
  1426. "vertices": [ 0.15852, -3.24708, 3.08467, -0.11665 ]
  1427. },
  1428. { "time": 1.3333 },
  1429. {
  1430. "time": 2,
  1431. "vertices": [ 0.15852, -3.24708, 3.08467, -0.11665 ]
  1432. },
  1433. { "time": 2.6667 }
  1434. ]
  1435. },
  1436. "xiong": {
  1437. "xiong": [
  1438. {
  1439. "time": 0,
  1440. "offset": 2,
  1441. "vertices": [ -0.74711, -0.06556, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.12464, 0.01091, 0, 0, 0, 0, 0.12464, 0.01091, 0.12464, 0.01091 ]
  1442. },
  1443. {
  1444. "time": 0.6667,
  1445. "vertices": [ -1.83295, -3.68023, -1.80258, 0.50561, -0.32539, 3.71006, -0.32539, 3.71006, 0.47253, 0.79842, 0, 0, 0, 0, 0, 0, 0, 0, 2.10699, 0.18482, 0.5883, 1.56396, 0.2879, -1.29454, 0.2282, 1.88098, 1.11015, -1.54846 ]
  1446. },
  1447. {
  1448. "time": 1.3333,
  1449. "offset": 2,
  1450. "vertices": [ -0.74711, -0.06556, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.12464, 0.01091, 0, 0, 0, 0, 0.12464, 0.01091, 0.12464, 0.01091 ]
  1451. },
  1452. {
  1453. "time": 2,
  1454. "vertices": [ -1.83295, -3.68023, -1.80258, 0.50561, -0.32539, 3.71006, -0.32539, 3.71006, 0.47253, 0.79842, 0, 0, 0, 0, 0, 0, 0, 0, 2.10699, 0.18482, 0.5883, 1.56396, 0.2879, -1.29454, 0.2282, 1.88098, 1.11015, -1.54846 ]
  1455. },
  1456. {
  1457. "time": 2.6667,
  1458. "offset": 2,
  1459. "vertices": [ -0.74711, -0.06556, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.12464, 0.01091, 0, 0, 0, 0, 0.12464, 0.01091, 0.12464, 0.01091 ]
  1460. }
  1461. ]
  1462. }
  1463. }
  1464. }
  1465. },
  1466. "stand2": {
  1467. "slots": {
  1468. "biyan": {
  1469. "attachment": [
  1470. { "time": 0, "name": null },
  1471. { "time": 0.2333, "name": "biyan" },
  1472. { "time": 0.3333, "name": null },
  1473. { "time": 2.1667, "name": "biyan" },
  1474. { "time": 2.2667, "name": null },
  1475. { "time": 3, "name": null }
  1476. ]
  1477. },
  1478. "youyan": {
  1479. "attachment": [
  1480. { "time": 0.2333, "name": null },
  1481. { "time": 0.3333, "name": "youyan" },
  1482. { "time": 2.1667, "name": null },
  1483. { "time": 2.2667, "name": "youyan" }
  1484. ]
  1485. },
  1486. "zuoyan": {
  1487. "attachment": [
  1488. { "time": 0.2333, "name": null },
  1489. { "time": 0.3333, "name": "zuoyan" },
  1490. { "time": 2.1667, "name": null },
  1491. { "time": 2.2667, "name": "zuoyan" }
  1492. ]
  1493. }
  1494. },
  1495. "bones": {
  1496. "bone26": {
  1497. "rotate": [
  1498. { "time": 0, "angle": 0, "curve": "stepped" },
  1499. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  1500. { "time": 0.5, "angle": 0, "curve": "stepped" },
  1501. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  1502. { "time": 1.0667, "angle": 0, "curve": "stepped" },
  1503. { "time": 1.6, "angle": 0, "curve": "stepped" },
  1504. { "time": 2.1667, "angle": 0, "curve": "stepped" },
  1505. { "time": 2.7333, "angle": 0, "curve": "stepped" },
  1506. { "time": 3, "angle": 0 }
  1507. ],
  1508. "translate": [
  1509. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1510. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1511. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1512. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1513. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  1514. { "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
  1515. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  1516. { "time": 2.7333, "x": 0, "y": 0, "curve": "stepped" },
  1517. { "time": 3, "x": 0, "y": 0 }
  1518. ],
  1519. "scale": [
  1520. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1521. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1522. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1523. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1524. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  1525. { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  1526. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  1527. { "time": 2.7333, "x": 1, "y": 1, "curve": "stepped" },
  1528. { "time": 3, "x": 1, "y": 1 }
  1529. ]
  1530. },
  1531. "root": {
  1532. "rotate": [
  1533. { "time": 0, "angle": 0, "curve": "stepped" },
  1534. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  1535. { "time": 0.5, "angle": 0, "curve": "stepped" },
  1536. { "time": 1.0667, "angle": 0, "curve": "stepped" },
  1537. { "time": 1.6, "angle": 0, "curve": "stepped" },
  1538. { "time": 2.1667, "angle": 0, "curve": "stepped" },
  1539. { "time": 2.7333, "angle": 0, "curve": "stepped" },
  1540. { "time": 3, "angle": 0 }
  1541. ],
  1542. "translate": [
  1543. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1544. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1545. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1546. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  1547. { "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
  1548. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  1549. { "time": 2.7333, "x": 0, "y": 0, "curve": "stepped" },
  1550. { "time": 3, "x": 0, "y": 0 }
  1551. ],
  1552. "scale": [
  1553. { "time": 0, "x": 0.65, "y": 0.65 }
  1554. ]
  1555. },
  1556. "bone": {
  1557. "rotate": [
  1558. { "time": 0, "angle": 0, "curve": "stepped" },
  1559. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  1560. { "time": 0.5, "angle": 0, "curve": "stepped" },
  1561. { "time": 1.0667, "angle": 0, "curve": "stepped" },
  1562. { "time": 1.6, "angle": 0, "curve": "stepped" },
  1563. { "time": 2.1667, "angle": 0, "curve": "stepped" },
  1564. { "time": 2.7333, "angle": 0, "curve": "stepped" },
  1565. { "time": 3, "angle": 0 }
  1566. ],
  1567. "translate": [
  1568. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1569. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1570. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1571. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  1572. { "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
  1573. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  1574. { "time": 2.7333, "x": 0, "y": 0, "curve": "stepped" },
  1575. { "time": 3, "x": 0, "y": 0 }
  1576. ],
  1577. "scale": [
  1578. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1579. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1580. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1581. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  1582. { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  1583. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  1584. { "time": 2.7333, "x": 1, "y": 1, "curve": "stepped" },
  1585. { "time": 3, "x": 1, "y": 1 }
  1586. ]
  1587. },
  1588. "bone2": {
  1589. "rotate": [
  1590. { "time": 0, "angle": 0, "curve": "stepped" },
  1591. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  1592. { "time": 0.5, "angle": 0, "curve": "stepped" },
  1593. { "time": 1.0667, "angle": 0, "curve": "stepped" },
  1594. { "time": 1.6, "angle": 0, "curve": "stepped" },
  1595. { "time": 2.1667, "angle": 0, "curve": "stepped" },
  1596. { "time": 2.7333, "angle": 0, "curve": "stepped" },
  1597. { "time": 3, "angle": 0 }
  1598. ],
  1599. "translate": [
  1600. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1601. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1602. { "time": 0.5, "x": 0, "y": 0 },
  1603. { "time": 1.0667, "x": 1.05, "y": -0.05 },
  1604. { "time": 1.6, "x": 0, "y": 0 },
  1605. { "time": 2.1667, "x": 1.05, "y": -0.05 },
  1606. { "time": 2.7333, "x": 0, "y": 0, "curve": "stepped" },
  1607. { "time": 3, "x": 0, "y": 0 }
  1608. ],
  1609. "scale": [
  1610. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1611. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1612. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1613. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  1614. { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  1615. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  1616. { "time": 2.7333, "x": 1, "y": 1, "curve": "stepped" },
  1617. { "time": 3, "x": 1, "y": 1 }
  1618. ]
  1619. },
  1620. "bone3": {
  1621. "rotate": [
  1622. { "time": 0, "angle": 0, "curve": "stepped" },
  1623. { "time": 0.1333, "angle": 0 },
  1624. { "time": 0.5, "angle": -6.44 },
  1625. { "time": 1.0667, "angle": 7.88 },
  1626. { "time": 1.6, "angle": -6.44 },
  1627. { "time": 2.1667, "angle": 7.88 },
  1628. { "time": 2.7333, "angle": -6.44 },
  1629. { "time": 3, "angle": 0 }
  1630. ],
  1631. "translate": [
  1632. { "time": 0, "x": 0, "y": 0 },
  1633. { "time": 0.1333, "x": -2.24, "y": 0.09 },
  1634. { "time": 0.5, "x": 1.5, "y": -0.06, "curve": "stepped" },
  1635. { "time": 1.0667, "x": 1.5, "y": -0.06, "curve": "stepped" },
  1636. { "time": 1.6, "x": 1.5, "y": -0.06, "curve": "stepped" },
  1637. { "time": 2.1667, "x": 1.5, "y": -0.06, "curve": "stepped" },
  1638. { "time": 2.7333, "x": 1.5, "y": -0.06 },
  1639. { "time": 3, "x": 0, "y": 0 }
  1640. ],
  1641. "scale": [
  1642. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1643. { "time": 0.1333, "x": 1, "y": 1 },
  1644. { "time": 0.5, "x": 1.05, "y": 1, "curve": "stepped" },
  1645. { "time": 1.0667, "x": 1.05, "y": 1, "curve": "stepped" },
  1646. { "time": 1.6, "x": 1.05, "y": 1, "curve": "stepped" },
  1647. { "time": 2.1667, "x": 1.05, "y": 1, "curve": "stepped" },
  1648. { "time": 2.7333, "x": 1.05, "y": 1 },
  1649. { "time": 3, "x": 1, "y": 1 }
  1650. ]
  1651. },
  1652. "bone4": {
  1653. "rotate": [
  1654. { "time": 0, "angle": 0, "curve": "stepped" },
  1655. { "time": 0.1333, "angle": 0 },
  1656. { "time": 0.5, "angle": -5.24, "curve": "stepped" },
  1657. { "time": 1.0667, "angle": -5.24, "curve": "stepped" },
  1658. { "time": 1.6, "angle": -5.24, "curve": "stepped" },
  1659. { "time": 2.1667, "angle": -5.24, "curve": "stepped" },
  1660. { "time": 2.7333, "angle": -5.24 },
  1661. { "time": 3, "angle": 0 }
  1662. ],
  1663. "translate": [
  1664. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1665. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1666. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1667. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  1668. { "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
  1669. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  1670. { "time": 2.7333, "x": 0, "y": 0, "curve": "stepped" },
  1671. { "time": 3, "x": 0, "y": 0 }
  1672. ],
  1673. "scale": [
  1674. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1675. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1676. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1677. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  1678. { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  1679. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  1680. { "time": 2.7333, "x": 1, "y": 1, "curve": "stepped" },
  1681. { "time": 3, "x": 1, "y": 1 }
  1682. ]
  1683. },
  1684. "bone5": {
  1685. "rotate": [
  1686. { "time": 0, "angle": 0, "curve": "stepped" },
  1687. { "time": 0.1333, "angle": 0 },
  1688. { "time": 0.5, "angle": 3.84, "curve": "stepped" },
  1689. { "time": 1.0667, "angle": 3.84, "curve": "stepped" },
  1690. { "time": 1.6, "angle": 3.84, "curve": "stepped" },
  1691. { "time": 2.1667, "angle": 3.84, "curve": "stepped" },
  1692. { "time": 2.7333, "angle": 3.84 },
  1693. { "time": 3, "angle": 0 }
  1694. ],
  1695. "translate": [
  1696. { "time": 0, "x": 0, "y": 0 },
  1697. { "time": 0.1333, "x": -0.9, "y": 0 },
  1698. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1699. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  1700. { "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
  1701. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  1702. { "time": 2.7333, "x": 0, "y": 0, "curve": "stepped" },
  1703. { "time": 3, "x": 0, "y": 0 }
  1704. ],
  1705. "scale": [
  1706. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1707. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1708. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1709. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  1710. { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  1711. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  1712. { "time": 2.7333, "x": 1, "y": 1, "curve": "stepped" },
  1713. { "time": 3, "x": 1, "y": 1 }
  1714. ]
  1715. },
  1716. "bone6": {
  1717. "rotate": [
  1718. { "time": 0, "angle": 0, "curve": "stepped" },
  1719. { "time": 0.1333, "angle": 0 },
  1720. { "time": 0.5, "angle": -4.75 },
  1721. { "time": 1.0667, "angle": -5.8 },
  1722. { "time": 1.6, "angle": -4.75 },
  1723. { "time": 2.1667, "angle": -5.8 },
  1724. { "time": 2.7333, "angle": -4.75 },
  1725. { "time": 3, "angle": 0 }
  1726. ],
  1727. "translate": [
  1728. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1729. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1730. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1731. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  1732. { "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
  1733. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  1734. { "time": 2.7333, "x": 0, "y": 0, "curve": "stepped" },
  1735. { "time": 3, "x": 0, "y": 0 }
  1736. ],
  1737. "scale": [
  1738. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1739. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1740. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1741. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  1742. { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  1743. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  1744. { "time": 2.7333, "x": 1, "y": 1, "curve": "stepped" },
  1745. { "time": 3, "x": 1, "y": 1 }
  1746. ]
  1747. },
  1748. "bone7": {
  1749. "rotate": [
  1750. { "time": 0, "angle": 0, "curve": "stepped" },
  1751. { "time": 0.1333, "angle": 0 },
  1752. { "time": 0.5, "angle": -0.51 },
  1753. { "time": 1.0667, "angle": -4.9 },
  1754. { "time": 1.6, "angle": -0.51 },
  1755. { "time": 2.1667, "angle": -4.9 },
  1756. { "time": 2.7333, "angle": -0.51 },
  1757. { "time": 3, "angle": 0 }
  1758. ],
  1759. "translate": [
  1760. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1761. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1762. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1763. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  1764. { "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
  1765. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  1766. { "time": 2.7333, "x": 0, "y": 0, "curve": "stepped" },
  1767. { "time": 3, "x": 0, "y": 0 }
  1768. ],
  1769. "scale": [
  1770. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1771. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1772. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1773. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  1774. { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  1775. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  1776. { "time": 2.7333, "x": 1, "y": 1, "curve": "stepped" },
  1777. { "time": 3, "x": 1, "y": 1 }
  1778. ]
  1779. },
  1780. "bone8": {
  1781. "rotate": [
  1782. { "time": 0, "angle": 0, "curve": "stepped" },
  1783. { "time": 0.1333, "angle": 0 },
  1784. { "time": 0.5, "angle": -2.69 },
  1785. { "time": 1.0667, "angle": -16.85 },
  1786. { "time": 1.6, "angle": -2.69 },
  1787. { "time": 2.1667, "angle": -16.85 },
  1788. { "time": 2.7333, "angle": -2.69 },
  1789. { "time": 3, "angle": 0 }
  1790. ],
  1791. "translate": [
  1792. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1793. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1794. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1795. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  1796. { "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
  1797. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  1798. { "time": 2.7333, "x": 0, "y": 0, "curve": "stepped" },
  1799. { "time": 3, "x": 0, "y": 0 }
  1800. ],
  1801. "scale": [
  1802. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1803. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1804. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1805. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  1806. { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  1807. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  1808. { "time": 2.7333, "x": 1, "y": 1, "curve": "stepped" },
  1809. { "time": 3, "x": 1, "y": 1 }
  1810. ]
  1811. },
  1812. "bone9": {
  1813. "rotate": [
  1814. { "time": 0, "angle": 0, "curve": "stepped" },
  1815. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  1816. { "time": 0.5, "angle": 0 },
  1817. { "time": 1.0667, "angle": -9.51 },
  1818. { "time": 1.6, "angle": 0 },
  1819. { "time": 2.1667, "angle": -9.51 },
  1820. { "time": 2.7333, "angle": 0, "curve": "stepped" },
  1821. { "time": 3, "angle": 0 }
  1822. ],
  1823. "translate": [
  1824. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1825. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1826. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1827. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  1828. { "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
  1829. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  1830. { "time": 2.7333, "x": 0, "y": 0, "curve": "stepped" },
  1831. { "time": 3, "x": 0, "y": 0 }
  1832. ],
  1833. "scale": [
  1834. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1835. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1836. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1837. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  1838. { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  1839. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  1840. { "time": 2.7333, "x": 1, "y": 1, "curve": "stepped" },
  1841. { "time": 3, "x": 1, "y": 1 }
  1842. ]
  1843. },
  1844. "bone10": {
  1845. "rotate": [
  1846. { "time": 0, "angle": 0, "curve": "stepped" },
  1847. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  1848. { "time": 0.5, "angle": 0 },
  1849. { "time": 1.0667, "angle": -3.83 },
  1850. { "time": 1.6, "angle": 0 },
  1851. { "time": 2.1667, "angle": -3.83 },
  1852. { "time": 2.7333, "angle": 0, "curve": "stepped" },
  1853. { "time": 3, "angle": 0 }
  1854. ],
  1855. "translate": [
  1856. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1857. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1858. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1859. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  1860. { "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
  1861. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  1862. { "time": 2.7333, "x": 0, "y": 0, "curve": "stepped" },
  1863. { "time": 3, "x": 0, "y": 0 }
  1864. ],
  1865. "scale": [
  1866. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1867. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1868. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1869. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  1870. { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  1871. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  1872. { "time": 2.7333, "x": 1, "y": 1, "curve": "stepped" },
  1873. { "time": 3, "x": 1, "y": 1 }
  1874. ]
  1875. },
  1876. "bone11": {
  1877. "rotate": [
  1878. { "time": 0, "angle": 0, "curve": "stepped" },
  1879. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  1880. { "time": 0.5, "angle": 0 },
  1881. { "time": 1.0667, "angle": -3.45 },
  1882. { "time": 1.6, "angle": 0 },
  1883. { "time": 2.1667, "angle": -3.45 },
  1884. { "time": 2.7333, "angle": 0, "curve": "stepped" },
  1885. { "time": 3, "angle": 0 }
  1886. ],
  1887. "translate": [
  1888. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1889. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1890. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1891. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  1892. { "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
  1893. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  1894. { "time": 2.7333, "x": 0, "y": 0, "curve": "stepped" },
  1895. { "time": 3, "x": 0, "y": 0 }
  1896. ],
  1897. "scale": [
  1898. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1899. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1900. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1901. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  1902. { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  1903. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  1904. { "time": 2.7333, "x": 1, "y": 1, "curve": "stepped" },
  1905. { "time": 3, "x": 1, "y": 1 }
  1906. ]
  1907. },
  1908. "bone12": {
  1909. "rotate": [
  1910. { "time": 0, "angle": 0, "curve": "stepped" },
  1911. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  1912. { "time": 0.5, "angle": 0 },
  1913. { "time": 1.0667, "angle": 2.32 },
  1914. { "time": 1.6, "angle": 0 },
  1915. { "time": 2.1667, "angle": 2.32 },
  1916. { "time": 2.7333, "angle": 0, "curve": "stepped" },
  1917. { "time": 3, "angle": 0 }
  1918. ],
  1919. "translate": [
  1920. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1921. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1922. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1923. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  1924. { "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
  1925. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  1926. { "time": 2.7333, "x": 0, "y": 0, "curve": "stepped" },
  1927. { "time": 3, "x": 0, "y": 0 }
  1928. ],
  1929. "scale": [
  1930. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1931. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1932. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1933. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  1934. { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  1935. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  1936. { "time": 2.7333, "x": 1, "y": 1, "curve": "stepped" },
  1937. { "time": 3, "x": 1, "y": 1 }
  1938. ]
  1939. },
  1940. "bone13": {
  1941. "rotate": [
  1942. { "time": 0, "angle": 0, "curve": "stepped" },
  1943. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  1944. { "time": 0.5, "angle": 0 },
  1945. { "time": 1.0667, "angle": 9.73 },
  1946. { "time": 1.6, "angle": 0 },
  1947. { "time": 2.1667, "angle": 9.73 },
  1948. { "time": 2.7333, "angle": 0, "curve": "stepped" },
  1949. { "time": 3, "angle": 0 }
  1950. ],
  1951. "translate": [
  1952. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1953. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1954. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1955. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  1956. { "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
  1957. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  1958. { "time": 2.7333, "x": 0, "y": 0, "curve": "stepped" },
  1959. { "time": 3, "x": 0, "y": 0 }
  1960. ],
  1961. "scale": [
  1962. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1963. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1964. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1965. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  1966. { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  1967. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  1968. { "time": 2.7333, "x": 1, "y": 1, "curve": "stepped" },
  1969. { "time": 3, "x": 1, "y": 1 }
  1970. ]
  1971. },
  1972. "bone14": {
  1973. "rotate": [
  1974. { "time": 0, "angle": 0, "curve": "stepped" },
  1975. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  1976. { "time": 0.5, "angle": 0 },
  1977. { "time": 1.0667, "angle": 23.54 },
  1978. { "time": 1.6, "angle": 0 },
  1979. { "time": 2.1667, "angle": 23.54 },
  1980. { "time": 2.7333, "angle": 0, "curve": "stepped" },
  1981. { "time": 3, "angle": 0 }
  1982. ],
  1983. "translate": [
  1984. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1985. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1986. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1987. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  1988. { "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
  1989. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  1990. { "time": 2.7333, "x": 0, "y": 0, "curve": "stepped" },
  1991. { "time": 3, "x": 0, "y": 0 }
  1992. ],
  1993. "scale": [
  1994. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1995. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1996. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1997. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  1998. { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  1999. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  2000. { "time": 2.7333, "x": 1, "y": 1, "curve": "stepped" },
  2001. { "time": 3, "x": 1, "y": 1 }
  2002. ]
  2003. },
  2004. "bone15": {
  2005. "rotate": [
  2006. { "time": 0, "angle": 0, "curve": "stepped" },
  2007. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  2008. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2009. { "time": 1.0667, "angle": 0, "curve": "stepped" },
  2010. { "time": 1.6, "angle": 0, "curve": "stepped" },
  2011. { "time": 2.1667, "angle": 0, "curve": "stepped" },
  2012. { "time": 2.7333, "angle": 0, "curve": "stepped" },
  2013. { "time": 3, "angle": 0 }
  2014. ],
  2015. "translate": [
  2016. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2017. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  2018. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2019. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  2020. { "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
  2021. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  2022. { "time": 2.7333, "x": 0, "y": 0, "curve": "stepped" },
  2023. { "time": 3, "x": 0, "y": 0 }
  2024. ],
  2025. "scale": [
  2026. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2027. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2028. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2029. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  2030. { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  2031. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  2032. { "time": 2.7333, "x": 1, "y": 1, "curve": "stepped" },
  2033. { "time": 3, "x": 1, "y": 1 }
  2034. ]
  2035. },
  2036. "bone16": {
  2037. "rotate": [
  2038. { "time": 0, "angle": 0 },
  2039. { "time": 0.1333, "angle": 10.78 },
  2040. { "time": 0.5, "angle": 15.07 },
  2041. { "time": 1.0667, "angle": 26.02 },
  2042. { "time": 1.6, "angle": 15.07 },
  2043. { "time": 2.1667, "angle": 26.02 },
  2044. { "time": 2.7333, "angle": 15.07 },
  2045. { "time": 3, "angle": 0 }
  2046. ],
  2047. "translate": [
  2048. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2049. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  2050. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2051. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  2052. { "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
  2053. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  2054. { "time": 2.7333, "x": 0, "y": 0, "curve": "stepped" },
  2055. { "time": 3, "x": 0, "y": 0 }
  2056. ],
  2057. "scale": [
  2058. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2059. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2060. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2061. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  2062. { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  2063. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  2064. { "time": 2.7333, "x": 1, "y": 1, "curve": "stepped" },
  2065. { "time": 3, "x": 1, "y": 1 }
  2066. ]
  2067. },
  2068. "bone17": {
  2069. "rotate": [
  2070. { "time": 0, "angle": 0, "curve": "stepped" },
  2071. { "time": 0.1333, "angle": 0 },
  2072. { "time": 0.5, "angle": 12.13 },
  2073. { "time": 1.0667, "angle": 17.98 },
  2074. { "time": 1.6, "angle": 12.13 },
  2075. { "time": 2.1667, "angle": 17.98 },
  2076. { "time": 2.7333, "angle": 12.13 },
  2077. { "time": 3, "angle": 0 }
  2078. ],
  2079. "translate": [
  2080. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2081. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  2082. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2083. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  2084. { "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
  2085. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  2086. { "time": 2.7333, "x": 0, "y": 0, "curve": "stepped" },
  2087. { "time": 3, "x": 0, "y": 0 }
  2088. ],
  2089. "scale": [
  2090. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2091. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2092. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2093. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  2094. { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  2095. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  2096. { "time": 2.7333, "x": 1, "y": 1, "curve": "stepped" },
  2097. { "time": 3, "x": 1, "y": 1 }
  2098. ]
  2099. },
  2100. "bone18": {
  2101. "rotate": [
  2102. { "time": 0, "angle": 0 },
  2103. { "time": 0.1333, "angle": -4.3 },
  2104. { "time": 0.5, "angle": -3.95 },
  2105. { "time": 1.0667, "angle": -13.2 },
  2106. { "time": 1.6, "angle": -3.95 },
  2107. { "time": 2.1667, "angle": -13.2 },
  2108. { "time": 2.7333, "angle": -3.95 },
  2109. { "time": 3, "angle": 0 }
  2110. ],
  2111. "translate": [
  2112. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2113. { "time": 0.1333, "x": 0, "y": 0 },
  2114. { "time": 0.5, "x": -0.52, "y": -1.93, "curve": "stepped" },
  2115. { "time": 1.0667, "x": -0.52, "y": -1.93, "curve": "stepped" },
  2116. { "time": 1.6, "x": -0.52, "y": -1.93, "curve": "stepped" },
  2117. { "time": 2.1667, "x": -0.52, "y": -1.93, "curve": "stepped" },
  2118. { "time": 2.7333, "x": -0.52, "y": -1.93 },
  2119. { "time": 3, "x": 0, "y": 0 }
  2120. ],
  2121. "scale": [
  2122. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2123. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2124. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2125. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  2126. { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  2127. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  2128. { "time": 2.7333, "x": 1, "y": 1, "curve": "stepped" },
  2129. { "time": 3, "x": 1, "y": 1 }
  2130. ]
  2131. },
  2132. "bone19": {
  2133. "rotate": [
  2134. { "time": 0, "angle": 0, "curve": "stepped" },
  2135. { "time": 0.1333, "angle": 0 },
  2136. { "time": 0.5, "angle": 14.76 },
  2137. { "time": 1.0667, "angle": 7.89 },
  2138. { "time": 1.6, "angle": 14.76 },
  2139. { "time": 2.1667, "angle": 7.89 },
  2140. { "time": 2.7333, "angle": 14.76 },
  2141. { "time": 3, "angle": 0 }
  2142. ],
  2143. "translate": [
  2144. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2145. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  2146. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2147. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  2148. { "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
  2149. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  2150. { "time": 2.7333, "x": 0, "y": 0, "curve": "stepped" },
  2151. { "time": 3, "x": 0, "y": 0 }
  2152. ],
  2153. "scale": [
  2154. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2155. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2156. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2157. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  2158. { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  2159. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  2160. { "time": 2.7333, "x": 1, "y": 1, "curve": "stepped" },
  2161. { "time": 3, "x": 1, "y": 1 }
  2162. ]
  2163. },
  2164. "bone20": {
  2165. "rotate": [
  2166. { "time": 0, "angle": 0, "curve": "stepped" },
  2167. { "time": 0.1333, "angle": 0 },
  2168. { "time": 0.5, "angle": 21.63 },
  2169. { "time": 1.0667, "angle": 13.14 },
  2170. { "time": 1.6, "angle": 21.63 },
  2171. { "time": 2.1667, "angle": 13.14 },
  2172. { "time": 2.7333, "angle": 21.63 },
  2173. { "time": 3, "angle": 0 }
  2174. ],
  2175. "translate": [
  2176. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2177. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  2178. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2179. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  2180. { "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
  2181. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  2182. { "time": 2.7333, "x": 0, "y": 0, "curve": "stepped" },
  2183. { "time": 3, "x": 0, "y": 0 }
  2184. ],
  2185. "scale": [
  2186. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2187. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2188. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2189. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  2190. { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  2191. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  2192. { "time": 2.7333, "x": 1, "y": 1, "curve": "stepped" },
  2193. { "time": 3, "x": 1, "y": 1 }
  2194. ]
  2195. },
  2196. "bone21": {
  2197. "rotate": [
  2198. { "time": 0, "angle": 0, "curve": "stepped" },
  2199. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  2200. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2201. { "time": 1.0667, "angle": 0, "curve": "stepped" },
  2202. { "time": 1.6, "angle": 0, "curve": "stepped" },
  2203. { "time": 2.1667, "angle": 0, "curve": "stepped" },
  2204. { "time": 2.7333, "angle": 0, "curve": "stepped" },
  2205. { "time": 3, "angle": 0 }
  2206. ],
  2207. "translate": [
  2208. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2209. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  2210. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2211. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  2212. { "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
  2213. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  2214. { "time": 2.7333, "x": 0, "y": 0, "curve": "stepped" },
  2215. { "time": 3, "x": 0, "y": 0 }
  2216. ],
  2217. "scale": [
  2218. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2219. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2220. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2221. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  2222. { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  2223. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  2224. { "time": 2.7333, "x": 1, "y": 1, "curve": "stepped" },
  2225. { "time": 3, "x": 1, "y": 1 }
  2226. ]
  2227. },
  2228. "bone22": {
  2229. "rotate": [
  2230. { "time": 0, "angle": 0, "curve": "stepped" },
  2231. { "time": 0.1333, "angle": 0 },
  2232. { "time": 0.5, "angle": -34.24 },
  2233. { "time": 1.0667, "angle": 10.49 },
  2234. { "time": 1.6, "angle": -34.24 },
  2235. { "time": 2.1667, "angle": 10.49 },
  2236. { "time": 2.7333, "angle": -34.24 },
  2237. { "time": 3, "angle": 0 }
  2238. ],
  2239. "translate": [
  2240. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2241. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  2242. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2243. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  2244. { "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
  2245. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  2246. { "time": 2.7333, "x": 0, "y": 0, "curve": "stepped" },
  2247. { "time": 3, "x": 0, "y": 0 }
  2248. ],
  2249. "scale": [
  2250. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2251. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2252. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2253. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  2254. { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  2255. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  2256. { "time": 2.7333, "x": 1, "y": 1, "curve": "stepped" },
  2257. { "time": 3, "x": 1, "y": 1 }
  2258. ]
  2259. },
  2260. "bone23": {
  2261. "rotate": [
  2262. { "time": 0, "angle": 0, "curve": "stepped" },
  2263. { "time": 0.1333, "angle": 0 },
  2264. { "time": 0.5, "angle": 21.93 },
  2265. { "time": 1.0667, "angle": 6.54 },
  2266. { "time": 1.6, "angle": 21.93 },
  2267. { "time": 2.1667, "angle": 6.54 },
  2268. { "time": 2.7333, "angle": 21.93 },
  2269. { "time": 3, "angle": 0 }
  2270. ],
  2271. "translate": [
  2272. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2273. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  2274. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2275. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  2276. { "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
  2277. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  2278. { "time": 2.7333, "x": 0, "y": 0, "curve": "stepped" },
  2279. { "time": 3, "x": 0, "y": 0 }
  2280. ],
  2281. "scale": [
  2282. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2283. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2284. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2285. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  2286. { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  2287. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  2288. { "time": 2.7333, "x": 1, "y": 1, "curve": "stepped" },
  2289. { "time": 3, "x": 1, "y": 1 }
  2290. ]
  2291. },
  2292. "bone24": {
  2293. "rotate": [
  2294. { "time": 0, "angle": 0, "curve": "stepped" },
  2295. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  2296. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  2297. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  2298. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2299. { "time": 0.5333, "angle": 0, "curve": "stepped" },
  2300. { "time": 1.6, "angle": 0, "curve": "stepped" },
  2301. { "time": 2.1667, "angle": 0, "curve": "stepped" },
  2302. { "time": 2.2667, "angle": 0, "curve": "stepped" },
  2303. { "time": 2.7333, "angle": 0, "curve": "stepped" },
  2304. { "time": 3, "angle": 0 }
  2305. ],
  2306. "translate": [
  2307. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2308. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  2309. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  2310. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2311. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  2312. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2313. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  2314. { "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
  2315. { "time": 2.0667, "x": 0, "y": 0, "curve": "stepped" },
  2316. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  2317. { "time": 2.2667, "x": 0, "y": 0, "curve": "stepped" },
  2318. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  2319. { "time": 2.7333, "x": 0, "y": 0, "curve": "stepped" },
  2320. { "time": 3, "x": 0, "y": 0 }
  2321. ],
  2322. "scale": [
  2323. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2324. { "time": 0.1333, "x": 1, "y": 1 },
  2325. { "time": 0.2333, "x": 0.364, "y": 1, "curve": "stepped" },
  2326. { "time": 0.3333, "x": 0.364, "y": 1 },
  2327. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  2328. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2329. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  2330. { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  2331. { "time": 2.0667, "x": 1, "y": 1 },
  2332. { "time": 2.1667, "x": 0.364, "y": 1, "curve": "stepped" },
  2333. { "time": 2.2667, "x": 0.364, "y": 1 },
  2334. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  2335. { "time": 2.7333, "x": 1, "y": 1, "curve": "stepped" },
  2336. { "time": 3, "x": 1, "y": 1 }
  2337. ]
  2338. },
  2339. "bone25": {
  2340. "rotate": [
  2341. { "time": 0, "angle": 0, "curve": "stepped" },
  2342. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  2343. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  2344. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  2345. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2346. { "time": 0.5333, "angle": 0, "curve": "stepped" },
  2347. { "time": 1.6, "angle": 0, "curve": "stepped" },
  2348. { "time": 2.1667, "angle": 0, "curve": "stepped" },
  2349. { "time": 2.2667, "angle": 0, "curve": "stepped" },
  2350. { "time": 2.7333, "angle": 0, "curve": "stepped" },
  2351. { "time": 3, "angle": 0 }
  2352. ],
  2353. "translate": [
  2354. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2355. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  2356. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  2357. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2358. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  2359. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2360. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  2361. { "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
  2362. { "time": 2.0667, "x": 0, "y": 0, "curve": "stepped" },
  2363. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  2364. { "time": 2.2667, "x": 0, "y": 0, "curve": "stepped" },
  2365. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  2366. { "time": 2.7333, "x": 0, "y": 0, "curve": "stepped" },
  2367. { "time": 3, "x": 0, "y": 0 }
  2368. ],
  2369. "scale": [
  2370. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2371. { "time": 0.1333, "x": 1, "y": 1 },
  2372. { "time": 0.2333, "x": 0.394, "y": 1, "curve": "stepped" },
  2373. { "time": 0.3333, "x": 0.394, "y": 1 },
  2374. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  2375. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2376. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  2377. { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  2378. { "time": 2.0667, "x": 1, "y": 1 },
  2379. { "time": 2.1667, "x": 0.394, "y": 1, "curve": "stepped" },
  2380. { "time": 2.2667, "x": 0.394, "y": 1 },
  2381. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  2382. { "time": 2.7333, "x": 1, "y": 1, "curve": "stepped" },
  2383. { "time": 3, "x": 1, "y": 1 }
  2384. ]
  2385. },
  2386. "bone27": {
  2387. "rotate": [
  2388. { "time": 0, "angle": 0, "curve": "stepped" },
  2389. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  2390. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  2391. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  2392. { "time": 2.1667, "angle": 0, "curve": "stepped" },
  2393. { "time": 2.2667, "angle": 0, "curve": "stepped" },
  2394. { "time": 2.7333, "angle": 0, "curve": "stepped" },
  2395. { "time": 3, "angle": 0 }
  2396. ],
  2397. "translate": [
  2398. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2399. { "time": 0.1333, "x": 0, "y": 0 },
  2400. { "time": 0.2333, "x": -3.19, "y": 0.27, "curve": "stepped" },
  2401. { "time": 0.3333, "x": -3.19, "y": 0.27 },
  2402. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  2403. { "time": 2.0667, "x": 0, "y": 0 },
  2404. { "time": 2.1667, "x": -3.19, "y": 0.27, "curve": "stepped" },
  2405. { "time": 2.2667, "x": -3.19, "y": 0.27 },
  2406. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  2407. { "time": 2.7333, "x": 0, "y": 0, "curve": "stepped" },
  2408. { "time": 3, "x": 0, "y": 0 }
  2409. ],
  2410. "scale": [
  2411. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2412. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2413. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  2414. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2415. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  2416. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  2417. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  2418. { "time": 2.2667, "x": 1, "y": 1, "curve": "stepped" },
  2419. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  2420. { "time": 2.7333, "x": 1, "y": 1, "curve": "stepped" },
  2421. { "time": 3, "x": 1, "y": 1 }
  2422. ]
  2423. },
  2424. "bone28": {
  2425. "rotate": [
  2426. { "time": 0, "angle": 11.4, "curve": "stepped" },
  2427. { "time": 0.1333, "angle": 11.4 },
  2428. { "time": 0.5, "angle": 0.28 },
  2429. { "time": 1.0667, "angle": -16.99 },
  2430. { "time": 1.6, "angle": 0.28 },
  2431. { "time": 2.1667, "angle": -17.41 },
  2432. { "time": 2.7333, "angle": 0.28 },
  2433. { "time": 3, "angle": 11.4 }
  2434. ],
  2435. "translate": [
  2436. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2437. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  2438. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2439. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  2440. { "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
  2441. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  2442. { "time": 2.7333, "x": 0, "y": 0, "curve": "stepped" },
  2443. { "time": 3, "x": 0, "y": 0 }
  2444. ],
  2445. "scale": [
  2446. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2447. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2448. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2449. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  2450. { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  2451. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  2452. { "time": 2.7333, "x": 1, "y": 1, "curve": "stepped" },
  2453. { "time": 3, "x": 1, "y": 1 }
  2454. ]
  2455. },
  2456. "bone29": {
  2457. "rotate": [
  2458. { "time": 0, "angle": 0, "curve": "stepped" },
  2459. { "time": 0.1333, "angle": 0 },
  2460. { "time": 0.5, "angle": -8.49 },
  2461. { "time": 1.0667, "angle": -31.06 },
  2462. { "time": 1.6, "angle": -8.49 },
  2463. { "time": 2.1667, "angle": -29.16 },
  2464. { "time": 2.7333, "angle": -8.49 },
  2465. { "time": 3, "angle": 0 }
  2466. ],
  2467. "translate": [
  2468. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2469. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  2470. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2471. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  2472. { "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
  2473. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  2474. { "time": 2.7333, "x": 0, "y": 0, "curve": "stepped" },
  2475. { "time": 3, "x": 0, "y": 0 }
  2476. ],
  2477. "scale": [
  2478. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2479. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2480. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2481. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  2482. { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  2483. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  2484. { "time": 2.7333, "x": 1, "y": 1, "curve": "stepped" },
  2485. { "time": 3, "x": 1, "y": 1 }
  2486. ]
  2487. },
  2488. "bone30": {
  2489. "rotate": [
  2490. { "time": 0, "angle": 0, "curve": "stepped" },
  2491. { "time": 0.1333, "angle": 0 },
  2492. { "time": 0.3333, "angle": 2.73 },
  2493. { "time": 0.5, "angle": -32.85 },
  2494. { "time": 1.0667, "angle": -15.86 },
  2495. { "time": 1.6, "angle": -32.85 },
  2496. { "time": 2.1667, "angle": -15.86 },
  2497. { "time": 2.7333, "angle": -32.85 },
  2498. { "time": 3, "angle": 0 }
  2499. ],
  2500. "translate": [
  2501. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2502. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  2503. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2504. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  2505. { "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
  2506. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  2507. { "time": 2.7333, "x": 0, "y": 0, "curve": "stepped" },
  2508. { "time": 3, "x": 0, "y": 0 }
  2509. ],
  2510. "scale": [
  2511. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2512. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2513. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2514. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  2515. { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  2516. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  2517. { "time": 2.7333, "x": 1, "y": 1, "curve": "stepped" },
  2518. { "time": 3, "x": 1, "y": 1 }
  2519. ]
  2520. },
  2521. "bone31": {
  2522. "rotate": [
  2523. { "time": 0, "angle": 0 },
  2524. { "time": 0.1333, "angle": 5.42 },
  2525. { "time": 0.5, "angle": 14.76 },
  2526. { "time": 1.0667, "angle": 26.94 },
  2527. { "time": 1.6, "angle": 14.76 },
  2528. { "time": 2.1667, "angle": 26.94 },
  2529. { "time": 2.7333, "angle": 14.76 },
  2530. { "time": 3, "angle": 0 }
  2531. ],
  2532. "translate": [
  2533. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2534. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  2535. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2536. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  2537. { "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
  2538. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  2539. { "time": 2.7333, "x": 0, "y": 0, "curve": "stepped" },
  2540. { "time": 3, "x": 0, "y": 0 }
  2541. ],
  2542. "scale": [
  2543. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2544. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2545. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2546. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  2547. { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  2548. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  2549. { "time": 2.7333, "x": 1, "y": 1, "curve": "stepped" },
  2550. { "time": 3, "x": 1, "y": 1 }
  2551. ]
  2552. },
  2553. "bone32": {
  2554. "rotate": [
  2555. { "time": 0, "angle": 0 },
  2556. { "time": 0.1333, "angle": -16.87 },
  2557. { "time": 0.5, "angle": -0.1 },
  2558. { "time": 1.0667, "angle": 9.44 },
  2559. { "time": 1.6, "angle": -0.1 },
  2560. { "time": 2.1667, "angle": 9.44 },
  2561. { "time": 2.7333, "angle": -0.1 },
  2562. { "time": 3, "angle": 0 }
  2563. ],
  2564. "translate": [
  2565. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2566. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  2567. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2568. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  2569. { "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
  2570. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  2571. { "time": 2.7333, "x": 0, "y": 0, "curve": "stepped" },
  2572. { "time": 3, "x": 0, "y": 0 }
  2573. ],
  2574. "scale": [
  2575. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2576. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2577. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2578. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  2579. { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  2580. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  2581. { "time": 2.7333, "x": 1, "y": 1, "curve": "stepped" },
  2582. { "time": 3, "x": 1, "y": 1 }
  2583. ]
  2584. },
  2585. "bone33": {
  2586. "rotate": [
  2587. { "time": 0, "angle": 0, "curve": "stepped" },
  2588. { "time": 0.1333, "angle": 0 },
  2589. { "time": 0.5, "angle": 41.35 },
  2590. { "time": 1.0667, "angle": 20.76 },
  2591. { "time": 1.6, "angle": 41.35 },
  2592. { "time": 2.1667, "angle": 20.76 },
  2593. { "time": 2.7333, "angle": 41.35 },
  2594. { "time": 3, "angle": 0 }
  2595. ],
  2596. "translate": [
  2597. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2598. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  2599. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2600. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  2601. { "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
  2602. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  2603. { "time": 2.7333, "x": 0, "y": 0, "curve": "stepped" },
  2604. { "time": 3, "x": 0, "y": 0 }
  2605. ],
  2606. "scale": [
  2607. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2608. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2609. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2610. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  2611. { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  2612. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  2613. { "time": 2.7333, "x": 1, "y": 1, "curve": "stepped" },
  2614. { "time": 3, "x": 1, "y": 1 }
  2615. ]
  2616. },
  2617. "bone34": {
  2618. "rotate": [
  2619. { "time": 0, "angle": 0, "curve": "stepped" },
  2620. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  2621. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2622. { "time": 1.0667, "angle": 0, "curve": "stepped" },
  2623. { "time": 1.6, "angle": 0, "curve": "stepped" },
  2624. { "time": 2.1667, "angle": 0, "curve": "stepped" },
  2625. { "time": 2.7333, "angle": 0, "curve": "stepped" },
  2626. { "time": 3, "angle": 0 }
  2627. ],
  2628. "translate": [
  2629. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2630. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  2631. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2632. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  2633. { "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
  2634. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  2635. { "time": 2.7333, "x": 0, "y": 0, "curve": "stepped" },
  2636. { "time": 3, "x": 0, "y": 0 }
  2637. ],
  2638. "scale": [
  2639. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2640. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2641. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2642. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  2643. { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  2644. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  2645. { "time": 2.7333, "x": 1, "y": 1, "curve": "stepped" },
  2646. { "time": 3, "x": 1, "y": 1 }
  2647. ]
  2648. },
  2649. "bone35": {
  2650. "rotate": [
  2651. { "time": 0, "angle": 0, "curve": "stepped" },
  2652. { "time": 0.1333, "angle": 0 },
  2653. { "time": 0.5, "angle": -0.53 },
  2654. { "time": 1.0667, "angle": 6.97 },
  2655. { "time": 1.6, "angle": -0.53 },
  2656. { "time": 2.1667, "angle": 6.97 },
  2657. { "time": 2.7333, "angle": -0.53 },
  2658. { "time": 3, "angle": 0 }
  2659. ],
  2660. "translate": [
  2661. { "time": 0, "x": 0, "y": 0 },
  2662. { "time": 0.1333, "x": -1, "y": 0.12 },
  2663. { "time": 0.5, "x": 2.53, "y": -0.33, "curve": "stepped" },
  2664. { "time": 1.0667, "x": 2.53, "y": -0.33, "curve": "stepped" },
  2665. { "time": 1.6, "x": 2.53, "y": -0.33, "curve": "stepped" },
  2666. { "time": 2.1667, "x": 2.53, "y": -0.33, "curve": "stepped" },
  2667. { "time": 2.7333, "x": 2.53, "y": -0.33 },
  2668. { "time": 3, "x": 0, "y": 0 }
  2669. ],
  2670. "scale": [
  2671. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2672. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2673. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2674. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  2675. { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  2676. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  2677. { "time": 2.7333, "x": 1, "y": 1, "curve": "stepped" },
  2678. { "time": 3, "x": 1, "y": 1 }
  2679. ]
  2680. },
  2681. "bone36": {
  2682. "rotate": [
  2683. { "time": 0, "angle": 0, "curve": "stepped" },
  2684. { "time": 0.1333, "angle": 0 },
  2685. { "time": 0.5, "angle": -6.82 },
  2686. { "time": 1.0667, "angle": -1.12 },
  2687. { "time": 1.6, "angle": -6.82 },
  2688. { "time": 2.1667, "angle": -1.12 },
  2689. { "time": 2.7333, "angle": -6.82 },
  2690. { "time": 3, "angle": 0 }
  2691. ],
  2692. "translate": [
  2693. { "time": 0, "x": 0, "y": 0 },
  2694. { "time": 0.1333, "x": 1.18, "y": -0.03 },
  2695. { "time": 0.5, "x": -0.74, "y": 0.11, "curve": "stepped" },
  2696. { "time": 1.6, "x": -0.74, "y": 0.11, "curve": "stepped" },
  2697. { "time": 2.7333, "x": -0.74, "y": 0.11 },
  2698. { "time": 3, "x": 0, "y": 0 }
  2699. ],
  2700. "scale": [
  2701. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2702. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2703. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2704. { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  2705. { "time": 2.7333, "x": 1, "y": 1, "curve": "stepped" },
  2706. { "time": 3, "x": 1, "y": 1 }
  2707. ]
  2708. },
  2709. "bone37": {
  2710. "rotate": [
  2711. { "time": 0, "angle": 0, "curve": "stepped" },
  2712. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  2713. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2714. { "time": 1.0667, "angle": 0, "curve": "stepped" },
  2715. { "time": 1.6, "angle": 0, "curve": "stepped" },
  2716. { "time": 2.1667, "angle": 0, "curve": "stepped" },
  2717. { "time": 2.7333, "angle": 0, "curve": "stepped" },
  2718. { "time": 3, "angle": 0 }
  2719. ],
  2720. "translate": [
  2721. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2722. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  2723. { "time": 0.5, "x": 0, "y": 0 },
  2724. { "time": 1.0667, "x": -0.07, "y": 1.05 },
  2725. { "time": 1.6, "x": 0, "y": 0 },
  2726. { "time": 2.1667, "x": -0.07, "y": 1.05 },
  2727. { "time": 2.7333, "x": 0, "y": 0, "curve": "stepped" },
  2728. { "time": 3, "x": 0, "y": 0 }
  2729. ],
  2730. "scale": [
  2731. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2732. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2733. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2734. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  2735. { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  2736. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  2737. { "time": 2.7333, "x": 1, "y": 1, "curve": "stepped" },
  2738. { "time": 3, "x": 1, "y": 1 }
  2739. ]
  2740. },
  2741. "bone38": {
  2742. "rotate": [
  2743. { "time": 0, "angle": 0, "curve": "stepped" },
  2744. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  2745. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2746. { "time": 1.0667, "angle": 0, "curve": "stepped" },
  2747. { "time": 1.6, "angle": 0, "curve": "stepped" },
  2748. { "time": 2.1667, "angle": 0, "curve": "stepped" },
  2749. { "time": 2.7333, "angle": 0, "curve": "stepped" },
  2750. { "time": 3, "angle": 0 }
  2751. ],
  2752. "translate": [
  2753. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2754. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  2755. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2756. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  2757. { "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
  2758. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  2759. { "time": 2.7333, "x": 0, "y": 0, "curve": "stepped" },
  2760. { "time": 3, "x": 0, "y": 0 }
  2761. ],
  2762. "scale": [
  2763. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2764. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2765. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2766. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  2767. { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  2768. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  2769. { "time": 2.7333, "x": 1, "y": 1, "curve": "stepped" },
  2770. { "time": 3, "x": 1, "y": 1 }
  2771. ]
  2772. },
  2773. "bone39": {
  2774. "rotate": [
  2775. { "time": 0, "angle": 0, "curve": "stepped" },
  2776. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  2777. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2778. { "time": 1.0667, "angle": 0, "curve": "stepped" },
  2779. { "time": 1.6, "angle": 0, "curve": "stepped" },
  2780. { "time": 2.1667, "angle": 0, "curve": "stepped" },
  2781. { "time": 2.7333, "angle": 0, "curve": "stepped" },
  2782. { "time": 3, "angle": 0 }
  2783. ],
  2784. "translate": [
  2785. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2786. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  2787. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2788. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  2789. { "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
  2790. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  2791. { "time": 2.7333, "x": 0, "y": 0, "curve": "stepped" },
  2792. { "time": 3, "x": 0, "y": 0 }
  2793. ],
  2794. "scale": [
  2795. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2796. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2797. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2798. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  2799. { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  2800. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  2801. { "time": 2.7333, "x": 1, "y": 1, "curve": "stepped" },
  2802. { "time": 3, "x": 1, "y": 1 }
  2803. ]
  2804. },
  2805. "bone40": {
  2806. "rotate": [
  2807. { "time": 0, "angle": 0 },
  2808. { "time": 0.1333, "angle": 351.46 },
  2809. { "time": 0.5, "angle": -29.02 },
  2810. { "time": 1.0667, "angle": 334.32 },
  2811. { "time": 1.6, "angle": -29.02 },
  2812. { "time": 2.1667, "angle": 334.32 },
  2813. { "time": 2.7333, "angle": -29.02 },
  2814. { "time": 3, "angle": 0 }
  2815. ],
  2816. "translate": [
  2817. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2818. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  2819. { "time": 0.5, "x": 0, "y": 0 },
  2820. { "time": 1.0667, "x": -1.2, "y": 0.6 },
  2821. { "time": 1.6, "x": 0, "y": 0 },
  2822. { "time": 2.1667, "x": -1.2, "y": 0.6 },
  2823. { "time": 2.7333, "x": 0, "y": 0, "curve": "stepped" },
  2824. { "time": 3, "x": 0, "y": 0 }
  2825. ],
  2826. "scale": [
  2827. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2828. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2829. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2830. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  2831. { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  2832. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  2833. { "time": 2.7333, "x": 1, "y": 1, "curve": "stepped" },
  2834. { "time": 3, "x": 1, "y": 1 }
  2835. ]
  2836. },
  2837. "bone41": {
  2838. "rotate": [
  2839. { "time": 0, "angle": 0 },
  2840. { "time": 0.1333, "angle": 23.76 },
  2841. { "time": 0.5, "angle": 87.6 },
  2842. { "time": 1.0667, "angle": 78.13 },
  2843. { "time": 1.6, "angle": 87.6 },
  2844. { "time": 2.1667, "angle": 78.13 },
  2845. { "time": 2.7333, "angle": 87.6 },
  2846. { "time": 3, "angle": 0 }
  2847. ],
  2848. "translate": [
  2849. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2850. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  2851. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2852. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  2853. { "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
  2854. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  2855. { "time": 2.7333, "x": 0, "y": 0, "curve": "stepped" },
  2856. { "time": 3, "x": 0, "y": 0 }
  2857. ],
  2858. "scale": [
  2859. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2860. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2861. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2862. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  2863. { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  2864. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  2865. { "time": 2.7333, "x": 1, "y": 1, "curve": "stepped" },
  2866. { "time": 3, "x": 1, "y": 1 }
  2867. ]
  2868. },
  2869. "bone42": {
  2870. "rotate": [
  2871. { "time": 0, "angle": 0, "curve": "stepped" },
  2872. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  2873. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2874. { "time": 1.0667, "angle": 0, "curve": "stepped" },
  2875. { "time": 1.6, "angle": 0, "curve": "stepped" },
  2876. { "time": 2.1667, "angle": 0, "curve": "stepped" },
  2877. { "time": 2.7333, "angle": 0, "curve": "stepped" },
  2878. { "time": 3, "angle": 0 }
  2879. ],
  2880. "translate": [
  2881. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2882. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  2883. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2884. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  2885. { "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
  2886. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  2887. { "time": 2.7333, "x": 0, "y": 0, "curve": "stepped" },
  2888. { "time": 3, "x": 0, "y": 0 }
  2889. ],
  2890. "scale": [
  2891. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2892. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2893. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2894. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  2895. { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  2896. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  2897. { "time": 2.7333, "x": 1, "y": 1, "curve": "stepped" },
  2898. { "time": 3, "x": 1, "y": 1 }
  2899. ]
  2900. },
  2901. "bone43": {
  2902. "rotate": [
  2903. { "time": 0, "angle": 0, "curve": "stepped" },
  2904. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  2905. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2906. { "time": 1.0667, "angle": 0, "curve": "stepped" },
  2907. { "time": 1.6, "angle": 0, "curve": "stepped" },
  2908. { "time": 2.1667, "angle": 0, "curve": "stepped" },
  2909. { "time": 2.7333, "angle": 0, "curve": "stepped" },
  2910. { "time": 3, "angle": 0 }
  2911. ],
  2912. "translate": [
  2913. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2914. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  2915. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2916. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  2917. { "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
  2918. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  2919. { "time": 2.7333, "x": 0, "y": 0, "curve": "stepped" },
  2920. { "time": 3, "x": 0, "y": 0 }
  2921. ],
  2922. "scale": [
  2923. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2924. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2925. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2926. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  2927. { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  2928. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  2929. { "time": 2.7333, "x": 1, "y": 1, "curve": "stepped" },
  2930. { "time": 3, "x": 1, "y": 1 }
  2931. ]
  2932. },
  2933. "bone44": {
  2934. "rotate": [
  2935. { "time": 0, "angle": 0, "curve": "stepped" },
  2936. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  2937. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2938. { "time": 1.0667, "angle": 0, "curve": "stepped" },
  2939. { "time": 1.6, "angle": 0, "curve": "stepped" },
  2940. { "time": 2.1667, "angle": 0, "curve": "stepped" },
  2941. { "time": 2.7333, "angle": 0, "curve": "stepped" },
  2942. { "time": 3, "angle": 0 }
  2943. ],
  2944. "translate": [
  2945. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2946. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  2947. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2948. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  2949. { "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
  2950. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  2951. { "time": 2.7333, "x": 0, "y": 0, "curve": "stepped" },
  2952. { "time": 3, "x": 0, "y": 0 }
  2953. ],
  2954. "scale": [
  2955. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2956. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2957. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2958. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  2959. { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  2960. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  2961. { "time": 2.7333, "x": 1, "y": 1, "curve": "stepped" },
  2962. { "time": 3, "x": 1, "y": 1 }
  2963. ]
  2964. }
  2965. },
  2966. "deform": {
  2967. "default": {
  2968. "qunzi": {
  2969. "qunzi": [
  2970. { "time": 0, "curve": "stepped" },
  2971. { "time": 0.1333, "curve": "stepped" },
  2972. { "time": 3 }
  2973. ]
  2974. },
  2975. "shuyao": {
  2976. "shuyao": [
  2977. {
  2978. "time": 0,
  2979. "offset": 6,
  2980. "vertices": [ 3.31154, 0.15052 ]
  2981. },
  2982. {
  2983. "time": 0.1333,
  2984. "vertices": [ -2.20572, -0.10025, 0, 0, -2.20572, -0.10025, 1.10582, 0.05027, 0, 0, -2.20572, -0.10025 ]
  2985. },
  2986. {
  2987. "time": 0.5,
  2988. "vertices": [ 2.77454, -0.78684, 0, 0, 3.07824, -0.77303, 3.38743, -1.51976, 0, 0, 1.74613, 1.7531 ]
  2989. },
  2990. {
  2991. "time": 1.0667,
  2992. "vertices": [ 3.75639, 0.95554, -0.09628, 2.11781, 1.15294, -0.43611, 2.49214, -0.49937, 0.26951, 3.40776, 1.41881, 4.28484, 0.14431, 1.49209 ]
  2993. },
  2994. {
  2995. "time": 1.6,
  2996. "vertices": [ 2.77454, -0.78684, 0, 0, 3.07824, -0.77303, 3.38743, -1.51976, 0, 0, 1.74613, 1.7531 ]
  2997. },
  2998. {
  2999. "time": 2.1667,
  3000. "vertices": [ 3.75639, 0.95554, -0.09628, 2.11781, 1.15294, -0.43611, 2.49214, -0.49937, 0.26951, 3.40776, 1.41881, 4.28484, 0.14431, 1.49209 ]
  3001. },
  3002. {
  3003. "time": 2.7333,
  3004. "vertices": [ 2.77454, -0.78684, 0, 0, 3.07824, -0.77303, 3.38743, -1.51976, 0, 0, 1.74613, 1.7531 ]
  3005. },
  3006. {
  3007. "time": 3,
  3008. "offset": 6,
  3009. "vertices": [ 3.31154, 0.15052 ]
  3010. }
  3011. ]
  3012. },
  3013. "toufa8": {
  3014. "toufa8": [
  3015. { "time": 0 },
  3016. {
  3017. "time": 0.1333,
  3018. "vertices": [ -1.63454, 0.06891, -2.0432, 0.08615 ]
  3019. },
  3020. {
  3021. "time": 0.5,
  3022. "vertices": [ 3.61739, -2.47457, 6.29456, -1.01181 ]
  3023. },
  3024. {
  3025. "time": 1.0667,
  3026. "vertices": [ 2.15732, -5.17732, 1.31239, 1.81056 ]
  3027. },
  3028. {
  3029. "time": 1.6,
  3030. "vertices": [ 0.15852, -3.24708, 3.08467, -0.11665 ]
  3031. },
  3032. {
  3033. "time": 2.1667,
  3034. "vertices": [ 2.15732, -5.17732, 1.31239, 1.81056 ]
  3035. },
  3036. {
  3037. "time": 2.7333,
  3038. "vertices": [ 0.15852, -3.24708, 3.08467, -0.11665 ]
  3039. },
  3040. { "time": 3 }
  3041. ]
  3042. },
  3043. "xiong": {
  3044. "xiong": [
  3045. {
  3046. "time": 0,
  3047. "offset": 2,
  3048. "vertices": [ -0.74711, -0.06556, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.12464, 0.01091, 0, 0, 0, 0, 0.12464, 0.01091, 0.12464, 0.01091 ],
  3049. "curve": "stepped"
  3050. },
  3051. {
  3052. "time": 0.1333,
  3053. "offset": 2,
  3054. "vertices": [ -0.74711, -0.06556, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.12464, 0.01091, 0, 0, 0, 0, 0.12464, 0.01091, 0.12464, 0.01091 ],
  3055. "curve": "stepped"
  3056. },
  3057. {
  3058. "time": 3,
  3059. "offset": 2,
  3060. "vertices": [ -0.74711, -0.06556, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.12464, 0.01091, 0, 0, 0, 0, 0.12464, 0.01091, 0.12464, 0.01091 ]
  3061. }
  3062. ]
  3063. }
  3064. }
  3065. }
  3066. },
  3067. "stand3": {
  3068. "slots": {
  3069. "biyan": {
  3070. "attachment": [
  3071. { "time": 0, "name": null },
  3072. { "time": 0.1, "name": "biyan" },
  3073. { "time": 0.8, "name": null },
  3074. { "time": 1.3333, "name": null }
  3075. ]
  3076. },
  3077. "youyan": {
  3078. "attachment": [
  3079. { "time": 0.1, "name": null },
  3080. { "time": 0.8, "name": "youyan" }
  3081. ]
  3082. },
  3083. "zuoyan": {
  3084. "attachment": [
  3085. { "time": 0.1, "name": null },
  3086. { "time": 0.8, "name": "zuoyan" }
  3087. ]
  3088. }
  3089. },
  3090. "bones": {
  3091. "bone26": {
  3092. "rotate": [
  3093. { "time": 0, "angle": 0, "curve": "stepped" },
  3094. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  3095. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3096. { "time": 0.7667, "angle": 0, "curve": "stepped" },
  3097. { "time": 1.3333, "angle": 0 }
  3098. ],
  3099. "translate": [
  3100. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3101. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  3102. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  3103. { "time": 1.3333, "x": 0, "y": 0 }
  3104. ],
  3105. "scale": [
  3106. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3107. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  3108. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3109. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  3110. { "time": 1.3333, "x": 1, "y": 1 }
  3111. ]
  3112. },
  3113. "root": {
  3114. "rotate": [
  3115. { "time": 0, "angle": 0, "curve": "stepped" },
  3116. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  3117. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3118. { "time": 0.7667, "angle": 0, "curve": "stepped" },
  3119. { "time": 1.3333, "angle": 0 }
  3120. ],
  3121. "translate": [
  3122. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3123. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  3124. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  3125. { "time": 1.3333, "x": 0, "y": 0 }
  3126. ],
  3127. "scale": [
  3128. { "time": 0, "x": 0.65, "y": 0.65 }
  3129. ]
  3130. },
  3131. "bone": {
  3132. "rotate": [
  3133. { "time": 0, "angle": 0, "curve": "stepped" },
  3134. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  3135. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3136. { "time": 0.7667, "angle": 0, "curve": "stepped" },
  3137. { "time": 1.3333, "angle": 0 }
  3138. ],
  3139. "translate": [
  3140. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3141. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  3142. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  3143. { "time": 1.3333, "x": 0, "y": 0 }
  3144. ],
  3145. "scale": [
  3146. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3147. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  3148. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3149. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  3150. { "time": 1.3333, "x": 1, "y": 1 }
  3151. ]
  3152. },
  3153. "bone2": {
  3154. "rotate": [
  3155. { "time": 0, "angle": 0, "curve": "stepped" },
  3156. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  3157. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3158. { "time": 0.7667, "angle": 0, "curve": "stepped" },
  3159. { "time": 1.3333, "angle": 0 }
  3160. ],
  3161. "translate": [
  3162. { "time": 0, "x": 0, "y": 0 },
  3163. { "time": 0.2667, "x": 3.37, "y": -0.15 },
  3164. { "time": 0.5, "x": 3.24, "y": -2.94, "curve": "stepped" },
  3165. { "time": 0.7667, "x": 3.24, "y": -2.94 },
  3166. { "time": 0.9667, "x": 0, "y": 0 }
  3167. ],
  3168. "scale": [
  3169. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3170. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  3171. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3172. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  3173. { "time": 1.3333, "x": 1, "y": 1 }
  3174. ]
  3175. },
  3176. "bone3": {
  3177. "rotate": [
  3178. { "time": 0, "angle": 0, "curve": "stepped" },
  3179. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  3180. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3181. { "time": 0.7667, "angle": 0, "curve": "stepped" },
  3182. { "time": 1.3333, "angle": 0 }
  3183. ],
  3184. "translate": [
  3185. { "time": 0, "x": 0, "y": 0 },
  3186. { "time": 0.2667, "x": 1.42, "y": -0.06 },
  3187. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  3188. { "time": 1.3333, "x": 0, "y": 0 }
  3189. ],
  3190. "scale": [
  3191. { "time": 0, "x": 1, "y": 1 },
  3192. { "time": 0.1, "x": 1.03, "y": 1 },
  3193. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  3194. { "time": 1.3333, "x": 1, "y": 1 }
  3195. ]
  3196. },
  3197. "bone4": {
  3198. "rotate": [
  3199. { "time": 0, "angle": 0, "curve": "stepped" },
  3200. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  3201. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3202. { "time": 0.7667, "angle": 0, "curve": "stepped" },
  3203. { "time": 1.3333, "angle": 0 }
  3204. ],
  3205. "translate": [
  3206. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3207. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  3208. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  3209. { "time": 1.3333, "x": 0, "y": 0 }
  3210. ],
  3211. "scale": [
  3212. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3213. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  3214. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3215. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  3216. { "time": 1.3333, "x": 1, "y": 1 }
  3217. ]
  3218. },
  3219. "bone5": {
  3220. "rotate": [
  3221. { "time": 0, "angle": 0, "curve": "stepped" },
  3222. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  3223. { "time": 0.5, "angle": 0 },
  3224. { "time": 0.7667, "angle": 2.58 },
  3225. { "time": 1.3333, "angle": 0 }
  3226. ],
  3227. "translate": [
  3228. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3229. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  3230. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  3231. { "time": 1.3333, "x": 0, "y": 0 }
  3232. ],
  3233. "scale": [
  3234. { "time": 0, "x": 1, "y": 1 },
  3235. { "time": 0.2667, "x": 1.029, "y": 1 },
  3236. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  3237. { "time": 1.3333, "x": 1, "y": 1 }
  3238. ]
  3239. },
  3240. "bone6": {
  3241. "rotate": [
  3242. { "time": 0, "angle": 0, "curve": "stepped" },
  3243. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  3244. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3245. { "time": 0.7667, "angle": 0, "curve": "stepped" },
  3246. { "time": 1.3333, "angle": 0 }
  3247. ],
  3248. "translate": [
  3249. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3250. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  3251. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  3252. { "time": 1.3333, "x": 0, "y": 0 }
  3253. ],
  3254. "scale": [
  3255. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3256. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  3257. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3258. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  3259. { "time": 1.3333, "x": 1, "y": 1 }
  3260. ]
  3261. },
  3262. "bone7": {
  3263. "rotate": [
  3264. { "time": 0, "angle": 0 },
  3265. { "time": 0.5, "angle": -13.31 },
  3266. { "time": 1.3333, "angle": 0 }
  3267. ],
  3268. "translate": [
  3269. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3270. { "time": 1.3333, "x": 0, "y": 0 }
  3271. ],
  3272. "scale": [
  3273. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3274. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3275. { "time": 1.3333, "x": 1, "y": 1 }
  3276. ]
  3277. },
  3278. "bone8": {
  3279. "rotate": [
  3280. { "time": 0, "angle": 0 },
  3281. { "time": 0.5, "angle": -18.55 },
  3282. { "time": 1.3333, "angle": 0 }
  3283. ],
  3284. "translate": [
  3285. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3286. { "time": 1.3333, "x": 0, "y": 0 }
  3287. ],
  3288. "scale": [
  3289. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3290. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3291. { "time": 1.3333, "x": 1, "y": 1 }
  3292. ]
  3293. },
  3294. "bone9": {
  3295. "rotate": [
  3296. { "time": 0, "angle": 0, "curve": "stepped" },
  3297. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  3298. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3299. { "time": 0.7667, "angle": 0, "curve": "stepped" },
  3300. { "time": 1.3333, "angle": 0 }
  3301. ],
  3302. "translate": [
  3303. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3304. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  3305. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  3306. { "time": 1.3333, "x": 0, "y": 0 }
  3307. ],
  3308. "scale": [
  3309. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3310. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  3311. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3312. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  3313. { "time": 1.3333, "x": 1, "y": 1 }
  3314. ]
  3315. },
  3316. "bone10": {
  3317. "rotate": [
  3318. { "time": 0, "angle": 0 },
  3319. { "time": 0.5, "angle": -15.81 },
  3320. { "time": 1.3333, "angle": 0 }
  3321. ],
  3322. "translate": [
  3323. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3324. { "time": 1.3333, "x": 0, "y": 0 }
  3325. ],
  3326. "scale": [
  3327. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3328. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3329. { "time": 1.3333, "x": 1, "y": 1 }
  3330. ]
  3331. },
  3332. "bone11": {
  3333. "rotate": [
  3334. { "time": 0, "angle": 0 },
  3335. { "time": 0.5, "angle": -13.04 },
  3336. { "time": 1.3333, "angle": 0 }
  3337. ],
  3338. "translate": [
  3339. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3340. { "time": 1.3333, "x": 0, "y": 0 }
  3341. ],
  3342. "scale": [
  3343. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3344. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3345. { "time": 1.3333, "x": 1, "y": 1 }
  3346. ]
  3347. },
  3348. "bone12": {
  3349. "rotate": [
  3350. { "time": 0, "angle": 0, "curve": "stepped" },
  3351. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  3352. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3353. { "time": 0.7667, "angle": 0, "curve": "stepped" },
  3354. { "time": 1.3333, "angle": 0 }
  3355. ],
  3356. "translate": [
  3357. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3358. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  3359. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  3360. { "time": 1.3333, "x": 0, "y": 0 }
  3361. ],
  3362. "scale": [
  3363. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3364. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  3365. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3366. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  3367. { "time": 1.3333, "x": 1, "y": 1 }
  3368. ]
  3369. },
  3370. "bone13": {
  3371. "rotate": [
  3372. { "time": 0, "angle": 0 },
  3373. { "time": 0.5, "angle": 9.68 },
  3374. { "time": 1.3333, "angle": 0 }
  3375. ],
  3376. "translate": [
  3377. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3378. { "time": 1.3333, "x": 0, "y": 0 }
  3379. ],
  3380. "scale": [
  3381. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3382. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3383. { "time": 1.3333, "x": 1, "y": 1 }
  3384. ]
  3385. },
  3386. "bone14": {
  3387. "rotate": [
  3388. { "time": 0, "angle": 0 },
  3389. { "time": 0.5, "angle": 33.17 },
  3390. { "time": 1.3333, "angle": 0 }
  3391. ],
  3392. "translate": [
  3393. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3394. { "time": 1.3333, "x": 0, "y": 0 }
  3395. ],
  3396. "scale": [
  3397. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3398. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3399. { "time": 1.3333, "x": 1, "y": 1 }
  3400. ]
  3401. },
  3402. "bone15": {
  3403. "rotate": [
  3404. { "time": 0, "angle": 0, "curve": "stepped" },
  3405. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  3406. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3407. { "time": 0.7667, "angle": 0, "curve": "stepped" },
  3408. { "time": 1.3333, "angle": 0 }
  3409. ],
  3410. "translate": [
  3411. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3412. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  3413. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  3414. { "time": 1.3333, "x": 0, "y": 0 }
  3415. ],
  3416. "scale": [
  3417. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3418. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  3419. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3420. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  3421. { "time": 1.3333, "x": 1, "y": 1 }
  3422. ]
  3423. },
  3424. "bone16": {
  3425. "rotate": [
  3426. { "time": 0, "angle": 0 },
  3427. { "time": 0.5, "angle": 2.97 },
  3428. { "time": 1.3333, "angle": 0 }
  3429. ],
  3430. "translate": [
  3431. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3432. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  3433. { "time": 1.3333, "x": 0, "y": 0 }
  3434. ],
  3435. "scale": [
  3436. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3437. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  3438. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3439. { "time": 1.3333, "x": 1, "y": 1 }
  3440. ]
  3441. },
  3442. "bone17": {
  3443. "rotate": [
  3444. { "time": 0, "angle": 0 },
  3445. { "time": 0.5, "angle": 8.46 },
  3446. { "time": 1.3333, "angle": 0 }
  3447. ],
  3448. "translate": [
  3449. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3450. { "time": 1.3333, "x": 0, "y": 0 }
  3451. ],
  3452. "scale": [
  3453. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3454. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3455. { "time": 1.3333, "x": 1, "y": 1 }
  3456. ]
  3457. },
  3458. "bone18": {
  3459. "rotate": [
  3460. { "time": 0, "angle": 0, "curve": "stepped" },
  3461. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  3462. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3463. { "time": 0.7667, "angle": 0, "curve": "stepped" },
  3464. { "time": 1.3333, "angle": 0 }
  3465. ],
  3466. "translate": [
  3467. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3468. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  3469. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  3470. { "time": 1.3333, "x": 0, "y": 0 }
  3471. ],
  3472. "scale": [
  3473. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3474. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  3475. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3476. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  3477. { "time": 1.3333, "x": 1, "y": 1 }
  3478. ]
  3479. },
  3480. "bone19": {
  3481. "rotate": [
  3482. { "time": 0, "angle": 0, "curve": "stepped" },
  3483. { "time": 0.2667, "angle": 0 },
  3484. { "time": 0.5, "angle": 23.51 },
  3485. { "time": 1.3333, "angle": 0 }
  3486. ],
  3487. "translate": [
  3488. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3489. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  3490. { "time": 1.3333, "x": 0, "y": 0 }
  3491. ],
  3492. "scale": [
  3493. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3494. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  3495. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3496. { "time": 1.3333, "x": 1, "y": 1 }
  3497. ]
  3498. },
  3499. "bone20": {
  3500. "rotate": [
  3501. { "time": 0, "angle": 0, "curve": "stepped" },
  3502. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  3503. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3504. { "time": 0.7667, "angle": 0, "curve": "stepped" },
  3505. { "time": 1.3333, "angle": 0 }
  3506. ],
  3507. "translate": [
  3508. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3509. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  3510. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  3511. { "time": 1.3333, "x": 0, "y": 0 }
  3512. ],
  3513. "scale": [
  3514. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3515. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  3516. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3517. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  3518. { "time": 1.3333, "x": 1, "y": 1 }
  3519. ]
  3520. },
  3521. "bone21": {
  3522. "rotate": [
  3523. { "time": 0, "angle": 0, "curve": "stepped" },
  3524. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  3525. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3526. { "time": 0.7667, "angle": 0, "curve": "stepped" },
  3527. { "time": 1.3333, "angle": 0 }
  3528. ],
  3529. "translate": [
  3530. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3531. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  3532. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  3533. { "time": 1.3333, "x": 0, "y": 0 }
  3534. ],
  3535. "scale": [
  3536. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3537. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  3538. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3539. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  3540. { "time": 1.3333, "x": 1, "y": 1 }
  3541. ]
  3542. },
  3543. "bone22": {
  3544. "rotate": [
  3545. { "time": 0, "angle": 0 },
  3546. { "time": 0.5, "angle": -9.88 },
  3547. { "time": 1.3333, "angle": 0 }
  3548. ],
  3549. "translate": [
  3550. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3551. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  3552. { "time": 1.3333, "x": 0, "y": 0 }
  3553. ],
  3554. "scale": [
  3555. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3556. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  3557. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3558. { "time": 1.3333, "x": 1, "y": 1 }
  3559. ]
  3560. },
  3561. "bone23": {
  3562. "rotate": [
  3563. { "time": 0, "angle": 0 },
  3564. { "time": 0.5, "angle": 24.5 },
  3565. { "time": 1.3333, "angle": 0 }
  3566. ],
  3567. "translate": [
  3568. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3569. { "time": 1.3333, "x": 0, "y": 0 }
  3570. ],
  3571. "scale": [
  3572. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3573. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3574. { "time": 1.3333, "x": 1, "y": 1 }
  3575. ]
  3576. },
  3577. "bone24": {
  3578. "rotate": [
  3579. { "time": 0, "angle": 0, "curve": "stepped" },
  3580. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3581. { "time": 0.7667, "angle": 0, "curve": "stepped" },
  3582. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  3583. { "time": 1.3333, "angle": 0 }
  3584. ],
  3585. "translate": [
  3586. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3587. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  3588. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  3589. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3590. { "time": 1.3333, "x": 0, "y": 0 }
  3591. ],
  3592. "scale": [
  3593. { "time": 0, "x": 1, "y": 1 },
  3594. { "time": 0.1, "x": 0.464, "y": 1, "curve": "stepped" },
  3595. { "time": 0.7667, "x": 0.464, "y": 1 },
  3596. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  3597. { "time": 1.3333, "x": 1, "y": 1 }
  3598. ]
  3599. },
  3600. "bone25": {
  3601. "rotate": [
  3602. { "time": 0, "angle": 0, "curve": "stepped" },
  3603. { "time": 0.1, "angle": 0, "curve": "stepped" },
  3604. { "time": 0.7667, "angle": 0, "curve": "stepped" },
  3605. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  3606. { "time": 1.3333, "angle": 0 }
  3607. ],
  3608. "translate": [
  3609. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3610. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  3611. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  3612. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3613. { "time": 1.3333, "x": 0, "y": 0 }
  3614. ],
  3615. "scale": [
  3616. { "time": 0, "x": 1, "y": 1 },
  3617. { "time": 0.1, "x": 0.412, "y": 1, "curve": "stepped" },
  3618. { "time": 0.7667, "x": 0.412, "y": 1 },
  3619. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  3620. { "time": 1.3333, "x": 1, "y": 1 }
  3621. ],
  3622. "shear": [
  3623. { "time": 0.1, "x": 0, "y": 0 }
  3624. ]
  3625. },
  3626. "bone27": {
  3627. "rotate": [
  3628. { "time": 0, "angle": 0, "curve": "stepped" },
  3629. { "time": 0.1, "angle": 0, "curve": "stepped" },
  3630. { "time": 0.7667, "angle": 0, "curve": "stepped" },
  3631. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  3632. { "time": 1.3333, "angle": 0 }
  3633. ],
  3634. "translate": [
  3635. { "time": 0, "x": 0, "y": 0 },
  3636. { "time": 0.1, "x": -4.76, "y": 0.4, "curve": "stepped" },
  3637. { "time": 0.7667, "x": -4.76, "y": 0.4 },
  3638. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3639. { "time": 1.3333, "x": 0, "y": 0 }
  3640. ],
  3641. "scale": [
  3642. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3643. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  3644. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  3645. { "time": 1.3333, "x": 1, "y": 1 }
  3646. ]
  3647. },
  3648. "bone28": {
  3649. "rotate": [
  3650. { "time": 0, "angle": 11.4 },
  3651. { "time": 0.2667, "angle": -5.93 },
  3652. { "time": 0.5, "angle": -1.41 },
  3653. { "time": 0.7667, "angle": 9.18 },
  3654. { "time": 1.3333, "angle": 11.4 }
  3655. ],
  3656. "translate": [
  3657. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3658. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  3659. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  3660. { "time": 1.3333, "x": 0, "y": 0 }
  3661. ],
  3662. "scale": [
  3663. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3664. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  3665. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3666. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  3667. { "time": 1.3333, "x": 1, "y": 1 }
  3668. ]
  3669. },
  3670. "bone29": {
  3671. "rotate": [
  3672. { "time": 0, "angle": 0 },
  3673. { "time": 0.2667, "angle": -13.97 },
  3674. { "time": 0.5, "angle": -22.88, "curve": "stepped" },
  3675. { "time": 0.7667, "angle": -22.88 },
  3676. { "time": 1.3333, "angle": 0 }
  3677. ],
  3678. "translate": [
  3679. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3680. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  3681. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  3682. { "time": 1.3333, "x": 0, "y": 0 }
  3683. ],
  3684. "scale": [
  3685. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3686. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  3687. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3688. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  3689. { "time": 1.3333, "x": 1, "y": 1 }
  3690. ]
  3691. },
  3692. "bone30": {
  3693. "rotate": [
  3694. { "time": 0, "angle": 0, "curve": "stepped" },
  3695. { "time": 0.2667, "angle": 0 },
  3696. { "time": 0.5, "angle": -9.31, "curve": "stepped" },
  3697. { "time": 0.7667, "angle": -9.31 },
  3698. { "time": 1.3333, "angle": 0 }
  3699. ],
  3700. "translate": [
  3701. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3702. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  3703. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  3704. { "time": 1.3333, "x": 0, "y": 0 }
  3705. ],
  3706. "scale": [
  3707. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3708. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  3709. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3710. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  3711. { "time": 1.3333, "x": 1, "y": 1 }
  3712. ]
  3713. },
  3714. "bone31": {
  3715. "rotate": [
  3716. { "time": 0, "angle": 0 },
  3717. { "time": 0.2667, "angle": 12.58 },
  3718. { "time": 0.5, "angle": 10.78 },
  3719. { "time": 0.7667, "angle": 5.22 },
  3720. { "time": 1.3333, "angle": 0 }
  3721. ],
  3722. "translate": [
  3723. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3724. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  3725. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  3726. { "time": 1.3333, "x": 0, "y": 0 }
  3727. ],
  3728. "scale": [
  3729. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3730. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  3731. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3732. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  3733. { "time": 1.3333, "x": 1, "y": 1 }
  3734. ]
  3735. },
  3736. "bone32": {
  3737. "rotate": [
  3738. { "time": 0, "angle": 0 },
  3739. { "time": 0.2667, "angle": 9.54 },
  3740. { "time": 0.5, "angle": 15.56, "curve": "stepped" },
  3741. { "time": 0.7667, "angle": 15.56 },
  3742. { "time": 1.3333, "angle": 0 }
  3743. ],
  3744. "translate": [
  3745. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3746. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  3747. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  3748. { "time": 1.3333, "x": 0, "y": 0 }
  3749. ],
  3750. "scale": [
  3751. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3752. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  3753. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3754. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  3755. { "time": 1.3333, "x": 1, "y": 1 }
  3756. ]
  3757. },
  3758. "bone33": {
  3759. "rotate": [
  3760. { "time": 0, "angle": 0, "curve": "stepped" },
  3761. { "time": 0.2667, "angle": 0 },
  3762. { "time": 0.5, "angle": 10.16, "curve": "stepped" },
  3763. { "time": 0.7667, "angle": 10.16 },
  3764. { "time": 1.3333, "angle": 0 }
  3765. ],
  3766. "translate": [
  3767. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3768. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  3769. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  3770. { "time": 1.3333, "x": 0, "y": 0 }
  3771. ],
  3772. "scale": [
  3773. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3774. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  3775. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3776. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  3777. { "time": 1.3333, "x": 1, "y": 1 }
  3778. ]
  3779. },
  3780. "bone34": {
  3781. "rotate": [
  3782. { "time": 0, "angle": 0, "curve": "stepped" },
  3783. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  3784. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3785. { "time": 0.7667, "angle": 0, "curve": "stepped" },
  3786. { "time": 1.3333, "angle": 0 }
  3787. ],
  3788. "translate": [
  3789. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3790. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  3791. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  3792. { "time": 1.3333, "x": 0, "y": 0 }
  3793. ],
  3794. "scale": [
  3795. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3796. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  3797. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3798. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  3799. { "time": 1.3333, "x": 1, "y": 1 }
  3800. ]
  3801. },
  3802. "bone35": {
  3803. "rotate": [
  3804. { "time": 0, "angle": 0, "curve": "stepped" },
  3805. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  3806. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3807. { "time": 0.7667, "angle": 0, "curve": "stepped" },
  3808. { "time": 1.3333, "angle": 0 }
  3809. ],
  3810. "translate": [
  3811. { "time": 0, "x": 0, "y": 0 },
  3812. { "time": 0.2667, "x": 0.99, "y": -0.12 },
  3813. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  3814. { "time": 1.3333, "x": 0, "y": 0 }
  3815. ],
  3816. "scale": [
  3817. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3818. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  3819. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3820. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  3821. { "time": 1.3333, "x": 1, "y": 1 }
  3822. ]
  3823. },
  3824. "bone36": {
  3825. "rotate": [
  3826. { "time": 0, "angle": 0, "curve": "stepped" },
  3827. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  3828. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3829. { "time": 0.7667, "angle": 0, "curve": "stepped" },
  3830. { "time": 1.3333, "angle": 0 }
  3831. ],
  3832. "translate": [
  3833. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3834. { "time": 0.2667, "x": 0, "y": 0 },
  3835. { "time": 0.5, "x": 1.13, "y": -0.03 },
  3836. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  3837. { "time": 1.3333, "x": 0, "y": 0 }
  3838. ],
  3839. "scale": [
  3840. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3841. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  3842. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3843. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  3844. { "time": 1.3333, "x": 1, "y": 1 }
  3845. ]
  3846. },
  3847. "bone37": {
  3848. "rotate": [
  3849. { "time": 0, "angle": 0 },
  3850. { "time": 0.2667, "angle": 353.37 },
  3851. { "time": 0.5, "angle": -6.63, "curve": "stepped" },
  3852. { "time": 0.7667, "angle": -6.63 },
  3853. { "time": 1.3333, "angle": 0 }
  3854. ],
  3855. "translate": [
  3856. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3857. { "time": 0.2667, "x": 0, "y": 0 },
  3858. { "time": 0.5, "x": 2.44, "y": -0.11, "curve": "stepped" },
  3859. { "time": 0.7667, "x": 2.44, "y": -0.11 },
  3860. { "time": 1.3333, "x": 0, "y": 0 }
  3861. ],
  3862. "scale": [
  3863. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3864. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  3865. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3866. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  3867. { "time": 1.3333, "x": 1, "y": 1 }
  3868. ]
  3869. },
  3870. "bone38": {
  3871. "rotate": [
  3872. { "time": 0, "angle": 0, "curve": "stepped" },
  3873. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  3874. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3875. { "time": 0.7667, "angle": 0, "curve": "stepped" },
  3876. { "time": 1.3333, "angle": 0 }
  3877. ],
  3878. "translate": [
  3879. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3880. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  3881. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  3882. { "time": 1.3333, "x": 0, "y": 0 }
  3883. ],
  3884. "scale": [
  3885. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3886. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  3887. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3888. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  3889. { "time": 1.3333, "x": 1, "y": 1 }
  3890. ]
  3891. },
  3892. "bone39": {
  3893. "rotate": [
  3894. { "time": 0, "angle": 0 },
  3895. { "time": 0.2667, "angle": 2.97, "curve": "stepped" },
  3896. { "time": 0.5, "angle": 2.97, "curve": "stepped" },
  3897. { "time": 0.7667, "angle": 2.97 },
  3898. { "time": 1.3333, "angle": 0 }
  3899. ],
  3900. "translate": [
  3901. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3902. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  3903. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  3904. { "time": 1.3333, "x": 0, "y": 0 }
  3905. ],
  3906. "scale": [
  3907. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3908. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  3909. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3910. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  3911. { "time": 1.3333, "x": 1, "y": 1 }
  3912. ]
  3913. },
  3914. "bone40": {
  3915. "rotate": [
  3916. { "time": 0, "angle": 0, "curve": "stepped" },
  3917. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  3918. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3919. { "time": 0.7667, "angle": 0, "curve": "stepped" },
  3920. { "time": 1.3333, "angle": 0 }
  3921. ],
  3922. "translate": [
  3923. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3924. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  3925. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  3926. { "time": 1.3333, "x": 0, "y": 0 }
  3927. ],
  3928. "scale": [
  3929. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3930. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  3931. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3932. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  3933. { "time": 1.3333, "x": 1, "y": 1 }
  3934. ]
  3935. },
  3936. "bone41": {
  3937. "rotate": [
  3938. { "time": 0, "angle": 0 },
  3939. { "time": 0.2667, "angle": 78.15 },
  3940. { "time": 0.5, "angle": 70.29, "curve": "stepped" },
  3941. { "time": 0.7667, "angle": 70.29 },
  3942. { "time": 1.1333, "angle": 30.24 },
  3943. { "time": 1.3333, "angle": 0 }
  3944. ],
  3945. "translate": [
  3946. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3947. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  3948. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  3949. { "time": 1.3333, "x": 0, "y": 0 }
  3950. ],
  3951. "scale": [
  3952. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3953. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  3954. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3955. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  3956. { "time": 1.3333, "x": 1, "y": 1 }
  3957. ]
  3958. },
  3959. "bone42": {
  3960. "rotate": [
  3961. { "time": 0, "angle": 0, "curve": "stepped" },
  3962. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  3963. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3964. { "time": 0.7667, "angle": 0 },
  3965. { "time": 1.1333, "angle": -16.61 },
  3966. { "time": 1.3333, "angle": 0 }
  3967. ],
  3968. "translate": [
  3969. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3970. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  3971. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  3972. { "time": 1.3333, "x": 0, "y": 0 }
  3973. ],
  3974. "scale": [
  3975. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3976. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  3977. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3978. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  3979. { "time": 1.3333, "x": 1, "y": 1 }
  3980. ]
  3981. },
  3982. "bone43": {
  3983. "rotate": [
  3984. { "time": 0, "angle": 0, "curve": "stepped" },
  3985. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  3986. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3987. { "time": 0.7667, "angle": 0, "curve": "stepped" },
  3988. { "time": 1.3333, "angle": 0 }
  3989. ],
  3990. "translate": [
  3991. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3992. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  3993. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  3994. { "time": 1.3333, "x": 0, "y": 0 }
  3995. ],
  3996. "scale": [
  3997. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3998. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  3999. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4000. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  4001. { "time": 1.3333, "x": 1, "y": 1 }
  4002. ]
  4003. },
  4004. "bone44": {
  4005. "rotate": [
  4006. { "time": 0, "angle": 0, "curve": "stepped" },
  4007. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  4008. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4009. { "time": 0.7667, "angle": 0, "curve": "stepped" },
  4010. { "time": 1.3333, "angle": 0 }
  4011. ],
  4012. "translate": [
  4013. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4014. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  4015. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  4016. { "time": 1.3333, "x": 0, "y": 0 }
  4017. ],
  4018. "scale": [
  4019. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4020. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  4021. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4022. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  4023. { "time": 1.3333, "x": 1, "y": 1 }
  4024. ]
  4025. },
  4026. "bone45": {
  4027. "rotate": [
  4028. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  4029. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4030. { "time": 0.7667, "angle": 0 }
  4031. ],
  4032. "translate": [
  4033. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  4034. { "time": 0.7667, "x": 0, "y": 0 }
  4035. ],
  4036. "scale": [
  4037. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  4038. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4039. { "time": 0.7667, "x": 1, "y": 1 }
  4040. ]
  4041. },
  4042. "bone46": {
  4043. "rotate": [
  4044. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  4045. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4046. { "time": 0.7667, "angle": 0 }
  4047. ],
  4048. "translate": [
  4049. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  4050. { "time": 0.7667, "x": 0, "y": 0 }
  4051. ],
  4052. "scale": [
  4053. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  4054. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4055. { "time": 0.7667, "x": 1, "y": 1 }
  4056. ]
  4057. },
  4058. "bone47": {
  4059. "rotate": [
  4060. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  4061. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4062. { "time": 0.7667, "angle": 0 }
  4063. ],
  4064. "translate": [
  4065. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  4066. { "time": 0.7667, "x": 0, "y": 0 }
  4067. ],
  4068. "scale": [
  4069. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  4070. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4071. { "time": 0.7667, "x": 1, "y": 1 }
  4072. ]
  4073. }
  4074. },
  4075. "deform": {
  4076. "default": {
  4077. "qunzi": {
  4078. "qunzi": [
  4079. { "time": 0, "curve": "stepped" },
  4080. { "time": 1.3333 }
  4081. ]
  4082. },
  4083. "shuyao": {
  4084. "shuyao": [
  4085. {
  4086. "time": 0,
  4087. "offset": 6,
  4088. "vertices": [ 3.31154, 0.15052 ]
  4089. },
  4090. {
  4091. "time": 0.2667,
  4092. "vertices": [ 2.39452, 0.10884, 0.83235, 0.3201, 1.69025, 0.07683, 3.31154, 0.15052, 0, 0, 0, 0, 1.69025, 0.07683 ]
  4093. },
  4094. {
  4095. "time": 1.3333,
  4096. "offset": 6,
  4097. "vertices": [ 3.31154, 0.15052 ]
  4098. }
  4099. ]
  4100. },
  4101. "toufa8": {
  4102. "toufa8": [
  4103. { "time": 0, "curve": "stepped" },
  4104. { "time": 1.3333 }
  4105. ]
  4106. },
  4107. "xiong": {
  4108. "xiong": [
  4109. {
  4110. "time": 0,
  4111. "offset": 2,
  4112. "vertices": [ -0.74711, -0.06556, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.12464, 0.01091, 0, 0, 0, 0, 0.12464, 0.01091, 0.12464, 0.01091 ]
  4113. },
  4114. {
  4115. "time": 0.5,
  4116. "vertices": [ -0.98322, -0.08624, -1.73032, -0.1518, -0.98322, -0.08624, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.85857, -0.07532, 0, 0, 0, 0, -0.85857, -0.07532, -0.85857, -0.07532 ]
  4117. },
  4118. {
  4119. "time": 1.3333,
  4120. "offset": 2,
  4121. "vertices": [ -0.74711, -0.06556, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.12464, 0.01091, 0, 0, 0, 0, 0.12464, 0.01091, 0.12464, 0.01091 ]
  4122. }
  4123. ]
  4124. }
  4125. }
  4126. }
  4127. },
  4128. "walk1": {
  4129. "slots": {
  4130. "biyan": {
  4131. "attachment": [
  4132. { "time": 0, "name": null },
  4133. { "time": 1.3333, "name": "biyan" },
  4134. { "time": 1.4333, "name": null }
  4135. ]
  4136. },
  4137. "youtui 2": {
  4138. "attachment": [
  4139. { "time": 1.3667, "name": null }
  4140. ]
  4141. },
  4142. "youyan": {
  4143. "attachment": [
  4144. { "time": 1.3333, "name": null },
  4145. { "time": 1.4333, "name": "youyan" }
  4146. ]
  4147. },
  4148. "zuoyan": {
  4149. "attachment": [
  4150. { "time": 1.3333, "name": null },
  4151. { "time": 1.4333, "name": "zuoyan" }
  4152. ]
  4153. }
  4154. },
  4155. "bones": {
  4156. "bone26": {
  4157. "rotate": [
  4158. { "time": 0, "angle": 0, "curve": "stepped" },
  4159. { "time": 1.3333, "angle": 0 }
  4160. ],
  4161. "translate": [
  4162. { "time": 1.3, "x": 0, "y": 0 },
  4163. { "time": 1.3333, "x": -1.03, "y": 0.02 }
  4164. ],
  4165. "scale": [
  4166. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4167. { "time": 1.3333, "x": 1, "y": 1 }
  4168. ]
  4169. },
  4170. "root": {
  4171. "rotate": [
  4172. { "time": 0, "angle": 0, "curve": "stepped" },
  4173. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  4174. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  4175. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4176. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  4177. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  4178. { "time": 1, "angle": 0, "curve": "stepped" },
  4179. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  4180. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  4181. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4182. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  4183. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  4184. { "time": 2, "angle": 0 }
  4185. ],
  4186. "translate": [
  4187. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4188. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  4189. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  4190. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4191. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  4192. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  4193. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4194. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4195. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  4196. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4197. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  4198. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  4199. { "time": 2, "x": 0, "y": 0 }
  4200. ],
  4201. "scale": [
  4202. { "time": 0, "x": 0.65, "y": 0.65 }
  4203. ]
  4204. },
  4205. "bone": {
  4206. "rotate": [
  4207. { "time": 0, "angle": 0, "curve": "stepped" },
  4208. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  4209. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  4210. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4211. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  4212. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  4213. { "time": 1, "angle": 0, "curve": "stepped" },
  4214. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  4215. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  4216. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4217. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  4218. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  4219. { "time": 2, "angle": 0 }
  4220. ],
  4221. "translate": [
  4222. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4223. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  4224. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  4225. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4226. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  4227. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  4228. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4229. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4230. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  4231. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4232. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  4233. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  4234. { "time": 2, "x": 0, "y": 0 }
  4235. ],
  4236. "scale": [
  4237. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4238. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4239. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4240. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4241. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4242. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  4243. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4244. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4245. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4246. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4247. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  4248. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  4249. { "time": 2, "x": 1, "y": 1 }
  4250. ]
  4251. },
  4252. "bone2": {
  4253. "rotate": [
  4254. { "time": 0, "angle": 0, "curve": "stepped" },
  4255. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  4256. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4257. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  4258. { "time": 1, "angle": 0, "curve": "stepped" },
  4259. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  4260. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4261. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  4262. { "time": 2, "angle": 0 }
  4263. ],
  4264. "translate": [
  4265. {
  4266. "time": 0,
  4267. "x": 0.07,
  4268. "y": 1.63,
  4269. "curve": [ 0.25, 0, 0.75, 1 ]
  4270. },
  4271. {
  4272. "time": 0.1667,
  4273. "x": 0,
  4274. "y": 0,
  4275. "curve": [ 0.25, 0, 0.75, 1 ]
  4276. },
  4277. {
  4278. "time": 0.5,
  4279. "x": 0.07,
  4280. "y": 1.63,
  4281. "curve": [ 0.25, 0, 0.75, 1 ]
  4282. },
  4283. {
  4284. "time": 0.6667,
  4285. "x": 0,
  4286. "y": 0,
  4287. "curve": [ 0.25, 0, 0.75, 1 ]
  4288. },
  4289. {
  4290. "time": 1,
  4291. "x": 0.07,
  4292. "y": 1.63,
  4293. "curve": [ 0.25, 0, 0.75, 1 ]
  4294. },
  4295. {
  4296. "time": 1.1667,
  4297. "x": 0,
  4298. "y": 0,
  4299. "curve": [ 0.25, 0, 0.75, 1 ]
  4300. },
  4301. {
  4302. "time": 1.5,
  4303. "x": 0.07,
  4304. "y": 1.63,
  4305. "curve": [ 0.25, 0, 0.75, 1 ]
  4306. },
  4307. {
  4308. "time": 1.6667,
  4309. "x": 0,
  4310. "y": 0,
  4311. "curve": [ 0.25, 0, 0.75, 1 ]
  4312. },
  4313. { "time": 2, "x": 0.07, "y": 1.63 }
  4314. ],
  4315. "scale": [
  4316. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4317. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4318. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4319. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4320. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4321. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4322. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4323. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  4324. { "time": 2, "x": 1, "y": 1 }
  4325. ]
  4326. },
  4327. "bone3": {
  4328. "rotate": [
  4329. { "time": 0, "angle": 4.85 },
  4330. { "time": 0.5, "angle": -1.36 },
  4331. { "time": 1, "angle": 4.85 },
  4332. { "time": 1.5, "angle": -1.36 },
  4333. { "time": 2, "angle": 4.85 }
  4334. ],
  4335. "translate": [
  4336. { "time": 0, "x": 0, "y": 0 },
  4337. { "time": 0.1667, "x": -1.46, "y": 0.07 },
  4338. { "time": 0.5, "x": 0.43, "y": -0.02 },
  4339. { "time": 0.6667, "x": -1.46, "y": 0.07 },
  4340. { "time": 1, "x": 0, "y": 0 },
  4341. { "time": 1.1667, "x": -1.46, "y": 0.07 },
  4342. { "time": 1.5, "x": 0.43, "y": -0.02 },
  4343. { "time": 1.6667, "x": -1.46, "y": 0.07 },
  4344. { "time": 2, "x": 0, "y": 0 }
  4345. ],
  4346. "scale": [
  4347. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4348. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4349. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4350. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4351. { "time": 2, "x": 1, "y": 1 }
  4352. ]
  4353. },
  4354. "bone4": {
  4355. "rotate": [
  4356. { "time": 0, "angle": 0 },
  4357. { "time": 0.5, "angle": 4.44 },
  4358. { "time": 1, "angle": 0 },
  4359. { "time": 1.5, "angle": 4.44 },
  4360. { "time": 2, "angle": 0 }
  4361. ],
  4362. "translate": [
  4363. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4364. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4365. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4366. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4367. { "time": 2, "x": 0, "y": 0 }
  4368. ],
  4369. "scale": [
  4370. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4371. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4372. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4373. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4374. { "time": 2, "x": 1, "y": 1 }
  4375. ]
  4376. },
  4377. "bone5": {
  4378. "rotate": [
  4379. { "time": 0, "angle": -7.86 },
  4380. { "time": 0.5, "angle": -5.25 },
  4381. { "time": 1, "angle": -7.86 },
  4382. { "time": 1.5, "angle": -5.25 },
  4383. { "time": 2, "angle": -7.86 }
  4384. ],
  4385. "translate": [
  4386. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4387. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4388. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4389. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4390. { "time": 2, "x": 0, "y": 0 }
  4391. ],
  4392. "scale": [
  4393. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4394. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4395. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4396. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4397. { "time": 2, "x": 1, "y": 1 }
  4398. ]
  4399. },
  4400. "bone6": {
  4401. "rotate": [
  4402. { "time": 0, "angle": 0, "curve": "stepped" },
  4403. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4404. { "time": 1, "angle": 0, "curve": "stepped" },
  4405. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4406. { "time": 2, "angle": 0 }
  4407. ],
  4408. "translate": [
  4409. { "time": 0, "x": 0, "y": 0 },
  4410. { "time": 0.5, "x": -0.54, "y": -0.92 },
  4411. { "time": 1, "x": 0, "y": 0 },
  4412. { "time": 1.5, "x": -0.54, "y": -0.92 },
  4413. { "time": 2, "x": 0, "y": 0 }
  4414. ],
  4415. "scale": [
  4416. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4417. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4418. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4419. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4420. { "time": 2, "x": 1, "y": 1 }
  4421. ]
  4422. },
  4423. "bone7": {
  4424. "rotate": [
  4425. { "time": 0, "angle": -7.54 },
  4426. { "time": 0.5, "angle": 4.12 },
  4427. { "time": 1, "angle": -7.54 },
  4428. { "time": 1.5, "angle": 4.12 },
  4429. { "time": 2, "angle": -7.54 }
  4430. ],
  4431. "translate": [
  4432. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4433. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4434. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4435. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4436. { "time": 2, "x": 0, "y": 0 }
  4437. ],
  4438. "scale": [
  4439. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4440. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4441. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4442. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4443. { "time": 2, "x": 1, "y": 1 }
  4444. ]
  4445. },
  4446. "bone8": {
  4447. "rotate": [
  4448. { "time": 0, "angle": -11.53, "curve": "stepped" },
  4449. { "time": 0.1667, "angle": -11.53, "curve": "stepped" },
  4450. { "time": 0.3333, "angle": -11.53 },
  4451. { "time": 0.5, "angle": 4.16 },
  4452. { "time": 0.6667, "angle": -11.53, "curve": "stepped" },
  4453. { "time": 0.8333, "angle": -11.53, "curve": "stepped" },
  4454. { "time": 1, "angle": -11.53, "curve": "stepped" },
  4455. { "time": 1.1667, "angle": -11.53, "curve": "stepped" },
  4456. { "time": 1.3333, "angle": -11.53 },
  4457. { "time": 1.5, "angle": 4.16 },
  4458. { "time": 1.6667, "angle": -11.53, "curve": "stepped" },
  4459. { "time": 1.8333, "angle": -11.53, "curve": "stepped" },
  4460. { "time": 2, "angle": -11.53 }
  4461. ],
  4462. "translate": [
  4463. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4464. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  4465. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  4466. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4467. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  4468. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  4469. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4470. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4471. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  4472. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4473. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  4474. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  4475. { "time": 2, "x": 0, "y": 0 }
  4476. ],
  4477. "scale": [
  4478. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4479. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4480. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4481. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4482. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4483. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  4484. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4485. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4486. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4487. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4488. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  4489. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  4490. { "time": 2, "x": 1, "y": 1 }
  4491. ]
  4492. },
  4493. "bone9": {
  4494. "rotate": [
  4495. { "time": 0, "angle": 0, "curve": "stepped" },
  4496. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4497. { "time": 1, "angle": 0, "curve": "stepped" },
  4498. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4499. { "time": 2, "angle": 0 }
  4500. ],
  4501. "translate": [
  4502. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4503. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4504. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4505. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4506. { "time": 2, "x": 0, "y": 0 }
  4507. ],
  4508. "scale": [
  4509. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4510. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4511. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4512. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4513. { "time": 2, "x": 1, "y": 1 }
  4514. ]
  4515. },
  4516. "bone10": {
  4517. "rotate": [
  4518. { "time": 0, "angle": 0 },
  4519. { "time": 0.5, "angle": -15.62 },
  4520. { "time": 1, "angle": 0 },
  4521. { "time": 1.5, "angle": -15.62 },
  4522. { "time": 2, "angle": 0 }
  4523. ],
  4524. "translate": [
  4525. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4526. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4527. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4528. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4529. { "time": 2, "x": 0, "y": 0 }
  4530. ],
  4531. "scale": [
  4532. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4533. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4534. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4535. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4536. { "time": 2, "x": 1, "y": 1 }
  4537. ]
  4538. },
  4539. "bone11": {
  4540. "rotate": [
  4541. { "time": 0, "angle": 0 },
  4542. { "time": 0.5, "angle": -11.81 },
  4543. { "time": 1, "angle": 0 },
  4544. { "time": 1.5, "angle": -11.81 },
  4545. { "time": 2, "angle": 0 }
  4546. ],
  4547. "translate": [
  4548. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4549. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4550. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4551. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4552. { "time": 2, "x": 0, "y": 0 }
  4553. ],
  4554. "scale": [
  4555. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4556. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4557. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4558. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4559. { "time": 2, "x": 1, "y": 1 }
  4560. ]
  4561. },
  4562. "bone12": {
  4563. "rotate": [
  4564. { "time": 0, "angle": 0, "curve": "stepped" },
  4565. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4566. { "time": 1, "angle": 0, "curve": "stepped" },
  4567. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4568. { "time": 2, "angle": 0 }
  4569. ],
  4570. "translate": [
  4571. { "time": 0, "x": 0, "y": 0 },
  4572. { "time": 0.5, "x": -0.87, "y": -0.97 },
  4573. { "time": 1, "x": 0, "y": 0 },
  4574. { "time": 1.5, "x": -0.87, "y": -0.97 },
  4575. { "time": 2, "x": 0, "y": 0 }
  4576. ],
  4577. "scale": [
  4578. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4579. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4580. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4581. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4582. { "time": 2, "x": 1, "y": 1 }
  4583. ]
  4584. },
  4585. "bone13": {
  4586. "rotate": [
  4587. { "time": 0, "angle": 0 },
  4588. { "time": 0.5, "angle": 24.22 },
  4589. { "time": 1, "angle": 0 },
  4590. { "time": 1.5, "angle": 24.22 },
  4591. { "time": 2, "angle": 0 }
  4592. ],
  4593. "translate": [
  4594. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4595. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4596. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4597. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4598. { "time": 2, "x": 0, "y": 0 }
  4599. ],
  4600. "scale": [
  4601. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4602. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4603. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4604. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4605. { "time": 2, "x": 1, "y": 1 }
  4606. ]
  4607. },
  4608. "bone14": {
  4609. "rotate": [
  4610. { "time": 0, "angle": 0, "curve": "stepped" },
  4611. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  4612. { "time": 0.3333, "angle": 0 },
  4613. { "time": 0.5, "angle": 25.92 },
  4614. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  4615. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  4616. { "time": 1, "angle": 0, "curve": "stepped" },
  4617. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  4618. { "time": 1.3333, "angle": 0 },
  4619. { "time": 1.5, "angle": 25.92 },
  4620. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  4621. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  4622. { "time": 2, "angle": 0 }
  4623. ],
  4624. "translate": [
  4625. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4626. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  4627. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  4628. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4629. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  4630. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  4631. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4632. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4633. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  4634. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4635. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  4636. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  4637. { "time": 2, "x": 0, "y": 0 }
  4638. ],
  4639. "scale": [
  4640. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4641. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4642. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4643. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4644. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4645. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  4646. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4647. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4648. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4649. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4650. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  4651. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  4652. { "time": 2, "x": 1, "y": 1 }
  4653. ]
  4654. },
  4655. "bone15": {
  4656. "rotate": [
  4657. { "time": 0, "angle": -1.83 },
  4658. { "time": 0.5, "angle": -6.18 },
  4659. { "time": 1, "angle": -1.83 },
  4660. { "time": 1.5, "angle": -6.18 },
  4661. { "time": 2, "angle": -1.83 }
  4662. ],
  4663. "translate": [
  4664. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4665. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4666. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4667. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4668. { "time": 2, "x": 0, "y": 0 }
  4669. ],
  4670. "scale": [
  4671. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4672. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4673. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4674. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4675. { "time": 2, "x": 1, "y": 1 }
  4676. ]
  4677. },
  4678. "bone16": {
  4679. "rotate": [
  4680. { "time": 0, "angle": 12.51 },
  4681. { "time": 0.5, "angle": 0 },
  4682. { "time": 1, "angle": 12.51 },
  4683. { "time": 1.5, "angle": 0 },
  4684. { "time": 2, "angle": 12.51 }
  4685. ],
  4686. "translate": [
  4687. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4688. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4689. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4690. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4691. { "time": 2, "x": 0, "y": 0 }
  4692. ],
  4693. "scale": [
  4694. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4695. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4696. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4697. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4698. { "time": 2, "x": 1, "y": 1 }
  4699. ]
  4700. },
  4701. "bone17": {
  4702. "rotate": [
  4703. { "time": 0, "angle": 27.37 },
  4704. { "time": 0.5, "angle": 0 },
  4705. { "time": 1, "angle": 27.37 },
  4706. { "time": 1.5, "angle": 0 },
  4707. { "time": 2, "angle": 27.37 }
  4708. ],
  4709. "translate": [
  4710. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4711. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4712. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4713. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4714. { "time": 2, "x": 0, "y": 0 }
  4715. ],
  4716. "scale": [
  4717. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4718. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4719. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4720. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4721. { "time": 2, "x": 1, "y": 1 }
  4722. ]
  4723. },
  4724. "bone18": {
  4725. "rotate": [
  4726. { "time": 0, "angle": -0.68 },
  4727. { "time": 0.5, "angle": 4.05 },
  4728. { "time": 1, "angle": -0.68 },
  4729. { "time": 1.5, "angle": 4.05 },
  4730. { "time": 2, "angle": -0.68 }
  4731. ],
  4732. "translate": [
  4733. { "time": 0, "x": 2.49, "y": -1.05 },
  4734. { "time": 0.5, "x": 0, "y": 0 },
  4735. { "time": 1, "x": 2.49, "y": -1.05 },
  4736. { "time": 1.5, "x": 0, "y": 0 },
  4737. { "time": 2, "x": 2.49, "y": -1.05 }
  4738. ],
  4739. "scale": [
  4740. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4741. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4742. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4743. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4744. { "time": 2, "x": 1, "y": 1 }
  4745. ]
  4746. },
  4747. "bone19": {
  4748. "rotate": [
  4749. { "time": 0, "angle": 0 },
  4750. { "time": 0.5, "angle": 13.67 },
  4751. { "time": 1, "angle": 0 },
  4752. { "time": 1.5, "angle": 13.67 },
  4753. { "time": 2, "angle": 0 }
  4754. ],
  4755. "translate": [
  4756. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4757. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4758. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4759. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4760. { "time": 2, "x": 0, "y": 0 }
  4761. ],
  4762. "scale": [
  4763. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4764. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4765. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4766. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4767. { "time": 2, "x": 1, "y": 1 }
  4768. ]
  4769. },
  4770. "bone20": {
  4771. "rotate": [
  4772. { "time": 0, "angle": 0 },
  4773. { "time": 0.5, "angle": 14.34 },
  4774. { "time": 1, "angle": 0 },
  4775. { "time": 1.5, "angle": 14.34 },
  4776. { "time": 2, "angle": 0 }
  4777. ],
  4778. "translate": [
  4779. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4780. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4781. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4782. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4783. { "time": 2, "x": 0, "y": 0 }
  4784. ],
  4785. "scale": [
  4786. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4787. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4788. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4789. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4790. { "time": 2, "x": 1, "y": 1 }
  4791. ]
  4792. },
  4793. "bone21": {
  4794. "rotate": [
  4795. { "time": 0, "angle": 0, "curve": "stepped" },
  4796. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4797. { "time": 1, "angle": 0, "curve": "stepped" },
  4798. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4799. { "time": 2, "angle": 0 }
  4800. ],
  4801. "translate": [
  4802. { "time": 0, "x": 0, "y": 3.21 },
  4803. { "time": 0.5, "x": -3.25, "y": 0.72 },
  4804. { "time": 1, "x": 0, "y": 3.21 },
  4805. { "time": 1.5, "x": -3.25, "y": 0.72 },
  4806. { "time": 2, "x": 0, "y": 3.21 }
  4807. ],
  4808. "scale": [
  4809. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4810. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4811. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4812. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4813. { "time": 2, "x": 1, "y": 1 }
  4814. ]
  4815. },
  4816. "bone22": {
  4817. "rotate": [
  4818. { "time": 0, "angle": 0 },
  4819. { "time": 0.5, "angle": 328.56 },
  4820. { "time": 1, "angle": 0 },
  4821. { "time": 1.5, "angle": 328.56 },
  4822. { "time": 2, "angle": 0 }
  4823. ],
  4824. "translate": [
  4825. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4826. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4827. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4828. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4829. { "time": 2, "x": 0, "y": 0 }
  4830. ],
  4831. "scale": [
  4832. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4833. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4834. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4835. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4836. { "time": 2, "x": 1, "y": 1 }
  4837. ]
  4838. },
  4839. "bone23": {
  4840. "rotate": [
  4841. { "time": 0, "angle": 0 },
  4842. { "time": 0.5, "angle": -328.09 },
  4843. { "time": 1, "angle": 0 },
  4844. { "time": 1.5, "angle": -328.09 },
  4845. { "time": 2, "angle": 0 }
  4846. ],
  4847. "translate": [
  4848. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4849. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4850. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4851. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4852. { "time": 2, "x": 0, "y": 0 }
  4853. ],
  4854. "scale": [
  4855. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4856. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4857. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4858. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4859. { "time": 2, "x": 1, "y": 1 }
  4860. ]
  4861. },
  4862. "bone24": {
  4863. "rotate": [
  4864. { "time": 0, "angle": 0, "curve": "stepped" },
  4865. { "time": 1.2667, "angle": 0, "curve": "stepped" },
  4866. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  4867. { "time": 1.4333, "angle": 0 }
  4868. ],
  4869. "translate": [
  4870. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4871. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  4872. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  4873. { "time": 1.4333, "x": 0, "y": 0, "curve": "stepped" },
  4874. { "time": 1.5333, "x": 0, "y": 0 }
  4875. ],
  4876. "scale": [
  4877. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4878. { "time": 1.2667, "x": 1, "y": 1 },
  4879. { "time": 1.3333, "x": 0.483, "y": 1, "curve": "stepped" },
  4880. { "time": 1.4333, "x": 0.483, "y": 1 },
  4881. { "time": 1.5333, "x": 1, "y": 1 }
  4882. ]
  4883. },
  4884. "bone25": {
  4885. "rotate": [
  4886. { "time": 0, "angle": 0, "curve": "stepped" },
  4887. { "time": 1.2667, "angle": 0, "curve": "stepped" },
  4888. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  4889. { "time": 1.4333, "angle": 0, "curve": "stepped" },
  4890. { "time": 1.5333, "angle": 0 }
  4891. ],
  4892. "translate": [
  4893. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4894. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  4895. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  4896. { "time": 1.4333, "x": 0, "y": 0, "curve": "stepped" },
  4897. { "time": 1.5333, "x": 0, "y": 0 }
  4898. ],
  4899. "scale": [
  4900. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4901. { "time": 1.2667, "x": 1, "y": 1 },
  4902. { "time": 1.3333, "x": 0.413, "y": 1, "curve": "stepped" },
  4903. { "time": 1.4333, "x": 0.413, "y": 1 },
  4904. { "time": 1.5333, "x": 1, "y": 1 }
  4905. ]
  4906. },
  4907. "bone27": {
  4908. "rotate": [
  4909. { "time": 0, "angle": 0, "curve": "stepped" },
  4910. { "time": 1.2667, "angle": 0, "curve": "stepped" },
  4911. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  4912. { "time": 1.4333, "angle": 0, "curve": "stepped" },
  4913. { "time": 1.5333, "angle": 0 }
  4914. ],
  4915. "translate": [
  4916. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4917. { "time": 1.2667, "x": 0, "y": 0 },
  4918. { "time": 1.3333, "x": -3.5, "y": 0.3, "curve": "stepped" },
  4919. { "time": 1.4333, "x": -3.5, "y": 0.3 },
  4920. { "time": 1.5333, "x": 0, "y": 0 }
  4921. ],
  4922. "scale": [
  4923. { "time": 0, "x": 1, "y": 1 }
  4924. ]
  4925. },
  4926. "bone28": {
  4927. "rotate": [
  4928. { "time": 0, "angle": -335.33 },
  4929. { "time": 0.1667, "angle": 17.02 },
  4930. { "time": 0.3333, "angle": 9.37 },
  4931. { "time": 0.5, "angle": 1.72 },
  4932. { "time": 0.6667, "angle": 9.37 },
  4933. { "time": 0.8333, "angle": 17.02 },
  4934. { "time": 1, "angle": -335.33 },
  4935. { "time": 1.1667, "angle": 17.02 },
  4936. { "time": 1.3333, "angle": 9.37 },
  4937. { "time": 1.5, "angle": 1.72 },
  4938. { "time": 1.6667, "angle": 9.37 },
  4939. { "time": 1.8333, "angle": 17.02 },
  4940. { "time": 2, "angle": -335.33 }
  4941. ],
  4942. "translate": [
  4943. { "time": 0, "x": -1.92, "y": -12.79 },
  4944. { "time": 0.1667, "x": -3.13, "y": -9.13 },
  4945. { "time": 0.3333, "x": -4.35, "y": -5.46 },
  4946. { "time": 0.5, "x": -5.56, "y": -1.79 },
  4947. { "time": 0.6667, "x": -4.35, "y": -5.46 },
  4948. { "time": 0.8333, "x": -3.13, "y": -9.13 },
  4949. { "time": 1, "x": -1.92, "y": -12.79 },
  4950. { "time": 1.1667, "x": -3.13, "y": -9.13 },
  4951. { "time": 1.3333, "x": -4.35, "y": -5.46 },
  4952. { "time": 1.5, "x": -5.56, "y": -1.79 },
  4953. { "time": 1.6667, "x": -4.35, "y": -5.46 },
  4954. { "time": 1.8333, "x": -3.13, "y": -9.13 },
  4955. { "time": 2, "x": -1.92, "y": -12.79 }
  4956. ],
  4957. "scale": [
  4958. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4959. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4960. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4961. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4962. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4963. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  4964. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4965. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4966. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4967. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4968. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  4969. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  4970. { "time": 2, "x": 1, "y": 1 }
  4971. ]
  4972. },
  4973. "bone29": {
  4974. "rotate": [
  4975. { "time": 0, "angle": -21.24 },
  4976. { "time": 0.5, "angle": -7.83 },
  4977. { "time": 1, "angle": -21.24 },
  4978. { "time": 1.5, "angle": -7.83 },
  4979. { "time": 2, "angle": -21.24 }
  4980. ],
  4981. "translate": [
  4982. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4983. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4984. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4985. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4986. { "time": 2, "x": 0, "y": 0 }
  4987. ],
  4988. "scale": [
  4989. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4990. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4991. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4992. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4993. { "time": 2, "x": 1, "y": 1 }
  4994. ]
  4995. },
  4996. "bone30": {
  4997. "rotate": [
  4998. { "time": 0, "angle": 0, "curve": "stepped" },
  4999. { "time": 1, "angle": 0 }
  5000. ],
  5001. "translate": [
  5002. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5003. { "time": 1, "x": 0, "y": 0 }
  5004. ],
  5005. "scale": [
  5006. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5007. { "time": 1, "x": 1, "y": 1 }
  5008. ]
  5009. },
  5010. "bone31": {
  5011. "rotate": [
  5012. { "time": 0, "angle": 333.98 },
  5013. { "time": 0.5, "angle": 7.45 },
  5014. { "time": 1, "angle": 333.98 },
  5015. { "time": 1.5, "angle": 7.45 },
  5016. { "time": 2, "angle": 333.98 }
  5017. ],
  5018. "translate": [
  5019. { "time": 0, "x": -2.04, "y": 0.44 },
  5020. { "time": 0.5, "x": -0.63, "y": 1.63 },
  5021. { "time": 1, "x": 0, "y": 0 },
  5022. { "time": 1.5, "x": -0.63, "y": 1.63 },
  5023. { "time": 2, "x": -2.04, "y": 0.44 }
  5024. ],
  5025. "scale": [
  5026. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5027. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5028. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5029. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5030. { "time": 2, "x": 1, "y": 1 }
  5031. ]
  5032. },
  5033. "bone32": {
  5034. "rotate": [
  5035. { "time": 0, "angle": -28.35 },
  5036. { "time": 0.5, "angle": -10.02 },
  5037. { "time": 1, "angle": -28.35 },
  5038. { "time": 1.5, "angle": -10.02 },
  5039. { "time": 2, "angle": -28.35 }
  5040. ],
  5041. "translate": [
  5042. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5043. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5044. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5045. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5046. { "time": 2, "x": 0, "y": 0 }
  5047. ],
  5048. "scale": [
  5049. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5050. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5051. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5052. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5053. { "time": 2, "x": 1, "y": 1 }
  5054. ]
  5055. },
  5056. "bone33": {
  5057. "rotate": [
  5058. { "time": 0, "angle": 0, "curve": "stepped" },
  5059. { "time": 1, "angle": 0, "curve": "stepped" },
  5060. { "time": 2, "angle": 0 }
  5061. ],
  5062. "translate": [
  5063. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5064. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5065. { "time": 2, "x": 0, "y": 0 }
  5066. ],
  5067. "scale": [
  5068. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5069. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5070. { "time": 2, "x": 1, "y": 1 }
  5071. ]
  5072. },
  5073. "bone34": {
  5074. "rotate": [
  5075. { "time": 0, "angle": 0, "curve": "stepped" },
  5076. { "time": 0.5, "angle": 0, "curve": "stepped" },
  5077. { "time": 1, "angle": 0, "curve": "stepped" },
  5078. { "time": 1.5, "angle": 0, "curve": "stepped" },
  5079. { "time": 2, "angle": 0 }
  5080. ],
  5081. "translate": [
  5082. {
  5083. "time": 0,
  5084. "x": 0.12,
  5085. "y": 2.63,
  5086. "curve": [ 0.25, 0, 0.75, 1 ]
  5087. },
  5088. { "time": 0.5, "x": 0, "y": -2.01 },
  5089. {
  5090. "time": 1,
  5091. "x": 0.12,
  5092. "y": 2.63,
  5093. "curve": [ 0.25, 0, 0.75, 1 ]
  5094. },
  5095. { "time": 1.5, "x": 0, "y": -2.01 },
  5096. { "time": 2, "x": 0.12, "y": 2.63 }
  5097. ],
  5098. "scale": [
  5099. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5100. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5101. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5102. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5103. { "time": 2, "x": 1, "y": 1 }
  5104. ]
  5105. },
  5106. "bone35": {
  5107. "rotate": [
  5108. { "time": 0, "angle": 0, "curve": "stepped" },
  5109. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  5110. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  5111. { "time": 0.5, "angle": 0, "curve": "stepped" },
  5112. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  5113. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  5114. { "time": 1, "angle": 0, "curve": "stepped" },
  5115. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  5116. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  5117. { "time": 1.5, "angle": 0, "curve": "stepped" },
  5118. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  5119. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  5120. { "time": 2, "angle": 0 }
  5121. ],
  5122. "translate": [
  5123. { "time": 0, "x": 0.92, "y": -0.11 },
  5124. { "time": 0.5, "x": -0.19, "y": -1.55 },
  5125. { "time": 1, "x": 0.92, "y": -0.11 },
  5126. { "time": 1.5, "x": -0.19, "y": -1.55 },
  5127. { "time": 2, "x": 0.92, "y": -0.11 }
  5128. ],
  5129. "scale": [
  5130. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5131. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5132. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  5133. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5134. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5135. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  5136. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5137. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  5138. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5139. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5140. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  5141. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  5142. { "time": 2, "x": 1, "y": 1 }
  5143. ]
  5144. },
  5145. "bone36": {
  5146. "rotate": [
  5147. { "time": 0, "angle": 0, "curve": "stepped" },
  5148. { "time": 0.5, "angle": 0, "curve": "stepped" },
  5149. { "time": 1, "angle": 0, "curve": "stepped" },
  5150. { "time": 1.5, "angle": 0, "curve": "stepped" },
  5151. { "time": 2, "angle": 0 }
  5152. ],
  5153. "translate": [
  5154. { "time": 0, "x": -0.97, "y": 0.02 },
  5155. { "time": 0.1667, "x": 2.22, "y": -0.05 },
  5156. { "time": 0.5, "x": 0, "y": 0 },
  5157. { "time": 0.6667, "x": 2.22, "y": -0.05 },
  5158. { "time": 1, "x": -0.97, "y": 0.02 },
  5159. { "time": 1.1667, "x": 2.22, "y": -0.05 },
  5160. { "time": 1.5, "x": 0, "y": 0 },
  5161. { "time": 1.6667, "x": 2.22, "y": -0.05 },
  5162. { "time": 2, "x": 0, "y": 0 }
  5163. ],
  5164. "scale": [
  5165. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5166. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5167. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5168. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5169. { "time": 2, "x": 1, "y": 1 }
  5170. ]
  5171. },
  5172. "bone37": {
  5173. "rotate": [
  5174. { "time": 0, "angle": 19.05 },
  5175. { "time": 0.1667, "angle": 2.42 },
  5176. { "time": 0.3333, "angle": 335.5 },
  5177. { "time": 0.5, "angle": 334.89 },
  5178. { "time": 0.6667, "angle": -12.58 },
  5179. { "time": 0.8333, "angle": 7.87 },
  5180. { "time": 1, "angle": 19.05 },
  5181. { "time": 1.1667, "angle": 2.42 },
  5182. { "time": 1.3333, "angle": 335.5 },
  5183. { "time": 1.5, "angle": 334.89 },
  5184. { "time": 1.6667, "angle": -12.58 },
  5185. { "time": 1.8333, "angle": 7.87 },
  5186. { "time": 2, "angle": 19.05 }
  5187. ],
  5188. "translate": [
  5189. { "time": 0, "x": 0, "y": 0 },
  5190. { "time": 0.1667, "x": -1.94, "y": 8.42 },
  5191. { "time": 0.3333, "x": -3.2, "y": 10.68 },
  5192. { "time": 0.5, "x": -4.8, "y": 16.01 },
  5193. { "time": 0.6667, "x": -3.2, "y": 10.68 },
  5194. { "time": 0.8333, "x": -1.6, "y": 5.34 },
  5195. { "time": 1, "x": 0, "y": 0 },
  5196. { "time": 1.1667, "x": -1.94, "y": 8.42 },
  5197. { "time": 1.3333, "x": -3.2, "y": 10.68 },
  5198. { "time": 1.5, "x": -4.8, "y": 16.01 },
  5199. { "time": 1.6667, "x": -3.2, "y": 10.68 },
  5200. { "time": 1.8333, "x": -1.6, "y": 5.34 },
  5201. { "time": 2, "x": 0, "y": 0 }
  5202. ],
  5203. "scale": [
  5204. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5205. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5206. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  5207. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5208. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5209. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  5210. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5211. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  5212. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5213. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5214. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  5215. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  5216. { "time": 2, "x": 1, "y": 1 }
  5217. ]
  5218. },
  5219. "bone38": {
  5220. "rotate": [
  5221. { "time": 0, "angle": 10.27 },
  5222. { "time": 0.1667, "angle": 37.58 },
  5223. { "time": 0.3333, "angle": 37.27 },
  5224. { "time": 0.5, "angle": 10.27, "curve": "stepped" },
  5225. { "time": 0.6667, "angle": 10.27, "curve": "stepped" },
  5226. { "time": 0.8333, "angle": 10.27, "curve": "stepped" },
  5227. { "time": 1, "angle": 10.27 },
  5228. { "time": 1.1667, "angle": 37.58 },
  5229. { "time": 1.3333, "angle": 37.27 },
  5230. { "time": 1.5, "angle": 10.27, "curve": "stepped" },
  5231. { "time": 1.6667, "angle": 10.27, "curve": "stepped" },
  5232. { "time": 1.8333, "angle": 10.27, "curve": "stepped" },
  5233. { "time": 2, "angle": 10.27 }
  5234. ],
  5235. "translate": [
  5236. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5237. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5238. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  5239. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5240. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  5241. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  5242. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5243. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  5244. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  5245. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5246. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  5247. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  5248. { "time": 2, "x": 0, "y": 0 }
  5249. ],
  5250. "scale": [
  5251. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5252. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5253. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  5254. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5255. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5256. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  5257. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5258. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  5259. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5260. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5261. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  5262. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  5263. { "time": 2, "x": 1, "y": 1 }
  5264. ]
  5265. },
  5266. "bone39": {
  5267. "rotate": [
  5268. { "time": 0, "angle": 0, "curve": "stepped" },
  5269. { "time": 0.1667, "angle": 0 },
  5270. { "time": 0.3333, "angle": 1.47 },
  5271. { "time": 0.5, "angle": 0, "curve": "stepped" },
  5272. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  5273. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  5274. { "time": 1, "angle": 0, "curve": "stepped" },
  5275. { "time": 1.1667, "angle": 0 },
  5276. { "time": 1.3333, "angle": 1.47 },
  5277. { "time": 1.5, "angle": 0, "curve": "stepped" },
  5278. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  5279. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  5280. { "time": 2, "angle": 0 }
  5281. ],
  5282. "translate": [
  5283. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5284. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5285. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  5286. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5287. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  5288. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  5289. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5290. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  5291. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  5292. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5293. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  5294. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  5295. { "time": 2, "x": 0, "y": 0 }
  5296. ],
  5297. "scale": [
  5298. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5299. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5300. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  5301. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5302. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5303. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  5304. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5305. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  5306. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5307. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5308. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  5309. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  5310. { "time": 2, "x": 1, "y": 1 }
  5311. ]
  5312. },
  5313. "bone40": {
  5314. "rotate": [
  5315. { "time": 0, "angle": 345.45 },
  5316. { "time": 0.1667, "angle": 351.05 },
  5317. { "time": 0.3333, "angle": 20.94 },
  5318. { "time": 0.5, "angle": 20.97 },
  5319. { "time": 0.6667, "angle": 17.67 },
  5320. { "time": 0.8333, "angle": 351.15 },
  5321. { "time": 1, "angle": 353.66 },
  5322. { "time": 1.1667, "angle": 351.05 },
  5323. { "time": 1.3333, "angle": 20.94 },
  5324. { "time": 1.5, "angle": 20.97 },
  5325. { "time": 1.6667, "angle": 17.67 },
  5326. { "time": 1.8333, "angle": 351.15 },
  5327. { "time": 2, "angle": 345.45 }
  5328. ],
  5329. "translate": [
  5330. { "time": 0, "x": 0, "y": 0 },
  5331. { "time": 0.1667, "x": 1.41, "y": -5.63 },
  5332. { "time": 0.3333, "x": 2.83, "y": -11.25 },
  5333. { "time": 0.5, "x": 4.24, "y": -16.88 },
  5334. { "time": 0.6667, "x": 3.54, "y": -8.24 },
  5335. { "time": 0.8333, "x": 1.41, "y": -5.63 },
  5336. { "time": 1, "x": 0, "y": 0 },
  5337. { "time": 1.1667, "x": 1.41, "y": -5.63 },
  5338. { "time": 1.3333, "x": 2.83, "y": -11.25 },
  5339. { "time": 1.5, "x": 4.24, "y": -16.88 },
  5340. { "time": 1.6667, "x": 3.54, "y": -8.24 },
  5341. { "time": 1.8333, "x": 1.41, "y": -5.63 },
  5342. { "time": 2, "x": 0, "y": 0 }
  5343. ],
  5344. "scale": [
  5345. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5346. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5347. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  5348. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5349. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5350. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  5351. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5352. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  5353. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5354. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5355. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  5356. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  5357. { "time": 2, "x": 1, "y": 1 }
  5358. ]
  5359. },
  5360. "bone41": {
  5361. "rotate": [
  5362. { "time": 0, "angle": 0 },
  5363. { "time": 0.1667, "angle": 11.21 },
  5364. { "time": 0.3333, "angle": 0 },
  5365. { "time": 0.5, "angle": 9.49 },
  5366. { "time": 0.6667, "angle": 22.92 },
  5367. { "time": 0.8333, "angle": 48.66 },
  5368. { "time": 1, "angle": 11.6 },
  5369. { "time": 1.1667, "angle": 11.21 },
  5370. { "time": 1.3333, "angle": 0 },
  5371. { "time": 1.5, "angle": 9.49 },
  5372. { "time": 1.6667, "angle": 22.92 },
  5373. { "time": 1.8333, "angle": 48.66 },
  5374. { "time": 2, "angle": 0 }
  5375. ],
  5376. "translate": [
  5377. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5378. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5379. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  5380. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5381. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  5382. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  5383. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5384. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  5385. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  5386. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5387. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  5388. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  5389. { "time": 2, "x": 0, "y": 0 }
  5390. ],
  5391. "scale": [
  5392. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5393. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5394. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  5395. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5396. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5397. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  5398. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5399. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  5400. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5401. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5402. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  5403. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  5404. { "time": 2, "x": 1, "y": 1 }
  5405. ]
  5406. },
  5407. "bone42": {
  5408. "rotate": [
  5409. { "time": 0, "angle": 0, "curve": "stepped" },
  5410. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  5411. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  5412. { "time": 0.5, "angle": 0 },
  5413. { "time": 0.8333, "angle": -15.61 },
  5414. { "time": 1, "angle": 0, "curve": "stepped" },
  5415. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  5416. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  5417. { "time": 1.5, "angle": 0 },
  5418. { "time": 1.8333, "angle": -15.61 },
  5419. { "time": 2, "angle": 0 }
  5420. ],
  5421. "translate": [
  5422. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5423. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5424. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  5425. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5426. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  5427. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5428. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  5429. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  5430. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5431. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  5432. { "time": 2, "x": 0, "y": 0 }
  5433. ],
  5434. "scale": [
  5435. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5436. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5437. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  5438. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5439. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  5440. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5441. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  5442. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5443. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5444. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  5445. { "time": 2, "x": 1, "y": 1 }
  5446. ]
  5447. },
  5448. "bone43": {
  5449. "rotate": [
  5450. { "time": 0, "angle": 0, "curve": "stepped" },
  5451. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  5452. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  5453. { "time": 0.5, "angle": 0, "curve": "stepped" },
  5454. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  5455. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  5456. { "time": 1, "angle": 0, "curve": "stepped" },
  5457. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  5458. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  5459. { "time": 1.5, "angle": 0, "curve": "stepped" },
  5460. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  5461. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  5462. { "time": 2, "angle": 0 }
  5463. ],
  5464. "translate": [
  5465. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5466. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5467. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  5468. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5469. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  5470. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  5471. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5472. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  5473. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  5474. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5475. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  5476. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  5477. { "time": 2, "x": 0, "y": 0 }
  5478. ],
  5479. "scale": [
  5480. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5481. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5482. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  5483. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5484. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5485. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  5486. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5487. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  5488. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5489. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5490. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  5491. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  5492. { "time": 2, "x": 1, "y": 1 }
  5493. ]
  5494. },
  5495. "bone44": {
  5496. "rotate": [
  5497. { "time": 0, "angle": 0, "curve": "stepped" },
  5498. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  5499. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  5500. { "time": 0.5, "angle": 0, "curve": "stepped" },
  5501. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  5502. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  5503. { "time": 1, "angle": 0, "curve": "stepped" },
  5504. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  5505. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  5506. { "time": 1.5, "angle": 0, "curve": "stepped" },
  5507. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  5508. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  5509. { "time": 2, "angle": 0 }
  5510. ],
  5511. "translate": [
  5512. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5513. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5514. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  5515. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5516. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  5517. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  5518. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5519. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  5520. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  5521. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5522. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  5523. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  5524. { "time": 2, "x": 0, "y": 0 }
  5525. ],
  5526. "scale": [
  5527. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5528. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5529. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  5530. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5531. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5532. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  5533. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5534. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  5535. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5536. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5537. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  5538. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  5539. { "time": 2, "x": 1, "y": 1 }
  5540. ]
  5541. }
  5542. },
  5543. "deform": {
  5544. "default": {
  5545. "qunzi": {
  5546. "qunzi": [
  5547. { "time": 0 },
  5548. {
  5549. "time": 0.1667,
  5550. "vertices": [ 0.24998, -1.47495, 0.28348, -1.46888, 0.34088, -2.01131, 0.38657, -2.00303, 0.31816, -1.87722, 0.36079, -1.86949, 0.59087, -3.48628, 0.67004, -3.47193, 0.56814, -3.3522, 0.64429, -3.3384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.49131, 2.89865, -0.55708, 2.88673, -0.49131, 2.89865, -0.55708, 2.88673, -0.16787, 2.45648, -0.22366, 2.45203, -0.36365, 2.14539, -0.4123, 2.13658, -0.13637, 0.80451, -0.15461, 0.80121, -0.18182, 1.07269, -0.20615, 1.06828 ]
  5551. },
  5552. { "time": 0.5 },
  5553. {
  5554. "time": 0.6667,
  5555. "vertices": [ 0.24998, -1.47495, 0.28348, -1.46888, 0.34088, -2.01131, 0.38657, -2.00303, 0.31816, -1.87722, 0.36079, -1.86949, 0.59087, -3.48628, 0.67004, -3.47193, 0.56814, -3.3522, 0.64429, -3.3384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.49131, 2.89865, -0.55708, 2.88673, -0.49131, 2.89865, -0.55708, 2.88673, -0.16787, 2.45648, -0.22366, 2.45203, -0.36365, 2.14539, -0.4123, 2.13658, -0.13637, 0.80451, -0.15461, 0.80121, -0.18182, 1.07269, -0.20615, 1.06828 ]
  5556. },
  5557. { "time": 1 },
  5558. {
  5559. "time": 1.1667,
  5560. "vertices": [ 0.24998, -1.47495, 0.28348, -1.46888, 0.34088, -2.01131, 0.38657, -2.00303, 0.31816, -1.87722, 0.36079, -1.86949, 0.59087, -3.48628, 0.67004, -3.47193, 0.56814, -3.3522, 0.64429, -3.3384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.49131, 2.89865, -0.55708, 2.88673, -0.49131, 2.89865, -0.55708, 2.88673, -0.16787, 2.45648, -0.22366, 2.45203, -0.36365, 2.14539, -0.4123, 2.13658, -0.13637, 0.80451, -0.15461, 0.80121, -0.18182, 1.07269, -0.20615, 1.06828 ]
  5561. },
  5562. { "time": 1.5 },
  5563. {
  5564. "time": 1.6667,
  5565. "vertices": [ 0.24998, -1.47495, 0.28348, -1.46888, 0.34088, -2.01131, 0.38657, -2.00303, 0.31816, -1.87722, 0.36079, -1.86949, 0.59087, -3.48628, 0.67004, -3.47193, 0.56814, -3.3522, 0.64429, -3.3384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.49131, 2.89865, -0.55708, 2.88673, -0.49131, 2.89865, -0.55708, 2.88673, -0.16787, 2.45648, -0.22366, 2.45203, -0.36365, 2.14539, -0.4123, 2.13658, -0.13637, 0.80451, -0.15461, 0.80121, -0.18182, 1.07269, -0.20615, 1.06828 ]
  5566. },
  5567. { "time": 2 }
  5568. ]
  5569. },
  5570. "shuyao": {
  5571. "shuyao": [
  5572. {
  5573. "time": 0,
  5574. "vertices": [ 0.00607, 2.77511, -0.27316, 6.0108, 0, 0, 3.31154, 0.15052, -0.27316, 6.0108, -0.42549, 3.54837, -0.27316, 6.0108 ]
  5575. },
  5576. {
  5577. "time": 0.5,
  5578. "offset": 4,
  5579. "vertices": [ 0.09594, -2.10981, 3.40748, -1.95929 ]
  5580. },
  5581. {
  5582. "time": 1,
  5583. "vertices": [ 0.00607, 2.77511, -0.27316, 6.0108, 0, 0, 3.31154, 0.15052, -0.27316, 6.0108, -0.42549, 3.54837, -0.27316, 6.0108 ]
  5584. },
  5585. {
  5586. "time": 1.5,
  5587. "offset": 4,
  5588. "vertices": [ 0.09594, -2.10981, 3.40748, -1.95929 ]
  5589. },
  5590. {
  5591. "time": 2,
  5592. "vertices": [ 0.00607, 2.77511, -0.27316, 6.0108, 0, 0, 3.31154, 0.15052, -0.27316, 6.0108, -0.42549, 3.54837, -0.27316, 6.0108 ]
  5593. }
  5594. ]
  5595. },
  5596. "toufa8": {
  5597. "toufa8": [
  5598. {
  5599. "time": 0,
  5600. "vertices": [ 0.92887, 3.36991, -0.28065, 5.78093 ]
  5601. },
  5602. {
  5603. "time": 0.5,
  5604. "vertices": [ -0.1218, -5.87908, 0.37101, -5.47408, 1.22852, 3.15022, 3.45831, 2.42293 ]
  5605. },
  5606. {
  5607. "time": 1,
  5608. "vertices": [ 0.92887, 3.36991, -0.28065, 5.78093 ]
  5609. },
  5610. {
  5611. "time": 1.5,
  5612. "vertices": [ -0.1218, -5.87908, 0.37101, -5.47408, 1.22852, 3.15022, 3.45831, 2.42293 ]
  5613. },
  5614. {
  5615. "time": 2,
  5616. "vertices": [ 0.92887, 3.36991, -0.28065, 5.78093 ]
  5617. }
  5618. ]
  5619. },
  5620. "xiong": {
  5621. "xiong": [
  5622. {
  5623. "time": 0,
  5624. "offset": 2,
  5625. "vertices": [ -0.46925, 2.39815, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.37972, 4.33137, 0.08154, 4.25737, 0.52453, 1.52768, 0, 0, 0.36541, 1.01982, 0.12183, 3.79712 ]
  5626. },
  5627. {
  5628. "time": 0.5,
  5629. "offset": 2,
  5630. "vertices": [ 0.35611, -1.95137, 0, 0, 0, 0, 0, 0, 0, 0, 0.13754, -1.56698, 0, 0, 0.13754, -1.56698, 0.37885, -0.13843, 0, 0, 0, 0, -0.49815, -0.72634, 0.45248, 1.76829 ]
  5631. },
  5632. {
  5633. "time": 1,
  5634. "offset": 2,
  5635. "vertices": [ -0.46925, 2.39815, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.37972, 4.33137, 0.08154, 4.25737, 0.52453, 1.52768, 0, 0, 0.36541, 1.01982, 0.12183, 3.79712 ]
  5636. },
  5637. {
  5638. "time": 1.5,
  5639. "offset": 2,
  5640. "vertices": [ 0.35611, -1.95137, 0, 0, 0, 0, 0, 0, 0, 0, 0.13754, -1.56698, 0, 0, 0.13754, -1.56698, 0.37885, -0.13843, 0, 0, 0, 0, -0.49815, -0.72634, 0.45248, 1.76829 ]
  5641. },
  5642. {
  5643. "time": 2,
  5644. "offset": 2,
  5645. "vertices": [ -0.46925, 2.39815, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.37972, 4.33137, 0.08154, 4.25737, 0.52453, 1.52768, 0, 0, 0.36541, 1.01982, 0.12183, 3.79712 ]
  5646. }
  5647. ]
  5648. }
  5649. }
  5650. }
  5651. }
  5652. }
  5653. }