42205.json 314 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592
  1. {
  2. "skeleton": { "hash": "2eQRLsmnMmGAIxU47Qdzd+eP3HU", "spine": "3.6.53", "width": 214.74, "height": 223.45, "images": "./images/" },
  3. "bones": [
  4. { "name": "root" },
  5. { "name": "bone", "parent": "root", "x": -1.12, "y": 64.18 },
  6. { "name": "bone2", "parent": "bone", "length": 16.23, "rotation": 88.9, "x": 0.31, "y": 2.18 },
  7. { "name": "bone3", "parent": "bone2", "length": 20.32, "rotation": -2.42, "x": 16.23 },
  8. { "name": "bone4", "parent": "bone3", "length": 19.71, "rotation": 157.72, "x": 16.05, "y": 7.87, "color": "3b98ffff" },
  9. { "name": "bone5", "parent": "bone4", "length": 14.65, "rotation": -1.1, "x": 19.71, "color": "3b98ffff" },
  10. { "name": "bone6", "parent": "bone5", "length": 13.26, "rotation": -1.17, "x": 14.65, "color": "3b98ffff" },
  11. { "name": "bone7", "parent": "bone3", "length": 20.39, "rotation": -154.58, "x": 17.97, "y": -13.69 },
  12. { "name": "bone8", "parent": "bone7", "length": 15.22, "rotation": 8.93, "x": 20.21, "y": 0.07 },
  13. { "name": "bone9", "parent": "bone8", "length": 9.63, "rotation": -9.47, "x": 15.22 },
  14. { "name": "bone10", "parent": "bone", "length": 10.34, "rotation": -88.92, "x": -0.01, "y": -2.66 },
  15. { "name": "bone11", "parent": "bone", "length": 16.06, "rotation": -100.49, "x": -6.64, "y": -13.38 },
  16. { "name": "bone12", "parent": "bone11", "length": 16.99, "rotation": 7.2, "x": 18.47, "y": -0.15 },
  17. { "name": "bone13", "parent": "bone12", "length": 12.82, "rotation": -73.52, "x": 20.92, "y": -0.36 },
  18. { "name": "bone14", "parent": "bone", "length": 16.26, "rotation": -84.49, "x": 14.81, "y": -12.99, "color": "4069f6ff" },
  19. { "name": "bone15", "parent": "bone14", "length": 17.75, "rotation": -3.62, "x": 20.53, "y": -0.41, "color": "4069f6ff" },
  20. { "name": "bone16", "parent": "bone15", "length": 13.66, "rotation": -82.02, "x": 20.85, "y": -0.88, "color": "4069f6ff" },
  21. { "name": "bone17", "parent": "bone2", "length": 11.64, "rotation": 18.11, "x": -7.26, "y": -17.02 },
  22. { "name": "bone18", "parent": "bone3", "length": 12.54, "rotation": 176.32, "x": 16.09, "y": 7.07 },
  23. { "name": "bone19", "parent": "bone18", "length": 11.07, "rotation": 1.08, "x": 12.54 },
  24. { "name": "bone20", "parent": "bone19", "length": 10.43, "rotation": -1.1, "x": 11.07 },
  25. { "name": "bone21", "parent": "bone3", "length": 11.93, "rotation": -174.59, "x": 17.29, "y": -8.21 },
  26. { "name": "bone22", "parent": "bone21", "length": 8.23, "rotation": 7.27, "x": 14.94, "y": -0.1 },
  27. { "name": "bone23", "parent": "bone22", "length": 9.47, "rotation": 5.26, "x": 10.36, "y": 0.05 },
  28. { "name": "bone24", "parent": "bone3", "length": 44.84, "rotation": 6.76, "x": 27.82, "y": 0.32 },
  29. { "name": "bone25", "parent": "bone24", "length": 9.8, "rotation": -0.66, "x": 13.8, "y": 14.09 },
  30. { "name": "bone26", "parent": "bone24", "length": 12.55, "rotation": -0.72, "x": 12.04, "y": -13.02 },
  31. { "name": "bone27", "parent": "bone24", "length": 4.07, "rotation": -1.69, "x": 15.64, "y": 3.74 },
  32. { "name": "bone28", "parent": "bone24", "length": 4.73, "rotation": -1.9, "x": 28.21, "y": 3.91 },
  33. { "name": "bone29", "parent": "bone24", "length": 11.88, "rotation": 49.77, "x": 61.98, "y": -11.52 },
  34. { "name": "bone30", "parent": "bone29", "length": 12.93, "rotation": 52.15, "x": 12.22, "y": 0.42 },
  35. { "name": "bone31", "parent": "bone30", "length": 12.77, "rotation": 23.23, "x": 12.93 },
  36. { "name": "bone32", "parent": "bone31", "length": 13.44, "rotation": 14.08, "x": 12.77 },
  37. { "name": "bone33", "parent": "bone32", "length": 13.58, "rotation": 7.04, "x": 13.44 },
  38. { "name": "bone34", "parent": "bone33", "length": 8.57, "rotation": 8.21, "x": 13.58 },
  39. { "name": "bone35", "parent": "bone24", "length": 12.49, "rotation": -171.22, "x": 61.34, "y": -22.66 },
  40. { "name": "bone36", "parent": "bone35", "length": 9.82, "rotation": -23.47, "x": 12.87, "y": -0.08 },
  41. { "name": "bone37", "parent": "bone36", "length": 11.15, "rotation": -20.19, "x": 10.45, "y": 0.13 },
  42. { "name": "bone38", "parent": "bone24", "length": 17.97, "rotation": -10.1, "x": 7.55, "y": -33.67 },
  43. { "name": "bone39", "parent": "bone24", "length": 15.93, "rotation": -96.33, "x": 61.21, "y": -44.45 },
  44. { "name": "bone40", "parent": "bone39", "length": 12.92, "rotation": -41.23, "x": 15.94, "y": -0.21 },
  45. { "name": "bone41", "parent": "bone40", "length": 15.02, "rotation": -32.43, "x": 13.23 },
  46. { "name": "bone42", "parent": "bone41", "length": 18.05, "rotation": -34.92, "x": 15.02 },
  47. { "name": "bone43", "parent": "bone42", "length": 18.59, "rotation": -27.08, "x": 18.05 },
  48. { "name": "bone44", "parent": "bone43", "length": 14.61, "rotation": 15.76, "x": 18.89, "y": 0.02 },
  49. { "name": "bone45", "parent": "bone44", "length": 11.64, "rotation": 37.22, "x": 14.79, "y": 0.12 },
  50. { "name": "bone46", "parent": "bone45", "length": 9.2, "rotation": 48.36, "x": 11.64 },
  51. { "name": "bone47", "parent": "bone46", "length": 12.24, "rotation": 55.84, "x": 9.37, "y": 0.13 },
  52. { "name": "bone48", "parent": "bone24", "length": 20.87, "rotation": -138.23, "x": 31.47, "y": -28.87 },
  53. { "name": "bone49", "parent": "bone24", "length": 12.48, "rotation": -2.45, "x": 31.55, "y": -39.98 },
  54. { "name": "bone50", "parent": "bone24", "length": 13.52, "rotation": -37.93, "x": 66.16, "y": -23.73 },
  55. { "name": "bone51", "parent": "bone24", "length": 14.4, "rotation": 12.62, "x": 71.42, "y": 17.4 },
  56. { "name": "bone52", "parent": "bone", "length": 13.77, "rotation": 85.68, "x": 81.94, "y": -8.22 },
  57. { "name": "bone53", "parent": "bone", "x": -62.84, "y": 9.39 },
  58. { "name": "bone54", "parent": "bone53", "length": 32.66, "rotation": 87.73, "x": -10.88, "y": -0.26 },
  59. { "name": "bone55", "parent": "bone53", "x": -17.35, "y": 17.35 },
  60. { "name": "bone56", "parent": "bone24", "length": 9.46, "rotation": 168.23, "x": 19.19, "y": 23.53 },
  61. { "name": "bone57", "parent": "bone56", "length": 9.82, "rotation": 20.91, "x": 10.39, "y": 0.14 },
  62. { "name": "bone58", "parent": "bone24", "length": 12, "rotation": 162.66, "x": 21.78, "y": -31.67 },
  63. { "name": "bone59", "parent": "bone58", "length": 10, "rotation": -7.97, "x": 14.55, "y": 0.26 },
  64. { "name": "bone60", "parent": "bone2", "length": 9.46, "rotation": -1.44, "x": -5.55, "y": 1.51 },
  65. { "name": "bone61", "parent": "bone", "length": 35.24, "rotation": 131.19, "x": -68.01, "y": 89.12 }
  66. ],
  67. "slots": [
  68. { "name": "erduo", "bone": "bone24", "attachment": "erduo" },
  69. { "name": "biaoqing_1", "bone": "bone61", "attachment": "biaoqing_1" },
  70. { "name": "zuoshou", "bone": "bone4", "attachment": "zuoshou" },
  71. { "name": "kuzi", "bone": "bone10", "attachment": "kuzi" },
  72. { "name": "youjiao", "bone": "bone14", "attachment": "youjiao" },
  73. { "name": "zuojiao", "bone": "bone11", "attachment": "zuojiao" },
  74. { "name": "chenyi", "bone": "bone2", "attachment": "chenyi" },
  75. { "name": "xingxing", "bone": "bone60", "attachment": "xingxing" },
  76. { "name": "waitaoy", "bone": "bone21", "attachment": "waitaoy" },
  77. { "name": "waitaoz", "bone": "bone18", "attachment": "waitaoz" },
  78. { "name": "youxiji", "bone": "bone17", "attachment": "youxiji" },
  79. { "name": "youshou", "bone": "bone7", "attachment": "youshou" },
  80. { "name": "toufa6", "bone": "bone56", "attachment": "toufa6" },
  81. { "name": "tou", "bone": "bone24", "attachment": "tou" },
  82. { "name": "youyan", "bone": "bone26", "attachment": "youyan" },
  83. { "name": "zuoyan", "bone": "bone25", "attachment": "zuoyan" },
  84. { "name": "biyan", "bone": "bone27", "attachment": "biyan" },
  85. { "name": "meimao", "bone": "bone28", "attachment": "meimao" },
  86. { "name": "yanjing", "bone": "bone24", "attachment": "yanjing" },
  87. { "name": "toufa5", "bone": "bone39", "attachment": "toufa5" },
  88. { "name": "touga4", "bone": "bone24", "attachment": "touga4" },
  89. { "name": "toufa3", "bone": "bone24", "attachment": "toufa3" },
  90. { "name": "toufa2", "bone": "bone48", "attachment": "toufa2" },
  91. { "name": "toufa8", "bone": "bone58", "attachment": "toufa8" },
  92. { "name": "erji 3", "bone": "bone38", "attachment": "erji 3" },
  93. { "name": "erji2", "bone": "bone50", "attachment": "erji2" },
  94. { "name": "erji", "bone": "bone51", "attachment": "erji" },
  95. { "name": "toufa1", "bone": "bone29", "attachment": "toufa1" },
  96. { "name": "xin3", "bone": "bone52" },
  97. { "name": "toufa7", "bone": "bone35", "attachment": "toufa7" },
  98. { "name": "diannao1", "bone": "bone53", "attachment": "diannao1" },
  99. { "name": "dou", "bone": "bone55", "attachment": "dou" },
  100. { "name": "dou2", "bone": "bone55", "attachment": "dou2" },
  101. { "name": "dou3", "bone": "bone55", "attachment": "dou3" },
  102. { "name": "pinmu", "bone": "bone54", "attachment": "pinmu" },
  103. { "name": "diannao_x", "bone": "bone53", "attachment": "diannao_x", "blend": "additive" }
  104. ],
  105. "skins": {
  106. "default": {
  107. "biaoqing_1": {
  108. "biaoqing_1": { "x": 35.11, "y": -5.19, "rotation": -131.19, "width": 87, "height": 83 }
  109. },
  110. "biyan": {
  111. "biyan": { "x": 2.33, "y": -3.26, "rotation": -91.55, "width": 48, "height": 8 }
  112. },
  113. "chenyi": {
  114. "chenyi": {
  115. "type": "mesh",
  116. "uvs": [ 0.46701, 1, 0.1716, 1, 0, 1, 0, 0.67901, 0, 0.61814, 0, 0.54207, 0, 0.4774, 0, 0, 0.20026, 0, 0.35568, 0, 0.18483, 0.54016, 0.39316, 0.43746, 0.40574, 0.53334, 0.18274, 0.6129, 0.41551, 0.60776, 0.18663, 0.47697, 0.18081, 0.67977 ],
  117. "triangles": [ 9, 12, 11, 15, 7, 8, 8, 9, 11, 15, 8, 11, 6, 7, 15, 9, 0, 12, 15, 11, 12, 10, 15, 12, 10, 6, 15, 5, 6, 10, 0, 14, 12, 13, 5, 10, 13, 10, 12, 13, 12, 14, 4, 5, 13, 16, 3, 4, 13, 16, 4, 1, 2, 3, 16, 1, 3, 16, 13, 14, 0, 16, 14, 1, 16, 0 ],
  118. "vertices": [ 2, 2, -7.68, -25.53, 0.9779, 3, -22.81, -26.51, 0.0221, 1, 2, -8.18, 0.46, 1, 1, 2, -8.47, 15.56, 1, 2, 2, 7.89, 15.88, 0.95914, 3, -9, 15.51, 0.04086, 2, 2, 11, 15.94, 0.88587, 3, -5.9, 15.7, 0.11413, 2, 2, 14.88, 16.01, 0.72471, 3, -2.03, 15.94, 0.27529, 2, 2, 18.17, 16.07, 0.54562, 3, 1.27, 16.14, 0.45438, 2, 2, 42.52, 16.54, 4.0E-5, 3, 25.57, 17.64, 0.99996, 1, 3, 26.65, 0.05, 1, 1, 3, 27.49, -13.6, 1, 2, 2, 15.29, -0.25, 0.99907, 3, -0.93, -0.29, 9.3E-4, 2, 2, 20.88, -18.48, 0.25104, 3, 5.42, -18.26, 0.74896, 2, 2, 16.01, -19.68, 0.45844, 3, 0.61, -19.67, 0.54156, 2, 2, 11.57, -0.14, 0.99888, 3, -4.64, -0.33, 0.00112, 2, 2, 12.23, -20.61, 0.61916, 3, -3.12, -20.76, 0.38084, 2, 2, 18.51, -0.35, 0.00403, 3, 2.3, -0.25, 0.99597, 2, 2, 8.16, -0.03, 0.9999, 3, -8.06, -0.37, 1.0E-4 ],
  119. "hull": 10,
  120. "edges": [ 2, 4, 14, 16, 0, 2, 16, 18, 22, 18, 18, 0, 10, 20, 24, 22, 20, 24, 8, 10, 26, 20, 8, 26, 0, 28, 28, 24, 26, 28, 10, 12, 12, 14, 16, 30, 30, 20, 12, 30, 30, 22, 4, 6, 6, 8, 2, 32, 32, 26, 6, 32 ],
  121. "width": 88,
  122. "height": 51
  123. }
  124. },
  125. "diannao1": {
  126. "diannao1": { "x": 3.93, "y": -2.88, "width": 57, "height": 27 }
  127. },
  128. "diannao_x": {
  129. "diannao_x": { "x": 4.43, "y": -2.11, "width": 57, "height": 27 }
  130. },
  131. "dou": {
  132. "dou": { "x": 4.78, "y": 0.27, "width": 18, "height": 16 }
  133. },
  134. "dou2": {
  135. "dou2": { "x": 15.28, "y": -4.23, "width": 9, "height": 9 }
  136. },
  137. "dou3": {
  138. "dou3": { "x": 23.78, "y": -7.23, "width": 10, "height": 11 }
  139. },
  140. "erduo": {
  141. "erduo": { "x": 18.19, "y": 23.94, "rotation": -93.23, "width": 19, "height": 20 }
  142. },
  143. "erji": {
  144. "erji": {
  145. "type": "mesh",
  146. "uvs": [ 1, 1, 0.4713, 1, 0, 1, 0, 0, 0.3319, 0, 1, 0 ],
  147. "triangles": [ 2, 3, 4, 1, 4, 5, 2, 4, 1, 1, 5, 0 ],
  148. "vertices": [ 1, 51, -18.72, -12, 1, 1, 51, -14.39, 3.26, 1, 1, 51, -10.52, 16.86, 1, 1, 51, 22.18, 7.57, 1, 1, 51, 19.46, -2.01, 1, 1, 51, 13.99, -21.29, 1 ],
  149. "hull": 6,
  150. "edges": [ 4, 6, 0, 10, 6, 8, 8, 10, 0, 2, 2, 4, 8, 2 ],
  151. "width": 30,
  152. "height": 34
  153. }
  154. },
  155. "erji 3": {
  156. "erji 3": { "x": 14.26, "y": 1.84, "rotation": -83.13, "width": 27, "height": 44 }
  157. },
  158. "erji2": {
  159. "erji2": { "x": -3.24, "y": 0.3, "rotation": -55.3, "width": 52, "height": 45 }
  160. },
  161. "kuzi": {
  162. "kuzi": {
  163. "type": "mesh",
  164. "uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
  165. "triangles": [ 1, 2, 3, 1, 3, 0 ],
  166. "vertices": [ 15.3, 25.32, 14.5, -16.68, -11.49, -16.19, -10.7, 25.81 ],
  167. "hull": 4,
  168. "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
  169. "width": 42,
  170. "height": 26
  171. }
  172. },
  173. "meimao": {
  174. "meimao": { "x": 2.31, "y": -2.63, "rotation": -91.33, "width": 37, "height": 7 }
  175. },
  176. "pinmu": {
  177. "pinmu": {
  178. "type": "mesh",
  179. "uvs": [ 1, 0.21023, 0.86947, 1, 0, 0.65903, 0, 0 ],
  180. "triangles": [ 2, 3, 0, 1, 2, 0 ],
  181. "vertices": [ 30.48, -30.12, -17.11, -25.74, 1.67, 16.77, 41.18, 18.34 ],
  182. "hull": 4,
  183. "edges": [ 4, 6, 2, 4, 6, 0, 0, 2 ],
  184. "width": 48,
  185. "height": 60
  186. }
  187. },
  188. "tou": {
  189. "tou": {
  190. "type": "mesh",
  191. "uvs": [ 1, 0.72889, 0.76375, 1, 0.18576, 1, 0.10445, 0, 1, 0 ],
  192. "triangles": [ 3, 4, 0, 2, 3, 0, 1, 2, 0 ],
  193. "vertices": [ 12.73, -41.36, -8.32, -19.82, -5.51, 29.81, 76.75, 32.17, 72.41, -44.73 ],
  194. "hull": 5,
  195. "edges": [ 6, 8, 6, 4, 0, 8, 2, 4, 0, 2 ],
  196. "width": 86,
  197. "height": 82
  198. }
  199. },
  200. "toufa1": {
  201. "toufa1": {
  202. "type": "mesh",
  203. "uvs": [ 0.99999, 0.31789, 1, 0.42804, 0.79298, 0.38945, 0.66887, 0.44932, 0.58243, 0.55604, 0.50722, 0.68811, 0.42336, 0.83536, 0.32961, 1, 0, 1, 0, 0.73684, 0, 0.53245, 1.0E-5, 0.33512, 0.18767, 0.13228, 0.39201, 0, 0.61069, 1.0E-5, 1, 0, 0.67867, 0.11584, 0.50973, 0.14089, 0.34982, 0.26167, 0.20479, 0.42939, 0.10601, 0.59704, 0.06041, 0.77037 ],
  204. "triangles": [ 21, 9, 20, 21, 20, 6, 8, 9, 21, 7, 21, 6, 8, 21, 7, 10, 11, 19, 20, 10, 19, 20, 19, 5, 9, 10, 20, 6, 20, 5, 11, 12, 19, 5, 19, 4, 18, 12, 13, 18, 13, 17, 19, 12, 18, 18, 17, 3, 4, 18, 3, 19, 18, 4, 17, 13, 14, 17, 14, 16, 3, 17, 16, 16, 14, 15, 0, 16, 15, 2, 16, 0, 2, 0, 1, 3, 16, 2 ],
  205. "vertices": [ 4, 29, -14.09, -0.52, 0.99984, 30, -16.89, 20.2, 7.0E-5, 31, -19.43, 30.32, 8.0E-5, 32, -23.86, 37.24, 1.0E-5, 1, 29, -18.33, 5.11, 1, 6, 29, -6.1, 11.23, 0.76457, 30, -2.7, 21.1, 0.10996, 31, -6.04, 25.55, 0.09117, 32, -12.03, 29.36, 0.02848, 33, -21.68, 32.26, 0.00446, 34, -30.29, 36.97, 0.00135, 6, 29, -1.96, 19.15, 0.31062, 30, 6.09, 22.69, 0.18864, 31, 2.66, 23.55, 0.28813, 32, -4.08, 25.3, 0.14864, 33, -14.28, 27.26, 0.04199, 34, -23.69, 30.95, 0.02199, 6, 29, -1.58, 27.98, 0.08591, 30, 13.3, 27.81, 0.08281, 31, 11.31, 25.41, 0.2768, 32, 4.76, 25, 0.29294, 33, -5.55, 25.88, 0.15277, 34, -15.24, 28.35, 0.10877, 6, 29, -2.76, 37.67, 0.0151, 30, 20.23, 34.69, 0.01786, 31, 20.39, 29, 0.12824, 32, 14.44, 26.28, 0.2421, 33, 4.22, 25.96, 0.26601, 34, -5.56, 27.03, 0.33068, 6, 29, -4.08, 48.48, 5.3E-4, 30, 27.95, 42.36, 0.00105, 31, 30.51, 33, 0.03466, 32, 25.24, 27.7, 0.09156, 33, 15.1, 26.04, 0.18882, 34, 5.23, 25.56, 0.68339, 4, 31, 41.83, 37.48, 0.00491, 32, 37.31, 29.28, 0.0195, 33, 27.27, 26.14, 0.05953, 34, 17.29, 23.91, 0.91605, 1, 34, 25.41, 4.09, 1, 1, 34, 9.83, -2.3, 1, 3, 32, 26.63, -5.94, 0.00271, 33, 12.36, -7.51, 0.81066, 34, -2.28, -7.26, 0.18663, 3, 31, 32.2, -9.18, 2.0E-5, 32, 16.62, -13.63, 0.28198, 33, 1.48, -13.92, 0.718, 3, 31, 14.58, -11.78, 0.51595, 32, -1.11, -11.87, 0.44326, 33, -15.9, -9.99, 0.04079, 2, 30, 15.94, -9.77, 0.25149, 31, -1.09, -10.17, 0.74851, 3, 29, 18.36, -1.55, 0.17478, 30, 2.22, -6.06, 0.82486, 31, -12.23, -1.34, 3.6E-4, 1, 29, -1.85, -16.77, 1, 4, 29, 10.37, 1.72, 0.46008, 30, -0.11, 2.25, 0.53474, 31, -11.09, 7.21, 0.00483, 32, -21.39, 12.8, 3.5E-4, 4, 29, 18.18, 9.6, 0.00236, 30, 10.91, 0.93, 0.98337, 31, -1.49, 1.65, 0.01378, 32, -13.43, 5.07, 4.9E-4, 5, 29, 21.83, 22.03, 7.3E-4, 30, 22.97, 5.68, 7.9E-4, 31, 11.46, 1.26, 0.91814, 32, -0.96, 1.54, 0.08008, 34, -26.93, 7.21, 2.6E-4, 6, 29, 22.9, 36.28, 2.0E-5, 30, 34.87, 13.57, 0, 31, 25.52, 3.82, 7.5E-4, 32, 13.29, 0.6, 0.54131, 33, -0.08, 0.62, 0.45693, 34, -13.43, 2.56, 9.8E-4, 4, 31, 37.21, 8.24, 1.4E-4, 32, 25.71, 2.05, 3.9E-4, 33, 12.43, 0.53, 0.92341, 34, -1.06, 0.69, 0.07606, 3, 31, 46.42, 15.09, 7.0E-5, 32, 36.31, 6.45, 2.3E-4, 34, 10.32, 2.15, 0.9997 ],
  206. "hull": 16,
  207. "edges": [ 14, 16, 2, 0, 0, 30, 0, 32, 32, 34, 34, 36, 36, 38, 38, 40, 26, 28, 28, 30, 28, 32, 2, 4, 4, 6, 32, 4, 26, 34, 34, 6, 22, 24, 24, 26, 24, 36, 6, 8, 36, 8, 22, 38, 8, 10, 38, 10, 20, 22, 20, 40, 10, 12, 12, 14, 40, 12, 16, 18, 18, 20, 16, 42, 42, 40, 18, 42, 42, 14 ],
  208. "width": 65,
  209. "height": 64
  210. }
  211. },
  212. "toufa2": {
  213. "toufa2": {
  214. "type": "mesh",
  215. "uvs": [ 0.51805, 0.39199, 1, 0.65903, 1, 1, 0.42472, 1, 0.13036, 0.62532 ],
  216. "triangles": [ 3, 4, 0, 3, 0, 1, 3, 1, 2 ],
  217. "vertices": [ -7.69, 8.71, 15.8, 11.81, 28.82, -1.21, 12.96, -17.08, -9.47, -10.89 ],
  218. "hull": 5,
  219. "edges": [ 4, 2, 2, 0, 0, 8, 4, 6, 8, 6 ],
  220. "width": 39,
  221. "height": 54
  222. }
  223. },
  224. "toufa3": {
  225. "toufa3": {
  226. "type": "mesh",
  227. "uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
  228. "triangles": [ 1, 2, 3, 1, 3, 0 ],
  229. "vertices": [ 45.97, -16.19, 47.5, 10.76, 62.47, 9.92, 60.95, -17.04 ],
  230. "hull": 4,
  231. "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
  232. "width": 27,
  233. "height": 15
  234. }
  235. },
  236. "toufa5": {
  237. "toufa5": {
  238. "type": "mesh",
  239. "uvs": [ 0.82231, 0.05777, 0.99999, 0.19042, 1, 0.36824, 0.99999, 0.49486, 0.85363, 0.63095, 0.71139, 0.67577, 0.56341, 0.7273, 0.49056, 0.76382, 0.42211, 0.79812, 0.40601, 0.82024, 0.38069, 0.85313, 0.42115, 0.86343, 0.46686, 0.82854, 0.55357, 0.79269, 0.73531, 0.85612, 0.74575, 0.94142, 0.59577, 0.99999, 0.38778, 1, 0.25159, 1, 0.07063, 0.93289, 0, 0.86295, 0, 0.77595, 0.06715, 0.66677, 0.25273, 0.61286, 0.36368, 0.55895, 0.42615, 0.52657, 0.48475, 0.49618, 0.46721, 0.45698, 0.45134, 0.42151, 0.41791, 0.38524, 0.33859, 0.33924, 0, 0.33242, 0, 0.13795, 0, 0, 0.69703, 0, 0.55087, 0.1533, 0.76855, 0.2863, 0.80491, 0.38359, 0.71485, 0.49718, 0.40123, 0.66506, 0.23071, 0.78789, 0.23071, 0.909, 0.45881, 0.956, 0.63737, 0.92391, 0.61699, 0.81689, 0.65349, 0.19732, 0.6228, 0.54646, 0.5213, 0.60079, 0.31284, 0.72873, 0.23071, 0.8493, 0.35642, 0.94456 ],
  240. "triangles": [ 44, 13, 14, 43, 44, 14, 13, 44, 43, 43, 14, 15, 42, 11, 12, 50, 11, 42, 43, 42, 12, 43, 12, 13, 16, 42, 43, 16, 43, 15, 17, 50, 42, 17, 42, 16, 50, 41, 10, 50, 10, 11, 18, 41, 50, 19, 41, 18, 18, 50, 17, 49, 21, 40, 49, 40, 9, 10, 49, 9, 20, 21, 49, 41, 49, 10, 19, 20, 49, 41, 19, 49, 48, 23, 39, 22, 23, 48, 7, 39, 6, 48, 39, 7, 40, 22, 48, 21, 22, 40, 8, 48, 7, 40, 48, 8, 9, 40, 8, 25, 26, 46, 47, 25, 46, 24, 25, 47, 39, 24, 47, 23, 24, 39, 5, 46, 4, 47, 46, 5, 6, 47, 5, 39, 47, 6, 3, 37, 2, 38, 26, 27, 37, 38, 27, 38, 37, 3, 46, 26, 38, 4, 38, 3, 46, 38, 4, 36, 1, 2, 37, 36, 2, 28, 45, 36, 27, 28, 36, 27, 36, 37, 45, 35, 34, 45, 34, 0, 36, 45, 0, 36, 0, 1, 29, 35, 45, 28, 29, 45, 35, 32, 33, 34, 35, 33, 30, 31, 32, 35, 30, 32, 29, 30, 35 ],
  241. "vertices": [ 3, 39, 29.27, 9.9, 0.09559, 40, 3.35, 16.39, 0.90387, 41, -17.12, 8.54, 5.4E-4, 2, 40, 19.16, 12.91, 0.55599, 41, -1.92, 14.09, 0.44401, 2, 41, 16.42, 12.25, 0.68146, 42, -5.87, 10.85, 0.31854, 3, 41, 28.31, 6.97, 0.01224, 42, 6.91, 13.33, 0.98349, 43, -15.98, 6.79, 0.00427, 3, 42, 22.51, 11.65, 0.40901, 43, -1.33, 12.41, 0.57972, 44, -16.1, 17.41, 0.01127, 3, 42, 29.38, 6.73, 0.04252, 43, 7.03, 11.15, 0.82894, 44, -8.39, 13.94, 0.12854, 3, 43, 16.06, 10.23, 0.31177, 44, 0.05, 10.59, 0.68391, 45, -5.4, 17.26, 0.00432, 4, 43, 21.25, 10.63, 0.02369, 44, 5.16, 9.57, 0.91997, 45, -1.96, 13.35, 0.0561, 47, 10.91, 17.59, 2.3E-4, 4, 44, 9.95, 8.6, 0.71108, 45, 1.28, 9.68, 0.27151, 46, 0.35, 14.18, 0.00477, 47, 6.55, 15.35, 0.01264, 4, 44, 12.29, 9.15, 0.46873, 45, 3.47, 8.71, 0.46189, 46, 1.08, 11.89, 0.02528, 47, 5.08, 13.47, 0.04409, 4, 44, 15.79, 9.92, 0.1198, 45, 6.72, 7.2, 0.54687, 46, 2.11, 8.46, 0.13259, 47, 2.82, 10.68, 0.20073, 4, 44, 15.57, 12.19, 0.02429, 45, 7.92, 9.14, 0.25666, 46, 4.36, 8.85, 0.1608, 47, 4.4, 9.05, 0.55825, 4, 44, 11.34, 12.17, 9.1E-4, 45, 4.54, 11.68, 0.08484, 46, 4.01, 13.07, 0.04494, 47, 7.7, 11.7, 0.86931, 3, 45, 1.21, 16.28, 0.03658, 46, 5.23, 18.61, 0.0062, 47, 12.97, 13.8, 0.95722, 2, 45, 8.34, 24.86, 0.00127, 47, 19.54, 4.79, 0.99873, 1, 47, 17.28, -3.63, 1, 1, 47, 8.28, -6.93, 1, 2, 46, 11.49, -3.22, 0.43188, 47, -1.59, -3.64, 0.56812, 3, 45, 21.19, -0.34, 0.01634, 46, 6.09, -7.36, 0.97687, 47, -8.05, -1.49, 0.00679, 2, 45, 13.69, -8.86, 0.77404, 46, -5.26, -7.42, 0.22596, 3, 44, 26.99, -5.5, 0.03009, 45, 6.32, -11.86, 0.96536, 46, -12.4, -3.9, 0.00455, 2, 44, 19.55, -10.33, 0.40237, 45, -2.53, -11.2, 0.59763, 2, 44, 8.38, -13.58, 0.96159, 45, -13.39, -7.03, 0.03841, 2, 43, 20.04, -8.79, 0.21782, 44, -1.28, -8.79, 0.78218, 6, 39, 9.13, -42.39, 8.0E-5, 40, 22.67, -36.21, 1.0E-4, 41, 27.39, -25.49, 1.4E-4, 42, 24.73, -13.83, 0.02359, 43, 12.25, -9.27, 0.89499, 44, -8.92, -7.13, 0.0811, 6, 39, 12.07, -38.92, 0.00188, 40, 22.59, -31.66, 0.00193, 41, 24.89, -21.7, 0.00485, 42, 20.51, -12.14, 0.13797, 43, 7.72, -9.69, 0.8496, 44, -13.39, -6.31, 0.00377, 5, 39, 14.83, -35.67, 0.01217, 40, 22.53, -27.4, 0.01181, 41, 22.54, -18.13, 0.03283, 42, 16.55, -10.57, 0.43274, 43, 3.47, -10.09, 0.51046, 5, 39, 13.74, -31.72, 0.0451, 40, 19.1, -25.15, 0.04158, 41, 18.45, -18.07, 0.11059, 42, 13.15, -12.86, 0.60124, 43, 1.5, -13.67, 0.20149, 5, 39, 12.75, -28.15, 0.10106, 40, 16.01, -23.12, 0.08566, 41, 14.74, -18.02, 0.19346, 42, 10.08, -14.93, 0.53797, 43, -0.29, -16.92, 0.08185, 5, 39, 10.88, -24.55, 0.21705, 40, 12.23, -21.64, 0.14936, 41, 10.76, -18.8, 0.24177, 42, 7.26, -17.85, 0.36909, 43, -1.47, -20.8, 0.02273, 5, 39, 6.67, -20.08, 0.52896, 40, 6.11, -21.05, 0.17345, 41, 5.28, -21.58, 0.15309, 42, 4.37, -23.27, 0.14333, 43, -1.59, -26.94, 0.00116, 4, 39, -10.28, -20.29, 0.94976, 40, -6.49, -32.38, 0.02325, 41, 0.73, -37.9, 0.01352, 42, 9.98, -39.26, 0.01347, 2, 39, -11.35, -0.49, 0.99996, 42, -8.46, -46.58, 4.0E-5, 1, 39, -12.11, 13.56, 1, 2, 39, 22.69, 15.44, 0.33618, 40, -5.24, 16.22, 0.66382, 4, 39, 16.24, -0.56, 0.34796, 40, 0.45, -0.07, 0.65198, 41, -10.75, -6.91, 4.0E-5, 42, -17.18, -20.41, 2.0E-5, 1, 41, 4.95, 0.58, 1, 2, 41, 15.03, 0.08, 0.50489, 42, -0.04, 0.07, 0.49511, 1, 42, 12.39, 0.16, 1, 2, 43, 17.97, 0.11, 1, 45, -12.33, 9.64, 0, 2, 44, 14.29, 0, 0.68651, 45, -0.47, 0.21, 0.31349, 2, 45, 11.85, -0.7, 0.53287, 46, -0.38, -0.62, 0.46713, 1, 47, 3.2, -0.51, 1, 1, 47, 12.71, -0.22, 1, 3, 45, 3.91, 19.26, 0.02326, 46, 9.25, 18.57, 0.00175, 47, 15.19, 10.46, 0.975, 1, 40, 7.26, 0.3, 1, 5, 39, 22, -40.41, 3.9E-4, 40, 31.05, -26.24, 4.0E-4, 41, 29.11, -12.59, 9.0E-4, 42, 18.76, -2.26, 0.1765, 43, 1.67, -1.68, 0.82183, 4, 39, 17.23, -46.22, 0, 40, 31.29, -33.75, 1.0E-5, 42, 25.79, -4.93, 0.00256, 43, 9.14, -0.86, 0.99743, 1, 44, 6.99, 0.16, 1, 1, 45, 5.78, -0.25, 1, 3, 45, 15.93, 5.3, 0.00104, 46, 6.81, 0.31, 0.99418, 47, -1.28, 2.22, 0.00478 ],
  242. "hull": 35,
  243. "edges": [ 64, 66, 64, 70, 72, 74, 74, 76, 84, 86, 86, 88, 66, 68, 68, 0, 0, 2, 62, 64, 62, 60, 60, 58, 46, 44, 44, 42, 40, 42, 40, 38, 38, 36, 2, 4, 4, 6, 6, 8, 26, 28, 28, 30, 30, 32, 60, 70, 70, 68, 70, 90, 90, 72, 58, 90, 90, 0, 56, 58, 56, 72, 72, 2, 52, 54, 54, 56, 54, 74, 74, 4, 52, 76, 76, 6, 50, 52, 76, 92, 50, 92, 92, 8, 46, 48, 48, 50, 78, 94, 94, 92, 48, 94, 8, 10, 10, 12, 94, 10, 46, 78, 78, 12, 78, 96, 96, 80, 44, 96, 12, 14, 14, 16, 96, 14, 42, 80, 80, 16, 80, 98, 98, 82, 40, 98, 16, 18, 18, 20, 98, 18, 38, 82, 82, 20, 82, 100, 100, 84, 36, 100, 20, 22, 100, 22, 32, 34, 34, 36, 34, 84, 22, 24, 24, 26, 84, 24, 32, 86, 86, 26 ],
  244. "width": 50,
  245. "height": 102
  246. }
  247. },
  248. "toufa6": {
  249. "toufa6": {
  250. "type": "mesh",
  251. "uvs": [ 0.85933, 0.36077, 0.81845, 0.4656, 0.77231, 0.58392, 0.74316, 0.65868, 0.71099, 0.74119, 0.61007, 1, 0.31553, 1, 0, 1, 0, 0.73645, 0, 0.67258, 0, 0.58839, 0, 0.46646, 1.0E-5, 0.35614, 0, 0, 0.36871, 0, 1, 0, 0.25008, 0.58259, 0.27425, 0.4639, 0.27316, 0.72979, 0.26347, 0.66799, 0.29579, 0.34627 ],
  252. "triangles": [ 9, 16, 19, 4, 18, 19, 8, 9, 19, 8, 19, 18, 3, 4, 19, 7, 8, 18, 5, 6, 18, 7, 18, 6, 4, 5, 18, 20, 13, 14, 12, 13, 20, 0, 14, 15, 20, 14, 0, 17, 12, 20, 1, 20, 0, 17, 20, 1, 11, 12, 17, 16, 11, 17, 2, 17, 1, 16, 17, 2, 10, 11, 16, 3, 16, 2, 19, 16, 3, 9, 10, 16 ],
  253. "vertices": [ 2, 56, 0.39, 12.24, 0.9728, 57, -5.03, 14.88, 0.0272, 2, 56, 3.73, 11.84, 0.89752, 57, -2.04, 13.3, 0.10248, 2, 56, 7.51, 11.38, 0.70552, 57, 1.32, 11.53, 0.29448, 2, 56, 9.9, 11.09, 0.52387, 57, 3.45, 10.4, 0.47613, 2, 56, 12.53, 10.77, 0.31147, 57, 5.79, 9.16, 0.68853, 2, 56, 20.8, 9.76, 0.0072, 57, 13.15, 5.27, 0.9928, 1, 57, 11.76, -1.06, 1, 1, 57, 10.28, -7.84, 1, 2, 56, 14.71, -4.72, 0.06201, 57, 2.3, -6.08, 0.93799, 2, 56, 12.75, -5.02, 0.22279, 57, 0.36, -5.66, 0.77721, 2, 56, 10.17, -5.41, 0.61705, 57, -2.19, -5.1, 0.38295, 2, 56, 6.43, -5.97, 0.97215, 57, -5.88, -4.29, 0.02785, 1, 56, 3.05, -6.47, 1, 1, 56, -7.87, -8.11, 1, 1, 56, -9.07, -0.09, 1, 1, 56, -11.13, 13.64, 1, 1, 56, 9.17, 0.01, 1, 1, 56, 5.46, -0.01, 1, 1, 57, 3.38, -0.17, 1, 1, 57, 1.47, 0.03, 1, 1, 56, 1.78, -0.08, 1 ],
  254. "hull": 16,
  255. "edges": [ 26, 28, 28, 30, 12, 14, 10, 12, 20, 32, 32, 4, 20, 22, 34, 32, 22, 34, 4, 2, 34, 2, 14, 16, 12, 36, 16, 36, 8, 10, 36, 8, 16, 18, 18, 20, 32, 38, 38, 36, 18, 38, 4, 6, 6, 8, 38, 6, 22, 24, 24, 26, 28, 40, 40, 34, 24, 40, 2, 0, 0, 30, 40, 0 ],
  256. "width": 22,
  257. "height": 31
  258. }
  259. },
  260. "toufa7": {
  261. "toufa7": {
  262. "type": "mesh",
  263. "uvs": [ 0.59685, 0.23625, 0.596, 0.33144, 0.59531, 0.40874, 0.59484, 0.46057, 0.59435, 0.51569, 0.59344, 0.61683, 0.5922, 0.75609, 0.11606, 0.76843, 0, 0.77144, 0, 0.60692, 0, 0.51577, 0, 0.46796, 0, 0.42265, 0, 0.32754, 0, 0.25026, 0, 0, 0.28376, 0, 0.59896, 0, 0.35784, 0.33744, 0.30845, 0.52568, 0.33619, 0.41995, 0.33624, 0.23905, 0.24575, 0.6048, 0.32398, 0.46651 ],
  264. "triangles": [ 8, 9, 7, 7, 22, 6, 7, 9, 22, 6, 22, 5, 22, 19, 5, 5, 19, 4, 9, 10, 22, 22, 10, 19, 19, 23, 4, 23, 19, 11, 19, 10, 11, 4, 23, 3, 11, 12, 23, 23, 20, 3, 23, 12, 20, 3, 20, 2, 12, 13, 20, 20, 18, 2, 2, 18, 1, 20, 13, 18, 13, 21, 18, 1, 18, 0, 0, 18, 21, 13, 14, 21, 14, 16, 21, 14, 15, 16, 0, 21, 17, 17, 21, 16 ],
  265. "vertices": [ 2, 35, 9.23, 10.17, 0.79789, 36, -7.43, 7.95, 0.20211, 3, 35, 14.25, 9.06, 0.36954, 36, -2.38, 8.93, 0.6198, 37, -15.09, 3.83, 0.01066, 3, 35, 18.33, 8.17, 0.07855, 36, 1.71, 9.74, 0.84083, 37, -11.52, 6, 0.08062, 3, 35, 21.06, 7.57, 0.01195, 36, 4.46, 10.28, 0.79744, 37, -9.13, 7.45, 0.19061, 2, 36, 7.38, 10.85, 0.62942, 37, -6.58, 9, 0.37058, 2, 36, 12.74, 11.9, 0.25611, 37, -1.91, 11.84, 0.74389, 2, 36, 20.12, 13.35, 0.04377, 37, 4.51, 15.74, 0.95623, 1, 37, 14.82, 0.28, 1, 2, 36, 25.52, -9.13, 1.1E-4, 37, 17.34, -3.48, 0.99989, 3, 35, 23.96, -16.77, 0.05012, 36, 16.82, -10.89, 0.16389, 37, 9.78, -8.15, 0.78598, 3, 35, 19.15, -15.74, 0.19331, 36, 11.99, -11.87, 0.38378, 37, 5.59, -10.73, 0.42291, 3, 35, 16.62, -15.21, 0.32013, 36, 9.46, -12.38, 0.43626, 37, 3.39, -12.08, 0.24361, 3, 35, 14.23, -14.7, 0.46798, 36, 7.06, -12.87, 0.40989, 37, 1.3, -13.37, 0.12213, 3, 35, 9.2, -13.63, 0.78144, 36, 2.03, -13.89, 0.20556, 37, -3.07, -16.06, 0.013, 3, 35, 5.12, -12.76, 0.93584, 36, -2.06, -14.72, 0.06413, 37, -6.62, -18.25, 4.0E-5, 1, 35, -8.09, -9.95, 1, 1, 35, -5.79, 0.88, 1, 1, 35, -3.23, 12.9, 1, 2, 35, 12.63, -0.09, 0.80722, 36, -0.22, -0.1, 0.19278, 2, 36, 10.13, 0.03, 0.54513, 37, -0.27, -0.21, 0.45487, 2, 35, 16.81, -1.84, 0.0016, 36, 4.32, -0.05, 0.9984, 2, 35, 7.26, 0.19, 0.99973, 36, -5.26, -1.98, 2.7E-4, 3, 35, 25.84, -7.37, 2.0E-4, 36, 14.8, -1.52, 0.00159, 37, 4.65, -0.05, 0.99821, 2, 35, 19.18, -2.83, 3.5E-4, 36, 6.87, -0.01, 0.99965 ],
  266. "hull": 18,
  267. "edges": [ 30, 32, 32, 34, 12, 14, 14, 16, 26, 36, 36, 2, 24, 26, 36, 40, 24, 40, 2, 4, 40, 4, 26, 28, 28, 30, 32, 42, 42, 36, 28, 42, 2, 0, 0, 34, 42, 0, 20, 38, 38, 8, 16, 18, 18, 20, 14, 44, 44, 38, 18, 44, 8, 10, 10, 12, 44, 10, 20, 22, 22, 24, 38, 46, 46, 40, 22, 46, 4, 6, 6, 8, 46, 6 ],
  268. "width": 39,
  269. "height": 54
  270. }
  271. },
  272. "toufa8": {
  273. "toufa8": {
  274. "type": "mesh",
  275. "uvs": [ 0.63224, 0.90107, 0.64572, 0.84977, 0.65555, 0.81238, 0.67141, 0.75209, 0.70565, 0.62186, 0.82082, 0.62186, 1, 0.62186, 0.93014, 0.77748, 0.90948, 0.8235, 0.88794, 0.87148, 0.8633, 0.92637, 0.83025, 1, 0.70956, 1, 0.60623, 1, 0.77268, 0.8191, 0.75777, 0.86183, 0.7402, 0.9122, 0.78514, 0.76807 ],
  276. "triangles": [ 15, 2, 14, 1, 2, 15, 15, 14, 9, 16, 1, 15, 0, 1, 16, 10, 15, 9, 16, 15, 10, 12, 0, 16, 13, 0, 12, 11, 16, 10, 12, 16, 11, 17, 4, 5, 3, 4, 17, 7, 5, 6, 17, 5, 7, 14, 3, 17, 2, 3, 14, 8, 17, 7, 14, 17, 8, 9, 14, 8 ],
  277. "vertices": [ 2, 58, 22.43, -10.21, 0.04233, 59, 9.25, -9.28, 0.95767, 2, 58, 17.96, -10.13, 0.20308, 59, 4.82, -9.82, 0.79692, 2, 58, 14.71, -10.08, 0.43256, 59, 1.59, -10.22, 0.56744, 2, 58, 9.47, -9.99, 0.82614, 59, -3.61, -10.86, 0.17386, 1, 58, -1.86, -9.8, 1, 1, 58, -4.27, -0.19, 1, 1, 58, -8.03, 14.75, 1, 2, 58, 6.11, 12.11, 0.89359, 59, -10, 10.56, 0.10641, 2, 58, 10.3, 11.33, 0.68969, 59, -5.75, 10.37, 0.31031, 2, 58, 14.66, 10.51, 0.35319, 59, -1.32, 10.17, 0.64681, 2, 58, 19.64, 9.58, 0.06465, 59, 3.75, 9.94, 0.93535, 1, 59, 10.55, 9.62, 1, 1, 59, 14.45, 0.01, 1, 1, 59, 17.79, -8.23, 1, 2, 58, 12.8, -0.17, 0.73619, 59, -1.67, -0.67, 0.26381, 2, 58, 16.6, -0.54, 0.01033, 59, 2.14, -0.51, 0.98967, 2, 58, 21.07, -0.98, 8.2E-4, 59, 6.63, -0.32, 0.99918, 1, 58, 8.39, -0.18, 1 ],
  278. "hull": 14,
  279. "edges": [ 8, 10, 10, 12, 22, 24, 24, 26, 4, 28, 28, 16, 4, 2, 30, 28, 2, 30, 16, 18, 30, 18, 2, 0, 0, 26, 24, 32, 32, 30, 0, 32, 18, 20, 20, 22, 32, 20, 4, 6, 6, 8, 10, 34, 34, 28, 6, 34, 12, 14, 14, 16, 34, 14 ],
  280. "width": 86,
  281. "height": 84
  282. }
  283. },
  284. "touga4": {
  285. "touga4": {
  286. "type": "mesh",
  287. "uvs": [ 1, 0.24745, 1, 0.66111, 0.71379, 0.66807, 0.65267, 0.40388, 0, 0.38128, 0, 0.1953, 0.29956, 0, 0.77321, 0 ],
  288. "triangles": [ 4, 5, 6, 3, 6, 7, 3, 7, 0, 4, 6, 3, 3, 0, 1, 2, 3, 1 ],
  289. "vertices": [ 56.31, -49.83, 21.61, -47.87, 22.42, -23.26, 44.87, -19.26, 49.94, 36.67, 65.53, 35.79, 80.46, 9.14, 78.16, -31.53 ],
  290. "hull": 8,
  291. "edges": [ 8, 6, 6, 4, 4, 2, 2, 0, 14, 0, 12, 14, 8, 10, 12, 10 ],
  292. "width": 86,
  293. "height": 84
  294. }
  295. },
  296. "waitaoy": {
  297. "waitaoy": {
  298. "type": "mesh",
  299. "uvs": [ 0.79442, 0.37775, 0.8228, 0.4445, 0.85076, 0.51029, 0.88037, 0.57996, 0.90907, 0.64748, 0.94564, 0.73351, 0.97594, 0.80479, 1, 0.86141, 1, 1, 0.58066, 1, 0, 1, 0, 0.95122, 0, 0.85277, 0, 0.7785, 0, 0.7025, 0, 0.63341, 0, 0.56259, 0, 0.48314, 0, 0.42268, 0, 0, 0.28046, 0, 0.63386, 0, 0.28046, 0.46586, 0.36406, 0.68177, 0.28046, 0.40886, 0.3127, 0.54912, 0.33819, 0.61496, 0.45975, 0.82236, 0.41053, 0.75004, 0.52293, 0.91518 ],
  300. "triangles": [ 9, 7, 8, 10, 29, 9, 9, 29, 7, 10, 11, 29, 11, 27, 29, 11, 12, 27, 29, 6, 7, 29, 27, 6, 12, 28, 27, 12, 13, 28, 27, 5, 6, 27, 28, 5, 13, 23, 28, 13, 14, 23, 28, 4, 5, 28, 23, 4, 14, 26, 23, 14, 15, 26, 23, 3, 4, 23, 26, 3, 15, 25, 26, 15, 16, 25, 26, 2, 3, 26, 25, 2, 16, 22, 25, 16, 17, 22, 25, 1, 2, 25, 22, 1, 17, 18, 22, 22, 0, 1, 18, 24, 22, 22, 24, 0, 24, 19, 20, 24, 18, 19, 24, 21, 0, 24, 20, 21 ],
  301. "vertices": [ 3, 21, 11.12, 10.23, 0.65952, 22, -2.48, 10.73, 0.33358, 23, -11.81, 11.81, 0.0069, 3, 21, 14.07, 10.7, 0.42652, 22, 0.51, 10.82, 0.53321, 23, -8.82, 11.63, 0.04027, 3, 21, 16.98, 11.17, 0.22742, 22, 3.45, 10.92, 0.64769, 23, -5.88, 11.45, 0.12489, 3, 21, 20.07, 11.66, 0.09301, 22, 6.57, 11.01, 0.61197, 23, -2.76, 11.26, 0.29502, 3, 21, 23.05, 12.13, 0.02909, 22, 9.6, 11.11, 0.45119, 23, 0.26, 11.08, 0.51973, 3, 21, 26.86, 12.74, 0.00269, 22, 13.45, 11.23, 0.21467, 23, 4.1, 10.84, 0.78264, 3, 21, 30.02, 13.24, 0, 22, 16.64, 11.32, 0.08579, 23, 7.29, 10.65, 0.9142, 2, 22, 19.18, 11.4, 0.03431, 23, 9.82, 10.49, 0.96569, 1, 23, 15.73, 8.97, 1, 1, 23, 13.64, 0.85, 1, 1, 23, 10.75, -10.4, 1, 2, 22, 19.9, -8.97, 1.6E-4, 23, 8.67, -9.86, 0.99984, 2, 22, 15.62, -8.28, 0.03607, 23, 4.48, -8.78, 0.96393, 2, 22, 12.39, -7.76, 0.18143, 23, 1.31, -7.97, 0.81857, 2, 22, 9.09, -7.23, 0.51595, 23, -1.93, -7.14, 0.48405, 2, 22, 6.09, -6.74, 0.83293, 23, -4.87, -6.38, 0.16707, 3, 21, 18.72, -5.92, 0.01354, 22, 3.02, -6.25, 0.96536, 23, -7.89, -5.6, 0.0211, 2, 21, 15.23, -5.8, 0.21682, 22, -0.44, -5.69, 0.78318, 2, 21, 12.57, -5.71, 0.57721, 22, -3.06, -5.27, 0.42279, 1, 21, -6.02, -5.1, 1, 1, 21, -5.83, 0.51, 1, 1, 21, -5.6, 7.57, 1, 2, 21, 14.65, -0.17, 0.04446, 22, -0.29, -0.03, 0.95554, 2, 22, 9.35, 0.1, 0.45628, 23, -1, 0.14, 0.54372, 2, 21, 12.15, -0.09, 0.95861, 22, -2.77, 0.37, 0.04139, 2, 22, 3.43, 0.02, 0.99999, 23, -6.91, 0.6, 1.0E-5, 3, 21, 21.25, 0.77, 6.0E-5, 22, 6.37, 0.06, 0.99972, 23, -3.97, 0.37, 2.3E-4, 2, 22, 15.76, 1.01, 0.00114, 23, 5.47, 0.46, 0.99886, 2, 22, 12.47, 0.54, 0.00385, 23, 2.14, 0.29, 0.99615, 2, 22, 20, 1.61, 4.0E-5, 23, 9.74, 0.66, 0.99996 ],
  302. "hull": 22,
  303. "edges": [ 38, 40, 16, 18, 18, 20, 40, 42, 16, 14, 34, 44, 44, 2, 34, 36, 36, 38, 40, 48, 48, 44, 36, 48, 2, 0, 0, 42, 48, 0, 32, 34, 44, 50, 32, 50, 2, 4, 50, 4, 28, 46, 46, 8, 28, 30, 30, 32, 46, 52, 52, 50, 30, 52, 4, 6, 6, 8, 52, 6, 24, 54, 12, 14, 54, 12, 24, 26, 26, 28, 46, 56, 56, 54, 26, 56, 8, 10, 10, 12, 56, 10, 20, 22, 22, 24, 18, 58, 58, 54, 22, 58, 58, 14 ],
  304. "width": 20,
  305. "height": 44
  306. }
  307. },
  308. "waitaoz": {
  309. "waitaoz": {
  310. "type": "mesh",
  311. "uvs": [ 0.8654, 0.36364, 0.85586, 0.41702, 0.84586, 0.47292, 0.82969, 0.56336, 0.80568, 0.69766, 0.79355, 0.76548, 0.77594, 0.86394, 0.75161, 1, 0.38055, 1, 0, 1, 0, 0.83902, 0, 0.74004, 0.04202, 0.67388, 0.11832, 0.55374, 0.17747, 0.46059, 0.21179, 0.40655, 0.24479, 0.35458, 0.46996, 0, 0.64432, 0, 0.93043, 0, 0.56385, 0.41307, 0.49232, 0.69232, 0.57354, 0.36333, 0.55144, 0.46152, 0.52512, 0.56426, 0.47102, 0.75096, 0.43246, 0.85711 ],
  312. "triangles": [ 8, 26, 7, 7, 26, 6, 26, 8, 10, 8, 9, 10, 26, 25, 6, 6, 25, 5, 25, 26, 11, 26, 10, 11, 25, 21, 5, 5, 21, 4, 11, 12, 25, 25, 12, 21, 21, 24, 4, 4, 24, 3, 12, 13, 21, 21, 13, 24, 13, 14, 24, 24, 23, 3, 24, 14, 23, 3, 23, 2, 23, 20, 2, 14, 15, 23, 2, 20, 1, 23, 15, 20, 20, 22, 1, 1, 22, 0, 15, 16, 20, 20, 16, 22, 22, 18, 0, 0, 18, 19, 16, 17, 22, 22, 17, 18 ],
  313. "vertices": [ 2, 18, 8.98, 4.91, 0.90445, 19, -3.47, 4.97, 0.09555, 2, 18, 11.28, 5.03, 0.63979, 19, -1.17, 5.06, 0.36021, 2, 18, 13.69, 5.17, 0.26317, 19, 1.24, 5.14, 0.73683, 3, 18, 17.58, 5.38, 0.00891, 19, 5.14, 5.29, 0.9785, 20, -6.03, 5.17, 0.01259, 2, 19, 10.92, 5.49, 0.50923, 20, -0.25, 5.49, 0.49077, 2, 19, 13.84, 5.6, 0.14674, 20, 2.67, 5.65, 0.85326, 2, 19, 18.08, 5.75, 0.00181, 20, 6.91, 5.89, 0.99819, 1, 20, 12.76, 6.21, 1, 1, 20, 13.55, -0.05, 1, 1, 20, 14.37, -6.46, 1, 2, 19, 18.42, -7.48, 0.01227, 20, 7.5, -7.33, 0.98773, 2, 19, 14.19, -7.93, 0.16466, 20, 3.28, -7.87, 0.83534, 2, 19, 11.29, -7.52, 0.43469, 20, 0.36, -7.52, 0.56531, 3, 18, 18.68, -6.67, 0.01183, 19, 6.01, -6.78, 0.92052, 20, -4.92, -6.88, 0.06765, 3, 18, 14.58, -6.17, 0.20622, 19, 1.92, -6.21, 0.79352, 20, -9.02, -6.38, 2.6E-4, 2, 18, 12.21, -5.89, 0.51089, 19, -0.45, -5.88, 0.48911, 2, 18, 9.92, -5.61, 0.81438, 19, -2.73, -5.56, 0.18562, 1, 18, -5.69, -3.72, 1, 1, 18, -6.06, -0.78, 1, 1, 18, -6.67, 4.04, 1, 1, 18, 11.73, 0.09, 1, 2, 19, 11.26, 0.17, 0.27589, 20, 0.19, 0.18, 0.72411, 1, 18, 9.59, -0.02, 1, 2, 18, 13.83, 0.14, 0.00274, 19, 1.29, 0.12, 0.99726, 2, 19, 5.73, 0.14, 0.99997, 20, -5.34, 0.04, 3.0E-5, 2, 19, 13.81, 0.08, 2.1E-4, 20, 2.74, 0.13, 0.99979, 1, 20, 7.35, 0.06, 1 ],
  314. "hull": 20,
  315. "edges": [ 16, 18, 34, 36, 36, 38, 14, 16, 30, 40, 40, 2, 30, 32, 32, 34, 36, 44, 44, 40, 32, 44, 2, 0, 0, 38, 44, 0, 28, 30, 40, 46, 28, 46, 2, 4, 46, 4, 26, 28, 42, 48, 48, 46, 26, 48, 4, 6, 48, 6, 22, 24, 24, 26, 24, 42, 6, 8, 42, 8, 50, 42, 22, 50, 8, 10, 50, 10, 18, 20, 20, 22, 16, 52, 52, 50, 20, 52, 10, 12, 12, 14, 52, 12 ],
  316. "width": 17,
  317. "height": 43
  318. }
  319. },
  320. "xin3": {
  321. "xin3": { "x": 4.23, "y": 0.17, "rotation": -85.68, "width": 23, "height": 20 }
  322. },
  323. "xingxing": {
  324. "xingxing": { "x": 2.91, "y": -1.26, "rotation": -87.46, "width": 23, "height": 21 }
  325. },
  326. "yanjing": {
  327. "yanjing": {
  328. "type": "mesh",
  329. "uvs": [ 1, 1, 0.67625, 1, 0.32863, 1, 0, 1, 0, 0, 0.32168, 0, 0.65308, 0, 1, 0 ],
  330. "triangles": [ 3, 4, 5, 2, 5, 6, 3, 5, 2, 1, 6, 7, 2, 6, 1, 1, 7, 0 ],
  331. "vertices": [ 4.97, -32.9, 6.12, -12.54, 7.35, 9.32, 8.52, 29.99, 36.48, 28.41, 35.33, 8.18, 34.15, -12.66, 32.92, -34.48 ],
  332. "hull": 8,
  333. "edges": [ 6, 8, 0, 14, 8, 10, 4, 6, 10, 4, 10, 12, 12, 14, 0, 2, 2, 4, 12, 2 ],
  334. "width": 63,
  335. "height": 28
  336. }
  337. },
  338. "youjiao": {
  339. "youjiao": {
  340. "type": "mesh",
  341. "uvs": [ 1, 0.34582, 1, 0.39428, 1, 0.43005, 1, 0.64216, 1, 0.67151, 1, 0.71082, 1, 1, 0, 1, 0, 0.93835, 0, 0.8187, 0.28045, 0.7167, 0.2761, 0.68357, 0.27219, 0.65387, 0.2441, 0.44021, 0.24104, 0.41701, 0.23583, 0.37736, 0.15614, 0, 0.56414, 0, 1, 0, 0.61514, 0.36166, 0.69483, 0.71278, 0.68072, 0.65063, 0.68775, 0.6816, 0.6247, 0.4038, 0.63342, 0.44221 ],
  342. "triangles": [ 8, 9, 10, 8, 10, 20, 7, 8, 20, 7, 20, 6, 1, 23, 0, 24, 23, 1, 13, 14, 23, 2, 24, 1, 13, 23, 24, 21, 24, 2, 3, 21, 2, 12, 13, 24, 12, 24, 21, 22, 21, 3, 4, 22, 3, 11, 12, 21, 11, 21, 22, 20, 22, 4, 5, 20, 4, 10, 11, 22, 10, 22, 20, 20, 5, 6, 19, 17, 18, 0, 19, 18, 15, 16, 17, 15, 17, 19, 23, 19, 0, 14, 15, 19, 14, 19, 23 ],
  343. "vertices": [ 2, 14, 17.23, 12.18, 0.66174, 15, -4.09, 12.36, 0.33826, 2, 14, 19.73, 11.94, 0.489, 15, -1.57, 12.28, 0.511, 2, 14, 21.59, 11.76, 0.3607, 15, 0.29, 12.22, 0.6393, 3, 14, 32.56, 10.7, 0.00753, 15, 11.31, 11.85, 0.98521, 16, -13.94, -7.68, 0.00726, 3, 14, 34.08, 10.56, 0.00222, 15, 12.83, 11.8, 0.97651, 16, -13.67, -6.17, 0.02127, 3, 14, 36.12, 10.36, 9.0E-5, 15, 14.88, 11.74, 0.94064, 16, -13.32, -4.16, 0.05927, 2, 15, 29.91, 11.24, 0.26194, 16, -10.75, 10.65, 0.73806, 1, 16, 20.78, 5.17, 1, 1, 16, 20.23, 2.01, 1, 2, 15, 19.43, -20.43, 7.0E-4, 16, 19.16, -4.12, 0.9993, 2, 15, 14.42, -11.29, 0.39703, 16, 9.41, -7.8, 0.60297, 3, 14, 32.49, -12.56, 5.4E-4, 15, 12.7, -11.37, 0.59388, 16, 9.26, -9.53, 0.40557, 3, 14, 30.94, -12.54, 0.00317, 15, 11.15, -11.44, 0.70991, 16, 9.11, -11.07, 0.28692, 3, 14, 19.79, -12.37, 0.32575, 15, 0.02, -11.98, 0.66592, 16, 8.1, -22.17, 0.00833, 3, 14, 18.58, -12.35, 0.40749, 15, -1.19, -12.03, 0.58821, 16, 7.99, -23.37, 0.0043, 3, 14, 16.51, -12.31, 0.55505, 15, -3.26, -12.13, 0.44408, 16, 7.8, -25.43, 8.7E-4, 1, 14, -3.26, -12.97, 1, 1, 14, -2.01, 0.03, 1, 1, 14, -0.67, 13.91, 1, 2, 14, 16.86, -0.15, 0.93312, 15, -3.67, 0.03, 0.06688, 1, 15, 14.66, 1.97, 1, 1, 15, 11.41, 1.63, 1, 1, 15, 13.03, 1.8, 1, 2, 14, 19.07, -0.06, 0.32081, 15, -1.47, 0.26, 0.67919, 1, 15, 0.53, 0.47, 1 ],
  344. "hull": 19,
  345. "edges": [ 12, 14, 34, 36, 34, 38, 14, 16, 40, 16, 32, 34, 32, 30, 16, 18, 20, 18, 20, 40, 12, 10, 40, 10, 24, 42, 42, 6, 20, 22, 22, 24, 40, 44, 44, 42, 22, 44, 6, 8, 8, 10, 44, 8, 30, 38, 0, 36, 38, 0, 28, 30, 38, 46, 28, 46, 0, 2, 46, 2, 24, 26, 26, 28, 42, 48, 48, 46, 26, 48, 2, 4, 4, 6, 48, 4 ],
  346. "width": 32,
  347. "height": 52
  348. }
  349. },
  350. "youshou": {
  351. "youshou": {
  352. "type": "mesh",
  353. "uvs": [ 0.62044, 0.3016, 0.68336, 0.36845, 0.73549, 0.42383, 0.87429, 0.5713, 0.9198, 0.62323, 0.97213, 0.67332, 1, 1, 0.5823, 1, 0.43644, 0.82715, 0.38664, 0.76737, 0.34123, 0.71337, 0.22358, 0.57349, 0.17569, 0.51655, 0.11337, 0.44246, 0, 0.30766, 0, 0, 0.10604, 0, 0.33657, 0, 0.42017, 0.45106, 0.68363, 0.69626, 0.37035, 0.37952, 0.47669, 0.50366, 0.73529, 0.74586, 0.63124, 0.6475 ],
  354. "triangles": [ 7, 22, 6, 22, 5, 6, 7, 8, 22, 8, 19, 22, 8, 9, 19, 9, 23, 19, 22, 4, 5, 22, 19, 4, 19, 3, 4, 9, 10, 23, 10, 21, 23, 10, 11, 21, 19, 23, 3, 23, 2, 3, 23, 21, 2, 11, 18, 21, 21, 1, 2, 21, 18, 1, 18, 0, 1, 11, 12, 18, 12, 20, 18, 12, 13, 20, 18, 20, 0, 13, 14, 20, 20, 14, 16, 16, 17, 20, 20, 17, 0, 14, 15, 16 ],
  355. "vertices": [ 2, 7, 15.8, 8.53, 0.55522, 8, -3.04, 9.04, 0.44478, 2, 7, 19.79, 8.96, 0.17418, 8, 0.97, 8.84, 0.82582, 2, 7, 23.1, 9.32, 0.02198, 8, 4.29, 8.68, 0.97802, 2, 8, 13.14, 8.25, 0.87049, 9, -3.41, 7.8, 0.12951, 2, 8, 16.2, 8.01, 0.61277, 9, -0.35, 8.07, 0.38723, 2, 8, 19.28, 8, 0.35027, 9, 2.7, 8.56, 0.64973, 1, 9, 19.12, 3.03, 1, 1, 9, 14.56, -8.64, 1, 3, 7, 39.58, -6.98, 0.00162, 8, 18.04, -9.98, 0.14105, 9, 4.43, -9.38, 0.85734, 3, 7, 36.08, -7.19, 0.01709, 8, 14.56, -9.64, 0.38703, 9, 0.94, -9.61, 0.59588, 3, 7, 32.92, -7.38, 0.06261, 8, 11.4, -9.34, 0.61839, 9, -2.22, -9.84, 0.319, 3, 7, 24.73, -7.89, 0.57092, 8, 3.23, -8.57, 0.418, 9, -10.42, -10.42, 0.01108, 3, 7, 21.39, -8.1, 0.88039, 8, -0.1, -8.26, 0.11938, 9, -13.75, -10.66, 2.3E-4, 2, 7, 17.05, -8.37, 0.99988, 8, -4.43, -7.85, 1.2E-4, 1, 7, 9.15, -8.86, 1, 1, 7, -5.98, -2.78, 1, 1, 7, -4.79, 0.18, 1, 1, 7, -2.21, 6.59, 1, 2, 7, 20.91, 0, 0.3144, 8, 0.68, -0.18, 0.6856, 1, 9, 0.67, 0.06, 1, 2, 7, 16.83, 0.03, 0.99948, 8, -3.34, 0.48, 5.2E-4, 2, 7, 24.12, 0.53, 0.00631, 8, 3.94, -0.15, 0.99369, 2, 8, 18.94, -0.07, 0.00991, 9, 3.69, 0.54, 0.99009, 3, 7, 32.93, 1.99, 6.0E-5, 8, 12.87, -0.08, 0.99691, 9, -2.31, -0.47, 0.00303 ],
  356. "hull": 18,
  357. "edges": [ 30, 32, 32, 34, 12, 10, 28, 30, 12, 14, 24, 36, 36, 2, 24, 26, 26, 28, 32, 40, 40, 36, 26, 40, 2, 0, 0, 34, 40, 0, 22, 24, 36, 42, 22, 42, 2, 4, 42, 4, 18, 38, 8, 10, 38, 8, 14, 16, 16, 18, 12, 44, 44, 38, 16, 44, 44, 10, 18, 20, 20, 22, 38, 46, 46, 42, 20, 46, 4, 6, 6, 8, 46, 6 ],
  358. "width": 30,
  359. "height": 53
  360. }
  361. },
  362. "youxiji": {
  363. "youxiji": {
  364. "type": "mesh",
  365. "uvs": [ 1, 1, 0.46116, 1, 0, 1, 0, 0, 0.14264, 0, 1, 0 ],
  366. "triangles": [ 2, 3, 4, 1, 4, 5, 2, 4, 1, 1, 5, 0 ],
  367. "vertices": [ -8.46, -5.15, -5.78, 3.61, -3.49, 11.11, 14.68, 5.55, 13.97, 3.23, 9.71, -10.71 ],
  368. "hull": 6,
  369. "edges": [ 4, 6, 0, 10, 6, 8, 8, 10, 0, 2, 2, 4, 8, 2 ],
  370. "width": 17,
  371. "height": 19
  372. }
  373. },
  374. "youyan": {
  375. "youyan": { "x": 5.02, "y": -0.97, "rotation": -92.51, "width": 25, "height": 18 }
  376. },
  377. "zuojiao": {
  378. "zuojiao": {
  379. "type": "mesh",
  380. "uvs": [ 0.99999, 0.36472, 0.99999, 0.39938, 0.99999, 0.42972, 0.99999, 0.6445, 0.99999, 0.66964, 0.99999, 0.71731, 1, 1, 0, 1, 0, 0.88964, 0, 0.80531, 0.32508, 0.68798, 0.32861, 0.64962, 0.33073, 0.62656, 0.35037, 0.41295, 0.35394, 0.37406, 0.35683, 0.34271, 0.38833, 0, 0.73758, 0, 1, 0, 0.63308, 0.39098, 0.61933, 0.70264, 0.62137, 0.65642, 0.62225, 0.63657, 0.64232, 0.35642, 0.63186, 0.41866 ],
  381. "triangles": [ 7, 20, 6, 7, 8, 20, 8, 10, 20, 8, 9, 10, 20, 5, 6, 5, 20, 4, 4, 20, 21, 10, 11, 20, 20, 11, 21, 4, 21, 3, 3, 21, 22, 11, 12, 21, 21, 12, 22, 3, 22, 2, 2, 22, 24, 12, 13, 22, 22, 13, 24, 2, 24, 1, 1, 24, 19, 13, 14, 24, 24, 14, 19, 19, 23, 1, 1, 23, 0, 14, 15, 19, 19, 15, 23, 23, 17, 0, 0, 17, 18, 15, 16, 23, 23, 16, 17 ],
  382. "vertices": [ 2, 11, 13.18, 12.84, 0.74638, 12, -3.62, 13.55, 0.25362, 2, 11, 15.02, 13.18, 0.63631, 12, -1.75, 13.66, 0.36369, 2, 11, 16.63, 13.48, 0.53288, 12, -0.11, 13.76, 0.46712, 3, 11, 28.04, 15.6, 0.05461, 12, 11.46, 14.42, 0.85528, 13, -16.86, -4.87, 0.09011, 3, 11, 29.37, 15.84, 0.03626, 12, 12.82, 14.5, 0.83313, 13, -16.55, -3.55, 0.1306, 3, 11, 31.9, 16.31, 0.01455, 12, 15.39, 14.65, 0.75159, 13, -15.96, -1.05, 0.23386, 2, 12, 30.63, 15.52, 0.17961, 13, -12.48, 13.82, 0.82039, 1, 13, 22.57, 5.6, 1, 1, 13, 21.21, -0.2, 1, 1, 13, 20.18, -4.63, 1, 2, 12, 15.2, -9.7, 0.47279, 13, 7.34, -8.13, 0.52721, 2, 12, 13.13, -9.69, 0.70658, 13, 6.74, -10.12, 0.29342, 2, 12, 11.88, -9.69, 0.79839, 13, 6.38, -11.32, 0.20161, 2, 11, 20, -9.68, 0.19957, 12, 0.32, -9.64, 0.80043, 2, 11, 17.91, -9.93, 0.36056, 12, -1.78, -9.64, 0.63944, 2, 11, 16.23, -10.14, 0.50356, 12, -3.48, -9.63, 0.49644, 1, 11, -2.17, -12.39, 1, 1, 11, -4.46, -0.03, 1, 1, 11, -6.18, 9.26, 1, 2, 11, 16.98, 0.11, 0.65981, 12, -1.45, 0.45, 0.34019, 1, 12, 15.39, 0.92, 1, 2, 11, 31.15, 2.31, 1.8E-4, 12, 12.89, 0.85, 0.99982, 2, 11, 30.09, 2.15, 4.2E-4, 12, 11.82, 0.82, 0.99958, 1, 11, 15.09, 0.1, 1, 2, 11, 18.46, 0.34, 0.05238, 12, 0.05, 0.49, 0.94762 ],
  383. "hull": 19,
  384. "edges": [ 12, 14, 34, 36, 14, 16, 40, 16, 32, 34, 16, 18, 20, 18, 20, 40, 12, 10, 40, 10, 20, 22, 42, 40, 22, 42, 10, 8, 42, 8, 22, 24, 44, 42, 24, 44, 8, 6, 44, 6, 28, 38, 38, 2, 28, 30, 30, 32, 34, 46, 46, 38, 30, 46, 2, 0, 0, 36, 46, 0, 24, 26, 26, 28, 38, 48, 48, 44, 26, 48, 2, 4, 4, 6, 48, 4 ],
  385. "width": 36,
  386. "height": 54
  387. }
  388. },
  389. "zuoshou": {
  390. "zuoshou": {
  391. "type": "mesh",
  392. "uvs": [ 1, 0.21144, 0.75776, 0.53446, 0.72784, 0.57435, 0.70564, 0.60395, 0.59164, 0.75596, 0.55215, 0.80863, 0.52147, 0.84952, 0.40863, 1, 0.14562, 1, 0, 1, 0, 0.73924, 0.11035, 0.61911, 0.14343, 0.58309, 0.17643, 0.54716, 0.31141, 0.40022, 0.34198, 0.36693, 0.37996, 0.32559, 0.67903, 0, 1, 0, 0.56119, 0.43077, 0.38692, 0.70357, 0.51629, 0.50106, 0.53624, 0.46984, 0.35122, 0.74743, 0.40963, 0.66802 ],
  393. "triangles": [ 8, 23, 7, 7, 23, 6, 23, 8, 10, 23, 10, 11, 10, 8, 9, 23, 20, 6, 6, 20, 5, 11, 12, 23, 23, 12, 20, 20, 24, 5, 5, 24, 4, 24, 21, 4, 4, 21, 3, 12, 13, 20, 20, 13, 24, 13, 14, 24, 24, 14, 21, 21, 22, 3, 3, 22, 2, 22, 19, 2, 2, 19, 1, 14, 15, 21, 21, 15, 22, 15, 16, 22, 22, 16, 19, 1, 19, 0, 0, 19, 18, 19, 16, 17, 19, 17, 18 ],
  394. "vertices": [ 1, 4, 2.42, 9.88, 1, 2, 4, 20.86, 8.84, 0.42305, 5, 0.98, 8.86, 0.57695, 3, 4, 23.14, 8.71, 0.21883, 5, 3.26, 8.77, 0.78108, 6, -11.57, 8.54, 9.0E-5, 3, 4, 24.83, 8.61, 0.11429, 5, 4.95, 8.71, 0.88259, 6, -9.88, 8.51, 0.00312, 2, 5, 13.64, 8.39, 0.62694, 6, -1.18, 8.37, 0.37306, 2, 5, 16.65, 8.28, 0.32129, 6, 1.83, 8.32, 0.67871, 2, 5, 18.98, 8.19, 0.14033, 6, 4.17, 8.28, 0.85967, 1, 6, 12.77, 8.13, 1, 1, 6, 17.35, -0.45, 1, 1, 6, 19.88, -5.21, 1, 2, 5, 22.8, -11.51, 0.03237, 6, 8.38, -11.34, 0.96763, 2, 5, 15.59, -10.59, 0.35743, 6, 1.16, -10.57, 0.64257, 2, 5, 13.43, -10.31, 0.54325, 6, -1.01, -10.33, 0.45675, 3, 4, 30.8, -10.25, 4.1E-4, 5, 11.28, -10.03, 0.71882, 6, -3.17, -10.1, 0.28076, 3, 4, 22.01, -8.95, 0.2458, 5, 2.47, -8.91, 0.752, 6, -12, -9.15, 0.0022, 2, 4, 20.02, -8.66, 0.43471, 5, 0.47, -8.65, 0.56529, 2, 4, 17.54, -8.29, 0.69429, 5, -2.01, -8.33, 0.30571, 1, 4, -1.93, -5.42, 1, 1, 4, -7.1, 5.28, 1, 2, 4, 19.36, 0.03, 0.79498, 5, -0.35, 0.03, 0.20502, 2, 5, 14.73, 0.45, 0.46878, 6, 0.07, 0.45, 0.53122, 2, 4, 23.25, 0.07, 2.3E-4, 5, 3.53, 0.14, 0.99977, 2, 4, 21.52, 0.05, 2.5E-4, 5, 1.81, 0.09, 0.99975, 2, 5, 17.28, 0.26, 0.00109, 6, 2.63, 0.32, 0.99891, 2, 5, 12.76, 0.39, 0.98632, 6, -1.89, 0.36, 0.01368 ],
  395. "hull": 19,
  396. "edges": [ 0, 36, 34, 36, 18, 20, 36, 38, 14, 16, 16, 18, 32, 34, 32, 38, 0, 2, 38, 2, 28, 42, 42, 6, 28, 30, 30, 32, 38, 44, 44, 42, 30, 44, 2, 4, 4, 6, 44, 4, 24, 40, 40, 10, 20, 22, 22, 24, 16, 46, 46, 40, 22, 46, 10, 12, 12, 14, 46, 12, 24, 26, 26, 28, 40, 48, 48, 42, 26, 48, 6, 8, 8, 10, 48, 8 ],
  397. "width": 37,
  398. "height": 50
  399. }
  400. },
  401. "zuoyan": {
  402. "zuoyan": { "x": 4.92, "y": 1.86, "rotation": -92.57, "width": 23, "height": 20 }
  403. }
  404. }
  405. },
  406. "animations": {
  407. "stand1": {
  408. "slots": {
  409. "biaoqing_1": {
  410. "color": [
  411. { "time": 0, "color": "ffffff00" }
  412. ]
  413. },
  414. "biyan": {
  415. "attachment": [
  416. { "time": 0, "name": null },
  417. { "time": 1.3333, "name": null },
  418. { "time": 1.4333, "name": "biyan" },
  419. { "time": 1.5333, "name": null },
  420. { "time": 2.3333, "name": null }
  421. ]
  422. },
  423. "diannao1": {
  424. "attachment": [
  425. { "time": 0, "name": null },
  426. { "time": 1.1667, "name": null },
  427. { "time": 2.3333, "name": null }
  428. ]
  429. },
  430. "diannao_x": {
  431. "color": [
  432. { "time": 0, "color": "ffffff00" }
  433. ]
  434. },
  435. "dou": {
  436. "attachment": [
  437. { "time": 0, "name": null },
  438. { "time": 1.1667, "name": null },
  439. { "time": 2.3333, "name": null }
  440. ]
  441. },
  442. "dou2": {
  443. "attachment": [
  444. { "time": 0, "name": null },
  445. { "time": 1.1667, "name": null },
  446. { "time": 2.3333, "name": null }
  447. ]
  448. },
  449. "dou3": {
  450. "attachment": [
  451. { "time": 0, "name": null },
  452. { "time": 1.1667, "name": null },
  453. { "time": 2.3333, "name": null }
  454. ]
  455. },
  456. "pinmu": {
  457. "attachment": [
  458. { "time": 0, "name": null },
  459. { "time": 1.1667, "name": null },
  460. { "time": 2.3333, "name": null }
  461. ]
  462. },
  463. "youyan": {
  464. "attachment": [
  465. { "time": 1.4333, "name": null },
  466. { "time": 1.5333, "name": "youyan" }
  467. ]
  468. },
  469. "zuoyan": {
  470. "attachment": [
  471. { "time": 1.4333, "name": null },
  472. { "time": 1.5333, "name": "zuoyan" }
  473. ]
  474. }
  475. },
  476. "bones": {
  477. "bone53": {
  478. "rotate": [
  479. { "time": 0, "angle": 0, "curve": "stepped" },
  480. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  481. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  482. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  483. { "time": 2.3333, "angle": 0 }
  484. ],
  485. "translate": [
  486. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  487. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  488. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  489. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  490. { "time": 2.3333, "x": 0, "y": 0 }
  491. ],
  492. "scale": [
  493. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  494. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  495. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  496. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  497. { "time": 2.3333, "x": 1, "y": 1 }
  498. ]
  499. },
  500. "bone55": {
  501. "rotate": [
  502. { "time": 0, "angle": 0, "curve": "stepped" },
  503. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  504. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  505. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  506. { "time": 2.3333, "angle": 0 }
  507. ],
  508. "translate": [
  509. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  510. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  511. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  512. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  513. { "time": 2.3333, "x": 0, "y": 0 }
  514. ],
  515. "scale": [
  516. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  517. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  518. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  519. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  520. { "time": 2.3333, "x": 1, "y": 1 }
  521. ]
  522. },
  523. "bone54": {
  524. "rotate": [
  525. { "time": 0, "angle": 0, "curve": "stepped" },
  526. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  527. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  528. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  529. { "time": 2.3333, "angle": 0 }
  530. ],
  531. "translate": [
  532. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  533. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  534. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  535. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  536. { "time": 2.3333, "x": 0, "y": 0 }
  537. ],
  538. "scale": [
  539. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  540. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  541. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  542. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  543. { "time": 2.3333, "x": 1, "y": 1 }
  544. ]
  545. },
  546. "bone27": {
  547. "rotate": [
  548. { "time": 0, "angle": 0, "curve": "stepped" },
  549. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  550. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  551. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  552. { "time": 2.3333, "angle": 0 }
  553. ],
  554. "translate": [
  555. { "time": 0, "x": -3.08, "y": 0.09, "curve": "stepped" },
  556. { "time": 2.3333, "x": -3.08, "y": 0.09 }
  557. ],
  558. "scale": [
  559. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  560. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  561. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  562. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  563. { "time": 2.3333, "x": 1, "y": 1 }
  564. ]
  565. },
  566. "root": {
  567. "rotate": [
  568. { "time": 0, "angle": 0 }
  569. ],
  570. "translate": [
  571. { "time": 0, "x": 0, "y": 0 }
  572. ],
  573. "scale": [
  574. { "time": 0, "x": 0.65, "y": 0.65 }
  575. ]
  576. },
  577. "bone": {
  578. "rotate": [
  579. { "time": 0, "angle": 0, "curve": "stepped" },
  580. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  581. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  582. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  583. { "time": 2.3333, "angle": 0 }
  584. ],
  585. "translate": [
  586. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  587. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  588. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  589. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  590. { "time": 2.3333, "x": 0, "y": 0 }
  591. ],
  592. "scale": [
  593. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  594. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  595. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  596. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  597. { "time": 2.3333, "x": 1, "y": 1 }
  598. ]
  599. },
  600. "bone2": {
  601. "rotate": [
  602. { "time": 0, "angle": 0, "curve": "stepped" },
  603. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  604. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  605. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  606. { "time": 2.3333, "angle": 0 }
  607. ],
  608. "translate": [
  609. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  610. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  611. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  612. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  613. { "time": 2.3333, "x": 0, "y": 0 }
  614. ],
  615. "scale": [
  616. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  617. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  618. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  619. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  620. { "time": 2.3333, "x": 1, "y": 1 }
  621. ]
  622. },
  623. "bone3": {
  624. "rotate": [
  625. { "time": 0, "angle": 0, "curve": "stepped" },
  626. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  627. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  628. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  629. { "time": 2.3333, "angle": 0 }
  630. ],
  631. "translate": [
  632. { "time": 0, "x": 0, "y": 0 },
  633. { "time": 0.5667, "x": 2.36, "y": -0.1 },
  634. { "time": 1.1667, "x": 0, "y": 0 },
  635. { "time": 1.7333, "x": 2.36, "y": -0.1 },
  636. { "time": 2.3333, "x": 0, "y": 0 }
  637. ],
  638. "scale": [
  639. { "time": 0, "x": 1, "y": 1 },
  640. { "time": 0.5667, "x": 1.02, "y": 1 },
  641. { "time": 1.1667, "x": 1, "y": 1 },
  642. { "time": 1.7333, "x": 1.02, "y": 1 },
  643. { "time": 2.3333, "x": 1, "y": 1 }
  644. ]
  645. },
  646. "bone4": {
  647. "rotate": [
  648. { "time": 0, "angle": 0 },
  649. { "time": 0.5667, "angle": -10.35 },
  650. { "time": 1.1667, "angle": 0 },
  651. { "time": 1.7333, "angle": -10.35 },
  652. { "time": 2.3333, "angle": 0 }
  653. ],
  654. "translate": [
  655. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  656. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  657. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  658. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  659. { "time": 2.3333, "x": 0, "y": 0 }
  660. ],
  661. "scale": [
  662. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  663. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  664. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  665. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  666. { "time": 2.3333, "x": 1, "y": 1 }
  667. ]
  668. },
  669. "bone5": {
  670. "rotate": [
  671. { "time": 0, "angle": 0 },
  672. { "time": 0.5667, "angle": 14.62 },
  673. { "time": 1.1667, "angle": 0 },
  674. { "time": 1.7333, "angle": 14.62 },
  675. { "time": 2.3333, "angle": 0 }
  676. ],
  677. "translate": [
  678. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  679. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  680. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  681. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  682. { "time": 2.3333, "x": 0, "y": 0 }
  683. ],
  684. "scale": [
  685. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  686. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  687. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  688. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  689. { "time": 2.3333, "x": 1, "y": 1 }
  690. ]
  691. },
  692. "bone6": {
  693. "rotate": [
  694. { "time": 0, "angle": 0 },
  695. { "time": 0.5667, "angle": 14.03 },
  696. { "time": 1.1667, "angle": 0 },
  697. { "time": 1.7333, "angle": 14.03 },
  698. { "time": 2.3333, "angle": 0 }
  699. ],
  700. "translate": [
  701. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  702. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  703. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  704. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  705. { "time": 2.3333, "x": 0, "y": 0 }
  706. ],
  707. "scale": [
  708. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  709. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  710. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  711. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  712. { "time": 2.3333, "x": 1, "y": 1 }
  713. ]
  714. },
  715. "bone7": {
  716. "rotate": [
  717. { "time": 0, "angle": 0 },
  718. { "time": 0.5667, "angle": 10 },
  719. { "time": 1.1667, "angle": 0 },
  720. { "time": 1.7333, "angle": 10 },
  721. { "time": 2.3333, "angle": 0 }
  722. ],
  723. "translate": [
  724. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  725. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  726. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  727. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  728. { "time": 2.3333, "x": 0, "y": 0 }
  729. ],
  730. "scale": [
  731. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  732. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  733. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  734. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  735. { "time": 2.3333, "x": 1, "y": 1 }
  736. ]
  737. },
  738. "bone8": {
  739. "rotate": [
  740. { "time": 0, "angle": 0 },
  741. { "time": 0.5667, "angle": -11.51 },
  742. { "time": 1.1667, "angle": 0 },
  743. { "time": 1.7333, "angle": -11.51 },
  744. { "time": 2.3333, "angle": 0 }
  745. ],
  746. "translate": [
  747. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  748. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  749. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  750. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  751. { "time": 2.3333, "x": 0, "y": 0 }
  752. ],
  753. "scale": [
  754. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  755. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  756. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  757. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  758. { "time": 2.3333, "x": 1, "y": 1 }
  759. ]
  760. },
  761. "bone9": {
  762. "rotate": [
  763. { "time": 0, "angle": 0, "curve": "stepped" },
  764. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  765. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  766. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  767. { "time": 2.3333, "angle": 0 }
  768. ],
  769. "translate": [
  770. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  771. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  772. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  773. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  774. { "time": 2.3333, "x": 0, "y": 0 }
  775. ],
  776. "scale": [
  777. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  778. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  779. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  780. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  781. { "time": 2.3333, "x": 1, "y": 1 }
  782. ]
  783. },
  784. "bone10": {
  785. "rotate": [
  786. { "time": 0, "angle": 0, "curve": "stepped" },
  787. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  788. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  789. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  790. { "time": 2.3333, "angle": 0 }
  791. ],
  792. "translate": [
  793. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  794. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  795. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  796. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  797. { "time": 2.3333, "x": 0, "y": 0 }
  798. ],
  799. "scale": [
  800. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  801. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  802. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  803. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  804. { "time": 2.3333, "x": 1, "y": 1 }
  805. ]
  806. },
  807. "bone11": {
  808. "rotate": [
  809. { "time": 0, "angle": 0, "curve": "stepped" },
  810. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  811. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  812. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  813. { "time": 2.3333, "angle": 0 }
  814. ],
  815. "translate": [
  816. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  817. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  818. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  819. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  820. { "time": 2.3333, "x": 0, "y": 0 }
  821. ],
  822. "scale": [
  823. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  824. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  825. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  826. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  827. { "time": 2.3333, "x": 1, "y": 1 }
  828. ]
  829. },
  830. "bone12": {
  831. "rotate": [
  832. { "time": 0, "angle": 0, "curve": "stepped" },
  833. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  834. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  835. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  836. { "time": 2.3333, "angle": 0 }
  837. ],
  838. "translate": [
  839. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  840. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  841. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  842. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  843. { "time": 2.3333, "x": 0, "y": 0 }
  844. ],
  845. "scale": [
  846. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  847. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  848. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  849. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  850. { "time": 2.3333, "x": 1, "y": 1 }
  851. ]
  852. },
  853. "bone13": {
  854. "rotate": [
  855. { "time": 0, "angle": 0, "curve": "stepped" },
  856. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  857. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  858. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  859. { "time": 2.3333, "angle": 0 }
  860. ],
  861. "translate": [
  862. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  863. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  864. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  865. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  866. { "time": 2.3333, "x": 0, "y": 0 }
  867. ],
  868. "scale": [
  869. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  870. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  871. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  872. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  873. { "time": 2.3333, "x": 1, "y": 1 }
  874. ]
  875. },
  876. "bone14": {
  877. "rotate": [
  878. { "time": 0, "angle": 0, "curve": "stepped" },
  879. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  880. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  881. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  882. { "time": 2.3333, "angle": 0 }
  883. ],
  884. "translate": [
  885. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  886. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  887. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  888. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  889. { "time": 2.3333, "x": 0, "y": 0 }
  890. ],
  891. "scale": [
  892. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  893. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  894. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  895. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  896. { "time": 2.3333, "x": 1, "y": 1 }
  897. ]
  898. },
  899. "bone15": {
  900. "rotate": [
  901. { "time": 0, "angle": 0, "curve": "stepped" },
  902. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  903. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  904. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  905. { "time": 2.3333, "angle": 0 }
  906. ],
  907. "translate": [
  908. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  909. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  910. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  911. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  912. { "time": 2.3333, "x": 0, "y": 0 }
  913. ],
  914. "scale": [
  915. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  916. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  917. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  918. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  919. { "time": 2.3333, "x": 1, "y": 1 }
  920. ]
  921. },
  922. "bone16": {
  923. "rotate": [
  924. { "time": 0, "angle": 0, "curve": "stepped" },
  925. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  926. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  927. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  928. { "time": 2.3333, "angle": 0 }
  929. ],
  930. "translate": [
  931. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  932. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  933. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  934. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  935. { "time": 2.3333, "x": 0, "y": 0 }
  936. ],
  937. "scale": [
  938. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  939. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  940. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  941. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  942. { "time": 2.3333, "x": 1, "y": 1 }
  943. ]
  944. },
  945. "bone17": {
  946. "rotate": [
  947. { "time": 0, "angle": 0, "curve": "stepped" },
  948. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  949. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  950. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  951. { "time": 2.3333, "angle": 0 }
  952. ],
  953. "translate": [
  954. { "time": 0, "x": 0, "y": 0 },
  955. { "time": 0.5667, "x": 0.68, "y": -0.54 },
  956. { "time": 1.1667, "x": 0, "y": 0 },
  957. { "time": 1.7333, "x": 0.68, "y": -0.54 },
  958. { "time": 2.3333, "x": 0, "y": 0 }
  959. ],
  960. "scale": [
  961. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  962. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  963. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  964. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  965. { "time": 2.3333, "x": 1, "y": 1 }
  966. ]
  967. },
  968. "bone18": {
  969. "rotate": [
  970. { "time": 0, "angle": 0 },
  971. { "time": 0.5667, "angle": -3.27 },
  972. { "time": 1.1667, "angle": 0 },
  973. { "time": 1.7333, "angle": -3.27 },
  974. { "time": 2.3333, "angle": 0 }
  975. ],
  976. "translate": [
  977. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  978. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  979. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  980. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  981. { "time": 2.3333, "x": 0, "y": 0 }
  982. ],
  983. "scale": [
  984. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  985. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  986. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  987. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  988. { "time": 2.3333, "x": 1, "y": 1 }
  989. ]
  990. },
  991. "bone19": {
  992. "rotate": [
  993. { "time": 0, "angle": 0 },
  994. { "time": 0.5667, "angle": -9.38 },
  995. { "time": 1.1667, "angle": 0 },
  996. { "time": 1.7333, "angle": -9.38 },
  997. { "time": 2.3333, "angle": 0 }
  998. ],
  999. "translate": [
  1000. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1001. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1002. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1003. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1004. { "time": 2.3333, "x": 0, "y": 0 }
  1005. ],
  1006. "scale": [
  1007. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1008. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1009. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1010. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1011. { "time": 2.3333, "x": 1, "y": 1 }
  1012. ]
  1013. },
  1014. "bone20": {
  1015. "rotate": [
  1016. { "time": 0, "angle": 0, "curve": "stepped" },
  1017. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  1018. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  1019. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  1020. { "time": 2.3333, "angle": 0 }
  1021. ],
  1022. "translate": [
  1023. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1024. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1025. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1026. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1027. { "time": 2.3333, "x": 0, "y": 0 }
  1028. ],
  1029. "scale": [
  1030. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1031. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1032. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1033. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1034. { "time": 2.3333, "x": 1, "y": 1 }
  1035. ]
  1036. },
  1037. "bone21": {
  1038. "rotate": [
  1039. { "time": 0, "angle": 0 },
  1040. { "time": 0.5667, "angle": 10.05 },
  1041. { "time": 1.1667, "angle": 0 },
  1042. { "time": 1.7333, "angle": 10.05 },
  1043. { "time": 2.3333, "angle": 0 }
  1044. ],
  1045. "translate": [
  1046. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1047. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1048. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1049. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1050. { "time": 2.3333, "x": 0, "y": 0 }
  1051. ],
  1052. "scale": [
  1053. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1054. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1055. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1056. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1057. { "time": 2.3333, "x": 1, "y": 1 }
  1058. ]
  1059. },
  1060. "bone22": {
  1061. "rotate": [
  1062. { "time": 0, "angle": 0 },
  1063. { "time": 0.5667, "angle": 10.42 },
  1064. { "time": 1.1667, "angle": 0 },
  1065. { "time": 1.7333, "angle": 10.42 },
  1066. { "time": 2.3333, "angle": 0 }
  1067. ],
  1068. "translate": [
  1069. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1070. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1071. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1072. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1073. { "time": 2.3333, "x": 0, "y": 0 }
  1074. ],
  1075. "scale": [
  1076. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1077. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1078. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1079. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1080. { "time": 2.3333, "x": 1, "y": 1 }
  1081. ]
  1082. },
  1083. "bone23": {
  1084. "rotate": [
  1085. { "time": 0, "angle": 0 },
  1086. { "time": 0.5667, "angle": 3.02 },
  1087. { "time": 1.1667, "angle": 0 },
  1088. { "time": 1.7333, "angle": 3.02 },
  1089. { "time": 2.3333, "angle": 0 }
  1090. ],
  1091. "translate": [
  1092. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1093. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1094. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1095. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1096. { "time": 2.3333, "x": 0, "y": 0 }
  1097. ],
  1098. "scale": [
  1099. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1100. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1101. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1102. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1103. { "time": 2.3333, "x": 1, "y": 1 }
  1104. ]
  1105. },
  1106. "bone24": {
  1107. "rotate": [
  1108. { "time": 0, "angle": 0, "curve": "stepped" },
  1109. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  1110. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  1111. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  1112. { "time": 2.3333, "angle": 0 }
  1113. ],
  1114. "translate": [
  1115. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1116. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1117. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1118. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1119. { "time": 2.3333, "x": 0, "y": 0 }
  1120. ],
  1121. "scale": [
  1122. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1123. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1124. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1125. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1126. { "time": 2.3333, "x": 1, "y": 1 }
  1127. ]
  1128. },
  1129. "bone25": {
  1130. "rotate": [
  1131. { "time": 0, "angle": 0, "curve": "stepped" },
  1132. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  1133. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  1134. { "time": 1.4333, "angle": 0, "curve": "stepped" },
  1135. { "time": 1.5333, "angle": 0, "curve": "stepped" },
  1136. { "time": 1.6333, "angle": 0, "curve": "stepped" },
  1137. { "time": 1.9, "angle": 0, "curve": "stepped" },
  1138. { "time": 2.3333, "angle": 0 }
  1139. ],
  1140. "translate": [
  1141. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1142. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1143. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1144. { "time": 1.4333, "x": 0, "y": 0, "curve": "stepped" },
  1145. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  1146. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  1147. { "time": 1.9, "x": 0, "y": 0, "curve": "stepped" },
  1148. { "time": 2.3333, "x": 0, "y": 0 }
  1149. ],
  1150. "scale": [
  1151. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1152. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1153. { "time": 1.3333, "x": 1, "y": 1 },
  1154. { "time": 1.4333, "x": 0.384, "y": 1, "curve": "stepped" },
  1155. { "time": 1.5333, "x": 0.384, "y": 1 },
  1156. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  1157. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  1158. { "time": 2.3333, "x": 1, "y": 1 }
  1159. ]
  1160. },
  1161. "bone26": {
  1162. "rotate": [
  1163. { "time": 0, "angle": 0, "curve": "stepped" },
  1164. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  1165. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  1166. { "time": 1.4333, "angle": 0, "curve": "stepped" },
  1167. { "time": 1.5333, "angle": 0, "curve": "stepped" },
  1168. { "time": 1.6333, "angle": 0, "curve": "stepped" },
  1169. { "time": 1.9, "angle": 0, "curve": "stepped" },
  1170. { "time": 2.3333, "angle": 0 }
  1171. ],
  1172. "translate": [
  1173. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1174. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1175. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1176. { "time": 1.4333, "x": 0, "y": 0, "curve": "stepped" },
  1177. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  1178. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  1179. { "time": 1.9, "x": 0, "y": 0, "curve": "stepped" },
  1180. { "time": 2.3333, "x": 0, "y": 0 }
  1181. ],
  1182. "scale": [
  1183. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1184. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1185. { "time": 1.3333, "x": 1, "y": 1 },
  1186. { "time": 1.4333, "x": 0.384, "y": 1, "curve": "stepped" },
  1187. { "time": 1.5333, "x": 0.384, "y": 1 },
  1188. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  1189. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  1190. { "time": 2.3333, "x": 1, "y": 1 }
  1191. ]
  1192. },
  1193. "bone28": {
  1194. "rotate": [
  1195. { "time": 0, "angle": 0, "curve": "stepped" },
  1196. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  1197. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  1198. { "time": 1.4333, "angle": 0, "curve": "stepped" },
  1199. { "time": 1.5333, "angle": 0, "curve": "stepped" },
  1200. { "time": 1.6333, "angle": 0, "curve": "stepped" },
  1201. { "time": 1.9, "angle": 0, "curve": "stepped" },
  1202. { "time": 2.3333, "angle": 0 }
  1203. ],
  1204. "translate": [
  1205. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1206. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1207. { "time": 1.3333, "x": 0, "y": 0 },
  1208. { "time": 1.4333, "x": -2.59, "y": 0.09, "curve": "stepped" },
  1209. { "time": 1.5333, "x": -2.59, "y": 0.09 },
  1210. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  1211. { "time": 1.9, "x": 0, "y": 0, "curve": "stepped" },
  1212. { "time": 2.3333, "x": 0, "y": 0 }
  1213. ],
  1214. "scale": [
  1215. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1216. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1217. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1218. { "time": 1.4333, "x": 1, "y": 1, "curve": "stepped" },
  1219. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  1220. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  1221. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  1222. { "time": 2.3333, "x": 1, "y": 1 }
  1223. ]
  1224. },
  1225. "bone29": {
  1226. "rotate": [
  1227. { "time": 0, "angle": 0, "curve": "stepped" },
  1228. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  1229. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  1230. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  1231. { "time": 2.3333, "angle": 0 }
  1232. ],
  1233. "translate": [
  1234. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1235. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1236. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1237. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1238. { "time": 2.3333, "x": 0, "y": 0 }
  1239. ],
  1240. "scale": [
  1241. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1242. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1243. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1244. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1245. { "time": 2.3333, "x": 1, "y": 1 }
  1246. ]
  1247. },
  1248. "bone30": {
  1249. "rotate": [
  1250. { "time": 0, "angle": 0, "curve": "stepped" },
  1251. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  1252. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  1253. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  1254. { "time": 2.3333, "angle": 0 }
  1255. ],
  1256. "translate": [
  1257. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1258. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1259. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1260. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1261. { "time": 2.3333, "x": 0, "y": 0 }
  1262. ],
  1263. "scale": [
  1264. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1265. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1266. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1267. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1268. { "time": 2.3333, "x": 1, "y": 1 }
  1269. ]
  1270. },
  1271. "bone31": {
  1272. "rotate": [
  1273. { "time": 0, "angle": 0, "curve": "stepped" },
  1274. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  1275. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  1276. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  1277. { "time": 2.3333, "angle": 0 }
  1278. ],
  1279. "translate": [
  1280. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1281. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1282. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1283. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1284. { "time": 2.3333, "x": 0, "y": 0 }
  1285. ],
  1286. "scale": [
  1287. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1288. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1289. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1290. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1291. { "time": 2.3333, "x": 1, "y": 1 }
  1292. ]
  1293. },
  1294. "bone32": {
  1295. "rotate": [
  1296. { "time": 0, "angle": 0 },
  1297. { "time": 0.5667, "angle": -5.47 },
  1298. { "time": 1.1667, "angle": 0 },
  1299. { "time": 1.7333, "angle": -5.47 },
  1300. { "time": 2.3333, "angle": 0 }
  1301. ],
  1302. "translate": [
  1303. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1304. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1305. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1306. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1307. { "time": 2.3333, "x": 0, "y": 0 }
  1308. ],
  1309. "scale": [
  1310. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1311. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1312. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1313. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1314. { "time": 2.3333, "x": 1, "y": 1 }
  1315. ]
  1316. },
  1317. "bone33": {
  1318. "rotate": [
  1319. { "time": 0, "angle": 0 },
  1320. { "time": 0.5667, "angle": -6 },
  1321. { "time": 1.1667, "angle": 0 },
  1322. { "time": 1.7333, "angle": -6 },
  1323. { "time": 2.3333, "angle": 0 }
  1324. ],
  1325. "translate": [
  1326. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1327. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1328. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1329. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1330. { "time": 2.3333, "x": 0, "y": 0 }
  1331. ],
  1332. "scale": [
  1333. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1334. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1335. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1336. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1337. { "time": 2.3333, "x": 1, "y": 1 }
  1338. ]
  1339. },
  1340. "bone34": {
  1341. "rotate": [
  1342. { "time": 0, "angle": 0 },
  1343. { "time": 0.5667, "angle": -8.01 },
  1344. { "time": 1.1667, "angle": 0 },
  1345. { "time": 1.7333, "angle": -8.01 },
  1346. { "time": 2.3333, "angle": 0 }
  1347. ],
  1348. "translate": [
  1349. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1350. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1351. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1352. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1353. { "time": 2.3333, "x": 0, "y": 0 }
  1354. ],
  1355. "scale": [
  1356. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1357. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1358. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1359. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1360. { "time": 2.3333, "x": 1, "y": 1 }
  1361. ]
  1362. },
  1363. "bone35": {
  1364. "rotate": [
  1365. { "time": 0, "angle": 0 },
  1366. { "time": 0.5667, "angle": 0.78 },
  1367. { "time": 1.1667, "angle": 0 },
  1368. { "time": 1.7333, "angle": 0.78 },
  1369. { "time": 2.3333, "angle": 0 }
  1370. ],
  1371. "translate": [
  1372. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1373. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1374. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1375. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1376. { "time": 2.3333, "x": 0, "y": 0 }
  1377. ],
  1378. "scale": [
  1379. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1380. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1381. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1382. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1383. { "time": 2.3333, "x": 1, "y": 1 }
  1384. ]
  1385. },
  1386. "bone36": {
  1387. "rotate": [
  1388. { "time": 0, "angle": 0 },
  1389. { "time": 0.5667, "angle": 15.5 },
  1390. { "time": 1.1667, "angle": 0 },
  1391. { "time": 1.7333, "angle": 15.5 },
  1392. { "time": 2.3333, "angle": 0 }
  1393. ],
  1394. "translate": [
  1395. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1396. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1397. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1398. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1399. { "time": 2.3333, "x": 0, "y": 0 }
  1400. ],
  1401. "scale": [
  1402. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1403. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1404. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1405. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1406. { "time": 2.3333, "x": 1, "y": 1 }
  1407. ]
  1408. },
  1409. "bone37": {
  1410. "rotate": [
  1411. { "time": 0, "angle": 0 },
  1412. { "time": 0.5667, "angle": 19.79 },
  1413. { "time": 1.1667, "angle": 0 },
  1414. { "time": 1.7333, "angle": 19.79 },
  1415. { "time": 2.3333, "angle": 0 }
  1416. ],
  1417. "translate": [
  1418. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1419. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1420. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1421. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1422. { "time": 2.3333, "x": 0, "y": 0 }
  1423. ],
  1424. "scale": [
  1425. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1426. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1427. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1428. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1429. { "time": 2.3333, "x": 1, "y": 1 }
  1430. ]
  1431. },
  1432. "bone38": {
  1433. "rotate": [
  1434. { "time": 0, "angle": 0, "curve": "stepped" },
  1435. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  1436. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  1437. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  1438. { "time": 2.3333, "angle": 0 }
  1439. ],
  1440. "translate": [
  1441. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1442. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1443. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1444. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1445. { "time": 2.3333, "x": 0, "y": 0 }
  1446. ],
  1447. "scale": [
  1448. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1449. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1450. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1451. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1452. { "time": 2.3333, "x": 1, "y": 1 }
  1453. ]
  1454. },
  1455. "bone39": {
  1456. "rotate": [
  1457. { "time": 0, "angle": 0 },
  1458. { "time": 0.5667, "angle": -13.87 },
  1459. { "time": 1.1667, "angle": 0 },
  1460. { "time": 1.7333, "angle": -13.87 },
  1461. { "time": 2.3333, "angle": 0 }
  1462. ],
  1463. "translate": [
  1464. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1465. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1466. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1467. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1468. { "time": 2.3333, "x": 0, "y": 0 }
  1469. ],
  1470. "scale": [
  1471. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1472. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1473. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1474. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1475. { "time": 2.3333, "x": 1, "y": 1 }
  1476. ]
  1477. },
  1478. "bone40": {
  1479. "rotate": [
  1480. { "time": 0, "angle": 0, "curve": "stepped" },
  1481. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  1482. { "time": 2.3333, "angle": 0 }
  1483. ],
  1484. "translate": [
  1485. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1486. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1487. { "time": 2.3333, "x": 0, "y": 0 }
  1488. ],
  1489. "scale": [
  1490. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1491. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1492. { "time": 2.3333, "x": 1, "y": 1 }
  1493. ]
  1494. },
  1495. "bone41": {
  1496. "rotate": [
  1497. { "time": 0, "angle": 0, "curve": "stepped" },
  1498. { "time": 2.3333, "angle": 0 }
  1499. ],
  1500. "translate": [
  1501. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1502. { "time": 2.3333, "x": 0, "y": 0 }
  1503. ],
  1504. "scale": [
  1505. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1506. { "time": 2.3333, "x": 1, "y": 1 }
  1507. ]
  1508. },
  1509. "bone42": {
  1510. "rotate": [
  1511. { "time": 0, "angle": 0 },
  1512. { "time": 0.5667, "angle": 12.01 },
  1513. { "time": 1.1667, "angle": 0 },
  1514. { "time": 1.7333, "angle": 12.01 },
  1515. { "time": 2.3333, "angle": 0 }
  1516. ],
  1517. "translate": [
  1518. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1519. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1520. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1521. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1522. { "time": 2.3333, "x": 0, "y": 0 }
  1523. ],
  1524. "scale": [
  1525. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1526. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1527. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1528. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1529. { "time": 2.3333, "x": 1, "y": 1 }
  1530. ]
  1531. },
  1532. "bone43": {
  1533. "rotate": [
  1534. { "time": 0, "angle": 16.54 },
  1535. { "time": 0.5667, "angle": 17.84 },
  1536. { "time": 1.1667, "angle": 16.54 },
  1537. { "time": 1.7333, "angle": 17.84 },
  1538. { "time": 2.3333, "angle": 16.54 }
  1539. ],
  1540. "translate": [
  1541. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1542. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1543. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1544. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1545. { "time": 2.3333, "x": 0, "y": 0 }
  1546. ],
  1547. "scale": [
  1548. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1549. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1550. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1551. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1552. { "time": 2.3333, "x": 1, "y": 1 }
  1553. ]
  1554. },
  1555. "bone44": {
  1556. "rotate": [
  1557. { "time": 0, "angle": 0, "curve": "stepped" },
  1558. { "time": 2.3333, "angle": 0 }
  1559. ],
  1560. "translate": [
  1561. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1562. { "time": 2.3333, "x": 0, "y": 0 }
  1563. ],
  1564. "scale": [
  1565. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1566. { "time": 2.3333, "x": 1, "y": 1 }
  1567. ]
  1568. },
  1569. "bone45": {
  1570. "rotate": [
  1571. { "time": 0, "angle": 0 },
  1572. { "time": 0.5667, "angle": 9.52 },
  1573. { "time": 1.1667, "angle": 0 },
  1574. { "time": 1.7333, "angle": 9.52 },
  1575. { "time": 2.3333, "angle": 0 }
  1576. ],
  1577. "translate": [
  1578. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1579. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1580. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1581. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1582. { "time": 2.3333, "x": 0, "y": 0 }
  1583. ],
  1584. "scale": [
  1585. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1586. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1587. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1588. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1589. { "time": 2.3333, "x": 1, "y": 1 }
  1590. ]
  1591. },
  1592. "bone46": {
  1593. "rotate": [
  1594. { "time": 0, "angle": 0 },
  1595. { "time": 0.5667, "angle": -24.63 },
  1596. { "time": 1.1667, "angle": 0 },
  1597. { "time": 1.7333, "angle": -24.63 },
  1598. { "time": 2.3333, "angle": 0 }
  1599. ],
  1600. "translate": [
  1601. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1602. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1603. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1604. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1605. { "time": 2.3333, "x": 0, "y": 0 }
  1606. ],
  1607. "scale": [
  1608. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1609. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1610. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1611. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1612. { "time": 2.3333, "x": 1, "y": 1 }
  1613. ]
  1614. },
  1615. "bone47": {
  1616. "rotate": [
  1617. { "time": 0, "angle": 0 },
  1618. { "time": 0.5667, "angle": -5.14 },
  1619. { "time": 1.1667, "angle": 0 },
  1620. { "time": 1.7333, "angle": -5.14 },
  1621. { "time": 2.3333, "angle": 0 }
  1622. ],
  1623. "translate": [
  1624. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1625. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1626. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1627. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1628. { "time": 2.3333, "x": 0, "y": 0 }
  1629. ],
  1630. "scale": [
  1631. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1632. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1633. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1634. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1635. { "time": 2.3333, "x": 1, "y": 1 }
  1636. ]
  1637. },
  1638. "bone49": {
  1639. "rotate": [
  1640. { "time": 0, "angle": 0, "curve": "stepped" },
  1641. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  1642. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  1643. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  1644. { "time": 2.3333, "angle": 0 }
  1645. ],
  1646. "translate": [
  1647. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1648. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1649. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1650. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1651. { "time": 2.3333, "x": 0, "y": 0 }
  1652. ],
  1653. "scale": [
  1654. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1655. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1656. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1657. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1658. { "time": 2.3333, "x": 1, "y": 1 }
  1659. ]
  1660. },
  1661. "bone50": {
  1662. "rotate": [
  1663. { "time": 0, "angle": 0, "curve": "stepped" },
  1664. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  1665. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  1666. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  1667. { "time": 2.3333, "angle": 0 }
  1668. ],
  1669. "translate": [
  1670. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1671. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1672. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1673. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1674. { "time": 2.3333, "x": 0, "y": 0 }
  1675. ],
  1676. "scale": [
  1677. { "time": 0, "x": 1, "y": 1 },
  1678. { "time": 0.5667, "x": 1.086, "y": 1 },
  1679. { "time": 1.1667, "x": 1, "y": 1 },
  1680. { "time": 1.7333, "x": 1.086, "y": 1 },
  1681. { "time": 2.3333, "x": 1, "y": 1 }
  1682. ]
  1683. },
  1684. "bone51": {
  1685. "rotate": [
  1686. { "time": 0, "angle": 0, "curve": "stepped" },
  1687. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  1688. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  1689. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  1690. { "time": 2.3333, "angle": 0 }
  1691. ],
  1692. "translate": [
  1693. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1694. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1695. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1696. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1697. { "time": 2.3333, "x": 0, "y": 0 }
  1698. ],
  1699. "scale": [
  1700. { "time": 0, "x": 1, "y": 1 },
  1701. { "time": 0.5667, "x": 1.047, "y": 1 },
  1702. { "time": 1.1667, "x": 1, "y": 1 },
  1703. { "time": 1.7333, "x": 1.047, "y": 1 },
  1704. { "time": 2.3333, "x": 1, "y": 1 }
  1705. ]
  1706. },
  1707. "bone52": {
  1708. "rotate": [
  1709. { "time": 0, "angle": 0, "curve": "stepped" },
  1710. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  1711. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  1712. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  1713. { "time": 2.3333, "angle": 0 }
  1714. ],
  1715. "translate": [
  1716. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1717. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1718. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1719. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1720. { "time": 2.3333, "x": 0, "y": 0 }
  1721. ],
  1722. "scale": [
  1723. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1724. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1725. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1726. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1727. { "time": 2.3333, "x": 1, "y": 1 }
  1728. ]
  1729. },
  1730. "bone56": {
  1731. "rotate": [
  1732. { "time": 0, "angle": 0 },
  1733. { "time": 0.5667, "angle": -10.63 },
  1734. { "time": 1.1667, "angle": 0 },
  1735. { "time": 1.7333, "angle": -10.63 },
  1736. { "time": 2.3333, "angle": 0 }
  1737. ],
  1738. "translate": [
  1739. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1740. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1741. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1742. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1743. { "time": 2.3333, "x": 0, "y": 0 }
  1744. ],
  1745. "scale": [
  1746. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1747. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1748. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1749. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1750. { "time": 2.3333, "x": 1, "y": 1 }
  1751. ]
  1752. },
  1753. "bone57": {
  1754. "rotate": [
  1755. { "time": 0, "angle": 0 },
  1756. { "time": 0.5667, "angle": -24.87 },
  1757. { "time": 1.1667, "angle": 0 },
  1758. { "time": 1.7333, "angle": -24.87 },
  1759. { "time": 2.3333, "angle": 0 }
  1760. ],
  1761. "translate": [
  1762. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1763. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1764. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1765. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1766. { "time": 2.3333, "x": 0, "y": 0 }
  1767. ],
  1768. "scale": [
  1769. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1770. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1771. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1772. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1773. { "time": 2.3333, "x": 1, "y": 1 }
  1774. ]
  1775. },
  1776. "bone58": {
  1777. "rotate": [
  1778. { "time": 0, "angle": 0 },
  1779. { "time": 0.5667, "angle": 3.24 },
  1780. { "time": 1.1667, "angle": 0 },
  1781. { "time": 1.7333, "angle": 3.24 },
  1782. { "time": 2.3333, "angle": 0 }
  1783. ],
  1784. "translate": [
  1785. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1786. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1787. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1788. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1789. { "time": 2.3333, "x": 0, "y": 0 }
  1790. ],
  1791. "scale": [
  1792. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1793. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1794. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1795. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1796. { "time": 2.3333, "x": 1, "y": 1 }
  1797. ]
  1798. },
  1799. "bone59": {
  1800. "rotate": [
  1801. { "time": 0, "angle": 0 },
  1802. { "time": 0.5667, "angle": 4.43 },
  1803. { "time": 1.1667, "angle": 0 },
  1804. { "time": 1.7333, "angle": 4.43 },
  1805. { "time": 2.3333, "angle": 0 }
  1806. ],
  1807. "translate": [
  1808. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1809. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1810. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1811. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1812. { "time": 2.3333, "x": 0, "y": 0 }
  1813. ],
  1814. "scale": [
  1815. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1816. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1817. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1818. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1819. { "time": 2.3333, "x": 1, "y": 1 }
  1820. ]
  1821. },
  1822. "bone48": {
  1823. "rotate": [
  1824. { "time": 0, "angle": 0, "curve": "stepped" },
  1825. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  1826. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  1827. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  1828. { "time": 2.3333, "angle": 0 }
  1829. ],
  1830. "translate": [
  1831. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1832. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1833. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1834. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1835. { "time": 2.3333, "x": 0, "y": 0 }
  1836. ],
  1837. "scale": [
  1838. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1839. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1840. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1841. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1842. { "time": 2.3333, "x": 1, "y": 1 }
  1843. ]
  1844. },
  1845. "bone60": {
  1846. "rotate": [
  1847. { "time": 0, "angle": 0, "curve": "stepped" },
  1848. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  1849. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  1850. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  1851. { "time": 2.3333, "angle": 0 }
  1852. ],
  1853. "translate": [
  1854. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1855. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1856. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1857. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1858. { "time": 2.3333, "x": 0, "y": 0 }
  1859. ],
  1860. "scale": [
  1861. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1862. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1863. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1864. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1865. { "time": 2.3333, "x": 1, "y": 1 }
  1866. ]
  1867. }
  1868. },
  1869. "deform": {
  1870. "default": {
  1871. "erji": {
  1872. "erji": [
  1873. { "time": 0 },
  1874. {
  1875. "time": 0.5667,
  1876. "offset": 8,
  1877. "vertices": [ -0.53481, 1.37687 ]
  1878. },
  1879. { "time": 1.1667 },
  1880. {
  1881. "time": 1.7333,
  1882. "offset": 8,
  1883. "vertices": [ -0.53481, 1.37687 ]
  1884. },
  1885. { "time": 2.3333 }
  1886. ]
  1887. }
  1888. }
  1889. }
  1890. },
  1891. "stand2": {
  1892. "slots": {
  1893. "biaoqing_1": {
  1894. "color": [
  1895. { "time": 0, "color": "ffffff00", "curve": "stepped" },
  1896. { "time": 0.7667, "color": "ffffff00" },
  1897. { "time": 0.8667, "color": "ffffffff", "curve": "stepped" },
  1898. { "time": 2.2667, "color": "ffffffff" },
  1899. { "time": 2.3333, "color": "ffffff00" }
  1900. ]
  1901. },
  1902. "biyan": {
  1903. "attachment": [
  1904. { "time": 0, "name": null },
  1905. { "time": 1.3333, "name": null },
  1906. { "time": 1.4333, "name": "biyan" },
  1907. { "time": 1.5333, "name": null },
  1908. { "time": 2.3333, "name": null }
  1909. ]
  1910. },
  1911. "diannao1": {
  1912. "attachment": [
  1913. { "time": 0, "name": null },
  1914. { "time": 1.1667, "name": null },
  1915. { "time": 2.3333, "name": null }
  1916. ]
  1917. },
  1918. "diannao_x": {
  1919. "color": [
  1920. { "time": 0, "color": "ffffff00" }
  1921. ]
  1922. },
  1923. "dou": {
  1924. "attachment": [
  1925. { "time": 0, "name": null },
  1926. { "time": 1.1667, "name": null },
  1927. { "time": 2.3333, "name": null }
  1928. ]
  1929. },
  1930. "dou2": {
  1931. "attachment": [
  1932. { "time": 0, "name": null },
  1933. { "time": 1.1667, "name": null },
  1934. { "time": 2.3333, "name": null }
  1935. ]
  1936. },
  1937. "dou3": {
  1938. "attachment": [
  1939. { "time": 0, "name": null },
  1940. { "time": 1.1667, "name": null },
  1941. { "time": 2.3333, "name": null }
  1942. ]
  1943. },
  1944. "pinmu": {
  1945. "attachment": [
  1946. { "time": 0, "name": null },
  1947. { "time": 1.1667, "name": null },
  1948. { "time": 2.3333, "name": null }
  1949. ]
  1950. },
  1951. "youyan": {
  1952. "attachment": [
  1953. { "time": 1.4333, "name": null },
  1954. { "time": 1.5333, "name": "youyan" }
  1955. ]
  1956. },
  1957. "zuoyan": {
  1958. "attachment": [
  1959. { "time": 1.4333, "name": null },
  1960. { "time": 1.5333, "name": "zuoyan" }
  1961. ]
  1962. }
  1963. },
  1964. "bones": {
  1965. "bone53": {
  1966. "rotate": [
  1967. { "time": 0, "angle": 0, "curve": "stepped" },
  1968. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  1969. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  1970. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  1971. { "time": 2.3333, "angle": 0 }
  1972. ],
  1973. "translate": [
  1974. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1975. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1976. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1977. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1978. { "time": 2.3333, "x": 0, "y": 0 }
  1979. ],
  1980. "scale": [
  1981. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1982. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1983. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1984. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1985. { "time": 2.3333, "x": 1, "y": 1 }
  1986. ]
  1987. },
  1988. "bone55": {
  1989. "rotate": [
  1990. { "time": 0, "angle": 0, "curve": "stepped" },
  1991. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  1992. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  1993. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  1994. { "time": 2.3333, "angle": 0 }
  1995. ],
  1996. "translate": [
  1997. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1998. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1999. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2000. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  2001. { "time": 2.3333, "x": 0, "y": 0 }
  2002. ],
  2003. "scale": [
  2004. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2005. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  2006. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2007. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  2008. { "time": 2.3333, "x": 1, "y": 1 }
  2009. ]
  2010. },
  2011. "bone54": {
  2012. "rotate": [
  2013. { "time": 0, "angle": 0, "curve": "stepped" },
  2014. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  2015. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2016. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  2017. { "time": 2.3333, "angle": 0 }
  2018. ],
  2019. "translate": [
  2020. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2021. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  2022. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2023. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  2024. { "time": 2.3333, "x": 0, "y": 0 }
  2025. ],
  2026. "scale": [
  2027. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2028. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  2029. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2030. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  2031. { "time": 2.3333, "x": 1, "y": 1 }
  2032. ]
  2033. },
  2034. "bone27": {
  2035. "rotate": [
  2036. { "time": 0, "angle": 0, "curve": "stepped" },
  2037. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  2038. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  2039. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  2040. { "time": 2.3333, "angle": 0 }
  2041. ],
  2042. "translate": [
  2043. { "time": 0, "x": -3.08, "y": 0.09, "curve": "stepped" },
  2044. { "time": 2.3333, "x": -3.08, "y": 0.09 }
  2045. ],
  2046. "scale": [
  2047. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2048. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  2049. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2050. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  2051. { "time": 2.3333, "x": 1, "y": 1 }
  2052. ]
  2053. },
  2054. "root": {
  2055. "rotate": [
  2056. { "time": 0, "angle": 0 }
  2057. ],
  2058. "translate": [
  2059. { "time": 0, "x": 0, "y": 0 }
  2060. ],
  2061. "scale": [
  2062. { "time": 0, "x": 0.65, "y": 0.65 }
  2063. ]
  2064. },
  2065. "bone": {
  2066. "rotate": [
  2067. { "time": 0, "angle": 0, "curve": "stepped" },
  2068. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  2069. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2070. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  2071. { "time": 2.3333, "angle": 0 }
  2072. ],
  2073. "translate": [
  2074. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2075. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  2076. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2077. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  2078. { "time": 2.3333, "x": 0, "y": 0 }
  2079. ],
  2080. "scale": [
  2081. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2082. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  2083. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2084. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  2085. { "time": 2.3333, "x": 1, "y": 1 }
  2086. ]
  2087. },
  2088. "bone2": {
  2089. "rotate": [
  2090. { "time": 0, "angle": 0, "curve": "stepped" },
  2091. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  2092. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2093. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  2094. { "time": 2.3333, "angle": 0 }
  2095. ],
  2096. "translate": [
  2097. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2098. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  2099. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2100. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  2101. { "time": 2.3333, "x": 0, "y": 0 }
  2102. ],
  2103. "scale": [
  2104. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2105. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  2106. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2107. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  2108. { "time": 2.3333, "x": 1, "y": 1 }
  2109. ]
  2110. },
  2111. "bone3": {
  2112. "rotate": [
  2113. { "time": 0, "angle": 0, "curve": "stepped" },
  2114. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  2115. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2116. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  2117. { "time": 2.3333, "angle": 0 }
  2118. ],
  2119. "translate": [
  2120. { "time": 0, "x": 0, "y": 0 },
  2121. { "time": 0.5667, "x": 2.36, "y": -0.1 },
  2122. { "time": 1.1667, "x": 0, "y": 0 },
  2123. { "time": 1.7333, "x": 2.36, "y": -0.1 },
  2124. { "time": 2.3333, "x": 0, "y": 0 }
  2125. ],
  2126. "scale": [
  2127. { "time": 0, "x": 1, "y": 1 },
  2128. { "time": 0.5667, "x": 1.02, "y": 1 },
  2129. { "time": 1.1667, "x": 1, "y": 1 },
  2130. { "time": 1.7333, "x": 1.02, "y": 1 },
  2131. { "time": 2.3333, "x": 1, "y": 1 }
  2132. ]
  2133. },
  2134. "bone4": {
  2135. "rotate": [
  2136. { "time": 0, "angle": 0 },
  2137. { "time": 0.5667, "angle": -10.35 },
  2138. { "time": 1.1667, "angle": 0 },
  2139. { "time": 1.7333, "angle": -10.35 },
  2140. { "time": 2.3333, "angle": 0 }
  2141. ],
  2142. "translate": [
  2143. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2144. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  2145. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2146. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  2147. { "time": 2.3333, "x": 0, "y": 0 }
  2148. ],
  2149. "scale": [
  2150. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2151. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  2152. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2153. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  2154. { "time": 2.3333, "x": 1, "y": 1 }
  2155. ]
  2156. },
  2157. "bone5": {
  2158. "rotate": [
  2159. { "time": 0, "angle": 0 },
  2160. { "time": 0.5667, "angle": 14.62 },
  2161. { "time": 1.1667, "angle": 0 },
  2162. { "time": 1.7333, "angle": 14.62 },
  2163. { "time": 2.3333, "angle": 0 }
  2164. ],
  2165. "translate": [
  2166. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2167. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  2168. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2169. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  2170. { "time": 2.3333, "x": 0, "y": 0 }
  2171. ],
  2172. "scale": [
  2173. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2174. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  2175. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2176. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  2177. { "time": 2.3333, "x": 1, "y": 1 }
  2178. ]
  2179. },
  2180. "bone6": {
  2181. "rotate": [
  2182. { "time": 0, "angle": 0 },
  2183. { "time": 0.5667, "angle": 14.03 },
  2184. { "time": 1.1667, "angle": 0 },
  2185. { "time": 1.7333, "angle": 14.03 },
  2186. { "time": 2.3333, "angle": 0 }
  2187. ],
  2188. "translate": [
  2189. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2190. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  2191. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2192. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  2193. { "time": 2.3333, "x": 0, "y": 0 }
  2194. ],
  2195. "scale": [
  2196. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2197. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  2198. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2199. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  2200. { "time": 2.3333, "x": 1, "y": 1 }
  2201. ]
  2202. },
  2203. "bone7": {
  2204. "rotate": [
  2205. { "time": 0, "angle": 0 },
  2206. { "time": 0.5667, "angle": 10 },
  2207. { "time": 1.1667, "angle": 0 },
  2208. { "time": 1.7333, "angle": 10 },
  2209. { "time": 2.3333, "angle": 0 }
  2210. ],
  2211. "translate": [
  2212. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2213. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  2214. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2215. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  2216. { "time": 2.3333, "x": 0, "y": 0 }
  2217. ],
  2218. "scale": [
  2219. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2220. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  2221. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2222. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  2223. { "time": 2.3333, "x": 1, "y": 1 }
  2224. ]
  2225. },
  2226. "bone8": {
  2227. "rotate": [
  2228. { "time": 0, "angle": 0 },
  2229. { "time": 0.5667, "angle": -11.51 },
  2230. { "time": 1.1667, "angle": 0 },
  2231. { "time": 1.7333, "angle": -11.51 },
  2232. { "time": 2.3333, "angle": 0 }
  2233. ],
  2234. "translate": [
  2235. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2236. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  2237. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2238. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  2239. { "time": 2.3333, "x": 0, "y": 0 }
  2240. ],
  2241. "scale": [
  2242. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2243. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  2244. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2245. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  2246. { "time": 2.3333, "x": 1, "y": 1 }
  2247. ]
  2248. },
  2249. "bone9": {
  2250. "rotate": [
  2251. { "time": 0, "angle": 0, "curve": "stepped" },
  2252. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  2253. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2254. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  2255. { "time": 2.3333, "angle": 0 }
  2256. ],
  2257. "translate": [
  2258. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2259. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  2260. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2261. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  2262. { "time": 2.3333, "x": 0, "y": 0 }
  2263. ],
  2264. "scale": [
  2265. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2266. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  2267. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2268. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  2269. { "time": 2.3333, "x": 1, "y": 1 }
  2270. ]
  2271. },
  2272. "bone10": {
  2273. "rotate": [
  2274. { "time": 0, "angle": 0, "curve": "stepped" },
  2275. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  2276. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2277. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  2278. { "time": 2.3333, "angle": 0 }
  2279. ],
  2280. "translate": [
  2281. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2282. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  2283. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2284. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  2285. { "time": 2.3333, "x": 0, "y": 0 }
  2286. ],
  2287. "scale": [
  2288. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2289. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  2290. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2291. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  2292. { "time": 2.3333, "x": 1, "y": 1 }
  2293. ]
  2294. },
  2295. "bone11": {
  2296. "rotate": [
  2297. { "time": 0, "angle": 0, "curve": "stepped" },
  2298. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  2299. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2300. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  2301. { "time": 2.3333, "angle": 0 }
  2302. ],
  2303. "translate": [
  2304. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2305. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  2306. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2307. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  2308. { "time": 2.3333, "x": 0, "y": 0 }
  2309. ],
  2310. "scale": [
  2311. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2312. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  2313. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2314. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  2315. { "time": 2.3333, "x": 1, "y": 1 }
  2316. ]
  2317. },
  2318. "bone12": {
  2319. "rotate": [
  2320. { "time": 0, "angle": 0, "curve": "stepped" },
  2321. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  2322. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2323. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  2324. { "time": 2.3333, "angle": 0 }
  2325. ],
  2326. "translate": [
  2327. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2328. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  2329. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2330. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  2331. { "time": 2.3333, "x": 0, "y": 0 }
  2332. ],
  2333. "scale": [
  2334. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2335. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  2336. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2337. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  2338. { "time": 2.3333, "x": 1, "y": 1 }
  2339. ]
  2340. },
  2341. "bone13": {
  2342. "rotate": [
  2343. { "time": 0, "angle": 0, "curve": "stepped" },
  2344. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  2345. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2346. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  2347. { "time": 2.3333, "angle": 0 }
  2348. ],
  2349. "translate": [
  2350. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2351. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  2352. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2353. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  2354. { "time": 2.3333, "x": 0, "y": 0 }
  2355. ],
  2356. "scale": [
  2357. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2358. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  2359. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2360. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  2361. { "time": 2.3333, "x": 1, "y": 1 }
  2362. ]
  2363. },
  2364. "bone14": {
  2365. "rotate": [
  2366. { "time": 0, "angle": 0, "curve": "stepped" },
  2367. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  2368. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2369. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  2370. { "time": 2.3333, "angle": 0 }
  2371. ],
  2372. "translate": [
  2373. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2374. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  2375. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2376. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  2377. { "time": 2.3333, "x": 0, "y": 0 }
  2378. ],
  2379. "scale": [
  2380. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2381. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  2382. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2383. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  2384. { "time": 2.3333, "x": 1, "y": 1 }
  2385. ]
  2386. },
  2387. "bone15": {
  2388. "rotate": [
  2389. { "time": 0, "angle": 0, "curve": "stepped" },
  2390. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  2391. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2392. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  2393. { "time": 2.3333, "angle": 0 }
  2394. ],
  2395. "translate": [
  2396. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2397. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  2398. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2399. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  2400. { "time": 2.3333, "x": 0, "y": 0 }
  2401. ],
  2402. "scale": [
  2403. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2404. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  2405. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2406. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  2407. { "time": 2.3333, "x": 1, "y": 1 }
  2408. ]
  2409. },
  2410. "bone16": {
  2411. "rotate": [
  2412. { "time": 0, "angle": 0, "curve": "stepped" },
  2413. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  2414. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2415. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  2416. { "time": 2.3333, "angle": 0 }
  2417. ],
  2418. "translate": [
  2419. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2420. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  2421. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2422. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  2423. { "time": 2.3333, "x": 0, "y": 0 }
  2424. ],
  2425. "scale": [
  2426. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2427. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  2428. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2429. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  2430. { "time": 2.3333, "x": 1, "y": 1 }
  2431. ]
  2432. },
  2433. "bone17": {
  2434. "rotate": [
  2435. { "time": 0, "angle": 0, "curve": "stepped" },
  2436. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  2437. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2438. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  2439. { "time": 2.3333, "angle": 0 }
  2440. ],
  2441. "translate": [
  2442. { "time": 0, "x": 0, "y": 0 },
  2443. { "time": 0.5667, "x": 0.68, "y": -0.54 },
  2444. { "time": 1.1667, "x": 0, "y": 0 },
  2445. { "time": 1.7333, "x": 0.68, "y": -0.54 },
  2446. { "time": 2.3333, "x": 0, "y": 0 }
  2447. ],
  2448. "scale": [
  2449. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2450. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  2451. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2452. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  2453. { "time": 2.3333, "x": 1, "y": 1 }
  2454. ]
  2455. },
  2456. "bone18": {
  2457. "rotate": [
  2458. { "time": 0, "angle": 0 },
  2459. { "time": 0.5667, "angle": -3.27 },
  2460. { "time": 1.1667, "angle": 0 },
  2461. { "time": 1.7333, "angle": -3.27 },
  2462. { "time": 2.3333, "angle": 0 }
  2463. ],
  2464. "translate": [
  2465. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2466. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  2467. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2468. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  2469. { "time": 2.3333, "x": 0, "y": 0 }
  2470. ],
  2471. "scale": [
  2472. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2473. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  2474. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2475. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  2476. { "time": 2.3333, "x": 1, "y": 1 }
  2477. ]
  2478. },
  2479. "bone19": {
  2480. "rotate": [
  2481. { "time": 0, "angle": 0 },
  2482. { "time": 0.5667, "angle": -9.38 },
  2483. { "time": 1.1667, "angle": 0 },
  2484. { "time": 1.7333, "angle": -9.38 },
  2485. { "time": 2.3333, "angle": 0 }
  2486. ],
  2487. "translate": [
  2488. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2489. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  2490. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2491. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  2492. { "time": 2.3333, "x": 0, "y": 0 }
  2493. ],
  2494. "scale": [
  2495. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2496. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  2497. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2498. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  2499. { "time": 2.3333, "x": 1, "y": 1 }
  2500. ]
  2501. },
  2502. "bone20": {
  2503. "rotate": [
  2504. { "time": 0, "angle": 0, "curve": "stepped" },
  2505. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  2506. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2507. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  2508. { "time": 2.3333, "angle": 0 }
  2509. ],
  2510. "translate": [
  2511. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2512. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  2513. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2514. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  2515. { "time": 2.3333, "x": 0, "y": 0 }
  2516. ],
  2517. "scale": [
  2518. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2519. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  2520. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2521. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  2522. { "time": 2.3333, "x": 1, "y": 1 }
  2523. ]
  2524. },
  2525. "bone21": {
  2526. "rotate": [
  2527. { "time": 0, "angle": 0 },
  2528. { "time": 0.5667, "angle": 10.05 },
  2529. { "time": 1.1667, "angle": 0 },
  2530. { "time": 1.7333, "angle": 10.05 },
  2531. { "time": 2.3333, "angle": 0 }
  2532. ],
  2533. "translate": [
  2534. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2535. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  2536. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2537. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  2538. { "time": 2.3333, "x": 0, "y": 0 }
  2539. ],
  2540. "scale": [
  2541. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2542. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  2543. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2544. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  2545. { "time": 2.3333, "x": 1, "y": 1 }
  2546. ]
  2547. },
  2548. "bone22": {
  2549. "rotate": [
  2550. { "time": 0, "angle": 0 },
  2551. { "time": 0.5667, "angle": 10.42 },
  2552. { "time": 1.1667, "angle": 0 },
  2553. { "time": 1.7333, "angle": 10.42 },
  2554. { "time": 2.3333, "angle": 0 }
  2555. ],
  2556. "translate": [
  2557. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2558. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  2559. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2560. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  2561. { "time": 2.3333, "x": 0, "y": 0 }
  2562. ],
  2563. "scale": [
  2564. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2565. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  2566. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2567. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  2568. { "time": 2.3333, "x": 1, "y": 1 }
  2569. ]
  2570. },
  2571. "bone23": {
  2572. "rotate": [
  2573. { "time": 0, "angle": 0 },
  2574. { "time": 0.5667, "angle": 3.02 },
  2575. { "time": 1.1667, "angle": 0 },
  2576. { "time": 1.7333, "angle": 3.02 },
  2577. { "time": 2.3333, "angle": 0 }
  2578. ],
  2579. "translate": [
  2580. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2581. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  2582. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2583. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  2584. { "time": 2.3333, "x": 0, "y": 0 }
  2585. ],
  2586. "scale": [
  2587. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2588. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  2589. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2590. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  2591. { "time": 2.3333, "x": 1, "y": 1 }
  2592. ]
  2593. },
  2594. "bone24": {
  2595. "rotate": [
  2596. { "time": 0, "angle": 0, "curve": "stepped" },
  2597. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  2598. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2599. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  2600. { "time": 2.3333, "angle": 0 }
  2601. ],
  2602. "translate": [
  2603. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2604. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  2605. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2606. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  2607. { "time": 2.3333, "x": 0, "y": 0 }
  2608. ],
  2609. "scale": [
  2610. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2611. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  2612. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2613. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  2614. { "time": 2.3333, "x": 1, "y": 1 }
  2615. ]
  2616. },
  2617. "bone25": {
  2618. "rotate": [
  2619. { "time": 0, "angle": 0, "curve": "stepped" },
  2620. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  2621. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  2622. { "time": 1.4333, "angle": 0, "curve": "stepped" },
  2623. { "time": 1.5333, "angle": 0, "curve": "stepped" },
  2624. { "time": 1.6333, "angle": 0, "curve": "stepped" },
  2625. { "time": 1.9, "angle": 0, "curve": "stepped" },
  2626. { "time": 2.3333, "angle": 0 }
  2627. ],
  2628. "translate": [
  2629. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2630. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  2631. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2632. { "time": 1.4333, "x": 0, "y": 0, "curve": "stepped" },
  2633. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  2634. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  2635. { "time": 1.9, "x": 0, "y": 0, "curve": "stepped" },
  2636. { "time": 2.3333, "x": 0, "y": 0 }
  2637. ],
  2638. "scale": [
  2639. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2640. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  2641. { "time": 1.3333, "x": 1, "y": 1 },
  2642. { "time": 1.4333, "x": 0.384, "y": 1, "curve": "stepped" },
  2643. { "time": 1.5333, "x": 0.384, "y": 1 },
  2644. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  2645. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  2646. { "time": 2.3333, "x": 1, "y": 1 }
  2647. ]
  2648. },
  2649. "bone26": {
  2650. "rotate": [
  2651. { "time": 0, "angle": 0, "curve": "stepped" },
  2652. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  2653. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  2654. { "time": 1.4333, "angle": 0, "curve": "stepped" },
  2655. { "time": 1.5333, "angle": 0, "curve": "stepped" },
  2656. { "time": 1.6333, "angle": 0, "curve": "stepped" },
  2657. { "time": 1.9, "angle": 0, "curve": "stepped" },
  2658. { "time": 2.3333, "angle": 0 }
  2659. ],
  2660. "translate": [
  2661. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2662. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  2663. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2664. { "time": 1.4333, "x": 0, "y": 0, "curve": "stepped" },
  2665. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  2666. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  2667. { "time": 1.9, "x": 0, "y": 0, "curve": "stepped" },
  2668. { "time": 2.3333, "x": 0, "y": 0 }
  2669. ],
  2670. "scale": [
  2671. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2672. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  2673. { "time": 1.3333, "x": 1, "y": 1 },
  2674. { "time": 1.4333, "x": 0.384, "y": 1, "curve": "stepped" },
  2675. { "time": 1.5333, "x": 0.384, "y": 1 },
  2676. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  2677. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  2678. { "time": 2.3333, "x": 1, "y": 1 }
  2679. ]
  2680. },
  2681. "bone28": {
  2682. "rotate": [
  2683. { "time": 0, "angle": 0, "curve": "stepped" },
  2684. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  2685. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  2686. { "time": 1.4333, "angle": 0, "curve": "stepped" },
  2687. { "time": 1.5333, "angle": 0, "curve": "stepped" },
  2688. { "time": 1.6333, "angle": 0, "curve": "stepped" },
  2689. { "time": 1.9, "angle": 0, "curve": "stepped" },
  2690. { "time": 2.3333, "angle": 0 }
  2691. ],
  2692. "translate": [
  2693. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2694. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  2695. { "time": 1.3333, "x": 0, "y": 0 },
  2696. { "time": 1.4333, "x": -2.59, "y": 0.09, "curve": "stepped" },
  2697. { "time": 1.5333, "x": -2.59, "y": 0.09 },
  2698. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  2699. { "time": 1.9, "x": 0, "y": 0, "curve": "stepped" },
  2700. { "time": 2.3333, "x": 0, "y": 0 }
  2701. ],
  2702. "scale": [
  2703. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2704. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  2705. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2706. { "time": 1.4333, "x": 1, "y": 1, "curve": "stepped" },
  2707. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  2708. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  2709. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  2710. { "time": 2.3333, "x": 1, "y": 1 }
  2711. ]
  2712. },
  2713. "bone29": {
  2714. "rotate": [
  2715. { "time": 0, "angle": 0, "curve": "stepped" },
  2716. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  2717. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2718. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  2719. { "time": 2.3333, "angle": 0 }
  2720. ],
  2721. "translate": [
  2722. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2723. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  2724. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2725. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  2726. { "time": 2.3333, "x": 0, "y": 0 }
  2727. ],
  2728. "scale": [
  2729. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2730. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  2731. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2732. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  2733. { "time": 2.3333, "x": 1, "y": 1 }
  2734. ]
  2735. },
  2736. "bone30": {
  2737. "rotate": [
  2738. { "time": 0, "angle": 0, "curve": "stepped" },
  2739. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  2740. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2741. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  2742. { "time": 2.3333, "angle": 0 }
  2743. ],
  2744. "translate": [
  2745. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2746. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  2747. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2748. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  2749. { "time": 2.3333, "x": 0, "y": 0 }
  2750. ],
  2751. "scale": [
  2752. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2753. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  2754. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2755. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  2756. { "time": 2.3333, "x": 1, "y": 1 }
  2757. ]
  2758. },
  2759. "bone31": {
  2760. "rotate": [
  2761. { "time": 0, "angle": 0, "curve": "stepped" },
  2762. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  2763. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2764. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  2765. { "time": 2.3333, "angle": 0 }
  2766. ],
  2767. "translate": [
  2768. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2769. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  2770. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2771. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  2772. { "time": 2.3333, "x": 0, "y": 0 }
  2773. ],
  2774. "scale": [
  2775. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2776. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  2777. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2778. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  2779. { "time": 2.3333, "x": 1, "y": 1 }
  2780. ]
  2781. },
  2782. "bone32": {
  2783. "rotate": [
  2784. { "time": 0, "angle": 0 },
  2785. { "time": 0.5667, "angle": -5.47 },
  2786. { "time": 1.1667, "angle": 0 },
  2787. { "time": 1.7333, "angle": -5.47 },
  2788. { "time": 2.3333, "angle": 0 }
  2789. ],
  2790. "translate": [
  2791. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2792. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  2793. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2794. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  2795. { "time": 2.3333, "x": 0, "y": 0 }
  2796. ],
  2797. "scale": [
  2798. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2799. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  2800. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2801. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  2802. { "time": 2.3333, "x": 1, "y": 1 }
  2803. ]
  2804. },
  2805. "bone33": {
  2806. "rotate": [
  2807. { "time": 0, "angle": 0 },
  2808. { "time": 0.5667, "angle": -6 },
  2809. { "time": 1.1667, "angle": 0 },
  2810. { "time": 1.7333, "angle": -6 },
  2811. { "time": 2.3333, "angle": 0 }
  2812. ],
  2813. "translate": [
  2814. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2815. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  2816. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2817. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  2818. { "time": 2.3333, "x": 0, "y": 0 }
  2819. ],
  2820. "scale": [
  2821. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2822. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  2823. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2824. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  2825. { "time": 2.3333, "x": 1, "y": 1 }
  2826. ]
  2827. },
  2828. "bone34": {
  2829. "rotate": [
  2830. { "time": 0, "angle": 0 },
  2831. { "time": 0.5667, "angle": -8.01 },
  2832. { "time": 1.1667, "angle": 0 },
  2833. { "time": 1.7333, "angle": -8.01 },
  2834. { "time": 2.3333, "angle": 0 }
  2835. ],
  2836. "translate": [
  2837. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2838. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  2839. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2840. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  2841. { "time": 2.3333, "x": 0, "y": 0 }
  2842. ],
  2843. "scale": [
  2844. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2845. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  2846. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2847. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  2848. { "time": 2.3333, "x": 1, "y": 1 }
  2849. ]
  2850. },
  2851. "bone35": {
  2852. "rotate": [
  2853. { "time": 0, "angle": 0 },
  2854. { "time": 0.5667, "angle": 0.78 },
  2855. { "time": 1.1667, "angle": 0 },
  2856. { "time": 1.7333, "angle": 0.78 },
  2857. { "time": 2.3333, "angle": 0 }
  2858. ],
  2859. "translate": [
  2860. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2861. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  2862. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2863. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  2864. { "time": 2.3333, "x": 0, "y": 0 }
  2865. ],
  2866. "scale": [
  2867. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2868. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  2869. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2870. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  2871. { "time": 2.3333, "x": 1, "y": 1 }
  2872. ]
  2873. },
  2874. "bone36": {
  2875. "rotate": [
  2876. { "time": 0, "angle": 0 },
  2877. { "time": 0.5667, "angle": 15.5 },
  2878. { "time": 1.1667, "angle": 0 },
  2879. { "time": 1.7333, "angle": 15.5 },
  2880. { "time": 2.3333, "angle": 0 }
  2881. ],
  2882. "translate": [
  2883. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2884. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  2885. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2886. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  2887. { "time": 2.3333, "x": 0, "y": 0 }
  2888. ],
  2889. "scale": [
  2890. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2891. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  2892. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2893. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  2894. { "time": 2.3333, "x": 1, "y": 1 }
  2895. ]
  2896. },
  2897. "bone37": {
  2898. "rotate": [
  2899. { "time": 0, "angle": 0 },
  2900. { "time": 0.5667, "angle": 19.79 },
  2901. { "time": 1.1667, "angle": 0 },
  2902. { "time": 1.7333, "angle": 19.79 },
  2903. { "time": 2.3333, "angle": 0 }
  2904. ],
  2905. "translate": [
  2906. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2907. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  2908. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2909. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  2910. { "time": 2.3333, "x": 0, "y": 0 }
  2911. ],
  2912. "scale": [
  2913. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2914. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  2915. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2916. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  2917. { "time": 2.3333, "x": 1, "y": 1 }
  2918. ]
  2919. },
  2920. "bone38": {
  2921. "rotate": [
  2922. { "time": 0, "angle": 0, "curve": "stepped" },
  2923. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  2924. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2925. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  2926. { "time": 2.3333, "angle": 0 }
  2927. ],
  2928. "translate": [
  2929. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2930. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  2931. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2932. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  2933. { "time": 2.3333, "x": 0, "y": 0 }
  2934. ],
  2935. "scale": [
  2936. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2937. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  2938. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2939. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  2940. { "time": 2.3333, "x": 1, "y": 1 }
  2941. ]
  2942. },
  2943. "bone39": {
  2944. "rotate": [
  2945. { "time": 0, "angle": 0 },
  2946. { "time": 0.5667, "angle": -13.87 },
  2947. { "time": 1.1667, "angle": 0 },
  2948. { "time": 1.7333, "angle": -13.87 },
  2949. { "time": 2.3333, "angle": 0 }
  2950. ],
  2951. "translate": [
  2952. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2953. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  2954. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2955. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  2956. { "time": 2.3333, "x": 0, "y": 0 }
  2957. ],
  2958. "scale": [
  2959. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2960. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  2961. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2962. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  2963. { "time": 2.3333, "x": 1, "y": 1 }
  2964. ]
  2965. },
  2966. "bone40": {
  2967. "rotate": [
  2968. { "time": 0, "angle": 0, "curve": "stepped" },
  2969. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2970. { "time": 2.3333, "angle": 0 }
  2971. ],
  2972. "translate": [
  2973. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2974. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2975. { "time": 2.3333, "x": 0, "y": 0 }
  2976. ],
  2977. "scale": [
  2978. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2979. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2980. { "time": 2.3333, "x": 1, "y": 1 }
  2981. ]
  2982. },
  2983. "bone41": {
  2984. "rotate": [
  2985. { "time": 0, "angle": 0, "curve": "stepped" },
  2986. { "time": 2.3333, "angle": 0 }
  2987. ],
  2988. "translate": [
  2989. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2990. { "time": 2.3333, "x": 0, "y": 0 }
  2991. ],
  2992. "scale": [
  2993. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2994. { "time": 2.3333, "x": 1, "y": 1 }
  2995. ]
  2996. },
  2997. "bone42": {
  2998. "rotate": [
  2999. { "time": 0, "angle": 0 },
  3000. { "time": 0.5667, "angle": 12.01 },
  3001. { "time": 1.1667, "angle": 0 },
  3002. { "time": 1.7333, "angle": 12.01 },
  3003. { "time": 2.3333, "angle": 0 }
  3004. ],
  3005. "translate": [
  3006. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3007. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  3008. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3009. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  3010. { "time": 2.3333, "x": 0, "y": 0 }
  3011. ],
  3012. "scale": [
  3013. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3014. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  3015. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3016. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  3017. { "time": 2.3333, "x": 1, "y": 1 }
  3018. ]
  3019. },
  3020. "bone43": {
  3021. "rotate": [
  3022. { "time": 0, "angle": 16.54 },
  3023. { "time": 0.5667, "angle": 17.84 },
  3024. { "time": 1.1667, "angle": 16.54 },
  3025. { "time": 1.7333, "angle": 17.84 },
  3026. { "time": 2.3333, "angle": 16.54 }
  3027. ],
  3028. "translate": [
  3029. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3030. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  3031. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3032. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  3033. { "time": 2.3333, "x": 0, "y": 0 }
  3034. ],
  3035. "scale": [
  3036. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3037. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  3038. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3039. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  3040. { "time": 2.3333, "x": 1, "y": 1 }
  3041. ]
  3042. },
  3043. "bone44": {
  3044. "rotate": [
  3045. { "time": 0, "angle": 0, "curve": "stepped" },
  3046. { "time": 2.3333, "angle": 0 }
  3047. ],
  3048. "translate": [
  3049. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3050. { "time": 2.3333, "x": 0, "y": 0 }
  3051. ],
  3052. "scale": [
  3053. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3054. { "time": 2.3333, "x": 1, "y": 1 }
  3055. ]
  3056. },
  3057. "bone45": {
  3058. "rotate": [
  3059. { "time": 0, "angle": 0 },
  3060. { "time": 0.5667, "angle": 9.52 },
  3061. { "time": 1.1667, "angle": 0 },
  3062. { "time": 1.7333, "angle": 9.52 },
  3063. { "time": 2.3333, "angle": 0 }
  3064. ],
  3065. "translate": [
  3066. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3067. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  3068. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3069. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  3070. { "time": 2.3333, "x": 0, "y": 0 }
  3071. ],
  3072. "scale": [
  3073. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3074. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  3075. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3076. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  3077. { "time": 2.3333, "x": 1, "y": 1 }
  3078. ]
  3079. },
  3080. "bone46": {
  3081. "rotate": [
  3082. { "time": 0, "angle": 0 },
  3083. { "time": 0.5667, "angle": -24.63 },
  3084. { "time": 1.1667, "angle": 0 },
  3085. { "time": 1.7333, "angle": -24.63 },
  3086. { "time": 2.3333, "angle": 0 }
  3087. ],
  3088. "translate": [
  3089. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3090. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  3091. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3092. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  3093. { "time": 2.3333, "x": 0, "y": 0 }
  3094. ],
  3095. "scale": [
  3096. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3097. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  3098. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3099. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  3100. { "time": 2.3333, "x": 1, "y": 1 }
  3101. ]
  3102. },
  3103. "bone47": {
  3104. "rotate": [
  3105. { "time": 0, "angle": 0 },
  3106. { "time": 0.5667, "angle": -5.14 },
  3107. { "time": 1.1667, "angle": 0 },
  3108. { "time": 1.7333, "angle": -5.14 },
  3109. { "time": 2.3333, "angle": 0 }
  3110. ],
  3111. "translate": [
  3112. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3113. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  3114. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3115. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  3116. { "time": 2.3333, "x": 0, "y": 0 }
  3117. ],
  3118. "scale": [
  3119. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3120. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  3121. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3122. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  3123. { "time": 2.3333, "x": 1, "y": 1 }
  3124. ]
  3125. },
  3126. "bone49": {
  3127. "rotate": [
  3128. { "time": 0, "angle": 0, "curve": "stepped" },
  3129. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  3130. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  3131. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  3132. { "time": 2.3333, "angle": 0 }
  3133. ],
  3134. "translate": [
  3135. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3136. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  3137. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3138. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  3139. { "time": 2.3333, "x": 0, "y": 0 }
  3140. ],
  3141. "scale": [
  3142. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3143. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  3144. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3145. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  3146. { "time": 2.3333, "x": 1, "y": 1 }
  3147. ]
  3148. },
  3149. "bone50": {
  3150. "rotate": [
  3151. { "time": 0, "angle": 0, "curve": "stepped" },
  3152. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  3153. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  3154. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  3155. { "time": 2.3333, "angle": 0 }
  3156. ],
  3157. "translate": [
  3158. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3159. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  3160. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3161. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  3162. { "time": 2.3333, "x": 0, "y": 0 }
  3163. ],
  3164. "scale": [
  3165. { "time": 0, "x": 1, "y": 1 },
  3166. { "time": 0.5667, "x": 1.086, "y": 1 },
  3167. { "time": 1.1667, "x": 1, "y": 1 },
  3168. { "time": 1.7333, "x": 1.086, "y": 1 },
  3169. { "time": 2.3333, "x": 1, "y": 1 }
  3170. ]
  3171. },
  3172. "bone51": {
  3173. "rotate": [
  3174. { "time": 0, "angle": 0, "curve": "stepped" },
  3175. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  3176. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  3177. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  3178. { "time": 2.3333, "angle": 0 }
  3179. ],
  3180. "translate": [
  3181. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3182. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  3183. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3184. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  3185. { "time": 2.3333, "x": 0, "y": 0 }
  3186. ],
  3187. "scale": [
  3188. { "time": 0, "x": 1, "y": 1 },
  3189. { "time": 0.5667, "x": 1.047, "y": 1 },
  3190. { "time": 1.1667, "x": 1, "y": 1 },
  3191. { "time": 1.7333, "x": 1.047, "y": 1 },
  3192. { "time": 2.3333, "x": 1, "y": 1 }
  3193. ]
  3194. },
  3195. "bone52": {
  3196. "rotate": [
  3197. { "time": 0, "angle": 0, "curve": "stepped" },
  3198. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  3199. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  3200. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  3201. { "time": 2.3333, "angle": 0 }
  3202. ],
  3203. "translate": [
  3204. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3205. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  3206. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3207. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  3208. { "time": 2.3333, "x": 0, "y": 0 }
  3209. ],
  3210. "scale": [
  3211. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3212. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  3213. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3214. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  3215. { "time": 2.3333, "x": 1, "y": 1 }
  3216. ]
  3217. },
  3218. "bone56": {
  3219. "rotate": [
  3220. { "time": 0, "angle": 0 },
  3221. { "time": 0.5667, "angle": -10.63 },
  3222. { "time": 1.1667, "angle": 0 },
  3223. { "time": 1.7333, "angle": -10.63 },
  3224. { "time": 2.3333, "angle": 0 }
  3225. ],
  3226. "translate": [
  3227. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3228. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  3229. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3230. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  3231. { "time": 2.3333, "x": 0, "y": 0 }
  3232. ],
  3233. "scale": [
  3234. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3235. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  3236. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3237. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  3238. { "time": 2.3333, "x": 1, "y": 1 }
  3239. ]
  3240. },
  3241. "bone57": {
  3242. "rotate": [
  3243. { "time": 0, "angle": 0 },
  3244. { "time": 0.5667, "angle": -24.87 },
  3245. { "time": 1.1667, "angle": 0 },
  3246. { "time": 1.7333, "angle": -24.87 },
  3247. { "time": 2.3333, "angle": 0 }
  3248. ],
  3249. "translate": [
  3250. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3251. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  3252. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3253. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  3254. { "time": 2.3333, "x": 0, "y": 0 }
  3255. ],
  3256. "scale": [
  3257. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3258. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  3259. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3260. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  3261. { "time": 2.3333, "x": 1, "y": 1 }
  3262. ]
  3263. },
  3264. "bone58": {
  3265. "rotate": [
  3266. { "time": 0, "angle": 0 },
  3267. { "time": 0.5667, "angle": 3.24 },
  3268. { "time": 1.1667, "angle": 0 },
  3269. { "time": 1.7333, "angle": 3.24 },
  3270. { "time": 2.3333, "angle": 0 }
  3271. ],
  3272. "translate": [
  3273. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3274. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  3275. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3276. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  3277. { "time": 2.3333, "x": 0, "y": 0 }
  3278. ],
  3279. "scale": [
  3280. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3281. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  3282. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3283. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  3284. { "time": 2.3333, "x": 1, "y": 1 }
  3285. ]
  3286. },
  3287. "bone59": {
  3288. "rotate": [
  3289. { "time": 0, "angle": 0 },
  3290. { "time": 0.5667, "angle": 4.43 },
  3291. { "time": 1.1667, "angle": 0 },
  3292. { "time": 1.7333, "angle": 4.43 },
  3293. { "time": 2.3333, "angle": 0 }
  3294. ],
  3295. "translate": [
  3296. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3297. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  3298. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3299. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  3300. { "time": 2.3333, "x": 0, "y": 0 }
  3301. ],
  3302. "scale": [
  3303. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3304. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  3305. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3306. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  3307. { "time": 2.3333, "x": 1, "y": 1 }
  3308. ]
  3309. },
  3310. "bone48": {
  3311. "rotate": [
  3312. { "time": 0, "angle": 0, "curve": "stepped" },
  3313. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  3314. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  3315. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  3316. { "time": 2.3333, "angle": 0 }
  3317. ],
  3318. "translate": [
  3319. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3320. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  3321. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3322. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  3323. { "time": 2.3333, "x": 0, "y": 0 }
  3324. ],
  3325. "scale": [
  3326. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3327. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  3328. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3329. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  3330. { "time": 2.3333, "x": 1, "y": 1 }
  3331. ]
  3332. },
  3333. "bone60": {
  3334. "rotate": [
  3335. { "time": 0, "angle": 0, "curve": "stepped" },
  3336. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  3337. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  3338. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  3339. { "time": 2.3333, "angle": 0 }
  3340. ],
  3341. "translate": [
  3342. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3343. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  3344. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3345. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  3346. { "time": 2.3333, "x": 0, "y": 0 }
  3347. ],
  3348. "scale": [
  3349. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3350. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  3351. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3352. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  3353. { "time": 2.3333, "x": 1, "y": 1 }
  3354. ]
  3355. },
  3356. "bone61": {
  3357. "rotate": [
  3358. { "time": 0.7667, "angle": 0, "curve": "stepped" },
  3359. { "time": 0.9667, "angle": 0, "curve": "stepped" },
  3360. { "time": 2.2667, "angle": 0, "curve": "stepped" },
  3361. { "time": 2.3333, "angle": 0 }
  3362. ],
  3363. "translate": [
  3364. { "time": 0.7667, "x": 7.62, "y": -8.71 },
  3365. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  3366. { "time": 2.2667, "x": 0, "y": 0 },
  3367. { "time": 2.3333, "x": 7.62, "y": -8.71 }
  3368. ],
  3369. "scale": [
  3370. { "time": 0.7667, "x": 0.2, "y": 0.2 },
  3371. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  3372. { "time": 2.2667, "x": 1, "y": 1 },
  3373. { "time": 2.3333, "x": 0.2, "y": 0.2 }
  3374. ]
  3375. }
  3376. },
  3377. "deform": {
  3378. "default": {
  3379. "erji": {
  3380. "erji": [
  3381. { "time": 0 },
  3382. {
  3383. "time": 0.5667,
  3384. "offset": 8,
  3385. "vertices": [ -0.53481, 1.37687 ]
  3386. },
  3387. { "time": 1.1667 },
  3388. {
  3389. "time": 1.7333,
  3390. "offset": 8,
  3391. "vertices": [ -0.53481, 1.37687 ]
  3392. },
  3393. { "time": 2.3333 }
  3394. ]
  3395. }
  3396. }
  3397. }
  3398. },
  3399. "stand3": {
  3400. "slots": {
  3401. "biaoqing_1": {
  3402. "color": [
  3403. { "time": 0, "color": "ffffff00", "curve": "stepped" },
  3404. { "time": 0.7667, "color": "ffffff00" },
  3405. { "time": 0.8667, "color": "ffffffff", "curve": "stepped" },
  3406. { "time": 2.9, "color": "ffffffff" },
  3407. { "time": 3, "color": "ffffff00" }
  3408. ]
  3409. },
  3410. "biyan": {
  3411. "attachment": [
  3412. { "time": 0, "name": null },
  3413. { "time": 1.3333, "name": null },
  3414. { "time": 1.4333, "name": "biyan" },
  3415. { "time": 1.5333, "name": null },
  3416. { "time": 2.3333, "name": null },
  3417. { "time": 2.5, "name": null },
  3418. { "time": 2.6, "name": "biyan" },
  3419. { "time": 2.7, "name": null },
  3420. { "time": 3.5, "name": null }
  3421. ]
  3422. },
  3423. "diannao1": {
  3424. "color": [
  3425. { "time": 0, "color": "ffffff00", "curve": "stepped" },
  3426. { "time": 0.1333, "color": "ffffff00" },
  3427. { "time": 0.3333, "color": "ffffffff", "curve": "stepped" },
  3428. { "time": 2, "color": "ffffffff" },
  3429. { "time": 2.1667, "color": "ffffff00" }
  3430. ],
  3431. "attachment": [
  3432. { "time": 0, "name": "diannao1" },
  3433. { "time": 1.1667, "name": "diannao1" },
  3434. { "time": 2.3333, "name": "diannao1" },
  3435. { "time": 3.5, "name": null }
  3436. ]
  3437. },
  3438. "diannao_x": {
  3439. "color": [
  3440. { "time": 0, "color": "ffffff00" },
  3441. { "time": 0.0667, "color": "ffffffff" },
  3442. { "time": 0.2333, "color": "ffffff00", "curve": "stepped" },
  3443. { "time": 2.1, "color": "ffffff00" }
  3444. ]
  3445. },
  3446. "dou": {
  3447. "color": [
  3448. { "time": 0, "color": "ffffff00", "curve": "stepped" },
  3449. { "time": 0.5667, "color": "ffffff00" },
  3450. { "time": 0.6333, "color": "ffffffff" },
  3451. { "time": 0.7, "color": "ffffff00" },
  3452. { "time": 0.7667, "color": "ffffffff", "curve": "stepped" },
  3453. { "time": 2, "color": "ffffffff" },
  3454. { "time": 2.1667, "color": "ffffff00" }
  3455. ],
  3456. "attachment": [
  3457. { "time": 0, "name": "dou" },
  3458. { "time": 2.3333, "name": null },
  3459. { "time": 3.5, "name": null }
  3460. ]
  3461. },
  3462. "dou2": {
  3463. "color": [
  3464. { "time": 0, "color": "ffffff00", "curve": "stepped" },
  3465. { "time": 0.6667, "color": "ffffff00" },
  3466. { "time": 0.7333, "color": "ffffffff" },
  3467. { "time": 0.8, "color": "ffffff00" },
  3468. { "time": 0.8667, "color": "ffffffff", "curve": "stepped" },
  3469. { "time": 2, "color": "ffffffff" },
  3470. { "time": 2.1667, "color": "ffffff00" }
  3471. ],
  3472. "attachment": [
  3473. { "time": 0, "name": "dou2" },
  3474. { "time": 2.3333, "name": null },
  3475. { "time": 3.5, "name": null }
  3476. ]
  3477. },
  3478. "dou3": {
  3479. "color": [
  3480. { "time": 0, "color": "ffffff00", "curve": "stepped" },
  3481. { "time": 0.8, "color": "ffffff00" },
  3482. { "time": 0.8667, "color": "ffffffff" },
  3483. { "time": 0.9333, "color": "ffffff00" },
  3484. { "time": 1, "color": "ffffffff", "curve": "stepped" },
  3485. { "time": 2, "color": "ffffffff" },
  3486. { "time": 2.1667, "color": "ffffff00" }
  3487. ],
  3488. "attachment": [
  3489. { "time": 0, "name": "dou3" },
  3490. { "time": 2.3333, "name": null },
  3491. { "time": 3.5, "name": null }
  3492. ]
  3493. },
  3494. "pinmu": {
  3495. "color": [
  3496. { "time": 0, "color": "ffffff00", "curve": "stepped" },
  3497. { "time": 0.0667, "color": "ffffff00" },
  3498. { "time": 0.1333, "color": "ffffffff" },
  3499. { "time": 0.2, "color": "ffffff00" },
  3500. { "time": 0.2667, "color": "ffffffff", "curve": "stepped" },
  3501. { "time": 2, "color": "ffffffff" },
  3502. { "time": 2.0667, "color": "ffffff00" }
  3503. ],
  3504. "attachment": [
  3505. { "time": 0, "name": "pinmu" },
  3506. { "time": 1.1667, "name": "pinmu" },
  3507. { "time": 2.3333, "name": "pinmu" },
  3508. { "time": 3.5, "name": null }
  3509. ]
  3510. },
  3511. "youyan": {
  3512. "attachment": [
  3513. { "time": 1.4333, "name": null },
  3514. { "time": 1.5333, "name": "youyan" },
  3515. { "time": 2.6, "name": null },
  3516. { "time": 2.7, "name": "youyan" }
  3517. ]
  3518. },
  3519. "zuoyan": {
  3520. "attachment": [
  3521. { "time": 1.4333, "name": null },
  3522. { "time": 1.5333, "name": "zuoyan" },
  3523. { "time": 2.6, "name": null },
  3524. { "time": 2.7, "name": "zuoyan" }
  3525. ]
  3526. }
  3527. },
  3528. "bones": {
  3529. "bone53": {
  3530. "rotate": [
  3531. { "time": 0, "angle": 0, "curve": "stepped" },
  3532. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  3533. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  3534. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  3535. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  3536. { "time": 2.9, "angle": 0, "curve": "stepped" },
  3537. { "time": 3.5, "angle": 0 }
  3538. ],
  3539. "translate": [
  3540. { "time": 0, "x": 14.86, "y": 0 }
  3541. ],
  3542. "scale": [
  3543. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3544. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  3545. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3546. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  3547. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  3548. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  3549. { "time": 3.5, "x": 1, "y": 1 }
  3550. ]
  3551. },
  3552. "bone55": {
  3553. "rotate": [
  3554. { "time": 0, "angle": 0, "curve": "stepped" },
  3555. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  3556. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  3557. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  3558. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  3559. { "time": 2.9, "angle": 0, "curve": "stepped" },
  3560. { "time": 3.5, "angle": 0 }
  3561. ],
  3562. "translate": [
  3563. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3564. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  3565. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3566. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  3567. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  3568. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  3569. { "time": 3.5, "x": 0, "y": 0 }
  3570. ],
  3571. "scale": [
  3572. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3573. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  3574. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3575. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  3576. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  3577. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  3578. { "time": 3.5, "x": 1, "y": 1 }
  3579. ]
  3580. },
  3581. "bone54": {
  3582. "rotate": [
  3583. { "time": 0, "angle": 0, "curve": "stepped" },
  3584. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  3585. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  3586. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  3587. { "time": 2.9, "angle": 0, "curve": "stepped" },
  3588. { "time": 3.5, "angle": 0 }
  3589. ],
  3590. "translate": [
  3591. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3592. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3593. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  3594. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  3595. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  3596. { "time": 3.5, "x": 0, "y": 0 }
  3597. ],
  3598. "scale": [
  3599. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3600. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3601. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  3602. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  3603. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  3604. { "time": 3.5, "x": 1, "y": 1 }
  3605. ]
  3606. },
  3607. "bone27": {
  3608. "rotate": [
  3609. { "time": 0, "angle": 0, "curve": "stepped" },
  3610. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  3611. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  3612. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  3613. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  3614. { "time": 2.5, "angle": 0, "curve": "stepped" },
  3615. { "time": 2.9, "angle": 0, "curve": "stepped" },
  3616. { "time": 3.5, "angle": 0 }
  3617. ],
  3618. "translate": [
  3619. { "time": 0, "x": -3.08, "y": 0.09, "curve": "stepped" },
  3620. { "time": 2.3333, "x": -3.08, "y": 0.09, "curve": "stepped" },
  3621. { "time": 3.5, "x": -3.08, "y": 0.09 }
  3622. ],
  3623. "scale": [
  3624. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3625. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  3626. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3627. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  3628. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  3629. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  3630. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  3631. { "time": 3.5, "x": 1, "y": 1 }
  3632. ]
  3633. },
  3634. "root": {
  3635. "rotate": [
  3636. { "time": 0, "angle": 0 }
  3637. ],
  3638. "translate": [
  3639. { "time": 0, "x": 0, "y": 0 }
  3640. ],
  3641. "scale": [
  3642. { "time": 0, "x": 0.65, "y": 0.65 }
  3643. ]
  3644. },
  3645. "bone": {
  3646. "rotate": [
  3647. { "time": 0, "angle": 0, "curve": "stepped" },
  3648. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  3649. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  3650. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  3651. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  3652. { "time": 2.9, "angle": 0, "curve": "stepped" },
  3653. { "time": 3.5, "angle": 0 }
  3654. ],
  3655. "translate": [
  3656. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3657. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  3658. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3659. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  3660. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  3661. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  3662. { "time": 3.5, "x": 0, "y": 0 }
  3663. ],
  3664. "scale": [
  3665. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3666. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  3667. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3668. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  3669. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  3670. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  3671. { "time": 3.5, "x": 1, "y": 1 }
  3672. ]
  3673. },
  3674. "bone2": {
  3675. "rotate": [
  3676. { "time": 0, "angle": 0, "curve": "stepped" },
  3677. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  3678. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  3679. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  3680. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  3681. { "time": 2.9, "angle": 0, "curve": "stepped" },
  3682. { "time": 3.5, "angle": 0 }
  3683. ],
  3684. "translate": [
  3685. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3686. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  3687. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3688. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  3689. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  3690. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  3691. { "time": 3.5, "x": 0, "y": 0 }
  3692. ],
  3693. "scale": [
  3694. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3695. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  3696. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3697. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  3698. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  3699. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  3700. { "time": 3.5, "x": 1, "y": 1 }
  3701. ]
  3702. },
  3703. "bone3": {
  3704. "rotate": [
  3705. { "time": 0, "angle": 0, "curve": "stepped" },
  3706. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  3707. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  3708. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  3709. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  3710. { "time": 2.9, "angle": 0, "curve": "stepped" },
  3711. { "time": 3.5, "angle": 0 }
  3712. ],
  3713. "translate": [
  3714. { "time": 0, "x": 0, "y": 0 },
  3715. { "time": 0.5667, "x": 2.36, "y": -0.1 },
  3716. { "time": 1.1667, "x": 0, "y": 0 },
  3717. { "time": 1.7333, "x": 2.36, "y": -0.1 },
  3718. { "time": 2.3333, "x": 0, "y": 0 },
  3719. { "time": 2.9, "x": 2.36, "y": -0.1 },
  3720. { "time": 3.5, "x": 0, "y": 0 }
  3721. ],
  3722. "scale": [
  3723. { "time": 0, "x": 1, "y": 1 },
  3724. { "time": 0.5667, "x": 1.02, "y": 1 },
  3725. { "time": 1.1667, "x": 1, "y": 1 },
  3726. { "time": 1.7333, "x": 1.02, "y": 1 },
  3727. { "time": 2.3333, "x": 1, "y": 1 },
  3728. { "time": 2.9, "x": 1.02, "y": 1 },
  3729. { "time": 3.5, "x": 1, "y": 1 }
  3730. ]
  3731. },
  3732. "bone4": {
  3733. "rotate": [
  3734. { "time": 0, "angle": 0 },
  3735. { "time": 0.5667, "angle": -10.35 },
  3736. { "time": 1.1667, "angle": 0 },
  3737. { "time": 1.4, "angle": -14.62 },
  3738. { "time": 1.5, "angle": -9.65 },
  3739. { "time": 1.7333, "angle": -6.24 },
  3740. { "time": 1.9333, "angle": -10.09 },
  3741. { "time": 2.1667, "angle": -12.66 },
  3742. { "time": 2.4333, "angle": 0 },
  3743. { "time": 2.9, "angle": -10.35 },
  3744. { "time": 3.5, "angle": 0 }
  3745. ],
  3746. "translate": [
  3747. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3748. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  3749. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3750. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  3751. { "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
  3752. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  3753. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  3754. { "time": 3.5, "x": 0, "y": 0 }
  3755. ],
  3756. "scale": [
  3757. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3758. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  3759. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3760. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  3761. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  3762. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  3763. { "time": 3.5, "x": 1, "y": 1 }
  3764. ]
  3765. },
  3766. "bone5": {
  3767. "rotate": [
  3768. { "time": 0, "angle": 0 },
  3769. { "time": 0.5667, "angle": 14.62 },
  3770. { "time": 1.1667, "angle": 0 },
  3771. { "time": 1.3333, "angle": -53.98 },
  3772. { "time": 1.5, "angle": -35.16, "curve": "stepped" },
  3773. { "time": 1.7333, "angle": -35.16 },
  3774. { "time": 1.9333, "angle": -48.88 },
  3775. { "time": 2.4333, "angle": 0 },
  3776. { "time": 2.9, "angle": 14.62 },
  3777. { "time": 3.5, "angle": 0 }
  3778. ],
  3779. "translate": [
  3780. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3781. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  3782. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3783. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  3784. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  3785. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  3786. { "time": 3.5, "x": 0, "y": 0 }
  3787. ],
  3788. "scale": [
  3789. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3790. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  3791. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3792. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  3793. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  3794. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  3795. { "time": 3.5, "x": 1, "y": 1 }
  3796. ]
  3797. },
  3798. "bone6": {
  3799. "rotate": [
  3800. { "time": 0, "angle": 0 },
  3801. { "time": 0.5667, "angle": 14.03 },
  3802. { "time": 1.1667, "angle": 0 },
  3803. { "time": 1.2667, "angle": -16.3 },
  3804. { "time": 1.5, "angle": -2.51 },
  3805. { "time": 1.6, "angle": -15.46 },
  3806. { "time": 1.7333, "angle": -2.51 },
  3807. { "time": 1.9333, "angle": -3.22 },
  3808. { "time": 2.4333, "angle": 0 },
  3809. { "time": 2.9, "angle": 14.03 },
  3810. { "time": 3.5, "angle": 0 }
  3811. ],
  3812. "translate": [
  3813. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3814. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  3815. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3816. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  3817. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  3818. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  3819. { "time": 3.5, "x": 0, "y": 0 }
  3820. ],
  3821. "scale": [
  3822. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3823. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  3824. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3825. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  3826. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  3827. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  3828. { "time": 3.5, "x": 1, "y": 1 }
  3829. ]
  3830. },
  3831. "bone7": {
  3832. "rotate": [
  3833. { "time": 0, "angle": 0 },
  3834. { "time": 0.5667, "angle": 10 },
  3835. { "time": 1.1667, "angle": 0 },
  3836. { "time": 1.7333, "angle": 10 },
  3837. { "time": 2.3333, "angle": 0 },
  3838. { "time": 2.9, "angle": 10 },
  3839. { "time": 3.5, "angle": 0 }
  3840. ],
  3841. "translate": [
  3842. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3843. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  3844. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3845. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  3846. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  3847. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  3848. { "time": 3.5, "x": 0, "y": 0 }
  3849. ],
  3850. "scale": [
  3851. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3852. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  3853. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3854. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  3855. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  3856. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  3857. { "time": 3.5, "x": 1, "y": 1 }
  3858. ]
  3859. },
  3860. "bone8": {
  3861. "rotate": [
  3862. { "time": 0, "angle": 0 },
  3863. { "time": 0.5667, "angle": -11.51 },
  3864. { "time": 1.1667, "angle": 0 },
  3865. { "time": 1.7333, "angle": -11.51 },
  3866. { "time": 2.3333, "angle": 0 },
  3867. { "time": 2.9, "angle": -11.51 },
  3868. { "time": 3.5, "angle": 0 }
  3869. ],
  3870. "translate": [
  3871. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3872. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  3873. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3874. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  3875. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  3876. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  3877. { "time": 3.5, "x": 0, "y": 0 }
  3878. ],
  3879. "scale": [
  3880. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3881. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  3882. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3883. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  3884. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  3885. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  3886. { "time": 3.5, "x": 1, "y": 1 }
  3887. ]
  3888. },
  3889. "bone9": {
  3890. "rotate": [
  3891. { "time": 0, "angle": 0, "curve": "stepped" },
  3892. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  3893. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  3894. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  3895. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  3896. { "time": 2.9, "angle": 0, "curve": "stepped" },
  3897. { "time": 3.5, "angle": 0 }
  3898. ],
  3899. "translate": [
  3900. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3901. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  3902. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3903. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  3904. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  3905. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  3906. { "time": 3.5, "x": 0, "y": 0 }
  3907. ],
  3908. "scale": [
  3909. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3910. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  3911. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3912. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  3913. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  3914. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  3915. { "time": 3.5, "x": 1, "y": 1 }
  3916. ]
  3917. },
  3918. "bone10": {
  3919. "rotate": [
  3920. { "time": 0, "angle": 0, "curve": "stepped" },
  3921. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  3922. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  3923. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  3924. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  3925. { "time": 2.9, "angle": 0, "curve": "stepped" },
  3926. { "time": 3.5, "angle": 0 }
  3927. ],
  3928. "translate": [
  3929. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3930. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  3931. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3932. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  3933. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  3934. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  3935. { "time": 3.5, "x": 0, "y": 0 }
  3936. ],
  3937. "scale": [
  3938. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3939. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  3940. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3941. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  3942. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  3943. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  3944. { "time": 3.5, "x": 1, "y": 1 }
  3945. ]
  3946. },
  3947. "bone11": {
  3948. "rotate": [
  3949. { "time": 0, "angle": 0, "curve": "stepped" },
  3950. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  3951. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  3952. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  3953. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  3954. { "time": 2.9, "angle": 0, "curve": "stepped" },
  3955. { "time": 3.5, "angle": 0 }
  3956. ],
  3957. "translate": [
  3958. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3959. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  3960. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3961. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  3962. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  3963. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  3964. { "time": 3.5, "x": 0, "y": 0 }
  3965. ],
  3966. "scale": [
  3967. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3968. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  3969. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3970. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  3971. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  3972. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  3973. { "time": 3.5, "x": 1, "y": 1 }
  3974. ]
  3975. },
  3976. "bone12": {
  3977. "rotate": [
  3978. { "time": 0, "angle": 0, "curve": "stepped" },
  3979. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  3980. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  3981. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  3982. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  3983. { "time": 2.9, "angle": 0, "curve": "stepped" },
  3984. { "time": 3.5, "angle": 0 }
  3985. ],
  3986. "translate": [
  3987. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3988. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  3989. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3990. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  3991. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  3992. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  3993. { "time": 3.5, "x": 0, "y": 0 }
  3994. ],
  3995. "scale": [
  3996. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3997. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  3998. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3999. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  4000. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  4001. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  4002. { "time": 3.5, "x": 1, "y": 1 }
  4003. ]
  4004. },
  4005. "bone13": {
  4006. "rotate": [
  4007. { "time": 0, "angle": 0, "curve": "stepped" },
  4008. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  4009. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  4010. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  4011. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  4012. { "time": 2.9, "angle": 0, "curve": "stepped" },
  4013. { "time": 3.5, "angle": 0 }
  4014. ],
  4015. "translate": [
  4016. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4017. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  4018. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4019. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  4020. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  4021. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  4022. { "time": 3.5, "x": 0, "y": 0 }
  4023. ],
  4024. "scale": [
  4025. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4026. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  4027. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4028. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  4029. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  4030. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  4031. { "time": 3.5, "x": 1, "y": 1 }
  4032. ]
  4033. },
  4034. "bone14": {
  4035. "rotate": [
  4036. { "time": 0, "angle": 0, "curve": "stepped" },
  4037. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  4038. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  4039. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  4040. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  4041. { "time": 2.9, "angle": 0, "curve": "stepped" },
  4042. { "time": 3.5, "angle": 0 }
  4043. ],
  4044. "translate": [
  4045. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4046. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  4047. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4048. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  4049. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  4050. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  4051. { "time": 3.5, "x": 0, "y": 0 }
  4052. ],
  4053. "scale": [
  4054. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4055. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  4056. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4057. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  4058. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  4059. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  4060. { "time": 3.5, "x": 1, "y": 1 }
  4061. ]
  4062. },
  4063. "bone15": {
  4064. "rotate": [
  4065. { "time": 0, "angle": 0, "curve": "stepped" },
  4066. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  4067. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  4068. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  4069. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  4070. { "time": 2.9, "angle": 0, "curve": "stepped" },
  4071. { "time": 3.5, "angle": 0 }
  4072. ],
  4073. "translate": [
  4074. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4075. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  4076. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4077. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  4078. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  4079. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  4080. { "time": 3.5, "x": 0, "y": 0 }
  4081. ],
  4082. "scale": [
  4083. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4084. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  4085. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4086. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  4087. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  4088. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  4089. { "time": 3.5, "x": 1, "y": 1 }
  4090. ]
  4091. },
  4092. "bone16": {
  4093. "rotate": [
  4094. { "time": 0, "angle": 0, "curve": "stepped" },
  4095. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  4096. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  4097. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  4098. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  4099. { "time": 2.9, "angle": 0, "curve": "stepped" },
  4100. { "time": 3.5, "angle": 0 }
  4101. ],
  4102. "translate": [
  4103. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4104. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  4105. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4106. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  4107. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  4108. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  4109. { "time": 3.5, "x": 0, "y": 0 }
  4110. ],
  4111. "scale": [
  4112. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4113. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  4114. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4115. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  4116. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  4117. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  4118. { "time": 3.5, "x": 1, "y": 1 }
  4119. ]
  4120. },
  4121. "bone17": {
  4122. "rotate": [
  4123. { "time": 0, "angle": 0, "curve": "stepped" },
  4124. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  4125. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  4126. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  4127. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  4128. { "time": 2.9, "angle": 0, "curve": "stepped" },
  4129. { "time": 3.5, "angle": 0 }
  4130. ],
  4131. "translate": [
  4132. { "time": 0, "x": 0, "y": 0 },
  4133. { "time": 0.5667, "x": 0.68, "y": -0.54 },
  4134. { "time": 1.1667, "x": 0, "y": 0 },
  4135. { "time": 1.7333, "x": 0.68, "y": -0.54 },
  4136. { "time": 2.3333, "x": 0, "y": 0 },
  4137. { "time": 2.9, "x": 0.68, "y": -0.54 },
  4138. { "time": 3.5, "x": 0, "y": 0 }
  4139. ],
  4140. "scale": [
  4141. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4142. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  4143. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4144. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  4145. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  4146. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  4147. { "time": 3.5, "x": 1, "y": 1 }
  4148. ]
  4149. },
  4150. "bone18": {
  4151. "rotate": [
  4152. { "time": 0, "angle": 0 },
  4153. { "time": 0.5667, "angle": -3.27 },
  4154. { "time": 1.1667, "angle": 0 },
  4155. { "time": 1.7333, "angle": -3.27 },
  4156. { "time": 2.3333, "angle": 0 },
  4157. { "time": 2.9, "angle": -3.27 },
  4158. { "time": 3.5, "angle": 0 }
  4159. ],
  4160. "translate": [
  4161. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4162. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  4163. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4164. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  4165. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  4166. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  4167. { "time": 3.5, "x": 0, "y": 0 }
  4168. ],
  4169. "scale": [
  4170. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4171. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  4172. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4173. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  4174. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  4175. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  4176. { "time": 3.5, "x": 1, "y": 1 }
  4177. ]
  4178. },
  4179. "bone19": {
  4180. "rotate": [
  4181. { "time": 0, "angle": 0 },
  4182. { "time": 0.5667, "angle": -9.38 },
  4183. { "time": 1.1667, "angle": 0 },
  4184. { "time": 1.7333, "angle": -9.38 },
  4185. { "time": 2.3333, "angle": 0 },
  4186. { "time": 2.9, "angle": -9.38 },
  4187. { "time": 3.5, "angle": 0 }
  4188. ],
  4189. "translate": [
  4190. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4191. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  4192. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4193. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  4194. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  4195. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  4196. { "time": 3.5, "x": 0, "y": 0 }
  4197. ],
  4198. "scale": [
  4199. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4200. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  4201. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4202. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  4203. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  4204. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  4205. { "time": 3.5, "x": 1, "y": 1 }
  4206. ]
  4207. },
  4208. "bone20": {
  4209. "rotate": [
  4210. { "time": 0, "angle": 0, "curve": "stepped" },
  4211. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  4212. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  4213. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  4214. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  4215. { "time": 2.9, "angle": 0, "curve": "stepped" },
  4216. { "time": 3.5, "angle": 0 }
  4217. ],
  4218. "translate": [
  4219. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4220. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  4221. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4222. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  4223. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  4224. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  4225. { "time": 3.5, "x": 0, "y": 0 }
  4226. ],
  4227. "scale": [
  4228. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4229. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  4230. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4231. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  4232. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  4233. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  4234. { "time": 3.5, "x": 1, "y": 1 }
  4235. ]
  4236. },
  4237. "bone21": {
  4238. "rotate": [
  4239. { "time": 0, "angle": 0 },
  4240. { "time": 0.5667, "angle": 10.05 },
  4241. { "time": 1.1667, "angle": 0 },
  4242. { "time": 1.7333, "angle": 10.05 },
  4243. { "time": 2.3333, "angle": 0 },
  4244. { "time": 2.9, "angle": 10.05 },
  4245. { "time": 3.5, "angle": 0 }
  4246. ],
  4247. "translate": [
  4248. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4249. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  4250. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4251. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  4252. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  4253. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  4254. { "time": 3.5, "x": 0, "y": 0 }
  4255. ],
  4256. "scale": [
  4257. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4258. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  4259. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4260. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  4261. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  4262. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  4263. { "time": 3.5, "x": 1, "y": 1 }
  4264. ]
  4265. },
  4266. "bone22": {
  4267. "rotate": [
  4268. { "time": 0, "angle": 0 },
  4269. { "time": 0.5667, "angle": 10.42 },
  4270. { "time": 1.1667, "angle": 0 },
  4271. { "time": 1.7333, "angle": 10.42 },
  4272. { "time": 2.3333, "angle": 0 },
  4273. { "time": 2.9, "angle": 10.42 },
  4274. { "time": 3.5, "angle": 0 }
  4275. ],
  4276. "translate": [
  4277. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4278. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  4279. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4280. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  4281. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  4282. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  4283. { "time": 3.5, "x": 0, "y": 0 }
  4284. ],
  4285. "scale": [
  4286. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4287. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  4288. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4289. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  4290. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  4291. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  4292. { "time": 3.5, "x": 1, "y": 1 }
  4293. ]
  4294. },
  4295. "bone23": {
  4296. "rotate": [
  4297. { "time": 0, "angle": 0 },
  4298. { "time": 0.5667, "angle": 3.02 },
  4299. { "time": 1.1667, "angle": 0 },
  4300. { "time": 1.7333, "angle": 3.02 },
  4301. { "time": 2.3333, "angle": 0 },
  4302. { "time": 2.9, "angle": 3.02 },
  4303. { "time": 3.5, "angle": 0 }
  4304. ],
  4305. "translate": [
  4306. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4307. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  4308. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4309. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  4310. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  4311. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  4312. { "time": 3.5, "x": 0, "y": 0 }
  4313. ],
  4314. "scale": [
  4315. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4316. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  4317. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4318. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  4319. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  4320. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  4321. { "time": 3.5, "x": 1, "y": 1 }
  4322. ]
  4323. },
  4324. "bone24": {
  4325. "rotate": [
  4326. { "time": 0, "angle": 0, "curve": "stepped" },
  4327. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  4328. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  4329. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  4330. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  4331. { "time": 2.9, "angle": 0, "curve": "stepped" },
  4332. { "time": 3.5, "angle": 0 }
  4333. ],
  4334. "translate": [
  4335. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4336. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  4337. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4338. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  4339. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  4340. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  4341. { "time": 3.5, "x": 0, "y": 0 }
  4342. ],
  4343. "scale": [
  4344. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4345. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  4346. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4347. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  4348. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  4349. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  4350. { "time": 3.5, "x": 1, "y": 1 }
  4351. ]
  4352. },
  4353. "bone25": {
  4354. "rotate": [
  4355. { "time": 0, "angle": 0, "curve": "stepped" },
  4356. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  4357. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  4358. { "time": 1.4333, "angle": 0, "curve": "stepped" },
  4359. { "time": 1.5333, "angle": 0, "curve": "stepped" },
  4360. { "time": 1.6333, "angle": 0, "curve": "stepped" },
  4361. { "time": 1.9, "angle": 0, "curve": "stepped" },
  4362. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  4363. { "time": 2.5, "angle": 0, "curve": "stepped" },
  4364. { "time": 2.6, "angle": 0, "curve": "stepped" },
  4365. { "time": 2.7, "angle": 0, "curve": "stepped" },
  4366. { "time": 2.8, "angle": 0, "curve": "stepped" },
  4367. { "time": 3.0667, "angle": 0, "curve": "stepped" },
  4368. { "time": 3.5, "angle": 0 }
  4369. ],
  4370. "translate": [
  4371. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4372. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  4373. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  4374. { "time": 1.4333, "x": 0, "y": 0, "curve": "stepped" },
  4375. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  4376. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  4377. { "time": 1.9, "x": 0, "y": 0, "curve": "stepped" },
  4378. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  4379. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  4380. { "time": 2.6, "x": 0, "y": 0, "curve": "stepped" },
  4381. { "time": 2.7, "x": 0, "y": 0, "curve": "stepped" },
  4382. { "time": 2.8, "x": 0, "y": 0, "curve": "stepped" },
  4383. { "time": 3.0667, "x": 0, "y": 0, "curve": "stepped" },
  4384. { "time": 3.5, "x": 0, "y": 0 }
  4385. ],
  4386. "scale": [
  4387. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4388. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  4389. { "time": 1.3333, "x": 1, "y": 1 },
  4390. { "time": 1.4333, "x": 0.384, "y": 1, "curve": "stepped" },
  4391. { "time": 1.5333, "x": 0.384, "y": 1 },
  4392. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  4393. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  4394. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  4395. { "time": 2.5, "x": 1, "y": 1 },
  4396. { "time": 2.6, "x": 0.384, "y": 1, "curve": "stepped" },
  4397. { "time": 2.7, "x": 0.384, "y": 1 },
  4398. { "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
  4399. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  4400. { "time": 3.5, "x": 1, "y": 1 }
  4401. ]
  4402. },
  4403. "bone26": {
  4404. "rotate": [
  4405. { "time": 0, "angle": 0, "curve": "stepped" },
  4406. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  4407. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  4408. { "time": 1.4333, "angle": 0, "curve": "stepped" },
  4409. { "time": 1.5333, "angle": 0, "curve": "stepped" },
  4410. { "time": 1.6333, "angle": 0, "curve": "stepped" },
  4411. { "time": 1.9, "angle": 0, "curve": "stepped" },
  4412. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  4413. { "time": 2.5, "angle": 0, "curve": "stepped" },
  4414. { "time": 2.6, "angle": 0, "curve": "stepped" },
  4415. { "time": 2.7, "angle": 0, "curve": "stepped" },
  4416. { "time": 2.8, "angle": 0, "curve": "stepped" },
  4417. { "time": 3.0667, "angle": 0, "curve": "stepped" },
  4418. { "time": 3.5, "angle": 0 }
  4419. ],
  4420. "translate": [
  4421. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4422. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  4423. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  4424. { "time": 1.4333, "x": 0, "y": 0, "curve": "stepped" },
  4425. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  4426. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  4427. { "time": 1.9, "x": 0, "y": 0, "curve": "stepped" },
  4428. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  4429. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  4430. { "time": 2.6, "x": 0, "y": 0, "curve": "stepped" },
  4431. { "time": 2.7, "x": 0, "y": 0, "curve": "stepped" },
  4432. { "time": 2.8, "x": 0, "y": 0, "curve": "stepped" },
  4433. { "time": 3.0667, "x": 0, "y": 0, "curve": "stepped" },
  4434. { "time": 3.5, "x": 0, "y": 0 }
  4435. ],
  4436. "scale": [
  4437. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4438. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  4439. { "time": 1.3333, "x": 1, "y": 1 },
  4440. { "time": 1.4333, "x": 0.384, "y": 1, "curve": "stepped" },
  4441. { "time": 1.5333, "x": 0.384, "y": 1 },
  4442. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  4443. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  4444. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  4445. { "time": 2.5, "x": 1, "y": 1 },
  4446. { "time": 2.6, "x": 0.384, "y": 1, "curve": "stepped" },
  4447. { "time": 2.7, "x": 0.384, "y": 1 },
  4448. { "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
  4449. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  4450. { "time": 3.5, "x": 1, "y": 1 }
  4451. ]
  4452. },
  4453. "bone28": {
  4454. "rotate": [
  4455. { "time": 0, "angle": 0, "curve": "stepped" },
  4456. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  4457. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  4458. { "time": 1.4333, "angle": 0, "curve": "stepped" },
  4459. { "time": 1.5333, "angle": 0, "curve": "stepped" },
  4460. { "time": 1.6333, "angle": 0, "curve": "stepped" },
  4461. { "time": 1.9, "angle": 0, "curve": "stepped" },
  4462. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  4463. { "time": 2.5, "angle": 0, "curve": "stepped" },
  4464. { "time": 2.6, "angle": 0, "curve": "stepped" },
  4465. { "time": 2.7, "angle": 0, "curve": "stepped" },
  4466. { "time": 2.8, "angle": 0, "curve": "stepped" },
  4467. { "time": 3.0667, "angle": 0, "curve": "stepped" },
  4468. { "time": 3.5, "angle": 0 }
  4469. ],
  4470. "translate": [
  4471. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4472. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  4473. { "time": 1.3333, "x": 0, "y": 0 },
  4474. { "time": 1.4333, "x": -2.59, "y": 0.09, "curve": "stepped" },
  4475. { "time": 1.5333, "x": -2.59, "y": 0.09 },
  4476. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  4477. { "time": 1.9, "x": 0, "y": 0, "curve": "stepped" },
  4478. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  4479. { "time": 2.5, "x": 0, "y": 0 },
  4480. { "time": 2.6, "x": -2.59, "y": 0.09, "curve": "stepped" },
  4481. { "time": 2.7, "x": -2.59, "y": 0.09 },
  4482. { "time": 2.8, "x": 0, "y": 0, "curve": "stepped" },
  4483. { "time": 3.0667, "x": 0, "y": 0, "curve": "stepped" },
  4484. { "time": 3.5, "x": 0, "y": 0 }
  4485. ],
  4486. "scale": [
  4487. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4488. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  4489. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4490. { "time": 1.4333, "x": 1, "y": 1, "curve": "stepped" },
  4491. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  4492. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  4493. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  4494. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  4495. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  4496. { "time": 2.6, "x": 1, "y": 1, "curve": "stepped" },
  4497. { "time": 2.7, "x": 1, "y": 1, "curve": "stepped" },
  4498. { "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
  4499. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  4500. { "time": 3.5, "x": 1, "y": 1 }
  4501. ]
  4502. },
  4503. "bone29": {
  4504. "rotate": [
  4505. { "time": 0, "angle": 0, "curve": "stepped" },
  4506. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  4507. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  4508. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  4509. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  4510. { "time": 2.9, "angle": 0, "curve": "stepped" },
  4511. { "time": 3.5, "angle": 0 }
  4512. ],
  4513. "translate": [
  4514. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4515. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  4516. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4517. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  4518. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  4519. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  4520. { "time": 3.5, "x": 0, "y": 0 }
  4521. ],
  4522. "scale": [
  4523. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4524. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  4525. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4526. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  4527. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  4528. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  4529. { "time": 3.5, "x": 1, "y": 1 }
  4530. ]
  4531. },
  4532. "bone30": {
  4533. "rotate": [
  4534. { "time": 0, "angle": 0, "curve": "stepped" },
  4535. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  4536. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  4537. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  4538. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  4539. { "time": 2.9, "angle": 0, "curve": "stepped" },
  4540. { "time": 3.5, "angle": 0 }
  4541. ],
  4542. "translate": [
  4543. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4544. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  4545. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4546. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  4547. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  4548. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  4549. { "time": 3.5, "x": 0, "y": 0 }
  4550. ],
  4551. "scale": [
  4552. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4553. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  4554. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4555. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  4556. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  4557. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  4558. { "time": 3.5, "x": 1, "y": 1 }
  4559. ]
  4560. },
  4561. "bone31": {
  4562. "rotate": [
  4563. { "time": 0, "angle": 0, "curve": "stepped" },
  4564. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  4565. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  4566. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  4567. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  4568. { "time": 2.9, "angle": 0, "curve": "stepped" },
  4569. { "time": 3.5, "angle": 0 }
  4570. ],
  4571. "translate": [
  4572. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4573. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  4574. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4575. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  4576. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  4577. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  4578. { "time": 3.5, "x": 0, "y": 0 }
  4579. ],
  4580. "scale": [
  4581. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4582. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  4583. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4584. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  4585. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  4586. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  4587. { "time": 3.5, "x": 1, "y": 1 }
  4588. ]
  4589. },
  4590. "bone32": {
  4591. "rotate": [
  4592. { "time": 0, "angle": 0 },
  4593. { "time": 0.5667, "angle": -5.47 },
  4594. { "time": 1.1667, "angle": 0 },
  4595. { "time": 1.7333, "angle": -5.47 },
  4596. { "time": 2.3333, "angle": 0 },
  4597. { "time": 2.9, "angle": -5.47 },
  4598. { "time": 3.5, "angle": 0 }
  4599. ],
  4600. "translate": [
  4601. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4602. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  4603. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4604. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  4605. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  4606. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  4607. { "time": 3.5, "x": 0, "y": 0 }
  4608. ],
  4609. "scale": [
  4610. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4611. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  4612. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4613. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  4614. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  4615. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  4616. { "time": 3.5, "x": 1, "y": 1 }
  4617. ]
  4618. },
  4619. "bone33": {
  4620. "rotate": [
  4621. { "time": 0, "angle": 0 },
  4622. { "time": 0.5667, "angle": -6 },
  4623. { "time": 1.1667, "angle": 0 },
  4624. { "time": 1.7333, "angle": -6 },
  4625. { "time": 2.3333, "angle": 0 },
  4626. { "time": 2.9, "angle": -6 },
  4627. { "time": 3.5, "angle": 0 }
  4628. ],
  4629. "translate": [
  4630. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4631. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  4632. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4633. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  4634. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  4635. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  4636. { "time": 3.5, "x": 0, "y": 0 }
  4637. ],
  4638. "scale": [
  4639. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4640. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  4641. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4642. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  4643. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  4644. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  4645. { "time": 3.5, "x": 1, "y": 1 }
  4646. ]
  4647. },
  4648. "bone34": {
  4649. "rotate": [
  4650. { "time": 0, "angle": 0 },
  4651. { "time": 0.5667, "angle": -8.01 },
  4652. { "time": 1.1667, "angle": 0 },
  4653. { "time": 1.7333, "angle": -8.01 },
  4654. { "time": 2.3333, "angle": 0 },
  4655. { "time": 2.9, "angle": -8.01 },
  4656. { "time": 3.5, "angle": 0 }
  4657. ],
  4658. "translate": [
  4659. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4660. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  4661. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4662. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  4663. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  4664. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  4665. { "time": 3.5, "x": 0, "y": 0 }
  4666. ],
  4667. "scale": [
  4668. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4669. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  4670. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4671. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  4672. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  4673. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  4674. { "time": 3.5, "x": 1, "y": 1 }
  4675. ]
  4676. },
  4677. "bone35": {
  4678. "rotate": [
  4679. { "time": 0, "angle": 0 },
  4680. { "time": 0.5667, "angle": 0.78 },
  4681. { "time": 1.1667, "angle": 0 },
  4682. { "time": 1.7333, "angle": 0.78 },
  4683. { "time": 2.3333, "angle": 0 },
  4684. { "time": 2.9, "angle": 0.78 },
  4685. { "time": 3.5, "angle": 0 }
  4686. ],
  4687. "translate": [
  4688. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4689. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  4690. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4691. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  4692. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  4693. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  4694. { "time": 3.5, "x": 0, "y": 0 }
  4695. ],
  4696. "scale": [
  4697. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4698. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  4699. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4700. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  4701. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  4702. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  4703. { "time": 3.5, "x": 1, "y": 1 }
  4704. ]
  4705. },
  4706. "bone36": {
  4707. "rotate": [
  4708. { "time": 0, "angle": 0 },
  4709. { "time": 0.5667, "angle": 15.5 },
  4710. { "time": 1.1667, "angle": 0 },
  4711. { "time": 1.7333, "angle": 15.5 },
  4712. { "time": 2.3333, "angle": 0 },
  4713. { "time": 2.9, "angle": 15.5 },
  4714. { "time": 3.5, "angle": 0 }
  4715. ],
  4716. "translate": [
  4717. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4718. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  4719. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4720. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  4721. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  4722. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  4723. { "time": 3.5, "x": 0, "y": 0 }
  4724. ],
  4725. "scale": [
  4726. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4727. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  4728. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4729. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  4730. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  4731. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  4732. { "time": 3.5, "x": 1, "y": 1 }
  4733. ]
  4734. },
  4735. "bone37": {
  4736. "rotate": [
  4737. { "time": 0, "angle": 0 },
  4738. { "time": 0.5667, "angle": 19.79 },
  4739. { "time": 1.1667, "angle": 0 },
  4740. { "time": 1.7333, "angle": 19.79 },
  4741. { "time": 2.3333, "angle": 0 },
  4742. { "time": 2.9, "angle": 19.79 },
  4743. { "time": 3.5, "angle": 0 }
  4744. ],
  4745. "translate": [
  4746. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4747. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  4748. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4749. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  4750. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  4751. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  4752. { "time": 3.5, "x": 0, "y": 0 }
  4753. ],
  4754. "scale": [
  4755. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4756. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  4757. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4758. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  4759. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  4760. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  4761. { "time": 3.5, "x": 1, "y": 1 }
  4762. ]
  4763. },
  4764. "bone38": {
  4765. "rotate": [
  4766. { "time": 0, "angle": 0, "curve": "stepped" },
  4767. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  4768. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  4769. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  4770. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  4771. { "time": 2.9, "angle": 0, "curve": "stepped" },
  4772. { "time": 3.5, "angle": 0 }
  4773. ],
  4774. "translate": [
  4775. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4776. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  4777. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4778. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  4779. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  4780. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  4781. { "time": 3.5, "x": 0, "y": 0 }
  4782. ],
  4783. "scale": [
  4784. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4785. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  4786. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4787. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  4788. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  4789. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  4790. { "time": 3.5, "x": 1, "y": 1 }
  4791. ]
  4792. },
  4793. "bone39": {
  4794. "rotate": [
  4795. { "time": 0, "angle": 0 },
  4796. { "time": 0.5667, "angle": -13.87 },
  4797. { "time": 1.1667, "angle": 0 },
  4798. { "time": 1.7333, "angle": -13.87 },
  4799. { "time": 2.3333, "angle": 0 },
  4800. { "time": 2.9, "angle": -13.87 },
  4801. { "time": 3.5, "angle": 0 }
  4802. ],
  4803. "translate": [
  4804. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4805. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  4806. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4807. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  4808. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  4809. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  4810. { "time": 3.5, "x": 0, "y": 0 }
  4811. ],
  4812. "scale": [
  4813. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4814. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  4815. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4816. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  4817. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  4818. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  4819. { "time": 3.5, "x": 1, "y": 1 }
  4820. ]
  4821. },
  4822. "bone40": {
  4823. "rotate": [
  4824. { "time": 0, "angle": 0, "curve": "stepped" },
  4825. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  4826. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  4827. { "time": 3.5, "angle": 0 }
  4828. ],
  4829. "translate": [
  4830. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4831. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4832. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  4833. { "time": 3.5, "x": 0, "y": 0 }
  4834. ],
  4835. "scale": [
  4836. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4837. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4838. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  4839. { "time": 3.5, "x": 1, "y": 1 }
  4840. ]
  4841. },
  4842. "bone41": {
  4843. "rotate": [
  4844. { "time": 0, "angle": 0, "curve": "stepped" },
  4845. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  4846. { "time": 3.5, "angle": 0 }
  4847. ],
  4848. "translate": [
  4849. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4850. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  4851. { "time": 3.5, "x": 0, "y": 0 }
  4852. ],
  4853. "scale": [
  4854. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4855. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  4856. { "time": 3.5, "x": 1, "y": 1 }
  4857. ]
  4858. },
  4859. "bone42": {
  4860. "rotate": [
  4861. { "time": 0, "angle": 0 },
  4862. { "time": 0.5667, "angle": 12.01 },
  4863. { "time": 1.1667, "angle": 0 },
  4864. { "time": 1.7333, "angle": 12.01 },
  4865. { "time": 2.3333, "angle": 0 },
  4866. { "time": 2.9, "angle": 12.01 },
  4867. { "time": 3.5, "angle": 0 }
  4868. ],
  4869. "translate": [
  4870. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4871. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  4872. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4873. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  4874. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  4875. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  4876. { "time": 3.5, "x": 0, "y": 0 }
  4877. ],
  4878. "scale": [
  4879. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4880. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  4881. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4882. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  4883. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  4884. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  4885. { "time": 3.5, "x": 1, "y": 1 }
  4886. ]
  4887. },
  4888. "bone43": {
  4889. "rotate": [
  4890. { "time": 0, "angle": 16.54 },
  4891. { "time": 0.5667, "angle": 17.84 },
  4892. { "time": 1.1667, "angle": 16.54 },
  4893. { "time": 1.7333, "angle": 17.84 },
  4894. { "time": 2.3333, "angle": 16.54 },
  4895. { "time": 2.9, "angle": 17.84 },
  4896. { "time": 3.5, "angle": 16.54 }
  4897. ],
  4898. "translate": [
  4899. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4900. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  4901. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4902. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  4903. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  4904. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  4905. { "time": 3.5, "x": 0, "y": 0 }
  4906. ],
  4907. "scale": [
  4908. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4909. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  4910. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4911. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  4912. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  4913. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  4914. { "time": 3.5, "x": 1, "y": 1 }
  4915. ]
  4916. },
  4917. "bone44": {
  4918. "rotate": [
  4919. { "time": 0, "angle": 0, "curve": "stepped" },
  4920. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  4921. { "time": 3.5, "angle": 0 }
  4922. ],
  4923. "translate": [
  4924. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4925. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  4926. { "time": 3.5, "x": 0, "y": 0 }
  4927. ],
  4928. "scale": [
  4929. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4930. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  4931. { "time": 3.5, "x": 1, "y": 1 }
  4932. ]
  4933. },
  4934. "bone45": {
  4935. "rotate": [
  4936. { "time": 0, "angle": 0 },
  4937. { "time": 0.5667, "angle": 9.52 },
  4938. { "time": 1.1667, "angle": 0 },
  4939. { "time": 1.7333, "angle": 9.52 },
  4940. { "time": 2.3333, "angle": 0 },
  4941. { "time": 2.9, "angle": 9.52 },
  4942. { "time": 3.5, "angle": 0 }
  4943. ],
  4944. "translate": [
  4945. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4946. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  4947. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4948. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  4949. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  4950. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  4951. { "time": 3.5, "x": 0, "y": 0 }
  4952. ],
  4953. "scale": [
  4954. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4955. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  4956. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4957. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  4958. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  4959. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  4960. { "time": 3.5, "x": 1, "y": 1 }
  4961. ]
  4962. },
  4963. "bone46": {
  4964. "rotate": [
  4965. { "time": 0, "angle": 0 },
  4966. { "time": 0.5667, "angle": -24.63 },
  4967. { "time": 1.1667, "angle": 0 },
  4968. { "time": 1.7333, "angle": -24.63 },
  4969. { "time": 2.3333, "angle": 0 },
  4970. { "time": 2.9, "angle": -24.63 },
  4971. { "time": 3.5, "angle": 0 }
  4972. ],
  4973. "translate": [
  4974. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4975. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  4976. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4977. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  4978. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  4979. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  4980. { "time": 3.5, "x": 0, "y": 0 }
  4981. ],
  4982. "scale": [
  4983. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4984. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  4985. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4986. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  4987. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  4988. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  4989. { "time": 3.5, "x": 1, "y": 1 }
  4990. ]
  4991. },
  4992. "bone47": {
  4993. "rotate": [
  4994. { "time": 0, "angle": 0 },
  4995. { "time": 0.5667, "angle": -5.14 },
  4996. { "time": 1.1667, "angle": 0 },
  4997. { "time": 1.7333, "angle": -5.14 },
  4998. { "time": 2.3333, "angle": 0 },
  4999. { "time": 2.9, "angle": -5.14 },
  5000. { "time": 3.5, "angle": 0 }
  5001. ],
  5002. "translate": [
  5003. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5004. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  5005. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  5006. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  5007. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  5008. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  5009. { "time": 3.5, "x": 0, "y": 0 }
  5010. ],
  5011. "scale": [
  5012. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5013. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  5014. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  5015. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  5016. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  5017. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  5018. { "time": 3.5, "x": 1, "y": 1 }
  5019. ]
  5020. },
  5021. "bone49": {
  5022. "rotate": [
  5023. { "time": 0, "angle": 0, "curve": "stepped" },
  5024. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  5025. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  5026. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  5027. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  5028. { "time": 2.9, "angle": 0, "curve": "stepped" },
  5029. { "time": 3.5, "angle": 0 }
  5030. ],
  5031. "translate": [
  5032. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5033. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  5034. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  5035. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  5036. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  5037. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  5038. { "time": 3.5, "x": 0, "y": 0 }
  5039. ],
  5040. "scale": [
  5041. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5042. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  5043. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  5044. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  5045. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  5046. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  5047. { "time": 3.5, "x": 1, "y": 1 }
  5048. ]
  5049. },
  5050. "bone50": {
  5051. "rotate": [
  5052. { "time": 0, "angle": 0, "curve": "stepped" },
  5053. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  5054. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  5055. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  5056. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  5057. { "time": 2.9, "angle": 0, "curve": "stepped" },
  5058. { "time": 3.5, "angle": 0 }
  5059. ],
  5060. "translate": [
  5061. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5062. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  5063. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  5064. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  5065. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  5066. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  5067. { "time": 3.5, "x": 0, "y": 0 }
  5068. ],
  5069. "scale": [
  5070. { "time": 0, "x": 1, "y": 1 },
  5071. { "time": 0.5667, "x": 1.086, "y": 1 },
  5072. { "time": 1.1667, "x": 1, "y": 1 },
  5073. { "time": 1.7333, "x": 1.086, "y": 1 },
  5074. { "time": 2.3333, "x": 1, "y": 1 },
  5075. { "time": 2.9, "x": 1.086, "y": 1 },
  5076. { "time": 3.5, "x": 1, "y": 1 }
  5077. ]
  5078. },
  5079. "bone51": {
  5080. "rotate": [
  5081. { "time": 0, "angle": 0, "curve": "stepped" },
  5082. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  5083. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  5084. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  5085. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  5086. { "time": 2.9, "angle": 0, "curve": "stepped" },
  5087. { "time": 3.5, "angle": 0 }
  5088. ],
  5089. "translate": [
  5090. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5091. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  5092. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  5093. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  5094. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  5095. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  5096. { "time": 3.5, "x": 0, "y": 0 }
  5097. ],
  5098. "scale": [
  5099. { "time": 0, "x": 1, "y": 1 },
  5100. { "time": 0.5667, "x": 1.047, "y": 1 },
  5101. { "time": 1.1667, "x": 1, "y": 1 },
  5102. { "time": 1.7333, "x": 1.047, "y": 1 },
  5103. { "time": 2.3333, "x": 1, "y": 1 },
  5104. { "time": 2.9, "x": 1.047, "y": 1 },
  5105. { "time": 3.5, "x": 1, "y": 1 }
  5106. ]
  5107. },
  5108. "bone52": {
  5109. "rotate": [
  5110. { "time": 0, "angle": 0, "curve": "stepped" },
  5111. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  5112. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  5113. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  5114. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  5115. { "time": 2.9, "angle": 0, "curve": "stepped" },
  5116. { "time": 3.5, "angle": 0 }
  5117. ],
  5118. "translate": [
  5119. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5120. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  5121. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  5122. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  5123. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  5124. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  5125. { "time": 3.5, "x": 0, "y": 0 }
  5126. ],
  5127. "scale": [
  5128. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5129. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  5130. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  5131. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  5132. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  5133. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  5134. { "time": 3.5, "x": 1, "y": 1 }
  5135. ]
  5136. },
  5137. "bone56": {
  5138. "rotate": [
  5139. { "time": 0, "angle": 0 },
  5140. { "time": 0.5667, "angle": -10.63 },
  5141. { "time": 1.1667, "angle": 0 },
  5142. { "time": 1.7333, "angle": -10.63 },
  5143. { "time": 2.3333, "angle": 0 },
  5144. { "time": 2.9, "angle": -10.63 },
  5145. { "time": 3.5, "angle": 0 }
  5146. ],
  5147. "translate": [
  5148. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5149. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  5150. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  5151. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  5152. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  5153. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  5154. { "time": 3.5, "x": 0, "y": 0 }
  5155. ],
  5156. "scale": [
  5157. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5158. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  5159. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  5160. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  5161. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  5162. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  5163. { "time": 3.5, "x": 1, "y": 1 }
  5164. ]
  5165. },
  5166. "bone57": {
  5167. "rotate": [
  5168. { "time": 0, "angle": 0 },
  5169. { "time": 0.5667, "angle": -24.87 },
  5170. { "time": 1.1667, "angle": 0 },
  5171. { "time": 1.7333, "angle": -24.87 },
  5172. { "time": 2.3333, "angle": 0 },
  5173. { "time": 2.9, "angle": -24.87 },
  5174. { "time": 3.5, "angle": 0 }
  5175. ],
  5176. "translate": [
  5177. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5178. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  5179. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  5180. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  5181. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  5182. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  5183. { "time": 3.5, "x": 0, "y": 0 }
  5184. ],
  5185. "scale": [
  5186. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5187. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  5188. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  5189. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  5190. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  5191. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  5192. { "time": 3.5, "x": 1, "y": 1 }
  5193. ]
  5194. },
  5195. "bone58": {
  5196. "rotate": [
  5197. { "time": 0, "angle": 0 },
  5198. { "time": 0.5667, "angle": 3.24 },
  5199. { "time": 1.1667, "angle": 0 },
  5200. { "time": 1.7333, "angle": 3.24 },
  5201. { "time": 2.3333, "angle": 0 },
  5202. { "time": 2.9, "angle": 3.24 },
  5203. { "time": 3.5, "angle": 0 }
  5204. ],
  5205. "translate": [
  5206. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5207. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  5208. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  5209. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  5210. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  5211. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  5212. { "time": 3.5, "x": 0, "y": 0 }
  5213. ],
  5214. "scale": [
  5215. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5216. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  5217. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  5218. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  5219. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  5220. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  5221. { "time": 3.5, "x": 1, "y": 1 }
  5222. ]
  5223. },
  5224. "bone59": {
  5225. "rotate": [
  5226. { "time": 0, "angle": 0 },
  5227. { "time": 0.5667, "angle": 4.43 },
  5228. { "time": 1.1667, "angle": 0 },
  5229. { "time": 1.7333, "angle": 4.43 },
  5230. { "time": 2.3333, "angle": 0 },
  5231. { "time": 2.9, "angle": 4.43 },
  5232. { "time": 3.5, "angle": 0 }
  5233. ],
  5234. "translate": [
  5235. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5236. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  5237. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  5238. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  5239. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  5240. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  5241. { "time": 3.5, "x": 0, "y": 0 }
  5242. ],
  5243. "scale": [
  5244. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5245. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  5246. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  5247. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  5248. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  5249. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  5250. { "time": 3.5, "x": 1, "y": 1 }
  5251. ]
  5252. },
  5253. "bone48": {
  5254. "rotate": [
  5255. { "time": 0, "angle": 0, "curve": "stepped" },
  5256. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  5257. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  5258. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  5259. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  5260. { "time": 2.9, "angle": 0, "curve": "stepped" },
  5261. { "time": 3.5, "angle": 0 }
  5262. ],
  5263. "translate": [
  5264. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5265. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  5266. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  5267. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  5268. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  5269. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  5270. { "time": 3.5, "x": 0, "y": 0 }
  5271. ],
  5272. "scale": [
  5273. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5274. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  5275. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  5276. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  5277. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  5278. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  5279. { "time": 3.5, "x": 1, "y": 1 }
  5280. ]
  5281. },
  5282. "bone60": {
  5283. "rotate": [
  5284. { "time": 0, "angle": 0, "curve": "stepped" },
  5285. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  5286. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  5287. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  5288. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  5289. { "time": 2.9, "angle": 0, "curve": "stepped" },
  5290. { "time": 3.5, "angle": 0 }
  5291. ],
  5292. "translate": [
  5293. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5294. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  5295. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  5296. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  5297. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  5298. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  5299. { "time": 3.5, "x": 0, "y": 0 }
  5300. ],
  5301. "scale": [
  5302. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5303. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  5304. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  5305. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  5306. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  5307. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  5308. { "time": 3.5, "x": 1, "y": 1 }
  5309. ]
  5310. },
  5311. "bone61": {
  5312. "rotate": [
  5313. { "time": 0.7667, "angle": 0, "curve": "stepped" },
  5314. { "time": 0.9667, "angle": 0, "curve": "stepped" },
  5315. { "time": 2.9, "angle": 0, "curve": "stepped" },
  5316. { "time": 3, "angle": 0 }
  5317. ],
  5318. "translate": [
  5319. { "time": 0.7667, "x": 7.62, "y": -8.71 },
  5320. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  5321. { "time": 2.9, "x": 0, "y": 0 },
  5322. { "time": 3, "x": 7.62, "y": -8.71 }
  5323. ],
  5324. "scale": [
  5325. { "time": 0.7667, "x": 0.2, "y": 0.2 },
  5326. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  5327. { "time": 2.9, "x": 1, "y": 1 },
  5328. { "time": 3, "x": 0.2, "y": 0.2 }
  5329. ]
  5330. }
  5331. },
  5332. "deform": {
  5333. "default": {
  5334. "erji": {
  5335. "erji": [
  5336. { "time": 0 },
  5337. {
  5338. "time": 0.5667,
  5339. "offset": 8,
  5340. "vertices": [ -0.53481, 1.37687 ]
  5341. },
  5342. { "time": 1.1667 },
  5343. {
  5344. "time": 1.7333,
  5345. "offset": 8,
  5346. "vertices": [ -0.53481, 1.37687 ]
  5347. },
  5348. { "time": 2.3333 },
  5349. {
  5350. "time": 2.9,
  5351. "offset": 8,
  5352. "vertices": [ -0.53481, 1.37687 ]
  5353. },
  5354. { "time": 3.5 }
  5355. ]
  5356. },
  5357. "pinmu": {
  5358. "pinmu": [
  5359. {
  5360. "time": 0,
  5361. "vertices": [ -43.03647, 4.72864, 0, 0, 0, 0, -35.84853, -1.42173 ],
  5362. "curve": "stepped"
  5363. },
  5364. {
  5365. "time": 0.0667,
  5366. "vertices": [ -43.03647, 4.72864, 0, 0, 0, 0, -35.84853, -1.42173 ]
  5367. },
  5368. {
  5369. "time": 0.1667,
  5370. "vertices": [ -24.59227, 2.70208, 0, 0, 0, 0, -19.76017, 2.26503 ]
  5371. },
  5372. { "time": 0.3667, "curve": "stepped" },
  5373. { "time": 2 },
  5374. {
  5375. "time": 2.0667,
  5376. "vertices": [ -24.59227, 2.70208, 0, 0, 0, 0, -19.76017, 2.26503 ]
  5377. },
  5378. {
  5379. "time": 2.1667,
  5380. "vertices": [ -43.03647, 4.72864, 0, 0, 0, 0, -35.84853, -1.42173 ]
  5381. }
  5382. ]
  5383. }
  5384. }
  5385. },
  5386. "drawOrder": [
  5387. {
  5388. "time": 1.5,
  5389. "offsets": [
  5390. { "slot": "diannao1", "offset": -28 }
  5391. ]
  5392. },
  5393. {
  5394. "time": 1.7333,
  5395. "offsets": [
  5396. { "slot": "diannao1", "offset": -28 }
  5397. ]
  5398. }
  5399. ]
  5400. },
  5401. "walk1": {
  5402. "slots": {
  5403. "biaoqing_1": {
  5404. "color": [
  5405. { "time": 0, "color": "ffffff00" }
  5406. ]
  5407. },
  5408. "biyan": {
  5409. "attachment": [
  5410. { "time": 0, "name": null },
  5411. { "time": 1, "name": null },
  5412. { "time": 1.1, "name": "biyan" },
  5413. { "time": 1.2, "name": null }
  5414. ]
  5415. },
  5416. "diannao1": {
  5417. "attachment": [
  5418. { "time": 0, "name": null },
  5419. { "time": 1, "name": null },
  5420. { "time": 2, "name": null }
  5421. ]
  5422. },
  5423. "diannao_x": {
  5424. "color": [
  5425. { "time": 0, "color": "ffffff00" }
  5426. ]
  5427. },
  5428. "dou": {
  5429. "attachment": [
  5430. { "time": 0, "name": null },
  5431. { "time": 1, "name": null },
  5432. { "time": 2, "name": null }
  5433. ]
  5434. },
  5435. "dou2": {
  5436. "attachment": [
  5437. { "time": 0, "name": null },
  5438. { "time": 1, "name": null },
  5439. { "time": 2, "name": null }
  5440. ]
  5441. },
  5442. "dou3": {
  5443. "attachment": [
  5444. { "time": 0, "name": null },
  5445. { "time": 1, "name": null },
  5446. { "time": 2, "name": null }
  5447. ]
  5448. },
  5449. "pinmu": {
  5450. "attachment": [
  5451. { "time": 0, "name": null },
  5452. { "time": 1, "name": null },
  5453. { "time": 2, "name": null }
  5454. ]
  5455. },
  5456. "youyan": {
  5457. "attachment": [
  5458. { "time": 1.1, "name": null },
  5459. { "time": 1.2, "name": "youyan" }
  5460. ]
  5461. },
  5462. "zuoyan": {
  5463. "attachment": [
  5464. { "time": 1.1, "name": null },
  5465. { "time": 1.2, "name": "zuoyan" }
  5466. ]
  5467. }
  5468. },
  5469. "bones": {
  5470. "bone53": {
  5471. "rotate": [
  5472. { "time": 0, "angle": 0, "curve": "stepped" },
  5473. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  5474. { "time": 0.5, "angle": 0, "curve": "stepped" },
  5475. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  5476. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  5477. { "time": 1, "angle": 0, "curve": "stepped" },
  5478. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  5479. { "time": 1.5, "angle": 0, "curve": "stepped" },
  5480. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  5481. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  5482. { "time": 2, "angle": 0 }
  5483. ],
  5484. "translate": [
  5485. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5486. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5487. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5488. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  5489. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  5490. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5491. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  5492. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5493. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  5494. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  5495. { "time": 2, "x": 0, "y": 0 }
  5496. ],
  5497. "scale": [
  5498. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5499. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5500. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5501. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  5502. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5503. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5504. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  5505. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  5506. { "time": 2, "x": 1, "y": 1 }
  5507. ]
  5508. },
  5509. "bone54": {
  5510. "rotate": [
  5511. { "time": 0, "angle": 0, "curve": "stepped" },
  5512. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  5513. { "time": 0.5, "angle": 0, "curve": "stepped" },
  5514. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  5515. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  5516. { "time": 1, "angle": 0, "curve": "stepped" },
  5517. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  5518. { "time": 1.5, "angle": 0, "curve": "stepped" },
  5519. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  5520. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  5521. { "time": 2, "angle": 0 }
  5522. ],
  5523. "translate": [
  5524. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5525. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5526. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5527. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  5528. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  5529. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5530. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  5531. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5532. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  5533. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  5534. { "time": 2, "x": 0, "y": 0 }
  5535. ],
  5536. "scale": [
  5537. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5538. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5539. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5540. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  5541. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5542. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5543. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  5544. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  5545. { "time": 2, "x": 1, "y": 1 }
  5546. ]
  5547. },
  5548. "bone55": {
  5549. "rotate": [
  5550. { "time": 0, "angle": 0, "curve": "stepped" },
  5551. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  5552. { "time": 0.5, "angle": 0, "curve": "stepped" },
  5553. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  5554. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  5555. { "time": 1, "angle": 0, "curve": "stepped" },
  5556. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  5557. { "time": 1.5, "angle": 0, "curve": "stepped" },
  5558. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  5559. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  5560. { "time": 2, "angle": 0 }
  5561. ],
  5562. "translate": [
  5563. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5564. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5565. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5566. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  5567. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  5568. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5569. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  5570. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5571. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  5572. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  5573. { "time": 2, "x": 0, "y": 0 }
  5574. ],
  5575. "scale": [
  5576. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5577. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5578. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5579. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  5580. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5581. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5582. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  5583. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  5584. { "time": 2, "x": 1, "y": 1 }
  5585. ]
  5586. },
  5587. "root": {
  5588. "rotate": [
  5589. { "time": 0, "angle": 0 }
  5590. ],
  5591. "translate": [
  5592. { "time": 0, "x": 0, "y": 0 }
  5593. ],
  5594. "scale": [
  5595. { "time": 0, "x": 0.65, "y": 0.65 }
  5596. ]
  5597. },
  5598. "bone": {
  5599. "rotate": [
  5600. { "time": 0, "angle": 0, "curve": "stepped" },
  5601. { "time": 0.5, "angle": 0, "curve": "stepped" },
  5602. { "time": 1, "angle": 0, "curve": "stepped" },
  5603. { "time": 1.5, "angle": 0, "curve": "stepped" },
  5604. { "time": 2, "angle": 0 }
  5605. ],
  5606. "translate": [
  5607. { "time": 0, "x": 0, "y": 1.78 },
  5608. { "time": 0.1667, "x": 0, "y": -1.18 },
  5609. { "time": 0.5, "x": 0, "y": 1.78 },
  5610. { "time": 0.6667, "x": 0, "y": -1.18 },
  5611. { "time": 1, "x": 0, "y": 1.78 },
  5612. { "time": 1.1667, "x": 0, "y": -1.18 },
  5613. { "time": 1.5, "x": 0, "y": 1.78 },
  5614. { "time": 1.6667, "x": 0, "y": -1.18 },
  5615. { "time": 2, "x": 0, "y": 1.78 }
  5616. ],
  5617. "scale": [
  5618. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5619. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5620. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5621. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5622. { "time": 2, "x": 1, "y": 1 }
  5623. ]
  5624. },
  5625. "bone2": {
  5626. "rotate": [
  5627. { "time": 0, "angle": 0, "curve": "stepped" },
  5628. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  5629. { "time": 0.5, "angle": 0, "curve": "stepped" },
  5630. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  5631. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  5632. { "time": 1, "angle": 0, "curve": "stepped" },
  5633. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  5634. { "time": 1.5, "angle": 0, "curve": "stepped" },
  5635. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  5636. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  5637. { "time": 2, "angle": 0 }
  5638. ],
  5639. "translate": [
  5640. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5641. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5642. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5643. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  5644. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  5645. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5646. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  5647. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5648. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  5649. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  5650. { "time": 2, "x": 0, "y": 0 }
  5651. ],
  5652. "scale": [
  5653. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5654. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5655. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5656. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  5657. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5658. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5659. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  5660. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  5661. { "time": 2, "x": 1, "y": 1 }
  5662. ]
  5663. },
  5664. "bone3": {
  5665. "rotate": [
  5666. { "time": 0, "angle": 0, "curve": "stepped" },
  5667. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  5668. { "time": 0.5, "angle": 0, "curve": "stepped" },
  5669. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  5670. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  5671. { "time": 1, "angle": 0, "curve": "stepped" },
  5672. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  5673. { "time": 1.5, "angle": 0, "curve": "stepped" },
  5674. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  5675. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  5676. { "time": 2, "angle": 0 }
  5677. ],
  5678. "translate": [
  5679. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5680. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5681. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5682. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  5683. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  5684. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5685. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  5686. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5687. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  5688. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  5689. { "time": 2, "x": 0, "y": 0 }
  5690. ],
  5691. "scale": [
  5692. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5693. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5694. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5695. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  5696. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5697. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5698. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  5699. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  5700. { "time": 2, "x": 1, "y": 1 }
  5701. ]
  5702. },
  5703. "bone4": {
  5704. "rotate": [
  5705. { "time": 0, "angle": -318.1 },
  5706. { "time": 0.1667, "angle": 24.25 },
  5707. { "time": 0.5, "angle": -11.06 },
  5708. { "time": 0.6667, "angle": 6.6 },
  5709. { "time": 0.8333, "angle": 24.25 },
  5710. { "time": 1, "angle": -318.1 },
  5711. { "time": 1.1667, "angle": 24.25 },
  5712. { "time": 1.5, "angle": -11.06 },
  5713. { "time": 1.6667, "angle": 6.6 },
  5714. { "time": 1.8333, "angle": 24.25 },
  5715. { "time": 2, "angle": -318.1 }
  5716. ],
  5717. "translate": [
  5718. { "time": 0, "x": -1.79, "y": -10.32 },
  5719. { "time": 0.1667, "x": -2.28, "y": -8.3 },
  5720. { "time": 0.5, "x": -3.24, "y": -4.25 },
  5721. { "time": 0.6667, "x": -2.76, "y": -6.27 },
  5722. { "time": 0.8333, "x": -2.28, "y": -8.3 },
  5723. { "time": 1, "x": -1.79, "y": -10.32 },
  5724. { "time": 1.1667, "x": -2.28, "y": -8.3 },
  5725. { "time": 1.5, "x": -3.24, "y": -4.25 },
  5726. { "time": 1.6667, "x": -2.76, "y": -6.27 },
  5727. { "time": 1.8333, "x": -2.28, "y": -8.3 },
  5728. { "time": 2, "x": -1.79, "y": -10.32 }
  5729. ],
  5730. "scale": [
  5731. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5732. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5733. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5734. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  5735. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5736. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5737. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  5738. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  5739. { "time": 2, "x": 1, "y": 1 }
  5740. ]
  5741. },
  5742. "bone5": {
  5743. "rotate": [
  5744. { "time": 0, "angle": -4.23 },
  5745. { "time": 0.5, "angle": -19.53 },
  5746. { "time": 1, "angle": -4.23 },
  5747. { "time": 1.5, "angle": -19.53 },
  5748. { "time": 2, "angle": -4.23 }
  5749. ],
  5750. "translate": [
  5751. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5752. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5753. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5754. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5755. { "time": 2, "x": 0, "y": 0 }
  5756. ],
  5757. "scale": [
  5758. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5759. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5760. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5761. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5762. { "time": 2, "x": 1, "y": 1 }
  5763. ]
  5764. },
  5765. "bone6": {
  5766. "rotate": [
  5767. { "time": 0, "angle": -9.34 },
  5768. { "time": 0.5, "angle": -6.69 },
  5769. { "time": 1, "angle": -9.34 },
  5770. { "time": 1.5, "angle": -6.69 },
  5771. { "time": 2, "angle": -9.34 }
  5772. ],
  5773. "translate": [
  5774. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5775. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5776. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5777. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5778. { "time": 2, "x": 0, "y": 0 }
  5779. ],
  5780. "scale": [
  5781. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5782. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5783. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5784. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5785. { "time": 2, "x": 1, "y": 1 }
  5786. ]
  5787. },
  5788. "bone7": {
  5789. "rotate": [
  5790. { "time": 0, "angle": 312.78 },
  5791. { "time": 0.1667, "angle": -27.92 },
  5792. { "time": 0.5, "angle": 10.67 },
  5793. { "time": 0.6667, "angle": -8.62 },
  5794. { "time": 0.8333, "angle": -27.92 },
  5795. { "time": 1, "angle": 312.78 },
  5796. { "time": 1.1667, "angle": -27.92 },
  5797. { "time": 1.5, "angle": 10.67 },
  5798. { "time": 1.6667, "angle": -8.62 },
  5799. { "time": 1.8333, "angle": -27.92 },
  5800. { "time": 2, "angle": 312.78 }
  5801. ],
  5802. "translate": [
  5803. { "time": 0, "x": -0.92, "y": 1.61 },
  5804. { "time": 0.1667, "x": -1.46, "y": 0.44 },
  5805. { "time": 0.5, "x": -2.55, "y": -1.91 },
  5806. { "time": 0.6667, "x": -2, "y": -0.74 },
  5807. { "time": 0.8333, "x": -1.46, "y": 0.44 },
  5808. { "time": 1, "x": -0.92, "y": 1.61 },
  5809. { "time": 1.1667, "x": -1.46, "y": 0.44 },
  5810. { "time": 1.5, "x": -2.55, "y": -1.91 },
  5811. { "time": 1.6667, "x": -2, "y": -0.74 },
  5812. { "time": 1.8333, "x": -1.46, "y": 0.44 },
  5813. { "time": 2, "x": -0.92, "y": 1.61 }
  5814. ],
  5815. "scale": [
  5816. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5817. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5818. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5819. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  5820. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5821. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5822. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  5823. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  5824. { "time": 2, "x": 1, "y": 1 }
  5825. ]
  5826. },
  5827. "bone8": {
  5828. "rotate": [
  5829. { "time": 0, "angle": -33.61 },
  5830. { "time": 0.1667, "angle": -25.55 },
  5831. { "time": 0.5, "angle": -9.44 },
  5832. { "time": 0.6667, "angle": -17.5 },
  5833. { "time": 0.8333, "angle": -25.55 },
  5834. { "time": 1, "angle": -33.61 },
  5835. { "time": 1.1667, "angle": -25.55 },
  5836. { "time": 1.5, "angle": -9.44 },
  5837. { "time": 1.6667, "angle": -17.5 },
  5838. { "time": 1.8333, "angle": -25.55 },
  5839. { "time": 2, "angle": -33.61 }
  5840. ],
  5841. "translate": [
  5842. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5843. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5844. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5845. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  5846. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  5847. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5848. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  5849. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5850. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  5851. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  5852. { "time": 2, "x": 0, "y": 0 }
  5853. ],
  5854. "scale": [
  5855. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5856. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5857. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5858. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  5859. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5860. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5861. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  5862. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  5863. { "time": 2, "x": 1, "y": 1 }
  5864. ]
  5865. },
  5866. "bone9": {
  5867. "rotate": [
  5868. { "time": 0, "angle": -14.04, "curve": "stepped" },
  5869. { "time": 0.1667, "angle": -14.04, "curve": "stepped" },
  5870. { "time": 0.5, "angle": -14.04, "curve": "stepped" },
  5871. { "time": 0.6667, "angle": -14.04, "curve": "stepped" },
  5872. { "time": 0.8333, "angle": -14.04, "curve": "stepped" },
  5873. { "time": 1, "angle": -14.04, "curve": "stepped" },
  5874. { "time": 1.1667, "angle": -14.04, "curve": "stepped" },
  5875. { "time": 1.5, "angle": -14.04, "curve": "stepped" },
  5876. { "time": 1.6667, "angle": -14.04, "curve": "stepped" },
  5877. { "time": 1.8333, "angle": -14.04, "curve": "stepped" },
  5878. { "time": 2, "angle": -14.04 }
  5879. ],
  5880. "translate": [
  5881. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5882. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5883. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5884. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  5885. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  5886. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5887. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  5888. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5889. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  5890. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  5891. { "time": 2, "x": 0, "y": 0 }
  5892. ],
  5893. "scale": [
  5894. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5895. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5896. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5897. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  5898. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5899. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5900. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  5901. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  5902. { "time": 2, "x": 1, "y": 1 }
  5903. ]
  5904. },
  5905. "bone10": {
  5906. "rotate": [
  5907. { "time": 0, "angle": 0, "curve": "stepped" },
  5908. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  5909. { "time": 0.5, "angle": 0, "curve": "stepped" },
  5910. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  5911. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  5912. { "time": 1, "angle": 0, "curve": "stepped" },
  5913. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  5914. { "time": 1.5, "angle": 0, "curve": "stepped" },
  5915. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  5916. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  5917. { "time": 2, "angle": 0 }
  5918. ],
  5919. "translate": [
  5920. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5921. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5922. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5923. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  5924. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  5925. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5926. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  5927. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5928. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  5929. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  5930. { "time": 2, "x": 0, "y": 0 }
  5931. ],
  5932. "scale": [
  5933. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5934. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5935. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5936. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  5937. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5938. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5939. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  5940. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  5941. { "time": 2, "x": 1, "y": 1 }
  5942. ]
  5943. },
  5944. "bone11": {
  5945. "rotate": [
  5946. { "time": 0, "angle": -15.86 },
  5947. { "time": 0.1667, "angle": -0.53 },
  5948. { "time": 0.3333, "angle": 19.59 },
  5949. { "time": 0.5, "angle": 41.68 },
  5950. { "time": 0.6667, "angle": 22.5 },
  5951. { "time": 0.8333, "angle": -5.58 },
  5952. { "time": 1, "angle": -15.86 },
  5953. { "time": 1.1667, "angle": -0.53 },
  5954. { "time": 1.3333, "angle": 19.59 },
  5955. { "time": 1.5, "angle": 41.68 },
  5956. { "time": 1.6667, "angle": 22.5 },
  5957. { "time": 1.8333, "angle": -5.58 },
  5958. { "time": 2, "angle": -15.86 }
  5959. ],
  5960. "translate": [
  5961. { "time": 0, "x": 0, "y": 0 },
  5962. { "time": 0.1667, "x": 2.34, "y": 1.1 },
  5963. { "time": 0.3333, "x": 11.87, "y": 0.67 },
  5964. { "time": 0.5, "x": 20.79, "y": 0.35 },
  5965. { "time": 0.6667, "x": 11.19, "y": -0.33 },
  5966. { "time": 0.8333, "x": 1.28, "y": 0.83 },
  5967. { "time": 1, "x": 0, "y": 0 },
  5968. { "time": 1.1667, "x": 2.34, "y": 1.1 },
  5969. { "time": 1.3333, "x": 11.87, "y": 0.67 },
  5970. { "time": 1.5, "x": 20.79, "y": 0.35 },
  5971. { "time": 1.6667, "x": 11.19, "y": -0.33 },
  5972. { "time": 1.8333, "x": 1.28, "y": 0.83 },
  5973. { "time": 2, "x": 0, "y": 0 }
  5974. ],
  5975. "scale": [
  5976. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5977. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  5978. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5979. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5980. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  5981. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5982. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5983. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5984. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  5985. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  5986. { "time": 2, "x": 1, "y": 1 }
  5987. ]
  5988. },
  5989. "bone12": {
  5990. "rotate": [
  5991. { "time": 0, "angle": -3.14 },
  5992. { "time": 0.1667, "angle": 4.1 },
  5993. { "time": 0.3333, "angle": -6.68 },
  5994. { "time": 0.5, "angle": -3.14 },
  5995. { "time": 0.6667, "angle": 30.59 },
  5996. { "time": 0.8333, "angle": 44 },
  5997. { "time": 1, "angle": -3.14 },
  5998. { "time": 1.1667, "angle": 4.1 },
  5999. { "time": 1.3333, "angle": -6.68 },
  6000. { "time": 1.5, "angle": -3.14 },
  6001. { "time": 1.6667, "angle": 30.59 },
  6002. { "time": 1.8333, "angle": 44 },
  6003. { "time": 2, "angle": -3.14 }
  6004. ],
  6005. "translate": [
  6006. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6007. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6008. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  6009. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6010. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6011. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  6012. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6013. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  6014. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  6015. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6016. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  6017. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  6018. { "time": 2, "x": 0, "y": 0 }
  6019. ],
  6020. "scale": [
  6021. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6022. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  6023. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6024. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6025. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6026. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6027. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  6028. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6029. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  6030. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6031. { "time": 2, "x": 1, "y": 1 }
  6032. ]
  6033. },
  6034. "bone13": {
  6035. "rotate": [
  6036. { "time": 0, "angle": 0, "curve": "stepped" },
  6037. { "time": 0.1667, "angle": 0 },
  6038. { "time": 0.3333, "angle": -11.41 },
  6039. { "time": 0.5, "angle": 3.59 },
  6040. { "time": 0.6667, "angle": -8.18 },
  6041. { "time": 0.8333, "angle": -9.36 },
  6042. { "time": 1, "angle": 0, "curve": "stepped" },
  6043. { "time": 1.1667, "angle": 0 },
  6044. { "time": 1.3333, "angle": -11.41 },
  6045. { "time": 1.5, "angle": 3.59 },
  6046. { "time": 1.6667, "angle": -8.18 },
  6047. { "time": 1.8333, "angle": -9.36 },
  6048. { "time": 2, "angle": 0 }
  6049. ],
  6050. "translate": [
  6051. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6052. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6053. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  6054. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6055. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6056. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  6057. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6058. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  6059. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  6060. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6061. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  6062. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  6063. { "time": 2, "x": 0, "y": 0 }
  6064. ],
  6065. "scale": [
  6066. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6067. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  6068. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6069. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6070. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6071. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6072. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  6073. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6074. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  6075. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6076. { "time": 2, "x": 1, "y": 1 }
  6077. ]
  6078. },
  6079. "bone14": {
  6080. "rotate": [
  6081. { "time": 0, "angle": 22.22 },
  6082. { "time": 0.1667, "angle": 6.1 },
  6083. { "time": 0.3333, "angle": -30.91 },
  6084. { "time": 0.5, "angle": -26.13 },
  6085. { "time": 0.6667, "angle": -19.66 },
  6086. { "time": 0.8333, "angle": 6.1 },
  6087. { "time": 1, "angle": 22.22 },
  6088. { "time": 1.1667, "angle": 6.1 },
  6089. { "time": 1.3333, "angle": -30.91 },
  6090. { "time": 1.5, "angle": -26.13 },
  6091. { "time": 1.6667, "angle": -19.66 },
  6092. { "time": 1.8333, "angle": 6.1 },
  6093. { "time": 2, "angle": 22.22 }
  6094. ],
  6095. "translate": [
  6096. { "time": 0, "x": 0, "y": 0 },
  6097. { "time": 0.1667, "x": -9.71, "y": 3.49 },
  6098. { "time": 0.3333, "x": -19.49, "y": 4.16 },
  6099. { "time": 0.5, "x": -21.02, "y": -1.46 },
  6100. { "time": 0.6667, "x": -17.2, "y": -0.17 },
  6101. { "time": 0.8333, "x": -7.01, "y": -0.49 },
  6102. { "time": 1, "x": 0, "y": 0 },
  6103. { "time": 1.1667, "x": -9.71, "y": 3.49 },
  6104. { "time": 1.3333, "x": -19.49, "y": 4.16 },
  6105. { "time": 1.5, "x": -21.02, "y": -1.46 },
  6106. { "time": 1.6667, "x": -17.2, "y": -0.17 },
  6107. { "time": 1.8333, "x": -7.01, "y": -0.49 },
  6108. { "time": 2, "x": 0, "y": 0 }
  6109. ],
  6110. "scale": [
  6111. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6112. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  6113. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6114. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6115. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6116. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6117. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  6118. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6119. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  6120. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6121. { "time": 2, "x": 1, "y": 1 }
  6122. ]
  6123. },
  6124. "bone15": {
  6125. "rotate": [
  6126. { "time": 0, "angle": 0 },
  6127. { "time": 0.1667, "angle": 29.76 },
  6128. { "time": 0.3333, "angle": 63.15 },
  6129. { "time": 0.5, "angle": 0 },
  6130. { "time": 0.6667, "angle": 14.51 },
  6131. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  6132. { "time": 1, "angle": 0 },
  6133. { "time": 1.1667, "angle": 29.76 },
  6134. { "time": 1.3333, "angle": 63.15 },
  6135. { "time": 1.5, "angle": 0 },
  6136. { "time": 1.6667, "angle": 14.51 },
  6137. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  6138. { "time": 2, "angle": 0 }
  6139. ],
  6140. "translate": [
  6141. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6142. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6143. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  6144. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6145. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6146. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  6147. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6148. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  6149. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  6150. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6151. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  6152. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  6153. { "time": 2, "x": 0, "y": 0 }
  6154. ],
  6155. "scale": [
  6156. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6157. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  6158. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6159. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6160. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6161. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6162. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  6163. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6164. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  6165. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6166. { "time": 2, "x": 1, "y": 1 }
  6167. ]
  6168. },
  6169. "bone16": {
  6170. "rotate": [
  6171. { "time": 0, "angle": 0, "curve": "stepped" },
  6172. { "time": 0.1667, "angle": 0 },
  6173. { "time": 0.3333, "angle": 4.62 },
  6174. { "time": 0.5, "angle": 0 },
  6175. { "time": 0.6667, "angle": 10.03 },
  6176. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  6177. { "time": 1, "angle": 0, "curve": "stepped" },
  6178. { "time": 1.1667, "angle": 0 },
  6179. { "time": 1.3333, "angle": 4.62 },
  6180. { "time": 1.5, "angle": 0 },
  6181. { "time": 1.6667, "angle": 10.03 },
  6182. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  6183. { "time": 2, "angle": 0 }
  6184. ],
  6185. "translate": [
  6186. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6187. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6188. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  6189. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6190. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6191. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  6192. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6193. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  6194. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  6195. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6196. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  6197. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  6198. { "time": 2, "x": 0, "y": 0 }
  6199. ],
  6200. "scale": [
  6201. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6202. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  6203. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6204. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6205. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6206. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6207. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  6208. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6209. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  6210. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6211. { "time": 2, "x": 1, "y": 1 }
  6212. ]
  6213. },
  6214. "bone17": {
  6215. "rotate": [
  6216. { "time": 0, "angle": 0, "curve": "stepped" },
  6217. { "time": 0.5, "angle": 0, "curve": "stepped" },
  6218. { "time": 1, "angle": 0, "curve": "stepped" },
  6219. { "time": 1.5, "angle": 0, "curve": "stepped" },
  6220. { "time": 2, "angle": 0 }
  6221. ],
  6222. "translate": [
  6223. { "time": 0, "x": 1.23, "y": 5.24 },
  6224. { "time": 0.5, "x": 0.49, "y": -4 },
  6225. { "time": 1, "x": 1.23, "y": 5.24 },
  6226. { "time": 1.5, "x": 0.49, "y": -4 },
  6227. { "time": 2, "x": 1.23, "y": 5.24 }
  6228. ],
  6229. "scale": [
  6230. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6231. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6232. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6233. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6234. { "time": 2, "x": 1, "y": 1 }
  6235. ]
  6236. },
  6237. "bone18": {
  6238. "rotate": [
  6239. { "time": 0, "angle": 0 },
  6240. { "time": 0.1667, "angle": 0.83 },
  6241. { "time": 0.5, "angle": -6.74 },
  6242. { "time": 0.6667, "angle": -0.5 },
  6243. { "time": 0.8333, "angle": 0.83 },
  6244. { "time": 1, "angle": 0 },
  6245. { "time": 1.1667, "angle": 0.83 },
  6246. { "time": 1.5, "angle": -6.74 },
  6247. { "time": 1.6667, "angle": -0.5 },
  6248. { "time": 1.8333, "angle": 0.83 },
  6249. { "time": 2, "angle": 0 }
  6250. ],
  6251. "translate": [
  6252. { "time": 0, "x": 0.03, "y": 0.5 },
  6253. { "time": 0.5, "x": -0.51, "y": 2.92 },
  6254. { "time": 1, "x": 0.03, "y": 0.5 },
  6255. { "time": 1.5, "x": -0.51, "y": 2.92 },
  6256. { "time": 2, "x": 0.03, "y": 0.5 }
  6257. ],
  6258. "scale": [
  6259. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6260. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6261. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6262. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6263. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6264. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6265. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  6266. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6267. { "time": 2, "x": 1, "y": 1 }
  6268. ]
  6269. },
  6270. "bone19": {
  6271. "rotate": [
  6272. { "time": 0, "angle": -18 },
  6273. { "time": 0.1667, "angle": -13.69 },
  6274. { "time": 0.5, "angle": -5.06 },
  6275. { "time": 0.6667, "angle": -9.37 },
  6276. { "time": 0.8333, "angle": -13.69 },
  6277. { "time": 1, "angle": -18 },
  6278. { "time": 1.1667, "angle": -13.69 },
  6279. { "time": 1.5, "angle": -5.06 },
  6280. { "time": 1.6667, "angle": -9.37 },
  6281. { "time": 1.8333, "angle": -13.69 },
  6282. { "time": 2, "angle": -18 }
  6283. ],
  6284. "translate": [
  6285. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6286. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6287. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6288. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6289. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  6290. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6291. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  6292. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6293. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  6294. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  6295. { "time": 2, "x": 0, "y": 0 }
  6296. ],
  6297. "scale": [
  6298. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6299. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6300. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6301. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6302. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6303. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6304. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  6305. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6306. { "time": 2, "x": 1, "y": 1 }
  6307. ]
  6308. },
  6309. "bone20": {
  6310. "rotate": [
  6311. { "time": 0, "angle": 3.77 },
  6312. { "time": 0.1667, "angle": 4.23 },
  6313. { "time": 0.5, "angle": 5.15 },
  6314. { "time": 0.6667, "angle": 4.69 },
  6315. { "time": 0.8333, "angle": 4.23 },
  6316. { "time": 1, "angle": 3.77 },
  6317. { "time": 1.1667, "angle": 4.23 },
  6318. { "time": 1.5, "angle": 5.15 },
  6319. { "time": 1.6667, "angle": 4.69 },
  6320. { "time": 1.8333, "angle": 4.23 },
  6321. { "time": 2, "angle": 3.77 }
  6322. ],
  6323. "translate": [
  6324. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6325. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6326. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6327. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6328. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  6329. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6330. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  6331. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6332. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  6333. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  6334. { "time": 2, "x": 0, "y": 0 }
  6335. ],
  6336. "scale": [
  6337. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6338. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6339. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6340. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6341. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6342. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6343. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  6344. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6345. { "time": 2, "x": 1, "y": 1 }
  6346. ]
  6347. },
  6348. "bone21": {
  6349. "rotate": [
  6350. { "time": 0, "angle": 8.91 },
  6351. { "time": 0.1667, "angle": 7.03 },
  6352. { "time": 0.5, "angle": 3.27 },
  6353. { "time": 0.6667, "angle": 5.15 },
  6354. { "time": 0.8333, "angle": 7.03 },
  6355. { "time": 1, "angle": 8.91 },
  6356. { "time": 1.1667, "angle": 7.03 },
  6357. { "time": 1.5, "angle": 3.27 },
  6358. { "time": 1.6667, "angle": 5.15 },
  6359. { "time": 1.8333, "angle": 7.03 },
  6360. { "time": 2, "angle": 8.91 }
  6361. ],
  6362. "translate": [
  6363. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6364. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6365. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6366. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6367. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  6368. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6369. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  6370. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6371. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  6372. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  6373. { "time": 2, "x": 0, "y": 0 }
  6374. ],
  6375. "scale": [
  6376. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6377. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6378. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6379. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6380. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6381. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6382. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  6383. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6384. { "time": 2, "x": 1, "y": 1 }
  6385. ]
  6386. },
  6387. "bone22": {
  6388. "rotate": [
  6389. { "time": 0, "angle": 5.08 },
  6390. { "time": 0.1667, "angle": 1.69 },
  6391. { "time": 0.5, "angle": -5.1 },
  6392. { "time": 0.6667, "angle": -1.7 },
  6393. { "time": 0.8333, "angle": 1.69 },
  6394. { "time": 1, "angle": 5.08 },
  6395. { "time": 1.1667, "angle": 1.69 },
  6396. { "time": 1.5, "angle": -5.1 },
  6397. { "time": 1.6667, "angle": -1.7 },
  6398. { "time": 1.8333, "angle": 1.69 },
  6399. { "time": 2, "angle": 5.08 }
  6400. ],
  6401. "translate": [
  6402. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6403. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6404. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6405. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6406. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  6407. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6408. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  6409. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6410. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  6411. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  6412. { "time": 2, "x": 0, "y": 0 }
  6413. ],
  6414. "scale": [
  6415. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6416. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6417. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6418. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6419. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6420. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6421. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  6422. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6423. { "time": 2, "x": 1, "y": 1 }
  6424. ]
  6425. },
  6426. "bone23": {
  6427. "rotate": [
  6428. { "time": 0, "angle": 4.74 },
  6429. { "time": 0.1667, "angle": 0.31 },
  6430. { "time": 0.5, "angle": -8.55 },
  6431. { "time": 0.6667, "angle": -4.12 },
  6432. { "time": 0.8333, "angle": 0.31 },
  6433. { "time": 1, "angle": 4.74 },
  6434. { "time": 1.1667, "angle": 0.31 },
  6435. { "time": 1.5, "angle": -8.55 },
  6436. { "time": 1.6667, "angle": -4.12 },
  6437. { "time": 1.8333, "angle": 0.31 },
  6438. { "time": 2, "angle": 4.74 }
  6439. ],
  6440. "translate": [
  6441. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6442. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6443. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6444. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6445. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  6446. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6447. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  6448. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6449. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  6450. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  6451. { "time": 2, "x": 0, "y": 0 }
  6452. ],
  6453. "scale": [
  6454. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6455. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6456. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6457. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6458. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6459. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6460. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  6461. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6462. { "time": 2, "x": 1, "y": 1 }
  6463. ]
  6464. },
  6465. "bone24": {
  6466. "rotate": [
  6467. { "time": 0, "angle": 0, "curve": "stepped" },
  6468. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  6469. { "time": 0.5, "angle": 0, "curve": "stepped" },
  6470. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  6471. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  6472. { "time": 1, "angle": 0, "curve": "stepped" },
  6473. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  6474. { "time": 1.5, "angle": 0, "curve": "stepped" },
  6475. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  6476. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  6477. { "time": 2, "angle": 0 }
  6478. ],
  6479. "translate": [
  6480. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6481. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6482. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6483. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6484. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  6485. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6486. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  6487. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6488. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  6489. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  6490. { "time": 2, "x": 0, "y": 0 }
  6491. ],
  6492. "scale": [
  6493. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6494. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6495. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6496. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6497. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6498. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6499. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  6500. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6501. { "time": 2, "x": 1, "y": 1 }
  6502. ]
  6503. },
  6504. "bone25": {
  6505. "rotate": [
  6506. { "time": 0, "angle": 0, "curve": "stepped" },
  6507. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  6508. { "time": 0.5, "angle": 0, "curve": "stepped" },
  6509. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  6510. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  6511. { "time": 1, "angle": 0, "curve": "stepped" },
  6512. { "time": 1.1, "angle": 0, "curve": "stepped" },
  6513. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  6514. { "time": 1.2, "angle": 0, "curve": "stepped" },
  6515. { "time": 1.3, "angle": 0, "curve": "stepped" },
  6516. { "time": 1.5, "angle": 0, "curve": "stepped" },
  6517. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  6518. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  6519. { "time": 2, "angle": 0 }
  6520. ],
  6521. "translate": [
  6522. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6523. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6524. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6525. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6526. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  6527. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6528. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  6529. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  6530. { "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
  6531. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  6532. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6533. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  6534. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  6535. { "time": 2, "x": 0, "y": 0 }
  6536. ],
  6537. "scale": [
  6538. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6539. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6540. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6541. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6542. { "time": 1, "x": 1, "y": 1 },
  6543. { "time": 1.1, "x": 0.42, "y": 1, "curve": "stepped" },
  6544. { "time": 1.2, "x": 0.42, "y": 1 },
  6545. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  6546. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6547. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  6548. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6549. { "time": 2, "x": 1, "y": 1 }
  6550. ]
  6551. },
  6552. "bone26": {
  6553. "rotate": [
  6554. { "time": 0, "angle": 0, "curve": "stepped" },
  6555. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  6556. { "time": 0.5, "angle": 0, "curve": "stepped" },
  6557. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  6558. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  6559. { "time": 1, "angle": 0, "curve": "stepped" },
  6560. { "time": 1.1, "angle": 0, "curve": "stepped" },
  6561. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  6562. { "time": 1.2, "angle": 0, "curve": "stepped" },
  6563. { "time": 1.3, "angle": 0, "curve": "stepped" },
  6564. { "time": 1.5, "angle": 0, "curve": "stepped" },
  6565. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  6566. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  6567. { "time": 2, "angle": 0 }
  6568. ],
  6569. "translate": [
  6570. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6571. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6572. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6573. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6574. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  6575. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6576. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  6577. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  6578. { "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
  6579. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  6580. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6581. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  6582. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  6583. { "time": 2, "x": 0, "y": 0 }
  6584. ],
  6585. "scale": [
  6586. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6587. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6588. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6589. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6590. { "time": 1, "x": 1, "y": 1 },
  6591. { "time": 1.1, "x": 0.464, "y": 1, "curve": "stepped" },
  6592. { "time": 1.2, "x": 0.464, "y": 1 },
  6593. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  6594. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6595. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  6596. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6597. { "time": 2, "x": 1, "y": 1 }
  6598. ]
  6599. },
  6600. "bone27": {
  6601. "rotate": [
  6602. { "time": 0, "angle": 0, "curve": "stepped" },
  6603. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  6604. { "time": 0.5, "angle": 0, "curve": "stepped" },
  6605. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  6606. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  6607. { "time": 1, "angle": 0, "curve": "stepped" },
  6608. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  6609. { "time": 1.5, "angle": 0, "curve": "stepped" },
  6610. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  6611. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  6612. { "time": 2, "angle": 0 }
  6613. ],
  6614. "translate": [
  6615. { "time": 0, "x": -2, "y": 0.06 }
  6616. ],
  6617. "scale": [
  6618. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6619. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6620. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6621. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6622. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6623. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6624. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  6625. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6626. { "time": 2, "x": 1, "y": 1 }
  6627. ]
  6628. },
  6629. "bone28": {
  6630. "rotate": [
  6631. { "time": 0, "angle": 0, "curve": "stepped" },
  6632. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  6633. { "time": 0.5, "angle": 0, "curve": "stepped" },
  6634. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  6635. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  6636. { "time": 1, "angle": 0, "curve": "stepped" },
  6637. { "time": 1.1, "angle": 0, "curve": "stepped" },
  6638. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  6639. { "time": 1.2, "angle": 0, "curve": "stepped" },
  6640. { "time": 1.3, "angle": 0, "curve": "stepped" },
  6641. { "time": 1.5, "angle": 0, "curve": "stepped" },
  6642. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  6643. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  6644. { "time": 2, "angle": 0 }
  6645. ],
  6646. "translate": [
  6647. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6648. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6649. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6650. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6651. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  6652. { "time": 1, "x": 0, "y": 0 },
  6653. { "time": 1.1, "x": -1.59, "y": 0.05 },
  6654. { "time": 1.1667, "x": 0, "y": 0 },
  6655. { "time": 1.2, "x": -1.59, "y": 0.05 },
  6656. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  6657. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6658. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  6659. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  6660. { "time": 2, "x": 0, "y": 0 }
  6661. ],
  6662. "scale": [
  6663. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6664. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6665. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6666. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6667. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6668. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  6669. { "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
  6670. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6671. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  6672. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6673. { "time": 2, "x": 1, "y": 1 }
  6674. ]
  6675. },
  6676. "bone29": {
  6677. "rotate": [
  6678. { "time": 0, "angle": 0, "curve": "stepped" },
  6679. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  6680. { "time": 0.5, "angle": 0, "curve": "stepped" },
  6681. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  6682. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  6683. { "time": 1, "angle": 0, "curve": "stepped" },
  6684. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  6685. { "time": 1.5, "angle": 0, "curve": "stepped" },
  6686. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  6687. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  6688. { "time": 2, "angle": 0 }
  6689. ],
  6690. "translate": [
  6691. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6692. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6693. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6694. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6695. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  6696. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6697. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  6698. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6699. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  6700. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  6701. { "time": 2, "x": 0, "y": 0 }
  6702. ],
  6703. "scale": [
  6704. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6705. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6706. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6707. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6708. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6709. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6710. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  6711. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6712. { "time": 2, "x": 1, "y": 1 }
  6713. ]
  6714. },
  6715. "bone30": {
  6716. "rotate": [
  6717. { "time": 0, "angle": 0, "curve": "stepped" },
  6718. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  6719. { "time": 0.5, "angle": 0, "curve": "stepped" },
  6720. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  6721. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  6722. { "time": 1, "angle": 0, "curve": "stepped" },
  6723. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  6724. { "time": 1.5, "angle": 0, "curve": "stepped" },
  6725. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  6726. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  6727. { "time": 2, "angle": 0 }
  6728. ],
  6729. "translate": [
  6730. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6731. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6732. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6733. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6734. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  6735. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6736. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  6737. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6738. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  6739. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  6740. { "time": 2, "x": 0, "y": 0 }
  6741. ],
  6742. "scale": [
  6743. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6744. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6745. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6746. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6747. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6748. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6749. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  6750. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6751. { "time": 2, "x": 1, "y": 1 }
  6752. ]
  6753. },
  6754. "bone31": {
  6755. "rotate": [
  6756. { "time": 0, "angle": 0 },
  6757. { "time": 0.5, "angle": -3.83 },
  6758. { "time": 1, "angle": 0 },
  6759. { "time": 1.5, "angle": -3.83 },
  6760. { "time": 2, "angle": 0 }
  6761. ],
  6762. "translate": [
  6763. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6764. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6765. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6766. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6767. { "time": 2, "x": 0, "y": 0 }
  6768. ],
  6769. "scale": [
  6770. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6771. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6772. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6773. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6774. { "time": 2, "x": 1, "y": 1 }
  6775. ]
  6776. },
  6777. "bone32": {
  6778. "rotate": [
  6779. { "time": 0, "angle": 0 },
  6780. { "time": 0.5, "angle": 0.95 },
  6781. { "time": 1, "angle": 0 },
  6782. { "time": 1.5, "angle": 0.95 },
  6783. { "time": 2, "angle": 0 }
  6784. ],
  6785. "translate": [
  6786. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6787. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6788. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6789. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6790. { "time": 2, "x": 0, "y": 0 }
  6791. ],
  6792. "scale": [
  6793. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6794. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6795. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6796. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6797. { "time": 2, "x": 1, "y": 1 }
  6798. ]
  6799. },
  6800. "bone33": {
  6801. "rotate": [
  6802. { "time": 0, "angle": 0 },
  6803. { "time": 0.5, "angle": -11.18 },
  6804. { "time": 1, "angle": 0 },
  6805. { "time": 1.5, "angle": -11.18 },
  6806. { "time": 2, "angle": 0 }
  6807. ],
  6808. "translate": [
  6809. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6810. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6811. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6812. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6813. { "time": 2, "x": 0, "y": 0 }
  6814. ],
  6815. "scale": [
  6816. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6817. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6818. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6819. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6820. { "time": 2, "x": 1, "y": 1 }
  6821. ]
  6822. },
  6823. "bone34": {
  6824. "rotate": [
  6825. { "time": 0, "angle": 0 },
  6826. { "time": 0.5, "angle": -5.15 },
  6827. { "time": 1, "angle": 0 },
  6828. { "time": 1.5, "angle": -5.15 },
  6829. { "time": 2, "angle": 0 }
  6830. ],
  6831. "translate": [
  6832. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6833. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6834. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6835. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6836. { "time": 2, "x": 0, "y": 0 }
  6837. ],
  6838. "scale": [
  6839. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6840. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6841. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6842. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6843. { "time": 2, "x": 1, "y": 1 }
  6844. ]
  6845. },
  6846. "bone35": {
  6847. "rotate": [
  6848. { "time": 0, "angle": 0, "curve": "stepped" },
  6849. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  6850. { "time": 0.5, "angle": 0, "curve": "stepped" },
  6851. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  6852. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  6853. { "time": 1, "angle": 0, "curve": "stepped" },
  6854. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  6855. { "time": 1.5, "angle": 0, "curve": "stepped" },
  6856. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  6857. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  6858. { "time": 2, "angle": 0 }
  6859. ],
  6860. "translate": [
  6861. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6862. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6863. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6864. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6865. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  6866. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6867. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  6868. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6869. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  6870. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  6871. { "time": 2, "x": 0, "y": 0 }
  6872. ],
  6873. "scale": [
  6874. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6875. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6876. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6877. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6878. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6879. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6880. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  6881. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6882. { "time": 2, "x": 1, "y": 1 }
  6883. ]
  6884. },
  6885. "bone36": {
  6886. "rotate": [
  6887. { "time": 0, "angle": 0 },
  6888. { "time": 0.5, "angle": 23.79 },
  6889. { "time": 1, "angle": 0 },
  6890. { "time": 1.5, "angle": 23.79 },
  6891. { "time": 2, "angle": 0 }
  6892. ],
  6893. "translate": [
  6894. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6895. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6896. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6897. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6898. { "time": 2, "x": 0, "y": 0 }
  6899. ],
  6900. "scale": [
  6901. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6902. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6903. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6904. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6905. { "time": 2, "x": 1, "y": 1 }
  6906. ]
  6907. },
  6908. "bone37": {
  6909. "rotate": [
  6910. { "time": 0, "angle": 0 },
  6911. { "time": 0.5, "angle": 13.15 },
  6912. { "time": 1, "angle": 0 },
  6913. { "time": 1.5, "angle": 13.15 },
  6914. { "time": 2, "angle": 0 }
  6915. ],
  6916. "translate": [
  6917. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6918. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6919. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6920. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6921. { "time": 2, "x": 0, "y": 0 }
  6922. ],
  6923. "scale": [
  6924. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6925. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6926. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6927. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6928. { "time": 2, "x": 1, "y": 1 }
  6929. ]
  6930. },
  6931. "bone38": {
  6932. "rotate": [
  6933. { "time": 0, "angle": 0, "curve": "stepped" },
  6934. { "time": 0.5, "angle": 0, "curve": "stepped" },
  6935. { "time": 1, "angle": 0, "curve": "stepped" },
  6936. { "time": 1.5, "angle": 0, "curve": "stepped" },
  6937. { "time": 2, "angle": 0 }
  6938. ],
  6939. "translate": [
  6940. { "time": 0, "x": 0.27, "y": 1.52 },
  6941. { "time": 0.5, "x": 0, "y": 0 },
  6942. { "time": 1, "x": 0.27, "y": 1.52 },
  6943. { "time": 1.5, "x": 0, "y": 0 },
  6944. { "time": 2, "x": 0.27, "y": 1.52 }
  6945. ],
  6946. "scale": [
  6947. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6948. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6949. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6950. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6951. { "time": 2, "x": 1, "y": 1 }
  6952. ]
  6953. },
  6954. "bone39": {
  6955. "rotate": [
  6956. { "time": 0, "angle": 0 },
  6957. { "time": 0.5, "angle": -13.87 },
  6958. { "time": 1, "angle": 0 },
  6959. { "time": 1.5, "angle": -13.87 },
  6960. { "time": 2, "angle": 0 }
  6961. ],
  6962. "translate": [
  6963. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6964. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6965. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6966. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6967. { "time": 2, "x": 0, "y": 0 }
  6968. ],
  6969. "scale": [
  6970. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6971. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6972. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6973. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6974. { "time": 2, "x": 1, "y": 1 }
  6975. ]
  6976. },
  6977. "bone40": {
  6978. "rotate": [
  6979. { "time": 0, "angle": 0, "curve": "stepped" },
  6980. { "time": 0.5, "angle": 0, "curve": "stepped" },
  6981. { "time": 1, "angle": 0, "curve": "stepped" },
  6982. { "time": 1.5, "angle": 0, "curve": "stepped" },
  6983. { "time": 2, "angle": 0 }
  6984. ],
  6985. "translate": [
  6986. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6987. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6988. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6989. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6990. { "time": 2, "x": 0, "y": 0 }
  6991. ],
  6992. "scale": [
  6993. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6994. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6995. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6996. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6997. { "time": 2, "x": 1, "y": 1 }
  6998. ]
  6999. },
  7000. "bone41": {
  7001. "rotate": [
  7002. { "time": 0, "angle": 0, "curve": "stepped" },
  7003. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  7004. { "time": 0.5, "angle": 0, "curve": "stepped" },
  7005. { "time": 1, "angle": 0, "curve": "stepped" },
  7006. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  7007. { "time": 1.5, "angle": 0, "curve": "stepped" },
  7008. { "time": 2, "angle": 0 }
  7009. ],
  7010. "translate": [
  7011. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7012. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  7013. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7014. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7015. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  7016. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7017. { "time": 2, "x": 0, "y": 0 }
  7018. ],
  7019. "scale": [
  7020. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7021. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7022. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7023. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7024. { "time": 2, "x": 1, "y": 1 }
  7025. ]
  7026. },
  7027. "bone42": {
  7028. "rotate": [
  7029. { "time": 0, "angle": 0 },
  7030. { "time": 0.5, "angle": 12.01 },
  7031. { "time": 1, "angle": 0 },
  7032. { "time": 1.5, "angle": 12.01 },
  7033. { "time": 2, "angle": 0 }
  7034. ],
  7035. "translate": [
  7036. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7037. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7038. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7039. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7040. { "time": 2, "x": 0, "y": 0 }
  7041. ],
  7042. "scale": [
  7043. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7044. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7045. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7046. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7047. { "time": 2, "x": 1, "y": 1 }
  7048. ]
  7049. },
  7050. "bone43": {
  7051. "rotate": [
  7052. { "time": 0, "angle": 16.54 },
  7053. { "time": 0.5, "angle": 17.84 },
  7054. { "time": 1, "angle": 16.54 },
  7055. { "time": 1.5, "angle": 17.84 },
  7056. { "time": 2, "angle": 16.54 }
  7057. ],
  7058. "translate": [
  7059. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7060. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7061. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7062. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7063. { "time": 2, "x": 0, "y": 0 }
  7064. ],
  7065. "scale": [
  7066. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7067. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7068. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7069. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7070. { "time": 2, "x": 1, "y": 1 }
  7071. ]
  7072. },
  7073. "bone44": {
  7074. "rotate": [
  7075. { "time": 0, "angle": 0, "curve": "stepped" },
  7076. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  7077. { "time": 0.5, "angle": 0, "curve": "stepped" },
  7078. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  7079. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  7080. { "time": 1, "angle": 0, "curve": "stepped" },
  7081. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  7082. { "time": 1.5, "angle": 0, "curve": "stepped" },
  7083. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  7084. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  7085. { "time": 2, "angle": 0 }
  7086. ],
  7087. "translate": [
  7088. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7089. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  7090. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7091. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  7092. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  7093. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7094. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  7095. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7096. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  7097. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  7098. { "time": 2, "x": 0, "y": 0 }
  7099. ],
  7100. "scale": [
  7101. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7102. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7103. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  7104. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  7105. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7106. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7107. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  7108. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  7109. { "time": 2, "x": 1, "y": 1 }
  7110. ]
  7111. },
  7112. "bone45": {
  7113. "rotate": [
  7114. { "time": 0, "angle": 0 },
  7115. { "time": 0.5, "angle": 9.52 },
  7116. { "time": 1, "angle": 0 },
  7117. { "time": 1.5, "angle": 9.52 },
  7118. { "time": 2, "angle": 0 }
  7119. ],
  7120. "translate": [
  7121. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7122. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7123. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7124. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7125. { "time": 2, "x": 0, "y": 0 }
  7126. ],
  7127. "scale": [
  7128. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7129. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7130. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7131. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7132. { "time": 2, "x": 1, "y": 1 }
  7133. ]
  7134. },
  7135. "bone46": {
  7136. "rotate": [
  7137. { "time": 0, "angle": 0 },
  7138. { "time": 0.5, "angle": -24.63 },
  7139. { "time": 1, "angle": 0 },
  7140. { "time": 1.5, "angle": -24.63 },
  7141. { "time": 2, "angle": 0 }
  7142. ],
  7143. "translate": [
  7144. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7145. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7146. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7147. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7148. { "time": 2, "x": 0, "y": 0 }
  7149. ],
  7150. "scale": [
  7151. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7152. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7153. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7154. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7155. { "time": 2, "x": 1, "y": 1 }
  7156. ]
  7157. },
  7158. "bone47": {
  7159. "rotate": [
  7160. { "time": 0, "angle": 0 },
  7161. { "time": 0.5, "angle": -5.14 },
  7162. { "time": 1, "angle": 0 },
  7163. { "time": 1.5, "angle": -5.14 },
  7164. { "time": 2, "angle": 0 }
  7165. ],
  7166. "translate": [
  7167. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7168. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7169. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7170. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7171. { "time": 2, "x": 0, "y": 0 }
  7172. ],
  7173. "scale": [
  7174. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7175. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7176. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7177. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7178. { "time": 2, "x": 1, "y": 1 }
  7179. ]
  7180. },
  7181. "bone49": {
  7182. "rotate": [
  7183. { "time": 0, "angle": 0, "curve": "stepped" },
  7184. { "time": 0.5, "angle": 0, "curve": "stepped" },
  7185. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  7186. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  7187. { "time": 1, "angle": 0, "curve": "stepped" },
  7188. { "time": 1.5, "angle": 0, "curve": "stepped" },
  7189. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  7190. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  7191. { "time": 2, "angle": 0 }
  7192. ],
  7193. "translate": [
  7194. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7195. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7196. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  7197. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  7198. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7199. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7200. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  7201. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  7202. { "time": 2, "x": 0, "y": 0 }
  7203. ],
  7204. "scale": [
  7205. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7206. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7207. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  7208. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  7209. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7210. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7211. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  7212. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  7213. { "time": 2, "x": 1, "y": 1 }
  7214. ]
  7215. },
  7216. "bone50": {
  7217. "rotate": [
  7218. { "time": 0, "angle": 0, "curve": "stepped" },
  7219. { "time": 0.5, "angle": 0, "curve": "stepped" },
  7220. { "time": 1, "angle": 0, "curve": "stepped" },
  7221. { "time": 1.5, "angle": 0, "curve": "stepped" },
  7222. { "time": 2, "angle": 0 }
  7223. ],
  7224. "translate": [
  7225. { "time": 0, "x": 0.77, "y": 1.53 },
  7226. { "time": 0.5, "x": 0, "y": 0 },
  7227. { "time": 1, "x": 0.77, "y": 1.53 },
  7228. { "time": 1.5, "x": 0, "y": 0 },
  7229. { "time": 2, "x": 0.77, "y": 1.53 }
  7230. ],
  7231. "scale": [
  7232. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7233. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7234. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7235. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7236. { "time": 2, "x": 1, "y": 1 }
  7237. ]
  7238. },
  7239. "bone51": {
  7240. "rotate": [
  7241. { "time": 0, "angle": 0, "curve": "stepped" },
  7242. { "time": 0.5, "angle": 0, "curve": "stepped" },
  7243. { "time": 1, "angle": 0, "curve": "stepped" },
  7244. { "time": 1.5, "angle": 0, "curve": "stepped" },
  7245. { "time": 2, "angle": 0 }
  7246. ],
  7247. "translate": [
  7248. { "time": 0, "x": 1.36, "y": 0.3 },
  7249. { "time": 0.5, "x": 0, "y": 0 },
  7250. { "time": 1, "x": 1.36, "y": 0.3 },
  7251. { "time": 1.5, "x": 0, "y": 0 },
  7252. { "time": 2, "x": 1.36, "y": 0.3 }
  7253. ],
  7254. "scale": [
  7255. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7256. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7257. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7258. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7259. { "time": 2, "x": 1, "y": 1 }
  7260. ]
  7261. },
  7262. "bone52": {
  7263. "rotate": [
  7264. { "time": 0, "angle": 0, "curve": "stepped" },
  7265. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  7266. { "time": 0.5, "angle": 0, "curve": "stepped" },
  7267. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  7268. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  7269. { "time": 1, "angle": 0, "curve": "stepped" },
  7270. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  7271. { "time": 1.5, "angle": 0, "curve": "stepped" },
  7272. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  7273. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  7274. { "time": 2, "angle": 0 }
  7275. ],
  7276. "translate": [
  7277. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7278. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  7279. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7280. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  7281. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  7282. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7283. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  7284. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7285. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  7286. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  7287. { "time": 2, "x": 0, "y": 0 }
  7288. ],
  7289. "scale": [
  7290. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7291. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7292. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  7293. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  7294. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7295. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7296. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  7297. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  7298. { "time": 2, "x": 1, "y": 1 }
  7299. ]
  7300. },
  7301. "bone56": {
  7302. "rotate": [
  7303. { "time": 0, "angle": 0 },
  7304. { "time": 0.5, "angle": -4.91 },
  7305. { "time": 1, "angle": 0 },
  7306. { "time": 1.5, "angle": -4.91 },
  7307. { "time": 2, "angle": 0 }
  7308. ],
  7309. "translate": [
  7310. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7311. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7312. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7313. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7314. { "time": 2, "x": 0, "y": 0 }
  7315. ],
  7316. "scale": [
  7317. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7318. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7319. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7320. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7321. { "time": 2, "x": 1, "y": 1 }
  7322. ]
  7323. },
  7324. "bone57": {
  7325. "rotate": [
  7326. { "time": 0, "angle": 0 },
  7327. { "time": 0.5, "angle": -17.96 },
  7328. { "time": 1, "angle": 0 },
  7329. { "time": 1.5, "angle": -17.96 },
  7330. { "time": 2, "angle": 0 }
  7331. ],
  7332. "translate": [
  7333. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7334. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7335. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7336. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7337. { "time": 2, "x": 0, "y": 0 }
  7338. ],
  7339. "scale": [
  7340. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7341. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7342. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7343. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7344. { "time": 2, "x": 1, "y": 1 }
  7345. ]
  7346. },
  7347. "bone58": {
  7348. "rotate": [
  7349. { "time": 0, "angle": 0 },
  7350. { "time": 0.5, "angle": 5.29 },
  7351. { "time": 1, "angle": 0 },
  7352. { "time": 1.5, "angle": 5.29 },
  7353. { "time": 2, "angle": 0 }
  7354. ],
  7355. "translate": [
  7356. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7357. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7358. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7359. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7360. { "time": 2, "x": 0, "y": 0 }
  7361. ],
  7362. "scale": [
  7363. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7364. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7365. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7366. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7367. { "time": 2, "x": 1, "y": 1 }
  7368. ]
  7369. },
  7370. "bone59": {
  7371. "rotate": [
  7372. { "time": 0, "angle": 0 },
  7373. { "time": 0.5, "angle": 4.32 },
  7374. { "time": 1, "angle": 0 },
  7375. { "time": 1.5, "angle": 4.32 },
  7376. { "time": 2, "angle": 0 }
  7377. ],
  7378. "translate": [
  7379. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7380. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7381. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7382. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7383. { "time": 2, "x": 0, "y": 0 }
  7384. ],
  7385. "scale": [
  7386. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7387. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7388. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7389. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7390. { "time": 2, "x": 1, "y": 1 }
  7391. ]
  7392. },
  7393. "bone48": {
  7394. "rotate": [
  7395. { "time": 0, "angle": 0, "curve": "stepped" },
  7396. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  7397. { "time": 0.5, "angle": 0, "curve": "stepped" },
  7398. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  7399. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  7400. { "time": 1, "angle": 0, "curve": "stepped" },
  7401. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  7402. { "time": 1.5, "angle": 0, "curve": "stepped" },
  7403. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  7404. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  7405. { "time": 2, "angle": 0 }
  7406. ],
  7407. "translate": [
  7408. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7409. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  7410. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7411. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  7412. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  7413. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7414. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  7415. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7416. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  7417. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  7418. { "time": 2, "x": 0, "y": 0 }
  7419. ],
  7420. "scale": [
  7421. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7422. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7423. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  7424. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  7425. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7426. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7427. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  7428. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  7429. { "time": 2, "x": 1, "y": 1 }
  7430. ]
  7431. },
  7432. "bone60": {
  7433. "rotate": [
  7434. { "time": 0, "angle": 0, "curve": "stepped" },
  7435. { "time": 0.5, "angle": 0, "curve": "stepped" },
  7436. { "time": 1, "angle": 0, "curve": "stepped" },
  7437. { "time": 1.5, "angle": 0, "curve": "stepped" },
  7438. { "time": 2, "angle": 0 }
  7439. ],
  7440. "translate": [
  7441. { "time": 0, "x": 1.5, "y": 8.56 },
  7442. { "time": 0.5, "x": 1.4, "y": 4.62 },
  7443. { "time": 1, "x": 1.5, "y": 8.56 },
  7444. { "time": 1.5, "x": 1.4, "y": 4.62 },
  7445. { "time": 2, "x": 1.5, "y": 8.56 }
  7446. ]
  7447. }
  7448. },
  7449. "deform": {
  7450. "default": {
  7451. "chenyi": {
  7452. "chenyi": [
  7453. { "time": 0 },
  7454. {
  7455. "time": 0.5,
  7456. "offset": 4,
  7457. "vertices": [ -0.05714, 2.96745, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1.8751, 2.85822, 0, 0, -0.05714, 2.96745, -0.18232, 2.96239, 0, 0, 0, 0, 0, 0, 0, 0, -0.05714, 2.96745, -0.18232, 2.96239, 0, 0, 0, 0, -0.05714, 2.96745, -0.18232, 2.96239, -0.05714, 2.96745, -0.18232, 2.96239 ]
  7458. },
  7459. { "time": 1 },
  7460. {
  7461. "time": 1.5,
  7462. "offset": 4,
  7463. "vertices": [ -0.05714, 2.96745, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1.8751, 2.85822, 0, 0, -0.05714, 2.96745, -0.18232, 2.96239, 0, 0, 0, 0, 0, 0, 0, 0, -0.05714, 2.96745, -0.18232, 2.96239, 0, 0, 0, 0, -0.05714, 2.96745, -0.18232, 2.96239, -0.05714, 2.96745, -0.18232, 2.96239 ]
  7464. },
  7465. { "time": 2 }
  7466. ]
  7467. },
  7468. "erji": {
  7469. "erji": [
  7470. { "time": 0 },
  7471. {
  7472. "time": 0.5,
  7473. "offset": 6,
  7474. "vertices": [ -2.7402, 2.05677, -1.45738, 2.97127 ]
  7475. },
  7476. { "time": 1 },
  7477. {
  7478. "time": 1.5,
  7479. "offset": 6,
  7480. "vertices": [ -2.7402, 2.05677, -1.45738, 2.97127 ]
  7481. },
  7482. { "time": 2 }
  7483. ]
  7484. },
  7485. "kuzi": {
  7486. "kuzi": [
  7487. { "time": 0 },
  7488. {
  7489. "time": 0.1667,
  7490. "vertices": [ 2.67648, -10.55238, -0.59724, 1.31546, -1.93564, 2.47198, -0.30416, -2.86979 ]
  7491. },
  7492. {
  7493. "time": 0.5,
  7494. "offset": 2,
  7495. "vertices": [ -2.02086, -1.08708 ]
  7496. },
  7497. {
  7498. "time": 0.6667,
  7499. "vertices": [ 2.67648, -10.55238, -0.19567, 2.8792, -3.61954, 0.3183, -0.30416, -2.86979 ]
  7500. },
  7501. {
  7502. "time": 0.7333,
  7503. "vertices": [ 2.14118, -8.4419, -0.06927, 6.92755, -2.89564, 0.25464, -0.24333, -2.29583 ]
  7504. },
  7505. {
  7506. "time": 0.8333,
  7507. "vertices": [ 1.33824, -5.27619, -0.09751, 1.45522, -1.80977, 0.15915, -0.15208, -1.43489 ]
  7508. },
  7509. { "time": 1 },
  7510. {
  7511. "time": 1.1667,
  7512. "vertices": [ 2.67648, -10.55238, -0.59724, 1.31546, -1.93564, 2.47198, -0.30416, -2.86979 ]
  7513. },
  7514. {
  7515. "time": 1.5,
  7516. "offset": 2,
  7517. "vertices": [ -2.02086, -1.08708 ]
  7518. },
  7519. {
  7520. "time": 1.6667,
  7521. "vertices": [ 2.67648, -10.55238, -0.19567, 2.8792, -3.61954, 0.3183, -0.30416, -2.86979 ]
  7522. },
  7523. {
  7524. "time": 1.7333,
  7525. "vertices": [ 2.14118, -8.4419, -0.06927, 6.92755, -2.89564, 0.25464, -0.24333, -2.29583 ]
  7526. },
  7527. {
  7528. "time": 1.8333,
  7529. "vertices": [ 1.33824, -5.27619, -0.09751, 1.45522, -1.80977, 0.15915, -0.15208, -1.43489 ]
  7530. },
  7531. { "time": 2 }
  7532. ]
  7533. },
  7534. "youjiao": {
  7535. "youjiao": [
  7536. {
  7537. "time": 0,
  7538. "offset": 76,
  7539. "vertices": [ -9.20706, -0.42934, -4.97046, -1.93781, -3.895, -0.34762 ],
  7540. "curve": "stepped"
  7541. },
  7542. {
  7543. "time": 0.5,
  7544. "offset": 76,
  7545. "vertices": [ -9.20706, -0.42934, -4.97046, -1.93781, -3.895, -0.34762 ],
  7546. "curve": "stepped"
  7547. },
  7548. {
  7549. "time": 1,
  7550. "offset": 76,
  7551. "vertices": [ -9.20706, -0.42934, -4.97046, -1.93781, -3.895, -0.34762 ],
  7552. "curve": "stepped"
  7553. },
  7554. {
  7555. "time": 1.5,
  7556. "offset": 76,
  7557. "vertices": [ -9.20706, -0.42934, -4.97046, -1.93781, -3.895, -0.34762 ],
  7558. "curve": "stepped"
  7559. },
  7560. {
  7561. "time": 2,
  7562. "offset": 76,
  7563. "vertices": [ -9.20706, -0.42934, -4.97046, -1.93781, -3.895, -0.34762 ]
  7564. }
  7565. ]
  7566. },
  7567. "zuojiao": {
  7568. "zuojiao": [
  7569. {
  7570. "time": 0,
  7571. "offset": 66,
  7572. "vertices": [ -4.79021, -0.59816, -7.62909, 0.83472 ],
  7573. "curve": "stepped"
  7574. },
  7575. {
  7576. "time": 1,
  7577. "offset": 66,
  7578. "vertices": [ -4.79021, -0.59816, -7.62909, 0.83472 ],
  7579. "curve": "stepped"
  7580. },
  7581. {
  7582. "time": 2,
  7583. "offset": 66,
  7584. "vertices": [ -4.79021, -0.59816, -7.62909, 0.83472 ]
  7585. }
  7586. ]
  7587. }
  7588. }
  7589. }
  7590. }
  7591. }
  7592. }