| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226 |
- {
- "skeleton": { "hash": "XCYpAhDxUn0", "spine": "4.2.33", "x": -266, "y": -265, "width": 531, "height": 531 },
- "bones": [
- { "name": "root" },
- { "name": "all", "parent": "root" },
- { "name": "quan01", "parent": "all" },
- { "name": "quan02", "parent": "all" },
- { "name": "quan03", "parent": "all" },
- { "name": "quan04", "parent": "all" },
- { "name": "quan05", "parent": "all" },
- { "name": "quan06", "parent": "all" },
- { "name": "quan07", "parent": "all" },
- { "name": "quan08", "parent": "all" },
- { "name": "quan9", "parent": "all" },
- { "name": "quan10", "parent": "all" },
- { "name": "zi1", "parent": "root" },
- { "name": "bone", "parent": "zi1", "x": -206.49 },
- { "name": "bone2", "parent": "zi1", "x": -185.13 },
- { "name": "bone3", "parent": "zi1", "x": -162.36 },
- { "name": "bone4", "parent": "zi1", "x": -142.35 },
- { "name": "bone5", "parent": "zi1", "x": -121.31 },
- { "name": "bone6", "parent": "zi1", "x": -99.23 },
- { "name": "bone7", "parent": "zi1", "x": -78.18 },
- { "name": "bone8", "parent": "zi1", "x": -56.79 },
- { "name": "bone9", "parent": "zi1", "x": -34.37 },
- { "name": "quan0101", "parent": "root", "scaleX": 8, "scaleY": 8 },
- { "name": "zi2", "parent": "root", "scaleX": -1 },
- { "name": "bone10", "parent": "zi2", "x": -206.49, "scaleX": -1 },
- { "name": "bone11", "parent": "zi2", "x": -185.13, "scaleX": -1 },
- { "name": "bone12", "parent": "zi2", "x": -162.36, "scaleX": -1 },
- { "name": "bone13", "parent": "zi2", "x": -142.35, "scaleX": -1 },
- { "name": "bone14", "parent": "zi2", "x": -121.31, "scaleX": -1 },
- { "name": "bone15", "parent": "zi2", "x": -99.23, "scaleX": -1 },
- { "name": "bone16", "parent": "zi2", "x": -78.18, "scaleX": -1 },
- { "name": "bone17", "parent": "zi2", "x": -56.79, "scaleX": -1 },
- { "name": "bone18", "parent": "zi2", "x": -34.37, "scaleX": -1 },
- { "name": "zi3", "parent": "root", "rotation": -89.98, "scaleX": -1 },
- { "name": "bone19", "parent": "zi3", "rotation": -90.18, "x": -205.9, "scaleX": -1 },
- { "name": "bone20", "parent": "zi3", "rotation": -91.18, "x": -183.66, "scaleX": -1 },
- { "name": "bone21", "parent": "zi3", "rotation": 269.29, "x": -162.36, "scaleX": -1 },
- { "name": "bone22", "parent": "zi3", "rotation": 269.29, "x": -140.29, "y": 0.59, "scaleX": -1 },
- { "name": "bone23", "parent": "zi3", "rotation": 269.29, "x": -120.13, "scaleX": -1 },
- { "name": "bone24", "parent": "zi3", "rotation": 269.29, "x": -97.76, "y": -0.29, "scaleX": -1 },
- { "name": "bone25", "parent": "zi3", "rotation": 269.29, "x": -77.01, "scaleX": -1 },
- { "name": "bone26", "parent": "zi3", "rotation": 269.29, "x": -54.73, "scaleX": -1 },
- { "name": "bone27", "parent": "zi3", "rotation": 269.29, "x": -33.19, "scaleX": -1 },
- { "name": "zi4", "parent": "root", "rotation": 90, "scaleX": -1 },
- { "name": "bone28", "parent": "zi4", "rotation": 89.65, "x": -206.37, "y": -0.31, "scaleX": -1 },
- { "name": "bone29", "parent": "zi4", "rotation": 89.34, "x": -185.25, "scaleX": -1 },
- { "name": "bone30", "parent": "zi4", "rotation": 92.36, "x": -163.3, "y": -0.94, "scaleX": -1 },
- { "name": "bone31", "parent": "zi4", "rotation": 448.58, "x": -141.86, "y": -1.3, "scaleX": -1 },
- { "name": "bone32", "parent": "zi4", "rotation": 448.58, "x": -121.23, "y": -0.63, "scaleX": -1 },
- { "name": "bone33", "parent": "zi4", "rotation": 448.58, "x": -99.96, "y": -0.14, "scaleX": -1 },
- { "name": "bone34", "parent": "zi4", "rotation": 448.58, "x": -79.2, "y": -0.47, "scaleX": -1 },
- { "name": "bone35", "parent": "zi4", "rotation": 448.58, "x": -57.09, "y": -0.16, "scaleX": -1 },
- { "name": "bone36", "parent": "zi4", "rotation": 448.58, "x": -34.76, "scaleX": -1 },
- { "name": "xian", "parent": "root" },
- { "name": "quan101", "parent": "xian", "scaleX": 8, "scaleY": 8 },
- { "name": "quan102", "parent": "xian", "rotation": 90.67, "scaleX": 8, "scaleY": 8 },
- { "name": "quan103", "parent": "xian", "rotation": 90.67, "scaleX": 8, "scaleY": 8 },
- { "name": "quan104", "parent": "xian", "rotation": 90.67, "scaleX": 8, "scaleY": 8 },
- { "name": "xian2", "parent": "root", "rotation": 143.46 },
- { "name": "quan105", "parent": "xian2", "scaleX": 8, "scaleY": 8 },
- { "name": "quan106", "parent": "xian2", "rotation": 90.67, "scaleX": 8, "scaleY": 8 },
- { "name": "quan107", "parent": "xian2", "rotation": 90.67, "scaleX": 8, "scaleY": 8 },
- { "name": "quan108", "parent": "xian2", "rotation": 90.67, "scaleX": 8, "scaleY": 8 },
- { "name": "xian3", "parent": "root", "rotation": 143.46, "scaleX": -1 },
- { "name": "quan109", "parent": "xian3", "scaleX": 8, "scaleY": 8 },
- { "name": "quan110", "parent": "xian3", "rotation": 90.67, "scaleX": 8, "scaleY": 8 },
- { "name": "quan111", "parent": "xian3", "rotation": 90.67, "scaleX": 8, "scaleY": 8 },
- { "name": "quan112", "parent": "xian3", "rotation": 90.67, "scaleX": 8, "scaleY": 8 },
- { "name": "xian4", "parent": "root", "rotation": 143.46, "scaleX": -1 },
- { "name": "quan113", "parent": "xian4", "scaleX": 8, "scaleY": 8 },
- { "name": "quan114", "parent": "xian4", "rotation": 90.67, "scaleX": 8, "scaleY": 8 },
- { "name": "quan115", "parent": "xian4", "rotation": 90.67, "scaleX": 8, "scaleY": 8 },
- { "name": "quan116", "parent": "xian4", "rotation": 90.67, "scaleX": 8, "scaleY": 8 },
- { "name": "quan117", "parent": "root", "scaleX": 8, "scaleY": 8 }
- ],
- "slots": [
- { "name": "quan10", "bone": "quan10", "attachment": "quan10" },
- { "name": "quan09", "bone": "quan9", "attachment": "quan09" },
- { "name": "quan08", "bone": "quan08", "attachment": "quan08" },
- { "name": "quan8", "bone": "quan07", "attachment": "quan08" },
- { "name": "quan9", "bone": "quan06", "attachment": "quan08" },
- { "name": "quan12", "bone": "quan05", "attachment": "quan08" },
- { "name": "quan04", "bone": "quan04", "attachment": "quan04" },
- { "name": "quan03", "bone": "quan03", "attachment": "quan03" },
- { "name": "quan02", "bone": "quan02", "attachment": "quan02" },
- { "name": "quan2", "bone": "quan01", "attachment": "quan02" },
- { "name": "red", "bone": "all", "attachment": "red" },
- { "name": "l1", "bone": "bone", "attachment": "l1" },
- { "name": "l10", "bone": "bone10", "attachment": "l1" },
- { "name": "l19", "bone": "bone19", "attachment": "l1" },
- { "name": "l28", "bone": "bone28", "attachment": "l1" },
- { "name": "l2", "bone": "bone2", "attachment": "l2" },
- { "name": "l11", "bone": "bone11", "attachment": "l2" },
- { "name": "l20", "bone": "bone20", "attachment": "l2" },
- { "name": "l29", "bone": "bone29", "attachment": "l2" },
- { "name": "l3", "bone": "bone3", "attachment": "l3" },
- { "name": "l12", "bone": "bone12", "attachment": "l3" },
- { "name": "l21", "bone": "bone21", "attachment": "l3" },
- { "name": "l30", "bone": "bone30", "attachment": "l3" },
- { "name": "l4", "bone": "bone4", "attachment": "l4" },
- { "name": "l13", "bone": "bone13", "attachment": "l4" },
- { "name": "l22", "bone": "bone22", "attachment": "l4" },
- { "name": "l31", "bone": "bone31", "attachment": "l4" },
- { "name": "l5", "bone": "bone5", "attachment": "l5" },
- { "name": "l14", "bone": "bone14", "attachment": "l5" },
- { "name": "l23", "bone": "bone23", "attachment": "l5" },
- { "name": "l32", "bone": "bone32", "attachment": "l5" },
- { "name": "l6", "bone": "bone6", "attachment": "l6" },
- { "name": "l15", "bone": "bone15", "attachment": "l6" },
- { "name": "l24", "bone": "bone24", "attachment": "l6" },
- { "name": "l33", "bone": "bone33", "attachment": "l6" },
- { "name": "l7", "bone": "bone7", "attachment": "l7" },
- { "name": "l16", "bone": "bone16", "attachment": "l7" },
- { "name": "l25", "bone": "bone25", "attachment": "l7" },
- { "name": "l34", "bone": "bone34", "attachment": "l7" },
- { "name": "l8", "bone": "bone8", "attachment": "l8" },
- { "name": "l17", "bone": "bone17", "attachment": "l8" },
- { "name": "l26", "bone": "bone26", "attachment": "l8" },
- { "name": "l35", "bone": "bone35", "attachment": "l8" },
- { "name": "l9", "bone": "bone9", "attachment": "l9" },
- { "name": "l18", "bone": "bone18", "attachment": "l9" },
- { "name": "l27", "bone": "bone27", "attachment": "l9" },
- { "name": "l36", "bone": "bone36", "attachment": "l9" },
- { "name": "root", "bone": "root" },
- { "name": "quan01", "bone": "quan0101", "blend": "additive" },
- { "name": "quan22", "bone": "quan117", "blend": "additive" },
- { "name": "quan1", "bone": "quan101", "attachment": "quan01", "blend": "additive" },
- { "name": "quan6", "bone": "quan105", "attachment": "quan01", "blend": "additive" },
- { "name": "quan14", "bone": "quan109", "attachment": "quan01", "blend": "additive" },
- { "name": "quan18", "bone": "quan113", "color": "ce00ffff", "attachment": "quan01", "blend": "additive" },
- { "name": "quan3", "bone": "quan102", "attachment": "quan01", "blend": "additive" },
- { "name": "quan7", "bone": "quan106", "attachment": "quan01", "blend": "additive" },
- { "name": "quan15", "bone": "quan110", "attachment": "quan01", "blend": "additive" },
- { "name": "quan19", "bone": "quan114", "attachment": "quan01", "blend": "additive" },
- { "name": "quan4", "bone": "quan103", "attachment": "quan01", "blend": "additive" },
- { "name": "quan11", "bone": "quan107", "attachment": "quan01", "blend": "additive" },
- { "name": "quan16", "bone": "quan111", "attachment": "quan01", "blend": "additive" },
- { "name": "quan20", "bone": "quan115", "attachment": "quan01", "blend": "additive" },
- { "name": "quan5", "bone": "quan104", "attachment": "quan01", "blend": "additive" },
- { "name": "quan13", "bone": "quan108", "attachment": "quan01", "blend": "additive" },
- { "name": "quan17", "bone": "quan112", "attachment": "quan01", "blend": "additive" },
- { "name": "quan21", "bone": "quan116", "attachment": "quan01", "blend": "additive" }
- ],
- "skins": [
- {
- "name": "default",
- "attachments": {
- "l1": {
- "l1": { "x": -2.01, "y": -1, "width": 9, "height": 18 }
- },
- "l2": {
- "l2": { "x": 0.13, "y": -1, "width": 12, "height": 18 }
- },
- "l3": {
- "l3": { "x": -0.64, "y": -1, "width": 12, "height": 18 }
- },
- "l4": {
- "l4": { "x": -1.15, "y": -1, "width": 13, "height": 18 }
- },
- "l5": {
- "l5": { "x": -0.69, "y": -1, "width": 12, "height": 18 }
- },
- "l6": {
- "l6": { "x": 0.23, "y": -1, "width": 12, "height": 18 }
- },
- "l7": {
- "l7": { "x": 0.18, "y": -1, "width": 12, "height": 18 }
- },
- "l8": {
- "l8": { "x": -0.21, "y": -1, "width": 12, "height": 18 }
- },
- "l9": {
- "l9": { "x": 0.37, "y": -1, "width": 12, "height": 18 }
- },
- "l10": {
- "l1": { "x": -2.01, "y": -1, "width": 9, "height": 18 }
- },
- "l11": {
- "l2": { "x": 0.13, "y": -1, "width": 12, "height": 18 }
- },
- "l12": {
- "l3": { "x": -0.64, "y": -1, "width": 12, "height": 18 }
- },
- "l13": {
- "l4": { "x": -1.15, "y": -1, "width": 13, "height": 18 }
- },
- "l14": {
- "l5": { "x": -0.69, "y": -1, "width": 12, "height": 18 }
- },
- "l15": {
- "l6": { "x": 0.23, "y": -1, "width": 12, "height": 18 }
- },
- "l16": {
- "l7": { "x": 0.18, "y": -1, "width": 12, "height": 18 }
- },
- "l17": {
- "l8": { "x": -0.21, "y": -1, "width": 12, "height": 18 }
- },
- "l18": {
- "l9": { "x": 0.37, "y": -1, "width": 12, "height": 18 }
- },
- "l19": {
- "l1": { "x": -2.01, "y": -1, "width": 9, "height": 18 }
- },
- "l20": {
- "l2": { "x": 0.13, "y": -1, "width": 12, "height": 18 }
- },
- "l21": {
- "l3": { "x": -0.64, "y": -1, "width": 12, "height": 18 }
- },
- "l22": {
- "l4": { "x": -1.15, "y": -1, "width": 13, "height": 18 }
- },
- "l23": {
- "l5": { "x": -0.69, "y": -1, "width": 12, "height": 18 }
- },
- "l24": {
- "l6": { "x": 0.23, "y": -1, "width": 12, "height": 18 }
- },
- "l25": {
- "l7": { "x": 0.18, "y": -1, "width": 12, "height": 18 }
- },
- "l26": {
- "l8": { "x": -0.21, "y": -1, "width": 12, "height": 18 }
- },
- "l27": {
- "l9": { "x": 0.37, "y": -1, "width": 12, "height": 18 }
- },
- "l28": {
- "l1": { "x": -2.01, "y": -1, "width": 9, "height": 18 }
- },
- "l29": {
- "l2": { "x": 0.13, "y": -1, "width": 12, "height": 18 }
- },
- "l30": {
- "l3": { "x": -0.64, "y": -1, "width": 12, "height": 18 }
- },
- "l31": {
- "l4": { "x": -1.15, "y": -1, "width": 13, "height": 18 }
- },
- "l32": {
- "l5": { "x": -0.69, "y": -1, "width": 12, "height": 18 }
- },
- "l33": {
- "l6": { "x": 0.23, "y": -1, "width": 12, "height": 18 }
- },
- "l34": {
- "l7": { "x": 0.18, "y": -1, "width": 12, "height": 18 }
- },
- "l35": {
- "l8": { "x": -0.21, "y": -1, "width": 12, "height": 18 }
- },
- "l36": {
- "l9": { "x": 0.37, "y": -1, "width": 12, "height": 18 }
- },
- "quan1": {
- "quan01": { "y": -4.06, "scaleX": 0.01, "scaleY": 0.1, "width": 94, "height": 94 }
- },
- "quan01": {
- "quan01": { "width": 94, "height": 94 }
- },
- "quan2": {
- "quan02": { "x": -0.5, "y": 0.5, "scaleX": 0.6593, "scaleY": 0.66, "width": 139, "height": 139 }
- },
- "quan02": {
- "quan02": { "x": -0.5, "y": 0.5, "width": 139, "height": 139 }
- },
- "quan3": {
- "quan01": { "y": -4.06, "scaleX": 0.01, "scaleY": 0.1, "width": 94, "height": 94 }
- },
- "quan03": {
- "quan03": { "x": -0.5, "y": 0.5, "width": 177, "height": 177 }
- },
- "quan4": {
- "quan01": { "y": -4.06, "scaleX": 0.01, "scaleY": 0.1, "width": 94, "height": 94 }
- },
- "quan04": {
- "quan04": { "width": 224, "height": 224 }
- },
- "quan5": {
- "quan01": { "y": -4.06, "scaleX": 0.01, "scaleY": 0.1, "width": 94, "height": 94 }
- },
- "quan6": {
- "quan01": { "y": -4.06, "scaleX": 0.01, "scaleY": 0.1, "width": 94, "height": 94 }
- },
- "quan7": {
- "quan01": { "y": -4.06, "scaleX": 0.01, "scaleY": 0.1, "width": 94, "height": 94 }
- },
- "quan8": {
- "quan08": { "scaleX": 0.89, "scaleY": 0.89, "width": 394, "height": 394 }
- },
- "quan08": {
- "quan08": { "width": 394, "height": 394 }
- },
- "quan9": {
- "quan08": { "scaleX": 0.78, "scaleY": 0.78, "width": 394, "height": 394 }
- },
- "quan09": {
- "quan09": { "width": 440, "height": 440 }
- },
- "quan10": {
- "quan10": { "x": -0.5, "y": 0.5, "width": 531, "height": 531 }
- },
- "quan11": {
- "quan01": { "y": -4.06, "scaleX": 0.01, "scaleY": 0.1, "width": 94, "height": 94 }
- },
- "quan12": {
- "quan08": { "scaleX": 0.67, "scaleY": 0.67, "width": 394, "height": 394 }
- },
- "quan13": {
- "quan01": { "y": -4.06, "scaleX": 0.01, "scaleY": 0.1, "width": 94, "height": 94 }
- },
- "quan14": {
- "quan01": { "y": -4.06, "scaleX": 0.01, "scaleY": 0.1, "width": 94, "height": 94 }
- },
- "quan15": {
- "quan01": { "y": -4.06, "scaleX": 0.01, "scaleY": 0.1, "width": 94, "height": 94 }
- },
- "quan16": {
- "quan01": { "y": -4.06, "scaleX": 0.05, "scaleY": 0.1, "width": 94, "height": 94 }
- },
- "quan17": {
- "quan01": { "y": -4.06, "scaleX": 0.01, "scaleY": 0.1, "width": 94, "height": 94 }
- },
- "quan18": {
- "quan01": { "y": -4.06, "scaleX": 0.05, "scaleY": 0.1, "width": 94, "height": 94 }
- },
- "quan19": {
- "quan01": { "y": -4.06, "scaleX": 0.02, "scaleY": 0.1, "width": 94, "height": 94 }
- },
- "quan20": {
- "quan01": { "y": -4.06, "scaleX": 0.05, "scaleY": 0.1, "width": 94, "height": 94 }
- },
- "quan21": {
- "quan01": { "y": -4.06, "scaleX": 0.03, "scaleY": 0.1, "width": 94, "height": 94 }
- },
- "quan22": {
- "quan01": { "width": 94, "height": 94 }
- },
- "red": {
- "red": { "width": 50, "height": 50 }
- },
- "root": {
- "root": {
- "type": "boundingbox",
- "vertexCount": 4,
- "vertices": [ -340.1, -591.09, -332.06, 859.33, 343.56, 856.65, 343.56, -588.41 ]
- }
- }
- }
- }
- ],
- "animations": {
- "animation_01": {
- "slots": {
- "quan1": {
- "attachment": [
- {}
- ]
- },
- "quan3": {
- "attachment": [
- {}
- ]
- },
- "quan4": {
- "attachment": [
- {}
- ]
- },
- "quan5": {
- "attachment": [
- {}
- ]
- },
- "quan6": {
- "attachment": [
- {}
- ]
- },
- "quan7": {
- "attachment": [
- {}
- ]
- },
- "quan10": {
- "attachment": [
- {}
- ]
- },
- "quan11": {
- "attachment": [
- {}
- ]
- },
- "quan13": {
- "attachment": [
- {}
- ]
- },
- "quan14": {
- "attachment": [
- {}
- ]
- },
- "quan15": {
- "attachment": [
- {}
- ]
- },
- "quan16": {
- "attachment": [
- {}
- ]
- },
- "quan17": {
- "attachment": [
- {}
- ]
- },
- "quan18": {
- "attachment": [
- {}
- ]
- },
- "quan19": {
- "attachment": [
- {}
- ]
- },
- "quan20": {
- "attachment": [
- {}
- ]
- },
- "quan21": {
- "attachment": [
- {}
- ]
- }
- }
- },
- "animation_02": {
- "slots": {
- "l1": {
- "rgba": [
- {
- "time": 0.0667,
- "color": "ffffffff",
- "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
- },
- { "time": 0.2333, "color": "ffffff00" }
- ],
- "attachment": [
- {}
- ]
- },
- "l2": {
- "rgba": [
- {
- "time": 0.0667,
- "color": "ffffffff",
- "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
- },
- { "time": 0.2333, "color": "ffffff00" }
- ],
- "attachment": [
- {}
- ]
- },
- "l3": {
- "rgba": [
- {
- "time": 0.0667,
- "color": "ffffffff",
- "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
- },
- { "time": 0.2333, "color": "ffffff00" }
- ],
- "attachment": [
- {}
- ]
- },
- "l4": {
- "rgba": [
- {
- "time": 0.0667,
- "color": "ffffffff",
- "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
- },
- { "time": 0.2333, "color": "ffffff00" }
- ],
- "attachment": [
- {}
- ]
- },
- "l5": {
- "rgba": [
- {
- "time": 0.0667,
- "color": "ffffffff",
- "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
- },
- { "time": 0.2333, "color": "ffffff00" }
- ],
- "attachment": [
- {}
- ]
- },
- "l6": {
- "rgba": [
- {
- "time": 0.0667,
- "color": "ffffffff",
- "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
- },
- { "time": 0.2333, "color": "ffffff00" }
- ],
- "attachment": [
- {}
- ]
- },
- "l7": {
- "rgba": [
- {
- "time": 0.0667,
- "color": "ffffffff",
- "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
- },
- { "time": 0.2333, "color": "ffffff00" }
- ],
- "attachment": [
- {}
- ]
- },
- "l8": {
- "rgba": [
- {
- "time": 0.0667,
- "color": "ffffffff",
- "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
- },
- { "time": 0.2333, "color": "ffffff00" }
- ],
- "attachment": [
- {}
- ]
- },
- "l9": {
- "rgba": [
- {
- "time": 0.0667,
- "color": "ffffffff",
- "curve": [ 0.125, 1, 0.242, 1, 0.125, 1, 0.242, 1, 0.125, 1, 0.242, 1, 0.125, 1, 0.242, 0 ]
- },
- { "time": 0.3, "color": "ffffff00" }
- ],
- "attachment": [
- {}
- ]
- },
- "l10": {
- "rgba": [
- {
- "time": 0.0667,
- "color": "ffffffff",
- "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
- },
- { "time": 0.2333, "color": "ffffff00" }
- ],
- "attachment": [
- {}
- ]
- },
- "l11": {
- "rgba": [
- {
- "time": 0.0667,
- "color": "ffffffff",
- "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
- },
- { "time": 0.2333, "color": "ffffff00" }
- ],
- "attachment": [
- {}
- ]
- },
- "l12": {
- "rgba": [
- {
- "time": 0.0667,
- "color": "ffffffff",
- "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
- },
- { "time": 0.2333, "color": "ffffff00" }
- ],
- "attachment": [
- {}
- ]
- },
- "l13": {
- "rgba": [
- {
- "time": 0.0667,
- "color": "ffffffff",
- "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
- },
- { "time": 0.2333, "color": "ffffff00" }
- ],
- "attachment": [
- {}
- ]
- },
- "l14": {
- "rgba": [
- {
- "time": 0.0667,
- "color": "ffffffff",
- "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
- },
- { "time": 0.2333, "color": "ffffff00" }
- ],
- "attachment": [
- {}
- ]
- },
- "l15": {
- "rgba": [
- {
- "time": 0.0667,
- "color": "ffffffff",
- "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
- },
- { "time": 0.2333, "color": "ffffff00" }
- ],
- "attachment": [
- {}
- ]
- },
- "l16": {
- "rgba": [
- {
- "time": 0.0667,
- "color": "ffffffff",
- "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
- },
- { "time": 0.2333, "color": "ffffff00" }
- ],
- "attachment": [
- {}
- ]
- },
- "l17": {
- "rgba": [
- {
- "time": 0.0667,
- "color": "ffffffff",
- "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
- },
- { "time": 0.2333, "color": "ffffff00" }
- ],
- "attachment": [
- {}
- ]
- },
- "l18": {
- "rgba": [
- {
- "time": 0.0667,
- "color": "ffffffff",
- "curve": [ 0.125, 1, 0.242, 1, 0.125, 1, 0.242, 1, 0.125, 1, 0.242, 1, 0.125, 1, 0.242, 0 ]
- },
- { "time": 0.3, "color": "ffffff00" }
- ],
- "attachment": [
- {}
- ]
- },
- "l19": {
- "rgba": [
- {
- "time": 0.1,
- "color": "ffffffff",
- "curve": [ 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 0 ]
- },
- { "time": 0.3333, "color": "ffffff00" }
- ],
- "attachment": [
- {}
- ]
- },
- "l20": {
- "rgba": [
- {
- "time": 0.1,
- "color": "ffffffff",
- "curve": [ 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 0 ]
- },
- { "time": 0.3333, "color": "ffffff00" }
- ],
- "attachment": [
- {}
- ]
- },
- "l21": {
- "rgba": [
- {
- "time": 0.1,
- "color": "ffffffff",
- "curve": [ 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 0 ]
- },
- { "time": 0.3333, "color": "ffffff00" }
- ],
- "attachment": [
- {}
- ]
- },
- "l22": {
- "rgba": [
- {
- "time": 0.1,
- "color": "ffffffff",
- "curve": [ 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 0 ]
- },
- { "time": 0.3333, "color": "ffffff00" }
- ],
- "attachment": [
- {}
- ]
- },
- "l23": {
- "rgba": [
- {
- "time": 0.1,
- "color": "ffffffff",
- "curve": [ 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 0 ]
- },
- { "time": 0.3333, "color": "ffffff00" }
- ],
- "attachment": [
- {}
- ]
- },
- "l24": {
- "rgba": [
- {
- "time": 0.1,
- "color": "ffffffff",
- "curve": [ 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 0 ]
- },
- { "time": 0.3333, "color": "ffffff00" }
- ],
- "attachment": [
- {}
- ]
- },
- "l25": {
- "rgba": [
- {
- "time": 0.1,
- "color": "ffffffff",
- "curve": [ 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 0 ]
- },
- { "time": 0.3333, "color": "ffffff00" }
- ],
- "attachment": [
- {}
- ]
- },
- "l26": {
- "rgba": [
- {
- "time": 0.1,
- "color": "ffffffff",
- "curve": [ 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 0 ]
- },
- { "time": 0.3333, "color": "ffffff00" }
- ],
- "attachment": [
- {}
- ]
- },
- "l27": {
- "rgba": [
- {
- "time": 0.1,
- "color": "ffffffff",
- "curve": [ 0.175, 1, 0.325, 1, 0.175, 1, 0.325, 1, 0.175, 1, 0.325, 1, 0.175, 1, 0.325, 0 ]
- },
- { "time": 0.4, "color": "ffffff00" }
- ],
- "attachment": [
- {}
- ]
- },
- "l28": {
- "rgba": [
- {
- "time": 0.0667,
- "color": "ffffffff",
- "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
- },
- { "time": 0.2333, "color": "ffffff00" }
- ],
- "attachment": [
- {}
- ]
- },
- "l29": {
- "rgba": [
- {
- "time": 0.0667,
- "color": "ffffffff",
- "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
- },
- { "time": 0.2333, "color": "ffffff00" }
- ],
- "attachment": [
- {}
- ]
- },
- "l30": {
- "rgba": [
- {
- "time": 0.0667,
- "color": "ffffffff",
- "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
- },
- { "time": 0.2333, "color": "ffffff00" }
- ],
- "attachment": [
- {}
- ]
- },
- "l31": {
- "rgba": [
- {
- "time": 0.0667,
- "color": "ffffffff",
- "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
- },
- { "time": 0.2333, "color": "ffffff00" }
- ],
- "attachment": [
- {}
- ]
- },
- "l32": {
- "rgba": [
- {
- "time": 0.0667,
- "color": "ffffffff",
- "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
- },
- { "time": 0.2333, "color": "ffffff00" }
- ],
- "attachment": [
- {}
- ]
- },
- "l33": {
- "rgba": [
- {
- "time": 0.0667,
- "color": "ffffffff",
- "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
- },
- { "time": 0.2333, "color": "ffffff00" }
- ],
- "attachment": [
- {}
- ]
- },
- "l34": {
- "rgba": [
- {
- "time": 0.0667,
- "color": "ffffffff",
- "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
- },
- { "time": 0.2333, "color": "ffffff00" }
- ],
- "attachment": [
- {}
- ]
- },
- "l35": {
- "rgba": [
- {
- "time": 0.0667,
- "color": "ffffffff",
- "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
- },
- { "time": 0.2333, "color": "ffffff00" }
- ],
- "attachment": [
- {}
- ]
- },
- "l36": {
- "rgba": [
- {
- "time": 0.0667,
- "color": "ffffffff",
- "curve": [ 0.125, 1, 0.242, 1, 0.125, 1, 0.242, 1, 0.125, 1, 0.242, 1, 0.125, 1, 0.242, 0 ]
- },
- { "time": 0.3, "color": "ffffff00" }
- ],
- "attachment": [
- {}
- ]
- },
- "quan1": {
- "attachment": [
- {}
- ]
- },
- "quan01": {
- "rgba": [
- { "color": "ffffffb9" },
- { "time": 0.0667, "color": "fc4444ff" },
- { "time": 0.1667, "color": "fcae6ec4" },
- { "time": 0.3333, "color": "fff9c900" }
- ],
- "attachment": [
- { "name": "quan01" },
- { "time": 0.4 }
- ]
- },
- "quan2": {
- "attachment": [
- { "time": 0.1333 }
- ]
- },
- "quan02": {
- "rgba": [
- { "time": 0.0667, "color": "ffffffff" },
- { "time": 0.2333, "color": "ffffff01" }
- ],
- "attachment": [
- { "time": 0.4 }
- ]
- },
- "quan3": {
- "attachment": [
- {}
- ]
- },
- "quan03": {
- "rgba": [
- { "time": 0.0667, "color": "ffffffff" },
- { "time": 0.2333, "color": "ffffff00" }
- ],
- "attachment": [
- { "time": 0.4 }
- ]
- },
- "quan4": {
- "attachment": [
- {}
- ]
- },
- "quan04": {
- "rgba": [
- {
- "time": 0.1333,
- "color": "ffffffff",
- "curve": [ 0.133, 1, 0.333, 1, 0.133, 1, 0.333, 1, 0.133, 1, 0.333, 1, 0.133, 0.68, 0.333, 0 ]
- },
- { "time": 0.4, "color": "ffffff00" }
- ],
- "attachment": [
- { "time": 0.4 }
- ]
- },
- "quan5": {
- "attachment": [
- {}
- ]
- },
- "quan6": {
- "attachment": [
- {}
- ]
- },
- "quan7": {
- "attachment": [
- {}
- ]
- },
- "quan8": {
- "rgba": [
- { "time": 0.0667, "color": "ffffffff" },
- { "time": 0.2667, "color": "ffffff00" }
- ],
- "attachment": [
- { "time": 0.4 }
- ]
- },
- "quan08": {
- "rgba": [
- { "time": 0.0667, "color": "ffffffff" },
- { "time": 0.2, "color": "ffffff00" }
- ],
- "attachment": [
- { "time": 0.2 }
- ]
- },
- "quan9": {
- "rgba": [
- {
- "time": 0.1333,
- "color": "ffffffff",
- "curve": [ 0.133, 1, 0.283, 1, 0.133, 1, 0.283, 1, 0.133, 1, 0.283, 1, 0.133, 0.7, 0.283, 0 ]
- },
- { "time": 0.3333, "color": "ffffff00" }
- ],
- "attachment": [
- { "time": 0.4 }
- ]
- },
- "quan09": {
- "rgba": [
- { "time": 0.0667, "color": "ffffffff" },
- { "time": 0.1667, "color": "ffffff01" }
- ],
- "attachment": [
- { "time": 0.1667 }
- ]
- },
- "quan10": {
- "rgba": [
- { "time": 0.0667, "color": "ffffffff" },
- { "time": 0.3333, "color": "ffffff00" }
- ],
- "attachment": [
- { "time": 0.3333 }
- ]
- },
- "quan11": {
- "attachment": [
- {}
- ]
- },
- "quan12": {
- "rgba": [
- { "time": 0.0667, "color": "ffffffff" },
- { "time": 0.3333, "color": "ffffff00" }
- ],
- "attachment": [
- { "time": 0.4 }
- ]
- },
- "quan13": {
- "attachment": [
- {}
- ]
- },
- "quan14": {
- "attachment": [
- {}
- ]
- },
- "quan15": {
- "attachment": [
- {}
- ]
- },
- "quan16": {
- "attachment": [
- {}
- ]
- },
- "quan17": {
- "attachment": [
- {}
- ]
- },
- "quan18": {
- "attachment": [
- {}
- ]
- },
- "quan19": {
- "attachment": [
- {}
- ]
- },
- "quan20": {
- "attachment": [
- {}
- ]
- },
- "quan21": {
- "attachment": [
- {}
- ]
- },
- "quan22": {
- "rgba": [
- { "color": "fff9c900" }
- ]
- },
- "red": {
- "attachment": [
- { "time": 0.1 }
- ]
- }
- },
- "bones": {
- "bone9": {
- "translate": [
- {
- "time": 0.0667,
- "curve": [ 0.125, 0, 0.242, -140.4, 0.125, 0, 0.242, 0 ]
- },
- { "time": 0.3, "x": -140.4 }
- ],
- "scale": [
- {
- "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
- },
- {
- "time": 0.0667,
- "x": 0.8,
- "y": 0.8,
- "curve": [ 0.13, 0.8, 0.211, 8.706, 0.13, 0.8, 0.211, 8.706 ]
- },
- { "time": 0.3, "x": 20, "y": 20 }
- ]
- },
- "bone8": {
- "translate": [
- {
- "time": 0.0667,
- "curve": [ 0.108, 0, 0.192, -218.86, 0.108, 0, 0.192, 0 ]
- },
- { "time": 0.2333, "x": -218.86 }
- ],
- "scale": [
- {
- "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
- },
- {
- "time": 0.0667,
- "x": 0.8,
- "y": 0.8,
- "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
- },
- { "time": 0.2333, "x": 10, "y": 10 }
- ]
- },
- "bone7": {
- "translate": [
- {
- "time": 0.0667,
- "curve": [ 0.108, 0, 0.192, -468.55, 0.108, 0, 0.192, 0 ]
- },
- { "time": 0.2333, "x": -468.55 }
- ],
- "scale": [
- {
- "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
- },
- {
- "time": 0.0667,
- "x": 0.8,
- "y": 0.8,
- "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
- },
- { "time": 0.2333, "x": 10, "y": 10 }
- ]
- },
- "bone6": {
- "translate": [
- {
- "time": 0.0667,
- "curve": [ 0.108, 0, 0.192, -634, 0.108, 0, 0.192, 0 ]
- },
- { "time": 0.2333, "x": -634 }
- ],
- "scale": [
- {
- "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
- },
- {
- "time": 0.0667,
- "x": 0.8,
- "y": 0.8,
- "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
- },
- { "time": 0.2333, "x": 10, "y": 10 }
- ]
- },
- "bone5": {
- "translate": [
- {
- "time": 0.0667,
- "curve": [ 0.108, 0, 0.192, -450.63, 0.108, 0, 0.192, 0 ]
- },
- { "time": 0.2333, "x": -450.63 }
- ],
- "scale": [
- {
- "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
- },
- {
- "time": 0.0667,
- "x": 0.8,
- "y": 0.8,
- "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
- },
- { "time": 0.2333, "x": 10, "y": 10 }
- ]
- },
- "bone4": {
- "translate": [
- {
- "time": 0.0667,
- "curve": [ 0.108, 0, 0.192, -578.32, 0.108, 0, 0.192, 0 ]
- },
- { "time": 0.2333, "x": -578.32 }
- ],
- "scale": [
- {
- "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
- },
- {
- "time": 0.0667,
- "x": 0.8,
- "y": 0.8,
- "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
- },
- { "time": 0.2333, "x": 10, "y": 10 }
- ]
- },
- "bone3": {
- "translate": [
- {
- "time": 0.0667,
- "curve": [ 0.108, 0, 0.192, -718.09, 0.108, 0, 0.192, 0 ]
- },
- { "time": 0.2333, "x": -718.09 }
- ],
- "scale": [
- {
- "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
- },
- {
- "time": 0.0667,
- "x": 0.8,
- "y": 0.8,
- "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
- },
- { "time": 0.2333, "x": 10, "y": 10 }
- ]
- },
- "bone2": {
- "translate": [
- {
- "time": 0.0667,
- "curve": [ 0.108, 0, 0.192, -844.54, 0.108, 0, 0.192, 0 ]
- },
- { "time": 0.2333, "x": -844.54 }
- ],
- "scale": [
- {
- "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
- },
- {
- "time": 0.0667,
- "x": 0.8,
- "y": 0.8,
- "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
- },
- { "time": 0.2333, "x": 10, "y": 10 }
- ]
- },
- "bone": {
- "translate": [
- {
- "time": 0.0667,
- "curve": [ 0.108, 0, 0.192, -949.43, 0.108, 0, 0.192, 0 ]
- },
- { "time": 0.2333, "x": -949.43 }
- ],
- "scale": [
- {
- "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
- },
- {
- "time": 0.0667,
- "x": 0.8,
- "y": 0.8,
- "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
- },
- { "time": 0.2333, "x": 10, "y": 10 }
- ]
- },
- "quan01": {
- "scale": [
- {
- "curve": [ 0, 0.982, 0.05, 0.95, 0, 0.984, 0.05, 0.954 ]
- },
- {
- "time": 0.0667,
- "x": 0.95,
- "y": 0.954,
- "curve": [ 0.067, 1.724, 0.168, 2.638, 0.067, 1.727, 0.168, 2.64 ]
- },
- { "time": 0.3333, "x": 3.591, "y": 3.593 }
- ]
- },
- "quan02": {
- "scale": [
- {
- "curve": [ 0, 0.982, 0.05, 0.95, 0, 0.984, 0.05, 0.954 ]
- },
- {
- "time": 0.0667,
- "x": 0.95,
- "y": 0.954,
- "curve": [ 0.067, 1.724, 0.168, 2.638, 0.067, 1.727, 0.168, 2.64 ]
- },
- { "time": 0.3333, "x": 3.591, "y": 3.593 }
- ]
- },
- "quan03": {
- "scale": [
- {
- "curve": [ 0, 0.982, 0.05, 0.95, 0, 0.984, 0.05, 0.954 ]
- },
- {
- "time": 0.0667,
- "x": 0.95,
- "y": 0.954,
- "curve": [ 0.067, 2.25, 0.227, 4.139, 0.067, 2.253, 0.227, 4.14 ]
- },
- { "time": 0.4, "x": 5.56, "y": 5.561 }
- ]
- },
- "quan04": {
- "scale": [
- {
- "curve": [ 0, 0.982, 0.075, 0.95, 0, 0.984, 0.075, 0.954 ]
- },
- {
- "time": 0.1,
- "x": 0.95,
- "y": 0.954,
- "curve": [ 0.1, 0.689, 0.111, 0.415, 0.1, 0.692, 0.111, 0.417 ]
- },
- {
- "time": 0.1333,
- "x": 0.132,
- "y": 0.132,
- "curve": [ 0.17, 0.957, 0.266, 1.882, 0.17, 0.957, 0.266, 1.882 ]
- },
- { "time": 0.4, "x": 2.828, "y": 2.828 }
- ]
- },
- "quan05": {
- "scale": [
- {
- "curve": [ 0, 0.982, 0.05, 0.95, 0, 0.984, 0.05, 0.954 ]
- },
- {
- "time": 0.0667,
- "x": 0.95,
- "y": 0.954,
- "curve": [ 0.067, 3.1, 0.317, 7, 0.067, 3.102, 0.317, 7 ]
- },
- { "time": 0.4, "x": 7, "y": 7 }
- ]
- },
- "quan06": {
- "scale": [
- {
- "curve": [ 0, 0.982, 0.075, 0.95, 0, 0.984, 0.075, 0.954 ]
- },
- {
- "time": 0.1,
- "x": 0.95,
- "y": 0.954,
- "curve": [ 0.1, 0.788, 0.111, 0.619, 0.1, 0.79, 0.111, 0.618 ]
- },
- {
- "time": 0.1333,
- "x": 0.444,
- "y": 0.44,
- "curve": [ 0.168, 1.301, 0.266, 2.278, 0.168, 1.298, 0.266, 2.275 ]
- },
- { "time": 0.4, "x": 3.265, "y": 3.263 }
- ]
- },
- "quan07": {
- "scale": [
- {
- "curve": [ 0, 0.982, 0.05, 0.95, 0, 0.984, 0.05, 0.954 ]
- },
- {
- "time": 0.0667,
- "x": 0.95,
- "y": 0.954,
- "curve": [ 0.067, 1.894, 0.202, 3.087, 0.067, 1.898, 0.202, 3.089 ]
- },
- { "time": 0.4, "x": 4.269, "y": 4.271 }
- ]
- },
- "quan08": {
- "scale": [
- {
- "curve": [ 0, 0.982, 0.05, 0.95, 0, 0.984, 0.05, 0.954 ]
- },
- {
- "time": 0.0667,
- "x": 0.95,
- "y": 0.954,
- "curve": [ 0.067, 3.1, 0.167, 7, 0.067, 3.102, 0.167, 7 ]
- },
- { "time": 0.2, "x": 7, "y": 7 }
- ]
- },
- "quan9": {
- "scale": [
- {},
- { "time": 0.0667, "x": 0.95, "y": 0.954 }
- ]
- },
- "quan10": {
- "scale": [
- {
- "curve": [ 0, 0.982, 0.05, 0.95, 0, 0.984, 0.05, 0.954 ]
- },
- {
- "time": 0.0667,
- "x": 0.95,
- "y": 0.954,
- "curve": [ 0.068, 0.852, 0.08, 0.737, 0.068, 0.862, 0.08, 0.754 ]
- },
- {
- "time": 0.1,
- "x": 0.61,
- "y": 0.634,
- "curve": [ 0.172, 1.368, 0.262, 2.168, 0.172, 1.384, 0.262, 2.176 ]
- },
- { "time": 0.3667, "x": 3, "y": 3 }
- ]
- },
- "quan0101": {
- "scale": [
- {},
- { "time": 0.0667, "x": 0.875, "y": 0.875 },
- {
- "time": 0.1667,
- "x": 1.483,
- "y": 1.5,
- "curve": [ 0.167, 1.399, 0.292, 1, 0.167, 1.413, 0.292, 1 ]
- },
- { "time": 0.3333 }
- ]
- },
- "bone10": {
- "translate": [
- {
- "time": 0.0667,
- "curve": [ 0.108, 0, 0.192, -949.43, 0.108, 0, 0.192, 0 ]
- },
- { "time": 0.2333, "x": -949.43 }
- ],
- "scale": [
- {
- "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
- },
- {
- "time": 0.0667,
- "x": 0.8,
- "y": 0.8,
- "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
- },
- { "time": 0.2333, "x": 10, "y": 10 }
- ]
- },
- "bone11": {
- "translate": [
- {
- "time": 0.0667,
- "curve": [ 0.108, 0, 0.192, -844.54, 0.108, 0, 0.192, 0 ]
- },
- { "time": 0.2333, "x": -844.54 }
- ],
- "scale": [
- {
- "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
- },
- {
- "time": 0.0667,
- "x": 0.8,
- "y": 0.8,
- "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
- },
- { "time": 0.2333, "x": 10, "y": 10 }
- ]
- },
- "bone12": {
- "translate": [
- {
- "time": 0.0667,
- "curve": [ 0.108, 0, 0.192, -718.09, 0.108, 0, 0.192, 0 ]
- },
- { "time": 0.2333, "x": -718.09 }
- ],
- "scale": [
- {
- "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
- },
- {
- "time": 0.0667,
- "x": 0.8,
- "y": 0.8,
- "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
- },
- { "time": 0.2333, "x": 10, "y": 10 }
- ]
- },
- "bone13": {
- "translate": [
- {
- "time": 0.0667,
- "curve": [ 0.108, 0, 0.192, -578.32, 0.108, 0, 0.192, 0 ]
- },
- { "time": 0.2333, "x": -578.32 }
- ],
- "scale": [
- {
- "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
- },
- {
- "time": 0.0667,
- "x": 0.8,
- "y": 0.8,
- "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
- },
- { "time": 0.2333, "x": 10, "y": 10 }
- ]
- },
- "bone14": {
- "translate": [
- {
- "time": 0.0667,
- "curve": [ 0.108, 0, 0.192, -450.63, 0.108, 0, 0.192, 0 ]
- },
- { "time": 0.2333, "x": -450.63 }
- ],
- "scale": [
- {
- "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
- },
- {
- "time": 0.0667,
- "x": 0.8,
- "y": 0.8,
- "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
- },
- { "time": 0.2333, "x": 10, "y": 10 }
- ]
- },
- "bone15": {
- "translate": [
- {
- "time": 0.0667,
- "curve": [ 0.108, 0, 0.192, -634, 0.108, 0, 0.192, 0 ]
- },
- { "time": 0.2333, "x": -634 }
- ],
- "scale": [
- {
- "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
- },
- {
- "time": 0.0667,
- "x": 0.8,
- "y": 0.8,
- "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
- },
- { "time": 0.2333, "x": 10, "y": 10 }
- ]
- },
- "bone16": {
- "translate": [
- {
- "time": 0.0667,
- "curve": [ 0.108, 0, 0.192, -468.55, 0.108, 0, 0.192, 0 ]
- },
- { "time": 0.2333, "x": -468.55 }
- ],
- "scale": [
- {
- "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
- },
- {
- "time": 0.0667,
- "x": 0.8,
- "y": 0.8,
- "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
- },
- { "time": 0.2333, "x": 10, "y": 10 }
- ]
- },
- "bone17": {
- "translate": [
- {
- "time": 0.0667,
- "curve": [ 0.108, 0, 0.192, -218.86, 0.108, 0, 0.192, 0 ]
- },
- { "time": 0.2333, "x": -218.86 }
- ],
- "scale": [
- {
- "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
- },
- {
- "time": 0.0667,
- "x": 0.8,
- "y": 0.8,
- "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
- },
- { "time": 0.2333, "x": 10, "y": 10 }
- ]
- },
- "bone18": {
- "translate": [
- {
- "time": 0.0667,
- "curve": [ 0.125, 0, 0.242, -140.4, 0.125, 0, 0.242, 0 ]
- },
- { "time": 0.3, "x": -140.4 }
- ],
- "scale": [
- {
- "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
- },
- {
- "time": 0.0667,
- "x": 0.8,
- "y": 0.8,
- "curve": [ 0.13, 0.8, 0.211, 8.706, 0.13, 0.8, 0.211, 8.706 ]
- },
- { "time": 0.3, "x": 20, "y": 20 }
- ]
- },
- "bone19": {
- "translate": [
- {
- "time": 0.1,
- "curve": [ 0.158, 0, 0.275, -949.43, 0.158, 0, 0.275, 0 ]
- },
- { "time": 0.3333, "x": -949.43 },
- { "time": 0.4, "x": -949.43 }
- ],
- "scale": [
- {
- "curve": [ 0.027, 1, 0.062, 0.918, 0.027, 1, 0.062, 0.918 ]
- },
- {
- "time": 0.1,
- "x": 0.8,
- "y": 0.8,
- "curve": [ 0.163, 0.8, 0.244, 4.588, 0.163, 0.8, 0.244, 4.588 ]
- },
- { "time": 0.3333, "x": 10, "y": 10 }
- ]
- },
- "bone20": {
- "translate": [
- {
- "time": 0.1,
- "curve": [ 0.158, 0, 0.275, -844.54, 0.158, 0, 0.275, 0 ]
- },
- { "time": 0.3333, "x": -844.54 },
- { "time": 0.4, "x": -844.54 }
- ],
- "scale": [
- {
- "curve": [ 0.027, 1, 0.062, 0.918, 0.027, 1, 0.062, 0.918 ]
- },
- {
- "time": 0.1,
- "x": 0.8,
- "y": 0.8,
- "curve": [ 0.163, 0.8, 0.244, 4.588, 0.163, 0.8, 0.244, 4.588 ]
- },
- { "time": 0.3333, "x": 10, "y": 10 }
- ]
- },
- "bone21": {
- "translate": [
- {
- "time": 0.1,
- "curve": [ 0.158, 0, 0.275, -718.09, 0.158, 0, 0.275, 0 ]
- },
- { "time": 0.3333, "x": -718.09 }
- ],
- "scale": [
- {
- "curve": [ 0.027, 1, 0.062, 0.918, 0.027, 1, 0.062, 0.918 ]
- },
- {
- "time": 0.1,
- "x": 0.8,
- "y": 0.8,
- "curve": [ 0.163, 0.8, 0.244, 4.588, 0.163, 0.8, 0.244, 4.588 ]
- },
- { "time": 0.3333, "x": 10, "y": 10 }
- ]
- },
- "bone22": {
- "translate": [
- {
- "time": 0.1,
- "curve": [ 0.158, 0, 0.275, -578.32, 0.158, 0, 0.275, 0 ]
- },
- { "time": 0.3333, "x": -578.32 }
- ],
- "scale": [
- {
- "curve": [ 0.027, 1, 0.062, 0.918, 0.027, 1, 0.062, 0.918 ]
- },
- {
- "time": 0.1,
- "x": 0.8,
- "y": 0.8,
- "curve": [ 0.163, 0.8, 0.244, 4.588, 0.163, 0.8, 0.244, 4.588 ]
- },
- { "time": 0.3333, "x": 10, "y": 10 }
- ]
- },
- "bone23": {
- "translate": [
- {
- "time": 0.1,
- "curve": [ 0.158, 0, 0.275, -450.63, 0.158, 0, 0.275, 0 ]
- },
- { "time": 0.3333, "x": -450.63 },
- { "time": 0.4, "x": -450.63 }
- ],
- "scale": [
- {
- "curve": [ 0.027, 1, 0.062, 0.918, 0.027, 1, 0.062, 0.918 ]
- },
- {
- "time": 0.1,
- "x": 0.8,
- "y": 0.8,
- "curve": [ 0.163, 0.8, 0.244, 4.588, 0.163, 0.8, 0.244, 4.588 ]
- },
- { "time": 0.3333, "x": 10, "y": 10 }
- ]
- },
- "bone24": {
- "translate": [
- {
- "time": 0.1,
- "curve": [ 0.158, 0, 0.275, -634, 0.158, 0, 0.275, 0 ]
- },
- { "time": 0.3333, "x": -634 }
- ],
- "scale": [
- {
- "curve": [ 0.027, 1, 0.062, 0.918, 0.027, 1, 0.062, 0.918 ]
- },
- {
- "time": 0.1,
- "x": 0.8,
- "y": 0.8,
- "curve": [ 0.163, 0.8, 0.244, 4.588, 0.163, 0.8, 0.244, 4.588 ]
- },
- { "time": 0.3333, "x": 10, "y": 10 }
- ]
- },
- "bone25": {
- "translate": [
- {
- "time": 0.1,
- "curve": [ 0.158, 0, 0.275, -468.55, 0.158, 0, 0.275, 0 ]
- },
- { "time": 0.3333, "x": -468.55 },
- { "time": 0.4, "x": -468.55 }
- ],
- "scale": [
- {
- "curve": [ 0.027, 1, 0.062, 0.918, 0.027, 1, 0.062, 0.918 ]
- },
- {
- "time": 0.1,
- "x": 0.8,
- "y": 0.8,
- "curve": [ 0.163, 0.8, 0.244, 4.588, 0.163, 0.8, 0.244, 4.588 ]
- },
- { "time": 0.3333, "x": 10, "y": 10 }
- ]
- },
- "bone26": {
- "translate": [
- {
- "time": 0.1,
- "curve": [ 0.158, 0, 0.275, -218.86, 0.158, 0, 0.275, 0 ]
- },
- { "time": 0.3333, "x": -218.86 },
- { "time": 0.4, "x": -218.86 }
- ],
- "scale": [
- {
- "curve": [ 0.027, 1, 0.062, 0.918, 0.027, 1, 0.062, 0.918 ]
- },
- {
- "time": 0.1,
- "x": 0.8,
- "y": 0.8,
- "curve": [ 0.163, 0.8, 0.244, 4.588, 0.163, 0.8, 0.244, 4.588 ]
- },
- { "time": 0.3333, "x": 10, "y": 10 }
- ]
- },
- "bone27": {
- "translate": [
- {
- "time": 0.1,
- "curve": [ 0.175, 0, 0.325, -140.4, 0.175, 0, 0.325, 0 ]
- },
- { "time": 0.4, "x": -140.4 }
- ],
- "scale": [
- {
- "curve": [ 0.027, 1, 0.062, 0.918, 0.027, 1, 0.062, 0.918 ]
- },
- {
- "time": 0.1,
- "x": 0.8,
- "y": 0.8,
- "curve": [ 0.181, 0.8, 0.286, 8.706, 0.181, 0.8, 0.286, 8.706 ]
- },
- { "time": 0.4, "x": 20, "y": 20 }
- ]
- },
- "bone28": {
- "translate": [
- {
- "time": 0.0667,
- "curve": [ 0.108, 0, 0.192, -949.43, 0.108, 0, 0.192, 0 ]
- },
- { "time": 0.2333, "x": -949.43 },
- { "time": 0.4, "x": -949.43 }
- ],
- "scale": [
- {
- "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
- },
- {
- "time": 0.0667,
- "x": 0.8,
- "y": 0.8,
- "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
- },
- { "time": 0.2333, "x": 10, "y": 10 }
- ]
- },
- "bone29": {
- "translate": [
- {
- "time": 0.0667,
- "curve": [ 0.108, 0, 0.192, -844.54, 0.108, 0, 0.192, 0 ]
- },
- { "time": 0.2333, "x": -844.54 }
- ],
- "scale": [
- {
- "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
- },
- {
- "time": 0.0667,
- "x": 0.8,
- "y": 0.8,
- "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
- },
- { "time": 0.2333, "x": 10, "y": 10 }
- ]
- },
- "bone30": {
- "translate": [
- {
- "time": 0.0667,
- "curve": [ 0.108, 0, 0.192, -718.09, 0.108, 0, 0.192, 0 ]
- },
- { "time": 0.2333, "x": -718.09 }
- ],
- "scale": [
- {
- "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
- },
- {
- "time": 0.0667,
- "x": 0.8,
- "y": 0.8,
- "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
- },
- { "time": 0.2333, "x": 10, "y": 10 }
- ]
- },
- "bone31": {
- "translate": [
- {
- "time": 0.0667,
- "curve": [ 0.108, 0, 0.192, -578.32, 0.108, 0, 0.192, 0 ]
- },
- { "time": 0.2333, "x": -578.32 }
- ],
- "scale": [
- {
- "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
- },
- {
- "time": 0.0667,
- "x": 0.8,
- "y": 0.8,
- "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
- },
- { "time": 0.2333, "x": 10, "y": 10 }
- ]
- },
- "bone32": {
- "translate": [
- {
- "time": 0.0667,
- "curve": [ 0.108, 0, 0.192, -450.63, 0.108, 0, 0.192, 0 ]
- },
- { "time": 0.2333, "x": -450.63 }
- ],
- "scale": [
- {
- "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
- },
- {
- "time": 0.0667,
- "x": 0.8,
- "y": 0.8,
- "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
- },
- { "time": 0.2333, "x": 10, "y": 10 }
- ]
- },
- "bone33": {
- "translate": [
- {
- "time": 0.0667,
- "curve": [ 0.108, 0, 0.192, -634, 0.108, 0, 0.192, 0 ]
- },
- { "time": 0.2333, "x": -634 }
- ],
- "scale": [
- {
- "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
- },
- {
- "time": 0.0667,
- "x": 0.8,
- "y": 0.8,
- "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
- },
- { "time": 0.2333, "x": 10, "y": 10 }
- ]
- },
- "bone34": {
- "translate": [
- {
- "time": 0.0667,
- "curve": [ 0.108, 0, 0.192, -468.55, 0.108, 0, 0.192, 0 ]
- },
- { "time": 0.2333, "x": -468.55 },
- { "time": 0.4, "x": -468.55 }
- ],
- "scale": [
- {
- "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
- },
- {
- "time": 0.0667,
- "x": 0.8,
- "y": 0.8,
- "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
- },
- { "time": 0.2333, "x": 10, "y": 10 }
- ]
- },
- "bone35": {
- "translate": [
- {
- "time": 0.0667,
- "curve": [ 0.108, 0, 0.192, -218.86, 0.108, 0, 0.192, 0 ]
- },
- { "time": 0.2333, "x": -218.86 }
- ],
- "scale": [
- {
- "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
- },
- {
- "time": 0.0667,
- "x": 0.8,
- "y": 0.8,
- "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
- },
- { "time": 0.2333, "x": 10, "y": 10 }
- ]
- },
- "bone36": {
- "translate": [
- {
- "time": 0.0667,
- "curve": [ 0.125, 0, 0.242, -140.4, 0.125, 0, 0.242, 0 ]
- },
- { "time": 0.3, "x": -140.4 }
- ],
- "scale": [
- {
- "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
- },
- {
- "time": 0.0667,
- "x": 0.8,
- "y": 0.8,
- "curve": [ 0.13, 0.8, 0.211, 8.706, 0.13, 0.8, 0.211, 8.706 ]
- },
- { "time": 0.3, "x": 20, "y": 20 }
- ]
- },
- "zi3": {
- "translate": [
- {},
- { "time": 0.3667, "y": -243.1 }
- ]
- },
- "zi4": {
- "translate": [
- { "time": 0.1333 },
- { "time": 0.2333, "y": 184.41 }
- ]
- }
- }
- },
- "animation_03": {
- "slots": {
- "l1": {
- "rgba": [
- { "color": "ffffff00", "curve": "stepped" },
- {
- "time": 0.6667,
- "color": "ffffff00",
- "curve": [ 0.667, 1, 0.735, 1, 0.667, 1, 0.735, 1, 0.667, 1, 0.735, 1, 0.667, 0.27, 0.735, 0.62 ]
- },
- { "time": 0.8333, "color": "ffffffff" }
- ]
- },
- "l2": {
- "rgba": [
- { "color": "ffffff00", "curve": "stepped" },
- {
- "time": 0.6333,
- "color": "ffffff00",
- "curve": [ 0.633, 1, 0.702, 1, 0.633, 1, 0.702, 1, 0.633, 1, 0.702, 1, 0.633, 0.27, 0.702, 0.62 ]
- },
- { "time": 0.8, "color": "ffffffff" }
- ]
- },
- "l3": {
- "rgba": [
- { "color": "ffffff00", "curve": "stepped" },
- {
- "time": 0.5667,
- "color": "ffffff00",
- "curve": [ 0.567, 1, 0.635, 1, 0.567, 1, 0.635, 1, 0.567, 1, 0.635, 1, 0.567, 0.27, 0.635, 0.62 ]
- },
- { "time": 0.7333, "color": "ffffffff" }
- ]
- },
- "l4": {
- "rgba": [
- { "color": "ffffff00", "curve": "stepped" },
- {
- "time": 0.5333,
- "color": "ffffff00",
- "curve": [ 0.533, 1, 0.602, 1, 0.533, 1, 0.602, 1, 0.533, 1, 0.602, 1, 0.533, 0.27, 0.602, 0.62 ]
- },
- { "time": 0.7, "color": "ffffffff" }
- ]
- },
- "l5": {
- "rgba": [
- { "color": "ffffff00", "curve": "stepped" },
- {
- "time": 0.5,
- "color": "ffffff00",
- "curve": [ 0.5, 1, 0.569, 1, 0.5, 1, 0.569, 1, 0.5, 1, 0.569, 1, 0.5, 0.27, 0.569, 0.62 ]
- },
- { "time": 0.6667, "color": "ffffffff" }
- ]
- },
- "l6": {
- "rgba": [
- { "color": "ffffff00", "curve": "stepped" },
- {
- "time": 0.4667,
- "color": "ffffff00",
- "curve": [ 0.467, 1, 0.535, 1, 0.467, 1, 0.535, 1, 0.467, 1, 0.535, 1, 0.467, 0.27, 0.535, 0.62 ]
- },
- { "time": 0.6333, "color": "ffffffff" }
- ]
- },
- "l7": {
- "rgba": [
- { "color": "ffffff00", "curve": "stepped" },
- {
- "time": 0.4,
- "color": "ffffff00",
- "curve": [ 0.4, 1, 0.469, 1, 0.4, 1, 0.469, 1, 0.4, 1, 0.469, 1, 0.4, 0.27, 0.469, 0.62 ]
- },
- { "time": 0.5667, "color": "ffffffff" }
- ]
- },
- "l8": {
- "rgba": [
- { "color": "ffffff00", "curve": "stepped" },
- {
- "time": 0.3667,
- "color": "ffffff00",
- "curve": [ 0.367, 1, 0.435, 1, 0.367, 1, 0.435, 1, 0.367, 1, 0.435, 1, 0.367, 0.27, 0.435, 0.62 ]
- },
- { "time": 0.5333, "color": "ffffffff" }
- ]
- },
- "l9": {
- "rgba": [
- { "color": "ffffff00", "curve": "stepped" },
- {
- "time": 0.3333,
- "color": "ffffff00",
- "curve": [ 0.333, 1, 0.402, 1, 0.333, 1, 0.402, 1, 0.333, 1, 0.402, 1, 0.333, 0.27, 0.402, 0.62 ]
- },
- { "time": 0.5, "color": "ffffffff" }
- ]
- },
- "l10": {
- "rgba": [
- { "color": "ffffff00", "curve": "stepped" },
- {
- "time": 0.6667,
- "color": "ffffff00",
- "curve": [ 0.667, 1, 0.735, 1, 0.667, 1, 0.735, 1, 0.667, 1, 0.735, 1, 0.667, 0.27, 0.735, 0.62 ]
- },
- { "time": 0.8333, "color": "ffffffff" }
- ]
- },
- "l11": {
- "rgba": [
- { "color": "ffffff00", "curve": "stepped" },
- {
- "time": 0.6333,
- "color": "ffffff00",
- "curve": [ 0.633, 1, 0.702, 1, 0.633, 1, 0.702, 1, 0.633, 1, 0.702, 1, 0.633, 0.27, 0.702, 0.62 ]
- },
- { "time": 0.8, "color": "ffffffff" }
- ]
- },
- "l12": {
- "rgba": [
- { "color": "ffffff00", "curve": "stepped" },
- {
- "time": 0.5667,
- "color": "ffffff00",
- "curve": [ 0.567, 1, 0.635, 1, 0.567, 1, 0.635, 1, 0.567, 1, 0.635, 1, 0.567, 0.27, 0.635, 0.62 ]
- },
- { "time": 0.7333, "color": "ffffffff" }
- ]
- },
- "l13": {
- "rgba": [
- { "color": "ffffff00", "curve": "stepped" },
- {
- "time": 0.5333,
- "color": "ffffff00",
- "curve": [ 0.533, 1, 0.602, 1, 0.533, 1, 0.602, 1, 0.533, 1, 0.602, 1, 0.533, 0.27, 0.602, 0.62 ]
- },
- { "time": 0.7, "color": "ffffffff" }
- ]
- },
- "l14": {
- "rgba": [
- { "color": "ffffff00", "curve": "stepped" },
- {
- "time": 0.5,
- "color": "ffffff00",
- "curve": [ 0.5, 1, 0.569, 1, 0.5, 1, 0.569, 1, 0.5, 1, 0.569, 1, 0.5, 0.27, 0.569, 0.62 ]
- },
- { "time": 0.6667, "color": "ffffffff" }
- ]
- },
- "l15": {
- "rgba": [
- { "color": "ffffff00", "curve": "stepped" },
- {
- "time": 0.4667,
- "color": "ffffff00",
- "curve": [ 0.467, 1, 0.535, 1, 0.467, 1, 0.535, 1, 0.467, 1, 0.535, 1, 0.467, 0.27, 0.535, 0.62 ]
- },
- { "time": 0.6333, "color": "ffffffff" }
- ]
- },
- "l16": {
- "rgba": [
- { "color": "ffffff00", "curve": "stepped" },
- {
- "time": 0.4,
- "color": "ffffff00",
- "curve": [ 0.4, 1, 0.469, 1, 0.4, 1, 0.469, 1, 0.4, 1, 0.469, 1, 0.4, 0.27, 0.469, 0.62 ]
- },
- { "time": 0.5667, "color": "ffffffff" }
- ]
- },
- "l17": {
- "rgba": [
- { "color": "ffffff00", "curve": "stepped" },
- {
- "time": 0.3667,
- "color": "ffffff00",
- "curve": [ 0.367, 1, 0.435, 1, 0.367, 1, 0.435, 1, 0.367, 1, 0.435, 1, 0.367, 0.27, 0.435, 0.62 ]
- },
- { "time": 0.5333, "color": "ffffffff" }
- ]
- },
- "l18": {
- "rgba": [
- { "color": "ffffff00", "curve": "stepped" },
- {
- "time": 0.3333,
- "color": "ffffff00",
- "curve": [ 0.333, 1, 0.402, 1, 0.333, 1, 0.402, 1, 0.333, 1, 0.402, 1, 0.333, 0.27, 0.402, 0.62 ]
- },
- { "time": 0.5, "color": "ffffffff" }
- ]
- },
- "l19": {
- "rgba": [
- { "color": "ffffff00", "curve": "stepped" },
- {
- "time": 0.6667,
- "color": "ffffff00",
- "curve": [ 0.667, 1, 0.735, 1, 0.667, 1, 0.735, 1, 0.667, 1, 0.735, 1, 0.667, 0.27, 0.735, 0.62 ]
- },
- { "time": 0.8333, "color": "ffffffff" }
- ]
- },
- "l20": {
- "rgba": [
- { "color": "ffffff00", "curve": "stepped" },
- {
- "time": 0.6333,
- "color": "ffffff00",
- "curve": [ 0.633, 1, 0.702, 1, 0.633, 1, 0.702, 1, 0.633, 1, 0.702, 1, 0.633, 0.27, 0.702, 0.62 ]
- },
- { "time": 0.8, "color": "ffffffff" }
- ]
- },
- "l21": {
- "rgba": [
- { "color": "ffffff00", "curve": "stepped" },
- {
- "time": 0.5667,
- "color": "ffffff00",
- "curve": [ 0.567, 1, 0.635, 1, 0.567, 1, 0.635, 1, 0.567, 1, 0.635, 1, 0.567, 0.27, 0.635, 0.62 ]
- },
- { "time": 0.7333, "color": "ffffffff" }
- ]
- },
- "l22": {
- "rgba": [
- { "color": "ffffff00", "curve": "stepped" },
- {
- "time": 0.5333,
- "color": "ffffff00",
- "curve": [ 0.533, 1, 0.602, 1, 0.533, 1, 0.602, 1, 0.533, 1, 0.602, 1, 0.533, 0.27, 0.602, 0.62 ]
- },
- { "time": 0.7, "color": "ffffffff" }
- ]
- },
- "l23": {
- "rgba": [
- { "color": "ffffff00", "curve": "stepped" },
- {
- "time": 0.5,
- "color": "ffffff00",
- "curve": [ 0.5, 1, 0.569, 1, 0.5, 1, 0.569, 1, 0.5, 1, 0.569, 1, 0.5, 0.27, 0.569, 0.62 ]
- },
- { "time": 0.6667, "color": "ffffffff" }
- ]
- },
- "l24": {
- "rgba": [
- { "color": "ffffff00", "curve": "stepped" },
- {
- "time": 0.4667,
- "color": "ffffff00",
- "curve": [ 0.467, 1, 0.535, 1, 0.467, 1, 0.535, 1, 0.467, 1, 0.535, 1, 0.467, 0.27, 0.535, 0.62 ]
- },
- { "time": 0.6333, "color": "ffffffff" }
- ]
- },
- "l25": {
- "rgba": [
- { "color": "ffffff00", "curve": "stepped" },
- {
- "time": 0.4,
- "color": "ffffff00",
- "curve": [ 0.4, 1, 0.469, 1, 0.4, 1, 0.469, 1, 0.4, 1, 0.469, 1, 0.4, 0.27, 0.469, 0.62 ]
- },
- { "time": 0.5667, "color": "ffffffff" }
- ]
- },
- "l26": {
- "rgba": [
- { "color": "ffffff00", "curve": "stepped" },
- {
- "time": 0.3667,
- "color": "ffffff00",
- "curve": [ 0.367, 1, 0.435, 1, 0.367, 1, 0.435, 1, 0.367, 1, 0.435, 1, 0.367, 0.27, 0.435, 0.62 ]
- },
- { "time": 0.5333, "color": "ffffffff" }
- ]
- },
- "l27": {
- "rgba": [
- { "color": "ffffff00", "curve": "stepped" },
- {
- "time": 0.3333,
- "color": "ffffff00",
- "curve": [ 0.333, 1, 0.402, 1, 0.333, 1, 0.402, 1, 0.333, 1, 0.402, 1, 0.333, 0.27, 0.402, 0.62 ]
- },
- { "time": 0.5, "color": "ffffffff" }
- ]
- },
- "l28": {
- "rgba": [
- { "color": "ffffff00", "curve": "stepped" },
- {
- "time": 0.6667,
- "color": "ffffff00",
- "curve": [ 0.667, 1, 0.735, 1, 0.667, 1, 0.735, 1, 0.667, 1, 0.735, 1, 0.667, 0.27, 0.735, 0.62 ]
- },
- { "time": 0.8333, "color": "ffffffff" }
- ]
- },
- "l29": {
- "rgba": [
- { "color": "ffffff00", "curve": "stepped" },
- {
- "time": 0.6333,
- "color": "ffffff00",
- "curve": [ 0.633, 1, 0.702, 1, 0.633, 1, 0.702, 1, 0.633, 1, 0.702, 1, 0.633, 0.27, 0.702, 0.62 ]
- },
- { "time": 0.8, "color": "ffffffff" }
- ]
- },
- "l30": {
- "rgba": [
- { "color": "ffffff00", "curve": "stepped" },
- {
- "time": 0.5667,
- "color": "ffffff00",
- "curve": [ 0.567, 1, 0.635, 1, 0.567, 1, 0.635, 1, 0.567, 1, 0.635, 1, 0.567, 0.27, 0.635, 0.62 ]
- },
- { "time": 0.7333, "color": "ffffffff" }
- ]
- },
- "l31": {
- "rgba": [
- { "color": "ffffff00", "curve": "stepped" },
- {
- "time": 0.5333,
- "color": "ffffff00",
- "curve": [ 0.533, 1, 0.602, 1, 0.533, 1, 0.602, 1, 0.533, 1, 0.602, 1, 0.533, 0.27, 0.602, 0.62 ]
- },
- { "time": 0.7, "color": "ffffffff" }
- ]
- },
- "l32": {
- "rgba": [
- { "color": "ffffff00", "curve": "stepped" },
- {
- "time": 0.5,
- "color": "ffffff00",
- "curve": [ 0.5, 1, 0.569, 1, 0.5, 1, 0.569, 1, 0.5, 1, 0.569, 1, 0.5, 0.27, 0.569, 0.62 ]
- },
- { "time": 0.6667, "color": "ffffffff" }
- ]
- },
- "l33": {
- "rgba": [
- { "color": "ffffff00", "curve": "stepped" },
- {
- "time": 0.4667,
- "color": "ffffff00",
- "curve": [ 0.467, 1, 0.535, 1, 0.467, 1, 0.535, 1, 0.467, 1, 0.535, 1, 0.467, 0.27, 0.535, 0.62 ]
- },
- { "time": 0.6333, "color": "ffffffff" }
- ]
- },
- "l34": {
- "rgba": [
- { "color": "ffffff00", "curve": "stepped" },
- {
- "time": 0.4,
- "color": "ffffff00",
- "curve": [ 0.4, 1, 0.469, 1, 0.4, 1, 0.469, 1, 0.4, 1, 0.469, 1, 0.4, 0.27, 0.469, 0.62 ]
- },
- { "time": 0.5667, "color": "ffffffff" }
- ]
- },
- "l35": {
- "rgba": [
- { "color": "ffffff00", "curve": "stepped" },
- {
- "time": 0.3667,
- "color": "ffffff00",
- "curve": [ 0.367, 1, 0.435, 1, 0.367, 1, 0.435, 1, 0.367, 1, 0.435, 1, 0.367, 0.27, 0.435, 0.62 ]
- },
- { "time": 0.5333, "color": "ffffffff" }
- ]
- },
- "l36": {
- "rgba": [
- { "color": "ffffff00", "curve": "stepped" },
- {
- "time": 0.3333,
- "color": "ffffff00",
- "curve": [ 0.333, 1, 0.402, 1, 0.333, 1, 0.402, 1, 0.333, 1, 0.402, 1, 0.333, 0.27, 0.402, 0.62 ]
- },
- { "time": 0.5, "color": "ffffffff" }
- ]
- },
- "quan1": {
- "rgba": [
- { "color": "ffffff00", "curve": "stepped" },
- { "time": 0.0333, "color": "ffffff00" },
- { "time": 0.0667, "color": "00f8ffff" },
- { "time": 0.1333, "color": "00f4ffff" },
- { "time": 0.2, "color": "ffffff00" }
- ],
- "attachment": [
- { "time": 0.2333 }
- ]
- },
- "quan01": {
- "rgba": [
- { "color": "b900ff21" },
- { "time": 0.1667, "color": "ca44fcff" },
- {
- "time": 0.5,
- "color": "b211ffc4",
- "curve": [ 0.5, 0.79, 0.65, 0.88, 0.5, 0.04, 0.65, 0.01, 0.5, 1, 0.65, 1, 0.5, 0.46, 0.65, 0.15 ]
- },
- { "time": 0.8667, "color": "ec00ff00" }
- ],
- "attachment": [
- { "name": "quan01" },
- { "time": 0.8667 }
- ]
- },
- "quan2": {
- "rgba": [
- { "color": "ffffff00", "curve": "stepped" },
- {
- "time": 0.1667,
- "color": "ffffff00",
- "curve": [ 0.208, 1, 0.292, 1, 0.208, 1, 0.292, 1, 0.208, 1, 0.292, 1, 0.208, 0, 0.292, 1 ]
- },
- { "time": 0.3333, "color": "ffffffff" }
- ]
- },
- "quan02": {
- "rgba": [
- { "color": "ffffff00", "curve": "stepped" },
- {
- "time": 0.1667,
- "color": "ffffff00",
- "curve": [ 0.217, 1, 0.317, 1, 0.217, 1, 0.317, 1, 0.217, 1, 0.317, 1, 0.217, 0, 0.317, 1 ]
- },
- { "time": 0.3667, "color": "ffffffff" }
- ]
- },
- "quan3": {
- "rgba": [
- { "color": "ffffff00", "curve": "stepped" },
- { "time": 0.1, "color": "ffffff00" },
- { "time": 0.1333, "color": "00f4ffff" },
- { "time": 0.2, "color": "00fff8ff" },
- { "time": 0.2667, "color": "00f8ff00" }
- ],
- "attachment": [
- { "time": 0.3333 }
- ]
- },
- "quan03": {
- "rgba": [
- { "color": "ffffff00", "curve": "stepped" },
- {
- "time": 0.2,
- "color": "ffffff00",
- "curve": [ 0.267, 1, 0.4, 1, 0.267, 1, 0.4, 1, 0.267, 1, 0.4, 1, 0.267, 0, 0.4, 1 ]
- },
- { "time": 0.4667, "color": "ffffffff" }
- ]
- },
- "quan4": {
- "rgba": [
- { "color": "ffffff00", "curve": "stepped" },
- { "time": 0.1, "color": "ffffff00" },
- { "time": 0.1667, "color": "00ffe7ff" },
- { "time": 0.2, "color": "00fff1ff" },
- { "time": 0.2667, "color": "00fffb00" }
- ],
- "attachment": [
- { "time": 0.3 }
- ]
- },
- "quan04": {
- "rgba": [
- { "color": "ffffff00", "curve": "stepped" },
- {
- "time": 0.2333,
- "color": "ffffff00",
- "curve": [ 0.3, 1, 0.433, 1, 0.3, 1, 0.433, 1, 0.3, 1, 0.433, 1, 0.3, 0, 0.433, 1 ]
- },
- { "time": 0.5, "color": "ffffffff" }
- ]
- },
- "quan5": {
- "rgba": [
- { "color": "ffffff00" },
- { "time": 0.0333, "color": "fe42ffff" },
- { "time": 0.1333, "color": "ff00f9ff" },
- { "time": 0.2, "color": "ff2ffa00" }
- ],
- "attachment": [
- { "time": 0.2333 }
- ]
- },
- "quan6": {
- "rgba": [
- { "color": "ffffff00", "curve": "stepped" },
- { "time": 0.0667, "color": "ffffff00" },
- { "time": 0.1333, "color": "00f8ffff" },
- { "time": 0.2333, "color": "04f4ffff" },
- { "time": 0.3, "color": "00fbff00" }
- ],
- "attachment": [
- { "time": 0.3667 }
- ]
- },
- "quan7": {
- "rgba": [
- { "color": "ffffff00", "curve": "stepped" },
- { "time": 0.1333, "color": "ffffff00" },
- { "time": 0.2333, "color": "00fff1ff" },
- { "time": 0.3333, "color": "00f8ffff" },
- { "time": 0.4333, "color": "00fff400" }
- ],
- "attachment": [
- { "time": 0.5 }
- ]
- },
- "quan8": {
- "rgba": [
- { "color": "ffffff00", "curve": "stepped" },
- {
- "time": 0.3,
- "color": "ffffff00",
- "curve": [ 0.375, 1, 0.525, 1, 0.375, 1, 0.525, 1, 0.375, 1, 0.525, 1, 0.375, 0, 0.525, 1 ]
- },
- { "time": 0.6, "color": "ffffffff" }
- ]
- },
- "quan08": {
- "rgba": [
- { "color": "ffffff00", "curve": "stepped" },
- {
- "time": 0.3333,
- "color": "ffffff00",
- "curve": [ 0.408, 1, 0.558, 1, 0.408, 1, 0.558, 1, 0.408, 1, 0.558, 1, 0.408, 0, 0.558, 1 ]
- },
- { "time": 0.6333, "color": "ffffffff" }
- ]
- },
- "quan9": {
- "rgba": [
- { "color": "ffffff00", "curve": "stepped" },
- {
- "time": 0.2667,
- "color": "ffffff00",
- "curve": [ 0.342, 1, 0.492, 1, 0.342, 1, 0.492, 1, 0.342, 1, 0.492, 1, 0.342, 0, 0.492, 1 ]
- },
- { "time": 0.5667, "color": "ffffffff" }
- ]
- },
- "quan09": {
- "rgba": [
- { "color": "ffffff00", "curve": "stepped" },
- {
- "time": 0.3667,
- "color": "ffffff00",
- "curve": [ 0.442, 1, 0.592, 1, 0.442, 1, 0.592, 1, 0.442, 1, 0.592, 1, 0.442, 0, 0.592, 1 ]
- },
- { "time": 0.6667, "color": "ffffffff" }
- ]
- },
- "quan10": {
- "rgba": [
- { "color": "ffffff00", "curve": "stepped" },
- {
- "time": 0.4333,
- "color": "ffffff00",
- "curve": [ 0.5, 1, 0.633, 1, 0.5, 1, 0.633, 1, 0.5, 1, 0.633, 1, 0.5, 0, 0.633, 1 ]
- },
- { "time": 0.7, "color": "ffffffff" }
- ],
- "attachment": [
- {},
- { "time": 0.4333, "name": "quan10" }
- ]
- },
- "quan11": {
- "rgba": [
- { "color": "ffffff00", "curve": "stepped" },
- { "time": 0.1667, "color": "ffffff00" },
- { "time": 0.2333, "color": "ff00f6ff", "curve": "stepped" },
- { "time": 0.3333, "color": "ff00f6ff" },
- { "time": 0.4, "color": "ff00f600" }
- ],
- "attachment": [
- { "time": 0.4667 }
- ]
- },
- "quan12": {
- "rgba": [
- { "color": "ffffff00", "curve": "stepped" },
- {
- "time": 0.2333,
- "color": "ffffff00",
- "curve": [ 0.308, 1, 0.458, 1, 0.308, 1, 0.458, 1, 0.308, 1, 0.458, 1, 0.308, 0, 0.458, 1 ]
- },
- { "time": 0.5333, "color": "ffffffff" }
- ]
- },
- "quan13": {
- "rgba": [
- { "color": "ffffff00" },
- { "time": 0.0667, "color": "f300ffff" },
- { "time": 0.2, "color": "ff00f2ff" },
- { "time": 0.3, "color": "ff00f900" }
- ],
- "attachment": [
- { "time": 0.3667 }
- ]
- },
- "quan14": {
- "rgba": [
- { "color": "ffffff00", "curve": "stepped" },
- { "time": 0.1, "color": "ffffff00" },
- { "time": 0.1667, "color": "00fff4ff" },
- { "time": 0.3, "color": "00fffbff" },
- { "time": 0.4333, "color": "00e0ff01" }
- ],
- "attachment": [
- { "time": 0.5 }
- ]
- },
- "quan15": {
- "rgba": [
- { "color": "ffffff00", "curve": "stepped" },
- { "time": 0.1667, "color": "ffffff00" },
- { "time": 0.3, "color": "fa00ffff" },
- { "time": 0.4667, "color": "f900ffff" },
- { "time": 0.6, "color": "f900ff00" }
- ],
- "attachment": [
- { "time": 0.6667 }
- ]
- },
- "quan16": {
- "rgba": [
- { "color": "ffffff00", "curve": "stepped" },
- { "time": 0.2333, "color": "ffffff00" },
- { "time": 0.3, "color": "f900ffff", "curve": "stepped" },
- { "time": 0.4667, "color": "f900ffff" },
- { "time": 0.5667, "color": "f900ff00" }
- ],
- "attachment": [
- { "time": 0.6333 }
- ]
- },
- "quan17": {
- "rgba": [
- { "color": "00f4ff00" },
- { "time": 0.1, "color": "00f4ffff", "curve": "stepped" },
- { "time": 0.3, "color": "00f4ffff" },
- { "time": 0.4, "color": "00f4ff00" }
- ],
- "attachment": [
- { "time": 0.5 }
- ]
- },
- "quan18": {
- "rgba": [
- { "color": "ffffff00", "curve": "stepped" },
- { "time": 0.1, "color": "ffffff00" },
- { "time": 0.1333, "color": "ce00ffff", "curve": "stepped" },
- { "time": 0.2333, "color": "ce00ffff" },
- { "time": 0.4, "color": "f000ff00" }
- ],
- "attachment": [
- { "time": 0.4333 }
- ]
- },
- "quan19": {
- "rgba": [
- { "color": "ffffff00" },
- { "time": 0.1333, "color": "00f4ff00" },
- { "time": 0.2667, "color": "00eaffff" },
- { "time": 0.4, "color": "00fff4ff" },
- { "time": 0.5, "color": "00f1ff00" }
- ],
- "attachment": [
- { "time": 0.5667 }
- ]
- },
- "quan20": {
- "rgba": [
- { "color": "ffffff00", "curve": "stepped" },
- { "time": 0.2, "color": "ffffff00" },
- { "time": 0.2667, "color": "ce00ffff" }
- ],
- "attachment": [
- { "time": 0.4667 }
- ]
- },
- "quan21": {
- "rgba": [
- { "color": "ff00f600" },
- { "time": 0.1, "color": "ff00f6ff", "curve": "stepped" },
- { "time": 0.2667, "color": "ff00f6ff" },
- { "time": 0.3667, "color": "ff00f600" }
- ],
- "attachment": [
- { "time": 0.4333 }
- ]
- },
- "quan22": {
- "rgba": [
- { "color": "ffffff85" },
- { "time": 0.1667, "color": "ffffffff" },
- {
- "time": 0.3,
- "color": "ffffff7e",
- "curve": [ 0.3, 0.97, 0.532, 0.94, 0.3, 0.6, 0.532, 0.19, 0.3, 1, 0.532, 1, 0.3, 0.3, 0.532, 0.1 ]
- },
- { "time": 0.8667, "color": "ec00ff00" }
- ],
- "attachment": [
- { "name": "quan01" },
- { "time": 0.8667 }
- ]
- },
- "red": {
- "rgba": [
- { "color": "ffffff00", "curve": "stepped" },
- { "time": 0.1667, "color": "ffffff00" },
- { "time": 0.5, "color": "ffffffff" }
- ]
- }
- },
- "bones": {
- "bone6": {
- "translate": [
- { "time": 0.1667 },
- { "time": 0.4667, "x": -9.18 },
- { "time": 0.5667, "x": 4.17 },
- { "time": 0.6333 }
- ]
- },
- "bone28": {
- "translate": [
- { "time": 0.1667 },
- { "time": 0.6667, "x": -6.68 },
- { "time": 0.7667, "x": 1.67 },
- { "time": 0.8333 }
- ]
- },
- "bone19": {
- "translate": [
- { "time": 0.1667 },
- { "time": 0.6667, "x": -8.35 },
- { "time": 0.7667, "x": 2.51 },
- { "time": 0.8333 }
- ]
- },
- "bone3": {
- "translate": [
- { "time": 0.1667 },
- { "time": 0.5667, "x": -9.18 },
- { "time": 0.6667, "x": 4.17 },
- { "time": 0.7333 }
- ]
- },
- "bone25": {
- "translate": [
- { "time": 0.1667 },
- { "time": 0.4, "x": -8.35 },
- { "time": 0.5, "x": 2.51 },
- { "time": 0.5667 }
- ]
- },
- "bone7": {
- "translate": [
- { "time": 0.1667 },
- { "time": 0.4, "x": -9.18 },
- { "time": 0.5, "x": 4.17 },
- { "time": 0.5667 }
- ]
- },
- "bone10": {
- "translate": [
- { "time": 0.1667 },
- { "time": 0.6667, "x": -10.02 },
- { "time": 0.7667, "x": 3.34 },
- { "time": 0.8333 }
- ]
- },
- "bone27": {
- "translate": [
- { "time": 0.1667 },
- { "time": 0.3333, "x": -8.35 },
- { "time": 0.4333, "x": 2.51 },
- { "time": 0.5 }
- ]
- },
- "bone5": {
- "translate": [
- { "time": 0.1667 },
- { "time": 0.5, "x": -9.18 },
- { "time": 0.6, "x": 4.17 },
- { "time": 0.6667 }
- ]
- },
- "quan02": {
- "scale": [
- { "x": 5, "y": 5, "curve": "stepped" },
- {
- "time": 0.1667,
- "x": 5,
- "y": 5,
- "curve": [ 0.217, 5, 0.317, 0.9, 0.217, 5, 0.317, 0.9 ]
- },
- {
- "time": 0.3667,
- "x": 0.9,
- "y": 0.9,
- "curve": [ 0.383, 0.9, 0.417, 1, 0.383, 0.9, 0.417, 1 ]
- },
- { "time": 0.4333 }
- ]
- },
- "bone4": {
- "translate": [
- { "time": 0.1667 },
- { "time": 0.5333, "x": -9.18 },
- { "time": 0.6333, "x": 4.17 },
- { "time": 0.7 }
- ]
- },
- "bone34": {
- "translate": [
- { "time": 0.1667 },
- { "time": 0.4, "x": -6.68 },
- { "time": 0.5, "x": 1.67 },
- { "time": 0.5667 }
- ]
- },
- "bone24": {
- "translate": [
- { "time": 0.1667 },
- { "time": 0.4667, "x": -8.35 },
- { "time": 0.5667, "x": 2.51 },
- { "time": 0.6333 }
- ]
- },
- "bone14": {
- "translate": [
- { "time": 0.1667 },
- { "time": 0.5, "x": -10.02 },
- { "time": 0.6, "x": 3.34 },
- { "time": 0.6667 }
- ]
- },
- "bone36": {
- "translate": [
- { "time": 0.1667 },
- { "time": 0.3333, "x": -6.68 },
- { "time": 0.4333, "x": 1.67 },
- { "time": 0.5 }
- ]
- },
- "bone30": {
- "translate": [
- { "time": 0.1667 },
- { "time": 0.5667, "x": -6.68 },
- { "time": 0.6667, "x": 1.67 },
- { "time": 0.7333 }
- ]
- },
- "bone15": {
- "translate": [
- { "time": 0.1667 },
- { "time": 0.4667, "x": -10.02 },
- { "time": 0.5667, "x": 3.34 },
- { "time": 0.6333 }
- ]
- },
- "bone": {
- "translate": [
- { "time": 0.1667 },
- { "time": 0.6667, "x": -9.18 },
- { "time": 0.7667, "x": 4.17 },
- { "time": 0.8333 }
- ]
- },
- "quan0101": {
- "scale": [
- { "x": 0.5, "y": 0.5 },
- { "time": 0.1667 },
- { "time": 0.3, "x": 0.875, "y": 0.875 },
- {
- "time": 0.5,
- "x": 1.483,
- "y": 1.5,
- "curve": [ 0.5, 1.29, 0.65, 1.093, 0.5, 1.3, 0.65, 1.096 ]
- },
- { "time": 0.8667 }
- ]
- },
- "bone12": {
- "translate": [
- { "time": 0.1667 },
- { "time": 0.5667, "x": -10.02 },
- { "time": 0.6667, "x": 3.34 },
- { "time": 0.7333 }
- ]
- },
- "bone35": {
- "translate": [
- { "time": 0.1667 },
- { "time": 0.3667, "x": -6.68 },
- { "time": 0.4667, "x": 1.67 },
- { "time": 0.5333 }
- ]
- },
- "bone9": {
- "translate": [
- { "time": 0.1667 },
- { "time": 0.3333, "x": -9.18 },
- { "time": 0.4333, "x": 4.17 },
- { "time": 0.5 }
- ]
- },
- "bone2": {
- "translate": [
- { "time": 0.1667 },
- { "time": 0.6333, "x": -9.18 },
- { "time": 0.7333, "x": 4.17 },
- { "time": 0.8 }
- ]
- },
- "quan08": {
- "scale": [
- { "x": 5, "y": 5, "curve": "stepped" },
- {
- "time": 0.1667,
- "x": 5,
- "y": 5,
- "curve": [ 0.267, 5, 0.467, 0.9, 0.267, 5, 0.467, 0.9 ]
- },
- {
- "time": 0.5667,
- "x": 0.9,
- "y": 0.9,
- "curve": [ 0.583, 0.9, 0.617, 1, 0.583, 0.9, 0.617, 1 ]
- },
- { "time": 0.6333 }
- ]
- },
- "bone31": {
- "translate": [
- { "time": 0.1667 },
- { "time": 0.5333, "x": -6.68 },
- { "time": 0.6333, "x": 1.67 },
- { "time": 0.7 }
- ]
- },
- "bone21": {
- "translate": [
- { "time": 0.1667 },
- { "time": 0.5667, "x": -8.35 },
- { "time": 0.6667, "x": 2.51 },
- { "time": 0.7333 }
- ]
- },
- "quan06": {
- "scale": [
- { "x": 5, "y": 5, "curve": "stepped" },
- {
- "time": 0.1667,
- "x": 5,
- "y": 5,
- "curve": [ 0.25, 5, 0.417, 0.9, 0.25, 5, 0.417, 0.9 ]
- },
- {
- "time": 0.5,
- "x": 0.9,
- "y": 0.9,
- "curve": [ 0.517, 0.9, 0.55, 1, 0.517, 0.9, 0.55, 1 ]
- },
- { "time": 0.5667 }
- ]
- },
- "bone8": {
- "translate": [
- { "time": 0.1667 },
- { "time": 0.3667, "x": -9.18 },
- { "time": 0.4667, "x": 4.17 },
- { "time": 0.5333 }
- ]
- },
- "bone32": {
- "translate": [
- { "time": 0.1667 },
- { "time": 0.5, "x": -6.68 },
- { "time": 0.6, "x": 1.67 },
- { "time": 0.6667 }
- ]
- },
- "bone29": {
- "translate": [
- { "time": 0.1667 },
- { "time": 0.6333, "x": -6.68 },
- { "time": 0.7333, "x": 1.67 },
- { "time": 0.8 }
- ]
- },
- "bone17": {
- "translate": [
- { "time": 0.1667 },
- { "time": 0.3667, "x": -10.02 },
- { "time": 0.4667, "x": 3.34 },
- { "time": 0.5333 }
- ]
- },
- "bone33": {
- "translate": [
- { "time": 0.1667 },
- { "time": 0.4667, "x": -6.68 },
- { "time": 0.5667, "x": 1.67 },
- { "time": 0.6333 }
- ]
- },
- "quan03": {
- "scale": [
- { "x": 5, "y": 5, "curve": "stepped" },
- {
- "time": 0.1667,
- "x": 5,
- "y": 5,
- "curve": [ 0.225, 5, 0.342, 0.9, 0.225, 5, 0.342, 0.9 ]
- },
- {
- "time": 0.4,
- "x": 0.9,
- "y": 0.9,
- "curve": [ 0.417, 0.9, 0.45, 1, 0.417, 0.9, 0.45, 1 ]
- },
- { "time": 0.4667 }
- ]
- },
- "quan9": {
- "scale": [
- { "x": 5, "y": 5, "curve": "stepped" },
- {
- "time": 0.1667,
- "x": 5,
- "y": 5,
- "curve": [ 0.275, 5, 0.492, 0.9, 0.275, 5, 0.492, 0.9 ]
- },
- {
- "time": 0.6,
- "x": 0.9,
- "y": 0.9,
- "curve": [ 0.617, 0.9, 0.65, 1, 0.617, 0.9, 0.65, 1 ]
- },
- { "time": 0.6667 }
- ]
- },
- "quan10": {
- "scale": [
- { "x": 5, "y": 5, "curve": "stepped" },
- {
- "time": 0.1667,
- "x": 5,
- "y": 5,
- "curve": [ 0.283, 5, 0.517, 0.9, 0.283, 5, 0.517, 0.9 ]
- },
- {
- "time": 0.6333,
- "x": 0.9,
- "y": 0.9,
- "curve": [ 0.65, 0.9, 0.683, 1, 0.65, 0.9, 0.683, 1 ]
- },
- { "time": 0.7 }
- ]
- },
- "bone16": {
- "translate": [
- { "time": 0.1667 },
- { "time": 0.4, "x": -10.02 },
- { "time": 0.5, "x": 3.34 },
- { "time": 0.5667 }
- ]
- },
- "bone18": {
- "translate": [
- { "time": 0.1667 },
- { "time": 0.3333, "x": -10.02 },
- { "time": 0.4333, "x": 3.34 },
- { "time": 0.5 }
- ]
- },
- "quan01": {
- "scale": [
- { "x": 5, "y": 5, "curve": "stepped" },
- {
- "time": 0.1667,
- "x": 5,
- "y": 5,
- "curve": [ 0.208, 5, 0.292, 0.9, 0.208, 5, 0.292, 0.9 ]
- },
- {
- "time": 0.3333,
- "x": 0.9,
- "y": 0.9,
- "curve": [ 0.35, 0.9, 0.383, 1, 0.35, 0.9, 0.383, 1 ]
- },
- { "time": 0.4 }
- ]
- },
- "quan05": {
- "scale": [
- { "x": 5, "y": 5, "curve": "stepped" },
- {
- "time": 0.1667,
- "x": 5,
- "y": 5,
- "curve": [ 0.242, 5, 0.392, 0.9, 0.242, 5, 0.392, 0.9 ]
- },
- {
- "time": 0.4667,
- "x": 0.9,
- "y": 0.9,
- "curve": [ 0.483, 0.9, 0.517, 1, 0.483, 0.9, 0.517, 1 ]
- },
- { "time": 0.5333 }
- ]
- },
- "bone11": {
- "translate": [
- { "time": 0.1667 },
- { "time": 0.6333, "x": -10.02 },
- { "time": 0.7333, "x": 3.34 },
- { "time": 0.8 }
- ]
- },
- "bone20": {
- "translate": [
- { "time": 0.1667 },
- { "time": 0.6333, "x": -8.35 },
- { "time": 0.7333, "x": 2.51 },
- { "time": 0.8 }
- ]
- },
- "bone26": {
- "translate": [
- { "time": 0.1667 },
- { "time": 0.3667, "x": -8.35 },
- { "time": 0.4667, "x": 2.51 },
- { "time": 0.5333 }
- ]
- },
- "bone23": {
- "translate": [
- { "time": 0.1667 },
- { "time": 0.5, "x": -8.35 },
- { "time": 0.6, "x": 2.51 },
- { "time": 0.6667 }
- ]
- },
- "bone22": {
- "translate": [
- { "time": 0.1667 },
- { "time": 0.5333, "x": -8.35 },
- { "time": 0.6333, "x": 2.51 },
- { "time": 0.7 }
- ]
- },
- "bone13": {
- "translate": [
- { "time": 0.1667 },
- { "time": 0.5333, "x": -10.02 },
- { "time": 0.6333, "x": 3.34 },
- { "time": 0.7 }
- ]
- },
- "quan04": {
- "scale": [
- { "x": 5, "y": 5, "curve": "stepped" },
- {
- "time": 0.1667,
- "x": 5,
- "y": 5,
- "curve": [ 0.233, 5, 0.367, 0.9, 0.233, 5, 0.367, 0.9 ]
- },
- {
- "time": 0.4333,
- "x": 0.9,
- "y": 0.9,
- "curve": [ 0.45, 0.9, 0.483, 1, 0.45, 0.9, 0.483, 1 ]
- },
- { "time": 0.5 }
- ]
- },
- "quan07": {
- "scale": [
- { "x": 5, "y": 5, "curve": "stepped" },
- {
- "time": 0.1667,
- "x": 5,
- "y": 5,
- "curve": [ 0.258, 5, 0.442, 0.9, 0.258, 5, 0.442, 0.9 ]
- },
- {
- "time": 0.5333,
- "x": 0.9,
- "y": 0.9,
- "curve": [ 0.55, 0.9, 0.583, 1, 0.55, 0.9, 0.583, 1 ]
- },
- { "time": 0.6 }
- ]
- },
- "root": {
- "scale": [
- { "x": 0.8, "y": 0.8, "curve": "stepped" },
- { "time": 0.1667, "x": 0.8, "y": 0.8 },
- { "time": 0.6667 }
- ]
- },
- "quan101": {
- "translate": [
- { "y": -1213.94, "curve": "stepped" },
- {
- "time": 0.0333,
- "y": -1213.94,
- "curve": [ 0.083, 0, 0.183, 0, 0.083, -1213.94, 0.183, 12.94 ]
- },
- { "time": 0.2333, "y": 12.94 }
- ],
- "scale": [
- {
- "time": 0.0333,
- "curve": [ 0.033, 1, 0.133, 1, 0.033, 4.72, 0.133, 9.149 ]
- },
- { "time": 0.1667, "y": 9.149 },
- { "time": 0.2333 }
- ]
- },
- "quan102": {
- "translate": [
- { "x": 1166.81, "y": 9.37, "curve": "stepped" },
- {
- "time": 0.1,
- "x": 1166.81,
- "y": 9.37,
- "curve": [ 0.158, 1166.81, 0.275, 0, 0.158, 9.37, 0.275, 12.94 ]
- },
- { "time": 0.3333, "y": 12.94 }
- ],
- "scale": [
- {
- "time": 0.1,
- "curve": [ 0.1, 1, 0.2, 1, 0.1, 2.59, 0.2, 4.482 ]
- },
- { "time": 0.2333, "y": 4.482 },
- { "time": 0.3333 }
- ]
- },
- "quan103": {
- "translate": [
- { "x": -1401.29, "y": 9.37, "curve": "stepped" },
- {
- "time": 0.1,
- "x": -1401.29,
- "y": 9.37,
- "curve": [ 0.15, -1401.29, 0.25, -116.47, 0.15, 9.37, 0.25, 12.94 ]
- },
- { "time": 0.3, "x": -116.47, "y": 12.94 }
- ],
- "scale": [
- {
- "time": 0.1,
- "curve": [ 0.1, 1, 0.2, 1, 0.1, 2.59, 0.2, 4.482 ]
- },
- { "time": 0.2333, "y": 4.482 },
- { "time": 0.3 }
- ]
- },
- "quan104": {
- "rotate": [
- { "value": -90.96 }
- ],
- "translate": [
- {
- "x": -0.11,
- "y": 1002.77,
- "curve": [ 0.058, -0.11, 0.175, 0, 0.058, 1002.77, 0.175, 0 ]
- },
- { "time": 0.2333 }
- ],
- "scale": [
- {
- "curve": [ 0, 1, 0.05, 1, 0, 3.21, 0.05, 5.841 ]
- },
- { "time": 0.0667, "y": 5.841 },
- { "time": 0.2333 }
- ]
- },
- "quan105": {
- "translate": [
- { "y": -1213.94, "curve": "stepped" },
- {
- "time": 0.0667,
- "y": -1213.94,
- "curve": [ 0.142, 0, 0.292, 0, 0.142, -1213.94, 0.292, 12.94 ]
- },
- { "time": 0.3667, "y": 12.94 }
- ],
- "scale": [
- {
- "time": 0.0667,
- "curve": [ 0.067, 1, 0.217, 1, 0.067, 4.72, 0.217, 9.149 ]
- },
- { "time": 0.2667, "y": 9.149 },
- { "time": 0.3667 }
- ]
- },
- "quan106": {
- "translate": [
- { "x": 1166.81, "y": 9.37, "curve": "stepped" },
- {
- "time": 0.1333,
- "x": 1166.81,
- "y": 9.37,
- "curve": [ 0.225, 1166.81, 0.408, 0, 0.225, 9.37, 0.408, 12.94 ]
- },
- { "time": 0.5, "y": 12.94 }
- ],
- "scale": [
- {
- "time": 0.1333,
- "curve": [ 0.133, 1, 0.333, 1, 0.133, 2.59, 0.333, 4.482 ]
- },
- { "time": 0.4, "y": 4.482 },
- { "time": 0.5 }
- ]
- },
- "quan107": {
- "translate": [
- { "x": -1401.29, "y": 9.37, "curve": "stepped" },
- {
- "time": 0.1667,
- "x": -1401.29,
- "y": 9.37,
- "curve": [ 0.242, -1401.29, 0.392, -74.7, 0.242, 9.37, 0.392, -2.5 ]
- },
- { "time": 0.4667, "x": -74.7, "y": -2.5 }
- ],
- "scale": [
- {
- "time": 0.1667,
- "curve": [ 0.167, 1, 0.342, 1, 0.167, 2.59, 0.342, 4.482 ]
- },
- { "time": 0.4, "y": 4.482 },
- { "time": 0.4667 }
- ]
- },
- "quan108": {
- "rotate": [
- { "value": -90.96 }
- ],
- "translate": [
- {
- "x": -0.11,
- "y": 1002.77,
- "curve": [ 0.092, -0.11, 0.275, 8.56, 0.092, 1002.77, 0.275, 195.42 ]
- },
- { "time": 0.3667, "x": 8.56, "y": 195.42 }
- ],
- "scale": [
- {
- "curve": [ 0, 1, 0.1, 1, 0, 3.21, 0.1, 5.841 ]
- },
- { "time": 0.1333, "y": 5.841 },
- { "time": 0.3667 }
- ]
- },
- "quan109": {
- "translate": [
- { "y": -1213.94, "curve": "stepped" },
- {
- "time": 0.1,
- "y": -1213.94,
- "curve": [ 0.2, 0, 0.4, 0, 0.2, -1213.94, 0.4, 12.94 ]
- },
- { "time": 0.5, "y": 12.94 }
- ],
- "scale": [
- {
- "time": 0.1,
- "curve": [ 0.1, 1, 0.3, 1, 0.1, 4.72, 0.3, 9.149 ]
- },
- { "time": 0.3667, "y": 9.149 },
- { "time": 0.5 }
- ]
- },
- "quan110": {
- "translate": [
- { "x": 1166.81, "y": 9.37, "curve": "stepped" },
- {
- "time": 0.1667,
- "x": 1166.81,
- "y": 9.37,
- "curve": [ 0.292, 1166.81, 0.542, 0, 0.292, 9.37, 0.542, 12.94 ]
- },
- { "time": 0.6667, "y": 12.94 }
- ],
- "scale": [
- {
- "time": 0.1667,
- "curve": [ 0.167, 1, 0.442, 1, 0.167, 2.59, 0.442, 4.482 ]
- },
- { "time": 0.5333, "y": 4.482 },
- { "time": 0.6667 }
- ]
- },
- "quan111": {
- "translate": [
- { "x": -1401.29, "y": 9.37, "curve": "stepped" },
- {
- "time": 0.2333,
- "x": -1401.29,
- "y": 9.37,
- "curve": [ 0.333, -1401.29, 0.533, -74.7, 0.333, 9.37, 0.533, -2.5 ]
- },
- { "time": 0.6333, "x": -74.7, "y": -2.5 }
- ],
- "scale": [
- {
- "time": 0.2333,
- "curve": [ 0.233, 1, 0.458, 1, 0.233, 2.59, 0.458, 4.482 ]
- },
- { "time": 0.5333, "y": 4.482 },
- { "time": 0.6333 }
- ]
- },
- "quan112": {
- "rotate": [
- { "value": -90.96 }
- ],
- "translate": [
- {
- "x": -0.11,
- "y": 1002.77,
- "curve": [ 0.125, -0.11, 0.375, 8.56, 0.125, 1002.77, 0.375, 195.42 ]
- },
- { "time": 0.5, "x": 8.56, "y": 195.42 }
- ],
- "scale": [
- {
- "curve": [ 0, 1, 0.125, 1, 0, 3.21, 0.125, 5.841 ]
- },
- { "time": 0.1667, "y": 5.841 },
- { "time": 0.5 }
- ]
- },
- "xian3": {
- "rotate": [
- { "value": 159.05 }
- ]
- },
- "quan113": {
- "translate": [
- { "y": -1213.94, "curve": "stepped" },
- {
- "time": 0.1,
- "y": -1213.94,
- "curve": [ 0.183, 0, 0.35, 0, 0.183, -1213.94, 0.35, 12.94 ]
- },
- { "time": 0.4333, "y": 12.94 }
- ],
- "scale": [
- {
- "time": 0.1,
- "curve": [ 0.1, 1, 0.25, 1, 0.1, 4.72, 0.25, 9.149 ]
- },
- { "time": 0.3, "y": 9.149 },
- { "time": 0.4333 }
- ]
- },
- "quan114": {
- "translate": [
- { "x": 1166.81, "y": 9.37, "curve": "stepped" },
- {
- "time": 0.1333,
- "x": 1166.81,
- "y": 9.37,
- "curve": [ 0.242, 1166.81, 0.458, 0, 0.242, 9.37, 0.458, 12.94 ]
- },
- { "time": 0.5667, "y": 12.94 }
- ],
- "scale": [
- {
- "time": 0.1333,
- "curve": [ 0.133, 1, 0.383, 1, 0.133, 2.59, 0.383, 4.482 ]
- },
- { "time": 0.4667, "y": 4.482 },
- { "time": 0.5667 }
- ]
- },
- "quan115": {
- "translate": [
- { "x": -1401.29, "y": 9.37, "curve": "stepped" },
- {
- "time": 0.2,
- "x": -1401.29,
- "y": 9.37,
- "curve": [ 0.283, -1401.29, 0.45, -74.7, 0.283, 9.37, 0.45, -2.5 ]
- },
- { "time": 0.5333, "x": -74.7, "y": -2.5 }
- ],
- "scale": [
- {
- "time": 0.2,
- "curve": [ 0.2, 1, 0.4, 1, 0.2, 2.59, 0.4, 4.482 ]
- },
- { "time": 0.4667, "y": 4.482 },
- { "time": 0.5333 }
- ]
- },
- "quan116": {
- "rotate": [
- { "value": -90.96 }
- ],
- "translate": [
- {
- "x": -0.11,
- "y": 1002.77,
- "curve": [ 0.108, -0.11, 0.325, 8.56, 0.108, 1002.77, 0.325, 195.42 ]
- },
- { "time": 0.4333, "x": 8.56, "y": 195.42 }
- ],
- "scale": [
- {
- "curve": [ 0, 1, 0.1, 1, 0, 3.21, 0.1, 5.841 ]
- },
- { "time": 0.1333, "y": 5.841 },
- { "time": 0.4333 }
- ]
- },
- "xian4": {
- "rotate": [
- { "value": 27.67 }
- ]
- },
- "quan117": {
- "scale": [
- { "x": 0.25, "y": 0.25 },
- { "time": 0.1667, "x": 0.75, "y": 0.75 },
- { "time": 0.4 }
- ]
- }
- }
- },
- "animation_04": {
- "slots": {
- "l1": {
- "rgba": [
- {
- "time": 0.0667,
- "color": "ffffffff",
- "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
- },
- { "time": 0.2333, "color": "ffffff00" }
- ],
- "attachment": [
- { "time": 0.4 }
- ]
- },
- "l2": {
- "rgba": [
- {
- "time": 0.0667,
- "color": "ffffffff",
- "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
- },
- { "time": 0.2333, "color": "ffffff00" }
- ],
- "attachment": [
- { "time": 0.4 }
- ]
- },
- "l3": {
- "rgba": [
- {
- "time": 0.0667,
- "color": "ffffffff",
- "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
- },
- { "time": 0.2333, "color": "ffffff00" }
- ],
- "attachment": [
- { "time": 0.4 }
- ]
- },
- "l4": {
- "rgba": [
- {
- "time": 0.0667,
- "color": "ffffffff",
- "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
- },
- { "time": 0.2333, "color": "ffffff00" }
- ],
- "attachment": [
- { "time": 0.4 }
- ]
- },
- "l5": {
- "rgba": [
- {
- "time": 0.0667,
- "color": "ffffffff",
- "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
- },
- { "time": 0.2333, "color": "ffffff00" }
- ],
- "attachment": [
- { "time": 0.4 }
- ]
- },
- "l6": {
- "rgba": [
- {
- "time": 0.0667,
- "color": "ffffffff",
- "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
- },
- { "time": 0.2333, "color": "ffffff00" }
- ],
- "attachment": [
- { "time": 0.4 }
- ]
- },
- "l7": {
- "rgba": [
- {
- "time": 0.0667,
- "color": "ffffffff",
- "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
- },
- { "time": 0.2333, "color": "ffffff00" }
- ],
- "attachment": [
- { "time": 0.4 }
- ]
- },
- "l8": {
- "rgba": [
- {
- "time": 0.0667,
- "color": "ffffffff",
- "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
- },
- { "time": 0.2333, "color": "ffffff00" }
- ],
- "attachment": [
- { "time": 0.4 }
- ]
- },
- "l9": {
- "rgba": [
- {
- "time": 0.0667,
- "color": "ffffffff",
- "curve": [ 0.125, 1, 0.242, 1, 0.125, 1, 0.242, 1, 0.125, 1, 0.242, 1, 0.125, 1, 0.242, 0 ]
- },
- { "time": 0.3, "color": "ffffff00" }
- ],
- "attachment": [
- { "time": 0.4 }
- ]
- },
- "l10": {
- "rgba": [
- {
- "time": 0.0667,
- "color": "ffffffff",
- "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
- },
- { "time": 0.2333, "color": "ffffff00" }
- ],
- "attachment": [
- { "time": 0.4 }
- ]
- },
- "l11": {
- "rgba": [
- {
- "time": 0.0667,
- "color": "ffffffff",
- "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
- },
- { "time": 0.2333, "color": "ffffff00" }
- ],
- "attachment": [
- { "time": 0.4 }
- ]
- },
- "l12": {
- "rgba": [
- {
- "time": 0.0667,
- "color": "ffffffff",
- "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
- },
- { "time": 0.2333, "color": "ffffff00" }
- ],
- "attachment": [
- { "time": 0.4 }
- ]
- },
- "l13": {
- "rgba": [
- {
- "time": 0.0667,
- "color": "ffffffff",
- "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
- },
- { "time": 0.2333, "color": "ffffff00" }
- ],
- "attachment": [
- { "time": 0.4 }
- ]
- },
- "l14": {
- "rgba": [
- {
- "time": 0.0667,
- "color": "ffffffff",
- "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
- },
- { "time": 0.2333, "color": "ffffff00" }
- ],
- "attachment": [
- { "time": 0.4 }
- ]
- },
- "l15": {
- "rgba": [
- {
- "time": 0.0667,
- "color": "ffffffff",
- "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
- },
- { "time": 0.2333, "color": "ffffff00" }
- ],
- "attachment": [
- { "time": 0.4 }
- ]
- },
- "l16": {
- "rgba": [
- {
- "time": 0.0667,
- "color": "ffffffff",
- "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
- },
- { "time": 0.2333, "color": "ffffff00" }
- ],
- "attachment": [
- { "time": 0.4 }
- ]
- },
- "l17": {
- "rgba": [
- {
- "time": 0.0667,
- "color": "ffffffff",
- "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
- },
- { "time": 0.2333, "color": "ffffff00" }
- ],
- "attachment": [
- { "time": 0.4 }
- ]
- },
- "l18": {
- "rgba": [
- {
- "time": 0.0667,
- "color": "ffffffff",
- "curve": [ 0.125, 1, 0.242, 1, 0.125, 1, 0.242, 1, 0.125, 1, 0.242, 1, 0.125, 1, 0.242, 0 ]
- },
- { "time": 0.3, "color": "ffffff00" }
- ],
- "attachment": [
- { "time": 0.4 }
- ]
- },
- "l19": {
- "rgba": [
- {
- "time": 0.1,
- "color": "ffffffff",
- "curve": [ 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 0 ]
- },
- { "time": 0.3333, "color": "ffffff00" }
- ],
- "attachment": [
- { "time": 0.4 }
- ]
- },
- "l20": {
- "rgba": [
- {
- "time": 0.1,
- "color": "ffffffff",
- "curve": [ 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 0 ]
- },
- { "time": 0.3333, "color": "ffffff00" }
- ],
- "attachment": [
- { "time": 0.4 }
- ]
- },
- "l21": {
- "rgba": [
- {
- "time": 0.1,
- "color": "ffffffff",
- "curve": [ 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 0 ]
- },
- { "time": 0.3333, "color": "ffffff00" }
- ],
- "attachment": [
- { "time": 0.4 }
- ]
- },
- "l22": {
- "rgba": [
- {
- "time": 0.1,
- "color": "ffffffff",
- "curve": [ 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 0 ]
- },
- { "time": 0.3333, "color": "ffffff00" }
- ],
- "attachment": [
- { "time": 0.4 }
- ]
- },
- "l23": {
- "rgba": [
- {
- "time": 0.1,
- "color": "ffffffff",
- "curve": [ 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 0 ]
- },
- { "time": 0.3333, "color": "ffffff00" }
- ],
- "attachment": [
- { "time": 0.4 }
- ]
- },
- "l24": {
- "rgba": [
- {
- "time": 0.1,
- "color": "ffffffff",
- "curve": [ 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 0 ]
- },
- { "time": 0.3333, "color": "ffffff00" }
- ],
- "attachment": [
- { "time": 0.4 }
- ]
- },
- "l25": {
- "rgba": [
- {
- "time": 0.1,
- "color": "ffffffff",
- "curve": [ 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 0 ]
- },
- { "time": 0.3333, "color": "ffffff00" }
- ],
- "attachment": [
- { "time": 0.4 }
- ]
- },
- "l26": {
- "rgba": [
- {
- "time": 0.1,
- "color": "ffffffff",
- "curve": [ 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 0 ]
- },
- { "time": 0.3333, "color": "ffffff00" }
- ],
- "attachment": [
- { "time": 0.4 }
- ]
- },
- "l27": {
- "rgba": [
- {
- "time": 0.1,
- "color": "ffffffff",
- "curve": [ 0.175, 1, 0.325, 1, 0.175, 1, 0.325, 1, 0.175, 1, 0.325, 1, 0.175, 1, 0.325, 0 ]
- },
- { "time": 0.4, "color": "ffffff00" }
- ],
- "attachment": [
- { "time": 0.4 }
- ]
- },
- "l28": {
- "rgba": [
- {
- "time": 0.0667,
- "color": "ffffffff",
- "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
- },
- { "time": 0.2333, "color": "ffffff00" }
- ],
- "attachment": [
- { "time": 0.4 }
- ]
- },
- "l29": {
- "rgba": [
- {
- "time": 0.0667,
- "color": "ffffffff",
- "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
- },
- { "time": 0.2333, "color": "ffffff00" }
- ],
- "attachment": [
- { "time": 0.4 }
- ]
- },
- "l30": {
- "rgba": [
- {
- "time": 0.0667,
- "color": "ffffffff",
- "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
- },
- { "time": 0.2333, "color": "ffffff00" }
- ],
- "attachment": [
- { "time": 0.4 }
- ]
- },
- "l31": {
- "rgba": [
- {
- "time": 0.0667,
- "color": "ffffffff",
- "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
- },
- { "time": 0.2333, "color": "ffffff00" }
- ],
- "attachment": [
- { "time": 0.4 }
- ]
- },
- "l32": {
- "rgba": [
- {
- "time": 0.0667,
- "color": "ffffffff",
- "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
- },
- { "time": 0.2333, "color": "ffffff00" }
- ],
- "attachment": [
- { "time": 0.4 }
- ]
- },
- "l33": {
- "rgba": [
- {
- "time": 0.0667,
- "color": "ffffffff",
- "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
- },
- { "time": 0.2333, "color": "ffffff00" }
- ],
- "attachment": [
- { "time": 0.4 }
- ]
- },
- "l34": {
- "rgba": [
- {
- "time": 0.0667,
- "color": "ffffffff",
- "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
- },
- { "time": 0.2333, "color": "ffffff00" }
- ],
- "attachment": [
- { "time": 0.4 }
- ]
- },
- "l35": {
- "rgba": [
- {
- "time": 0.0667,
- "color": "ffffffff",
- "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
- },
- { "time": 0.2333, "color": "ffffff00" }
- ],
- "attachment": [
- { "time": 0.4 }
- ]
- },
- "l36": {
- "rgba": [
- {
- "time": 0.0667,
- "color": "ffffffff",
- "curve": [ 0.125, 1, 0.242, 1, 0.125, 1, 0.242, 1, 0.125, 1, 0.242, 1, 0.125, 1, 0.242, 0 ]
- },
- { "time": 0.3, "color": "ffffff00" }
- ],
- "attachment": [
- { "time": 0.4 }
- ]
- },
- "quan1": {
- "attachment": [
- {}
- ]
- },
- "quan01": {
- "rgba": [
- { "color": "ffffffb9" },
- { "time": 0.0667, "color": "fc4444ff" },
- { "time": 0.1667, "color": "fcae6ec4" },
- { "time": 0.3333, "color": "fff9c900" }
- ],
- "attachment": [
- { "name": "quan01" },
- { "time": 0.4 }
- ]
- },
- "quan2": {
- "attachment": [
- { "time": 0.1333 }
- ]
- },
- "quan02": {
- "rgba": [
- { "time": 0.0667, "color": "ffffffff" },
- { "time": 0.2333, "color": "ffffff01" }
- ],
- "attachment": [
- { "time": 0.4 }
- ]
- },
- "quan3": {
- "attachment": [
- {}
- ]
- },
- "quan03": {
- "rgba": [
- { "time": 0.0667, "color": "ffffffff" },
- { "time": 0.2333, "color": "ffffff00" }
- ],
- "attachment": [
- { "time": 0.4 }
- ]
- },
- "quan4": {
- "attachment": [
- {}
- ]
- },
- "quan04": {
- "rgba": [
- {
- "time": 0.1333,
- "color": "ffffffff",
- "curve": [ 0.133, 1, 0.333, 1, 0.133, 1, 0.333, 1, 0.133, 1, 0.333, 1, 0.133, 0.68, 0.333, 0 ]
- },
- { "time": 0.4, "color": "ffffff00" }
- ],
- "attachment": [
- { "time": 0.4 }
- ]
- },
- "quan5": {
- "attachment": [
- {}
- ]
- },
- "quan6": {
- "attachment": [
- {}
- ]
- },
- "quan7": {
- "attachment": [
- {}
- ]
- },
- "quan8": {
- "rgba": [
- { "time": 0.0667, "color": "ffffffff" },
- { "time": 0.2667, "color": "ffffff00" }
- ],
- "attachment": [
- { "time": 0.4 }
- ]
- },
- "quan08": {
- "rgba": [
- { "time": 0.0667, "color": "ffffffff" },
- { "time": 0.2, "color": "ffffff00" }
- ],
- "attachment": [
- { "time": 0.2 }
- ]
- },
- "quan9": {
- "rgba": [
- {
- "time": 0.1333,
- "color": "ffffffff",
- "curve": [ 0.133, 1, 0.283, 1, 0.133, 1, 0.283, 1, 0.133, 1, 0.283, 1, 0.133, 0.7, 0.283, 0 ]
- },
- { "time": 0.3333, "color": "ffffff00" }
- ],
- "attachment": [
- { "time": 0.4 }
- ]
- },
- "quan09": {
- "rgba": [
- { "time": 0.0667, "color": "ffffffff" },
- { "time": 0.1667, "color": "ffffff01" }
- ],
- "attachment": [
- { "time": 0.1667 }
- ]
- },
- "quan10": {
- "rgba": [
- { "time": 0.0667, "color": "ffffffff" },
- { "time": 0.3333, "color": "ffffff00" }
- ],
- "attachment": [
- { "time": 0.3333 }
- ]
- },
- "quan11": {
- "attachment": [
- {}
- ]
- },
- "quan12": {
- "rgba": [
- { "time": 0.0667, "color": "ffffffff" },
- { "time": 0.3333, "color": "ffffff00" }
- ],
- "attachment": [
- { "time": 0.4 }
- ]
- },
- "quan13": {
- "attachment": [
- {}
- ]
- },
- "quan14": {
- "attachment": [
- {}
- ]
- },
- "quan15": {
- "attachment": [
- {}
- ]
- },
- "quan16": {
- "attachment": [
- {}
- ]
- },
- "quan17": {
- "attachment": [
- {}
- ]
- },
- "quan18": {
- "attachment": [
- {}
- ]
- },
- "quan19": {
- "attachment": [
- {}
- ]
- },
- "quan20": {
- "attachment": [
- {}
- ]
- },
- "quan21": {
- "attachment": [
- {}
- ]
- },
- "quan22": {
- "rgba": [
- { "color": "fff9c900" }
- ]
- },
- "red": {
- "attachment": [
- { "time": 0.1 }
- ]
- }
- },
- "bones": {
- "bone9": {
- "translate": [
- {
- "time": 0.0667,
- "curve": [ 0.125, 0, 0.242, -140.4, 0.125, 0, 0.242, 0 ]
- },
- { "time": 0.3, "x": -140.4 }
- ],
- "scale": [
- {
- "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
- },
- {
- "time": 0.0667,
- "x": 0.8,
- "y": 0.8,
- "curve": [ 0.13, 0.8, 0.211, 8.706, 0.13, 0.8, 0.211, 8.706 ]
- },
- { "time": 0.3, "x": 20, "y": 20 }
- ]
- },
- "bone8": {
- "translate": [
- {
- "time": 0.0667,
- "curve": [ 0.108, 0, 0.192, -218.86, 0.108, 0, 0.192, 0 ]
- },
- { "time": 0.2333, "x": -218.86 }
- ],
- "scale": [
- {
- "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
- },
- {
- "time": 0.0667,
- "x": 0.8,
- "y": 0.8,
- "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
- },
- { "time": 0.2333, "x": 10, "y": 10 }
- ]
- },
- "bone7": {
- "translate": [
- {
- "time": 0.0667,
- "curve": [ 0.108, 0, 0.192, -468.55, 0.108, 0, 0.192, 0 ]
- },
- { "time": 0.2333, "x": -468.55 }
- ],
- "scale": [
- {
- "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
- },
- {
- "time": 0.0667,
- "x": 0.8,
- "y": 0.8,
- "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
- },
- { "time": 0.2333, "x": 10, "y": 10 }
- ]
- },
- "bone6": {
- "translate": [
- {
- "time": 0.0667,
- "curve": [ 0.108, 0, 0.192, -634, 0.108, 0, 0.192, 0 ]
- },
- { "time": 0.2333, "x": -634 }
- ],
- "scale": [
- {
- "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
- },
- {
- "time": 0.0667,
- "x": 0.8,
- "y": 0.8,
- "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
- },
- { "time": 0.2333, "x": 10, "y": 10 }
- ]
- },
- "bone5": {
- "translate": [
- {
- "time": 0.0667,
- "curve": [ 0.108, 0, 0.192, -450.63, 0.108, 0, 0.192, 0 ]
- },
- { "time": 0.2333, "x": -450.63 }
- ],
- "scale": [
- {
- "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
- },
- {
- "time": 0.0667,
- "x": 0.8,
- "y": 0.8,
- "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
- },
- { "time": 0.2333, "x": 10, "y": 10 }
- ]
- },
- "bone4": {
- "translate": [
- {
- "time": 0.0667,
- "curve": [ 0.108, 0, 0.192, -578.32, 0.108, 0, 0.192, 0 ]
- },
- { "time": 0.2333, "x": -578.32 }
- ],
- "scale": [
- {
- "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
- },
- {
- "time": 0.0667,
- "x": 0.8,
- "y": 0.8,
- "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
- },
- { "time": 0.2333, "x": 10, "y": 10 }
- ]
- },
- "bone3": {
- "translate": [
- {
- "time": 0.0667,
- "curve": [ 0.108, 0, 0.192, -718.09, 0.108, 0, 0.192, 0 ]
- },
- { "time": 0.2333, "x": -718.09 }
- ],
- "scale": [
- {
- "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
- },
- {
- "time": 0.0667,
- "x": 0.8,
- "y": 0.8,
- "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
- },
- { "time": 0.2333, "x": 10, "y": 10 }
- ]
- },
- "bone2": {
- "translate": [
- {
- "time": 0.0667,
- "curve": [ 0.108, 0, 0.192, -844.54, 0.108, 0, 0.192, 0 ]
- },
- { "time": 0.2333, "x": -844.54 }
- ],
- "scale": [
- {
- "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
- },
- {
- "time": 0.0667,
- "x": 0.8,
- "y": 0.8,
- "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
- },
- { "time": 0.2333, "x": 10, "y": 10 }
- ]
- },
- "bone": {
- "translate": [
- {
- "time": 0.0667,
- "curve": [ 0.108, 0, 0.192, -949.43, 0.108, 0, 0.192, 0 ]
- },
- { "time": 0.2333, "x": -949.43 }
- ],
- "scale": [
- {
- "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
- },
- {
- "time": 0.0667,
- "x": 0.8,
- "y": 0.8,
- "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
- },
- { "time": 0.2333, "x": 10, "y": 10 }
- ]
- },
- "quan01": {
- "scale": [
- {
- "curve": [ 0, 0.982, 0.05, 0.95, 0, 0.984, 0.05, 0.954 ]
- },
- {
- "time": 0.0667,
- "x": 0.95,
- "y": 0.954,
- "curve": [ 0.067, 1.724, 0.168, 2.638, 0.067, 1.727, 0.168, 2.64 ]
- },
- { "time": 0.3333, "x": 3.591, "y": 3.593 }
- ]
- },
- "quan02": {
- "scale": [
- {
- "curve": [ 0, 0.982, 0.05, 0.95, 0, 0.984, 0.05, 0.954 ]
- },
- {
- "time": 0.0667,
- "x": 0.95,
- "y": 0.954,
- "curve": [ 0.067, 1.724, 0.168, 2.638, 0.067, 1.727, 0.168, 2.64 ]
- },
- { "time": 0.3333, "x": 3.591, "y": 3.593 }
- ]
- },
- "quan03": {
- "scale": [
- {
- "curve": [ 0, 0.982, 0.05, 0.95, 0, 0.984, 0.05, 0.954 ]
- },
- {
- "time": 0.0667,
- "x": 0.95,
- "y": 0.954,
- "curve": [ 0.067, 2.25, 0.227, 4.139, 0.067, 2.253, 0.227, 4.14 ]
- },
- { "time": 0.4, "x": 5.56, "y": 5.561 }
- ]
- },
- "quan04": {
- "scale": [
- {
- "curve": [ 0, 0.982, 0.075, 0.95, 0, 0.984, 0.075, 0.954 ]
- },
- {
- "time": 0.1,
- "x": 0.95,
- "y": 0.954,
- "curve": [ 0.1, 0.689, 0.111, 0.415, 0.1, 0.692, 0.111, 0.417 ]
- },
- {
- "time": 0.1333,
- "x": 0.132,
- "y": 0.132,
- "curve": [ 0.17, 0.957, 0.266, 1.882, 0.17, 0.957, 0.266, 1.882 ]
- },
- { "time": 0.4, "x": 2.828, "y": 2.828 }
- ]
- },
- "quan05": {
- "scale": [
- {
- "curve": [ 0, 0.982, 0.05, 0.95, 0, 0.984, 0.05, 0.954 ]
- },
- {
- "time": 0.0667,
- "x": 0.95,
- "y": 0.954,
- "curve": [ 0.067, 3.1, 0.317, 7, 0.067, 3.102, 0.317, 7 ]
- },
- { "time": 0.4, "x": 7, "y": 7 }
- ]
- },
- "quan06": {
- "scale": [
- {
- "curve": [ 0, 0.982, 0.075, 0.95, 0, 0.984, 0.075, 0.954 ]
- },
- {
- "time": 0.1,
- "x": 0.95,
- "y": 0.954,
- "curve": [ 0.1, 0.788, 0.111, 0.619, 0.1, 0.79, 0.111, 0.618 ]
- },
- {
- "time": 0.1333,
- "x": 0.444,
- "y": 0.44,
- "curve": [ 0.168, 1.301, 0.266, 2.278, 0.168, 1.298, 0.266, 2.275 ]
- },
- { "time": 0.4, "x": 3.265, "y": 3.263 }
- ]
- },
- "quan07": {
- "scale": [
- {
- "curve": [ 0, 0.982, 0.05, 0.95, 0, 0.984, 0.05, 0.954 ]
- },
- {
- "time": 0.0667,
- "x": 0.95,
- "y": 0.954,
- "curve": [ 0.067, 1.894, 0.202, 3.087, 0.067, 1.898, 0.202, 3.089 ]
- },
- { "time": 0.4, "x": 4.269, "y": 4.271 }
- ]
- },
- "quan08": {
- "scale": [
- {
- "curve": [ 0, 0.982, 0.05, 0.95, 0, 0.984, 0.05, 0.954 ]
- },
- {
- "time": 0.0667,
- "x": 0.95,
- "y": 0.954,
- "curve": [ 0.067, 3.1, 0.167, 7, 0.067, 3.102, 0.167, 7 ]
- },
- { "time": 0.2, "x": 7, "y": 7 }
- ]
- },
- "quan9": {
- "scale": [
- {},
- { "time": 0.0667, "x": 0.95, "y": 0.954 }
- ]
- },
- "quan10": {
- "scale": [
- {
- "curve": [ 0, 0.982, 0.05, 0.95, 0, 0.984, 0.05, 0.954 ]
- },
- {
- "time": 0.0667,
- "x": 0.95,
- "y": 0.954,
- "curve": [ 0.068, 0.852, 0.08, 0.737, 0.068, 0.862, 0.08, 0.754 ]
- },
- {
- "time": 0.1,
- "x": 0.61,
- "y": 0.634,
- "curve": [ 0.172, 1.368, 0.262, 2.168, 0.172, 1.384, 0.262, 2.176 ]
- },
- { "time": 0.3667, "x": 3, "y": 3 }
- ]
- },
- "quan0101": {
- "scale": [
- {},
- { "time": 0.0667, "x": 0.875, "y": 0.875 },
- {
- "time": 0.1667,
- "x": 1.483,
- "y": 1.5,
- "curve": [ 0.167, 1.399, 0.292, 1, 0.167, 1.413, 0.292, 1 ]
- },
- { "time": 0.3333 }
- ]
- },
- "bone10": {
- "translate": [
- {
- "time": 0.0667,
- "curve": [ 0.108, 0, 0.192, -949.43, 0.108, 0, 0.192, 0 ]
- },
- { "time": 0.2333, "x": -949.43 }
- ],
- "scale": [
- {
- "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
- },
- {
- "time": 0.0667,
- "x": 0.8,
- "y": 0.8,
- "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
- },
- { "time": 0.2333, "x": 10, "y": 10 }
- ]
- },
- "bone11": {
- "translate": [
- {
- "time": 0.0667,
- "curve": [ 0.108, 0, 0.192, -844.54, 0.108, 0, 0.192, 0 ]
- },
- { "time": 0.2333, "x": -844.54 }
- ],
- "scale": [
- {
- "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
- },
- {
- "time": 0.0667,
- "x": 0.8,
- "y": 0.8,
- "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
- },
- { "time": 0.2333, "x": 10, "y": 10 }
- ]
- },
- "bone12": {
- "translate": [
- {
- "time": 0.0667,
- "curve": [ 0.108, 0, 0.192, -718.09, 0.108, 0, 0.192, 0 ]
- },
- { "time": 0.2333, "x": -718.09 }
- ],
- "scale": [
- {
- "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
- },
- {
- "time": 0.0667,
- "x": 0.8,
- "y": 0.8,
- "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
- },
- { "time": 0.2333, "x": 10, "y": 10 }
- ]
- },
- "bone13": {
- "translate": [
- {
- "time": 0.0667,
- "curve": [ 0.108, 0, 0.192, -578.32, 0.108, 0, 0.192, 0 ]
- },
- { "time": 0.2333, "x": -578.32 }
- ],
- "scale": [
- {
- "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
- },
- {
- "time": 0.0667,
- "x": 0.8,
- "y": 0.8,
- "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
- },
- { "time": 0.2333, "x": 10, "y": 10 }
- ]
- },
- "bone14": {
- "translate": [
- {
- "time": 0.0667,
- "curve": [ 0.108, 0, 0.192, -450.63, 0.108, 0, 0.192, 0 ]
- },
- { "time": 0.2333, "x": -450.63 }
- ],
- "scale": [
- {
- "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
- },
- {
- "time": 0.0667,
- "x": 0.8,
- "y": 0.8,
- "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
- },
- { "time": 0.2333, "x": 10, "y": 10 }
- ]
- },
- "bone15": {
- "translate": [
- {
- "time": 0.0667,
- "curve": [ 0.108, 0, 0.192, -634, 0.108, 0, 0.192, 0 ]
- },
- { "time": 0.2333, "x": -634 }
- ],
- "scale": [
- {
- "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
- },
- {
- "time": 0.0667,
- "x": 0.8,
- "y": 0.8,
- "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
- },
- { "time": 0.2333, "x": 10, "y": 10 }
- ]
- },
- "bone16": {
- "translate": [
- {
- "time": 0.0667,
- "curve": [ 0.108, 0, 0.192, -468.55, 0.108, 0, 0.192, 0 ]
- },
- { "time": 0.2333, "x": -468.55 }
- ],
- "scale": [
- {
- "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
- },
- {
- "time": 0.0667,
- "x": 0.8,
- "y": 0.8,
- "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
- },
- { "time": 0.2333, "x": 10, "y": 10 }
- ]
- },
- "bone17": {
- "translate": [
- {
- "time": 0.0667,
- "curve": [ 0.108, 0, 0.192, -218.86, 0.108, 0, 0.192, 0 ]
- },
- { "time": 0.2333, "x": -218.86 }
- ],
- "scale": [
- {
- "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
- },
- {
- "time": 0.0667,
- "x": 0.8,
- "y": 0.8,
- "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
- },
- { "time": 0.2333, "x": 10, "y": 10 }
- ]
- },
- "bone18": {
- "translate": [
- {
- "time": 0.0667,
- "curve": [ 0.125, 0, 0.242, -140.4, 0.125, 0, 0.242, 0 ]
- },
- { "time": 0.3, "x": -140.4 }
- ],
- "scale": [
- {
- "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
- },
- {
- "time": 0.0667,
- "x": 0.8,
- "y": 0.8,
- "curve": [ 0.13, 0.8, 0.211, 8.706, 0.13, 0.8, 0.211, 8.706 ]
- },
- { "time": 0.3, "x": 20, "y": 20 }
- ]
- },
- "bone19": {
- "translate": [
- {
- "time": 0.1,
- "curve": [ 0.158, 0, 0.275, -949.43, 0.158, 0, 0.275, 0 ]
- },
- { "time": 0.3333, "x": -949.43 },
- { "time": 0.4, "x": -949.43 }
- ],
- "scale": [
- {
- "curve": [ 0.027, 1, 0.062, 0.918, 0.027, 1, 0.062, 0.918 ]
- },
- {
- "time": 0.1,
- "x": 0.8,
- "y": 0.8,
- "curve": [ 0.163, 0.8, 0.244, 4.588, 0.163, 0.8, 0.244, 4.588 ]
- },
- { "time": 0.3333, "x": 10, "y": 10 }
- ]
- },
- "bone20": {
- "translate": [
- {
- "time": 0.1,
- "curve": [ 0.158, 0, 0.275, -844.54, 0.158, 0, 0.275, 0 ]
- },
- { "time": 0.3333, "x": -844.54 },
- { "time": 0.4, "x": -844.54 }
- ],
- "scale": [
- {
- "curve": [ 0.027, 1, 0.062, 0.918, 0.027, 1, 0.062, 0.918 ]
- },
- {
- "time": 0.1,
- "x": 0.8,
- "y": 0.8,
- "curve": [ 0.163, 0.8, 0.244, 4.588, 0.163, 0.8, 0.244, 4.588 ]
- },
- { "time": 0.3333, "x": 10, "y": 10 }
- ]
- },
- "bone21": {
- "translate": [
- {
- "time": 0.1,
- "curve": [ 0.158, 0, 0.275, -718.09, 0.158, 0, 0.275, 0 ]
- },
- { "time": 0.3333, "x": -718.09 }
- ],
- "scale": [
- {
- "curve": [ 0.027, 1, 0.062, 0.918, 0.027, 1, 0.062, 0.918 ]
- },
- {
- "time": 0.1,
- "x": 0.8,
- "y": 0.8,
- "curve": [ 0.163, 0.8, 0.244, 4.588, 0.163, 0.8, 0.244, 4.588 ]
- },
- { "time": 0.3333, "x": 10, "y": 10 }
- ]
- },
- "bone22": {
- "translate": [
- {
- "time": 0.1,
- "curve": [ 0.158, 0, 0.275, -578.32, 0.158, 0, 0.275, 0 ]
- },
- { "time": 0.3333, "x": -578.32 }
- ],
- "scale": [
- {
- "curve": [ 0.027, 1, 0.062, 0.918, 0.027, 1, 0.062, 0.918 ]
- },
- {
- "time": 0.1,
- "x": 0.8,
- "y": 0.8,
- "curve": [ 0.163, 0.8, 0.244, 4.588, 0.163, 0.8, 0.244, 4.588 ]
- },
- { "time": 0.3333, "x": 10, "y": 10 }
- ]
- },
- "bone23": {
- "translate": [
- {
- "time": 0.1,
- "curve": [ 0.158, 0, 0.275, -450.63, 0.158, 0, 0.275, 0 ]
- },
- { "time": 0.3333, "x": -450.63 },
- { "time": 0.4, "x": -450.63 }
- ],
- "scale": [
- {
- "curve": [ 0.027, 1, 0.062, 0.918, 0.027, 1, 0.062, 0.918 ]
- },
- {
- "time": 0.1,
- "x": 0.8,
- "y": 0.8,
- "curve": [ 0.163, 0.8, 0.244, 4.588, 0.163, 0.8, 0.244, 4.588 ]
- },
- { "time": 0.3333, "x": 10, "y": 10 }
- ]
- },
- "bone24": {
- "translate": [
- {
- "time": 0.1,
- "curve": [ 0.158, 0, 0.275, -634, 0.158, 0, 0.275, 0 ]
- },
- { "time": 0.3333, "x": -634 }
- ],
- "scale": [
- {
- "curve": [ 0.027, 1, 0.062, 0.918, 0.027, 1, 0.062, 0.918 ]
- },
- {
- "time": 0.1,
- "x": 0.8,
- "y": 0.8,
- "curve": [ 0.163, 0.8, 0.244, 4.588, 0.163, 0.8, 0.244, 4.588 ]
- },
- { "time": 0.3333, "x": 10, "y": 10 }
- ]
- },
- "bone25": {
- "translate": [
- {
- "time": 0.1,
- "curve": [ 0.158, 0, 0.275, -468.55, 0.158, 0, 0.275, 0 ]
- },
- { "time": 0.3333, "x": -468.55 },
- { "time": 0.4, "x": -468.55 }
- ],
- "scale": [
- {
- "curve": [ 0.027, 1, 0.062, 0.918, 0.027, 1, 0.062, 0.918 ]
- },
- {
- "time": 0.1,
- "x": 0.8,
- "y": 0.8,
- "curve": [ 0.163, 0.8, 0.244, 4.588, 0.163, 0.8, 0.244, 4.588 ]
- },
- { "time": 0.3333, "x": 10, "y": 10 }
- ]
- },
- "bone26": {
- "translate": [
- {
- "time": 0.1,
- "curve": [ 0.158, 0, 0.275, -218.86, 0.158, 0, 0.275, 0 ]
- },
- { "time": 0.3333, "x": -218.86 },
- { "time": 0.4, "x": -218.86 }
- ],
- "scale": [
- {
- "curve": [ 0.027, 1, 0.062, 0.918, 0.027, 1, 0.062, 0.918 ]
- },
- {
- "time": 0.1,
- "x": 0.8,
- "y": 0.8,
- "curve": [ 0.163, 0.8, 0.244, 4.588, 0.163, 0.8, 0.244, 4.588 ]
- },
- { "time": 0.3333, "x": 10, "y": 10 }
- ]
- },
- "bone27": {
- "translate": [
- {
- "time": 0.1,
- "curve": [ 0.175, 0, 0.325, -140.4, 0.175, 0, 0.325, 0 ]
- },
- { "time": 0.4, "x": -140.4 }
- ],
- "scale": [
- {
- "curve": [ 0.027, 1, 0.062, 0.918, 0.027, 1, 0.062, 0.918 ]
- },
- {
- "time": 0.1,
- "x": 0.8,
- "y": 0.8,
- "curve": [ 0.181, 0.8, 0.286, 8.706, 0.181, 0.8, 0.286, 8.706 ]
- },
- { "time": 0.4, "x": 20, "y": 20 }
- ]
- },
- "bone28": {
- "translate": [
- {
- "time": 0.0667,
- "curve": [ 0.108, 0, 0.192, -949.43, 0.108, 0, 0.192, 0 ]
- },
- { "time": 0.2333, "x": -949.43 },
- { "time": 0.4, "x": -949.43 }
- ],
- "scale": [
- {
- "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
- },
- {
- "time": 0.0667,
- "x": 0.8,
- "y": 0.8,
- "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
- },
- { "time": 0.2333, "x": 10, "y": 10 }
- ]
- },
- "bone29": {
- "translate": [
- {
- "time": 0.0667,
- "curve": [ 0.108, 0, 0.192, -844.54, 0.108, 0, 0.192, 0 ]
- },
- { "time": 0.2333, "x": -844.54 }
- ],
- "scale": [
- {
- "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
- },
- {
- "time": 0.0667,
- "x": 0.8,
- "y": 0.8,
- "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
- },
- { "time": 0.2333, "x": 10, "y": 10 }
- ]
- },
- "bone30": {
- "translate": [
- {
- "time": 0.0667,
- "curve": [ 0.108, 0, 0.192, -718.09, 0.108, 0, 0.192, 0 ]
- },
- { "time": 0.2333, "x": -718.09 }
- ],
- "scale": [
- {
- "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
- },
- {
- "time": 0.0667,
- "x": 0.8,
- "y": 0.8,
- "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
- },
- { "time": 0.2333, "x": 10, "y": 10 }
- ]
- },
- "bone31": {
- "translate": [
- {
- "time": 0.0667,
- "curve": [ 0.108, 0, 0.192, -578.32, 0.108, 0, 0.192, 0 ]
- },
- { "time": 0.2333, "x": -578.32 }
- ],
- "scale": [
- {
- "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
- },
- {
- "time": 0.0667,
- "x": 0.8,
- "y": 0.8,
- "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
- },
- { "time": 0.2333, "x": 10, "y": 10 }
- ]
- },
- "bone32": {
- "translate": [
- {
- "time": 0.0667,
- "curve": [ 0.108, 0, 0.192, -450.63, 0.108, 0, 0.192, 0 ]
- },
- { "time": 0.2333, "x": -450.63 }
- ],
- "scale": [
- {
- "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
- },
- {
- "time": 0.0667,
- "x": 0.8,
- "y": 0.8,
- "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
- },
- { "time": 0.2333, "x": 10, "y": 10 }
- ]
- },
- "bone33": {
- "translate": [
- {
- "time": 0.0667,
- "curve": [ 0.108, 0, 0.192, -634, 0.108, 0, 0.192, 0 ]
- },
- { "time": 0.2333, "x": -634 }
- ],
- "scale": [
- {
- "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
- },
- {
- "time": 0.0667,
- "x": 0.8,
- "y": 0.8,
- "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
- },
- { "time": 0.2333, "x": 10, "y": 10 }
- ]
- },
- "bone34": {
- "translate": [
- {
- "time": 0.0667,
- "curve": [ 0.108, 0, 0.192, -468.55, 0.108, 0, 0.192, 0 ]
- },
- { "time": 0.2333, "x": -468.55 },
- { "time": 0.4, "x": -468.55 }
- ],
- "scale": [
- {
- "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
- },
- {
- "time": 0.0667,
- "x": 0.8,
- "y": 0.8,
- "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
- },
- { "time": 0.2333, "x": 10, "y": 10 }
- ]
- },
- "bone35": {
- "translate": [
- {
- "time": 0.0667,
- "curve": [ 0.108, 0, 0.192, -218.86, 0.108, 0, 0.192, 0 ]
- },
- { "time": 0.2333, "x": -218.86 }
- ],
- "scale": [
- {
- "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
- },
- {
- "time": 0.0667,
- "x": 0.8,
- "y": 0.8,
- "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
- },
- { "time": 0.2333, "x": 10, "y": 10 }
- ]
- },
- "bone36": {
- "translate": [
- {
- "time": 0.0667,
- "curve": [ 0.125, 0, 0.242, -140.4, 0.125, 0, 0.242, 0 ]
- },
- { "time": 0.3, "x": -140.4 }
- ],
- "scale": [
- {
- "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
- },
- {
- "time": 0.0667,
- "x": 0.8,
- "y": 0.8,
- "curve": [ 0.13, 0.8, 0.211, 8.706, 0.13, 0.8, 0.211, 8.706 ]
- },
- { "time": 0.3, "x": 20, "y": 20 }
- ]
- },
- "zi3": {
- "translate": [
- {},
- { "time": 0.3667, "y": -243.1 }
- ]
- },
- "zi4": {
- "translate": [
- { "time": 0.1333 },
- { "time": 0.2333, "y": 184.41 }
- ]
- }
- }
- }
- }
- }
|