69007.json 292 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071
  1. {
  2. "skeleton": { "hash": "qwmVm0NdH+o/iVgfMNCxCLvS4Kc", "spine": "3.6.53", "width": 186, "height": 218.05, "images": "./images/" },
  3. "bones": [
  4. { "name": "root" },
  5. { "name": "bone", "parent": "root", "length": 6, "rotation": 91.74, "x": 2.73, "y": 61.65 },
  6. { "name": "bone2", "parent": "bone", "length": 10, "rotation": -4, "x": 7.26, "y": -0.04 },
  7. { "name": "bone3", "parent": "bone", "length": 6.42, "rotation": 178.26, "x": -1.52, "y": 0.3 },
  8. { "name": "bone4", "parent": "bone", "length": 18.45, "rotation": 175.11, "x": -10.21, "y": 9.53 },
  9. { "name": "bone5", "parent": "bone4", "length": 21.13, "rotation": 2.69, "x": 18.45 },
  10. { "name": "bone6", "parent": "bone5", "length": 12.07, "rotation": -83.11, "x": 24.51, "y": -0.82 },
  11. { "name": "bone7", "parent": "bone", "length": 19.81, "rotation": -178.31, "x": -11.15, "y": -10.4, "color": "faa144ff" },
  12. { "name": "bone8", "parent": "bone7", "length": 18.48, "rotation": 1.3, "x": 22, "y": -0.13, "color": "faa144ff" },
  13. { "name": "bone9", "parent": "bone8", "length": 11.42, "rotation": -87.07, "x": 20.15, "y": -0.31, "color": "faa144ff" },
  14. { "name": "bone42", "parent": "bone2", "length": 16.66, "rotation": -2.01, "x": 11.15, "y": 0.27 },
  15. { "name": "bone10", "parent": "bone42", "length": 10.78, "rotation": 173.23, "x": 14.99, "y": 7.05 },
  16. { "name": "bone11", "parent": "bone10", "length": 7.88, "rotation": -2.84, "x": 12.09, "y": -0.46 },
  17. { "name": "bone12", "parent": "bone11", "length": 9.18, "rotation": 0.89, "x": 9.39, "y": 0.02 },
  18. { "name": "bone13", "parent": "bone42", "length": 12.66, "rotation": -170.02, "x": 16.78, "y": -8.9 },
  19. { "name": "bone14", "parent": "bone13", "length": 8.13, "rotation": 1.41, "x": 13.57, "y": 0.16 },
  20. { "name": "bone15", "parent": "bone14", "length": 7.34, "rotation": 8.82, "x": 9.28, "y": 0.11 },
  21. { "name": "bone16", "parent": "bone42", "length": 6.32, "rotation": 155.66, "x": 18.55, "y": 8.02 },
  22. { "name": "bone17", "parent": "bone16", "length": 6.83, "rotation": -1.27, "x": 6.54, "y": 0.12 },
  23. { "name": "bone18", "parent": "bone42", "length": 6.87, "rotation": 133.93, "x": 21.81, "y": -14.78 },
  24. { "name": "bone19", "parent": "bone42", "length": 18.91, "rotation": -140.77, "x": 17.58, "y": -11.13 },
  25. { "name": "bone20", "parent": "bone19", "length": 14.68, "rotation": -2.23, "x": 18.91 },
  26. { "name": "bone21", "parent": "bone20", "length": 9.31, "rotation": -9.64, "x": 18.68, "y": -1.23 },
  27. { "name": "bone22", "parent": "bone42", "length": 15.19, "rotation": 153.87, "x": 14.85, "y": 10.23, "color": "fc6f2aff" },
  28. { "name": "bone23", "parent": "bone22", "length": 14.89, "rotation": -3.57, "x": 15.19, "color": "fc6f2aff" },
  29. { "name": "bone24", "parent": "bone23", "length": 10.91, "rotation": -6.36, "x": 18.59, "y": -0.09, "color": "fc6f2aff" },
  30. { "name": "bone25", "parent": "bone42", "length": 47.61, "rotation": 3.06, "x": 19.76, "y": -0.42 },
  31. { "name": "bone26", "parent": "bone25", "length": 10.71, "rotation": 1.21, "x": 16.22, "y": 13.97 },
  32. { "name": "bone27", "parent": "bone25", "length": 10.93, "rotation": -1.52, "x": 17.64, "y": -8.78 },
  33. { "name": "bone28", "parent": "bone25", "length": 6.86, "rotation": 1.21, "x": 18.2, "y": 3.93 },
  34. { "name": "bone29", "parent": "bone25", "length": 6.14, "rotation": 1.21, "x": 28.39, "y": 4.35 },
  35. { "name": "bone30", "parent": "bone25", "length": 14.56, "rotation": 139.97, "x": 73.96, "y": -8.71 },
  36. { "name": "bone31", "parent": "bone30", "length": 10.87, "rotation": -2.39, "x": 15.07, "y": -0.21 },
  37. { "name": "bone32", "parent": "bone31", "length": 12.19, "rotation": 12.66, "x": 11.4, "y": 0.16 },
  38. { "name": "bone33", "parent": "bone32", "length": 10.34, "rotation": 5.62, "x": 12.19 },
  39. { "name": "bone34", "parent": "bone33", "length": 8.79, "rotation": 7.42, "x": 10.34 },
  40. { "name": "bone35", "parent": "bone25", "length": 12.05, "rotation": -178.79, "x": 62.73, "y": -24.19 },
  41. { "name": "bone36", "parent": "bone35", "length": 9.78, "rotation": -6.5, "x": 13.04 },
  42. { "name": "bone37", "parent": "bone36", "length": 10.7, "rotation": -2.1, "x": 10.15, "y": 0.04 },
  43. { "name": "bone38", "parent": "bone37", "length": 9.38, "rotation": -8.18, "x": 10.7 },
  44. { "name": "bone39", "parent": "bone25", "length": 12.22, "rotation": -158.17, "x": 62.87, "y": -31.08 },
  45. { "name": "bone40", "parent": "bone39", "length": 11.89, "rotation": -9.89, "x": 12.88, "y": 0.01 },
  46. { "name": "bone41", "parent": "bone40", "length": 8.65, "rotation": 4.1, "x": 11.89 },
  47. { "name": "bone43", "parent": "bone", "length": 7.52, "rotation": -3.31, "x": -2.48, "y": 2.99 },
  48. { "name": "bone44", "parent": "bone25", "length": 6.85, "rotation": -1.97, "x": 5.07, "y": 3.03 },
  49. { "name": "bone45", "parent": "bone25", "length": 12.57, "rotation": 107.69, "x": 76.39, "y": -1.09 },
  50. { "name": "bone46", "parent": "bone45", "length": 11.45, "rotation": 7.6, "x": 13.38, "y": 0.14 },
  51. { "name": "bone47", "parent": "bone46", "length": 10.24, "rotation": 0.01, "x": 11.68, "y": -0.1 },
  52. { "name": "bone48", "parent": "bone25", "length": 13.01, "rotation": 165.86, "x": 53.63, "y": 27.84 },
  53. { "name": "bone49", "parent": "bone48", "length": 11.82, "rotation": 18.33, "x": 13.33, "y": 0.22 },
  54. { "name": "bone50", "parent": "bone49", "length": 10.59, "rotation": -0.32, "x": 11.95, "y": -0.01 },
  55. { "name": "bone51", "parent": "bone25", "length": 12.72, "rotation": -8.26, "x": 69.73, "y": -26.26 },
  56. { "name": "bone52", "parent": "bone51", "length": 9.75, "rotation": 56.51, "x": 12.72 },
  57. { "name": "bone53", "parent": "bone52", "length": 10.47, "rotation": 66.51, "x": 9.84, "y": 0.08 },
  58. { "name": "bone54", "parent": "bone25", "length": 15.01, "rotation": 50.86, "x": 76.06, "y": -11.49 },
  59. { "name": "bone55", "parent": "root", "length": 23.67, "rotation": 112.8, "x": 87.99, "y": 94.95 },
  60. { "name": "bone56", "parent": "root", "length": 36.05, "rotation": 93.95, "x": -46.92, "y": 28.24 },
  61. { "name": "bone57", "parent": "root", "length": 27.24, "rotation": 79.51, "x": -64.28, "y": 114.79 },
  62. { "name": "bone58", "parent": "bone24", "length": 46.62, "rotation": -139.69, "x": 42.44, "y": -12.88 },
  63. { "name": "bone59", "parent": "bone42", "length": 8.5, "rotation": -103.3, "x": 17.62, "y": -16.49 },
  64. { "name": "bone61", "parent": "bone18", "length": 8.19, "rotation": 35.55, "x": 6.43, "y": -0.06 },
  65. { "name": "bone62", "parent": "root", "length": 56.55, "rotation": 132.06, "x": -66.28, "y": 146.56 }
  66. ],
  67. "slots": [
  68. { "name": "yin3", "bone": "bone55" },
  69. { "name": "yin2", "bone": "bone57" },
  70. { "name": "yin1", "bone": "bone56" },
  71. { "name": "zuoshou", "bone": "bone22", "attachment": "zuoshou" },
  72. { "name": "maikefeng", "bone": "bone58", "attachment": "maikefeng" },
  73. { "name": "dangbu", "bone": "bone3", "attachment": "dangbu" },
  74. { "name": "youtui", "bone": "bone7", "attachment": "youtui" },
  75. { "name": "zuotui", "bone": "bone4", "attachment": "zuotui" },
  76. { "name": "shenti", "bone": "bone2", "attachment": "shenti" },
  77. { "name": "yaodia", "bone": "bone3", "attachment": "yaodia" },
  78. { "name": "kou", "bone": "bone43", "attachment": "kou" },
  79. { "name": "youwaitao", "bone": "bone13", "attachment": "youwaitao" },
  80. { "name": "zuowaitao", "bone": "bone10", "attachment": "zuowaitao" },
  81. { "name": "mao3", "bone": "bone59", "attachment": "mao3" },
  82. { "name": "youshou", "bone": "bone19", "attachment": "youshou" },
  83. { "name": "toufa1", "bone": "bone25", "attachment": "toufa1" },
  84. { "name": "mao1", "bone": "bone16", "attachment": "mao1" },
  85. { "name": "toufa2", "bone": "bone48", "attachment": "toufa2" },
  86. { "name": "lian", "bone": "bone25", "attachment": "lian" },
  87. { "name": "zuiba", "bone": "bone44", "attachment": "zuiba" },
  88. { "name": "bizui", "bone": "bone44" },
  89. { "name": "meimao", "bone": "bone29", "attachment": "meimao" },
  90. { "name": "toufa3", "bone": "bone51", "attachment": "toufa3" },
  91. { "name": "toufa4", "bone": "bone54", "attachment": "toufa4" },
  92. { "name": "youyan", "bone": "bone27", "attachment": "youyan" },
  93. { "name": "zuoyan", "bone": "bone26", "attachment": "zuoyan" },
  94. { "name": "toufa5", "bone": "bone39", "attachment": "toufa5" },
  95. { "name": "toufa6", "bone": "bone35", "attachment": "toufa6" },
  96. { "name": "toufa7", "bone": "bone30", "attachment": "toufa7" },
  97. { "name": "mao2", "bone": "bone18", "attachment": "mao2" },
  98. { "name": "biyan", "bone": "bone28" },
  99. { "name": "biaoqing_4", "bone": "bone62", "attachment": "biaoqing_4" }
  100. ],
  101. "skins": {
  102. "default": {
  103. "biaoqing_4": {
  104. "biaoqing_4": { "x": 38.04, "y": -2.6, "rotation": -132.06, "width": 87, "height": 83 }
  105. },
  106. "biyan": {
  107. "biyan": { "x": 2.84, "y": -1.67, "rotation": -90, "width": 40, "height": 8 }
  108. },
  109. "bizui": {
  110. "bizui": { "x": 1.19, "y": -0.91, "rotation": -86.82, "width": 12, "height": 6 }
  111. },
  112. "dangbu": {
  113. "dangbu": {
  114. "type": "mesh",
  115. "uvs": [ 1, 0.15295, 1, 1, 0, 1, 0, 0.16928 ],
  116. "triangles": [ 1, 2, 3, 1, 3, 0 ],
  117. "vertices": [ -12.29, 20.19, 13.12, 20.19, 13.12, -16.81, -11.8, -16.81 ],
  118. "hull": 4,
  119. "edges": [ 2, 4, 4, 6, 2, 0, 6, 0 ],
  120. "width": 37,
  121. "height": 30
  122. }
  123. },
  124. "kou": {
  125. "kou": {
  126. "type": "mesh",
  127. "uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
  128. "triangles": [ 1, 2, 3, 1, 3, 0 ],
  129. "vertices": [ -1.84, -8.9, -2.22, 5.09, 8.78, 5.39, 9.16, -8.6 ],
  130. "hull": 4,
  131. "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
  132. "width": 14,
  133. "height": 11
  134. }
  135. },
  136. "lian": {
  137. "lian": { "x": 29.41, "y": -5.93, "rotation": -88.79, "width": 65, "height": 64 }
  138. },
  139. "maikefeng": {
  140. "maikefeng": { "x": 11.88, "y": -4.46, "rotation": -90, "width": 38, "height": 104 }
  141. },
  142. "mao1": {
  143. "mao1": {
  144. "type": "mesh",
  145. "uvs": [ 1, 0.61413, 0.9437, 0.66363, 0.83207, 0.76178, 0.68513, 0.89097, 0.56112, 1, 0.17034, 1, 0, 1, 2.0E-5, 0.75163, 0, 0.51635, 1.0E-5, 0.03972, 0.31797, 0.00917, 0.55533, 0, 0.70296, 0, 1, 0, 0.45981, 0.42469, 0.56126, 0.24749, 0.33479, 0.65879, 0.64389, 0.10317, 0.25286, 0.836 ],
  146. "triangles": [ 0, 1, 15, 7, 8, 16, 2, 14, 1, 3, 16, 14, 18, 7, 16, 2, 3, 14, 4, 18, 16, 5, 6, 7, 18, 5, 7, 3, 4, 16, 5, 18, 4, 17, 11, 12, 15, 11, 17, 10, 11, 15, 14, 10, 15, 9, 10, 14, 8, 9, 14, 17, 12, 13, 0, 17, 13, 15, 17, 0, 1, 14, 15, 16, 8, 14 ],
  147. "vertices": [ 2, 17, 3.58, 10.57, 0.25157, 18, -3.19, 10.38, 0.74843, 2, 17, 4.87, 10.06, 0.19903, 18, -1.88, 9.9, 0.80097, 2, 17, 7.44, 9.04, 0.0689, 18, 0.71, 8.94, 0.9311, 2, 17, 10.82, 7.7, 7.6E-4, 18, 4.12, 7.68, 0.99924, 1, 18, 6.99, 6.61, 1, 2, 17, 17.23, 0.06, 1.0E-5, 18, 10.69, 0.17, 0.99999, 2, 17, 18.78, -2.78, 2.3E-4, 18, 12.3, -2.63, 0.99977, 2, 17, 14.85, -4.92, 0.09854, 18, 8.42, -4.86, 0.90146, 2, 17, 11.13, -6.95, 0.49854, 18, 4.75, -6.97, 0.50146, 2, 17, 3.6, -11.06, 0.99877, 18, -2.69, -11.24, 0.00123, 1, 17, 0.23, -6.02, 1, 1, 17, -2.08, -2.14, 1, 2, 17, -3.42, 0.32, 0.98707, 18, -9.96, -0.02, 0.01293, 2, 17, -6.12, 5.28, 0.91753, 18, -12.77, 4.87, 0.08247, 1, 17, 5.5, -0.07, 1, 2, 17, 1.78, 0.09, 0.99779, 18, -4.76, -0.13, 0.00221, 2, 17, 10.34, -0.14, 0.00684, 18, 3.81, -0.18, 0.99316, 2, 17, -1.25, 0.23, 0.99345, 18, -7.79, -0.07, 0.00655, 1, 18, 7.35, 0.06, 1 ],
  148. "hull": 14,
  149. "edges": [ 0, 26, 24, 26, 8, 10, 10, 12, 4, 28, 28, 18, 0, 2, 2, 4, 30, 28, 2, 30, 18, 20, 30, 20, 4, 6, 6, 8, 32, 28, 6, 32, 16, 18, 32, 16, 24, 34, 34, 30, 0, 34, 20, 22, 22, 24, 34, 22, 10, 36, 36, 32, 8, 36, 12, 14, 14, 16, 36, 14 ],
  150. "width": 19,
  151. "height": 18
  152. }
  153. },
  154. "mao2": {
  155. "mao2": {
  156. "type": "mesh",
  157. "uvs": [ 1, 0.37387, 0.94299, 0.38813, 0.68248, 0.45332, 0.61274, 0.54533, 0.55943, 0.61568, 0.56284, 0.7365, 0.56488, 0.80871, 0.57029, 1, 0.31695, 1, 0, 1, 0, 0.79877, 0, 0.53968, 0, 0, 0.20115, 0, 0.49067, 0, 0.77657, 0, 1, 0, 0.60286, 0.1666, 0.26991, 0.3635, 0.41627, 0.27694, 0.28593, 0.5803, 0.30219, 0.80025 ],
  158. "triangles": [ 8, 6, 7, 9, 21, 8, 8, 21, 6, 9, 10, 21, 21, 5, 6, 10, 20, 21, 21, 20, 5, 10, 11, 20, 20, 4, 5, 11, 18, 20, 4, 20, 18, 11, 12, 18, 12, 13, 18, 3, 4, 19, 19, 4, 18, 3, 19, 2, 19, 17, 2, 2, 17, 1, 16, 0, 1, 1, 17, 15, 1, 15, 16, 18, 13, 19, 19, 14, 17, 19, 13, 14, 17, 14, 15 ],
  159. "vertices": [ 2, 19, -3.45, 9.27, 0.99982, 60, -2.62, 13.34, 1.8E-4, 2, 19, -2.33, 8.75, 0.99786, 60, -2.01, 12.26, 0.00214, 2, 19, 2.8, 6.36, 0.79371, 60, 0.77, 7.34, 0.20629, 2, 19, 5.21, 6.98, 0.43545, 60, 3.1, 6.44, 0.56455, 2, 19, 7.06, 7.46, 0.17078, 60, 4.89, 5.75, 0.82922, 2, 19, 8.71, 9.55, 0.02218, 60, 7.44, 6.5, 0.97782, 2, 19, 9.69, 10.8, 0.00374, 60, 8.96, 6.95, 0.99626, 1, 60, 13, 8.13, 1, 1, 60, 14.36, 2.99, 1, 1, 60, 16.06, -3.45, 1, 2, 19, 18.68, 3.06, 0.01223, 60, 11.78, -4.58, 0.98777, 2, 19, 15.04, -1.32, 0.18218, 60, 6.27, -6.03, 0.81782, 1, 60, -5.21, -9.06, 1, 2, 19, 4.21, -7.77, 0.04365, 60, -6.29, -4.98, 0.95635, 2, 19, -0.47, -3.89, 0.78054, 60, -7.84, 0.9, 0.21946, 1, 19, -5.09, -0.06, 1, 1, 19, -8.7, 2.94, 1, 1, 19, 0.06, 0.44, 1, 2, 19, 8.2, -0.69, 0.65803, 60, 1.07, -1.54, 0.34197, 2, 19, 4.62, -0.19, 0.9417, 60, -1.55, 0.94, 0.0583, 2, 19, 10.99, 3.2, 1.0E-5, 60, 5.6, 0, 0.99999, 1, 60, 10.19, 1.56, 1 ],
  160. "hull": 17,
  161. "edges": [ 0, 32, 30, 32, 30, 34, 14, 16, 16, 18, 4, 34, 28, 30, 34, 28, 0, 2, 2, 4, 2, 30, 8, 36, 36, 24, 4, 6, 6, 8, 34, 38, 38, 36, 6, 38, 24, 26, 26, 28, 38, 26, 8, 10, 40, 36, 10, 40, 22, 24, 40, 22, 10, 12, 12, 14, 16, 42, 42, 40, 12, 42, 18, 20, 20, 22, 42, 20 ],
  162. "width": 21,
  163. "height": 22
  164. }
  165. },
  166. "mao3": {
  167. "mao3": {
  168. "type": "mesh",
  169. "uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
  170. "triangles": [ 1, 2, 3, 1, 3, 0 ],
  171. "vertices": [ 12.55, -5.88, 1.11, -9.51, -2.51, 1.93, 8.93, 5.56 ],
  172. "hull": 4,
  173. "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
  174. "width": 12,
  175. "height": 12
  176. }
  177. },
  178. "meimao": {
  179. "meimao": { "x": 2.3, "y": -2.8, "rotation": -90, "width": 34, "height": 7 }
  180. },
  181. "shenti": {
  182. "shenti": {
  183. "type": "mesh",
  184. "uvs": [ 0.91599, 0.38819, 0.92726, 0.46901, 0.93967, 0.54852, 0.94842, 0.62437, 0.95958, 0.70564, 0.97144, 0.79198, 1, 1, 0.41274, 1, 0, 1, 0, 0.79782, 0, 0.71488, 0, 0.636, 0, 0.547, 0.0115, 0.46932, 0.05019, 0.39194, 0.24216, 0, 0.46219, 0, 0.86269, 0, 0.41027, 0.80995, 0.42263, 0.55348, 0.42699, 0.4814, 0.43371, 0.38941, 0.41447, 0.7186, 0.41799, 0.64192 ],
  185. "triangles": [ 21, 15, 16, 21, 16, 17, 21, 17, 0, 14, 15, 21, 20, 14, 21, 13, 14, 20, 20, 21, 0, 20, 0, 1, 19, 13, 20, 12, 13, 19, 19, 20, 1, 19, 1, 2, 23, 11, 12, 19, 23, 12, 23, 19, 2, 23, 2, 3, 22, 10, 11, 23, 22, 11, 22, 23, 3, 22, 3, 4, 18, 9, 10, 22, 18, 10, 18, 22, 4, 18, 4, 5, 8, 9, 18, 7, 18, 5, 8, 18, 7, 7, 5, 6 ],
  186. "vertices": [ 2, 2, 17.71, -17.4, 0.45638, 10, 7.18, -17.43, 0.54362, 2, 2, 14.18, -17.95, 0.63089, 10, 3.67, -18.1, 0.36911, 2, 2, 10.7, -18.53, 0.78256, 10, 0.21, -18.81, 0.21744, 2, 2, 7.38, -18.98, 0.889, 10, -3.1, -19.37, 0.111, 2, 2, 3.82, -19.52, 0.95815, 10, -6.63, -20.04, 0.04185, 2, 2, 0.04, -20.1, 0.99063, 10, -10.39, -20.75, 0.00937, 1, 2, -9.07, -21.48, 1, 1, 2, -9.9, -0.36, 1, 2, 2, -10.49, 14.49, 0.99988, 10, -22.12, 13.45, 1.2E-4, 2, 2, -1.6, 14.84, 0.93549, 10, -13.25, 14.11, 0.06451, 2, 2, 2.05, 14.98, 0.84413, 10, -9.61, 14.38, 0.15587, 2, 2, 5.52, 15.12, 0.70607, 10, -6.15, 14.64, 0.29393, 2, 2, 9.43, 15.27, 0.5127, 10, -2.24, 14.93, 0.4873, 2, 2, 12.86, 14.99, 0.3492, 10, 1.2, 14.77, 0.6508, 2, 2, 16.32, 13.74, 0.1889, 10, 4.7, 13.64, 0.8111, 1, 10, 22.41, 8.03, 1, 1, 10, 23, 0.13, 1, 2, 2, 34.7, -14.81, 0.02687, 10, 24.07, -14.25, 0.97313, 1, 2, -1.55, 0.06, 1, 1, 2, 9.75, 0.06, 1, 2, 2, 12.92, 0.03, 0.01081, 10, 1.78, -0.18, 0.98919, 2, 2, 16.98, -0.05, 0.00182, 10, 5.84, -0.12, 0.99818, 2, 2, 2.47, 0.07, 0.99985, 10, -8.66, -0.51, 1.5E-4, 2, 2, 5.85, 0.07, 0.99945, 10, -5.29, -0.39, 5.5E-4 ],
  187. "hull": 18,
  188. "edges": [ 12, 14, 14, 16, 14, 36, 30, 32, 32, 34, 40, 38, 26, 40, 40, 2, 24, 26, 24, 38, 2, 4, 38, 4, 26, 28, 28, 30, 32, 42, 42, 40, 28, 42, 2, 0, 0, 34, 16, 18, 10, 12, 36, 10, 18, 36, 18, 20, 36, 44, 20, 44, 8, 10, 44, 8, 20, 22, 22, 24, 38, 46, 46, 44, 22, 46, 4, 6, 6, 8, 46, 6, 42, 0 ],
  189. "width": 36,
  190. "height": 44
  191. }
  192. },
  193. "toufa1": {
  194. "toufa1": {
  195. "type": "mesh",
  196. "uvs": [ 1, 0.60805, 0.48474, 1, 0, 1, 0, 0.76972, 0.58437, 0, 1, 0 ],
  197. "triangles": [ 4, 5, 0, 1, 3, 4, 1, 2, 3, 4, 0, 1 ],
  198. "vertices": [ 11.4, -39.82, -4.28, -21.08, -4.66, -3.15, 4.32, -2.96, 34.79, -23.95, 35.11, -39.32 ],
  199. "hull": 6,
  200. "edges": [ 4, 6, 8, 10, 6, 8, 0, 10, 2, 4, 0, 2 ],
  201. "width": 37,
  202. "height": 39
  203. }
  204. },
  205. "toufa2": {
  206. "toufa2": {
  207. "type": "mesh",
  208. "uvs": [ 1, 0.24391, 1, 0.34387, 0.95519, 0.4736, 0.92206, 0.56951, 0.88312, 0.68221, 0.83429, 0.82356, 0.8028, 0.91473, 0.77335, 1, 0.42105, 1, 0.2761, 1, 0.21791, 0.90135, 0.16481, 0.81132, 0.07926, 0.66627, 0, 0.53189, 0, 0.41051, 0, 0.27009, 0.18632, 0.12563, 0.34835, 0, 0.56105, 0, 1, 0, 0.35605, 0.43009, 0.36605, 0.67369, 0.41925, 0.2975, 0.36148, 0.56228, 0.39076, 0.82032, 0.40506, 0.90511, 0.48131, 0.1673 ],
  209. "triangles": [ 6, 7, 25, 9, 25, 8, 7, 8, 25, 9, 10, 25, 5, 6, 24, 10, 24, 25, 6, 25, 24, 10, 11, 24, 11, 21, 24, 5, 24, 21, 11, 12, 21, 4, 5, 21, 3, 4, 23, 12, 23, 21, 4, 21, 23, 12, 13, 23, 2, 3, 20, 3, 23, 20, 13, 20, 23, 13, 14, 20, 20, 22, 2, 2, 22, 1, 22, 20, 15, 20, 14, 15, 22, 26, 1, 26, 0, 1, 15, 16, 22, 22, 16, 26, 26, 18, 0, 18, 19, 0, 16, 17, 26, 26, 17, 18 ],
  210. "vertices": [ 2, 48, -1.85, 14.79, 0.7813, 49, -9.83, 18.61, 0.2187, 2, 48, 2.97, 16.11, 0.57751, 49, -4.84, 18.35, 0.42249, 2, 48, 9.55, 16.62, 0.25961, 49, 1.57, 16.76, 0.74039, 3, 48, 14.42, 16.99, 0.08276, 49, 6.31, 15.58, 0.90555, 50, -5.72, 15.56, 0.01169, 3, 48, 20.15, 17.43, 0.00572, 49, 11.88, 14.2, 0.85671, 50, -0.14, 14.21, 0.13757, 2, 49, 18.87, 12.47, 0.44401, 50, 6.85, 12.51, 0.55599, 2, 49, 23.38, 11.35, 0.20218, 50, 11.37, 11.42, 0.79782, 2, 49, 27.59, 10.3, 0.11312, 50, 15.59, 10.4, 0.88688, 2, 49, 27.08, 0.45, 0.00424, 50, 15.13, 0.54, 0.99576, 1, 50, 14.94, -3.51, 1, 1, 50, 9.94, -4.91, 1, 3, 48, 31.7, -0.25, 0.00261, 49, 17.28, -6.22, 0.00193, 50, 5.37, -6.18, 0.99545, 3, 48, 25.34, -4.48, 0.14373, 49, 9.92, -8.24, 0.35292, 50, -1.98, -8.24, 0.50335, 3, 48, 19.45, -8.4, 0.6361, 49, 3.09, -10.1, 0.26848, 50, -8.8, -10.14, 0.09542, 3, 48, 13.59, -10.01, 0.96563, 49, -2.97, -9.79, 0.02392, 50, -14.86, -9.86, 0.01045, 1, 48, 6.82, -11.87, 1, 1, 48, -1.52, -8.75, 1, 1, 48, -8.78, -6.04, 1, 1, 48, -10.36, -0.29, 1, 2, 48, -13.61, 11.56, 0.98347, 49, -22.01, 19.24, 0.01653, 2, 48, 11.9, -0.13, 0.99999, 50, -13.42, 0.05, 1.0E-5, 3, 48, 23.57, 3.36, 8.4E-4, 49, 10.71, -0.24, 0.95619, 50, -1.24, -0.24, 0.04297, 1, 48, 5.04, -0.18, 1, 3, 48, 18.23, 1.76, 0.0022, 49, 5.14, -0.07, 0.99713, 50, -6.81, -0.11, 6.7E-4, 2, 49, 18.06, 0.07, 0.00142, 50, 6.12, 0.11, 0.99858, 2, 49, 22.32, 0.25, 0.00205, 50, 10.37, 0.32, 0.99795, 2, 48, -1.7, -0.23, 0.99912, 49, -14.41, 4.3, 8.8E-4 ],
  211. "hull": 20,
  212. "edges": [ 36, 38, 34, 36, 16, 18, 14, 16, 44, 40, 30, 44, 44, 2, 26, 28, 28, 30, 28, 40, 2, 4, 40, 4, 40, 46, 46, 42, 26, 46, 4, 6, 46, 6, 24, 26, 24, 42, 6, 8, 42, 8, 22, 24, 48, 42, 22, 48, 8, 10, 48, 10, 18, 20, 20, 22, 16, 50, 50, 48, 20, 50, 10, 12, 12, 14, 50, 12, 30, 32, 32, 34, 36, 52, 52, 44, 32, 52, 2, 0, 0, 38, 52, 0 ],
  213. "width": 28,
  214. "height": 50
  215. }
  216. },
  217. "toufa3": {
  218. "toufa3": {
  219. "type": "mesh",
  220. "uvs": [ 0.7886, 0.07997, 1, 0.22213, 1, 0.4723, 0.97179, 0.7409, 0.77689, 1, 0.62453, 1, 0.44961, 1, 0.49696, 0.76492, 0.53143, 0.6382, 0.51778, 0.54106, 0.4355, 0.46176, 0.33519, 0.4281, 0.23657, 0.42675, 0.1138, 0.42017, 0, 0.40647, 0, 0.3538, 0, 0.15367, 0.29725, 0, 0.66968, 0, 0.74585, 0.40647, 0.49193, 0.16157, 0.67579, 0.74926, 0.71941, 0.53581, 0.58335, 0.24974, 0.26794, 0.24909, 0.09537, 0.31653 ],
  221. "triangles": [ 12, 24, 11, 11, 24, 20, 24, 12, 25, 13, 15, 25, 12, 13, 25, 13, 14, 15, 15, 16, 25, 25, 16, 24, 24, 17, 20, 24, 16, 17, 9, 10, 23, 23, 10, 20, 10, 11, 20, 19, 0, 1, 19, 23, 0, 23, 18, 0, 23, 20, 18, 20, 17, 18, 5, 21, 4, 4, 21, 3, 6, 7, 5, 5, 7, 21, 7, 8, 21, 21, 22, 3, 21, 8, 22, 3, 22, 2, 8, 9, 22, 22, 9, 19, 22, 19, 2, 23, 19, 9, 19, 1, 2 ],
  222. "vertices": [ 2, 51, 21.98, 0.21, 0.00123, 52, 5.28, -7.61, 0.99877, 2, 51, 18.75, -6.33, 0.2227, 52, -1.96, -8.52, 0.7773, 2, 51, 11.34, -7.57, 0.86395, 52, -7.07, -3.03, 0.13605, 1, 51, 3.26, -8.11, 1, 1, 51, -5.3, -4.01, 1, 1, 51, -6, 0.2, 1, 1, 51, -6.81, 5.03, 1, 3, 51, 0.37, 4.88, 0.99998, 52, -2.74, 12.99, 1.0E-5, 53, 6.83, 16.69, 1.0E-5, 3, 51, 4.28, 4.56, 0.96351, 52, -0.86, 9.55, 0.02605, 53, 4.42, 13.59, 0.01044, 3, 51, 7.09, 5.41, 0.73547, 52, 1.41, 7.68, 0.18167, 53, 3.61, 10.76, 0.08286, 3, 51, 9.06, 8.07, 0.28716, 52, 4.71, 7.51, 0.34275, 53, 4.77, 7.66, 0.37009, 3, 51, 9.59, 11.01, 0.07447, 52, 7.46, 8.69, 0.16656, 53, 6.94, 5.61, 0.75898, 3, 51, 9.18, 13.74, 0.01427, 52, 9.51, 10.54, 0.03701, 53, 9.45, 4.47, 0.94872, 3, 51, 8.81, 17.17, 2.8E-4, 52, 12.16, 12.74, 7.5E-4, 53, 12.53, 2.92, 0.99897, 1, 53, 15.28, 1.27, 1, 1, 53, 14.65, -0.18, 1, 1, 53, 12.25, -5.68, 1, 1, 53, 2.78, -6.59, 1, 2, 52, 9.35, -7.1, 0.93932, 53, -6.78, -2.42, 0.06068, 1, 51, 12.12, -0.22, 1, 1, 52, 9.69, -0.16, 1, 1, 51, 1.65, 0.02, 1, 1, 51, 8.17, -0.13, 1, 3, 51, 16.01, 5.04, 2.8E-4, 52, 6.02, 0.03, 0.99852, 53, -1.57, 3.48, 0.0012, 1, 53, 6.52, -0.06, 1, 1, 53, 11.76, -0.14, 1 ],
  223. "hull": 19,
  224. "edges": [ 34, 36, 30, 32, 34, 32, 8, 10, 8, 6, 10, 12, 28, 30, 12, 14, 14, 16, 10, 42, 14, 42, 42, 6, 38, 44, 44, 42, 16, 44, 2, 4, 4, 6, 44, 4, 2, 38, 16, 18, 18, 20, 38, 18, 38, 46, 46, 40, 20, 46, 2, 0, 0, 36, 46, 0, 36, 40, 20, 22, 40, 22, 22, 24, 48, 40, 24, 48, 48, 34, 30, 50, 50, 48, 32, 50, 24, 26, 26, 28, 50, 26 ],
  225. "width": 28,
  226. "height": 30
  227. }
  228. },
  229. "toufa4": {
  230. "toufa4": {
  231. "type": "mesh",
  232. "uvs": [ 1, 0.69891, 1, 1, 0, 1, 0, 0, 0.23854, 0 ],
  233. "triangles": [ 2, 3, 4, 2, 4, 0, 2, 0, 1 ],
  234. "vertices": [ -1.35, -4.54, -4.66, -0.64, 9.06, 11.01, 20.06, -1.94, 16.79, -4.72 ],
  235. "hull": 5,
  236. "edges": [ 2, 4, 4, 6, 2, 0, 6, 8, 0, 8 ],
  237. "width": 18,
  238. "height": 17
  239. }
  240. },
  241. "toufa5": {
  242. "toufa5": {
  243. "type": "mesh",
  244. "uvs": [ 0.75601, 0.2194, 0.8743, 0.32646, 0.94639, 0.46111, 1, 0.56124, 1, 0.75472, 1, 1, 0, 1, 0, 0.83515, 0, 0.6808, 0, 0.55472, 0, 0.32428, 0, 0, 0.31716, 0, 0.51359, 0, 0.58145, 0.41124, 0.67073, 0.65472, 0.62372, 0.52652, 0.46987, 0.23763, 0.79182, 0.7817 ],
  245. "triangles": [ 6, 18, 5, 18, 4, 5, 6, 15, 18, 4, 18, 3, 6, 7, 15, 15, 8, 16, 15, 7, 8, 18, 15, 3, 16, 9, 14, 16, 8, 9, 15, 2, 3, 15, 16, 2, 16, 1, 2, 9, 17, 14, 9, 10, 17, 16, 14, 1, 14, 0, 1, 14, 17, 0, 10, 12, 17, 10, 11, 12, 17, 13, 0, 17, 12, 13 ],
  246. "vertices": [ 2, 40, 5, 7.55, 0.97874, 41, -9.06, 6.07, 0.02126, 2, 40, 10.78, 8.92, 0.61946, 41, -3.61, 8.41, 0.38054, 3, 40, 17.28, 8.62, 0.06185, 41, 2.86, 9.24, 0.91293, 42, -8.35, 9.86, 0.02522, 2, 41, 7.66, 9.85, 0.83224, 42, -3.52, 10.13, 0.16776, 2, 41, 16.4, 8.2, 0.14123, 42, 5.09, 7.85, 0.85877, 1, 42, 15.99, 4.97, 1, 3, 40, 31.15, -24.91, 0, 41, 22.28, -21.41, 0.27739, 42, 8.83, -22.1, 0.72261, 3, 40, 24.05, -22.24, 0.01998, 41, 14.83, -20, 0.37774, 42, 1.5, -20.16, 0.60228, 3, 40, 17.41, -19.74, 0.11969, 41, 7.85, -18.68, 0.54235, 42, -5.37, -18.34, 0.33796, 3, 40, 11.98, -17.69, 0.3133, 41, 2.15, -17.6, 0.54491, 42, -10.97, -16.86, 0.1418, 3, 40, 2.06, -13.96, 0.80217, 41, -8.26, -15.63, 0.19183, 42, -21.22, -14.15, 0.006, 2, 40, -11.9, -8.71, 0.99998, 41, -22.92, -12.85, 2.0E-5, 1, 40, -8.77, -0.4, 1, 1, 40, -6.84, 4.75, 1, 2, 40, 11.54, -0.13, 0.97887, 41, -1.3, -0.38, 0.02113, 2, 40, 22.9, -1.74, 0, 41, 10.17, 0, 1, 3, 40, 16.92, -0.89, 0.00145, 41, 4.13, -0.2, 0.99834, 42, -7.76, 0.36, 2.1E-4, 2, 40, 2.96, -0.24, 0.99916, 41, -9.73, -1.96, 8.4E-4, 2, 41, 16.54, 2.24, 0.01449, 42, 4.79, 1.9, 0.98551 ],
  247. "hull": 14,
  248. "edges": [ 10, 12, 22, 24, 24, 26, 18, 28, 28, 2, 12, 14, 14, 30, 30, 6, 14, 16, 16, 18, 28, 32, 32, 30, 16, 32, 2, 4, 4, 6, 32, 4, 18, 20, 20, 22, 24, 34, 34, 28, 20, 34, 2, 0, 0, 26, 34, 0, 10, 36, 36, 30, 12, 36, 6, 8, 8, 10, 36, 8 ],
  249. "width": 28,
  250. "height": 46
  251. }
  252. },
  253. "toufa6": {
  254. "toufa6": {
  255. "type": "mesh",
  256. "uvs": [ 1, 0.26366, 1, 0.3507, 1, 0.42292, 1, 0.53773, 1, 0.61551, 1, 0.66921, 1, 0.72847, 0.77702, 0.8544, 0.44974, 1, 0.27702, 1, 0, 1, 0, 0.81921, 0, 0.71366, 0, 0.6544, 0, 0.59699, 0, 0.51366, 0, 0.41922, 0, 0.34144, 0, 0.25996, 0, 0, 0.57702, 0, 1, 0, 0.57702, 0.34514, 0.51793, 0.52847, 0.45884, 0.72662, 0.55191, 0.42303, 0.57702, 0.26366, 0.49624, 0.6012, 0.47693, 0.66596, 0.38753, 0.83384 ],
  257. "triangles": [ 29, 11, 12, 24, 29, 12, 29, 24, 7, 9, 10, 11, 29, 9, 11, 8, 29, 7, 9, 29, 8, 27, 14, 15, 23, 3, 4, 27, 23, 4, 28, 13, 14, 27, 28, 14, 27, 4, 5, 28, 27, 5, 24, 12, 13, 28, 24, 13, 28, 5, 6, 24, 28, 6, 7, 24, 6, 25, 16, 17, 22, 1, 2, 22, 25, 17, 25, 22, 2, 23, 15, 16, 25, 23, 16, 25, 2, 3, 23, 25, 3, 23, 27, 15, 18, 19, 20, 26, 20, 21, 18, 20, 26, 26, 21, 0, 17, 18, 26, 22, 26, 0, 17, 26, 22, 22, 0, 1 ],
  258. "vertices": [ 3, 36, 8.17, 9.55, 0.85247, 37, -5.92, 8.93, 0.1312, 38, -16.38, 8.3, 0.01633, 3, 36, 12.87, 9.55, 0.49866, 37, -1.25, 9.47, 0.4014, 38, -11.73, 9, 0.09994, 3, 36, 16.77, 9.55, 0.1964, 37, 2.62, 9.91, 0.52154, 38, -7.88, 9.58, 0.28206, 4, 36, 22.97, 9.55, 0.01207, 37, 8.78, 10.61, 0.23399, 38, -1.75, 10.51, 0.74521, 39, -13.81, 8.63, 0.00874, 4, 36, 27.17, 9.55, 5.0E-5, 37, 12.96, 11.09, 0.04494, 38, 2.4, 11.14, 0.89036, 39, -9.79, 9.85, 0.06466, 3, 37, 15.84, 11.41, 0.00512, 38, 5.27, 11.57, 0.84212, 39, -7.02, 10.68, 0.15275, 2, 38, 8.44, 12.05, 0.72821, 39, -3.95, 11.61, 0.27179, 2, 38, 15.89, 8.22, 0.16476, 39, 3.97, 8.87, 0.83524, 1, 39, 13.58, 4.25, 1, 1, 39, 14.68, 0.61, 1, 1, 39, 16.43, -5.23, 1, 3, 37, 26.38, -9.53, 0.02075, 38, 16.57, -8.97, 0.0773, 39, 7.09, -8.04, 0.90195, 3, 37, 20.71, -10.17, 0.15024, 38, 10.93, -9.82, 0.37819, 39, 1.63, -9.69, 0.47156, 4, 36, 29.27, -12.45, 4.9E-4, 37, 17.53, -10.54, 0.31674, 38, 7.77, -10.3, 0.47053, 39, -1.43, -10.61, 0.21224, 4, 36, 26.17, -12.45, 0.00839, 37, 14.45, -10.89, 0.53565, 38, 4.7, -10.76, 0.38691, 39, -4.4, -11.51, 0.06906, 4, 36, 21.67, -12.45, 0.06307, 37, 9.98, -11.4, 0.78922, 38, 0.25, -11.44, 0.14303, 39, -8.71, -12.8, 0.00468, 3, 36, 16.57, -12.45, 0.24687, 37, 4.92, -11.97, 0.74285, 38, -4.79, -12.2, 0.01028, 2, 36, 12.37, -12.45, 0.51022, 37, 0.74, -12.45, 0.48978, 2, 36, 7.97, -12.45, 0.78325, 37, -3.63, -12.95, 0.21675, 1, 36, -6.07, -12.45, 1, 1, 36, -6.07, 0.24, 1, 1, 36, -6.07, 9.55, 1, 3, 36, 12.57, 0.24, 0.45071, 37, -0.5, 0.19, 0.54863, 38, -10.64, -0.24, 6.6E-4, 1, 37, 9.49, 0.02, 1, 2, 38, 10.12, 0.26, 0.9248, 39, -0.61, 0.18, 0.0752, 2, 37, 3.75, 0.11, 0.99863, 38, -6.4, -0.16, 0.00137, 3, 36, 8.17, 0.24, 0.99965, 37, -4.87, -0.31, 3.0E-4, 38, -14.99, -0.9, 5.0E-5, 2, 38, 3.3, 0.07, 0.99999, 39, -7.34, -0.99, 1.0E-5, 2, 38, 6.82, 0.17, 0.99951, 39, -3.86, -0.39, 4.9E-4, 1, 39, 5.38, 0.35, 1 ],
  259. "hull": 22,
  260. "edges": [ 38, 40, 40, 42, 18, 20, 34, 44, 44, 2, 32, 34, 44, 50, 50, 46, 32, 50, 2, 4, 50, 4, 34, 36, 36, 38, 40, 52, 52, 44, 36, 52, 2, 0, 0, 42, 52, 0, 30, 32, 30, 46, 4, 6, 46, 6, 28, 30, 46, 54, 28, 54, 6, 8, 54, 8, 24, 48, 48, 12, 24, 26, 26, 28, 48, 56, 56, 54, 26, 56, 8, 10, 10, 12, 56, 10, 20, 22, 22, 24, 18, 58, 58, 48, 22, 58, 58, 14, 12, 14, 16, 18, 14, 16 ],
  261. "width": 22,
  262. "height": 54
  263. }
  264. },
  265. "toufa7": {
  266. "toufa7": {
  267. "type": "mesh",
  268. "uvs": [ 0.91341, 0.04318, 0.99999, 0.2159, 1, 0.3959, 1, 0.55772, 0.9312, 0.66176, 0.83216, 0.78863, 0.66966, 0.87954, 0.50403, 0.96499, 0.3681, 1, 0.19153, 1, 0.08281, 0.99999, 0.02812, 0.80136, 0, 0.57954, 0, 0.48136, 0, 0.34499, 0, 0.265, 0.07903, 0.16136, 0.16409, 0.11048, 0.24622, 0.06136, 0.40091, 0, 0.65247, 0, 0.80091, 0, 0.81497, 0.07045, 0.58216, 0.25409, 0.46653, 0.3959, 0.32747, 0.61227, 0.24935, 0.79772, 0.39153, 0.11227, 0.20247, 0.20681, 0.52273, 0.05483, 0.70746, 0.15614, 0.28505, 0.15821, 0.51445, 0.33557, 0.05834, 0.30518, 0.3933, 0.5059, 0.29231, 0.69531 ],
  269. "triangles": [ 28, 17, 31, 16, 17, 28, 33, 15, 16, 33, 16, 28, 14, 15, 33, 28, 31, 24, 25, 13, 14, 33, 28, 34, 33, 25, 14, 31, 18, 27, 17, 18, 31, 29, 19, 20, 27, 18, 19, 27, 19, 29, 27, 29, 23, 31, 27, 32, 9, 10, 11, 26, 9, 11, 8, 9, 26, 13, 35, 12, 25, 35, 13, 26, 12, 35, 11, 12, 26, 7, 26, 35, 7, 8, 26, 34, 28, 24, 33, 34, 25, 34, 24, 5, 6, 25, 34, 5, 6, 34, 7, 35, 25, 25, 6, 7, 24, 31, 32, 4, 24, 32, 22, 21, 0, 20, 21, 22, 30, 20, 22, 29, 20, 30, 22, 0, 1, 23, 29, 30, 32, 27, 23, 30, 22, 1, 2, 30, 1, 23, 30, 2, 3, 23, 2, 3, 32, 23, 4, 32, 3, 5, 24, 4 ],
  270. "vertices": [ 2, 31, -11.75, 8.65, 0.97406, 33, -35.96, 15.84, 0.02594, 3, 31, -8.26, 19.08, 0.90319, 33, -30.67, 25.48, 0.0945, 34, -40.16, 29.55, 0.00231, 3, 31, -0.81, 25.6, 0.79033, 33, -22.18, 30.57, 0.19705, 34, -31.22, 33.79, 0.01261, 3, 31, 5.88, 31.47, 0.68467, 33, -14.55, 35.15, 0.28767, 34, -23.17, 37.6, 0.02766, 4, 31, 13.09, 31.93, 0.59713, 33, -7.38, 34.32, 0.35627, 34, -16.12, 36.07, 0.04651, 35, -21.58, 39.18, 8.0E-5, 4, 31, 22.51, 31.76, 0.45189, 33, 1.87, 32.47, 0.45234, 34, -7.1, 33.33, 0.09097, 35, -12.99, 35.3, 0.0048, 4, 31, 33.13, 27.24, 0.25429, 33, 11.51, 26.13, 0.50327, 34, 1.87, 26.07, 0.19695, 35, -5.03, 26.94, 0.04548, 4, 31, 43.65, 22.36, 0.08847, 33, 20.99, 19.46, 0.33942, 34, 10.66, 18.5, 0.33767, 35, 2.7, 18.3, 0.23443, 4, 31, 50.83, 17.09, 0.02264, 33, 27.12, 12.99, 0.11964, 34, 16.12, 11.46, 0.24906, 35, 7.21, 10.62, 0.60866, 5, 31, 58.28, 8.59, 1.0E-5, 33, 32.93, 3.3, 1.0E-4, 34, 20.96, 1.25, 1.2E-4, 35, 10.69, -0.13, 0.99977, 47, 18.57, 39.31, 1.0E-5, 3, 34, 23.94, -5.04, 1.4E-4, 35, 12.83, -6.75, 0.99547, 47, 24.92, 36.47, 0.00439, 4, 33, 28.94, -11.29, 0.01005, 34, 15.56, -12.88, 0.25463, 35, 3.51, -13.44, 0.64284, 47, 23.65, 25.07, 0.09248, 4, 33, 19.41, -19.11, 0.10978, 34, 5.31, -19.73, 0.35137, 35, -7.54, -18.91, 0.12254, 47, 20.31, 13.19, 0.41631, 5, 32, 30.62, -17.96, 1.0E-5, 33, 14.78, -21.89, 0.11077, 34, 0.43, -22.04, 0.21945, 35, -12.68, -20.57, 0.04441, 47, 18.11, 8.26, 0.62537, 4, 33, 8.35, -25.75, 0.02878, 34, -6.35, -25.25, 0.04091, 35, -19.81, -22.88, 0.00417, 47, 15.04, 1.42, 0.92613, 4, 33, 4.57, -28.01, 2.0E-4, 34, -10.32, -27.13, 0.00109, 35, -24, -24.24, 6.0E-5, 47, 13.25, -2.6, 0.99866, 1, 47, 6.3, -5.74, 1, 2, 46, 11.87, -6.17, 0.16161, 47, 0.19, -6.07, 0.83839, 3, 45, 20.16, -5.5, 0.03217, 46, 5.97, -6.49, 0.74129, 47, -5.71, -6.39, 0.22654, 2, 45, 9.71, -5.92, 0.85635, 46, -4.45, -5.53, 0.14365, 2, 31, -2.53, -5.48, 0.57664, 45, -5.73, -1.36, 0.42336, 3, 31, -8.79, 1.67, 0.99456, 33, -34.3, 8.44, 0.0052, 45, -14.84, 1.34, 2.5E-4, 2, 31, -6.47, 4.9, 0.98745, 33, -31.44, 11.21, 0.01255, 3, 31, 10.95, 0.35, 0.99877, 33, -15.11, 3.63, 0.00119, 34, -26.82, 6.28, 4.0E-5, 4, 31, 21.69, -0.07, 0.00623, 32, 6.61, 0.41, 0.97507, 33, -4.61, 1.29, 0.01842, 34, -16.6, 2.93, 2.8E-4, 3, 33, 10.17, -0.22, 0.99889, 46, 13.59, 23.3, 1.5E-4, 47, 1.92, 23.4, 9.6E-4, 2, 34, 9.32, -0.17, 0.99943, 47, 10.64, 30.66, 5.7E-4, 2, 45, 12.03, -0.17, 0.99996, 47, -13.06, -0.03, 4.0E-5, 1, 47, 0.11, -0.23, 1, 1, 45, 3.09, -0.82, 1, 3, 31, 1.61, 2.83, 0.99114, 33, -23.86, 7.73, 0.00879, 34, -35.12, 11.22, 7.0E-5, 3, 45, 19.28, 0.32, 0.00147, 46, 5.87, -0.61, 0.98566, 47, -5.8, -0.51, 0.01287, 4, 31, 17.17, 0.05, 0.007, 32, 2.1, 0.34, 0.98932, 33, -9.04, 2.22, 0.00357, 34, -20.91, 4.28, 1.0E-4, 5, 32, 21.03, -21.94, 3.7E-4, 33, 4.55, -23.68, 0.00832, 34, -9.93, -22.81, 0.00794, 35, -23.05, -20.01, 5.7E-4, 47, 10.74, 0.94, 0.98281, 3, 31, 29.33, 0.39, 0.00145, 33, 2.98, 0.39, 0.99781, 34, -9.13, 1.29, 7.4E-4, 3, 34, 3.06, -0.09, 0.99945, 46, 17.5, 26.55, 0, 47, 5.83, 26.65, 5.5E-4 ],
  271. "hull": 22,
  272. "edges": [ 18, 20, 52, 18, 10, 12, 12, 14, 16, 18, 14, 16, 38, 40, 38, 36, 28, 30, 32, 30, 2, 0, 40, 42, 0, 42, 2, 44, 44, 0, 44, 40, 40, 58, 58, 54, 38, 58, 44, 60, 60, 46, 58, 60, 2, 4, 4, 6, 60, 4, 36, 54, 54, 46, 46, 6, 32, 34, 34, 36, 54, 62, 62, 56, 34, 62, 46, 64, 64, 48, 62, 64, 6, 8, 8, 10, 64, 8, 32, 56, 56, 48, 48, 10, 28, 66, 66, 56, 30, 66, 48, 68, 68, 50, 66, 68, 68, 12, 28, 50, 50, 14, 24, 52, 52, 16, 24, 26, 26, 28, 50, 70, 70, 52, 26, 70, 20, 22, 22, 24, 22, 18 ],
  273. "width": 64,
  274. "height": 55
  275. }
  276. },
  277. "yaodia": {
  278. "yaodia": {
  279. "type": "mesh",
  280. "uvs": [ 1, 1, 0.71831, 1, 0.63971, 1, 0.2542, 1, 0, 1, 0, 0, 0.25046, 0, 0.63971, 0, 0.71831, 0, 1, 0 ],
  281. "triangles": [ 4, 5, 6, 3, 6, 7, 4, 6, 3, 2, 7, 8, 3, 7, 2, 0, 1, 8, 2, 8, 1, 0, 8, 9 ],
  282. "vertices": [ 2.12, 19.19, 2.12, 9.33, 2.12, 6.58, 2.12, -6.91, 2.12, -15.81, -7.88, -15.81, -7.88, -7.04, -7.88, 6.58, -7.88, 9.33, -7.88, 19.19 ],
  283. "hull": 10,
  284. "edges": [ 8, 10, 0, 18, 10, 12, 6, 8, 12, 6, 12, 14, 4, 6, 14, 4, 14, 16, 16, 18, 0, 2, 2, 4, 16, 2 ],
  285. "width": 35,
  286. "height": 10
  287. }
  288. },
  289. "yin1": {
  290. "yin1": { "x": 21.41, "y": 1.45, "rotation": -93.95, "width": 19, "height": 49 }
  291. },
  292. "yin2": {
  293. "yin2": { "x": 15.09, "y": -0.71, "rotation": -79.51, "width": 29, "height": 37 }
  294. },
  295. "yin3": {
  296. "yin3": { "x": 11.94, "y": -1.41, "rotation": -112.8, "width": 32, "height": 35 }
  297. },
  298. "youshou": {
  299. "youshou": {
  300. "type": "mesh",
  301. "uvs": [ 0.67049, 0.2278, 0.71048, 0.26687, 0.74629, 0.30185, 0.92813, 0.47949, 0.95923, 0.50987, 1, 0.54971, 1, 1, 0.61432, 1, 0.46618, 0.79615, 0.42846, 0.74425, 0.3857, 0.68541, 0.24301, 0.48906, 0.2078, 0.44061, 0.17724, 0.39856, 0, 0.15466, 0, 0, 0.13494, 0, 0.43732, 0, 0.47788, 0.35475, 0.74707, 0.6754, 0.70112, 0.62067, 0.67299, 0.58717, 0.50934, 0.39222, 0.43539, 0.3108 ],
  302. "triangles": [ 7, 19, 6, 19, 5, 6, 7, 8, 19, 8, 20, 19, 8, 9, 20, 9, 21, 20, 9, 10, 21, 10, 22, 21, 10, 11, 22, 19, 4, 5, 19, 20, 4, 20, 3, 4, 20, 21, 3, 21, 2, 3, 21, 22, 2, 11, 18, 22, 11, 12, 18, 22, 1, 2, 22, 18, 1, 18, 0, 1, 12, 23, 18, 12, 13, 23, 23, 13, 16, 18, 23, 0, 13, 14, 16, 23, 17, 0, 23, 16, 17, 14, 15, 16 ],
  303. "vertices": [ 2, 20, 18.13, 8.06, 0.54826, 21, -1.1, 8.03, 0.45174, 2, 20, 20.33, 8.08, 0.3143, 21, 1.11, 8.13, 0.6857, 2, 20, 22.31, 8.1, 0.15136, 21, 3.08, 8.22, 0.84864, 2, 21, 13.1, 8.7, 0.93302, 22, -7.17, 8.85, 0.06698, 2, 21, 14.81, 8.78, 0.86186, 22, -5.49, 9.22, 0.13814, 2, 21, 17.06, 8.89, 0.75216, 22, -3.29, 9.7, 0.24784, 1, 22, 15.76, 1.57, 1, 2, 21, 27.81, -12.69, 7.0E-5, 22, 10.92, -9.78, 0.99993, 2, 21, 17.36, -11.61, 0.25658, 22, 0.43, -10.46, 0.74342, 3, 20, 33.16, -11.9, 0.00149, 21, 14.7, -11.34, 0.44934, 22, -2.24, -10.63, 0.54918, 3, 20, 30.16, -11.47, 0.01424, 21, 11.68, -11.02, 0.66099, 22, -5.26, -10.83, 0.32478, 3, 20, 20.14, -10.03, 0.43719, 21, 1.62, -9.98, 0.55294, 22, -15.36, -11.49, 0.00988, 3, 20, 17.66, -9.68, 0.65358, 21, -0.87, -9.72, 0.34496, 22, -17.85, -11.65, 0.00146, 3, 20, 15.52, -9.37, 0.81639, 21, -3.02, -9.5, 0.18359, 22, -20.02, -11.79, 2.0E-5, 1, 20, 3.07, -7.59, 1, 1, 20, -2.76, -3.52, 1, 1, 20, -0.28, 0.02, 1, 1, 20, 5.26, 7.95, 1, 2, 20, 19.38, -0.33, 0.11044, 21, 0.48, -0.32, 0.88956, 2, 21, 17.55, -1.05, 0.21071, 22, -1.15, -0.01, 0.78929, 2, 21, 14.63, -0.92, 0.91563, 22, -4.04, -0.38, 0.08437, 2, 21, 12.85, -0.85, 0.97483, 22, -5.81, -0.6, 0.02517, 3, 20, 21.37, -0.5, 0.00537, 21, 2.48, -0.4, 0.99462, 22, -16.12, -1.9, 1.0E-5, 1, 20, 16.94, -0.29, 1 ],
  304. "hull": 18,
  305. "edges": [ 30, 32, 38, 12, 32, 34, 12, 10, 28, 30, 12, 14, 24, 36, 36, 2, 14, 16, 16, 38, 38, 10, 16, 18, 40, 38, 18, 40, 8, 10, 40, 8, 18, 20, 42, 40, 20, 42, 6, 8, 42, 6, 20, 22, 22, 24, 36, 44, 44, 42, 22, 44, 2, 4, 4, 6, 44, 4, 24, 26, 26, 28, 32, 46, 46, 36, 26, 46, 2, 0, 0, 34, 46, 0 ],
  306. "width": 32,
  307. "height": 46
  308. }
  309. },
  310. "youtui": {
  311. "youtui": {
  312. "type": "mesh",
  313. "uvs": [ 1, 0.12369, 1, 0.41445, 1, 0.4714, 1, 0.52518, 0.99999, 0.69443, 0.99999, 0.72954, 0.99999, 0.75929, 1, 1, 0, 1, 0, 0.90165, 0, 0.79533, 0.27671, 0.75407, 0.27239, 0.73155, 0.26804, 0.7089, 0.23375, 0.53023, 0.22052, 0.47153, 0.20833, 0.41742, 0.14522, 0.13742, 0.11425, 0, 0.5812, 0, 1, 0, 0.62136, 0.47772, 0.67489, 0.83996, 0.62838, 0.52528, 0.61637, 0.41846, 0.65738, 0.74993, 0.65123, 0.70225, 0.65464, 0.72867 ],
  314. "triangles": [ 8, 22, 7, 22, 6, 7, 8, 9, 22, 22, 11, 25, 22, 9, 11, 9, 10, 11, 22, 25, 6, 6, 25, 5, 11, 27, 25, 11, 12, 27, 25, 27, 5, 12, 26, 27, 12, 13, 26, 5, 27, 4, 27, 26, 4, 13, 23, 26, 13, 14, 23, 4, 26, 3, 3, 26, 23, 14, 21, 23, 14, 15, 21, 3, 23, 2, 23, 21, 2, 15, 24, 21, 2, 21, 1, 15, 16, 24, 21, 24, 1, 0, 1, 24, 24, 16, 19, 16, 17, 19, 24, 19, 0, 17, 18, 19, 19, 20, 0 ],
  315. "vertices": [ 2, 7, 3.29, 11.03, 0.90465, 8, -18.45, 11.58, 0.09535, 2, 7, 19.25, 10.07, 0.68053, 8, -2.52, 10.26, 0.31947, 2, 7, 22.38, 9.89, 0.42656, 8, 0.6, 10.01, 0.57344, 2, 7, 25.33, 9.71, 0.21272, 8, 3.55, 9.76, 0.78728, 3, 7, 34.62, 9.15, 8.4E-4, 8, 12.83, 9, 0.98751, 9, -9.67, -6.84, 0.01164, 2, 8, 14.75, 8.84, 0.951, 9, -9.41, -4.93, 0.049, 2, 8, 16.39, 8.7, 0.88501, 9, -9.19, -3.3, 0.11499, 2, 8, 29.58, 7.61, 0.0281, 9, -7.43, 9.82, 0.9719, 1, 9, 18.34, 6.36, 1, 1, 9, 17.62, 1, 1, 2, 8, 16.22, -17.37, 0.00371, 9, 16.84, -4.8, 0.99629, 2, 8, 14.55, -10.01, 0.31558, 9, 9.41, -6.09, 0.68442, 2, 8, 13.31, -10.02, 0.49341, 9, 9.35, -7.33, 0.50659, 2, 8, 12.06, -10.03, 0.6211, 9, 9.3, -8.58, 0.3789, 3, 7, 24.42, -10.19, 0.17712, 8, 2.19, -10.11, 0.80464, 9, 8.88, -18.44, 0.01824, 3, 7, 21.18, -10.34, 0.40689, 8, -1.06, -10.19, 0.59018, 9, 8.79, -21.69, 0.00293, 3, 7, 18.19, -10.48, 0.64132, 8, -4.05, -10.26, 0.35859, 9, 8.7, -24.68, 9.0E-5, 3, 7, 2.72, -11.2, 0.88191, 8, -19.53, -10.63, 0.11806, 9, 8.28, -40.16, 3.0E-5, 1, 7, -4.88, -11.55, 1, 1, 7, -4.15, 0.57, 1, 1, 7, -3.5, 11.44, 1, 2, 7, 22.14, 0.04, 0.00163, 8, 0.14, 0.17, 0.99837, 2, 8, 20.11, -0.09, 0.04766, 9, -0.22, -0.03, 0.95234, 2, 7, 24.76, 0.07, 0.00128, 8, 2.76, 0.13, 0.99872, 1, 7, 18.88, 0.1, 1, 2, 8, 15.14, -0.13, 0.99379, 9, -0.43, -5, 0.00621, 2, 8, 12.51, -0.08, 0.99902, 9, -0.62, -7.62, 9.8E-4, 2, 8, 13.97, -0.11, 0.99815, 9, -0.52, -6.17, 0.00185 ],
  316. "hull": 21,
  317. "edges": [ 14, 16, 22, 20, 36, 38, 38, 40, 16, 18, 18, 20, 44, 18, 30, 42, 42, 4, 28, 30, 42, 46, 28, 46, 4, 6, 46, 6, 30, 32, 38, 48, 48, 42, 32, 48, 4, 2, 48, 2, 44, 50, 22, 50, 12, 14, 50, 12, 26, 28, 46, 52, 26, 52, 6, 8, 52, 8, 22, 24, 24, 26, 50, 54, 54, 52, 24, 54, 8, 10, 10, 12, 54, 10, 32, 34, 34, 36, 2, 0, 0, 40 ],
  318. "width": 26,
  319. "height": 55
  320. }
  321. },
  322. "youwaitao": {
  323. "youwaitao": {
  324. "type": "mesh",
  325. "uvs": [ 0.77602, 0.27286, 0.82719, 0.38081, 0.87969, 0.49155, 0.91275, 0.56128, 0.95009, 0.64005, 1, 0.74534, 1, 0.87147, 1, 1, 0.55722, 1, 0, 1, 0, 0.94537, 0, 0.83376, 0, 0.68008, 0, 0.58598, 0, 0.51481, 0, 0.4226, 0, 0.27891, 0, 0, 0.23028, 0, 0.64667, 0, 0.30666, 0.41128, 0.3975, 0.69583, 0.34669, 0.50695, 0.36923, 0.59795, 0.45826, 0.81782, 0.50431, 0.90498, 0.28085, 0.27229 ],
  326. "triangles": [ 8, 6, 7, 9, 25, 8, 8, 25, 6, 9, 10, 25, 10, 24, 25, 10, 11, 24, 6, 25, 5, 25, 24, 5, 11, 21, 24, 11, 12, 21, 24, 4, 5, 24, 21, 4, 21, 3, 4, 12, 23, 21, 21, 23, 3, 12, 13, 23, 23, 2, 3, 13, 22, 23, 23, 22, 2, 13, 14, 22, 14, 20, 22, 14, 15, 20, 22, 1, 2, 22, 20, 1, 20, 0, 1, 15, 26, 20, 15, 16, 26, 20, 26, 0, 16, 18, 26, 16, 17, 18, 26, 19, 0, 26, 18, 19 ],
  327. "vertices": [ 3, 14, 9.34, 8.9, 0.65713, 15, -4.01, 8.84, 0.33972, 16, -11.8, 10.67, 0.00315, 3, 14, 13.08, 9.45, 0.30999, 15, -0.26, 9.3, 0.64653, 16, -8.02, 10.54, 0.04349, 3, 14, 16.92, 10.02, 0.07039, 15, 3.6, 9.77, 0.74069, 16, -4.14, 10.42, 0.18892, 3, 14, 19.34, 10.37, 0.01608, 15, 6.02, 10.07, 0.63042, 16, -1.69, 10.34, 0.3535, 3, 14, 22.07, 10.78, 5.0E-4, 15, 8.76, 10.4, 0.42771, 16, 1.06, 10.25, 0.57179, 2, 15, 12.43, 10.85, 0.19192, 16, 4.75, 10.13, 0.80808, 2, 15, 16.68, 10.32, 0.04222, 16, 8.88, 8.95, 0.95778, 2, 15, 21.02, 9.77, 4.8E-4, 16, 13.08, 7.75, 0.99952, 1, 16, 10.89, 0.09, 1, 1, 16, 8.13, -9.56, 1, 2, 15, 16.94, -7.86, 0.0058, 16, 6.35, -9.05, 0.9942, 2, 15, 13.18, -7.39, 0.09863, 16, 2.7, -8, 0.90137, 3, 14, 21.72, -6.38, 0.00412, 15, 7.99, -6.74, 0.60456, 16, -2.32, -6.57, 0.39131, 3, 14, 18.54, -6.06, 0.06369, 15, 4.82, -6.34, 0.84692, 16, -5.4, -5.69, 0.08939, 3, 14, 16.13, -5.82, 0.22102, 15, 2.42, -6.04, 0.76808, 16, -7.73, -5.02, 0.0109, 2, 14, 13.01, -5.5, 0.6224, 15, -0.69, -5.65, 0.3776, 2, 14, 8.15, -5.02, 0.99447, 15, -5.54, -5.05, 0.00553, 1, 14, -1.29, -4.07, 1, 1, 14, -0.87, 0.05, 1, 2, 14, -0.13, 7.51, 0.99694, 15, -13.51, 7.68, 0.00306, 2, 14, 13.18, 0.03, 0.41503, 15, -0.39, -0.13, 0.58497, 1, 16, 0.16, 0.16, 1, 2, 15, 2.93, 0.18, 0.99963, 16, -6.27, 1.05, 3.7E-4, 2, 15, 6.05, 0.2, 0.99723, 16, -3.18, 0.59, 0.00277, 2, 15, 13.66, 0.87, 1.5E-4, 16, 4.44, 0.08, 0.99985, 2, 15, 16.71, 1.32, 0, 16, 7.52, 0.06, 1, 2, 14, 8.43, 0.03, 0.99977, 15, -5.14, 0, 2.3E-4 ],
  328. "hull": 20,
  329. "edges": [ 34, 36, 36, 38, 14, 16, 16, 18, 30, 40, 28, 30, 40, 44, 28, 44, 2, 4, 44, 4, 26, 28, 42, 46, 46, 44, 26, 46, 4, 6, 46, 6, 24, 26, 24, 42, 6, 8, 8, 10, 42, 8, 22, 24, 48, 42, 22, 48, 48, 10, 18, 20, 20, 22, 16, 50, 50, 48, 20, 50, 40, 2, 30, 32, 32, 34, 36, 52, 52, 40, 32, 52, 2, 0, 0, 38, 52, 0, 10, 12, 12, 14, 50, 12 ],
  330. "width": 18,
  331. "height": 34
  332. }
  333. },
  334. "youyan": {
  335. "youyan": {
  336. "type": "mesh",
  337. "uvs": [ 1, 1, 0.53213, 1, 0.52736, 0, 1, 0 ],
  338. "triangles": [ 1, 2, 3, 1, 3, 0 ],
  339. "vertices": [ -6.07, -13.52, -7.11, 8.45, 12.85, 9.62, 13.91, -12.56 ],
  340. "hull": 4,
  341. "edges": [ 0, 6, 4, 6, 0, 2, 4, 2 ],
  342. "width": 47,
  343. "height": 20
  344. }
  345. },
  346. "zuiba": {
  347. "zuiba": { "x": 1.67, "y": -0.38, "rotation": -86.82, "width": 13, "height": 9 }
  348. },
  349. "zuoshou": {
  350. "zuoshou": {
  351. "type": "mesh",
  352. "uvs": [ 1, 0.20839, 0.85522, 0.403, 0.81988, 0.45051, 0.77965, 0.50459, 0.60641, 0.73745, 0.57557, 0.77892, 0.53661, 0.83128, 0.4111, 1, 0.05792, 1, 0, 1, 0, 0.75886, 0.1779, 0.55952, 0.21006, 0.52348, 0.24677, 0.48235, 0.45414, 0.24997, 0.49821, 0.2006, 0.53302, 0.16159, 0.67722, 0, 0.86376, 0, 1, 0, 0.64986, 0.29812, 0.36633, 0.68369, 0.6734, 0.26532, 0.60793, 0.35514, 0.39203, 0.64874, 0.42312, 0.60646 ],
  353. "triangles": [ 8, 21, 7, 7, 21, 6, 21, 8, 10, 21, 10, 11, 10, 8, 9, 6, 21, 5, 5, 21, 24, 11, 12, 21, 21, 12, 24, 12, 13, 24, 24, 25, 5, 5, 25, 4, 4, 25, 3, 24, 13, 25, 25, 23, 3, 25, 14, 23, 25, 13, 14, 3, 23, 2, 23, 20, 2, 2, 20, 1, 14, 15, 23, 23, 15, 20, 15, 16, 20, 20, 22, 1, 0, 22, 18, 0, 1, 22, 20, 16, 22, 22, 17, 18, 22, 16, 17, 18, 19, 0 ],
  354. "vertices": [ 2, 23, 5.54, 10.24, 0.98381, 24, -10.27, 9.62, 0.01619, 2, 23, 15.11, 9.31, 0.4908, 24, -0.66, 9.29, 0.5092, 2, 23, 17.44, 9.09, 0.27972, 24, 1.68, 9.21, 0.72028, 3, 23, 20.1, 8.83, 0.10688, 24, 4.35, 9.11, 0.89312, 25, -15.17, 7.57, 1.0E-5, 2, 24, 15.85, 8.71, 0.6012, 25, -3.7, 8.44, 0.3988, 2, 24, 17.9, 8.64, 0.40176, 25, -1.65, 8.6, 0.59824, 2, 24, 20.49, 8.55, 0.18725, 25, 0.93, 8.8, 0.81275, 1, 25, 9.24, 9.43, 1, 1, 25, 18.15, -1.07, 1, 1, 25, 19.61, -2.79, 1, 1, 25, 12.26, -9.04, 1, 2, 24, 19.28, -9.12, 0.2343, 25, 1.69, -8.9, 0.7657, 2, 24, 17.39, -8.89, 0.3922, 25, -0.22, -8.88, 0.6078, 2, 24, 15.22, -8.62, 0.59974, 25, -2.4, -8.85, 0.40026, 2, 23, 17.74, -7.28, 0.11718, 24, 3, -7.1, 0.88282, 2, 23, 15.17, -6.79, 0.3607, 24, 0.4, -6.78, 0.6393, 2, 23, 13.13, -6.41, 0.62128, 24, -1.65, -6.53, 0.37872, 1, 23, 4.71, -4.83, 1, 1, 23, 1.03, 1.44, 1, 1, 23, -1.65, 6.03, 1, 2, 23, 15.54, 0.28, 0.19481, 24, 0.33, 0.3, 0.80519, 2, 24, 19.3, -0.25, 0.00138, 25, 0.72, -0.09, 0.99862, 2, 23, 13.94, 0.41, 0.99426, 24, -1.27, 0.33, 0.00574, 1, 24, 3.14, 0.22, 1, 2, 24, 17.58, -0.2, 0.24024, 25, -0.99, -0.23, 0.75976, 2, 24, 15.5, -0.14, 0.88389, 25, -3.07, -0.4, 0.11611 ],
  355. "hull": 20,
  356. "edges": [ 36, 38, 16, 18, 42, 16, 34, 36, 18, 20, 0, 38, 14, 16, 30, 40, 40, 4, 30, 32, 32, 34, 36, 44, 44, 40, 32, 44, 0, 2, 2, 4, 44, 2, 28, 30, 40, 46, 28, 46, 4, 6, 46, 6, 20, 22, 22, 42, 12, 14, 42, 12, 22, 24, 42, 48, 24, 48, 10, 12, 48, 10, 24, 26, 26, 28, 46, 50, 50, 48, 26, 50, 6, 8, 8, 10, 50, 8 ],
  357. "width": 39,
  358. "height": 40
  359. }
  360. },
  361. "zuotui": {
  362. "zuotui": {
  363. "type": "mesh",
  364. "uvs": [ 1, 0.10867, 1, 0.348, 1, 0.38338, 1, 0.4223, 1, 0.69353, 1, 0.73495, 1, 0.78291, 1, 1, 0, 1, 0, 0.93365, 0, 0.79803, 0.25157, 0.75504, 0.25316, 0.7168, 0.25476, 0.67846, 0.26568, 0.41697, 0.26727, 0.379, 0.2689, 0.33991, 0.27957, 0.08446, 0.2831, 0, 0.6357, 0, 1, 0, 0.6099, 0.37631, 0.58983, 0.76661, 0.59174, 0.72945, 0.59404, 0.68468, 0.60786, 0.41588, 0.61181, 0.34845 ],
  365. "triangles": [ 8, 22, 7, 8, 9, 22, 9, 11, 22, 9, 10, 11, 22, 6, 7, 6, 22, 5, 22, 23, 5, 11, 12, 22, 22, 12, 23, 23, 24, 5, 24, 4, 5, 12, 13, 23, 23, 13, 24, 24, 25, 4, 25, 3, 4, 13, 14, 24, 24, 14, 25, 25, 21, 3, 21, 2, 3, 14, 15, 25, 25, 15, 21, 21, 26, 2, 15, 16, 21, 26, 1, 2, 21, 16, 26, 16, 17, 26, 26, 17, 19, 1, 26, 0, 19, 17, 18, 26, 19, 0, 19, 20, 0 ],
  366. "vertices": [ 2, 4, 4.19, 11.4, 0.81729, 5, -13.71, 12.05, 0.18271, 2, 4, 16.62, 12.08, 0.41493, 5, -1.26, 12.15, 0.58507, 2, 4, 18.45, 12.18, 0.28914, 5, 0.58, 12.17, 0.71086, 2, 4, 20.48, 12.29, 0.17393, 5, 2.6, 12.18, 0.82607, 2, 5, 16.71, 12.3, 0.92976, 6, -13.96, -6.18, 0.07024, 2, 5, 18.86, 12.31, 0.86141, 6, -13.71, -4.04, 0.13859, 2, 5, 21.35, 12.33, 0.7485, 6, -13.43, -1.56, 0.2515, 2, 5, 32.64, 12.42, 0.27678, 6, -12.17, 9.66, 0.72322, 1, 6, 17.64, 6.3, 1, 1, 6, 17.25, 2.87, 1, 2, 5, 22.38, -17.66, 1.6E-4, 6, 16.46, -4.14, 0.99984, 2, 5, 20.08, -10.13, 0.27083, 6, 8.71, -5.51, 0.72917, 2, 5, 18.09, -10.1, 0.5285, 6, 8.44, -7.48, 0.4715, 2, 5, 16.1, -10.07, 0.70142, 6, 8.17, -9.46, 0.29858, 3, 4, 21.41, -9.72, 0.28706, 5, 2.5, -9.85, 0.71278, 6, 6.33, -22.94, 1.6E-4, 2, 4, 19.44, -9.78, 0.45116, 5, 0.53, -9.82, 0.54884, 2, 4, 17.4, -9.84, 0.63092, 5, -1.51, -9.78, 0.36908, 2, 4, 4.12, -10.25, 0.9083, 5, -14.79, -9.57, 0.0917, 1, 4, -0.27, -10.39, 1, 1, 4, -0.85, 0.17, 1, 1, 4, -1.45, 11.08, 1, 2, 4, 18.73, 0.47, 0.19864, 5, 0.3, 0.46, 0.80136, 1, 5, 20.6, 0.02, 1, 1, 5, 18.67, 0.06, 1, 1, 5, 16.34, 0.11, 1, 2, 4, 20.79, 0.53, 0.00566, 5, 2.36, 0.42, 0.99434, 1, 4, 17.28, 0.45, 1 ],
  367. "hull": 21,
  368. "edges": [ 14, 16, 22, 20, 36, 38, 38, 40, 16, 18, 18, 20, 44, 18, 22, 44, 14, 12, 44, 12, 22, 24, 46, 44, 24, 46, 12, 10, 46, 10, 24, 26, 48, 46, 26, 48, 10, 8, 48, 8, 30, 42, 42, 4, 26, 28, 28, 30, 42, 50, 50, 48, 28, 50, 4, 6, 6, 8, 50, 6, 30, 32, 38, 52, 52, 42, 32, 52, 4, 2, 52, 2, 32, 34, 34, 36, 2, 0, 0, 40 ],
  369. "width": 30,
  370. "height": 52
  371. }
  372. },
  373. "zuowaitao": {
  374. "zuowaitao": {
  375. "type": "mesh",
  376. "uvs": [ 1, 0.18744, 0.96167, 0.3088, 0.93377, 0.39711, 0.89939, 0.50597, 0.86521, 0.61417, 0.84838, 0.66745, 0.80614, 0.80116, 0.77645, 0.89516, 0.74333, 1, 0.29198, 1, 0, 1, 0, 0.85304, 0, 0.7166, 0.05191, 0.59873, 0.08465, 0.52439, 0.1183, 0.44798, 0.17055, 0.32933, 0.21552, 0.22722, 0.31558, 0, 0.66663, 0, 1, 0, 0.54273, 0.36813, 0.42178, 0.62626, 0.57432, 0.27428, 0.49421, 0.47168, 0.37884, 0.74989, 0.33432, 0.8781, 0.45136, 0.56314 ],
  377. "triangles": [ 9, 26, 8, 8, 26, 7, 26, 9, 11, 9, 10, 11, 26, 25, 7, 7, 25, 6, 25, 26, 12, 26, 11, 12, 25, 22, 6, 12, 13, 25, 25, 13, 22, 6, 22, 5, 22, 27, 5, 5, 27, 4, 13, 14, 22, 22, 14, 27, 27, 24, 4, 4, 24, 3, 14, 15, 27, 27, 15, 24, 24, 21, 3, 15, 16, 24, 24, 16, 21, 16, 17, 21, 3, 21, 2, 21, 23, 2, 2, 23, 1, 21, 17, 23, 0, 1, 19, 17, 18, 23, 1, 23, 19, 23, 18, 19, 19, 20, 0 ],
  378. "vertices": [ 1, 11, 4.11, 7.79, 1, 2, 11, 8.07, 7.78, 0.96088, 12, -4.43, 8.04, 0.03912, 3, 11, 10.95, 7.78, 0.80354, 12, -1.55, 8.17, 0.1945, 13, -10.81, 8.32, 0.00196, 3, 11, 14.5, 7.77, 0.45927, 12, 2, 8.34, 0.4956, 13, -7.26, 8.43, 0.04513, 3, 11, 18.03, 7.76, 0.17971, 12, 5.52, 8.51, 0.59975, 13, -3.73, 8.55, 0.22054, 3, 11, 19.77, 7.76, 0.09869, 12, 7.26, 8.59, 0.53064, 13, -1.99, 8.6, 0.37067, 3, 11, 24.13, 7.75, 0.01258, 12, 11.61, 8.8, 0.21062, 13, 2.36, 8.74, 0.77681, 3, 11, 27.19, 7.74, 8.6E-4, 12, 14.68, 8.94, 0.06151, 13, 5.43, 8.84, 0.93762, 2, 12, 18.09, 9.11, 0.0096, 13, 8.85, 8.95, 0.9904, 1, 13, 10.88, 0.15, 1, 1, 13, 12.19, -5.54, 1, 2, 12, 17.1, -6.45, 0.01217, 13, 7.61, -6.6, 0.98783, 2, 12, 12.86, -7.5, 0.15607, 13, 3.35, -7.58, 0.84393, 2, 12, 8.95, -7.4, 0.51106, 13, -0.56, -7.41, 0.48894, 3, 11, 18.2, -8.11, 9.0E-5, 12, 6.48, -7.33, 0.77083, 13, -3.02, -7.31, 0.22909, 3, 11, 15.67, -7.92, 0.01937, 12, 3.94, -7.27, 0.91325, 13, -5.55, -7.21, 0.06738, 3, 11, 11.74, -7.62, 0.23758, 12, 0.01, -7.16, 0.76122, 13, -9.49, -7.04, 0.00121, 2, 11, 8.36, -7.36, 0.61071, 12, -3.38, -7.08, 0.38929, 2, 11, 0.84, -6.79, 0.98506, 12, -10.92, -6.88, 0.01494, 1, 11, -0.5, 0.1, 1, 1, 11, -1.78, 6.64, 1, 2, 11, 11.54, -0.08, 0.48722, 12, -0.57, 0.36, 0.51278, 2, 12, 8.03, -0.01, 0.97422, 13, -1.36, -0.01, 0.02578, 2, 11, 8.47, -0.03, 0.99928, 12, -3.64, 0.25, 7.2E-4, 2, 11, 14.97, -0.39, 0.00478, 12, 2.88, 0.21, 0.99522, 2, 11, 24.15, -0.95, 0, 13, 2.69, 0.04, 1, 1, 13, 6.89, 0.1, 1, 3, 11, 18.01, -0.67, 4.4E-4, 12, 5.92, 0.08, 0.9994, 13, -3.46, 0.11, 1.5E-4 ],
  379. "hull": 21,
  380. "edges": [ 0, 40, 36, 38, 38, 40, 16, 18, 18, 20, 32, 42, 42, 4, 32, 34, 34, 36, 38, 46, 46, 42, 34, 46, 0, 2, 2, 4, 46, 2, 30, 32, 42, 48, 30, 48, 4, 6, 48, 6, 24, 26, 26, 44, 44, 10, 50, 44, 24, 50, 10, 12, 50, 12, 20, 22, 22, 24, 18, 52, 52, 50, 22, 52, 12, 14, 14, 16, 52, 14, 26, 28, 28, 30, 44, 54, 54, 48, 28, 54, 6, 8, 8, 10, 54, 8 ],
  381. "width": 20,
  382. "height": 32
  383. }
  384. },
  385. "zuoyan": {
  386. "zuoyan": {
  387. "type": "mesh",
  388. "uvs": [ 0.42202, 1, 0, 1, 0, 0, 0.4244, 0 ],
  389. "triangles": [ 0, 1, 2, 3, 0, 2 ],
  390. "vertices": [ -5.5, -8.96, -5.5, 10.88, 14.5, 10.88, 14.5, -9.07 ],
  391. "hull": 4,
  392. "edges": [ 2, 4, 4, 6, 0, 2, 6, 0 ],
  393. "width": 47,
  394. "height": 20
  395. }
  396. }
  397. }
  398. },
  399. "animations": {
  400. "stand1": {
  401. "slots": {
  402. "biaoqing_4": {
  403. "color": [
  404. { "time": 0, "color": "ffffff00", "curve": "stepped" },
  405. { "time": 4.1667, "color": "ffffff00" }
  406. ]
  407. },
  408. "biyan": {
  409. "attachment": [
  410. { "time": 0.2667, "name": "biyan" },
  411. { "time": 3.8333, "name": null }
  412. ]
  413. },
  414. "bizui": {
  415. "attachment": [
  416. { "time": 0.2667, "name": "bizui" },
  417. { "time": 0.4333, "name": null },
  418. { "time": 0.6, "name": "bizui" },
  419. { "time": 0.8, "name": null },
  420. { "time": 0.9667, "name": "bizui" },
  421. { "time": 1.2333, "name": null },
  422. { "time": 1.4333, "name": "bizui" },
  423. { "time": 1.6, "name": null },
  424. { "time": 1.7667, "name": "bizui" },
  425. { "time": 1.9667, "name": null },
  426. { "time": 2.1333, "name": "bizui" },
  427. { "time": 2.4, "name": null },
  428. { "time": 2.6, "name": "bizui" },
  429. { "time": 2.7667, "name": null },
  430. { "time": 2.9333, "name": "bizui" },
  431. { "time": 3.1333, "name": null },
  432. { "time": 3.3, "name": "bizui" },
  433. { "time": 3.5667, "name": null },
  434. { "time": 3.8, "name": "bizui" },
  435. { "time": 4.1667, "name": null }
  436. ]
  437. },
  438. "meimao": {
  439. "attachment": [
  440. { "time": 0, "name": "meimao" },
  441. { "time": 0.1667, "name": "meimao" },
  442. { "time": 0.9, "name": "meimao" },
  443. { "time": 1.3333, "name": "meimao" },
  444. { "time": 1.7667, "name": "meimao" },
  445. { "time": 2.2333, "name": "meimao" },
  446. { "time": 2.6667, "name": "meimao" },
  447. { "time": 3.1333, "name": "meimao" },
  448. { "time": 3.5667, "name": "meimao" },
  449. { "time": 4.1667, "name": "meimao" }
  450. ]
  451. },
  452. "yin1": {
  453. "color": [
  454. { "time": 0, "color": "ffffff00", "curve": "stepped" },
  455. { "time": 1.3333, "color": "ffffff00" },
  456. { "time": 1.5333, "color": "ffffffff", "curve": "stepped" },
  457. { "time": 2.6667, "color": "ffffffff" },
  458. { "time": 2.9, "color": "ffffff00" }
  459. ],
  460. "attachment": [
  461. { "time": 0, "name": "yin1" }
  462. ]
  463. },
  464. "yin2": {
  465. "color": [
  466. { "time": 0, "color": "ffffff00", "curve": "stepped" },
  467. { "time": 0.2667, "color": "ffffff00" },
  468. { "time": 0.6667, "color": "ffffffff", "curve": "stepped" },
  469. { "time": 1.4667, "color": "ffffffff" },
  470. { "time": 1.9333, "color": "ffffff00", "curve": "stepped" },
  471. { "time": 2.2, "color": "ffffff00" },
  472. { "time": 2.6, "color": "ffffffff", "curve": "stepped" },
  473. { "time": 3.4, "color": "ffffffff" },
  474. { "time": 3.8667, "color": "ffffff00" }
  475. ],
  476. "attachment": [
  477. { "time": 0, "name": "yin2" }
  478. ]
  479. },
  480. "yin3": {
  481. "color": [
  482. { "time": 0, "color": "ffffff00" },
  483. { "time": 0.2667, "color": "ffffffff", "curve": "stepped" },
  484. { "time": 2, "color": "ffffffff" },
  485. { "time": 2.4333, "color": "ffffff00" }
  486. ],
  487. "attachment": [
  488. { "time": 0, "name": "yin3" }
  489. ]
  490. },
  491. "youyan": {
  492. "attachment": [
  493. { "time": 0.2667, "name": null },
  494. { "time": 3.8333, "name": "youyan" }
  495. ]
  496. },
  497. "zuiba": {
  498. "attachment": [
  499. { "time": 0.2667, "name": null },
  500. { "time": 0.4333, "name": "zuiba" },
  501. { "time": 0.6, "name": null },
  502. { "time": 0.8, "name": "zuiba" },
  503. { "time": 0.9667, "name": null },
  504. { "time": 1.2333, "name": "zuiba" },
  505. { "time": 1.4333, "name": null },
  506. { "time": 1.6, "name": "zuiba" },
  507. { "time": 1.7667, "name": null },
  508. { "time": 1.9667, "name": "zuiba" },
  509. { "time": 2.1333, "name": null },
  510. { "time": 2.4, "name": "zuiba" },
  511. { "time": 2.6, "name": null },
  512. { "time": 2.7667, "name": "zuiba" },
  513. { "time": 2.9333, "name": null },
  514. { "time": 3.1333, "name": "zuiba" },
  515. { "time": 3.3, "name": null },
  516. { "time": 3.5667, "name": "zuiba" },
  517. { "time": 3.8, "name": null },
  518. { "time": 4.1667, "name": "zuiba" }
  519. ]
  520. },
  521. "zuoyan": {
  522. "attachment": [
  523. { "time": 0.2667, "name": null },
  524. { "time": 3.8333, "name": "zuoyan" }
  525. ]
  526. }
  527. },
  528. "bones": {
  529. "root": {
  530. "rotate": [
  531. { "time": 0, "angle": 0 }
  532. ],
  533. "translate": [
  534. { "time": 0, "x": 0, "y": 0 }
  535. ],
  536. "scale": [
  537. { "time": 0, "x": 0.65, "y": 0.65 }
  538. ]
  539. },
  540. "bone2": {
  541. "rotate": [
  542. { "time": 0, "angle": 0 },
  543. { "time": 0.2667, "angle": -5.71 },
  544. { "time": 0.4667, "angle": -8.99 },
  545. { "time": 0.6667, "angle": -5.71 },
  546. { "time": 0.9, "angle": -11.51 },
  547. { "time": 1.1, "angle": -5.71 },
  548. { "time": 1.3333, "angle": -11.51 },
  549. { "time": 1.5333, "angle": -5.71 },
  550. { "time": 1.7667, "angle": -11.51 },
  551. { "time": 2, "angle": -5.71 },
  552. { "time": 2.2333, "angle": -11.51 },
  553. { "time": 2.4333, "angle": -5.71 },
  554. { "time": 2.6667, "angle": -11.51 },
  555. { "time": 2.9, "angle": -5.71 },
  556. { "time": 3.1333, "angle": -11.51 },
  557. { "time": 3.3333, "angle": -5.71 },
  558. { "time": 3.5667, "angle": -11.51 },
  559. { "time": 3.8, "angle": -5.71 },
  560. { "time": 4.1667, "angle": 0 }
  561. ],
  562. "translate": [
  563. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  564. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  565. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  566. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  567. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  568. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  569. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  570. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  571. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  572. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  573. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  574. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  575. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  576. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  577. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  578. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  579. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  580. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  581. { "time": 4.1667, "x": 0, "y": 0 }
  582. ],
  583. "scale": [
  584. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  585. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  586. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  587. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  588. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  589. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  590. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  591. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  592. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  593. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  594. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  595. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  596. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  597. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  598. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  599. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  600. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  601. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  602. { "time": 4.1667, "x": 1, "y": 1 }
  603. ]
  604. },
  605. "bone3": {
  606. "rotate": [
  607. { "time": 0, "angle": 0, "curve": "stepped" },
  608. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  609. { "time": 0.4667, "angle": 0, "curve": "stepped" },
  610. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  611. { "time": 0.9, "angle": 0, "curve": "stepped" },
  612. { "time": 1.1, "angle": 0, "curve": "stepped" },
  613. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  614. { "time": 1.5333, "angle": 0, "curve": "stepped" },
  615. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  616. { "time": 2, "angle": 0, "curve": "stepped" },
  617. { "time": 2.2333, "angle": 0, "curve": "stepped" },
  618. { "time": 2.4333, "angle": 0, "curve": "stepped" },
  619. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  620. { "time": 2.9, "angle": 0, "curve": "stepped" },
  621. { "time": 3.1333, "angle": 0, "curve": "stepped" },
  622. { "time": 3.3333, "angle": 0, "curve": "stepped" },
  623. { "time": 3.5667, "angle": 0, "curve": "stepped" },
  624. { "time": 3.8, "angle": 0, "curve": "stepped" },
  625. { "time": 4.1667, "angle": 0 }
  626. ],
  627. "translate": [
  628. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  629. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  630. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  631. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  632. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  633. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  634. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  635. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  636. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  637. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  638. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  639. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  640. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  641. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  642. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  643. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  644. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  645. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  646. { "time": 4.1667, "x": 0, "y": 0 }
  647. ],
  648. "scale": [
  649. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  650. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  651. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  652. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  653. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  654. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  655. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  656. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  657. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  658. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  659. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  660. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  661. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  662. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  663. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  664. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  665. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  666. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  667. { "time": 4.1667, "x": 1, "y": 1 }
  668. ]
  669. },
  670. "bone4": {
  671. "rotate": [
  672. { "time": 0, "angle": 0 },
  673. { "time": 0.2667, "angle": -20.36 },
  674. { "time": 0.4667, "angle": -27.31 },
  675. { "time": 0.6667, "angle": -15.63 },
  676. { "time": 0.9, "angle": -27.31 },
  677. { "time": 1.1, "angle": -20.36 },
  678. { "time": 1.3333, "angle": -27.31 },
  679. { "time": 1.5333, "angle": -15.63 },
  680. { "time": 1.7667, "angle": -27.31 },
  681. { "time": 2, "angle": -20.36 },
  682. { "time": 2.2333, "angle": -27.31 },
  683. { "time": 2.4333, "angle": -15.63 },
  684. { "time": 2.6667, "angle": -27.31 },
  685. { "time": 2.9, "angle": -20.36 },
  686. { "time": 3.1333, "angle": -27.31 },
  687. { "time": 3.3333, "angle": -15.63 },
  688. { "time": 3.5667, "angle": -27.31 },
  689. { "time": 3.8, "angle": -20.36 },
  690. { "time": 4.1667, "angle": 0 }
  691. ],
  692. "translate": [
  693. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  694. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  695. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  696. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  697. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  698. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  699. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  700. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  701. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  702. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  703. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  704. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  705. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  706. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  707. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  708. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  709. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  710. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  711. { "time": 4.1667, "x": 0, "y": 0 }
  712. ],
  713. "scale": [
  714. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  715. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  716. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  717. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  718. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  719. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  720. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  721. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  722. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  723. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  724. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  725. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  726. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  727. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  728. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  729. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  730. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  731. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  732. { "time": 4.1667, "x": 1, "y": 1 }
  733. ]
  734. },
  735. "bone5": {
  736. "rotate": [
  737. { "time": 0, "angle": 0 },
  738. { "time": 0.2667, "angle": 29.64 },
  739. { "time": 0.4667, "angle": 47.11 },
  740. { "time": 0.6667, "angle": 19.65 },
  741. { "time": 0.9, "angle": 47.11 },
  742. { "time": 1.1, "angle": 22.28 },
  743. { "time": 1.3333, "angle": 34.36 },
  744. { "time": 1.5333, "angle": 19.65 },
  745. { "time": 1.7667, "angle": 47.11 },
  746. { "time": 2, "angle": 22.28 },
  747. { "time": 2.2333, "angle": 34.36 },
  748. { "time": 2.4333, "angle": 19.65 },
  749. { "time": 2.6667, "angle": 47.11 },
  750. { "time": 2.9, "angle": 22.28 },
  751. { "time": 3.1333, "angle": 34.36 },
  752. { "time": 3.3333, "angle": 19.65 },
  753. { "time": 3.5667, "angle": 47.11 },
  754. { "time": 3.8, "angle": 22.28 },
  755. { "time": 4.1667, "angle": 0 }
  756. ],
  757. "translate": [
  758. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  759. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  760. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  761. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  762. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  763. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  764. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  765. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  766. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  767. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  768. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  769. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  770. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  771. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  772. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  773. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  774. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  775. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  776. { "time": 4.1667, "x": 0, "y": 0 }
  777. ],
  778. "scale": [
  779. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  780. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  781. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  782. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  783. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  784. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  785. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  786. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  787. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  788. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  789. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  790. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  791. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  792. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  793. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  794. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  795. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  796. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  797. { "time": 4.1667, "x": 1, "y": 1 }
  798. ]
  799. },
  800. "bone6": {
  801. "rotate": [
  802. { "time": 0, "angle": 0, "curve": "stepped" },
  803. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  804. { "time": 0.4667, "angle": 0 },
  805. { "time": 0.6667, "angle": -14.43 },
  806. { "time": 0.9, "angle": 0 },
  807. { "time": 1.1, "angle": 10.08 },
  808. { "time": 1.3333, "angle": -27.33 },
  809. { "time": 1.5333, "angle": -14.43 },
  810. { "time": 1.7667, "angle": 0 },
  811. { "time": 2, "angle": 10.08 },
  812. { "time": 2.2333, "angle": -27.33 },
  813. { "time": 2.4333, "angle": -14.43 },
  814. { "time": 2.6667, "angle": 0 },
  815. { "time": 2.9, "angle": 10.08 },
  816. { "time": 3.1333, "angle": -27.33 },
  817. { "time": 3.3333, "angle": -14.43 },
  818. { "time": 3.5667, "angle": 0 },
  819. { "time": 3.8, "angle": 10.08 },
  820. { "time": 4.1667, "angle": 0 }
  821. ],
  822. "translate": [
  823. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  824. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  825. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  826. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  827. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  828. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  829. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  830. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  831. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  832. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  833. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  834. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  835. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  836. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  837. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  838. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  839. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  840. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  841. { "time": 4.1667, "x": 0, "y": 0 }
  842. ],
  843. "scale": [
  844. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  845. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  846. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  847. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  848. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  849. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  850. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  851. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  852. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  853. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  854. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  855. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  856. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  857. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  858. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  859. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  860. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  861. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  862. { "time": 4.1667, "x": 1, "y": 1 }
  863. ]
  864. },
  865. "bone7": {
  866. "rotate": [
  867. { "time": 0, "angle": 0, "curve": "stepped" },
  868. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  869. { "time": 0.4667, "angle": 0 },
  870. { "time": 0.6667, "angle": 355.32 },
  871. { "time": 0.9, "angle": 0 },
  872. { "time": 1.1, "angle": 355.32 },
  873. { "time": 1.3333, "angle": 0 },
  874. { "time": 1.5333, "angle": 355.32 },
  875. { "time": 1.7667, "angle": 0 },
  876. { "time": 2, "angle": 355.32 },
  877. { "time": 2.2333, "angle": 0 },
  878. { "time": 2.4333, "angle": 355.32 },
  879. { "time": 2.6667, "angle": 0 },
  880. { "time": 2.9, "angle": 355.32 },
  881. { "time": 3.1333, "angle": 0 },
  882. { "time": 3.3333, "angle": 355.32 },
  883. { "time": 3.5667, "angle": 0 },
  884. { "time": 3.8, "angle": 355.32 },
  885. { "time": 4.1667, "angle": 0 }
  886. ],
  887. "translate": [
  888. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  889. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  890. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  891. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  892. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  893. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  894. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  895. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  896. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  897. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  898. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  899. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  900. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  901. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  902. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  903. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  904. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  905. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  906. { "time": 4.1667, "x": 0, "y": 0 }
  907. ],
  908. "scale": [
  909. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  910. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  911. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  912. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  913. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  914. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  915. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  916. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  917. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  918. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  919. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  920. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  921. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  922. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  923. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  924. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  925. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  926. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  927. { "time": 4.1667, "x": 1, "y": 1 }
  928. ]
  929. },
  930. "bone8": {
  931. "rotate": [
  932. { "time": 0, "angle": 0, "curve": "stepped" },
  933. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  934. { "time": 0.4667, "angle": 0 },
  935. { "time": 0.6667, "angle": 8.02 },
  936. { "time": 0.9, "angle": 0 },
  937. { "time": 1.1, "angle": 8.02 },
  938. { "time": 1.3333, "angle": 0 },
  939. { "time": 1.5333, "angle": 8.02 },
  940. { "time": 1.7667, "angle": 0 },
  941. { "time": 2, "angle": 8.02 },
  942. { "time": 2.2333, "angle": 0 },
  943. { "time": 2.4333, "angle": 8.02 },
  944. { "time": 2.6667, "angle": 0 },
  945. { "time": 2.9, "angle": 8.02 },
  946. { "time": 3.1333, "angle": 0 },
  947. { "time": 3.3333, "angle": 8.02 },
  948. { "time": 3.5667, "angle": 0 },
  949. { "time": 3.8, "angle": 8.02 },
  950. { "time": 4.1667, "angle": 0 }
  951. ],
  952. "translate": [
  953. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  954. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  955. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  956. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  957. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  958. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  959. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  960. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  961. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  962. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  963. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  964. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  965. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  966. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  967. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  968. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  969. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  970. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  971. { "time": 4.1667, "x": 0, "y": 0 }
  972. ],
  973. "scale": [
  974. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  975. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  976. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  977. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  978. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  979. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  980. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  981. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  982. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  983. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  984. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  985. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  986. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  987. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  988. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  989. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  990. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  991. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  992. { "time": 4.1667, "x": 1, "y": 1 }
  993. ]
  994. },
  995. "bone9": {
  996. "rotate": [
  997. { "time": 0, "angle": 0, "curve": "stepped" },
  998. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  999. { "time": 0.4667, "angle": 0 },
  1000. { "time": 0.6667, "angle": -2.87 },
  1001. { "time": 0.9, "angle": 0 },
  1002. { "time": 1.1, "angle": -2.87, "curve": "stepped" },
  1003. { "time": 2, "angle": -2.87, "curve": "stepped" },
  1004. { "time": 2.9, "angle": -2.87 },
  1005. { "time": 4.1667, "angle": 0 }
  1006. ],
  1007. "translate": [
  1008. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1009. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  1010. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  1011. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1012. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  1013. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  1014. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1015. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  1016. { "time": 4.1667, "x": 0, "y": 0 }
  1017. ],
  1018. "scale": [
  1019. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1020. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  1021. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  1022. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1023. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  1024. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  1025. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1026. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  1027. { "time": 4.1667, "x": 1, "y": 1 }
  1028. ]
  1029. },
  1030. "bone10": {
  1031. "rotate": [
  1032. { "time": 0, "angle": 0 },
  1033. { "time": 0.2667, "angle": 3.13 },
  1034. { "time": 0.4667, "angle": -3.78 },
  1035. { "time": 0.6667, "angle": 3.13 },
  1036. { "time": 0.9, "angle": -3.78 },
  1037. { "time": 1.1, "angle": 3.13 },
  1038. { "time": 1.3333, "angle": -3.78 },
  1039. { "time": 1.5333, "angle": 3.13 },
  1040. { "time": 1.7667, "angle": -3.78 },
  1041. { "time": 2, "angle": 3.13 },
  1042. { "time": 2.2333, "angle": -3.78 },
  1043. { "time": 2.4333, "angle": 3.13 },
  1044. { "time": 2.6667, "angle": -3.78 },
  1045. { "time": 2.9, "angle": 3.13 },
  1046. { "time": 3.1333, "angle": -3.78 },
  1047. { "time": 3.3333, "angle": 3.13 },
  1048. { "time": 3.5667, "angle": -3.78 },
  1049. { "time": 3.8, "angle": 3.13 },
  1050. { "time": 4.1667, "angle": 0 }
  1051. ],
  1052. "translate": [
  1053. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1054. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  1055. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  1056. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1057. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  1058. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  1059. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1060. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  1061. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  1062. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1063. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  1064. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  1065. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  1066. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  1067. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  1068. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  1069. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  1070. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  1071. { "time": 4.1667, "x": 0, "y": 0 }
  1072. ],
  1073. "scale": [
  1074. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1075. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  1076. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  1077. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1078. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  1079. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  1080. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1081. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  1082. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1083. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1084. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  1085. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  1086. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  1087. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  1088. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  1089. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  1090. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  1091. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  1092. { "time": 4.1667, "x": 1, "y": 1 }
  1093. ]
  1094. },
  1095. "bone11": {
  1096. "rotate": [
  1097. { "time": 0, "angle": 0 },
  1098. { "time": 0.2667, "angle": 0.8 },
  1099. { "time": 0.4667, "angle": -8.75 },
  1100. { "time": 0.6667, "angle": 0.8 },
  1101. { "time": 0.9, "angle": -8.75 },
  1102. { "time": 1.1, "angle": 0.8 },
  1103. { "time": 1.3333, "angle": -8.75 },
  1104. { "time": 1.5333, "angle": 0.8 },
  1105. { "time": 1.7667, "angle": -8.75 },
  1106. { "time": 2, "angle": 0.8 },
  1107. { "time": 2.2333, "angle": -8.75 },
  1108. { "time": 2.4333, "angle": 0.8 },
  1109. { "time": 2.6667, "angle": -8.75 },
  1110. { "time": 2.9, "angle": 0.8 },
  1111. { "time": 3.1333, "angle": -8.75 },
  1112. { "time": 3.3333, "angle": 0.8 },
  1113. { "time": 3.5667, "angle": -8.75 },
  1114. { "time": 3.8, "angle": 0.8 },
  1115. { "time": 4.1667, "angle": 0 }
  1116. ],
  1117. "translate": [
  1118. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1119. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  1120. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  1121. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1122. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  1123. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  1124. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1125. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  1126. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  1127. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1128. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  1129. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  1130. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  1131. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  1132. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  1133. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  1134. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  1135. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  1136. { "time": 4.1667, "x": 0, "y": 0 }
  1137. ],
  1138. "scale": [
  1139. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1140. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  1141. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  1142. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1143. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  1144. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  1145. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1146. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  1147. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1148. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1149. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  1150. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  1151. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  1152. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  1153. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  1154. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  1155. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  1156. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  1157. { "time": 4.1667, "x": 1, "y": 1 }
  1158. ]
  1159. },
  1160. "bone12": {
  1161. "rotate": [
  1162. { "time": 0, "angle": 0 },
  1163. { "time": 0.2667, "angle": -8.88, "curve": "stepped" },
  1164. { "time": 0.4667, "angle": -8.88, "curve": "stepped" },
  1165. { "time": 0.6667, "angle": -8.88, "curve": "stepped" },
  1166. { "time": 0.9, "angle": -8.88, "curve": "stepped" },
  1167. { "time": 1.1, "angle": -8.88, "curve": "stepped" },
  1168. { "time": 1.3333, "angle": -8.88, "curve": "stepped" },
  1169. { "time": 1.5333, "angle": -8.88, "curve": "stepped" },
  1170. { "time": 1.7667, "angle": -8.88, "curve": "stepped" },
  1171. { "time": 2, "angle": -8.88, "curve": "stepped" },
  1172. { "time": 2.2333, "angle": -8.88, "curve": "stepped" },
  1173. { "time": 2.4333, "angle": -8.88, "curve": "stepped" },
  1174. { "time": 2.6667, "angle": -8.88, "curve": "stepped" },
  1175. { "time": 2.9, "angle": -8.88, "curve": "stepped" },
  1176. { "time": 3.1333, "angle": -8.88, "curve": "stepped" },
  1177. { "time": 3.3333, "angle": -8.88, "curve": "stepped" },
  1178. { "time": 3.5667, "angle": -8.88, "curve": "stepped" },
  1179. { "time": 3.8, "angle": -8.88 },
  1180. { "time": 4.1667, "angle": 0 }
  1181. ],
  1182. "translate": [
  1183. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1184. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  1185. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  1186. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1187. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  1188. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  1189. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1190. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  1191. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  1192. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1193. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  1194. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  1195. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  1196. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  1197. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  1198. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  1199. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  1200. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  1201. { "time": 4.1667, "x": 0, "y": 0 }
  1202. ],
  1203. "scale": [
  1204. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1205. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  1206. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  1207. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1208. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  1209. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  1210. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1211. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  1212. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1213. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1214. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  1215. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  1216. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  1217. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  1218. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  1219. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  1220. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  1221. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  1222. { "time": 4.1667, "x": 1, "y": 1 }
  1223. ]
  1224. },
  1225. "bone13": {
  1226. "rotate": [
  1227. { "time": 0, "angle": 0 },
  1228. { "time": 0.2667, "angle": 1.46 },
  1229. { "time": 0.4667, "angle": 13.61 },
  1230. { "time": 0.6667, "angle": 1.46 },
  1231. { "time": 0.9, "angle": 13.61 },
  1232. { "time": 1.1, "angle": 1.46 },
  1233. { "time": 1.3333, "angle": 13.61 },
  1234. { "time": 1.5333, "angle": 1.46 },
  1235. { "time": 1.7667, "angle": 13.61 },
  1236. { "time": 2, "angle": 1.46 },
  1237. { "time": 2.2333, "angle": 13.61 },
  1238. { "time": 2.4333, "angle": 1.46 },
  1239. { "time": 2.6667, "angle": 13.61 },
  1240. { "time": 2.9, "angle": 1.46 },
  1241. { "time": 3.1333, "angle": 13.61 },
  1242. { "time": 3.3333, "angle": 1.46 },
  1243. { "time": 3.5667, "angle": 13.61 },
  1244. { "time": 3.8, "angle": 1.46 },
  1245. { "time": 4.1667, "angle": 0 }
  1246. ],
  1247. "translate": [
  1248. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1249. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  1250. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  1251. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1252. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  1253. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  1254. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1255. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  1256. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  1257. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1258. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  1259. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  1260. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  1261. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  1262. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  1263. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  1264. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  1265. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  1266. { "time": 4.1667, "x": 0, "y": 0 }
  1267. ],
  1268. "scale": [
  1269. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1270. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  1271. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  1272. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1273. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  1274. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  1275. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1276. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  1277. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1278. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1279. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  1280. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  1281. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  1282. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  1283. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  1284. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  1285. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  1286. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  1287. { "time": 4.1667, "x": 1, "y": 1 }
  1288. ]
  1289. },
  1290. "bone14": {
  1291. "rotate": [
  1292. { "time": 0, "angle": 0 },
  1293. { "time": 0.2667, "angle": 0.46 },
  1294. { "time": 0.4667, "angle": 10.74 },
  1295. { "time": 0.6667, "angle": 0.46 },
  1296. { "time": 0.9, "angle": 10.74 },
  1297. { "time": 1.1, "angle": 0.46 },
  1298. { "time": 1.3333, "angle": 10.74 },
  1299. { "time": 1.5333, "angle": 0.46 },
  1300. { "time": 1.7667, "angle": 10.74 },
  1301. { "time": 2, "angle": 0.46 },
  1302. { "time": 2.2333, "angle": 10.74 },
  1303. { "time": 2.4333, "angle": 0.46 },
  1304. { "time": 2.6667, "angle": 10.74 },
  1305. { "time": 2.9, "angle": 0.46 },
  1306. { "time": 3.1333, "angle": 10.74 },
  1307. { "time": 3.3333, "angle": 0.46 },
  1308. { "time": 3.5667, "angle": 10.74 },
  1309. { "time": 3.8, "angle": 0.46 },
  1310. { "time": 4.1667, "angle": 0 }
  1311. ],
  1312. "translate": [
  1313. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1314. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  1315. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  1316. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1317. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  1318. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  1319. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1320. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  1321. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  1322. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1323. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  1324. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  1325. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  1326. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  1327. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  1328. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  1329. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  1330. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  1331. { "time": 4.1667, "x": 0, "y": 0 }
  1332. ],
  1333. "scale": [
  1334. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1335. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  1336. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  1337. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1338. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  1339. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  1340. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1341. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  1342. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1343. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1344. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  1345. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  1346. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  1347. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  1348. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  1349. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  1350. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  1351. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  1352. { "time": 4.1667, "x": 1, "y": 1 }
  1353. ]
  1354. },
  1355. "bone15": {
  1356. "rotate": [
  1357. { "time": 0, "angle": 0 },
  1358. { "time": 0.2667, "angle": -6.07 },
  1359. { "time": 0.4667, "angle": 8.94 },
  1360. { "time": 0.6667, "angle": -6.07 },
  1361. { "time": 0.9, "angle": 8.94 },
  1362. { "time": 1.1, "angle": -6.07 },
  1363. { "time": 1.3333, "angle": 8.94 },
  1364. { "time": 1.5333, "angle": -6.07 },
  1365. { "time": 1.7667, "angle": 8.94 },
  1366. { "time": 2, "angle": -6.07 },
  1367. { "time": 2.2333, "angle": 8.94 },
  1368. { "time": 2.4333, "angle": -6.07 },
  1369. { "time": 2.6667, "angle": 8.94 },
  1370. { "time": 2.9, "angle": -6.07 },
  1371. { "time": 3.1333, "angle": 8.94 },
  1372. { "time": 3.3333, "angle": -6.07 },
  1373. { "time": 3.5667, "angle": 8.94 },
  1374. { "time": 3.8, "angle": -6.07 },
  1375. { "time": 4.1667, "angle": 0 }
  1376. ],
  1377. "translate": [
  1378. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1379. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  1380. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  1381. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1382. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  1383. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  1384. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1385. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  1386. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  1387. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1388. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  1389. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  1390. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  1391. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  1392. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  1393. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  1394. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  1395. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  1396. { "time": 4.1667, "x": 0, "y": 0 }
  1397. ],
  1398. "scale": [
  1399. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1400. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  1401. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  1402. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1403. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  1404. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  1405. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1406. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  1407. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1408. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1409. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  1410. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  1411. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  1412. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  1413. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  1414. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  1415. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  1416. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  1417. { "time": 4.1667, "x": 1, "y": 1 }
  1418. ]
  1419. },
  1420. "bone16": {
  1421. "rotate": [
  1422. { "time": 0, "angle": 0 },
  1423. { "time": 0.2667, "angle": -23.1, "curve": "stepped" },
  1424. { "time": 0.4667, "angle": -23.1, "curve": "stepped" },
  1425. { "time": 0.6667, "angle": -23.1, "curve": "stepped" },
  1426. { "time": 0.9, "angle": -23.1, "curve": "stepped" },
  1427. { "time": 1.1, "angle": -23.1, "curve": "stepped" },
  1428. { "time": 1.3333, "angle": -23.1, "curve": "stepped" },
  1429. { "time": 1.5333, "angle": -23.1, "curve": "stepped" },
  1430. { "time": 1.7667, "angle": -23.1, "curve": "stepped" },
  1431. { "time": 2, "angle": -23.1, "curve": "stepped" },
  1432. { "time": 2.2333, "angle": -23.1, "curve": "stepped" },
  1433. { "time": 2.4333, "angle": -23.1, "curve": "stepped" },
  1434. { "time": 2.6667, "angle": -23.1, "curve": "stepped" },
  1435. { "time": 2.9, "angle": -23.1, "curve": "stepped" },
  1436. { "time": 3.1333, "angle": -23.1, "curve": "stepped" },
  1437. { "time": 3.3333, "angle": -23.1, "curve": "stepped" },
  1438. { "time": 3.5667, "angle": -23.1, "curve": "stepped" },
  1439. { "time": 3.8, "angle": -23.1 },
  1440. { "time": 4.1667, "angle": 0 }
  1441. ],
  1442. "translate": [
  1443. { "time": 0, "x": 0, "y": 0 },
  1444. { "time": 0.2667, "x": -0.78, "y": -0.5, "curve": "stepped" },
  1445. { "time": 0.4667, "x": -0.78, "y": -0.5, "curve": "stepped" },
  1446. { "time": 0.6667, "x": -0.78, "y": -0.5, "curve": "stepped" },
  1447. { "time": 0.9, "x": -0.78, "y": -0.5, "curve": "stepped" },
  1448. { "time": 1.1, "x": -0.78, "y": -0.5, "curve": "stepped" },
  1449. { "time": 1.3333, "x": -0.78, "y": -0.5, "curve": "stepped" },
  1450. { "time": 1.5333, "x": -0.78, "y": -0.5, "curve": "stepped" },
  1451. { "time": 1.7667, "x": -0.78, "y": -0.5, "curve": "stepped" },
  1452. { "time": 2, "x": -0.78, "y": -0.5, "curve": "stepped" },
  1453. { "time": 2.2333, "x": -0.78, "y": -0.5, "curve": "stepped" },
  1454. { "time": 2.4333, "x": -0.78, "y": -0.5, "curve": "stepped" },
  1455. { "time": 2.6667, "x": -0.78, "y": -0.5, "curve": "stepped" },
  1456. { "time": 2.9, "x": -0.78, "y": -0.5, "curve": "stepped" },
  1457. { "time": 3.1333, "x": -0.78, "y": -0.5, "curve": "stepped" },
  1458. { "time": 3.3333, "x": -0.78, "y": -0.5, "curve": "stepped" },
  1459. { "time": 3.5667, "x": -0.78, "y": -0.5, "curve": "stepped" },
  1460. { "time": 3.8, "x": -0.78, "y": -0.5 },
  1461. { "time": 4.1667, "x": 0, "y": 0 }
  1462. ],
  1463. "scale": [
  1464. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1465. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  1466. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  1467. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1468. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  1469. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  1470. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1471. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  1472. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1473. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1474. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  1475. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  1476. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  1477. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  1478. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  1479. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  1480. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  1481. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  1482. { "time": 4.1667, "x": 1, "y": 1 }
  1483. ]
  1484. },
  1485. "bone17": {
  1486. "rotate": [
  1487. { "time": 0, "angle": 0, "curve": "stepped" },
  1488. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  1489. { "time": 0.4667, "angle": 0, "curve": "stepped" },
  1490. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  1491. { "time": 0.9, "angle": 0, "curve": "stepped" },
  1492. { "time": 1.1, "angle": 0, "curve": "stepped" },
  1493. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  1494. { "time": 1.5333, "angle": 0, "curve": "stepped" },
  1495. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  1496. { "time": 2, "angle": 0, "curve": "stepped" },
  1497. { "time": 2.2333, "angle": 0, "curve": "stepped" },
  1498. { "time": 2.4333, "angle": 0, "curve": "stepped" },
  1499. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  1500. { "time": 2.9, "angle": 0, "curve": "stepped" },
  1501. { "time": 3.1333, "angle": 0, "curve": "stepped" },
  1502. { "time": 3.3333, "angle": 0, "curve": "stepped" },
  1503. { "time": 3.5667, "angle": 0, "curve": "stepped" },
  1504. { "time": 3.8, "angle": 0, "curve": "stepped" },
  1505. { "time": 4.1667, "angle": 0 }
  1506. ],
  1507. "translate": [
  1508. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1509. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  1510. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  1511. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1512. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  1513. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  1514. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1515. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  1516. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  1517. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1518. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  1519. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  1520. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  1521. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  1522. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  1523. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  1524. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  1525. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  1526. { "time": 4.1667, "x": 0, "y": 0 }
  1527. ],
  1528. "scale": [
  1529. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1530. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  1531. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  1532. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1533. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  1534. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  1535. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1536. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  1537. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1538. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1539. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  1540. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  1541. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  1542. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  1543. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  1544. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  1545. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  1546. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  1547. { "time": 4.1667, "x": 1, "y": 1 }
  1548. ]
  1549. },
  1550. "bone18": {
  1551. "rotate": [
  1552. { "time": 0, "angle": 0 },
  1553. { "time": 0.2667, "angle": -4.95 },
  1554. { "time": 0.4667, "angle": -27.99 },
  1555. { "time": 0.6667, "angle": -41.37 },
  1556. { "time": 3.8, "angle": -27.99 },
  1557. { "time": 4.1667, "angle": 0 }
  1558. ],
  1559. "translate": [
  1560. { "time": 0, "x": 0, "y": 0 },
  1561. { "time": 0.2667, "x": -4.51, "y": 4.97, "curve": "stepped" },
  1562. { "time": 0.4667, "x": -4.51, "y": 4.97 },
  1563. { "time": 0.6667, "x": -4.39, "y": 2.21 },
  1564. { "time": 3.8, "x": -4.51, "y": 4.97 },
  1565. { "time": 4.1667, "x": 0, "y": 0 }
  1566. ],
  1567. "scale": [
  1568. { "time": 0, "x": 1, "y": 1 },
  1569. { "time": 0.2667, "x": 1.03, "y": 1, "curve": "stepped" },
  1570. { "time": 0.4667, "x": 1.03, "y": 1, "curve": "stepped" },
  1571. { "time": 3.8, "x": 1.03, "y": 1 },
  1572. { "time": 4.1667, "x": 1, "y": 1 }
  1573. ]
  1574. },
  1575. "bone19": {
  1576. "rotate": [
  1577. { "time": 0, "angle": -10.22 },
  1578. { "time": 0.2667, "angle": -52.95 },
  1579. { "time": 0.4667, "angle": -63.54 },
  1580. { "time": 0.6667, "angle": 288.28 },
  1581. { "time": 0.9, "angle": -63.54 },
  1582. { "time": 1.1, "angle": 288.28 },
  1583. { "time": 1.3333, "angle": -63.54 },
  1584. { "time": 1.5333, "angle": 307.44 },
  1585. { "time": 1.7667, "angle": -63.54 },
  1586. { "time": 2, "angle": 288.28 },
  1587. { "time": 2.2333, "angle": -63.54 },
  1588. { "time": 2.4333, "angle": 288.28 },
  1589. { "time": 2.6667, "angle": -63.54 },
  1590. { "time": 2.9, "angle": 288.28 },
  1591. { "time": 3.1333, "angle": -63.54 },
  1592. { "time": 3.3333, "angle": 288.28 },
  1593. { "time": 3.5667, "angle": -63.54 },
  1594. { "time": 3.8, "angle": 288.28 },
  1595. { "time": 4.1667, "angle": -10.22 }
  1596. ],
  1597. "translate": [
  1598. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1599. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  1600. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  1601. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1602. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  1603. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  1604. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1605. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  1606. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  1607. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1608. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  1609. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  1610. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  1611. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  1612. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  1613. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  1614. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  1615. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  1616. { "time": 4.1667, "x": 0, "y": 0 }
  1617. ],
  1618. "scale": [
  1619. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1620. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  1621. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  1622. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1623. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  1624. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  1625. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1626. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  1627. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1628. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1629. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  1630. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  1631. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  1632. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  1633. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  1634. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  1635. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  1636. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  1637. { "time": 4.1667, "x": 1, "y": 1 }
  1638. ]
  1639. },
  1640. "bone20": {
  1641. "rotate": [
  1642. { "time": 0, "angle": -6.6 },
  1643. { "time": 0.2667, "angle": -22.14 },
  1644. { "time": 0.4667, "angle": -39.11 },
  1645. { "time": 0.6667, "angle": -42.59 },
  1646. { "time": 0.9, "angle": -9.67 },
  1647. { "time": 1.1, "angle": -42.59 },
  1648. { "time": 1.3333, "angle": -9.67 },
  1649. { "time": 1.5333, "angle": -42.59 },
  1650. { "time": 1.7667, "angle": -9.67 },
  1651. { "time": 2, "angle": -42.59 },
  1652. { "time": 2.2333, "angle": -9.67 },
  1653. { "time": 2.4333, "angle": -42.59 },
  1654. { "time": 2.6667, "angle": -9.67 },
  1655. { "time": 2.9, "angle": -42.59 },
  1656. { "time": 3.1333, "angle": -9.67 },
  1657. { "time": 3.3333, "angle": -42.59 },
  1658. { "time": 3.5667, "angle": -9.67 },
  1659. { "time": 3.8, "angle": -42.59 },
  1660. { "time": 4.1667, "angle": -6.6 }
  1661. ],
  1662. "translate": [
  1663. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1664. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  1665. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  1666. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1667. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  1668. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  1669. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1670. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  1671. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  1672. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1673. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  1674. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  1675. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  1676. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  1677. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  1678. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  1679. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  1680. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  1681. { "time": 4.1667, "x": 0, "y": 0 }
  1682. ],
  1683. "scale": [
  1684. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1685. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  1686. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  1687. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1688. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  1689. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  1690. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1691. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  1692. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1693. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1694. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  1695. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  1696. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  1697. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  1698. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  1699. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  1700. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  1701. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  1702. { "time": 4.1667, "x": 1, "y": 1 }
  1703. ]
  1704. },
  1705. "bone21": {
  1706. "rotate": [
  1707. { "time": 0, "angle": 0, "curve": "stepped" },
  1708. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  1709. { "time": 0.4667, "angle": 0, "curve": "stepped" },
  1710. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  1711. { "time": 0.9, "angle": 0, "curve": "stepped" },
  1712. { "time": 1.1, "angle": 0, "curve": "stepped" },
  1713. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  1714. { "time": 1.5333, "angle": 0, "curve": "stepped" },
  1715. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  1716. { "time": 2, "angle": 0, "curve": "stepped" },
  1717. { "time": 2.2333, "angle": 0, "curve": "stepped" },
  1718. { "time": 2.4333, "angle": 0, "curve": "stepped" },
  1719. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  1720. { "time": 2.9, "angle": 0, "curve": "stepped" },
  1721. { "time": 3.1333, "angle": 0, "curve": "stepped" },
  1722. { "time": 3.3333, "angle": 0, "curve": "stepped" },
  1723. { "time": 3.5667, "angle": 0, "curve": "stepped" },
  1724. { "time": 3.8, "angle": 0, "curve": "stepped" },
  1725. { "time": 4.1667, "angle": 0 }
  1726. ],
  1727. "translate": [
  1728. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1729. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  1730. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  1731. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1732. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  1733. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  1734. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1735. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  1736. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  1737. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1738. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  1739. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  1740. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  1741. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  1742. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  1743. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  1744. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  1745. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  1746. { "time": 4.1667, "x": 0, "y": 0 }
  1747. ],
  1748. "scale": [
  1749. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1750. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  1751. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  1752. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1753. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  1754. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  1755. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1756. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  1757. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1758. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1759. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  1760. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  1761. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  1762. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  1763. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  1764. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  1765. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  1766. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  1767. { "time": 4.1667, "x": 1, "y": 1 }
  1768. ]
  1769. },
  1770. "bone22": {
  1771. "rotate": [
  1772. { "time": 0, "angle": 3.93 },
  1773. { "time": 0.2667, "angle": -2.45, "curve": "stepped" },
  1774. { "time": 0.4667, "angle": -2.45, "curve": "stepped" },
  1775. { "time": 0.6667, "angle": -2.45, "curve": "stepped" },
  1776. { "time": 0.9, "angle": -2.45, "curve": "stepped" },
  1777. { "time": 1.1, "angle": -2.45, "curve": "stepped" },
  1778. { "time": 1.3333, "angle": -2.45, "curve": "stepped" },
  1779. { "time": 1.5333, "angle": -2.45, "curve": "stepped" },
  1780. { "time": 1.7667, "angle": -2.45, "curve": "stepped" },
  1781. { "time": 2, "angle": -2.45, "curve": "stepped" },
  1782. { "time": 2.2333, "angle": -2.45, "curve": "stepped" },
  1783. { "time": 2.4333, "angle": -2.45, "curve": "stepped" },
  1784. { "time": 2.6667, "angle": -2.45, "curve": "stepped" },
  1785. { "time": 2.9, "angle": -2.45, "curve": "stepped" },
  1786. { "time": 3.1333, "angle": -2.45, "curve": "stepped" },
  1787. { "time": 3.3333, "angle": -2.45, "curve": "stepped" },
  1788. { "time": 3.5667, "angle": -2.45, "curve": "stepped" },
  1789. { "time": 3.8, "angle": -2.45 },
  1790. { "time": 4.1667, "angle": 3.93 }
  1791. ],
  1792. "translate": [
  1793. { "time": 0, "x": -0.49, "y": -1.08 },
  1794. { "time": 0.2667, "x": -0.69, "y": 1.59, "curve": "stepped" },
  1795. { "time": 0.4667, "x": -0.69, "y": 1.59, "curve": "stepped" },
  1796. { "time": 0.6667, "x": -0.69, "y": 1.59, "curve": "stepped" },
  1797. { "time": 0.9, "x": -0.69, "y": 1.59, "curve": "stepped" },
  1798. { "time": 1.1, "x": -0.69, "y": 1.59, "curve": "stepped" },
  1799. { "time": 1.3333, "x": -0.69, "y": 1.59, "curve": "stepped" },
  1800. { "time": 1.5333, "x": -0.69, "y": 1.59, "curve": "stepped" },
  1801. { "time": 1.7667, "x": -0.69, "y": 1.59, "curve": "stepped" },
  1802. { "time": 2, "x": -0.69, "y": 1.59, "curve": "stepped" },
  1803. { "time": 2.2333, "x": -0.69, "y": 1.59, "curve": "stepped" },
  1804. { "time": 2.4333, "x": -0.69, "y": 1.59, "curve": "stepped" },
  1805. { "time": 2.6667, "x": -0.69, "y": 1.59, "curve": "stepped" },
  1806. { "time": 2.9, "x": -0.69, "y": 1.59, "curve": "stepped" },
  1807. { "time": 3.1333, "x": -0.69, "y": 1.59, "curve": "stepped" },
  1808. { "time": 3.3333, "x": -0.69, "y": 1.59, "curve": "stepped" },
  1809. { "time": 3.5667, "x": -0.69, "y": 1.59, "curve": "stepped" },
  1810. { "time": 3.8, "x": -0.69, "y": 1.59 },
  1811. { "time": 4.1667, "x": -0.49, "y": -1.08 }
  1812. ],
  1813. "scale": [
  1814. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1815. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  1816. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  1817. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1818. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  1819. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  1820. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1821. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  1822. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1823. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1824. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  1825. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  1826. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  1827. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  1828. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  1829. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  1830. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  1831. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  1832. { "time": 4.1667, "x": 1, "y": 1 }
  1833. ]
  1834. },
  1835. "bone23": {
  1836. "rotate": [
  1837. { "time": 0, "angle": 4.47 },
  1838. { "time": 0.2667, "angle": -46.55 },
  1839. { "time": 0.4667, "angle": -42.92 },
  1840. { "time": 0.6667, "angle": -46.55 },
  1841. { "time": 0.9, "angle": -32.61 },
  1842. { "time": 1.1, "angle": -46.55 },
  1843. { "time": 1.3333, "angle": -32.61 },
  1844. { "time": 1.5333, "angle": -46.55 },
  1845. { "time": 1.7667, "angle": -32.61 },
  1846. { "time": 2, "angle": -46.55 },
  1847. { "time": 2.2333, "angle": -32.61 },
  1848. { "time": 2.4333, "angle": -46.55 },
  1849. { "time": 2.6667, "angle": -32.61 },
  1850. { "time": 2.9, "angle": -46.55 },
  1851. { "time": 3.1333, "angle": -32.61 },
  1852. { "time": 3.3333, "angle": -46.55 },
  1853. { "time": 3.5667, "angle": -32.61 },
  1854. { "time": 3.8, "angle": -46.55 },
  1855. { "time": 4.1667, "angle": 4.47 }
  1856. ],
  1857. "translate": [
  1858. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1859. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  1860. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  1861. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1862. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  1863. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  1864. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1865. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  1866. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  1867. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1868. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  1869. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  1870. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  1871. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  1872. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  1873. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  1874. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  1875. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  1876. { "time": 4.1667, "x": 0, "y": 0 }
  1877. ],
  1878. "scale": [
  1879. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1880. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  1881. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  1882. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1883. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  1884. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  1885. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1886. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  1887. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1888. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1889. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  1890. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  1891. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  1892. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  1893. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  1894. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  1895. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  1896. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  1897. { "time": 4.1667, "x": 1, "y": 1 }
  1898. ]
  1899. },
  1900. "bone24": {
  1901. "rotate": [
  1902. { "time": 0, "angle": 13.83 },
  1903. { "time": 0.2667, "angle": 0 },
  1904. { "time": 0.4667, "angle": -16.02 },
  1905. { "time": 0.6667, "angle": 0 },
  1906. { "time": 0.9, "angle": -16.02 },
  1907. { "time": 1.1, "angle": 0 },
  1908. { "time": 1.3333, "angle": -16.02 },
  1909. { "time": 1.5333, "angle": 0 },
  1910. { "time": 1.7667, "angle": -16.02 },
  1911. { "time": 2, "angle": 0 },
  1912. { "time": 2.2333, "angle": -16.02 },
  1913. { "time": 2.4333, "angle": 0 },
  1914. { "time": 2.6667, "angle": -16.02 },
  1915. { "time": 2.9, "angle": 0 },
  1916. { "time": 3.1333, "angle": -16.02 },
  1917. { "time": 3.3333, "angle": 0 },
  1918. { "time": 3.5667, "angle": -16.02 },
  1919. { "time": 3.8, "angle": 0 },
  1920. { "time": 4.1667, "angle": 13.83 }
  1921. ],
  1922. "translate": [
  1923. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1924. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  1925. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  1926. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1927. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  1928. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  1929. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1930. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  1931. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  1932. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1933. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  1934. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  1935. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  1936. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  1937. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  1938. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  1939. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  1940. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  1941. { "time": 4.1667, "x": 0, "y": 0 }
  1942. ],
  1943. "scale": [
  1944. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1945. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  1946. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  1947. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1948. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  1949. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  1950. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1951. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  1952. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1953. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1954. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  1955. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  1956. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  1957. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  1958. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  1959. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  1960. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  1961. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  1962. { "time": 4.1667, "x": 1, "y": 1 }
  1963. ]
  1964. },
  1965. "bone25": {
  1966. "rotate": [
  1967. { "time": 0, "angle": 0 },
  1968. { "time": 0.2667, "angle": 3.47, "curve": "stepped" },
  1969. { "time": 0.4667, "angle": 3.47, "curve": "stepped" },
  1970. { "time": 0.6667, "angle": 3.47, "curve": "stepped" },
  1971. { "time": 0.9, "angle": 3.47, "curve": "stepped" },
  1972. { "time": 1.1, "angle": 3.47, "curve": "stepped" },
  1973. { "time": 1.3333, "angle": 3.47, "curve": "stepped" },
  1974. { "time": 1.5333, "angle": 3.47, "curve": "stepped" },
  1975. { "time": 1.7667, "angle": 3.47, "curve": "stepped" },
  1976. { "time": 2, "angle": 3.47, "curve": "stepped" },
  1977. { "time": 2.2333, "angle": 3.47, "curve": "stepped" },
  1978. { "time": 2.4333, "angle": 3.47, "curve": "stepped" },
  1979. { "time": 2.6667, "angle": 3.47, "curve": "stepped" },
  1980. { "time": 2.9, "angle": 3.47, "curve": "stepped" },
  1981. { "time": 3.1333, "angle": 3.47, "curve": "stepped" },
  1982. { "time": 3.3333, "angle": 3.47, "curve": "stepped" },
  1983. { "time": 3.5667, "angle": 3.47, "curve": "stepped" },
  1984. { "time": 3.8, "angle": 3.47 },
  1985. { "time": 4.1667, "angle": 0 }
  1986. ],
  1987. "translate": [
  1988. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1989. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  1990. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  1991. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1992. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  1993. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  1994. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1995. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  1996. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  1997. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1998. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  1999. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  2000. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  2001. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  2002. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  2003. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  2004. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  2005. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  2006. { "time": 4.1667, "x": 0, "y": 0 }
  2007. ],
  2008. "scale": [
  2009. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2010. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  2011. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  2012. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2013. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  2014. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  2015. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2016. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  2017. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  2018. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2019. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  2020. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  2021. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  2022. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  2023. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  2024. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  2025. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  2026. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  2027. { "time": 4.1667, "x": 1, "y": 1 }
  2028. ]
  2029. },
  2030. "bone26": {
  2031. "rotate": [
  2032. { "time": 0, "angle": 0, "curve": "stepped" },
  2033. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  2034. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  2035. { "time": 3.8333, "angle": 0, "curve": "stepped" },
  2036. { "time": 3.9333, "angle": 0, "curve": "stepped" },
  2037. { "time": 4.1667, "angle": 0 }
  2038. ],
  2039. "translate": [
  2040. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2041. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2042. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  2043. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  2044. { "time": 3.9333, "x": 0, "y": 0, "curve": "stepped" },
  2045. { "time": 4.1667, "x": 0, "y": 0 }
  2046. ],
  2047. "scale": [
  2048. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2049. { "time": 0.1667, "x": 1, "y": 1 },
  2050. { "time": 0.2667, "x": 0.299, "y": 1, "curve": "stepped" },
  2051. { "time": 3.8333, "x": 0.299, "y": 1 },
  2052. { "time": 3.9333, "x": 1, "y": 1, "curve": "stepped" },
  2053. { "time": 4.1667, "x": 1, "y": 1 }
  2054. ]
  2055. },
  2056. "bone27": {
  2057. "rotate": [
  2058. { "time": 0, "angle": 0, "curve": "stepped" },
  2059. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  2060. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  2061. { "time": 3.8333, "angle": 0, "curve": "stepped" },
  2062. { "time": 3.9333, "angle": 0, "curve": "stepped" },
  2063. { "time": 4.1667, "angle": 0 }
  2064. ],
  2065. "translate": [
  2066. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2067. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2068. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  2069. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  2070. { "time": 3.9333, "x": 0, "y": 0, "curve": "stepped" },
  2071. { "time": 4.1667, "x": 0, "y": 0 }
  2072. ],
  2073. "scale": [
  2074. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2075. { "time": 0.1667, "x": 1, "y": 1 },
  2076. { "time": 0.2667, "x": 0.261, "y": 1, "curve": "stepped" },
  2077. { "time": 3.8333, "x": 0.261, "y": 1 },
  2078. { "time": 3.9333, "x": 1, "y": 1, "curve": "stepped" },
  2079. { "time": 4.1667, "x": 1, "y": 1 }
  2080. ]
  2081. },
  2082. "bone28": {
  2083. "rotate": [
  2084. { "time": 0, "angle": 0, "curve": "stepped" },
  2085. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  2086. { "time": 0.4667, "angle": 0, "curve": "stepped" },
  2087. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  2088. { "time": 0.9, "angle": 0, "curve": "stepped" },
  2089. { "time": 1.1, "angle": 0, "curve": "stepped" },
  2090. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  2091. { "time": 1.5333, "angle": 0, "curve": "stepped" },
  2092. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  2093. { "time": 2, "angle": 0, "curve": "stepped" },
  2094. { "time": 2.2333, "angle": 0, "curve": "stepped" },
  2095. { "time": 2.4333, "angle": 0, "curve": "stepped" },
  2096. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  2097. { "time": 2.9, "angle": 0, "curve": "stepped" },
  2098. { "time": 3.1333, "angle": 0, "curve": "stepped" },
  2099. { "time": 3.3333, "angle": 0, "curve": "stepped" },
  2100. { "time": 3.5667, "angle": 0, "curve": "stepped" },
  2101. { "time": 3.8, "angle": 0, "curve": "stepped" },
  2102. { "time": 4.1667, "angle": 0 }
  2103. ],
  2104. "translate": [
  2105. { "time": 0, "x": -1.17, "y": -0.02 },
  2106. { "time": 0.2667, "x": -1.76, "y": -0.04 },
  2107. { "time": 0.4667, "x": -1.17, "y": -0.02, "curve": "stepped" },
  2108. { "time": 0.6667, "x": -1.17, "y": -0.02, "curve": "stepped" },
  2109. { "time": 0.9, "x": -1.17, "y": -0.02, "curve": "stepped" },
  2110. { "time": 1.1, "x": -1.17, "y": -0.02, "curve": "stepped" },
  2111. { "time": 1.3333, "x": -1.17, "y": -0.02, "curve": "stepped" },
  2112. { "time": 1.5333, "x": -1.17, "y": -0.02, "curve": "stepped" },
  2113. { "time": 1.7667, "x": -1.17, "y": -0.02, "curve": "stepped" },
  2114. { "time": 2, "x": -1.17, "y": -0.02, "curve": "stepped" },
  2115. { "time": 2.2333, "x": -1.17, "y": -0.02, "curve": "stepped" },
  2116. { "time": 2.4333, "x": -1.17, "y": -0.02, "curve": "stepped" },
  2117. { "time": 2.6667, "x": -1.17, "y": -0.02, "curve": "stepped" },
  2118. { "time": 2.9, "x": -1.17, "y": -0.02, "curve": "stepped" },
  2119. { "time": 3.1333, "x": -1.17, "y": -0.02, "curve": "stepped" },
  2120. { "time": 3.3333, "x": -1.17, "y": -0.02, "curve": "stepped" },
  2121. { "time": 3.5667, "x": -1.17, "y": -0.02, "curve": "stepped" },
  2122. { "time": 3.8, "x": -1.17, "y": -0.02, "curve": "stepped" },
  2123. { "time": 4.1667, "x": -1.17, "y": -0.02 }
  2124. ],
  2125. "scale": [
  2126. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2127. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  2128. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  2129. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2130. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  2131. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  2132. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2133. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  2134. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  2135. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2136. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  2137. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  2138. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  2139. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  2140. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  2141. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  2142. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  2143. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  2144. { "time": 4.1667, "x": 1, "y": 1 }
  2145. ]
  2146. },
  2147. "bone29": {
  2148. "rotate": [
  2149. { "time": 0, "angle": 0, "curve": "stepped" },
  2150. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  2151. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  2152. { "time": 0.3667, "angle": 0, "curve": "stepped" },
  2153. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2154. { "time": 0.9, "angle": 0, "curve": "stepped" },
  2155. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  2156. { "time": 1.5333, "angle": 0, "curve": "stepped" },
  2157. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  2158. { "time": 2, "angle": 0, "curve": "stepped" },
  2159. { "time": 2.2333, "angle": 0, "curve": "stepped" },
  2160. { "time": 2.4333, "angle": 0, "curve": "stepped" },
  2161. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  2162. { "time": 2.9, "angle": 0, "curve": "stepped" },
  2163. { "time": 3.1333, "angle": 0, "curve": "stepped" },
  2164. { "time": 3.3333, "angle": 0, "curve": "stepped" },
  2165. { "time": 3.5667, "angle": 0, "curve": "stepped" },
  2166. { "time": 3.8, "angle": 0, "curve": "stepped" },
  2167. { "time": 4.1667, "angle": 0 }
  2168. ],
  2169. "translate": [
  2170. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2171. { "time": 0.1667, "x": 0, "y": 0 },
  2172. { "time": 0.2667, "x": -1.78, "y": -0.04, "curve": "stepped" },
  2173. { "time": 0.3667, "x": -1.78, "y": -0.04 },
  2174. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2175. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  2176. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2177. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  2178. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  2179. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2180. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  2181. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  2182. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  2183. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  2184. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  2185. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  2186. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  2187. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  2188. { "time": 4.1667, "x": 0, "y": 0 }
  2189. ],
  2190. "scale": [
  2191. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2192. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2193. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  2194. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  2195. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2196. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  2197. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2198. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  2199. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  2200. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2201. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  2202. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  2203. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  2204. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  2205. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  2206. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  2207. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  2208. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  2209. { "time": 4.1667, "x": 1, "y": 1 }
  2210. ]
  2211. },
  2212. "bone30": {
  2213. "rotate": [
  2214. { "time": 0, "angle": 0, "curve": "stepped" },
  2215. { "time": 0.2667, "angle": 0 },
  2216. { "time": 0.4667, "angle": 5.41 },
  2217. { "time": 0.6667, "angle": 0 },
  2218. { "time": 0.9, "angle": 5.41 },
  2219. { "time": 1.1, "angle": 0 },
  2220. { "time": 1.3333, "angle": 5.41 },
  2221. { "time": 1.5333, "angle": 0 },
  2222. { "time": 1.7667, "angle": 5.41 },
  2223. { "time": 2, "angle": 0 },
  2224. { "time": 2.2333, "angle": 5.41 },
  2225. { "time": 2.4333, "angle": 0 },
  2226. { "time": 2.6667, "angle": 5.41 },
  2227. { "time": 2.9, "angle": 0 },
  2228. { "time": 3.1333, "angle": 5.41 },
  2229. { "time": 3.3333, "angle": 0 },
  2230. { "time": 3.5667, "angle": 5.41 },
  2231. { "time": 3.8, "angle": 0, "curve": "stepped" },
  2232. { "time": 4.1667, "angle": 0 }
  2233. ],
  2234. "translate": [
  2235. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2236. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  2237. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  2238. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2239. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  2240. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  2241. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2242. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  2243. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  2244. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2245. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  2246. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  2247. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  2248. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  2249. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  2250. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  2251. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  2252. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  2253. { "time": 4.1667, "x": 0, "y": 0 }
  2254. ],
  2255. "scale": [
  2256. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2257. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  2258. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  2259. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2260. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  2261. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  2262. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2263. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  2264. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  2265. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2266. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  2267. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  2268. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  2269. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  2270. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  2271. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  2272. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  2273. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  2274. { "time": 4.1667, "x": 1, "y": 1 }
  2275. ]
  2276. },
  2277. "bone31": {
  2278. "rotate": [
  2279. { "time": 0, "angle": 0 },
  2280. { "time": 0.2667, "angle": -1.93 },
  2281. { "time": 0.4667, "angle": -10.01 },
  2282. { "time": 0.6667, "angle": -1.93 },
  2283. { "time": 0.9, "angle": -10.01 },
  2284. { "time": 1.1, "angle": -1.93 },
  2285. { "time": 1.3333, "angle": -10.01 },
  2286. { "time": 1.5333, "angle": -1.93 },
  2287. { "time": 1.7667, "angle": -10.01 },
  2288. { "time": 2, "angle": -1.93 },
  2289. { "time": 2.2333, "angle": -10.01 },
  2290. { "time": 2.4333, "angle": -1.93 },
  2291. { "time": 2.6667, "angle": -10.01 },
  2292. { "time": 2.9, "angle": -1.93 },
  2293. { "time": 3.1333, "angle": -10.01 },
  2294. { "time": 3.3333, "angle": -1.93 },
  2295. { "time": 3.5667, "angle": -10.01 },
  2296. { "time": 3.8, "angle": -1.93 },
  2297. { "time": 4.1667, "angle": 0 }
  2298. ],
  2299. "translate": [
  2300. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2301. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  2302. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  2303. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2304. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  2305. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  2306. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2307. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  2308. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  2309. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2310. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  2311. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  2312. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  2313. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  2314. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  2315. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  2316. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  2317. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  2318. { "time": 4.1667, "x": 0, "y": 0 }
  2319. ],
  2320. "scale": [
  2321. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2322. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  2323. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  2324. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2325. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  2326. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  2327. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2328. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  2329. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  2330. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2331. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  2332. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  2333. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  2334. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  2335. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  2336. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  2337. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  2338. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  2339. { "time": 4.1667, "x": 1, "y": 1 }
  2340. ]
  2341. },
  2342. "bone32": {
  2343. "rotate": [
  2344. { "time": 0, "angle": 0 },
  2345. { "time": 0.2667, "angle": -17.39, "curve": "stepped" },
  2346. { "time": 0.4667, "angle": -17.39, "curve": "stepped" },
  2347. { "time": 0.6667, "angle": -17.39, "curve": "stepped" },
  2348. { "time": 0.9, "angle": -17.39, "curve": "stepped" },
  2349. { "time": 1.1, "angle": -17.39, "curve": "stepped" },
  2350. { "time": 1.3333, "angle": -17.39, "curve": "stepped" },
  2351. { "time": 1.5333, "angle": -17.39, "curve": "stepped" },
  2352. { "time": 1.7667, "angle": -17.39, "curve": "stepped" },
  2353. { "time": 2, "angle": -17.39, "curve": "stepped" },
  2354. { "time": 2.2333, "angle": -17.39, "curve": "stepped" },
  2355. { "time": 2.4333, "angle": -17.39, "curve": "stepped" },
  2356. { "time": 2.6667, "angle": -17.39, "curve": "stepped" },
  2357. { "time": 2.9, "angle": -17.39, "curve": "stepped" },
  2358. { "time": 3.1333, "angle": -17.39, "curve": "stepped" },
  2359. { "time": 3.3333, "angle": -17.39, "curve": "stepped" },
  2360. { "time": 3.5667, "angle": -17.39, "curve": "stepped" },
  2361. { "time": 3.8, "angle": -17.39 },
  2362. { "time": 4.1667, "angle": 0 }
  2363. ],
  2364. "translate": [
  2365. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2366. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  2367. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  2368. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2369. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  2370. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  2371. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2372. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  2373. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  2374. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2375. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  2376. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  2377. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  2378. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  2379. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  2380. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  2381. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  2382. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  2383. { "time": 4.1667, "x": 0, "y": 0 }
  2384. ],
  2385. "scale": [
  2386. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2387. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  2388. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  2389. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2390. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  2391. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  2392. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2393. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  2394. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  2395. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2396. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  2397. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  2398. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  2399. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  2400. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  2401. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  2402. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  2403. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  2404. { "time": 4.1667, "x": 1, "y": 1 }
  2405. ]
  2406. },
  2407. "bone33": {
  2408. "rotate": [
  2409. { "time": 0, "angle": 0 },
  2410. { "time": 0.2667, "angle": -4.1 },
  2411. { "time": 0.4667, "angle": -5.75 },
  2412. { "time": 0.6667, "angle": -4.1 },
  2413. { "time": 0.9, "angle": -5.75 },
  2414. { "time": 1.1, "angle": -4.1 },
  2415. { "time": 1.3333, "angle": -5.75 },
  2416. { "time": 1.5333, "angle": -4.1 },
  2417. { "time": 1.7667, "angle": -5.75 },
  2418. { "time": 2, "angle": -4.1 },
  2419. { "time": 2.2333, "angle": -5.75 },
  2420. { "time": 2.4333, "angle": -4.1 },
  2421. { "time": 2.6667, "angle": -5.75 },
  2422. { "time": 2.9, "angle": -4.1 },
  2423. { "time": 3.1333, "angle": -5.75 },
  2424. { "time": 3.3333, "angle": -4.1 },
  2425. { "time": 3.5667, "angle": -5.75 },
  2426. { "time": 3.8, "angle": -4.1 },
  2427. { "time": 4.1667, "angle": 0 }
  2428. ],
  2429. "translate": [
  2430. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2431. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  2432. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  2433. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2434. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  2435. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  2436. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2437. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  2438. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  2439. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2440. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  2441. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  2442. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  2443. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  2444. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  2445. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  2446. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  2447. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  2448. { "time": 4.1667, "x": 0, "y": 0 }
  2449. ],
  2450. "scale": [
  2451. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2452. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  2453. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  2454. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2455. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  2456. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  2457. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2458. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  2459. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  2460. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2461. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  2462. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  2463. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  2464. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  2465. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  2466. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  2467. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  2468. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  2469. { "time": 4.1667, "x": 1, "y": 1 }
  2470. ]
  2471. },
  2472. "bone34": {
  2473. "rotate": [
  2474. { "time": 0, "angle": 0 },
  2475. { "time": 0.2667, "angle": -4.44 },
  2476. { "time": 0.4667, "angle": -13.89 },
  2477. { "time": 0.6667, "angle": -4.44 },
  2478. { "time": 0.9, "angle": -13.89 },
  2479. { "time": 1.1, "angle": -4.44 },
  2480. { "time": 1.3333, "angle": -13.89 },
  2481. { "time": 1.5333, "angle": -4.44 },
  2482. { "time": 1.7667, "angle": -13.89 },
  2483. { "time": 2, "angle": -4.44 },
  2484. { "time": 2.2333, "angle": -13.89 },
  2485. { "time": 2.4333, "angle": -4.44 },
  2486. { "time": 2.6667, "angle": -13.89 },
  2487. { "time": 2.9, "angle": -4.44 },
  2488. { "time": 3.1333, "angle": -13.89 },
  2489. { "time": 3.3333, "angle": -4.44 },
  2490. { "time": 3.5667, "angle": -13.89 },
  2491. { "time": 3.8, "angle": -4.44 },
  2492. { "time": 4.1667, "angle": 0 }
  2493. ],
  2494. "translate": [
  2495. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2496. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  2497. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  2498. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2499. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  2500. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  2501. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2502. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  2503. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  2504. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2505. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  2506. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  2507. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  2508. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  2509. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  2510. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  2511. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  2512. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  2513. { "time": 4.1667, "x": 0, "y": 0 }
  2514. ],
  2515. "scale": [
  2516. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2517. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  2518. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  2519. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2520. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  2521. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  2522. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2523. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  2524. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  2525. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2526. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  2527. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  2528. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  2529. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  2530. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  2531. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  2532. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  2533. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  2534. { "time": 4.1667, "x": 1, "y": 1 }
  2535. ]
  2536. },
  2537. "bone35": {
  2538. "rotate": [
  2539. { "time": 0, "angle": 0 },
  2540. { "time": 0.2667, "angle": 3.41 },
  2541. { "time": 0.4667, "angle": 11.64 },
  2542. { "time": 0.6667, "angle": 3.41 },
  2543. { "time": 0.9, "angle": 11.64 },
  2544. { "time": 1.1, "angle": 3.41 },
  2545. { "time": 1.3333, "angle": 11.64 },
  2546. { "time": 1.5333, "angle": 3.41 },
  2547. { "time": 1.7667, "angle": 11.64 },
  2548. { "time": 2, "angle": 3.41 },
  2549. { "time": 2.2333, "angle": 11.64 },
  2550. { "time": 2.4333, "angle": 3.41 },
  2551. { "time": 2.6667, "angle": 11.64 },
  2552. { "time": 2.9, "angle": 3.41 },
  2553. { "time": 3.1333, "angle": 11.64 },
  2554. { "time": 3.3333, "angle": 3.41 },
  2555. { "time": 3.5667, "angle": 11.64 },
  2556. { "time": 3.8, "angle": 3.41 },
  2557. { "time": 4.1667, "angle": 0 }
  2558. ],
  2559. "translate": [
  2560. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2561. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  2562. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  2563. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2564. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  2565. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  2566. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2567. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  2568. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  2569. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2570. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  2571. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  2572. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  2573. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  2574. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  2575. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  2576. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  2577. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  2578. { "time": 4.1667, "x": 0, "y": 0 }
  2579. ],
  2580. "scale": [
  2581. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2582. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  2583. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  2584. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2585. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  2586. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  2587. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2588. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  2589. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  2590. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2591. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  2592. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  2593. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  2594. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  2595. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  2596. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  2597. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  2598. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  2599. { "time": 4.1667, "x": 1, "y": 1 }
  2600. ]
  2601. },
  2602. "bone36": {
  2603. "rotate": [
  2604. { "time": 0, "angle": 0, "curve": "stepped" },
  2605. { "time": 0.2667, "angle": 0 },
  2606. { "time": 0.4667, "angle": -12.08 },
  2607. { "time": 0.6667, "angle": 0 },
  2608. { "time": 0.9, "angle": -12.08 },
  2609. { "time": 1.1, "angle": 0 },
  2610. { "time": 1.3333, "angle": -12.08 },
  2611. { "time": 1.5333, "angle": 0 },
  2612. { "time": 1.7667, "angle": -12.08 },
  2613. { "time": 2, "angle": 0 },
  2614. { "time": 2.2333, "angle": -12.08 },
  2615. { "time": 2.4333, "angle": 0 },
  2616. { "time": 2.6667, "angle": -12.08 },
  2617. { "time": 2.9, "angle": 0 },
  2618. { "time": 3.1333, "angle": -12.08 },
  2619. { "time": 3.3333, "angle": 0 },
  2620. { "time": 3.5667, "angle": -12.08 },
  2621. { "time": 3.8, "angle": 0, "curve": "stepped" },
  2622. { "time": 4.1667, "angle": 0 }
  2623. ],
  2624. "translate": [
  2625. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2626. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  2627. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  2628. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2629. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  2630. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  2631. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2632. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  2633. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  2634. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2635. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  2636. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  2637. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  2638. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  2639. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  2640. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  2641. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  2642. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  2643. { "time": 4.1667, "x": 0, "y": 0 }
  2644. ],
  2645. "scale": [
  2646. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2647. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  2648. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  2649. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2650. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  2651. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  2652. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2653. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  2654. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  2655. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2656. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  2657. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  2658. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  2659. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  2660. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  2661. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  2662. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  2663. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  2664. { "time": 4.1667, "x": 1, "y": 1 }
  2665. ]
  2666. },
  2667. "bone37": {
  2668. "rotate": [
  2669. { "time": 0, "angle": 0 },
  2670. { "time": 0.2667, "angle": -13.78 },
  2671. { "time": 0.4667, "angle": -23.43 },
  2672. { "time": 0.6667, "angle": -13.78 },
  2673. { "time": 0.9, "angle": -23.43 },
  2674. { "time": 1.1, "angle": -13.78 },
  2675. { "time": 1.3333, "angle": -23.43 },
  2676. { "time": 1.5333, "angle": -13.78 },
  2677. { "time": 1.7667, "angle": -23.43 },
  2678. { "time": 2, "angle": -13.78 },
  2679. { "time": 2.2333, "angle": -23.43 },
  2680. { "time": 2.4333, "angle": -13.78 },
  2681. { "time": 2.6667, "angle": -23.43 },
  2682. { "time": 2.9, "angle": -13.78 },
  2683. { "time": 3.1333, "angle": -23.43 },
  2684. { "time": 3.3333, "angle": -13.78 },
  2685. { "time": 3.5667, "angle": -23.43 },
  2686. { "time": 3.8, "angle": -13.78 },
  2687. { "time": 4.1667, "angle": 0 }
  2688. ],
  2689. "translate": [
  2690. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2691. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  2692. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  2693. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2694. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  2695. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  2696. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2697. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  2698. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  2699. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2700. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  2701. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  2702. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  2703. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  2704. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  2705. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  2706. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  2707. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  2708. { "time": 4.1667, "x": 0, "y": 0 }
  2709. ],
  2710. "scale": [
  2711. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2712. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  2713. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  2714. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2715. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  2716. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  2717. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2718. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  2719. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  2720. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2721. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  2722. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  2723. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  2724. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  2725. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  2726. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  2727. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  2728. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  2729. { "time": 4.1667, "x": 1, "y": 1 }
  2730. ]
  2731. },
  2732. "bone38": {
  2733. "rotate": [
  2734. { "time": 0, "angle": 0 },
  2735. { "time": 0.2667, "angle": -12.53, "curve": "stepped" },
  2736. { "time": 0.4667, "angle": -12.53, "curve": "stepped" },
  2737. { "time": 0.6667, "angle": -12.53, "curve": "stepped" },
  2738. { "time": 0.9, "angle": -12.53, "curve": "stepped" },
  2739. { "time": 1.1, "angle": -12.53, "curve": "stepped" },
  2740. { "time": 1.3333, "angle": -12.53, "curve": "stepped" },
  2741. { "time": 1.5333, "angle": -12.53, "curve": "stepped" },
  2742. { "time": 1.7667, "angle": -12.53, "curve": "stepped" },
  2743. { "time": 2, "angle": -12.53, "curve": "stepped" },
  2744. { "time": 2.2333, "angle": -12.53, "curve": "stepped" },
  2745. { "time": 2.4333, "angle": -12.53, "curve": "stepped" },
  2746. { "time": 2.6667, "angle": -12.53, "curve": "stepped" },
  2747. { "time": 2.9, "angle": -12.53, "curve": "stepped" },
  2748. { "time": 3.1333, "angle": -12.53, "curve": "stepped" },
  2749. { "time": 3.3333, "angle": -12.53, "curve": "stepped" },
  2750. { "time": 3.5667, "angle": -12.53, "curve": "stepped" },
  2751. { "time": 3.8, "angle": -12.53 },
  2752. { "time": 4.1667, "angle": 0 }
  2753. ],
  2754. "translate": [
  2755. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2756. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  2757. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  2758. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2759. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  2760. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  2761. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2762. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  2763. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  2764. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2765. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  2766. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  2767. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  2768. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  2769. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  2770. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  2771. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  2772. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  2773. { "time": 4.1667, "x": 0, "y": 0 }
  2774. ],
  2775. "scale": [
  2776. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2777. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  2778. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  2779. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2780. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  2781. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  2782. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2783. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  2784. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  2785. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2786. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  2787. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  2788. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  2789. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  2790. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  2791. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  2792. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  2793. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  2794. { "time": 4.1667, "x": 1, "y": 1 }
  2795. ]
  2796. },
  2797. "bone39": {
  2798. "rotate": [
  2799. { "time": 0, "angle": 0, "curve": "stepped" },
  2800. { "time": 0.2667, "angle": 0 },
  2801. { "time": 0.4667, "angle": 4.8 },
  2802. { "time": 0.6667, "angle": 0 },
  2803. { "time": 0.9, "angle": 4.8 },
  2804. { "time": 1.1, "angle": 0 },
  2805. { "time": 1.3333, "angle": 4.8 },
  2806. { "time": 1.5333, "angle": 0 },
  2807. { "time": 1.7667, "angle": 4.8 },
  2808. { "time": 2, "angle": 0 },
  2809. { "time": 2.2333, "angle": 4.8 },
  2810. { "time": 2.4333, "angle": 0 },
  2811. { "time": 2.6667, "angle": 4.8 },
  2812. { "time": 2.9, "angle": 0 },
  2813. { "time": 3.1333, "angle": 4.8 },
  2814. { "time": 3.3333, "angle": 0 },
  2815. { "time": 3.5667, "angle": 4.8 },
  2816. { "time": 3.8, "angle": 0, "curve": "stepped" },
  2817. { "time": 4.1667, "angle": 0 }
  2818. ],
  2819. "translate": [
  2820. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2821. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  2822. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  2823. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2824. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  2825. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  2826. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2827. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  2828. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  2829. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2830. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  2831. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  2832. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  2833. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  2834. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  2835. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  2836. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  2837. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  2838. { "time": 4.1667, "x": 0, "y": 0 }
  2839. ],
  2840. "scale": [
  2841. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2842. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  2843. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  2844. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2845. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  2846. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  2847. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2848. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  2849. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  2850. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2851. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  2852. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  2853. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  2854. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  2855. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  2856. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  2857. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  2858. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  2859. { "time": 4.1667, "x": 1, "y": 1 }
  2860. ]
  2861. },
  2862. "bone40": {
  2863. "rotate": [
  2864. { "time": 0, "angle": 0 },
  2865. { "time": 0.2667, "angle": 3.02 },
  2866. { "time": 0.4667, "angle": 10.95 },
  2867. { "time": 0.6667, "angle": 3.02 },
  2868. { "time": 0.9, "angle": 10.95 },
  2869. { "time": 1.1, "angle": 3.02 },
  2870. { "time": 1.3333, "angle": 10.95 },
  2871. { "time": 1.5333, "angle": 3.02 },
  2872. { "time": 1.7667, "angle": 10.95 },
  2873. { "time": 2, "angle": 3.02 },
  2874. { "time": 2.2333, "angle": 10.95 },
  2875. { "time": 2.4333, "angle": 3.02 },
  2876. { "time": 2.6667, "angle": 10.95 },
  2877. { "time": 2.9, "angle": 3.02 },
  2878. { "time": 3.1333, "angle": 10.95 },
  2879. { "time": 3.3333, "angle": 3.02 },
  2880. { "time": 3.5667, "angle": 10.95 },
  2881. { "time": 3.8, "angle": 3.02 },
  2882. { "time": 4.1667, "angle": 0 }
  2883. ],
  2884. "translate": [
  2885. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2886. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  2887. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  2888. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2889. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  2890. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  2891. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2892. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  2893. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  2894. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2895. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  2896. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  2897. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  2898. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  2899. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  2900. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  2901. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  2902. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  2903. { "time": 4.1667, "x": 0, "y": 0 }
  2904. ],
  2905. "scale": [
  2906. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2907. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  2908. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  2909. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2910. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  2911. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  2912. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2913. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  2914. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  2915. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2916. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  2917. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  2918. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  2919. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  2920. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  2921. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  2922. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  2923. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  2924. { "time": 4.1667, "x": 1, "y": 1 }
  2925. ]
  2926. },
  2927. "bone41": {
  2928. "rotate": [
  2929. { "time": 0, "angle": 0 },
  2930. { "time": 0.2667, "angle": 11.53 },
  2931. { "time": 0.4667, "angle": 2.79 },
  2932. { "time": 0.6667, "angle": 11.53 },
  2933. { "time": 0.9, "angle": 2.79 },
  2934. { "time": 1.1, "angle": 11.53 },
  2935. { "time": 1.3333, "angle": 2.79 },
  2936. { "time": 1.5333, "angle": 11.53 },
  2937. { "time": 1.7667, "angle": 2.79 },
  2938. { "time": 2, "angle": 11.53 },
  2939. { "time": 2.2333, "angle": 2.79 },
  2940. { "time": 2.4333, "angle": 11.53 },
  2941. { "time": 2.6667, "angle": 2.79 },
  2942. { "time": 2.9, "angle": 11.53 },
  2943. { "time": 3.1333, "angle": 2.79 },
  2944. { "time": 3.3333, "angle": 11.53 },
  2945. { "time": 3.5667, "angle": 2.79 },
  2946. { "time": 3.8, "angle": 11.53 },
  2947. { "time": 4.1667, "angle": 0 }
  2948. ],
  2949. "translate": [
  2950. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2951. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  2952. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  2953. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2954. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  2955. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  2956. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2957. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  2958. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  2959. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2960. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  2961. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  2962. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  2963. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  2964. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  2965. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  2966. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  2967. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  2968. { "time": 4.1667, "x": 0, "y": 0 }
  2969. ],
  2970. "scale": [
  2971. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2972. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  2973. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  2974. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2975. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  2976. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  2977. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2978. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  2979. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  2980. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2981. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  2982. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  2983. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  2984. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  2985. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  2986. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  2987. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  2988. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  2989. { "time": 4.1667, "x": 1, "y": 1 }
  2990. ]
  2991. },
  2992. "bone45": {
  2993. "rotate": [
  2994. { "time": 0, "angle": 0 },
  2995. { "time": 0.2667, "angle": -9.75 },
  2996. { "time": 0.4667, "angle": -13.34 },
  2997. { "time": 0.6667, "angle": -9.75 },
  2998. { "time": 0.9, "angle": -13.34 },
  2999. { "time": 1.1, "angle": -9.75 },
  3000. { "time": 1.3333, "angle": -13.34 },
  3001. { "time": 1.5333, "angle": -9.75 },
  3002. { "time": 1.7667, "angle": -13.34 },
  3003. { "time": 2, "angle": -9.75 },
  3004. { "time": 2.2333, "angle": -13.34 },
  3005. { "time": 2.4333, "angle": -9.75 },
  3006. { "time": 2.6667, "angle": -13.34 },
  3007. { "time": 2.9, "angle": -9.75 },
  3008. { "time": 3.1333, "angle": -13.34 },
  3009. { "time": 3.3333, "angle": -9.75 },
  3010. { "time": 3.5667, "angle": -13.34 },
  3011. { "time": 3.8, "angle": -9.75 },
  3012. { "time": 4.1667, "angle": 0 }
  3013. ],
  3014. "translate": [
  3015. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3016. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  3017. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  3018. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3019. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  3020. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  3021. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3022. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  3023. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  3024. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  3025. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  3026. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  3027. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  3028. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  3029. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  3030. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  3031. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  3032. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  3033. { "time": 4.1667, "x": 0, "y": 0 }
  3034. ],
  3035. "scale": [
  3036. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3037. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  3038. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  3039. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3040. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  3041. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  3042. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3043. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  3044. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  3045. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  3046. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  3047. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  3048. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  3049. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  3050. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  3051. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  3052. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  3053. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  3054. { "time": 4.1667, "x": 1, "y": 1 }
  3055. ]
  3056. },
  3057. "bone46": {
  3058. "rotate": [
  3059. { "time": 0, "angle": 0 },
  3060. { "time": 0.2667, "angle": 6.19, "curve": "stepped" },
  3061. { "time": 0.4667, "angle": 6.19, "curve": "stepped" },
  3062. { "time": 0.6667, "angle": 6.19, "curve": "stepped" },
  3063. { "time": 0.9, "angle": 6.19, "curve": "stepped" },
  3064. { "time": 1.1, "angle": 6.19, "curve": "stepped" },
  3065. { "time": 1.3333, "angle": 6.19, "curve": "stepped" },
  3066. { "time": 1.5333, "angle": 6.19, "curve": "stepped" },
  3067. { "time": 1.7667, "angle": 6.19, "curve": "stepped" },
  3068. { "time": 2, "angle": 6.19, "curve": "stepped" },
  3069. { "time": 2.2333, "angle": 6.19, "curve": "stepped" },
  3070. { "time": 2.4333, "angle": 6.19, "curve": "stepped" },
  3071. { "time": 2.6667, "angle": 6.19, "curve": "stepped" },
  3072. { "time": 2.9, "angle": 6.19, "curve": "stepped" },
  3073. { "time": 3.1333, "angle": 6.19, "curve": "stepped" },
  3074. { "time": 3.3333, "angle": 6.19, "curve": "stepped" },
  3075. { "time": 3.5667, "angle": 6.19, "curve": "stepped" },
  3076. { "time": 3.8, "angle": 6.19 },
  3077. { "time": 4.1667, "angle": 0 }
  3078. ],
  3079. "translate": [
  3080. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3081. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  3082. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  3083. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3084. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  3085. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  3086. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3087. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  3088. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  3089. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  3090. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  3091. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  3092. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  3093. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  3094. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  3095. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  3096. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  3097. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  3098. { "time": 4.1667, "x": 0, "y": 0 }
  3099. ],
  3100. "scale": [
  3101. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3102. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  3103. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  3104. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3105. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  3106. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  3107. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3108. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  3109. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  3110. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  3111. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  3112. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  3113. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  3114. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  3115. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  3116. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  3117. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  3118. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  3119. { "time": 4.1667, "x": 1, "y": 1 }
  3120. ]
  3121. },
  3122. "bone47": {
  3123. "rotate": [
  3124. { "time": 0, "angle": 0 },
  3125. { "time": 0.2667, "angle": 9.54 },
  3126. { "time": 0.4667, "angle": -0.76 },
  3127. { "time": 0.6667, "angle": 9.54 },
  3128. { "time": 0.9, "angle": -0.76 },
  3129. { "time": 1.1, "angle": 9.54 },
  3130. { "time": 1.3333, "angle": -0.76 },
  3131. { "time": 1.5333, "angle": 9.54 },
  3132. { "time": 1.7667, "angle": -0.76 },
  3133. { "time": 2, "angle": 9.54 },
  3134. { "time": 2.2333, "angle": -0.76 },
  3135. { "time": 2.4333, "angle": 9.54 },
  3136. { "time": 2.6667, "angle": -0.76 },
  3137. { "time": 2.9, "angle": 9.54 },
  3138. { "time": 3.1333, "angle": -0.76 },
  3139. { "time": 3.3333, "angle": 9.54 },
  3140. { "time": 3.5667, "angle": -0.76 },
  3141. { "time": 3.8, "angle": 9.54 },
  3142. { "time": 4.1667, "angle": 0 }
  3143. ],
  3144. "translate": [
  3145. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3146. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  3147. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  3148. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3149. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  3150. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  3151. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3152. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  3153. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  3154. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  3155. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  3156. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  3157. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  3158. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  3159. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  3160. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  3161. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  3162. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  3163. { "time": 4.1667, "x": 0, "y": 0 }
  3164. ],
  3165. "scale": [
  3166. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3167. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  3168. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  3169. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3170. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  3171. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  3172. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3173. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  3174. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  3175. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  3176. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  3177. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  3178. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  3179. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  3180. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  3181. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  3182. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  3183. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  3184. { "time": 4.1667, "x": 1, "y": 1 }
  3185. ]
  3186. },
  3187. "bone48": {
  3188. "rotate": [
  3189. { "time": 0, "angle": 0 },
  3190. { "time": 0.2667, "angle": -2.53 },
  3191. { "time": 0.4667, "angle": -5.6 },
  3192. { "time": 0.6667, "angle": -2.53 },
  3193. { "time": 0.9, "angle": -5.6 },
  3194. { "time": 1.1, "angle": -2.53 },
  3195. { "time": 1.3333, "angle": -5.6 },
  3196. { "time": 1.5333, "angle": -2.53 },
  3197. { "time": 1.7667, "angle": -5.6 },
  3198. { "time": 2, "angle": -2.53 },
  3199. { "time": 2.2333, "angle": -5.6 },
  3200. { "time": 2.4333, "angle": -2.53 },
  3201. { "time": 2.6667, "angle": -5.6 },
  3202. { "time": 2.9, "angle": -2.53 },
  3203. { "time": 3.1333, "angle": -5.6 },
  3204. { "time": 3.3333, "angle": -2.53 },
  3205. { "time": 3.5667, "angle": -5.6 },
  3206. { "time": 3.8, "angle": -2.53 },
  3207. { "time": 4.1667, "angle": 0 }
  3208. ],
  3209. "translate": [
  3210. { "time": 0, "x": 0, "y": 0 },
  3211. { "time": 0.2667, "x": 5.01, "y": 0.35 },
  3212. { "time": 0.4667, "x": 4.13, "y": -2.1 },
  3213. { "time": 0.6667, "x": 5.01, "y": 0.35 },
  3214. { "time": 0.9, "x": 4.13, "y": -2.1 },
  3215. { "time": 1.1, "x": 5.01, "y": 0.35 },
  3216. { "time": 1.3333, "x": 4.13, "y": -2.1 },
  3217. { "time": 1.5333, "x": 5.01, "y": 0.35 },
  3218. { "time": 1.7667, "x": 4.13, "y": -2.1 },
  3219. { "time": 2, "x": 5.01, "y": 0.35 },
  3220. { "time": 2.2333, "x": 4.13, "y": -2.1 },
  3221. { "time": 2.4333, "x": 5.01, "y": 0.35 },
  3222. { "time": 2.6667, "x": 4.13, "y": -2.1 },
  3223. { "time": 2.9, "x": 5.01, "y": 0.35 },
  3224. { "time": 3.1333, "x": 4.13, "y": -2.1 },
  3225. { "time": 3.3333, "x": 5.01, "y": 0.35 },
  3226. { "time": 3.5667, "x": 4.13, "y": -2.1 },
  3227. { "time": 3.8, "x": 5.01, "y": 0.35 },
  3228. { "time": 4.1667, "x": 0, "y": 0 }
  3229. ],
  3230. "scale": [
  3231. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3232. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  3233. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  3234. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3235. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  3236. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  3237. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3238. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  3239. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  3240. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  3241. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  3242. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  3243. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  3244. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  3245. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  3246. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  3247. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  3248. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  3249. { "time": 4.1667, "x": 1, "y": 1 }
  3250. ]
  3251. },
  3252. "bone49": {
  3253. "rotate": [
  3254. { "time": 0, "angle": 0 },
  3255. { "time": 0.2667, "angle": -6.21 },
  3256. { "time": 0.4667, "angle": -12.44 },
  3257. { "time": 0.6667, "angle": -6.21 },
  3258. { "time": 0.9, "angle": -12.44 },
  3259. { "time": 1.1, "angle": -6.21 },
  3260. { "time": 1.3333, "angle": -12.44 },
  3261. { "time": 1.5333, "angle": -6.21 },
  3262. { "time": 1.7667, "angle": -12.44 },
  3263. { "time": 2, "angle": -6.21 },
  3264. { "time": 2.2333, "angle": -12.44 },
  3265. { "time": 2.4333, "angle": -6.21 },
  3266. { "time": 2.6667, "angle": -12.44 },
  3267. { "time": 2.9, "angle": -6.21 },
  3268. { "time": 3.1333, "angle": -12.44 },
  3269. { "time": 3.3333, "angle": -6.21 },
  3270. { "time": 3.5667, "angle": -12.44 },
  3271. { "time": 3.8, "angle": -6.21 },
  3272. { "time": 4.1667, "angle": 0 }
  3273. ],
  3274. "translate": [
  3275. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3276. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  3277. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  3278. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3279. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  3280. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  3281. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3282. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  3283. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  3284. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  3285. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  3286. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  3287. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  3288. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  3289. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  3290. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  3291. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  3292. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  3293. { "time": 4.1667, "x": 0, "y": 0 }
  3294. ],
  3295. "scale": [
  3296. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3297. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  3298. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  3299. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3300. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  3301. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  3302. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3303. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  3304. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  3305. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  3306. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  3307. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  3308. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  3309. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  3310. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  3311. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  3312. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  3313. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  3314. { "time": 4.1667, "x": 1, "y": 1 }
  3315. ]
  3316. },
  3317. "bone50": {
  3318. "rotate": [
  3319. { "time": 0, "angle": 0 },
  3320. { "time": 0.2667, "angle": -10, "curve": "stepped" },
  3321. { "time": 0.4667, "angle": -10, "curve": "stepped" },
  3322. { "time": 0.6667, "angle": -10, "curve": "stepped" },
  3323. { "time": 0.9, "angle": -10, "curve": "stepped" },
  3324. { "time": 1.1, "angle": -10, "curve": "stepped" },
  3325. { "time": 1.3333, "angle": -10, "curve": "stepped" },
  3326. { "time": 1.5333, "angle": -10, "curve": "stepped" },
  3327. { "time": 1.7667, "angle": -10, "curve": "stepped" },
  3328. { "time": 2, "angle": -10, "curve": "stepped" },
  3329. { "time": 2.2333, "angle": -10, "curve": "stepped" },
  3330. { "time": 2.4333, "angle": -10, "curve": "stepped" },
  3331. { "time": 2.6667, "angle": -10, "curve": "stepped" },
  3332. { "time": 2.9, "angle": -10, "curve": "stepped" },
  3333. { "time": 3.1333, "angle": -10, "curve": "stepped" },
  3334. { "time": 3.3333, "angle": -10, "curve": "stepped" },
  3335. { "time": 3.5667, "angle": -10, "curve": "stepped" },
  3336. { "time": 3.8, "angle": -10 },
  3337. { "time": 4.1667, "angle": 0 }
  3338. ],
  3339. "translate": [
  3340. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3341. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  3342. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  3343. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3344. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  3345. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  3346. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3347. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  3348. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  3349. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  3350. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  3351. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  3352. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  3353. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  3354. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  3355. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  3356. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  3357. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  3358. { "time": 4.1667, "x": 0, "y": 0 }
  3359. ],
  3360. "scale": [
  3361. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3362. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  3363. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  3364. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3365. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  3366. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  3367. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3368. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  3369. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  3370. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  3371. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  3372. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  3373. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  3374. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  3375. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  3376. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  3377. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  3378. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  3379. { "time": 4.1667, "x": 1, "y": 1 }
  3380. ]
  3381. },
  3382. "bone51": {
  3383. "rotate": [
  3384. { "time": 0, "angle": -10.65 },
  3385. { "time": 0.2667, "angle": 14.57 },
  3386. { "time": 0.4667, "angle": -14.15 },
  3387. { "time": 0.6667, "angle": 14.57 },
  3388. { "time": 0.9, "angle": -14.15 },
  3389. { "time": 1.1, "angle": 14.57 },
  3390. { "time": 1.3333, "angle": -14.15 },
  3391. { "time": 1.5333, "angle": 14.57 },
  3392. { "time": 1.7667, "angle": -14.15 },
  3393. { "time": 2, "angle": 14.57 },
  3394. { "time": 2.2333, "angle": -14.15 },
  3395. { "time": 2.4333, "angle": 14.57 },
  3396. { "time": 2.6667, "angle": -14.15 },
  3397. { "time": 2.9, "angle": 14.57 },
  3398. { "time": 3.1333, "angle": -14.15 },
  3399. { "time": 3.3333, "angle": 14.57 },
  3400. { "time": 3.5667, "angle": -14.15 },
  3401. { "time": 3.8, "angle": 14.57 },
  3402. { "time": 4.1667, "angle": -10.65 }
  3403. ],
  3404. "translate": [
  3405. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3406. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  3407. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  3408. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3409. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  3410. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  3411. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3412. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  3413. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  3414. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  3415. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  3416. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  3417. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  3418. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  3419. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  3420. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  3421. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  3422. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  3423. { "time": 4.1667, "x": 0, "y": 0 }
  3424. ],
  3425. "scale": [
  3426. { "time": 0, "x": 1, "y": 1 },
  3427. { "time": 0.2667, "x": 1.03, "y": 1, "curve": "stepped" },
  3428. { "time": 0.4667, "x": 1.03, "y": 1, "curve": "stepped" },
  3429. { "time": 0.6667, "x": 1.03, "y": 1, "curve": "stepped" },
  3430. { "time": 0.9, "x": 1.03, "y": 1, "curve": "stepped" },
  3431. { "time": 1.1, "x": 1.03, "y": 1, "curve": "stepped" },
  3432. { "time": 1.3333, "x": 1.03, "y": 1, "curve": "stepped" },
  3433. { "time": 1.5333, "x": 1.03, "y": 1, "curve": "stepped" },
  3434. { "time": 1.7667, "x": 1.03, "y": 1, "curve": "stepped" },
  3435. { "time": 2, "x": 1.03, "y": 1, "curve": "stepped" },
  3436. { "time": 2.2333, "x": 1.03, "y": 1, "curve": "stepped" },
  3437. { "time": 2.4333, "x": 1.03, "y": 1, "curve": "stepped" },
  3438. { "time": 2.6667, "x": 1.03, "y": 1, "curve": "stepped" },
  3439. { "time": 2.9, "x": 1.03, "y": 1, "curve": "stepped" },
  3440. { "time": 3.1333, "x": 1.03, "y": 1, "curve": "stepped" },
  3441. { "time": 3.3333, "x": 1.03, "y": 1, "curve": "stepped" },
  3442. { "time": 3.5667, "x": 1.03, "y": 1, "curve": "stepped" },
  3443. { "time": 3.8, "x": 1.03, "y": 1 },
  3444. { "time": 4.1667, "x": 1, "y": 1 }
  3445. ]
  3446. },
  3447. "bone52": {
  3448. "rotate": [
  3449. { "time": 0, "angle": 13.69 },
  3450. { "time": 0.2667, "angle": 10.21 },
  3451. { "time": 0.4667, "angle": 2.65 },
  3452. { "time": 0.6667, "angle": 10.21 },
  3453. { "time": 0.9, "angle": 2.65 },
  3454. { "time": 1.1, "angle": 10.21 },
  3455. { "time": 1.3333, "angle": 2.65 },
  3456. { "time": 1.5333, "angle": 10.21 },
  3457. { "time": 1.7667, "angle": 2.65 },
  3458. { "time": 2, "angle": 10.21 },
  3459. { "time": 2.2333, "angle": 2.65 },
  3460. { "time": 2.4333, "angle": 10.21 },
  3461. { "time": 2.6667, "angle": 2.65 },
  3462. { "time": 2.9, "angle": 10.21 },
  3463. { "time": 3.1333, "angle": 2.65 },
  3464. { "time": 3.3333, "angle": 10.21 },
  3465. { "time": 3.5667, "angle": 2.65 },
  3466. { "time": 3.8, "angle": 10.21 },
  3467. { "time": 4.1667, "angle": 13.69 }
  3468. ],
  3469. "translate": [
  3470. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3471. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  3472. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  3473. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3474. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  3475. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  3476. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3477. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  3478. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  3479. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  3480. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  3481. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  3482. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  3483. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  3484. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  3485. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  3486. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  3487. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  3488. { "time": 4.1667, "x": 0, "y": 0 }
  3489. ],
  3490. "scale": [
  3491. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3492. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  3493. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  3494. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3495. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  3496. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  3497. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3498. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  3499. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  3500. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  3501. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  3502. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  3503. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  3504. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  3505. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  3506. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  3507. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  3508. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  3509. { "time": 4.1667, "x": 1, "y": 1 }
  3510. ]
  3511. },
  3512. "bone53": {
  3513. "rotate": [
  3514. { "time": 0, "angle": 0 },
  3515. { "time": 0.2667, "angle": 4.12, "curve": "stepped" },
  3516. { "time": 0.4667, "angle": 4.12, "curve": "stepped" },
  3517. { "time": 0.6667, "angle": 4.12, "curve": "stepped" },
  3518. { "time": 0.9, "angle": 4.12, "curve": "stepped" },
  3519. { "time": 1.1, "angle": 4.12, "curve": "stepped" },
  3520. { "time": 1.3333, "angle": 4.12, "curve": "stepped" },
  3521. { "time": 1.5333, "angle": 4.12, "curve": "stepped" },
  3522. { "time": 1.7667, "angle": 4.12, "curve": "stepped" },
  3523. { "time": 2, "angle": 4.12, "curve": "stepped" },
  3524. { "time": 2.2333, "angle": 4.12, "curve": "stepped" },
  3525. { "time": 2.4333, "angle": 4.12, "curve": "stepped" },
  3526. { "time": 2.6667, "angle": 4.12, "curve": "stepped" },
  3527. { "time": 2.9, "angle": 4.12, "curve": "stepped" },
  3528. { "time": 3.1333, "angle": 4.12, "curve": "stepped" },
  3529. { "time": 3.3333, "angle": 4.12, "curve": "stepped" },
  3530. { "time": 3.5667, "angle": 4.12, "curve": "stepped" },
  3531. { "time": 3.8, "angle": 4.12 },
  3532. { "time": 4.1667, "angle": 0 }
  3533. ],
  3534. "translate": [
  3535. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3536. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  3537. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  3538. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3539. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  3540. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  3541. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3542. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  3543. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  3544. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  3545. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  3546. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  3547. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  3548. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  3549. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  3550. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  3551. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  3552. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  3553. { "time": 4.1667, "x": 0, "y": 0 }
  3554. ],
  3555. "scale": [
  3556. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3557. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  3558. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  3559. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3560. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  3561. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  3562. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3563. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  3564. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  3565. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  3566. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  3567. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  3568. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  3569. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  3570. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  3571. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  3572. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  3573. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  3574. { "time": 4.1667, "x": 1, "y": 1 }
  3575. ]
  3576. },
  3577. "bone54": {
  3578. "rotate": [
  3579. { "time": 0, "angle": 0, "curve": "stepped" },
  3580. { "time": 0.2667, "angle": 0 },
  3581. { "time": 0.4667, "angle": -3.41 },
  3582. { "time": 0.6667, "angle": 0 },
  3583. { "time": 0.9, "angle": -3.41 },
  3584. { "time": 1.1, "angle": 0 },
  3585. { "time": 1.3333, "angle": -3.41 },
  3586. { "time": 1.5333, "angle": 0 },
  3587. { "time": 1.7667, "angle": -3.41 },
  3588. { "time": 2, "angle": 0 },
  3589. { "time": 2.2333, "angle": -3.41 },
  3590. { "time": 2.4333, "angle": 0 },
  3591. { "time": 2.6667, "angle": -3.41 },
  3592. { "time": 2.9, "angle": 0 },
  3593. { "time": 3.1333, "angle": -3.41 },
  3594. { "time": 3.3333, "angle": 0 },
  3595. { "time": 3.5667, "angle": -3.41 },
  3596. { "time": 3.8, "angle": 0, "curve": "stepped" },
  3597. { "time": 4.1667, "angle": 0 }
  3598. ],
  3599. "translate": [
  3600. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3601. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  3602. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  3603. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3604. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  3605. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  3606. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3607. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  3608. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  3609. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  3610. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  3611. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  3612. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  3613. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  3614. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  3615. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  3616. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  3617. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  3618. { "time": 4.1667, "x": 0, "y": 0 }
  3619. ],
  3620. "scale": [
  3621. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3622. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  3623. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  3624. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3625. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  3626. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  3627. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3628. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  3629. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  3630. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  3631. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  3632. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  3633. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  3634. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  3635. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  3636. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  3637. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  3638. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  3639. { "time": 4.1667, "x": 1, "y": 1 }
  3640. ]
  3641. },
  3642. "bone55": {
  3643. "rotate": [
  3644. { "time": 0, "angle": 0, "curve": "stepped" },
  3645. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  3646. { "time": 1.5333, "angle": 0, "curve": "stepped" },
  3647. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  3648. { "time": 2, "angle": 0, "curve": "stepped" },
  3649. { "time": 2.2333, "angle": 0, "curve": "stepped" },
  3650. { "time": 2.4333, "angle": 0, "curve": "stepped" },
  3651. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  3652. { "time": 2.9, "angle": 0, "curve": "stepped" },
  3653. { "time": 3.1333, "angle": 0, "curve": "stepped" },
  3654. { "time": 3.3333, "angle": 0, "curve": "stepped" },
  3655. { "time": 3.5667, "angle": 0, "curve": "stepped" },
  3656. { "time": 3.8, "angle": 0, "curve": "stepped" },
  3657. { "time": 4.1667, "angle": 0 }
  3658. ],
  3659. "translate": [
  3660. { "time": 0, "x": 0, "y": 0 },
  3661. { "time": 0.8333, "x": 66.02, "y": 53.68 },
  3662. { "time": 2.4333, "x": 90.08, "y": 102.42 }
  3663. ],
  3664. "scale": [
  3665. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3666. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  3667. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  3668. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3669. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  3670. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  3671. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3672. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  3673. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  3674. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  3675. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  3676. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  3677. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  3678. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  3679. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  3680. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  3681. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  3682. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  3683. { "time": 4.1667, "x": 1, "y": 1 }
  3684. ]
  3685. },
  3686. "bone56": {
  3687. "rotate": [
  3688. { "time": 0, "angle": 0, "curve": "stepped" },
  3689. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  3690. { "time": 0.4667, "angle": 0, "curve": "stepped" },
  3691. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  3692. { "time": 0.9, "angle": 0, "curve": "stepped" },
  3693. { "time": 1.1, "angle": 0, "curve": "stepped" },
  3694. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  3695. { "time": 1.5333, "angle": 0, "curve": "stepped" },
  3696. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  3697. { "time": 2, "angle": 0, "curve": "stepped" },
  3698. { "time": 2.2333, "angle": 0, "curve": "stepped" },
  3699. { "time": 2.4333, "angle": 0, "curve": "stepped" },
  3700. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  3701. { "time": 2.9, "angle": 0 }
  3702. ],
  3703. "translate": [
  3704. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3705. { "time": 1.3333, "x": 0, "y": 0 },
  3706. { "time": 2.1667, "x": -77.57, "y": 63.14 },
  3707. { "time": 2.9, "x": -155.14, "y": 129.89 }
  3708. ],
  3709. "scale": [
  3710. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3711. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3712. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  3713. { "time": 2.9, "x": 1, "y": 1 }
  3714. ]
  3715. },
  3716. "bone57": {
  3717. "rotate": [
  3718. { "time": 0, "angle": 0, "curve": "stepped" },
  3719. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  3720. { "time": 0.4667, "angle": 0, "curve": "stepped" },
  3721. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  3722. { "time": 0.9, "angle": 0, "curve": "stepped" },
  3723. { "time": 1.1, "angle": 0, "curve": "stepped" },
  3724. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  3725. { "time": 1.5333, "angle": 0, "curve": "stepped" },
  3726. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  3727. { "time": 2, "angle": 0, "curve": "stepped" },
  3728. { "time": 2.2333, "angle": 0, "curve": "stepped" },
  3729. { "time": 2.4333, "angle": 0, "curve": "stepped" },
  3730. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  3731. { "time": 2.9, "angle": 0, "curve": "stepped" },
  3732. { "time": 3.1333, "angle": 0, "curve": "stepped" },
  3733. { "time": 3.3333, "angle": 0, "curve": "stepped" },
  3734. { "time": 3.5667, "angle": 0, "curve": "stepped" },
  3735. { "time": 3.8, "angle": 0, "curve": "stepped" },
  3736. { "time": 4.1667, "angle": 0 }
  3737. ],
  3738. "translate": [
  3739. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3740. { "time": 0.2667, "x": 0, "y": 0 },
  3741. { "time": 1.2, "x": -48.13, "y": 27.15 },
  3742. { "time": 1.9333, "x": -99.34, "y": 59.23 },
  3743. { "time": 2.2, "x": 26.73, "y": -9.72 },
  3744. { "time": 3.1333, "x": -23.83, "y": 72.1 },
  3745. { "time": 3.8667, "x": -59.24, "y": 161.29 }
  3746. ],
  3747. "scale": [
  3748. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3749. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  3750. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  3751. { "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
  3752. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  3753. { "time": 3.7, "x": 1, "y": 1, "curve": "stepped" },
  3754. { "time": 3.8667, "x": 1, "y": 1 }
  3755. ]
  3756. },
  3757. "bone58": {
  3758. "rotate": [
  3759. { "time": 0, "angle": 26.26 },
  3760. { "time": 0.2667, "angle": 34.42 },
  3761. { "time": 0.4667, "angle": 26.42 },
  3762. { "time": 0.6667, "angle": 16.09 },
  3763. { "time": 0.9, "angle": 26.42 },
  3764. { "time": 1.1, "angle": 16.09 },
  3765. { "time": 1.3333, "angle": 26.42 },
  3766. { "time": 1.5333, "angle": 16.09 },
  3767. { "time": 1.7667, "angle": 26.42 },
  3768. { "time": 2, "angle": 16.09 },
  3769. { "time": 2.2333, "angle": 26.42 },
  3770. { "time": 2.4333, "angle": 16.09 },
  3771. { "time": 2.6667, "angle": 26.42 },
  3772. { "time": 2.9, "angle": 16.09 },
  3773. { "time": 3.1333, "angle": 26.42 },
  3774. { "time": 3.3333, "angle": 16.09 },
  3775. { "time": 3.5667, "angle": 26.42 },
  3776. { "time": 3.8, "angle": 16.09 },
  3777. { "time": 4.1667, "angle": 26.26 }
  3778. ],
  3779. "translate": [
  3780. { "time": 0, "x": -34.16, "y": 14.46 },
  3781. { "time": 0.2667, "x": -29.95, "y": 24.18 },
  3782. { "time": 0.4667, "x": -26.55, "y": 23.25, "curve": "stepped" },
  3783. { "time": 3.8, "x": -26.55, "y": 23.25 },
  3784. { "time": 4.1667, "x": -34.16, "y": 14.46 }
  3785. ],
  3786. "scale": [
  3787. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3788. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  3789. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  3790. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3791. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  3792. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  3793. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3794. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  3795. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  3796. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  3797. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  3798. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  3799. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  3800. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  3801. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  3802. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  3803. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  3804. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  3805. { "time": 4.1667, "x": 1, "y": 1 }
  3806. ]
  3807. },
  3808. "bone42": {
  3809. "rotate": [
  3810. { "time": 0, "angle": 0 },
  3811. { "time": 0.2667, "angle": 8.53 },
  3812. { "time": 0.4667, "angle": 1.83 },
  3813. { "time": 0.6667, "angle": 8.53 },
  3814. { "time": 0.9, "angle": 1.83 },
  3815. { "time": 1.1, "angle": 8.53 },
  3816. { "time": 1.3333, "angle": 1.83 },
  3817. { "time": 1.5333, "angle": 8.53 },
  3818. { "time": 1.7667, "angle": 1.83 },
  3819. { "time": 2, "angle": 8.53 },
  3820. { "time": 2.2333, "angle": 1.83 },
  3821. { "time": 2.4333, "angle": 8.53 },
  3822. { "time": 2.6667, "angle": 1.83 },
  3823. { "time": 2.9, "angle": 8.53 },
  3824. { "time": 3.1333, "angle": 1.83 },
  3825. { "time": 3.3333, "angle": 8.53 },
  3826. { "time": 3.5667, "angle": 1.83 },
  3827. { "time": 3.8, "angle": 8.53 },
  3828. { "time": 4.1667, "angle": 0 }
  3829. ],
  3830. "translate": [
  3831. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3832. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  3833. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  3834. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3835. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  3836. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  3837. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3838. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  3839. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  3840. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  3841. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  3842. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  3843. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  3844. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  3845. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  3846. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  3847. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  3848. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  3849. { "time": 4.1667, "x": 0, "y": 0 }
  3850. ],
  3851. "scale": [
  3852. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3853. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  3854. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  3855. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3856. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  3857. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  3858. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3859. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  3860. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  3861. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  3862. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  3863. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  3864. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  3865. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  3866. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  3867. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  3868. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  3869. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  3870. { "time": 4.1667, "x": 1, "y": 1 }
  3871. ]
  3872. },
  3873. "bone43": {
  3874. "rotate": [
  3875. { "time": 0, "angle": 0, "curve": "stepped" },
  3876. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  3877. { "time": 0.4667, "angle": 0, "curve": "stepped" },
  3878. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  3879. { "time": 0.9, "angle": 0, "curve": "stepped" },
  3880. { "time": 1.1, "angle": 0, "curve": "stepped" },
  3881. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  3882. { "time": 1.5333, "angle": 0, "curve": "stepped" },
  3883. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  3884. { "time": 2, "angle": 0, "curve": "stepped" },
  3885. { "time": 2.2333, "angle": 0, "curve": "stepped" },
  3886. { "time": 2.4333, "angle": 0, "curve": "stepped" },
  3887. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  3888. { "time": 2.9, "angle": 0, "curve": "stepped" },
  3889. { "time": 3.1333, "angle": 0, "curve": "stepped" },
  3890. { "time": 3.3333, "angle": 0, "curve": "stepped" },
  3891. { "time": 3.5667, "angle": 0, "curve": "stepped" },
  3892. { "time": 3.8, "angle": 0, "curve": "stepped" },
  3893. { "time": 4.1667, "angle": 0 }
  3894. ],
  3895. "translate": [
  3896. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3897. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  3898. { "time": 0.4667, "x": 0, "y": 0 },
  3899. { "time": 0.6667, "x": 0.09, "y": 1.47 },
  3900. { "time": 0.9, "x": 0, "y": 0 },
  3901. { "time": 1.1, "x": 0.09, "y": 1.47 },
  3902. { "time": 1.3333, "x": 0, "y": 0 },
  3903. { "time": 1.5333, "x": 0.09, "y": 1.47 },
  3904. { "time": 1.7667, "x": 0, "y": 0 },
  3905. { "time": 2, "x": 0.09, "y": 1.47 },
  3906. { "time": 2.2333, "x": 0, "y": 0 },
  3907. { "time": 2.4333, "x": 0.09, "y": 1.47 },
  3908. { "time": 2.6667, "x": 0, "y": 0 },
  3909. { "time": 2.9, "x": 0.09, "y": 1.47 },
  3910. { "time": 3.1333, "x": 0, "y": 0 },
  3911. { "time": 3.3333, "x": 0.09, "y": 1.47 },
  3912. { "time": 3.5667, "x": 0, "y": 0 },
  3913. { "time": 3.8, "x": 0.09, "y": 1.47 },
  3914. { "time": 4.1667, "x": 0, "y": 0 }
  3915. ],
  3916. "scale": [
  3917. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3918. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  3919. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  3920. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3921. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  3922. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  3923. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3924. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  3925. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  3926. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  3927. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  3928. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  3929. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  3930. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  3931. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  3932. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  3933. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  3934. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  3935. { "time": 4.1667, "x": 1, "y": 1 }
  3936. ]
  3937. },
  3938. "bone44": {
  3939. "rotate": [
  3940. { "time": 0, "angle": 0, "curve": "stepped" },
  3941. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  3942. { "time": 0.4667, "angle": 0, "curve": "stepped" },
  3943. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  3944. { "time": 0.9, "angle": 0, "curve": "stepped" },
  3945. { "time": 1.1, "angle": 0, "curve": "stepped" },
  3946. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  3947. { "time": 1.5333, "angle": 0, "curve": "stepped" },
  3948. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  3949. { "time": 2, "angle": 0, "curve": "stepped" },
  3950. { "time": 2.2333, "angle": 0, "curve": "stepped" },
  3951. { "time": 2.4333, "angle": 0, "curve": "stepped" },
  3952. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  3953. { "time": 2.9, "angle": 0, "curve": "stepped" },
  3954. { "time": 3.1333, "angle": 0, "curve": "stepped" },
  3955. { "time": 3.3333, "angle": 0, "curve": "stepped" },
  3956. { "time": 3.5667, "angle": 0, "curve": "stepped" },
  3957. { "time": 3.8, "angle": 0, "curve": "stepped" },
  3958. { "time": 4.1667, "angle": 0 }
  3959. ],
  3960. "translate": [
  3961. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3962. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  3963. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  3964. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3965. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  3966. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  3967. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3968. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  3969. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  3970. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  3971. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  3972. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  3973. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  3974. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  3975. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  3976. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  3977. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  3978. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  3979. { "time": 4.1667, "x": 0, "y": 0 }
  3980. ],
  3981. "scale": [
  3982. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3983. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  3984. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  3985. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3986. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  3987. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  3988. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3989. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  3990. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  3991. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  3992. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  3993. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  3994. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  3995. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  3996. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  3997. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  3998. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  3999. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  4000. { "time": 4.1667, "x": 1, "y": 1 }
  4001. ]
  4002. },
  4003. "bone59": {
  4004. "rotate": [
  4005. { "time": 0, "angle": 0, "curve": "stepped" },
  4006. { "time": 0.2667, "angle": 0 },
  4007. { "time": 0.4667, "angle": -35.15, "curve": "stepped" },
  4008. { "time": 3.8, "angle": -35.15 },
  4009. { "time": 4.1667, "angle": 0 }
  4010. ],
  4011. "translate": [
  4012. { "time": 0, "x": 0, "y": 0 },
  4013. { "time": 0.2667, "x": -3.2, "y": 6.76, "curve": "stepped" },
  4014. { "time": 0.4667, "x": -3.2, "y": 6.76 },
  4015. { "time": 0.6667, "x": -1.62, "y": 6.1 },
  4016. { "time": 3.8, "x": -3.2, "y": 6.76 },
  4017. { "time": 4.1667, "x": 0, "y": 0 }
  4018. ],
  4019. "scale": [
  4020. { "time": 0, "x": 1, "y": 1 },
  4021. { "time": 0.2667, "x": 1.3, "y": 1, "curve": "stepped" },
  4022. { "time": 0.4667, "x": 1.3, "y": 1, "curve": "stepped" },
  4023. { "time": 3.8, "x": 1.3, "y": 1 },
  4024. { "time": 4.1667, "x": 1, "y": 1 }
  4025. ]
  4026. },
  4027. "bone61": {
  4028. "rotate": [
  4029. { "time": 0, "angle": 0 },
  4030. { "time": 0.2667, "angle": -14.21, "curve": "stepped" },
  4031. { "time": 0.4667, "angle": -14.21, "curve": "stepped" },
  4032. { "time": 0.6667, "angle": -14.21, "curve": "stepped" },
  4033. { "time": 0.9, "angle": -14.21, "curve": "stepped" },
  4034. { "time": 1.1, "angle": -14.21, "curve": "stepped" },
  4035. { "time": 1.3333, "angle": -14.21, "curve": "stepped" },
  4036. { "time": 1.5333, "angle": -14.21, "curve": "stepped" },
  4037. { "time": 1.7667, "angle": -14.21, "curve": "stepped" },
  4038. { "time": 2, "angle": -14.21, "curve": "stepped" },
  4039. { "time": 2.2333, "angle": -14.21, "curve": "stepped" },
  4040. { "time": 2.4333, "angle": -14.21, "curve": "stepped" },
  4041. { "time": 2.6667, "angle": -14.21, "curve": "stepped" },
  4042. { "time": 2.9, "angle": -14.21, "curve": "stepped" },
  4043. { "time": 3.1333, "angle": -14.21, "curve": "stepped" },
  4044. { "time": 3.3333, "angle": -14.21, "curve": "stepped" },
  4045. { "time": 3.5667, "angle": -14.21, "curve": "stepped" },
  4046. { "time": 3.8, "angle": -14.21 },
  4047. { "time": 4.1667, "angle": 0 }
  4048. ],
  4049. "translate": [
  4050. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4051. { "time": 0.2667, "x": 0, "y": 0 },
  4052. { "time": 0.4667, "x": -1.52, "y": -0.59 },
  4053. { "time": 0.6667, "x": 0, "y": 0 },
  4054. { "time": 0.9, "x": -1.48, "y": -0.58 },
  4055. { "time": 1.1, "x": 0, "y": 0 },
  4056. { "time": 1.3333, "x": -1.66, "y": -0.65 },
  4057. { "time": 1.5333, "x": -3.12, "y": 1.27 },
  4058. { "time": 1.7667, "x": -1.59, "y": -0.62 },
  4059. { "time": 2, "x": 0, "y": 0 },
  4060. { "time": 2.2333, "x": -1.59, "y": -0.62 },
  4061. { "time": 2.4333, "x": 0, "y": 0 },
  4062. { "time": 2.6667, "x": -1.59, "y": -0.62 },
  4063. { "time": 2.9, "x": 0, "y": 0 },
  4064. { "time": 3.1333, "x": -1.59, "y": -0.62 },
  4065. { "time": 3.3333, "x": 0, "y": 0 },
  4066. { "time": 3.5667, "x": -1.59, "y": -0.62 },
  4067. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  4068. { "time": 4.1667, "x": 0, "y": 0 }
  4069. ],
  4070. "scale": [
  4071. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4072. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  4073. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  4074. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4075. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  4076. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  4077. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4078. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  4079. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  4080. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  4081. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  4082. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  4083. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  4084. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  4085. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  4086. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  4087. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  4088. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  4089. { "time": 4.1667, "x": 1, "y": 1 }
  4090. ]
  4091. },
  4092. "bone62": {
  4093. "rotate": [
  4094. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  4095. { "time": 0.4667, "angle": 0, "curve": "stepped" },
  4096. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  4097. { "time": 0.9, "angle": 0, "curve": "stepped" },
  4098. { "time": 1.1, "angle": 0, "curve": "stepped" },
  4099. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  4100. { "time": 1.5333, "angle": 0, "curve": "stepped" },
  4101. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  4102. { "time": 2, "angle": 0, "curve": "stepped" },
  4103. { "time": 2.2333, "angle": 0, "curve": "stepped" },
  4104. { "time": 2.4333, "angle": 0, "curve": "stepped" },
  4105. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  4106. { "time": 2.9, "angle": 0, "curve": "stepped" },
  4107. { "time": 3.1333, "angle": 0, "curve": "stepped" },
  4108. { "time": 3.3333, "angle": 0, "curve": "stepped" },
  4109. { "time": 3.5667, "angle": 0, "curve": "stepped" },
  4110. { "time": 3.8, "angle": 0 }
  4111. ],
  4112. "translate": [
  4113. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  4114. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  4115. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  4116. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  4117. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  4118. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  4119. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  4120. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  4121. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  4122. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  4123. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  4124. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  4125. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  4126. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  4127. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  4128. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  4129. { "time": 3.8, "x": 0, "y": 0 }
  4130. ],
  4131. "scale": [
  4132. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  4133. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  4134. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4135. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  4136. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  4137. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4138. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  4139. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  4140. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  4141. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  4142. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  4143. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  4144. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  4145. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  4146. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  4147. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  4148. { "time": 3.8, "x": 1, "y": 1 }
  4149. ]
  4150. }
  4151. },
  4152. "deform": {
  4153. "default": {
  4154. "shenti": {
  4155. "shenti": [
  4156. { "time": 0 },
  4157. {
  4158. "time": 0.2667,
  4159. "offset": 26,
  4160. "vertices": [ -0.05646, 1.42884, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.10651, 1.42599, 0, 0, 0, 0, -0.05646, 1.42884, -0.05646, 1.42884, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599 ],
  4161. "curve": "stepped"
  4162. },
  4163. {
  4164. "time": 0.4667,
  4165. "offset": 26,
  4166. "vertices": [ -0.05646, 1.42884, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.10651, 1.42599, 0, 0, 0, 0, -0.05646, 1.42884, -0.05646, 1.42884, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599 ],
  4167. "curve": "stepped"
  4168. },
  4169. {
  4170. "time": 0.6667,
  4171. "offset": 26,
  4172. "vertices": [ -0.05646, 1.42884, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.10651, 1.42599, 0, 0, 0, 0, -0.05646, 1.42884, -0.05646, 1.42884, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599 ],
  4173. "curve": "stepped"
  4174. },
  4175. {
  4176. "time": 0.9,
  4177. "offset": 26,
  4178. "vertices": [ -0.05646, 1.42884, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.10651, 1.42599, 0, 0, 0, 0, -0.05646, 1.42884, -0.05646, 1.42884, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599 ],
  4179. "curve": "stepped"
  4180. },
  4181. {
  4182. "time": 1.1,
  4183. "offset": 26,
  4184. "vertices": [ -0.05646, 1.42884, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.10651, 1.42599, 0, 0, 0, 0, -0.05646, 1.42884, -0.05646, 1.42884, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599 ],
  4185. "curve": "stepped"
  4186. },
  4187. {
  4188. "time": 1.3333,
  4189. "offset": 26,
  4190. "vertices": [ -0.05646, 1.42884, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.10651, 1.42599, 0, 0, 0, 0, -0.05646, 1.42884, -0.05646, 1.42884, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599 ],
  4191. "curve": "stepped"
  4192. },
  4193. {
  4194. "time": 1.5333,
  4195. "offset": 26,
  4196. "vertices": [ -0.05646, 1.42884, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.10651, 1.42599, 0, 0, 0, 0, -0.05646, 1.42884, -0.05646, 1.42884, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599 ],
  4197. "curve": "stepped"
  4198. },
  4199. {
  4200. "time": 1.7667,
  4201. "offset": 26,
  4202. "vertices": [ -0.05646, 1.42884, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.10651, 1.42599, 0, 0, 0, 0, -0.05646, 1.42884, -0.05646, 1.42884, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599 ],
  4203. "curve": "stepped"
  4204. },
  4205. {
  4206. "time": 2,
  4207. "offset": 26,
  4208. "vertices": [ -0.05646, 1.42884, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.10651, 1.42599, 0, 0, 0, 0, -0.05646, 1.42884, -0.05646, 1.42884, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599 ],
  4209. "curve": "stepped"
  4210. },
  4211. {
  4212. "time": 2.2333,
  4213. "offset": 26,
  4214. "vertices": [ -0.05646, 1.42884, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.10651, 1.42599, 0, 0, 0, 0, -0.05646, 1.42884, -0.05646, 1.42884, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599 ],
  4215. "curve": "stepped"
  4216. },
  4217. {
  4218. "time": 2.4333,
  4219. "offset": 26,
  4220. "vertices": [ -0.05646, 1.42884, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.10651, 1.42599, 0, 0, 0, 0, -0.05646, 1.42884, -0.05646, 1.42884, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599 ],
  4221. "curve": "stepped"
  4222. },
  4223. {
  4224. "time": 2.6667,
  4225. "offset": 26,
  4226. "vertices": [ -0.05646, 1.42884, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.10651, 1.42599, 0, 0, 0, 0, -0.05646, 1.42884, -0.05646, 1.42884, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599 ],
  4227. "curve": "stepped"
  4228. },
  4229. {
  4230. "time": 2.9,
  4231. "offset": 26,
  4232. "vertices": [ -0.05646, 1.42884, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.10651, 1.42599, 0, 0, 0, 0, -0.05646, 1.42884, -0.05646, 1.42884, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599 ],
  4233. "curve": "stepped"
  4234. },
  4235. {
  4236. "time": 3.1333,
  4237. "offset": 26,
  4238. "vertices": [ -0.05646, 1.42884, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.10651, 1.42599, 0, 0, 0, 0, -0.05646, 1.42884, -0.05646, 1.42884, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599 ],
  4239. "curve": "stepped"
  4240. },
  4241. {
  4242. "time": 3.3333,
  4243. "offset": 26,
  4244. "vertices": [ -0.05646, 1.42884, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.10651, 1.42599, 0, 0, 0, 0, -0.05646, 1.42884, -0.05646, 1.42884, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599 ],
  4245. "curve": "stepped"
  4246. },
  4247. {
  4248. "time": 3.5667,
  4249. "offset": 26,
  4250. "vertices": [ -0.05646, 1.42884, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.10651, 1.42599, 0, 0, 0, 0, -0.05646, 1.42884, -0.05646, 1.42884, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599 ],
  4251. "curve": "stepped"
  4252. },
  4253. {
  4254. "time": 3.8,
  4255. "offset": 26,
  4256. "vertices": [ -0.05646, 1.42884, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.10651, 1.42599, 0, 0, 0, 0, -0.05646, 1.42884, -0.05646, 1.42884, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599 ]
  4257. },
  4258. { "time": 4.1667 }
  4259. ]
  4260. },
  4261. "toufa1": {
  4262. "toufa1": [
  4263. { "time": 0 },
  4264. {
  4265. "time": 0.2667,
  4266. "vertices": [ 0.93288, 1.29994, 1.27299, 0.34692 ]
  4267. },
  4268. { "time": 0.4667 },
  4269. {
  4270. "time": 0.6667,
  4271. "vertices": [ 0.93288, 1.29994, 1.27299, 0.34692 ]
  4272. },
  4273. { "time": 0.9 },
  4274. {
  4275. "time": 1.1,
  4276. "vertices": [ 0.93288, 1.29994, 1.27299, 0.34692 ]
  4277. },
  4278. { "time": 1.3333 },
  4279. {
  4280. "time": 1.5333,
  4281. "vertices": [ 0.93288, 1.29994, 1.27299, 0.34692 ]
  4282. },
  4283. { "time": 1.7667 },
  4284. {
  4285. "time": 2,
  4286. "vertices": [ 0.93288, 1.29994, 1.27299, 0.34692 ]
  4287. },
  4288. { "time": 2.2333 },
  4289. {
  4290. "time": 2.4333,
  4291. "vertices": [ 0.93288, 1.29994, 1.27299, 0.34692 ]
  4292. },
  4293. { "time": 2.6667 },
  4294. {
  4295. "time": 2.9,
  4296. "vertices": [ 0.93288, 1.29994, 1.27299, 0.34692 ]
  4297. },
  4298. { "time": 3.1333 },
  4299. {
  4300. "time": 3.3333,
  4301. "vertices": [ 0.93288, 1.29994, 1.27299, 0.34692 ]
  4302. },
  4303. { "time": 3.5667 },
  4304. {
  4305. "time": 3.8,
  4306. "vertices": [ 0.93288, 1.29994, 1.27299, 0.34692 ]
  4307. },
  4308. { "time": 4.1667 }
  4309. ]
  4310. },
  4311. "zuotui": {
  4312. "zuotui": [
  4313. { "time": 0 },
  4314. {
  4315. "time": 0.6667,
  4316. "offset": 66,
  4317. "vertices": [ -2.27049, -0.06641, -2.1253, 0.80157, -4.37656, -1.13522, -1.53685, 0.88858, -4.17417, 0.34468 ],
  4318. "curve": "stepped"
  4319. },
  4320. {
  4321. "time": 1.5333,
  4322. "offset": 66,
  4323. "vertices": [ -2.27049, -0.06641, -2.1253, 0.80157, -4.37656, -1.13522, -1.53685, 0.88858, -4.17417, 0.34468 ],
  4324. "curve": "stepped"
  4325. },
  4326. {
  4327. "time": 2.4333,
  4328. "offset": 66,
  4329. "vertices": [ -2.27049, -0.06641, -2.1253, 0.80157, -4.37656, -1.13522, -1.53685, 0.88858, -4.17417, 0.34468 ],
  4330. "curve": "stepped"
  4331. },
  4332. {
  4333. "time": 3.3333,
  4334. "offset": 66,
  4335. "vertices": [ -2.27049, -0.06641, -2.1253, 0.80157, -4.37656, -1.13522, -1.53685, 0.88858, -4.17417, 0.34468 ]
  4336. },
  4337. { "time": 4.1667 }
  4338. ]
  4339. }
  4340. }
  4341. },
  4342. "drawOrder": [
  4343. {
  4344. "time": 0.1667,
  4345. "offsets": [
  4346. { "slot": "maikefeng", "offset": 27 }
  4347. ]
  4348. }
  4349. ]
  4350. },
  4351. "walk1": {
  4352. "slots": {
  4353. "biaoqing_4": {
  4354. "color": [
  4355. { "time": 0, "color": "ffffff00" }
  4356. ]
  4357. },
  4358. "biyan": {
  4359. "attachment": [
  4360. { "time": 1.1, "name": "biyan" },
  4361. { "time": 1.2, "name": null }
  4362. ]
  4363. },
  4364. "youyan": {
  4365. "attachment": [
  4366. { "time": 1.1, "name": null },
  4367. { "time": 1.2, "name": "youyan" }
  4368. ]
  4369. },
  4370. "zuoyan": {
  4371. "attachment": [
  4372. { "time": 1.1, "name": null },
  4373. { "time": 1.2, "name": "zuoyan" }
  4374. ]
  4375. }
  4376. },
  4377. "bones": {
  4378. "root": {
  4379. "rotate": [
  4380. { "time": 0, "angle": 0 }
  4381. ],
  4382. "translate": [
  4383. { "time": 0, "x": 0, "y": 0 }
  4384. ],
  4385. "scale": [
  4386. { "time": 0, "x": 0.65, "y": 0.65 }
  4387. ]
  4388. },
  4389. "bone": {
  4390. "rotate": [
  4391. { "time": 0, "angle": 0, "curve": "stepped" },
  4392. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  4393. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4394. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  4395. { "time": 1, "angle": 0, "curve": "stepped" },
  4396. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  4397. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4398. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  4399. { "time": 2, "angle": 0 }
  4400. ],
  4401. "translate": [
  4402. { "time": 0, "x": -0.1, "y": 3.2 },
  4403. { "time": 0.1667, "x": 0, "y": 0 },
  4404. { "time": 0.5, "x": -0.1, "y": 3.2 },
  4405. { "time": 0.6667, "x": 0, "y": 0 },
  4406. { "time": 1, "x": -0.1, "y": 3.2 },
  4407. { "time": 1.1667, "x": 0, "y": 0 },
  4408. { "time": 1.5, "x": -0.1, "y": 3.2 },
  4409. { "time": 1.6667, "x": 0, "y": 0 },
  4410. { "time": 2, "x": -0.1, "y": 3.2 }
  4411. ],
  4412. "scale": [
  4413. { "time": 0, "x": 1, "y": 1 }
  4414. ]
  4415. },
  4416. "bone2": {
  4417. "rotate": [
  4418. { "time": 0, "angle": 3.23 },
  4419. { "time": 0.5, "angle": 4.57 },
  4420. { "time": 1, "angle": 3.23 },
  4421. { "time": 1.5, "angle": 4.57 },
  4422. { "time": 2, "angle": 3.23 }
  4423. ],
  4424. "translate": [
  4425. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4426. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4427. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4428. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4429. { "time": 2, "x": 0, "y": 0 }
  4430. ],
  4431. "scale": [
  4432. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4433. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4434. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4435. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4436. { "time": 2, "x": 1, "y": 1 }
  4437. ]
  4438. },
  4439. "bone3": {
  4440. "rotate": [
  4441. { "time": 0, "angle": 0, "curve": "stepped" },
  4442. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4443. { "time": 1, "angle": 0, "curve": "stepped" },
  4444. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4445. { "time": 2, "angle": 0 }
  4446. ],
  4447. "translate": [
  4448. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4449. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4450. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4451. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4452. { "time": 2, "x": 0, "y": 0 }
  4453. ],
  4454. "scale": [
  4455. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4456. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4457. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4458. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4459. { "time": 2, "x": 1, "y": 1 }
  4460. ]
  4461. },
  4462. "bone4": {
  4463. "rotate": [
  4464. { "time": 0, "angle": -20.94 },
  4465. { "time": 0.1667, "angle": -10.78 },
  4466. { "time": 0.3333, "angle": -340.31 },
  4467. { "time": 0.5, "angle": -333.09 },
  4468. { "time": 0.6667, "angle": 12.38 },
  4469. { "time": 0.8333, "angle": -22.79 },
  4470. { "time": 1, "angle": -20.94 },
  4471. { "time": 1.1667, "angle": -2.15 },
  4472. { "time": 1.3333, "angle": -340.31 },
  4473. { "time": 1.5, "angle": -333.09 },
  4474. { "time": 1.6667, "angle": 12.38 },
  4475. { "time": 1.8333, "angle": -22.79 },
  4476. { "time": 2, "angle": -20.94 }
  4477. ],
  4478. "translate": [
  4479. { "time": 0, "x": 0, "y": 0 },
  4480. { "time": 0.1667, "x": 0.22, "y": -3.86 },
  4481. { "time": 0.2667, "x": -0.62, "y": -15.64 },
  4482. { "time": 0.3333, "x": -0.74, "y": -12.7 },
  4483. { "time": 0.5, "x": -0.13, "y": -17.95 },
  4484. { "time": 0.6667, "x": 0.53, "y": -13.63 },
  4485. { "time": 0.8333, "x": 3.41, "y": -3.32 },
  4486. { "time": 1, "x": 0, "y": 0 },
  4487. { "time": 1.1667, "x": 0.22, "y": -3.86 },
  4488. { "time": 1.2667, "x": -0.62, "y": -15.64 },
  4489. { "time": 1.3333, "x": -0.74, "y": -12.7 },
  4490. { "time": 1.5, "x": -0.13, "y": -17.95 },
  4491. { "time": 1.6667, "x": 0.53, "y": -13.63 },
  4492. { "time": 1.8333, "x": 3.41, "y": -3.32 },
  4493. { "time": 2, "x": 0, "y": 0 }
  4494. ],
  4495. "scale": [
  4496. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4497. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4498. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4499. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4500. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4501. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4502. { "time": 2, "x": 1, "y": 1 }
  4503. ]
  4504. },
  4505. "bone5": {
  4506. "rotate": [
  4507. { "time": 0, "angle": 8.7 },
  4508. { "time": 0.1667, "angle": 17.56 },
  4509. { "time": 0.3333, "angle": 1.87 },
  4510. { "time": 0.5, "angle": 8.7 },
  4511. { "time": 0.6667, "angle": 43.15 },
  4512. { "time": 0.8333, "angle": 30.08 },
  4513. { "time": 1, "angle": 8.7 },
  4514. { "time": 1.3333, "angle": 1.87 },
  4515. { "time": 1.5, "angle": 8.7 },
  4516. { "time": 1.6667, "angle": 43.15 },
  4517. { "time": 1.8333, "angle": 30.08 },
  4518. { "time": 2, "angle": 8.7 }
  4519. ],
  4520. "translate": [
  4521. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4522. { "time": 0.5, "x": 0, "y": 0 },
  4523. { "time": 0.6667, "x": -2.24, "y": -1.68 },
  4524. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4525. { "time": 1.5, "x": 0, "y": 0 },
  4526. { "time": 1.6667, "x": -2.24, "y": -1.68 },
  4527. { "time": 2, "x": 0, "y": 0 }
  4528. ],
  4529. "scale": [
  4530. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4531. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4532. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4533. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4534. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4535. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  4536. { "time": 2, "x": 1, "y": 1 }
  4537. ]
  4538. },
  4539. "bone6": {
  4540. "rotate": [
  4541. { "time": 0, "angle": -6.79 },
  4542. { "time": 0.1667, "angle": -2.27 },
  4543. { "time": 0.5, "angle": 0 },
  4544. { "time": 1, "angle": -6.79 },
  4545. { "time": 1.1667, "angle": -2.27 },
  4546. { "time": 1.5, "angle": 0 },
  4547. { "time": 2, "angle": -6.79 }
  4548. ],
  4549. "translate": [
  4550. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4551. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4552. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4553. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4554. { "time": 2, "x": 0, "y": 0 }
  4555. ],
  4556. "scale": [
  4557. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4558. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4559. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4560. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4561. { "time": 2, "x": 1, "y": 1 }
  4562. ]
  4563. },
  4564. "bone7": {
  4565. "rotate": [
  4566. { "time": 0, "angle": 26.22 },
  4567. { "time": 0.1667, "angle": 17.14 },
  4568. { "time": 0.3333, "angle": 333.75 },
  4569. { "time": 0.5, "angle": 333.91 },
  4570. { "time": 0.7333, "angle": 353 },
  4571. { "time": 1, "angle": 26.22 },
  4572. { "time": 1.1667, "angle": 17.14 },
  4573. { "time": 1.3333, "angle": 333.75 },
  4574. { "time": 1.5, "angle": 333.91 },
  4575. { "time": 1.7333, "angle": 353 },
  4576. { "time": 2, "angle": 26.22 }
  4577. ],
  4578. "translate": [
  4579. { "time": 0, "x": 0.75, "y": -1.42 },
  4580. { "time": 0.1667, "x": 1.7, "y": 5.18 },
  4581. { "time": 0.3333, "x": -0.03, "y": 13.02 },
  4582. { "time": 0.5, "x": -0.53, "y": 17.23 },
  4583. { "time": 1, "x": 0.75, "y": -1.42 },
  4584. { "time": 1.1667, "x": 1.7, "y": 5.18 },
  4585. { "time": 1.3333, "x": -0.03, "y": 13.02 },
  4586. { "time": 1.5, "x": -0.53, "y": 17.23 },
  4587. { "time": 2, "x": 0.75, "y": -1.42 }
  4588. ],
  4589. "scale": [
  4590. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4591. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4592. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4593. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4594. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4595. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4596. { "time": 2, "x": 1, "y": 1 }
  4597. ]
  4598. },
  4599. "bone8": {
  4600. "rotate": [
  4601. { "time": 0, "angle": 7.36 },
  4602. { "time": 0.1667, "angle": 33.43 },
  4603. { "time": 0.3333, "angle": 57.2 },
  4604. { "time": 0.5, "angle": 7.36, "curve": "stepped" },
  4605. { "time": 1, "angle": 7.36 },
  4606. { "time": 1.1667, "angle": 33.43 },
  4607. { "time": 1.3333, "angle": 57.2 },
  4608. { "time": 1.5, "angle": 7.36, "curve": "stepped" },
  4609. { "time": 2, "angle": 7.36 }
  4610. ],
  4611. "translate": [
  4612. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4613. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4614. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4615. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4616. { "time": 2, "x": 0, "y": 0 }
  4617. ],
  4618. "scale": [
  4619. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4620. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4621. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4622. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4623. { "time": 2, "x": 1, "y": 1 }
  4624. ]
  4625. },
  4626. "bone9": {
  4627. "rotate": [
  4628. { "time": 0, "angle": 0, "curve": "stepped" },
  4629. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4630. { "time": 1, "angle": 0, "curve": "stepped" },
  4631. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4632. { "time": 2, "angle": 0 }
  4633. ],
  4634. "translate": [
  4635. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4636. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4637. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4638. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4639. { "time": 2, "x": 0, "y": 0 }
  4640. ],
  4641. "scale": [
  4642. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4643. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4644. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4645. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4646. { "time": 2, "x": 1, "y": 1 }
  4647. ]
  4648. },
  4649. "bone10": {
  4650. "rotate": [
  4651. { "time": 0, "angle": -11.64 },
  4652. { "time": 0.5, "angle": -0.99 },
  4653. { "time": 1, "angle": -11.64 },
  4654. { "time": 1.5, "angle": -0.99 },
  4655. { "time": 2, "angle": -11.64 }
  4656. ],
  4657. "translate": [
  4658. { "time": 0, "x": -0.34, "y": -0.93 },
  4659. { "time": 0.5, "x": 0.28, "y": 1.65 },
  4660. { "time": 1, "x": -0.34, "y": -0.93 },
  4661. { "time": 1.5, "x": 0.28, "y": 1.65 },
  4662. { "time": 2, "x": -0.34, "y": -0.93 }
  4663. ],
  4664. "scale": [
  4665. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4666. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4667. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4668. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4669. { "time": 2, "x": 1, "y": 1 }
  4670. ]
  4671. },
  4672. "bone11": {
  4673. "rotate": [
  4674. { "time": 0, "angle": 1.16 },
  4675. { "time": 0.5, "angle": 0.22 },
  4676. { "time": 1, "angle": 1.16 },
  4677. { "time": 1.5, "angle": 0.22 },
  4678. { "time": 2, "angle": 1.16 }
  4679. ],
  4680. "translate": [
  4681. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4682. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4683. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4684. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4685. { "time": 2, "x": 0, "y": 0 }
  4686. ],
  4687. "scale": [
  4688. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4689. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4690. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4691. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4692. { "time": 2, "x": 1, "y": 1 }
  4693. ]
  4694. },
  4695. "bone12": {
  4696. "rotate": [
  4697. { "time": 0, "angle": -10.69 },
  4698. { "time": 0.5, "angle": -3.2 },
  4699. { "time": 1, "angle": -10.69 },
  4700. { "time": 1.5, "angle": -3.2 },
  4701. { "time": 2, "angle": -10.69 }
  4702. ],
  4703. "translate": [
  4704. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4705. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4706. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4707. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4708. { "time": 2, "x": 0, "y": 0 }
  4709. ],
  4710. "scale": [
  4711. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4712. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4713. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4714. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4715. { "time": 2, "x": 1, "y": 1 }
  4716. ]
  4717. },
  4718. "bone13": {
  4719. "rotate": [
  4720. { "time": 0, "angle": 8.3 },
  4721. { "time": 0.5, "angle": -3.7 },
  4722. { "time": 1, "angle": 8.3 },
  4723. { "time": 1.5, "angle": -3.7 },
  4724. { "time": 2, "angle": 8.3 }
  4725. ],
  4726. "translate": [
  4727. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4728. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4729. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4730. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4731. { "time": 2, "x": 0, "y": 0 }
  4732. ],
  4733. "scale": [
  4734. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4735. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4736. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4737. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4738. { "time": 2, "x": 1, "y": 1 }
  4739. ]
  4740. },
  4741. "bone14": {
  4742. "rotate": [
  4743. { "time": 0, "angle": 6.7 },
  4744. { "time": 0.5, "angle": 7.04 },
  4745. { "time": 1, "angle": 6.7 },
  4746. { "time": 1.5, "angle": 7.04 },
  4747. { "time": 2, "angle": 6.7 }
  4748. ],
  4749. "translate": [
  4750. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4751. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4752. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4753. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4754. { "time": 2, "x": 0, "y": 0 }
  4755. ],
  4756. "scale": [
  4757. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4758. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4759. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4760. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4761. { "time": 2, "x": 1, "y": 1 }
  4762. ]
  4763. },
  4764. "bone15": {
  4765. "rotate": [
  4766. { "time": 0, "angle": 9.96 },
  4767. { "time": 0.5, "angle": 0 },
  4768. { "time": 1, "angle": 9.96 },
  4769. { "time": 1.5, "angle": 0 },
  4770. { "time": 2, "angle": 9.96 }
  4771. ],
  4772. "translate": [
  4773. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4774. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4775. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4776. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4777. { "time": 2, "x": 0, "y": 0 }
  4778. ],
  4779. "scale": [
  4780. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4781. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4782. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4783. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4784. { "time": 2, "x": 1, "y": 1 }
  4785. ]
  4786. },
  4787. "bone16": {
  4788. "rotate": [
  4789. {
  4790. "time": 0,
  4791. "angle": 0,
  4792. "curve": [ 0.25, 0, 0.75, 1 ]
  4793. },
  4794. {
  4795. "time": 0.5,
  4796. "angle": -8.99,
  4797. "curve": [ 0.25, 0, 0.75, 1 ]
  4798. },
  4799. {
  4800. "time": 1,
  4801. "angle": 0,
  4802. "curve": [ 0.25, 0, 0.75, 1 ]
  4803. },
  4804. {
  4805. "time": 1.5,
  4806. "angle": -8.99,
  4807. "curve": [ 0.25, 0, 0.75, 1 ]
  4808. },
  4809. { "time": 2, "angle": 0 }
  4810. ],
  4811. "translate": [
  4812. {
  4813. "time": 0,
  4814. "x": 0,
  4815. "y": 0,
  4816. "curve": [ 0.25, 0, 0.75, 1 ]
  4817. },
  4818. {
  4819. "time": 0.5,
  4820. "x": 2.07,
  4821. "y": -3.85,
  4822. "curve": [ 0.25, 0, 0.75, 1 ]
  4823. },
  4824. {
  4825. "time": 1,
  4826. "x": 0,
  4827. "y": 0,
  4828. "curve": [ 0.25, 0, 0.75, 1 ]
  4829. },
  4830. {
  4831. "time": 1.5,
  4832. "x": 2.07,
  4833. "y": -3.85,
  4834. "curve": [ 0.25, 0, 0.75, 1 ]
  4835. },
  4836. { "time": 2, "x": 0, "y": 0 }
  4837. ],
  4838. "scale": [
  4839. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4840. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4841. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4842. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4843. { "time": 2, "x": 1, "y": 1 }
  4844. ]
  4845. },
  4846. "bone17": {
  4847. "rotate": [
  4848. { "time": 0, "angle": 0 },
  4849. { "time": 0.1667, "angle": 13.7 },
  4850. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4851. { "time": 1, "angle": 0 },
  4852. { "time": 1.1667, "angle": 13.7 },
  4853. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4854. { "time": 2, "angle": 0 }
  4855. ],
  4856. "translate": [
  4857. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4858. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4859. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4860. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4861. { "time": 2, "x": 0, "y": 0 }
  4862. ],
  4863. "scale": [
  4864. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4865. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4866. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4867. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4868. { "time": 2, "x": 1, "y": 1 }
  4869. ]
  4870. },
  4871. "bone18": {
  4872. "rotate": [
  4873. { "time": 0, "angle": 0 },
  4874. { "time": 0.5, "angle": -35.33 },
  4875. { "time": 1, "angle": 0 },
  4876. { "time": 1.5, "angle": -35.33 },
  4877. { "time": 2, "angle": 0 }
  4878. ],
  4879. "translate": [
  4880. { "time": 0, "x": 0, "y": 0 },
  4881. { "time": 0.5, "x": -6.05, "y": 4.27 },
  4882. { "time": 1, "x": 0, "y": 0 },
  4883. { "time": 1.5, "x": -6.05, "y": 4.27 },
  4884. { "time": 2, "x": 0, "y": 0 }
  4885. ],
  4886. "scale": [
  4887. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4888. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4889. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4890. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4891. { "time": 2, "x": 1, "y": 1 }
  4892. ]
  4893. },
  4894. "bone19": {
  4895. "rotate": [
  4896. { "time": 0, "angle": 0 },
  4897. { "time": 0.5, "angle": 306.24 },
  4898. { "time": 1, "angle": 0 },
  4899. { "time": 1.5, "angle": 306.24 },
  4900. { "time": 2, "angle": 0 }
  4901. ],
  4902. "translate": [
  4903. { "time": 0, "x": 0, "y": 0 },
  4904. { "time": 0.5, "x": -3.81, "y": 3.74 },
  4905. { "time": 1, "x": 0, "y": 0 },
  4906. { "time": 1.5, "x": -3.81, "y": 3.74 },
  4907. { "time": 2, "x": 0, "y": 0 }
  4908. ],
  4909. "scale": [
  4910. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4911. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4912. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4913. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4914. { "time": 2, "x": 1, "y": 1 }
  4915. ]
  4916. },
  4917. "bone20": {
  4918. "rotate": [
  4919. { "time": 0, "angle": -6.31 },
  4920. { "time": 0.1667, "angle": -15.67 },
  4921. { "time": 0.5, "angle": -33.18 },
  4922. { "time": 1, "angle": -6.31 },
  4923. { "time": 1.1667, "angle": -15.67 },
  4924. { "time": 1.5, "angle": -33.18 },
  4925. { "time": 2, "angle": -6.31 }
  4926. ],
  4927. "translate": [
  4928. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4929. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4930. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4931. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4932. { "time": 2, "x": 0, "y": 0 }
  4933. ],
  4934. "scale": [
  4935. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4936. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4937. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4938. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4939. { "time": 2, "x": 1, "y": 1 }
  4940. ]
  4941. },
  4942. "bone21": {
  4943. "rotate": [
  4944. { "time": 0, "angle": -3.74 },
  4945. { "time": 0.5, "angle": -0.23 },
  4946. { "time": 1, "angle": -3.74 },
  4947. { "time": 1.5, "angle": -0.23 },
  4948. { "time": 2, "angle": -3.74 }
  4949. ],
  4950. "translate": [
  4951. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4952. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4953. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4954. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4955. { "time": 2, "x": 0, "y": 0 }
  4956. ],
  4957. "scale": [
  4958. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4959. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4960. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4961. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4962. { "time": 2, "x": 1, "y": 1 }
  4963. ]
  4964. },
  4965. "bone22": {
  4966. "rotate": [
  4967. { "time": 0, "angle": 0 },
  4968. { "time": 0.5, "angle": -326.07 },
  4969. { "time": 1, "angle": 0 },
  4970. { "time": 1.5, "angle": -326.07 },
  4971. { "time": 2, "angle": 0 }
  4972. ],
  4973. "translate": [
  4974. { "time": 0, "x": 0, "y": 0 },
  4975. { "time": 0.5, "x": -2.51, "y": -10.45 },
  4976. { "time": 1, "x": 0, "y": 0 },
  4977. { "time": 1.5, "x": -2.51, "y": -10.45 },
  4978. { "time": 2, "x": 0, "y": 0 }
  4979. ],
  4980. "scale": [
  4981. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4982. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4983. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4984. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4985. { "time": 2, "x": 1, "y": 1 }
  4986. ]
  4987. },
  4988. "bone23": {
  4989. "rotate": [
  4990. { "time": 0, "angle": -18.02 },
  4991. { "time": 0.5, "angle": -29.71 },
  4992. { "time": 1, "angle": -18.02 },
  4993. { "time": 1.5, "angle": -29.71 },
  4994. { "time": 2, "angle": -18.02 }
  4995. ],
  4996. "translate": [
  4997. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4998. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4999. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5000. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5001. { "time": 2, "x": 0, "y": 0 }
  5002. ],
  5003. "scale": [
  5004. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5005. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5006. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5007. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5008. { "time": 2, "x": 1, "y": 1 }
  5009. ]
  5010. },
  5011. "bone24": {
  5012. "rotate": [
  5013. { "time": 0, "angle": 0, "curve": "stepped" },
  5014. { "time": 0.5, "angle": 0, "curve": "stepped" },
  5015. { "time": 1, "angle": 0, "curve": "stepped" },
  5016. { "time": 1.5, "angle": 0, "curve": "stepped" },
  5017. { "time": 2, "angle": 0 }
  5018. ],
  5019. "translate": [
  5020. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5021. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5022. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5023. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5024. { "time": 2, "x": 0, "y": 0 }
  5025. ],
  5026. "scale": [
  5027. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5028. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5029. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5030. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5031. { "time": 2, "x": 1, "y": 1 }
  5032. ]
  5033. },
  5034. "bone25": {
  5035. "rotate": [
  5036. { "time": 0, "angle": -4.19, "curve": "stepped" },
  5037. { "time": 1, "angle": -4.19, "curve": "stepped" },
  5038. { "time": 2, "angle": -4.19 }
  5039. ],
  5040. "translate": [
  5041. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5042. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5043. { "time": 2, "x": 0, "y": 0 }
  5044. ],
  5045. "scale": [
  5046. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5047. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5048. { "time": 2, "x": 1, "y": 1 }
  5049. ]
  5050. },
  5051. "bone26": {
  5052. "rotate": [
  5053. { "time": 0, "angle": 0, "curve": "stepped" },
  5054. { "time": 1, "angle": 0, "curve": "stepped" },
  5055. { "time": 1.1, "angle": 0, "curve": "stepped" },
  5056. { "time": 1.2, "angle": 0, "curve": "stepped" },
  5057. { "time": 1.3, "angle": 0 }
  5058. ],
  5059. "translate": [
  5060. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5061. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5062. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  5063. { "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
  5064. { "time": 1.3, "x": 0, "y": 0 }
  5065. ],
  5066. "scale": [
  5067. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5068. { "time": 1, "x": 1, "y": 1 },
  5069. { "time": 1.1, "x": 0.462, "y": 1, "curve": "stepped" },
  5070. { "time": 1.2, "x": 0.462, "y": 1 },
  5071. { "time": 1.3, "x": 1, "y": 1 }
  5072. ]
  5073. },
  5074. "bone27": {
  5075. "rotate": [
  5076. { "time": 0, "angle": 0, "curve": "stepped" },
  5077. { "time": 1, "angle": 0, "curve": "stepped" },
  5078. { "time": 1.1, "angle": 0, "curve": "stepped" },
  5079. { "time": 1.2, "angle": 0, "curve": "stepped" },
  5080. { "time": 1.3, "angle": 0 }
  5081. ],
  5082. "translate": [
  5083. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5084. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5085. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  5086. { "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
  5087. { "time": 1.3, "x": 0, "y": 0 }
  5088. ],
  5089. "scale": [
  5090. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5091. { "time": 1, "x": 1, "y": 1 },
  5092. { "time": 1.1, "x": 0.444, "y": 1, "curve": "stepped" },
  5093. { "time": 1.2, "x": 0.444, "y": 1 },
  5094. { "time": 1.3, "x": 1, "y": 1 }
  5095. ]
  5096. },
  5097. "bone28": {
  5098. "rotate": [
  5099. { "time": 0, "angle": 0, "curve": "stepped" },
  5100. { "time": 0.5, "angle": 0, "curve": "stepped" },
  5101. { "time": 1, "angle": 0, "curve": "stepped" },
  5102. { "time": 1.5, "angle": 0, "curve": "stepped" },
  5103. { "time": 2, "angle": 0 }
  5104. ],
  5105. "translate": [
  5106. { "time": 0, "x": -2.66, "y": -0.06 }
  5107. ],
  5108. "scale": [
  5109. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5110. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5111. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5112. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5113. { "time": 2, "x": 1, "y": 1 }
  5114. ]
  5115. },
  5116. "bone29": {
  5117. "rotate": [
  5118. { "time": 0, "angle": 0, "curve": "stepped" },
  5119. { "time": 1, "angle": 0, "curve": "stepped" },
  5120. { "time": 1.1, "angle": 0, "curve": "stepped" },
  5121. { "time": 1.2, "angle": 0, "curve": "stepped" },
  5122. { "time": 1.3, "angle": 0 }
  5123. ],
  5124. "translate": [
  5125. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5126. { "time": 1, "x": 0, "y": 0 },
  5127. { "time": 1.1, "x": -0.73, "y": -0.02, "curve": "stepped" },
  5128. { "time": 1.2, "x": -0.73, "y": -0.02 },
  5129. { "time": 1.3, "x": 0, "y": 0 }
  5130. ],
  5131. "scale": [
  5132. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5133. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5134. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  5135. { "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
  5136. { "time": 1.3, "x": 1, "y": 1 }
  5137. ]
  5138. },
  5139. "bone30": {
  5140. "rotate": [
  5141. { "time": 0, "angle": 0 },
  5142. { "time": 0.5, "angle": -4.11 },
  5143. { "time": 1, "angle": 0 },
  5144. { "time": 1.5, "angle": -4.11 },
  5145. { "time": 2, "angle": 0 }
  5146. ],
  5147. "translate": [
  5148. { "time": 0, "x": 0, "y": 0 },
  5149. { "time": 0.5, "x": -0.46, "y": 1.71 },
  5150. { "time": 1, "x": 0, "y": 0 },
  5151. { "time": 1.5, "x": -0.46, "y": 1.71 },
  5152. { "time": 2, "x": 0, "y": 0 }
  5153. ],
  5154. "scale": [
  5155. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5156. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5157. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5158. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5159. { "time": 2, "x": 1, "y": 1 }
  5160. ]
  5161. },
  5162. "bone31": {
  5163. "rotate": [
  5164. { "time": 0, "angle": 0 },
  5165. { "time": 0.5, "angle": 0.68 },
  5166. { "time": 1, "angle": 0 },
  5167. { "time": 1.5, "angle": 0.68 },
  5168. { "time": 2, "angle": 0 }
  5169. ],
  5170. "translate": [
  5171. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5172. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5173. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5174. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5175. { "time": 2, "x": 0, "y": 0 }
  5176. ],
  5177. "scale": [
  5178. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5179. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5180. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5181. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5182. { "time": 2, "x": 1, "y": 1 }
  5183. ]
  5184. },
  5185. "bone32": {
  5186. "rotate": [
  5187. { "time": 0, "angle": 0 },
  5188. { "time": 0.5, "angle": 2.96 },
  5189. { "time": 1, "angle": 0 },
  5190. { "time": 1.5, "angle": 2.96 },
  5191. { "time": 2, "angle": 0 }
  5192. ],
  5193. "translate": [
  5194. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5195. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5196. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5197. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5198. { "time": 2, "x": 0, "y": 0 }
  5199. ],
  5200. "scale": [
  5201. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5202. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5203. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5204. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5205. { "time": 2, "x": 1, "y": 1 }
  5206. ]
  5207. },
  5208. "bone33": {
  5209. "rotate": [
  5210. { "time": 0, "angle": 0 },
  5211. { "time": 0.5, "angle": -7.72 },
  5212. { "time": 1, "angle": 0 },
  5213. { "time": 1.5, "angle": -7.72 },
  5214. { "time": 2, "angle": 0 }
  5215. ],
  5216. "translate": [
  5217. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5218. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5219. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5220. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5221. { "time": 2, "x": 0, "y": 0 }
  5222. ],
  5223. "scale": [
  5224. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5225. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5226. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5227. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5228. { "time": 2, "x": 1, "y": 1 }
  5229. ]
  5230. },
  5231. "bone34": {
  5232. "rotate": [
  5233. { "time": 0, "angle": 0, "curve": "stepped" },
  5234. { "time": 0.5, "angle": 0, "curve": "stepped" },
  5235. { "time": 1, "angle": 0, "curve": "stepped" },
  5236. { "time": 1.5, "angle": 0, "curve": "stepped" },
  5237. { "time": 2, "angle": 0 }
  5238. ],
  5239. "translate": [
  5240. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5241. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5242. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5243. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5244. { "time": 2, "x": 0, "y": 0 }
  5245. ],
  5246. "scale": [
  5247. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5248. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5249. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5250. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5251. { "time": 2, "x": 1, "y": 1 }
  5252. ]
  5253. },
  5254. "bone35": {
  5255. "rotate": [
  5256. { "time": 0, "angle": 0 },
  5257. { "time": 0.5, "angle": 9.24 },
  5258. { "time": 1, "angle": 0 },
  5259. { "time": 1.5, "angle": 9.24 },
  5260. { "time": 2, "angle": 0 }
  5261. ],
  5262. "translate": [
  5263. { "time": 0, "x": 0, "y": 0 },
  5264. { "time": 0.5, "x": 1.1, "y": -0.19 },
  5265. { "time": 1, "x": 0, "y": 0 },
  5266. { "time": 1.5, "x": 1.1, "y": -0.19 },
  5267. { "time": 2, "x": 0, "y": 0 }
  5268. ],
  5269. "scale": [
  5270. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5271. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5272. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5273. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5274. { "time": 2, "x": 1, "y": 1 }
  5275. ]
  5276. },
  5277. "bone36": {
  5278. "rotate": [
  5279. { "time": 0, "angle": 0 },
  5280. { "time": 0.5, "angle": -16.74 },
  5281. { "time": 1, "angle": 0 },
  5282. { "time": 1.5, "angle": -16.74 },
  5283. { "time": 2, "angle": 0 }
  5284. ],
  5285. "translate": [
  5286. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5287. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5288. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5289. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5290. { "time": 2, "x": 0, "y": 0 }
  5291. ],
  5292. "scale": [
  5293. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5294. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5295. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5296. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5297. { "time": 2, "x": 1, "y": 1 }
  5298. ]
  5299. },
  5300. "bone37": {
  5301. "rotate": [
  5302. { "time": 0, "angle": 0 },
  5303. { "time": 0.5, "angle": -19.31 },
  5304. { "time": 1, "angle": 0 },
  5305. { "time": 1.5, "angle": -19.31 },
  5306. { "time": 2, "angle": 0 }
  5307. ],
  5308. "translate": [
  5309. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5310. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5311. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5312. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5313. { "time": 2, "x": 0, "y": 0 }
  5314. ],
  5315. "scale": [
  5316. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5317. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5318. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5319. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5320. { "time": 2, "x": 1, "y": 1 }
  5321. ]
  5322. },
  5323. "bone38": {
  5324. "rotate": [
  5325. { "time": 0, "angle": 0 },
  5326. { "time": 0.5, "angle": 5.43 },
  5327. { "time": 1, "angle": 0 },
  5328. { "time": 1.5, "angle": 5.43 },
  5329. { "time": 2, "angle": 0 }
  5330. ],
  5331. "translate": [
  5332. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5333. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5334. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5335. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5336. { "time": 2, "x": 0, "y": 0 }
  5337. ],
  5338. "scale": [
  5339. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5340. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5341. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5342. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5343. { "time": 2, "x": 1, "y": 1 }
  5344. ]
  5345. },
  5346. "bone39": {
  5347. "rotate": [
  5348. { "time": 0, "angle": 0 },
  5349. { "time": 0.5, "angle": 2.98 },
  5350. { "time": 1, "angle": 0 },
  5351. { "time": 1.5, "angle": 2.98 },
  5352. { "time": 2, "angle": 0 }
  5353. ],
  5354. "translate": [
  5355. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5356. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5357. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5358. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5359. { "time": 2, "x": 0, "y": 0 }
  5360. ],
  5361. "scale": [
  5362. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5363. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5364. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5365. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5366. { "time": 2, "x": 1, "y": 1 }
  5367. ]
  5368. },
  5369. "bone40": {
  5370. "rotate": [
  5371. { "time": 0, "angle": 0 },
  5372. { "time": 0.5, "angle": 1.5 },
  5373. { "time": 1, "angle": 0 },
  5374. { "time": 1.5, "angle": 1.5 },
  5375. { "time": 2, "angle": 0 }
  5376. ],
  5377. "translate": [
  5378. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5379. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5380. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5381. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5382. { "time": 2, "x": 0, "y": 0 }
  5383. ],
  5384. "scale": [
  5385. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5386. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5387. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5388. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5389. { "time": 2, "x": 1, "y": 1 }
  5390. ]
  5391. },
  5392. "bone41": {
  5393. "rotate": [
  5394. { "time": 0, "angle": 0 },
  5395. { "time": 0.5, "angle": 11.6 },
  5396. { "time": 1, "angle": 0 },
  5397. { "time": 1.5, "angle": 11.6 },
  5398. { "time": 2, "angle": 0 }
  5399. ],
  5400. "translate": [
  5401. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5402. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5403. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5404. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5405. { "time": 2, "x": 0, "y": 0 }
  5406. ],
  5407. "scale": [
  5408. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5409. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5410. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5411. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5412. { "time": 2, "x": 1, "y": 1 }
  5413. ]
  5414. },
  5415. "bone45": {
  5416. "rotate": [
  5417. { "time": 0, "angle": 0 },
  5418. { "time": 0.5, "angle": -3.16 },
  5419. { "time": 1, "angle": 0 },
  5420. { "time": 1.5, "angle": -3.16 },
  5421. { "time": 2, "angle": 0 }
  5422. ],
  5423. "translate": [
  5424. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5425. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5426. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5427. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5428. { "time": 2, "x": 0, "y": 0 }
  5429. ],
  5430. "scale": [
  5431. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5432. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5433. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5434. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5435. { "time": 2, "x": 1, "y": 1 }
  5436. ]
  5437. },
  5438. "bone46": {
  5439. "rotate": [
  5440. { "time": 0, "angle": 0 },
  5441. { "time": 0.5, "angle": -1.28 },
  5442. { "time": 1, "angle": 0 },
  5443. { "time": 1.5, "angle": -1.28 },
  5444. { "time": 2, "angle": 0 }
  5445. ],
  5446. "translate": [
  5447. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5448. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5449. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5450. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5451. { "time": 2, "x": 0, "y": 0 }
  5452. ],
  5453. "scale": [
  5454. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5455. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5456. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5457. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5458. { "time": 2, "x": 1, "y": 1 }
  5459. ]
  5460. },
  5461. "bone47": {
  5462. "rotate": [
  5463. { "time": 0, "angle": 0 },
  5464. { "time": 0.5, "angle": -5.21 },
  5465. { "time": 1, "angle": 0 },
  5466. { "time": 1.5, "angle": -5.21 },
  5467. { "time": 2, "angle": 0 }
  5468. ],
  5469. "translate": [
  5470. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5471. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5472. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5473. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5474. { "time": 2, "x": 0, "y": 0 }
  5475. ],
  5476. "scale": [
  5477. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5478. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5479. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5480. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5481. { "time": 2, "x": 1, "y": 1 }
  5482. ]
  5483. },
  5484. "bone48": {
  5485. "rotate": [
  5486. { "time": 0, "angle": 0, "curve": "stepped" },
  5487. { "time": 0.5, "angle": 0, "curve": "stepped" },
  5488. { "time": 1, "angle": 0, "curve": "stepped" },
  5489. { "time": 1.5, "angle": 0, "curve": "stepped" },
  5490. { "time": 2, "angle": 0 }
  5491. ],
  5492. "translate": [
  5493. { "time": 0, "x": 0, "y": 0 },
  5494. { "time": 0.5, "x": -0.54, "y": -2.14 },
  5495. { "time": 1, "x": 0, "y": 0 },
  5496. { "time": 1.5, "x": -0.54, "y": -2.14 },
  5497. { "time": 2, "x": 0, "y": 0 }
  5498. ],
  5499. "scale": [
  5500. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5501. { "time": 0.5, "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": 2, "x": 1, "y": 1 }
  5505. ]
  5506. },
  5507. "bone49": {
  5508. "rotate": [
  5509. { "time": 0, "angle": 0 },
  5510. { "time": 0.5, "angle": -10.51 },
  5511. { "time": 1, "angle": 0 },
  5512. { "time": 1.5, "angle": -10.51 },
  5513. { "time": 2, "angle": 0 }
  5514. ],
  5515. "translate": [
  5516. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5517. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5518. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5519. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5520. { "time": 2, "x": 0, "y": 0 }
  5521. ],
  5522. "scale": [
  5523. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5524. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5525. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5526. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5527. { "time": 2, "x": 1, "y": 1 }
  5528. ]
  5529. },
  5530. "bone50": {
  5531. "rotate": [
  5532. { "time": 0, "angle": 0 },
  5533. { "time": 0.5, "angle": -18.64 },
  5534. { "time": 1, "angle": 0 },
  5535. { "time": 1.5, "angle": -18.64 },
  5536. { "time": 2, "angle": 0 }
  5537. ],
  5538. "translate": [
  5539. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5540. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5541. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5542. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5543. { "time": 2, "x": 0, "y": 0 }
  5544. ],
  5545. "scale": [
  5546. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5547. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5548. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5549. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5550. { "time": 2, "x": 1, "y": 1 }
  5551. ]
  5552. },
  5553. "bone51": {
  5554. "rotate": [
  5555. { "time": 0, "angle": -4.22 },
  5556. { "time": 0.5, "angle": 9.56 },
  5557. { "time": 1, "angle": -4.22 },
  5558. { "time": 1.5, "angle": 9.56 },
  5559. { "time": 2, "angle": -4.22 }
  5560. ],
  5561. "translate": [
  5562. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5563. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5564. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5565. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5566. { "time": 2, "x": 0, "y": 0 }
  5567. ],
  5568. "scale": [
  5569. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5570. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5571. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5572. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5573. { "time": 2, "x": 1, "y": 1 }
  5574. ]
  5575. },
  5576. "bone52": {
  5577. "rotate": [
  5578. { "time": 0, "angle": 0 },
  5579. { "time": 0.5, "angle": 8.36 },
  5580. { "time": 1, "angle": 0 },
  5581. { "time": 1.5, "angle": 8.36 },
  5582. { "time": 2, "angle": 0 }
  5583. ],
  5584. "translate": [
  5585. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5586. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5587. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5588. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5589. { "time": 2, "x": 0, "y": 0 }
  5590. ],
  5591. "scale": [
  5592. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5593. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5594. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5595. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5596. { "time": 2, "x": 1, "y": 1 }
  5597. ]
  5598. },
  5599. "bone53": {
  5600. "rotate": [
  5601. { "time": 0, "angle": 0 },
  5602. { "time": 0.5, "angle": 4.85 },
  5603. { "time": 1, "angle": 0 },
  5604. { "time": 1.5, "angle": 4.85 },
  5605. { "time": 2, "angle": 0 }
  5606. ],
  5607. "translate": [
  5608. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5609. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5610. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5611. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5612. { "time": 2, "x": 0, "y": 0 }
  5613. ],
  5614. "scale": [
  5615. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5616. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5617. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5618. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5619. { "time": 2, "x": 1, "y": 1 }
  5620. ]
  5621. },
  5622. "bone54": {
  5623. "rotate": [
  5624. { "time": 0, "angle": 11.42 },
  5625. { "time": 0.5, "angle": -4.12 },
  5626. { "time": 1, "angle": 11.42 },
  5627. { "time": 1.5, "angle": -4.12 },
  5628. { "time": 2, "angle": 11.42 }
  5629. ],
  5630. "translate": [
  5631. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5632. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5633. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5634. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5635. { "time": 2, "x": 0, "y": 0 }
  5636. ],
  5637. "scale": [
  5638. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5639. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5640. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5641. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5642. { "time": 2, "x": 1, "y": 1 }
  5643. ]
  5644. },
  5645. "bone55": {
  5646. "rotate": [
  5647. { "time": 0, "angle": 0, "curve": "stepped" },
  5648. { "time": 0.5, "angle": 0, "curve": "stepped" },
  5649. { "time": 1, "angle": 0, "curve": "stepped" },
  5650. { "time": 1.5, "angle": 0, "curve": "stepped" },
  5651. { "time": 2, "angle": 0 }
  5652. ],
  5653. "translate": [
  5654. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5655. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5656. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5657. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5658. { "time": 2, "x": 0, "y": 0 }
  5659. ],
  5660. "scale": [
  5661. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5662. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5663. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5664. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5665. { "time": 2, "x": 1, "y": 1 }
  5666. ]
  5667. },
  5668. "bone56": {
  5669. "rotate": [
  5670. { "time": 0, "angle": 0, "curve": "stepped" },
  5671. { "time": 0.5, "angle": 0, "curve": "stepped" },
  5672. { "time": 1, "angle": 0, "curve": "stepped" },
  5673. { "time": 1.5, "angle": 0, "curve": "stepped" },
  5674. { "time": 2, "angle": 0 }
  5675. ],
  5676. "translate": [
  5677. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5678. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5679. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5680. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5681. { "time": 2, "x": 0, "y": 0 }
  5682. ],
  5683. "scale": [
  5684. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5685. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5686. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5687. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5688. { "time": 2, "x": 1, "y": 1 }
  5689. ]
  5690. },
  5691. "bone57": {
  5692. "rotate": [
  5693. { "time": 0, "angle": 0, "curve": "stepped" },
  5694. { "time": 0.5, "angle": 0, "curve": "stepped" },
  5695. { "time": 1, "angle": 0, "curve": "stepped" },
  5696. { "time": 1.5, "angle": 0, "curve": "stepped" },
  5697. { "time": 2, "angle": 0 }
  5698. ],
  5699. "translate": [
  5700. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5701. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5702. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5703. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5704. { "time": 2, "x": 0, "y": 0 }
  5705. ],
  5706. "scale": [
  5707. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5708. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5709. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5710. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5711. { "time": 2, "x": 1, "y": 1 }
  5712. ]
  5713. },
  5714. "bone58": {
  5715. "rotate": [
  5716. { "time": 0, "angle": 54.47 },
  5717. { "time": 0.5, "angle": 34.13 },
  5718. { "time": 1, "angle": 54.47 },
  5719. { "time": 1.5, "angle": 34.13 },
  5720. { "time": 2, "angle": 54.47 }
  5721. ],
  5722. "translate": [
  5723. { "time": 0, "x": -34.16, "y": 14.46, "curve": "stepped" },
  5724. { "time": 0.5, "x": -34.16, "y": 14.46, "curve": "stepped" },
  5725. { "time": 1, "x": -34.16, "y": 14.46, "curve": "stepped" },
  5726. { "time": 1.5, "x": -34.16, "y": 14.46, "curve": "stepped" },
  5727. { "time": 2, "x": -34.16, "y": 14.46 }
  5728. ],
  5729. "scale": [
  5730. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5731. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5732. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5733. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5734. { "time": 2, "x": 1, "y": 1 }
  5735. ]
  5736. },
  5737. "bone42": {
  5738. "rotate": [
  5739. { "time": 0, "angle": 0, "curve": "stepped" },
  5740. { "time": 0.5, "angle": 0, "curve": "stepped" },
  5741. { "time": 1, "angle": 0, "curve": "stepped" },
  5742. { "time": 1.5, "angle": 0, "curve": "stepped" },
  5743. { "time": 2, "angle": 0 }
  5744. ],
  5745. "translate": [
  5746. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5747. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5748. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5749. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5750. { "time": 2, "x": 0, "y": 0 }
  5751. ],
  5752. "scale": [
  5753. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5754. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5755. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5756. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5757. { "time": 2, "x": 1, "y": 1 }
  5758. ]
  5759. },
  5760. "bone43": {
  5761. "rotate": [
  5762. { "time": 0, "angle": 0, "curve": "stepped" },
  5763. { "time": 0.5, "angle": 0, "curve": "stepped" },
  5764. { "time": 1, "angle": 0, "curve": "stepped" },
  5765. { "time": 1.5, "angle": 0, "curve": "stepped" },
  5766. { "time": 2, "angle": 0 }
  5767. ],
  5768. "translate": [
  5769. { "time": 0, "x": 0.11, "y": 1.83 },
  5770. { "time": 0.5, "x": 0.34, "y": 5.95 },
  5771. { "time": 1, "x": 0.11, "y": 1.83 },
  5772. { "time": 1.5, "x": 0.34, "y": 5.95 },
  5773. { "time": 2, "x": 0.11, "y": 1.83 }
  5774. ],
  5775. "scale": [
  5776. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5777. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5778. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5779. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5780. { "time": 2, "x": 1, "y": 1 }
  5781. ]
  5782. },
  5783. "bone44": {
  5784. "rotate": [
  5785. { "time": 0, "angle": 0, "curve": "stepped" },
  5786. { "time": 0.5, "angle": 0, "curve": "stepped" },
  5787. { "time": 1, "angle": 0, "curve": "stepped" },
  5788. { "time": 1.5, "angle": 0, "curve": "stepped" },
  5789. { "time": 2, "angle": 0 }
  5790. ],
  5791. "translate": [
  5792. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5793. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5794. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5795. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5796. { "time": 2, "x": 0, "y": 0 }
  5797. ],
  5798. "scale": [
  5799. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5800. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5801. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5802. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5803. { "time": 2, "x": 1, "y": 1 }
  5804. ]
  5805. },
  5806. "bone59": {
  5807. "rotate": [
  5808. { "time": 0, "angle": 0, "curve": "stepped" },
  5809. { "time": 0.5, "angle": 0, "curve": "stepped" },
  5810. { "time": 1, "angle": 0, "curve": "stepped" },
  5811. { "time": 1.5, "angle": 0, "curve": "stepped" },
  5812. { "time": 2, "angle": 0 }
  5813. ],
  5814. "translate": [
  5815. { "time": 0, "x": 0, "y": 0 },
  5816. { "time": 0.5, "x": -3.98, "y": 6 },
  5817. { "time": 1, "x": 0, "y": 0 },
  5818. { "time": 1.5, "x": -3.98, "y": 6 },
  5819. { "time": 2, "x": 0, "y": 0 }
  5820. ],
  5821. "scale": [
  5822. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5823. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5824. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5825. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5826. { "time": 2, "x": 1, "y": 1 }
  5827. ]
  5828. }
  5829. },
  5830. "deform": {
  5831. "default": {
  5832. "dangbu": {
  5833. "dangbu": [
  5834. {
  5835. "time": 0,
  5836. "offset": 2,
  5837. "vertices": [ -1.41, 1.69201, 0, -1.69201 ]
  5838. },
  5839. {
  5840. "time": 0.1667,
  5841. "offset": 2,
  5842. "vertices": [ 1.04, -3.328, -1.86199, 2.8, 2.32299, 2.89002 ]
  5843. },
  5844. {
  5845. "time": 0.2,
  5846. "vertices": [ -0.54233, 0.86766, 0.77467, -3.59286, -0.73732, 7.00732, 2.59959, 1.64579 ]
  5847. },
  5848. {
  5849. "time": 0.2667,
  5850. "vertices": [ -1.62699, 2.60297, 0.244, -4.12258, -0.36299, 7.54696, 6.90278, 0.2824 ]
  5851. },
  5852. {
  5853. "time": 0.3333,
  5854. "offset": 2,
  5855. "vertices": [ 1.67689, -4.84554, -0.51999, 4.99199, 0.97001, 4.022 ]
  5856. },
  5857. { "time": 0.5 },
  5858. {
  5859. "time": 0.6667,
  5860. "offset": 2,
  5861. "vertices": [ 1.04, -3.328, -1.03999, 4.99198, 1.03999, 5.2 ]
  5862. },
  5863. {
  5864. "time": 0.7333,
  5865. "vertices": [ 2.55501, -1.82499, 0.96601, -8.04257, -0.36299, 9.72497, 5.69279, -2.13762 ]
  5866. },
  5867. {
  5868. "time": 0.8333,
  5869. "vertices": [ 0.832, -2.91199, 1.144, -4.368, -1.14399, 2.49599, 1.45399, 0.15001 ]
  5870. },
  5871. {
  5872. "time": 1,
  5873. "offset": 2,
  5874. "vertices": [ -1.41, 1.69201, 0, -1.69201 ]
  5875. },
  5876. {
  5877. "time": 1.1667,
  5878. "offset": 2,
  5879. "vertices": [ 1.04, -3.328, -1.86199, 2.8, 2.32299, 2.89002 ]
  5880. },
  5881. {
  5882. "time": 1.2,
  5883. "vertices": [ -0.54233, 0.86766, 0.77467, -3.59286, -0.73732, 7.00732, 2.59959, 1.64579 ]
  5884. },
  5885. {
  5886. "time": 1.2667,
  5887. "vertices": [ -1.62699, 2.60297, 0.244, -4.12258, -0.36299, 7.54696, 6.90278, 0.2824 ]
  5888. },
  5889. {
  5890. "time": 1.3333,
  5891. "offset": 2,
  5892. "vertices": [ 1.67689, -4.84554, -0.51999, 4.99199, 0.97001, 4.022 ]
  5893. },
  5894. { "time": 1.5 },
  5895. {
  5896. "time": 1.6667,
  5897. "offset": 2,
  5898. "vertices": [ 1.04, -3.328, -1.03999, 4.99198, 1.03999, 5.2 ]
  5899. },
  5900. {
  5901. "time": 1.7333,
  5902. "vertices": [ 2.55501, -1.82499, 0.96601, -8.04257, -0.36299, 9.72497, 5.69279, -2.13762 ]
  5903. },
  5904. {
  5905. "time": 1.8333,
  5906. "vertices": [ 0.832, -2.91199, 1.144, -4.368, -1.14399, 2.49599, 1.45399, 0.15001 ]
  5907. },
  5908. {
  5909. "time": 2,
  5910. "offset": 2,
  5911. "vertices": [ -1.41, 1.69201, 0, -1.69201 ]
  5912. }
  5913. ]
  5914. },
  5915. "mao2": {
  5916. "mao2": [
  5917. { "time": 0 },
  5918. {
  5919. "time": 0.5,
  5920. "offset": 44,
  5921. "vertices": [ -1.32783, -2.86702, -2.74734, -1.56043, -1.22708, -2.22385, -2.2914, -1.09575, -1.1263, -1.5807, -1.72302, -2.58544 ]
  5922. },
  5923. { "time": 1 },
  5924. {
  5925. "time": 1.5,
  5926. "offset": 44,
  5927. "vertices": [ -1.32783, -2.86702, -2.74734, -1.56043, -1.22708, -2.22385, -2.2914, -1.09575, -1.1263, -1.5807, -1.72302, -2.58544 ]
  5928. },
  5929. { "time": 2 }
  5930. ]
  5931. },
  5932. "shenti": {
  5933. "shenti": [
  5934. { "time": 0 },
  5935. {
  5936. "time": 0.5,
  5937. "vertices": [ -0.14154, 3.58575, -0.267, 3.57859, -0.14154, 3.58575, -0.267, 3.57859, -0.14154, 3.58575, -0.267, 3.57859, -0.14154, 3.58575, -0.267, 3.57859, -0.14154, 3.58575, -0.267, 3.57859, -0.14154, 3.58575, -0.267, 3.57859, -0.14154, 3.58575, -0.12409, 3.14318, 0.03625, -0.91798, 0.0684, -0.91615, 0.03625, -0.91798, 0.0684, -0.91615, 0.03625, -0.91798, 0.0684, -0.91615, 0.03625, -0.91798, 0.0684, -0.91615, 0.03625, -0.91798, 0.0684, -0.91615, 0.03625, -0.91798, 0.0684, -0.91615, 0.03625, -0.91798, 0.0684, -0.91615, 0, 0, -0.23415, 3.13691, -0.14154, 3.58575, -0.267, 3.57859, -0.12409, 3.14318, -0.12409, 3.14318, -0.12409, 3.14318, -0.23415, 3.13691, -0.12409, 3.14318, -0.23415, 3.13691, -0.12409, 3.14318, -0.23415, 3.13691, -0.12409, 3.14318, -0.23415, 3.13691 ]
  5938. },
  5939. { "time": 1 },
  5940. {
  5941. "time": 1.5,
  5942. "vertices": [ -0.14154, 3.58575, -0.267, 3.57859, -0.14154, 3.58575, -0.267, 3.57859, -0.14154, 3.58575, -0.267, 3.57859, -0.14154, 3.58575, -0.267, 3.57859, -0.14154, 3.58575, -0.267, 3.57859, -0.14154, 3.58575, -0.267, 3.57859, -0.14154, 3.58575, -0.12409, 3.14318, 0.03625, -0.91798, 0.0684, -0.91615, 0.03625, -0.91798, 0.0684, -0.91615, 0.03625, -0.91798, 0.0684, -0.91615, 0.03625, -0.91798, 0.0684, -0.91615, 0.03625, -0.91798, 0.0684, -0.91615, 0.03625, -0.91798, 0.0684, -0.91615, 0.03625, -0.91798, 0.0684, -0.91615, 0, 0, -0.23415, 3.13691, -0.14154, 3.58575, -0.267, 3.57859, -0.12409, 3.14318, -0.12409, 3.14318, -0.12409, 3.14318, -0.23415, 3.13691, -0.12409, 3.14318, -0.23415, 3.13691, -0.12409, 3.14318, -0.23415, 3.13691, -0.12409, 3.14318, -0.23415, 3.13691 ]
  5943. },
  5944. { "time": 2 }
  5945. ]
  5946. },
  5947. "toufa1": {
  5948. "toufa1": [
  5949. { "time": 0 },
  5950. {
  5951. "time": 0.5,
  5952. "vertices": [ 1.36891, 1.05775, 2.07329, 0.20283, 1.25812, -3.26926, 0, 0, 0, 0, 0.66957, 1.56671 ]
  5953. },
  5954. { "time": 1 },
  5955. {
  5956. "time": 1.5,
  5957. "vertices": [ 1.36891, 1.05775, 2.07329, 0.20283, 1.25812, -3.26926, 0, 0, 0, 0, 0.66957, 1.56671 ]
  5958. },
  5959. { "time": 2 }
  5960. ]
  5961. },
  5962. "youtui": {
  5963. "youtui": [
  5964. {
  5965. "time": 0,
  5966. "offset": 78,
  5967. "vertices": [ -5.41272, -1.48596 ]
  5968. },
  5969. {
  5970. "time": 0.2,
  5971. "vertices": [ 1.38607, 3.02599, 2.99385, 1.45416, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -2.57829, -0.67412, -0.80765, 3.37963, 1.61161, 2.08953 ]
  5972. },
  5973. {
  5974. "time": 0.3333,
  5975. "offset": 78,
  5976. "vertices": [ -0.68867, -0.1329, -4.54354, -0.04957, -6.43407, 0.62575 ]
  5977. },
  5978. {
  5979. "time": 0.5,
  5980. "vertices": [ -6.98553, 0.81479, -6.78326, 1.85742, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1.67336, 0.54363, -4.48808, 0.12826, -7.73885, 0.29864 ]
  5981. },
  5982. {
  5983. "time": 0.6667,
  5984. "vertices": [ -4.65702, 0.5432, -4.52217, 1.23828, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.26052, -1.57235, -0.49429, -1.51519, 1.48793, -0.57113, -1.39421, -2.11618, -2.99205, 0.08551, -5.15923, 0.1991 ]
  5985. },
  5986. {
  5987. "time": 1,
  5988. "offset": 78,
  5989. "vertices": [ -5.41272, -1.48596 ]
  5990. },
  5991. {
  5992. "time": 1.2,
  5993. "vertices": [ 1.38607, 3.02599, 2.99385, 1.45416, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -2.57829, -0.67412, -0.80765, 3.37963, 1.61161, 2.08953 ]
  5994. },
  5995. {
  5996. "time": 1.3333,
  5997. "offset": 78,
  5998. "vertices": [ -0.68867, -0.1329, -4.54354, -0.04957, -6.43407, 0.62575 ]
  5999. },
  6000. {
  6001. "time": 1.5,
  6002. "vertices": [ -6.98553, 0.81479, -6.78326, 1.85742, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1.67336, 0.54363, -4.48808, 0.12826, -7.73885, 0.29864 ]
  6003. },
  6004. {
  6005. "time": 1.6667,
  6006. "vertices": [ -4.65702, 0.5432, -4.52217, 1.23828, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.26052, -1.57235, -0.49429, -1.51519, 1.48793, -0.57113, -1.39421, -2.11618, -2.99205, 0.08551, -5.15923, 0.1991 ]
  6007. },
  6008. {
  6009. "time": 2,
  6010. "offset": 78,
  6011. "vertices": [ -5.41272, -1.48596 ]
  6012. }
  6013. ]
  6014. },
  6015. "zuotui": {
  6016. "zuotui": [
  6017. {
  6018. "time": 0,
  6019. "vertices": [ -2.8166, 0.94912, -2.57348, 1.48698, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.76686, -0.34282, -5.63393, 0.57962 ]
  6020. },
  6021. {
  6022. "time": 0.2,
  6023. "offset": 67,
  6024. "vertices": [ -1.43046, -0.17823, -1.41932, -2.17308, -3.21509, -0.34499, 0.52683, -2.40757, -0.18352 ]
  6025. },
  6026. {
  6027. "time": 0.5,
  6028. "offset": 66,
  6029. "vertices": [ -2.09449, -1.00544, -2.25189, -0.57174, -9.07353, -4.90213, -1.92042, 1.4156, 2.43197, -1.32824 ]
  6030. },
  6031. {
  6032. "time": 0.6667,
  6033. "vertices": [ 0.5159, 2.12881, 1.69329, 1.38962, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1.47216, 0.95892, -0.5812, 0.96565, -6.04902, -3.26808, -0.73319, 2.21648, 1.85231, 0.24169 ]
  6034. },
  6035. {
  6036. "time": 0.8,
  6037. "vertices": [ 0.30954, 1.27729, 1.01597, 0.83377, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.54431, -0.49084, 0.24988, -1.09895, 0.13916, -3.36676, -0.61704, 0.79496, -1.14219, 0.37686 ]
  6038. },
  6039. {
  6040. "time": 1,
  6041. "vertices": [ -2.8166, 0.94912, -2.57348, 1.48698, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.76686, -0.34282, -5.63393, 0.57962 ]
  6042. },
  6043. {
  6044. "time": 1.2,
  6045. "offset": 67,
  6046. "vertices": [ -1.43046, -0.17823, -1.41932, -2.17308, -3.21509, -0.34499, 0.52683, -2.40757, -0.18352 ]
  6047. },
  6048. {
  6049. "time": 1.5,
  6050. "offset": 66,
  6051. "vertices": [ -2.09449, -1.00544, -2.25189, -0.57174, -9.07353, -4.90213, -1.92042, 1.4156, 2.43197, -1.32824 ]
  6052. },
  6053. {
  6054. "time": 1.6667,
  6055. "vertices": [ 0.5159, 2.12881, 1.69329, 1.38962, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1.47216, 0.95892, -0.5812, 0.96565, -6.04902, -3.26808, -0.73319, 2.21648, 1.85231, 0.24169 ]
  6056. },
  6057. {
  6058. "time": 1.8,
  6059. "vertices": [ 0.30954, 1.27729, 1.01597, 0.83377, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.54431, -0.49084, 0.24988, -1.09895, 0.13916, -3.36676, -0.61704, 0.79496, -1.14219, 0.37686 ]
  6060. },
  6061. {
  6062. "time": 2,
  6063. "vertices": [ -2.8166, 0.94912, -2.57348, 1.48698, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.76686, -0.34282, -5.63393, 0.57962 ]
  6064. }
  6065. ]
  6066. }
  6067. }
  6068. }
  6069. }
  6070. }
  6071. }