role104.json 161 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908
  1. {
  2. "skeleton": {
  3. "hash": "+2nB++OIw/NjGhcEeg0oFyqYVAo",
  4. "spine": "3.8.99",
  5. "x": -587.91,
  6. "y": -85.71,
  7. "width": 1021.96,
  8. "height": 432.04,
  9. "images": "./images/",
  10. "audio": "E:/202412/1220/1Spine/熊"
  11. },
  12. "bones": [
  13. { "name": "root" },
  14. { "name": "bone_down", "parent": "root", "rotation": -0.71, "x": 0.04, "y": -50, "color": "8d00ffff" },
  15. { "name": "bone_down2", "parent": "bone_down", "rotation": 0.71, "x": 3.61, "y": 80.93, "color": "8d00ffff" },
  16. {
  17. "name": "2shenti",
  18. "parent": "bone_down2",
  19. "length": 90.59,
  20. "rotation": 90.71,
  21. "x": -1.29,
  22. "y": 1.74,
  23. "color": "8d00ffff"
  24. },
  25. {
  26. "name": "2tou",
  27. "parent": "2shenti",
  28. "length": 123.58,
  29. "rotation": -2,
  30. "x": 89.61,
  31. "y": 0.43,
  32. "color": "8d00ffff"
  33. },
  34. {
  35. "name": "2tou3",
  36. "parent": "2tou",
  37. "length": 52.2,
  38. "rotation": 1.29,
  39. "x": 122.1,
  40. "y": -0.06,
  41. "color": "8d00ffff"
  42. },
  43. { "name": "2tou2", "parent": "2tou", "rotation": -17.08, "x": 79.9, "y": 47.67, "color": "8d00ffff" },
  44. { "name": "2tou4", "parent": "2tou", "rotation": 18.46, "x": 82.58, "y": -41.95, "color": "8d00ffff" },
  45. {
  46. "name": "2erduo2",
  47. "parent": "2tou",
  48. "length": 46.95,
  49. "rotation": 35.75,
  50. "x": 108.99,
  51. "y": 61.44,
  52. "color": "8d00ffff"
  53. },
  54. {
  55. "name": "2erduo1",
  56. "parent": "2tou",
  57. "length": 45.59,
  58. "rotation": -35.14,
  59. "x": 114.8,
  60. "y": -56.62,
  61. "color": "8d00ffff"
  62. },
  63. {
  64. "name": "2youshou1",
  65. "parent": "2shenti",
  66. "length": 83.1,
  67. "rotation": -169.56,
  68. "x": 76.95,
  69. "y": 73.22,
  70. "scaleY": 1.2322,
  71. "color": "8d00ffff"
  72. },
  73. {
  74. "name": "2zuoshou",
  75. "parent": "2shenti",
  76. "length": 59.1,
  77. "rotation": -178.91,
  78. "x": 76.5,
  79. "y": -66.97,
  80. "color": "8d00ffff"
  81. },
  82. { "name": "gun2", "parent": "bone_down2", "x": 2.6, "y": 53.55, "color": "8d00ffff" },
  83. {
  84. "name": "2qiang",
  85. "parent": "gun2",
  86. "length": 163.37,
  87. "rotation": -89.05,
  88. "x": 0.77,
  89. "y": -7.63,
  90. "color": "8d00ffff"
  91. },
  92. { "name": "ik_r_down", "parent": "gun2", "x": 38.7, "y": -41.93, "color": "8d00ffff" },
  93. {
  94. "name": "2tui2",
  95. "parent": "bone_down2",
  96. "length": 38.69,
  97. "rotation": -91.88,
  98. "x": -33.86,
  99. "y": 4.09,
  100. "color": "8d00ffff"
  101. },
  102. {
  103. "name": "2tui1",
  104. "parent": "bone_down2",
  105. "length": 37.77,
  106. "rotation": -87.11,
  107. "x": 33.66,
  108. "y": 3.78,
  109. "color": "8d00ffff"
  110. },
  111. { "name": "bone_right", "parent": "root", "x": -450, "y": -50.29, "color": "06ff00ff" },
  112. { "name": "bone_right2", "parent": "bone_right", "x": 18.5, "y": 75.5, "color": "06ff00ff" },
  113. {
  114. "name": "3shenti",
  115. "parent": "bone_right2",
  116. "length": 76.38,
  117. "rotation": 90.88,
  118. "x": -0.57,
  119. "y": 4.88,
  120. "color": "06ff00ff"
  121. },
  122. {
  123. "name": "3tou",
  124. "parent": "3shenti",
  125. "length": 130.67,
  126. "rotation": -1.41,
  127. "x": 77.03,
  128. "y": -0.05,
  129. "color": "06ff00ff"
  130. },
  131. {
  132. "name": "3erduo",
  133. "parent": "3tou",
  134. "length": 40.97,
  135. "rotation": 35.66,
  136. "x": 118.71,
  137. "y": 71.95,
  138. "color": "06ff00ff"
  139. },
  140. {
  141. "name": "3tou2",
  142. "parent": "3tou",
  143. "length": 45.7,
  144. "rotation": -22.05,
  145. "x": 133.58,
  146. "y": 13.34,
  147. "color": "06ff00ff"
  148. },
  149. { "name": "3tou5", "parent": "3tou", "rotation": -10.24, "x": 90.81, "y": 39.84, "color": "06ff00ff" },
  150. {
  151. "name": "3shou1",
  152. "parent": "3shenti",
  153. "length": 70.55,
  154. "rotation": -155.84,
  155. "x": 68.96,
  156. "y": 83.48,
  157. "color": "06ff00ff"
  158. },
  159. { "name": "gun1", "parent": "bone_right2", "x": 1.05, "y": 55.65, "color": "06ff00ff" },
  160. {
  161. "name": "3qiang",
  162. "parent": "gun1",
  163. "length": 150.75,
  164. "rotation": 9.81,
  165. "x": 31.25,
  166. "y": 5.87,
  167. "color": "06ff00ff"
  168. },
  169. {
  170. "name": "3tui2",
  171. "parent": "bone_right2",
  172. "length": 40.38,
  173. "rotation": -93.22,
  174. "x": -53.99,
  175. "y": 8.21,
  176. "color": "06ff00ff"
  177. },
  178. {
  179. "name": "3tui1",
  180. "parent": "bone_right2",
  181. "length": 34.72,
  182. "rotation": -86.06,
  183. "x": 21.31,
  184. "y": 2.28,
  185. "color": "06ff00ff"
  186. },
  187. { "name": "bone_up", "parent": "root", "x": 331.6, "y": -49.72, "color": "ffc600ff" },
  188. { "name": "bone_up2", "parent": "bone_up", "x": -0.42, "y": 80.76, "color": "ffc600ff" },
  189. {
  190. "name": "1shenti1",
  191. "parent": "bone_up2",
  192. "length": 80.9,
  193. "rotation": 91.11,
  194. "x": -0.72,
  195. "y": -2.24,
  196. "color": "ffc600ff"
  197. },
  198. {
  199. "name": "1tou1",
  200. "parent": "1shenti1",
  201. "length": 144.17,
  202. "rotation": -0.22,
  203. "x": 81.56,
  204. "y": 0.36,
  205. "color": "ffc600ff"
  206. },
  207. {
  208. "name": "1erduo2",
  209. "parent": "1tou1",
  210. "length": 45.38,
  211. "rotation": 37.7,
  212. "x": 122.28,
  213. "y": 58.1,
  214. "color": "ffc600ff"
  215. },
  216. {
  217. "name": "1erduo1",
  218. "parent": "1tou1",
  219. "length": 45.15,
  220. "rotation": -36.32,
  221. "x": 119.77,
  222. "y": -57.99,
  223. "color": "ffc600ff"
  224. },
  225. {
  226. "name": "1tui2",
  227. "parent": "bone_up2",
  228. "length": 36.55,
  229. "rotation": -87.37,
  230. "x": -37.97,
  231. "y": 1.55,
  232. "color": "ffc600ff"
  233. },
  234. {
  235. "name": "1tui1",
  236. "parent": "bone_up2",
  237. "length": 37.52,
  238. "rotation": -90,
  239. "x": 33.19,
  240. "y": 1.71,
  241. "color": "ffc600ff"
  242. },
  243. { "name": "gun3", "parent": "bone_up2", "x": -4.67, "y": 81.87, "color": "ffc600ff" },
  244. {
  245. "name": "1qiang1",
  246. "parent": "gun3",
  247. "length": 196.45,
  248. "rotation": 90,
  249. "x": -0.66,
  250. "y": 28.74,
  251. "color": "ffc600ff"
  252. },
  253. {
  254. "name": "3erduo2",
  255. "parent": "3tou",
  256. "length": 40.97,
  257. "rotation": -40.55,
  258. "x": 123.62,
  259. "y": -39.29,
  260. "color": "06ff00ff"
  261. },
  262. { "name": "3tou6", "parent": "3tou", "rotation": -10.24, "x": 92.63, "y": -42.99, "color": "06ff00ff" },
  263. {
  264. "name": "3shou3",
  265. "parent": "3shenti",
  266. "length": 32.23,
  267. "rotation": -68.68,
  268. "x": 42.42,
  269. "y": -31.5,
  270. "color": "06ff00ff"
  271. },
  272. { "name": "3shou4", "parent": "3shou3", "length": 35.34, "rotation": -1.26, "x": 32.23, "color": "06ff00ff" },
  273. {
  274. "name": "3shenti2",
  275. "parent": "3shenti",
  276. "length": 36.82,
  277. "rotation": 137.56,
  278. "x": 91.22,
  279. "y": 79.14,
  280. "color": "06ff00ff"
  281. },
  282. { "name": "3shenti3", "parent": "3shenti2", "length": 36.44, "rotation": -2.48, "x": 36.82, "color": "06ff00ff" },
  283. { "name": "3shenti4", "parent": "3shenti3", "length": 25.91, "rotation": 1.12, "x": 36.44, "color": "06ff00ff" },
  284. {
  285. "name": "3shenti5",
  286. "parent": "3shenti",
  287. "length": 34.97,
  288. "rotation": 164.86,
  289. "x": 73.52,
  290. "y": 46.43,
  291. "color": "06ff00ff"
  292. },
  293. { "name": "3shenti6", "parent": "3shenti5", "length": 33.02, "rotation": -4.96, "x": 34.97, "color": "06ff00ff" },
  294. { "name": "3shenti7", "parent": "3shenti6", "length": 23.17, "rotation": -1.38, "x": 33.02, "color": "06ff00ff" },
  295. {
  296. "name": "target1",
  297. "parent": "3qiang",
  298. "rotation": -25.76,
  299. "x": 52.51,
  300. "y": -14.64,
  301. "scaleX": 0.9487,
  302. "scaleY": 0.9487,
  303. "color": "ff3f00ff"
  304. },
  305. {
  306. "name": "1fa",
  307. "parent": "1tou1",
  308. "length": 35.27,
  309. "rotation": -2.6,
  310. "x": 143.91,
  311. "y": 2.59,
  312. "color": "ffc600ff"
  313. },
  314. {
  315. "name": "1shou1",
  316. "parent": "1shenti1",
  317. "length": 66.44,
  318. "rotation": 15.49,
  319. "x": 67.39,
  320. "y": -60.94,
  321. "color": "ffc600ff"
  322. },
  323. {
  324. "name": "1wei2",
  325. "parent": "1shenti1",
  326. "length": 39.45,
  327. "rotation": -164.6,
  328. "x": 77.98,
  329. "y": -11.98,
  330. "color": "ffc600ff"
  331. },
  332. { "name": "1wei3", "parent": "1wei2", "length": 26.06, "rotation": 11.52, "x": 39.45, "color": "ffc600ff" },
  333. { "name": "1wei4", "parent": "1wei3", "length": 22.44, "rotation": 2, "x": 26.06, "color": "ffc600ff" },
  334. {
  335. "name": "1shenti2",
  336. "parent": "1shenti1",
  337. "length": 73.71,
  338. "rotation": -1.5,
  339. "x": 51.25,
  340. "y": 71.85,
  341. "color": "ffc600ff"
  342. },
  343. { "name": "target2", "parent": "1qiang1", "rotation": -90.05, "x": 30.06, "y": 47.21, "color": "ff3f00ff" },
  344. {
  345. "name": "effect_right",
  346. "parent": "3qiang",
  347. "rotation": -0.05,
  348. "x": 151.99,
  349. "y": -1.75,
  350. "scaleX": 2,
  351. "scaleY": 2
  352. },
  353. {
  354. "name": "effect_down",
  355. "parent": "2qiang",
  356. "rotation": -1,
  357. "x": 151.04,
  358. "y": 0.39,
  359. "scaleX": 2,
  360. "scaleY": 2
  361. },
  362. {
  363. "name": "effect_up",
  364. "parent": "1qiang1",
  365. "rotation": -0.05,
  366. "x": 203.47,
  367. "y": -0.11,
  368. "scaleX": 2,
  369. "scaleY": 2
  370. },
  371. { "name": "2qiang2", "parent": "2qiang", "rotation": 89.05, "x": 30.53, "y": -33.26, "color": "8d00ffff" },
  372. { "name": "3qiang2", "parent": "3qiang", "rotation": -10.18, "x": -72.48, "y": -26.47, "color": "06ff00ff" },
  373. { "name": "1qiang2", "parent": "1qiang1", "x": 37.95, "y": -36.25, "color": "ffc600ff" }
  374. ],
  375. "slots": [
  376. { "name": "3yy", "bone": "bone_right", "attachment": "3yy" },
  377. { "name": "3shou2", "bone": "3shou3", "attachment": "3shou2" },
  378. { "name": "3tui2", "bone": "3tui1", "attachment": "3tui2" },
  379. { "name": "3wei2", "bone": "3shenti", "attachment": "3wei2" },
  380. { "name": "3body", "bone": "3shenti", "attachment": "3body" },
  381. { "name": "3tui1", "bone": "3tui2", "attachment": "3tui1" },
  382. { "name": "3er2", "bone": "3erduo2", "attachment": "3er2" },
  383. { "name": "3er1", "bone": "3erduo", "attachment": "3er1" },
  384. { "name": "3tou", "bone": "3tou", "attachment": "3tou" },
  385. { "name": "3wei1", "bone": "3shenti", "attachment": "3wei1" },
  386. { "name": "3shou1", "bone": "3shou1", "attachment": "3shou1" },
  387. { "name": "3eye2", "bone": "3tou6", "attachment": "3eye2" },
  388. { "name": "3zui", "bone": "3tou", "attachment": "3zui" },
  389. { "name": "3eye1", "bone": "3tou5", "attachment": "3eye1" },
  390. { "name": "3fa", "bone": "3tou2", "attachment": "3fa" },
  391. { "name": "3wuqi", "bone": "3qiang", "attachment": "3wuqi" },
  392. { "name": "3shou3", "bone": "target1", "attachment": "3shou3" },
  393. { "name": "2yy", "bone": "bone_down", "color": "ffffff80", "attachment": "2yy" },
  394. { "name": "2tui2", "bone": "2tui1", "attachment": "2tui2" },
  395. { "name": "2tui1", "bone": "2tui2", "attachment": "2tui1" },
  396. { "name": "2body", "bone": "2shenti", "attachment": "2body" },
  397. { "name": "2er2", "bone": "2erduo1", "attachment": "2er2" },
  398. { "name": "2shou2", "bone": "2youshou1", "attachment": "2shou2" },
  399. { "name": "2er1", "bone": "2erduo2", "attachment": "2er1" },
  400. { "name": "2tou", "bone": "2tou", "attachment": "2tou" },
  401. { "name": "2shou1", "bone": "2zuoshou", "attachment": "2shou1" },
  402. { "name": "2wei", "bone": "2shenti", "attachment": "2wei" },
  403. { "name": "2eye2", "bone": "2tou2", "attachment": "2eye2" },
  404. { "name": "2eye1", "bone": "2tou4", "attachment": "2eye1" },
  405. { "name": "2zui", "bone": "2tou", "attachment": "2zui" },
  406. { "name": "2fa", "bone": "2tou3", "attachment": "2fa" },
  407. { "name": "2wuqi", "bone": "2qiang", "attachment": "2wuqi" },
  408. { "name": "1yy", "bone": "bone_up", "attachment": "1yy" },
  409. { "name": "1wuqi", "bone": "1qiang1", "attachment": "1wuqi" },
  410. { "name": "1shou2", "bone": "1shenti2", "attachment": "1shou2" },
  411. { "name": "1tui2", "bone": "1tui1", "attachment": "1tui2" },
  412. { "name": "1tui1", "bone": "1tui2", "attachment": "1tui1" },
  413. { "name": "1shou1", "bone": "1shou1", "attachment": "1shou1" },
  414. { "name": "1body", "bone": "1shenti1", "attachment": "1body" },
  415. { "name": "1fa", "bone": "1fa", "attachment": "1fa" },
  416. { "name": "1tou", "bone": "1tou1", "attachment": "1tou" },
  417. { "name": "1wei2", "bone": "1wei2", "attachment": "1wei2" },
  418. { "name": "1wei1", "bone": "1shenti1", "attachment": "1wei1" },
  419. { "name": "1er2", "bone": "1erduo1", "attachment": "1er2" },
  420. { "name": "1er1", "bone": "1erduo2", "attachment": "1er1" },
  421. { "name": "effect_right", "bone": "effect_right" },
  422. { "name": "effect_up2", "bone": "effect_up" },
  423. { "name": "effect_down", "bone": "effect_down" },
  424. { "name": "effect_right2", "bone": "effect_right", "color": "ffffff4d", "blend": "additive" },
  425. { "name": "effect_up", "bone": "effect_up", "color": "ffffff4d", "blend": "additive" },
  426. { "name": "effect_down2", "bone": "effect_down", "color": "ffffff4d", "blend": "additive" }
  427. ],
  428. "ik": [
  429. {
  430. "name": "ik_r_down",
  431. "bones": [ "2zuoshou" ],
  432. "target": "ik_r_down",
  433. "compress": true,
  434. "stretch": true
  435. },
  436. {
  437. "name": "target1",
  438. "order": 1,
  439. "bones": [ "3shou3", "3shou4" ],
  440. "target": "target1",
  441. "bendPositive": false
  442. },
  443. {
  444. "name": "target2",
  445. "order": 2,
  446. "bones": [ "1shenti2" ],
  447. "target": "target2",
  448. "compress": true
  449. },
  450. {
  451. "name": "target4",
  452. "order": 3,
  453. "bones": [ "2youshou1" ],
  454. "target": "2qiang2"
  455. },
  456. {
  457. "name": "target5",
  458. "order": 4,
  459. "bones": [ "3shou1" ],
  460. "target": "3qiang2",
  461. "compress": true,
  462. "stretch": true
  463. },
  464. {
  465. "name": "target6",
  466. "order": 5,
  467. "bones": [ "1shou1" ],
  468. "target": "1qiang2"
  469. }
  470. ],
  471. "skins": [
  472. {
  473. "name": "default",
  474. "attachments": {
  475. "1body": {
  476. "1body": { "x": 32.28, "y": 3.25, "rotation": -91.16, "width": 165, "height": 104 }
  477. },
  478. "1er1": {
  479. "1er1": {
  480. "type": "mesh",
  481. "uvs": [ 0.77464, 0.05861, 0.83497, 0.11333, 0.89382, 0.18897, 0.95415, 0.30001, 0.99651, 0.41136, 0.99564, 0.46059, 0.93029, 0.61034, 0.71126, 0.84564, 0.4875, 0.97834, 0.26842, 0.98753, 0.13517, 0.88603, 0.05277, 0.7782, 0, 0.66072, 0, 0, 0.63633, 0, 0.11103, 0.59453, 0.14046, 0.69753, 0.2155, 0.79248, 0.32144, 0.85846, 0.62285, 0.13514, 0.71987, 0.182, 0.8008, 0.25429, 0.85758, 0.36689, 0.88658, 0.45523 ],
  482. "triangles": [ 19, 13, 14, 19, 14, 0, 20, 19, 0, 20, 0, 1, 21, 20, 1, 21, 1, 2, 21, 2, 3, 22, 21, 3, 22, 3, 4, 23, 22, 4, 5, 23, 4, 15, 13, 19, 6, 23, 5, 12, 13, 15, 17, 16, 15, 12, 15, 16, 11, 12, 16, 15, 18, 17, 22, 7, 19, 20, 22, 19, 22, 20, 21, 7, 22, 23, 7, 23, 6, 19, 18, 15, 7, 18, 19, 17, 10, 11, 17, 11, 16, 8, 18, 7, 9, 17, 18, 9, 18, 8, 10, 17, 9 ],
  483. "vertices": [ 1, 33, 28.33, -32.81, 1, 1, 33, 22.96, -33.93, 1, 2, 33, 16.6, -34.12, 0.84267, 32, 156.28, 41.25, 0.15733, 2, 33, 8.42, -32.98, 0.68533, 32, 149.11, 37.15, 0.31467, 2, 33, 1, -30.85, 0.528, 32, 141.93, 34.3, 0.472, 2, 33, -1.42, -28.83, 0.528, 32, 138.79, 34.41, 0.472, 2, 33, -6.05, -19.27, 0.528, 32, 129.28, 39.14, 0.472, 2, 33, -8.24, 2.1, 0.528, 32, 114.47, 54.72, 0.472, 2, 33, -5.1, 19.64, 0.528, 32, 106.24, 70.52, 0.472, 2, 33, 4.02, 31.99, 0.528, 32, 105.9, 85.87, 0.472, 2, 33, 14.92, 35.22, 0.68533, 32, 112.55, 95.09, 0.31467, 2, 33, 23.91, 35.41, 0.84267, 32, 119.55, 100.74, 0.15733, 1, 33, 32.09, 33.6, 1, 1, 33, 65.12, 7.2, 1, 1, 33, 37.31, -27.59, 1, 1, 33, 30.55, 24.89, 1, 2, 33, 24.11, 27.39, 0.84267, 32, 124.61, 94.52, 0.15733, 2, 33, 16.09, 27.09, 0.68533, 32, 118.45, 89.36, 0.31467, 2, 33, 8.16, 23.93, 0.528, 32, 114.1, 82.02, 0.472, 1, 33, 31.14, -21.46, 1, 1, 33, 24.56, -24.89, 1, 2, 33, 17.41, -26.42, 0.84267, 32, 152.21, 47.83, 0.15733, 2, 33, 9.29, -25.03, 0.68533, 32, 144.94, 43.98, 0.31467, 2, 33, 3.61, -23.08, 0.528, 32, 139.25, 42.04, 0.472 ],
  484. "hull": 15,
  485. "edges": [ 24, 26, 24, 22, 22, 20, 20, 18, 16, 18, 16, 14, 14, 12, 30, 32, 32, 34, 34, 36, 36, 18, 8, 6, 6, 4, 4, 2, 2, 0, 26, 28, 0, 28, 38, 40, 40, 42, 42, 44, 44, 46, 8, 10, 10, 12, 46, 10 ],
  486. "width": 70,
  487. "height": 64
  488. }
  489. },
  490. "1er2": {
  491. "1er2": {
  492. "type": "mesh",
  493. "uvs": [ 0.73374, 0.07562, 0.89364, 0.21015, 1, 0.44078, 1, 0.64209, 0.94128, 0.78623, 0.84991, 0.90731, 0.69704, 1, 0.60901, 0.97903, 0.4774, 0.94767, 0.2806, 0.86695, 0.12597, 0.74779, 0, 0.59981, 0, 0.46377, 0, 0.37928, 0.08008, 0.1967, 0.19078, 0.08908, 0.34892, 0, 0.52639, 0, 0.11503, 0.46377, 0.18007, 0.30186, 0.27203, 0.19638, 0.39539, 0.13995, 0.69817, 0.86362, 0.80134, 0.78758, 0.86414, 0.67473, 0.89106, 0.53736 ],
  494. "triangles": [ 21, 16, 17, 20, 15, 16, 21, 20, 16, 14, 15, 20, 19, 14, 20, 13, 14, 19, 18, 12, 13, 19, 18, 13, 25, 0, 1, 25, 1, 2, 11, 12, 18, 25, 2, 3, 21, 17, 0, 24, 25, 3, 9, 10, 18, 11, 18, 10, 4, 24, 3, 25, 24, 22, 23, 24, 4, 21, 0, 25, 24, 23, 22, 22, 21, 25, 21, 19, 20, 9, 21, 22, 9, 19, 21, 9, 18, 19, 5, 23, 4, 22, 23, 5, 8, 9, 22, 7, 8, 22, 6, 7, 22, 6, 22, 5 ],
  495. "vertices": [ 1, 34, 51.12, 0.77, 1, 1, 34, 50.58, -13.34, 1, 1, 34, 42.86, -27.96, 1, 1, 34, 32.35, -35.41, 1, 2, 34, 22.45, -37.4, 0.84, 32, 115.7, -101.42, 0.16, 2, 34, 12.43, -36.68, 0.68, 32, 108.06, -94.9, 0.32, 2, 34, 1.4, -31.38, 0.52, 32, 102.31, -84.1, 0.48, 2, 34, -1.07, -25.58, 0.52, 32, 103.75, -77.96, 0.48, 2, 34, -4.77, -16.91, 0.52, 32, 105.91, -68.78, 0.48, 2, 34, -8.53, -2.69, 0.52, 32, 111.3, -55.09, 0.48, 2, 34, -8.58, 10.55, 0.52, 32, 119.1, -44.4, 0.48, 2, 34, -5.97, 23.23, 0.52, 32, 128.72, -35.74, 0.48, 2, 34, 1.13, 28.27, 0.52, 32, 137.42, -35.88, 0.48, 2, 34, 5.54, 31.4, 0.68, 32, 142.83, -35.97, 0.32, 2, 34, 18.32, 33.59, 0.84, 32, 154.42, -41.77, 0.16, 1, 34, 28.42, 31.26, 1, 1, 34, 39.48, 25.54, 1, 1, 34, 46.67, 15.41, 1, 2, 34, 5.8, 21.7, 0.68, 32, 137.29, -43.93, 0.32, 2, 34, 16.88, 23.99, 0.84, 32, 147.58, -48.65, 0.16, 1, 34, 26.11, 22.65, 1, 1, 34, 34.05, 17.7, 1, 2, 34, 8.56, -26.4, 0.52, 32, 111.03, -84.32, 0.48, 2, 34, 16.71, -29.47, 0.68, 32, 115.78, -91.63, 0.32, 2, 34, 25.15, -28.87, 0.84, 32, 122.93, -96.14, 0.16, 1, 34, 33.4, -25.32, 1 ],
  496. "hull": 18,
  497. "edges": [ 22, 20, 20, 18, 18, 16, 12, 10, 10, 8, 8, 6, 26, 28, 28, 30, 30, 32, 32, 34, 34, 0, 0, 2, 6, 4, 2, 4, 22, 24, 24, 26, 24, 36, 36, 38, 38, 40, 40, 42, 12, 14, 14, 16, 14, 44, 44, 46, 46, 48, 48, 50 ],
  498. "width": 70,
  499. "height": 64
  500. }
  501. },
  502. "1fa": {
  503. "1fa": { "x": 14.8, "y": 1.36, "rotation": -88.34, "width": 47, "height": 52 }
  504. },
  505. "1shou1": {
  506. "1shou1": {
  507. "type": "mesh",
  508. "uvs": [ 0.74946, 0.08867, 0.82039, 0.12809, 0.91192, 0.26089, 0.92129, 0.42455, 0.87165, 0.67036, 0.79802, 0.82961, 0.68749, 0.93465, 0.56936, 0.99051, 0.5397, 0.92755, 0.27183, 0.89517, 0.12346, 0.82462, 0.07721, 0.78734, 0.03848, 0.6662, 0.00679, 0.37401, 0.07495, 0.18152, 0.16177, 0.08922, 0.26771, 0.01929, 0.55653, 0.01972 ],
  509. "triangles": [ 15, 12, 13, 0, 2, 3, 2, 0, 1, 14, 15, 13, 12, 3, 11, 15, 16, 17, 15, 17, 0, 3, 15, 0, 15, 3, 12, 4, 11, 3, 10, 11, 4, 4, 9, 10, 4, 8, 9, 5, 8, 4, 6, 8, 5, 7, 8, 6 ],
  510. "vertices": [ 60.06, -22.77, 55.68, -27.54, 41.78, -33.03, 25.25, -32.37, 0.8, -26.81, -14.81, -20.23, -24.74, -11.44, -29.68, -2.51, -23.17, -0.89, -18.36, 18.07, -10.4, 28.14, -6.37, 31.16, 6.05, 32.95, 35.64, 32.85, 54.63, 26.39, 63.42, 19.41, 69.84, 11.24, 68.12, -9.48 ],
  511. "hull": 18,
  512. "edges": [ 0, 34, 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 26, 28, 28, 30, 30, 32, 32, 34 ],
  513. "width": 72,
  514. "height": 101
  515. }
  516. },
  517. "1shou2": {
  518. "1shou2": { "x": 38.93, "y": -0.74, "rotation": -89.65, "width": 67, "height": 93 }
  519. },
  520. "1tou": {
  521. "1tou": {
  522. "type": "mesh",
  523. "uvs": [ 0.62424, 0.02402, 0.6537, 0.03319, 0.68191, 0.04196, 0.71731, 0.05297, 0.92019, 0.23784, 0.94731, 0.29898, 0.95816, 0.35866, 0.95708, 0.43727, 1, 0.55664, 1, 1, 0, 1, 0, 0.55373, 0.05314, 0.4067, 0.05954, 0.3343, 0.07138, 0.2826, 0.09408, 0.23516, 0.2929, 0.05297, 0.33521, 0.03405, 0.38094, 0.01541, 0.41875, 0, 0.54698, 0, 0.89307, 0.28006, 0.90934, 0.31645, 0.91802, 0.37904, 0.91368, 0.42999, 0.69996, 0.10683, 0.66741, 0.09227, 0.62618, 0.07626, 0.57845, 0.06461, 0.53831, 0.05734, 0.30865, 0.10079, 0.34495, 0.08493, 0.38801, 0.06907, 0.4277, 0.05661, 0.11805, 0.26715, 0.10127, 0.3085, 0.08902, 0.35028, 0.08734, 0.40707 ],
  524. "triangles": [ 33, 19, 20, 18, 19, 33, 29, 33, 20, 28, 29, 20, 0, 28, 20, 32, 18, 33, 17, 18, 32, 27, 0, 1, 28, 0, 27, 31, 17, 32, 30, 16, 17, 26, 1, 2, 27, 1, 26, 31, 30, 17, 25, 2, 3, 26, 2, 25, 34, 15, 16, 25, 3, 4, 30, 34, 16, 21, 25, 4, 14, 15, 34, 21, 4, 5, 35, 14, 34, 22, 21, 5, 13, 14, 35, 36, 13, 35, 22, 5, 6, 23, 22, 6, 12, 13, 36, 37, 12, 36, 23, 21, 22, 7, 23, 6, 24, 23, 7, 11, 12, 37, 10, 11, 37, 24, 7, 8, 9, 24, 8, 24, 21, 23, 25, 21, 24, 26, 25, 24, 27, 26, 24, 28, 27, 24, 29, 28, 24, 32, 33, 29, 29, 37, 32, 37, 31, 32, 36, 35, 30, 35, 34, 30, 36, 30, 31, 31, 37, 36, 37, 29, 24, 10, 37, 24, 10, 24, 9 ],
  525. "vertices": [ 1, 32, 149.47, -26.41, 1, 2, 32, 147.92, -32.64, 0.92267, 34, 7.67, 37.1, 0.07733, 2, 32, 146.43, -38.59, 0.84533, 34, 10, 31.42, 0.15467, 2, 32, 144.57, -46.07, 0.768, 34, 12.93, 24.29, 0.232, 2, 32, 114.66, -88.59, 0.768, 34, 14.01, -27.69, 0.232, 2, 32, 104.9, -94.18, 0.84533, 34, 9.46, -37.97, 0.15467, 2, 32, 95.44, -96.33, 0.92267, 34, 3.1, -45.31, 0.07733, 1, 32, 83.02, -95.89, 1, 1, 32, 64.01, -104.68, 1, 1, 32, -6.03, -103.53, 1, 1, 32, -2.54, 108.44, 1, 1, 32, 67.96, 107.28, 1, 1, 32, 91.01, 95.64, 1, 2, 32, 102.42, 94.09, 0.936, 33, 6.3, 40.63, 0.064, 2, 32, 110.55, 91.45, 0.872, 33, 11.11, 33.56, 0.128, 2, 32, 117.96, 86.51, 0.808, 33, 13.96, 25.12, 0.192, 2, 32, 146.05, 43.89, 0.808, 33, 10.12, -25.77, 0.192, 2, 32, 148.89, 34.88, 0.872, 33, 6.86, -34.65, 0.128, 2, 32, 151.68, 25.13, 0.936, 33, 3.1, -44.06, 0.064, 1, 32, 153.98, 17.08, 1, 1, 32, 153.53, -10.1, 1, 2, 32, 108.08, -82.73, 0.768, 34, 5.24, -26.86, 0.232, 2, 32, 102.28, -86.09, 0.84533, 34, 2.55, -33, 0.15467, 2, 32, 92.36, -87.77, 0.92267, 34, -4.45, -40.23, 0.07733, 1, 32, 84.32, -86.71, 1, 2, 32, 136.12, -42.25, 0.768, 34, 3.86, 22.36, 0.232, 2, 32, 138.53, -35.39, 0.84533, 34, 1.74, 29.32, 0.15467, 2, 32, 141.21, -26.69, 0.92267, 34, -1.26, 37.91, 0.07733, 1, 32, 143.21, -16.6, 1, 1, 32, 144.5, -8.11, 1, 2, 32, 138.44, 40.68, 0.808, 33, 2.14, -23.66, 0.192, 2, 32, 140.82, 32.94, 0.872, 33, -0.71, -31.24, 0.128, 2, 32, 143.18, 23.77, 0.936, 33, -4.45, -39.93, 0.064, 1, 32, 145.01, 15.33, 1, 2, 32, 112.83, 81.51, 0.808, 33, 6.84, 24.31, 0.192, 2, 32, 106.35, 85.18, 0.872, 33, 3.96, 31.17, 0.128, 2, 32, 99.79, 87.88, 0.936, 33, 0.42, 37.32, 0.064, 1, 32, 90.83, 88.39, 1 ],
  526. "hull": 21,
  527. "edges": [ 18, 20, 30, 32, 32, 34, 38, 36, 36, 34, 30, 28, 28, 26, 26, 24, 20, 22, 24, 22, 38, 40, 6, 8, 8, 10, 10, 12, 12, 14, 8, 42, 42, 44, 44, 46, 46, 48, 18, 16, 14, 16, 6, 50, 50, 52, 52, 54, 54, 56, 56, 58, 4, 6, 2, 4, 40, 0, 0, 2, 32, 60, 60, 62, 62, 64, 64, 66, 30, 68, 68, 70, 70, 72, 72, 74 ],
  528. "width": 212,
  529. "height": 158
  530. }
  531. },
  532. "1tui1": {
  533. "1tui1": { "x": 17.07, "y": 0.06, "rotation": 87.33, "width": 56, "height": 45 }
  534. },
  535. "1tui2": {
  536. "1tui2": { "x": 15.77, "y": -2.32, "rotation": 89.95, "width": 56, "height": 48 }
  537. },
  538. "1wei1": {
  539. "1wei1": {
  540. "type": "mesh",
  541. "uvs": [ 1, 0.1382, 1, 0.22109, 0.94646, 0.4615, 0.8971, 0.66046, 0.8158, 0.77237, 0.72144, 0.8677, 0.5661, 1, 0.47754, 1, 0.35124, 0.93402, 0.22348, 0.84698, 0.10879, 0.69776, 0.04636, 0.46564, 0, 0.25425, 0, 0, 0.06598, 0, 0.13019, 0.11811, 0.22126, 0.20477, 0.32867, 0.26477, 0.44542, 0.3081, 0.57268, 0.29811, 0.67659, 0.25811, 0.76182, 0.20477, 0.8377, 0.13477, 0.89024, 0.07144, 0.94792, 0 ],
  542. "triangles": [ 7, 18, 19, 8, 17, 18, 9, 16, 17, 16, 11, 15, 15, 12, 14, 15, 11, 12, 12, 13, 14, 19, 20, 5, 4, 20, 21, 21, 22, 3, 22, 23, 2, 0, 1, 23, 1, 2, 23, 23, 24, 0, 9, 17, 8, 10, 16, 9, 16, 10, 11, 5, 6, 19, 6, 7, 19, 4, 5, 20, 4, 21, 3, 3, 22, 2, 8, 18, 7 ],
  543. "vertices": [ 1, 32, 24.55, -97.03, 1, 1, 32, 18.83, -96.94, 1, 2, 31, 83.65, -85.77, 0.704, 32, 2.42, -86.12, 0.296, 1, 31, 70.12, -75.77, 1, 1, 31, 62.72, -59.6, 1, 1, 31, 56.52, -40.88, 1, 1, 31, 48.02, -10.1, 1, 1, 31, 48.37, 7.35, 1, 1, 31, 53.42, 32.13, 1, 1, 31, 59.94, 57.17, 1, 1, 31, 70.69, 79.55, 1, 2, 31, 86.95, 91.52, 0.64, 32, 5.05, 91.18, 0.36, 1, 32, 19.78, 100.08, 1, 1, 32, 37.33, 99.79, 1, 1, 32, 37.11, 86.79, 1, 1, 32, 28.76, 74.28, 1, 1, 32, 22.48, 56.44, 1, 1, 32, 17.99, 35.35, 1, 1, 32, 14.62, 12.4, 1, 1, 32, 14.9, -12.68, 1, 1, 32, 17.32, -33.19, 1, 1, 32, 20.73, -50.04, 1, 1, 32, 25.31, -65.07, 1, 1, 32, 29.51, -75.49, 1, 1, 32, 34.25, -86.93, 1 ],
  544. "hull": 25,
  545. "edges": [ 24, 26, 24, 22, 22, 20, 20, 18, 18, 16, 16, 14, 12, 14, 12, 10, 10, 8, 8, 6, 6, 4, 4, 2, 2, 0, 48, 0, 26, 28, 28, 30, 30, 32, 32, 34, 34, 36, 36, 38, 38, 40, 40, 42, 42, 44, 44, 46, 46, 48 ],
  546. "width": 197,
  547. "height": 69
  548. }
  549. },
  550. "1wei2": {
  551. "1wei2": {
  552. "type": "mesh",
  553. "uvs": [ 0.75927, 0.20474, 0.79976, 0.35602, 0.84531, 0.49242, 0.92376, 0.63626, 0.99694, 0.75276, 0.88474, 0.84302, 0.67845, 0.94741, 0.48184, 0.991, 0.35184, 1, 0.24809, 0.90658, 0.15445, 0.7677, 0.08669, 0.62218, 0.03861, 0.45602, 0, 0.25018, 0, 0.1353, 0.29054, 1.0E-5, 0.71372, 0 ],
  554. "triangles": [ 13, 14, 15, 12, 13, 15, 0, 11, 12, 0, 10, 11, 15, 16, 0, 12, 15, 0, 1, 10, 0, 3, 6, 2, 5, 3, 4, 7, 9, 10, 7, 10, 2, 2, 10, 1, 5, 6, 3, 2, 6, 7, 8, 9, 7 ],
  555. "vertices": [ 3, 54, -32.26, 40.75, 0.03824, 53, -7.6, 39.6, 0.14841, 52, 24.1, 37.29, 0.81335, 3, 54, -17.18, 36.6, 0.18523, 53, 7.62, 35.98, 0.35142, 52, 39.73, 36.78, 0.46335, 3, 54, -3.14, 33.63, 0.50332, 53, 21.75, 33.5, 0.34773, 52, 54.08, 37.17, 0.14895, 3, 54, 13.16, 33.08, 0.87879, 53, 38.06, 33.52, 0.10664, 52, 70.05, 40.44, 0.01457, 3, 54, 26.84, 33.45, 0.97853, 53, 51.72, 34.36, 0.02146, 52, 83.26, 43.99, 0, 2, 54, 29.14, 19.41, 0.99624, 53, 54.51, 20.41, 0.00376, 2, 54, 28.04, -3.32, 0.99988, 52, 93.03, 8.53, 1.2E-4, 3, 54, 22.16, -22.18, 0.96777, 53, 48.98, -21.39, 0.00217, 52, 91.72, -11.18, 0.03006, 3, 54, 16.56, -33.65, 0.89703, 53, 43.78, -33.05, 0.02882, 52, 88.95, -23.65, 0.07415, 3, 54, 3.38, -37.77, 0.72872, 53, 30.75, -37.63, 0.10434, 52, 77.1, -30.73, 0.16694, 3, 54, -13.24, -38.75, 0.40886, 53, 14.18, -39.19, 0.1816, 52, 61.17, -35.57, 0.40954, 3, 54, -29.16, -37.21, 0.1645, 53, -1.78, -38.2, 0.11322, 52, 45.33, -37.79, 0.72228, 3, 54, -45.9, -32.96, 0.03656, 53, -18.66, -34.54, 0.01341, 52, 28.06, -37.57, 0.95003, 2, 54, -65.61, -25.92, 7.1E-4, 52, 7.25, -35.33, 0.99929, 1, 52, -3.76, -32.06, 1, 1, 52, -8.62, -0.91, 1, 3, 54, -52.22, 47.14, 3.7E-4, 53, -27.77, 45.3, 0.02226, 52, 3.2, 38.84, 0.97737 ],
  556. "hull": 17,
  557. "edges": [ 26, 24, 24, 22, 22, 20, 20, 18, 18, 16, 14, 16, 14, 12, 12, 10, 10, 8, 8, 6, 6, 4, 4, 2, 2, 0, 0, 32, 26, 28, 30, 32, 28, 30 ],
  558. "width": 98,
  559. "height": 100
  560. }
  561. },
  562. "1wuqi": {
  563. "1wuqi": { "x": 94.14, "y": -1.26, "rotation": -90.05, "width": 101, "height": 221 }
  564. },
  565. "1yy": {
  566. "1yy": { "x": -2.07, "y": 43.22, "rotation": -0.05, "width": 209, "height": 45 }
  567. },
  568. "2body": {
  569. "2body": { "x": 28.34, "y": 1.42, "rotation": -90.76, "width": 165, "height": 108 }
  570. },
  571. "2er1": {
  572. "2er1": {
  573. "type": "mesh",
  574. "uvs": [ 0.90377, 0.18787, 0.95537, 0.31073, 0.98806, 0.40057, 0.99623, 0.48762, 0.90377, 0.58102, 0.66543, 0.73118, 0.4492, 0.89772, 0.34846, 1, 0.24034, 0.94959, 0.12486, 0.86495, 0, 0.73937, 0, 0, 0.74866, 1.0E-5, 0.8792, 0.48273, 0.8448, 0.36534, 0.78091, 0.24521, 0.31651, 0.86495, 0.1912, 0.78305, 0.11994, 0.66838 ],
  575. "triangles": [ 8, 16, 7, 7, 16, 6, 4, 13, 3, 13, 2, 3, 6, 16, 5, 5, 13, 4, 16, 17, 5, 10, 18, 9, 9, 18, 17, 17, 18, 5, 10, 11, 18, 5, 14, 13, 5, 15, 14, 5, 18, 15, 15, 11, 12, 15, 18, 11, 14, 0, 1, 14, 15, 0, 15, 12, 0, 9, 17, 8, 14, 1, 2, 8, 17, 16, 13, 14, 2 ],
  576. "vertices": [ 1, 8, 18.24, -32.77, 1, 2, 8, 9.81, -31.36, 0.704, 4, 135.28, 41.72, 0.296, 2, 8, 3.85, -30.04, 0.512, 4, 129.67, 39.32, 0.488, 2, 8, -0.99, -27.4, 0.512, 4, 124.2, 38.63, 0.488, 2, 8, -2.17, -18.74, 0.512, 4, 118.18, 44.97, 0.488, 1, 8, -0.51, 0.37, 1, 2, 8, -0.58, 18.79, 0.712, 4, 97.54, 76.35, 0.288, 2, 8, -1.9, 28.25, 0.712, 4, 90.95, 83.26, 0.288, 2, 8, 5, 32.69, 0.712, 4, 93.96, 90.9, 0.288, 2, 8, 13.98, 36.33, 0.904, 4, 99.12, 99.09, 0.096, 1, 8, 25.45, 39.05, 1, 1, 8, 63.83, 12.66, 1, 1, 8, 34.14, -30.53, 1, 2, 8, 3.91, -20.83, 0.512, 4, 124.33, 46.82, 0.488, 2, 8, 11.36, -23.03, 0.704, 4, 131.67, 49.39, 0.296, 1, 8, 20.13, -23.64, 1, 2, 8, 6.38, 25.27, 0.712, 4, 99.41, 85.68, 0.288, 2, 8, 15.6, 29.58, 0.904, 4, 104.38, 94.56, 0.096, 1, 8, 24.38, 29.59, 1 ],
  577. "hull": 13,
  578. "edges": [ 14, 12, 12, 10, 10, 8, 8, 6, 8, 26, 26, 28, 28, 30, 6, 4, 4, 2, 2, 0, 22, 24, 0, 24, 12, 32, 32, 34, 34, 36, 14, 16, 16, 18, 20, 22, 18, 20 ],
  579. "width": 70,
  580. "height": 63
  581. }
  582. },
  583. "2er2": {
  584. "2er2": {
  585. "type": "mesh",
  586. "uvs": [ 1, 0.66341, 0.94851, 0.80959, 0.87947, 0.92296, 0.74081, 0.99999, 0.57262, 0.97767, 0.30767, 0.84713, 0.09312, 0.64103, 0.01149, 0.54555, 0.02297, 0.37924, 0.06629, 0.26288, 0.12511, 0.17188, 0.23567, 0.07273, 0.39604, 1.0E-5, 1, 0, 0.67489, 0.90804, 0.80019, 0.83346, 0.86668, 0.71114, 0.89737, 0.60673, 0.11999, 0.49336, 0.15068, 0.37701, 0.19415, 0.28155 ],
  587. "triangles": [ 4, 14, 3, 3, 15, 2, 3, 14, 15, 4, 5, 14, 2, 15, 1, 15, 14, 16, 6, 18, 5, 18, 19, 5, 19, 20, 5, 17, 5, 20, 16, 14, 5, 12, 20, 11, 15, 16, 1, 17, 16, 5, 1, 16, 0, 16, 17, 0, 12, 17, 20, 6, 7, 18, 0, 17, 13, 17, 12, 13, 7, 8, 18, 18, 8, 19, 8, 9, 19, 19, 9, 20, 9, 10, 20, 20, 10, 11 ],
  588. "vertices": [ 1, 9, 28.74, -35.02, 1, 2, 9, 19.54, -37.32, 0.83467, 4, 109.3, -98.39, 0.16533, 2, 9, 11.2, -37.46, 0.66933, 4, 102.4, -93.7, 0.33067, 2, 9, 1.72, -32.39, 0.504, 4, 97.57, -84.1, 0.496, 2, 9, -4.18, -22.12, 0.504, 4, 98.65, -72.3, 0.496, 2, 9, -8.88, -2.54, 0.504, 4, 106.08, -53.59, 0.496, 2, 9, -7.83, 16.89, 0.504, 4, 118.12, -38.31, 0.496, 2, 9, -6.6, 24.88, 0.504, 4, 123.72, -32.47, 0.496, 2, 9, 1.91, 30.16, 0.66933, 4, 133.72, -33.06, 0.33067, 2, 9, 9.33, 31.85, 0.83467, 4, 140.76, -35.94, 0.16533, 1, 9, 16.17, 31.78, 1, 1, 9, 25.55, 29.08, 1, 1, 9, 35.72, 22.62, 1, 1, 9, 60.79, -11.41, 1, 2, 9, 3.43, -25.4, 0.504, 4, 102.98, -79.37, 0.496, 2, 9, 12.23, -29.81, 0.66933, 4, 107.64, -88.04, 0.33067, 2, 9, 20.9, -29.21, 0.83467, 4, 115.08, -92.53, 0.16533, 1, 9, 27.22, -27.22, 1, 2, 9, 0.42, 20.63, 0.66933, 4, 127.02, -40, 0.33067, 2, 9, 7.32, 23.04, 0.83467, 4, 134.04, -41.99, 0.16533, 1, 9, 13.73, 23.98, 1 ],
  589. "hull": 14,
  590. "edges": [ 14, 12, 12, 10, 10, 8, 6, 8, 6, 4, 4, 2, 0, 26, 2, 0, 8, 28, 28, 30, 30, 32, 32, 34, 12, 36, 36, 38, 38, 40, 14, 16, 16, 18, 18, 20, 20, 22, 24, 26, 22, 24 ],
  591. "width": 70,
  592. "height": 60
  593. }
  594. },
  595. "2eye1": {
  596. "2eye1": { "x": 1.62, "y": -0.09, "rotation": -107.22, "width": 58, "height": 57 }
  597. },
  598. "2eye2": {
  599. "2eye2": { "x": 2.59, "y": -0.47, "rotation": -71.69, "width": 58, "height": 57 }
  600. },
  601. "2fa": {
  602. "2fa": {
  603. "type": "mesh",
  604. "uvs": [ 0.73011, 0.11964, 0.88288, 0.28304, 0.96336, 0.5176, 0.95003, 0.73456, 0.83803, 0.85589, 0.66237, 0.93867, 0.50582, 0.99241, 0.28794, 0.99999, 0.14892, 0.94526, 0.03489, 0.82663, 0.02268, 0.65478, 0.15965, 0.56034, 0.24973, 0.39812, 0.26526, 0.25212, 0.27458, 0.08449, 0.3839, 0.01215, 0.52101, 0.00759 ],
  605. "triangles": [ 9, 10, 11, 6, 7, 11, 8, 11, 7, 8, 9, 11, 5, 6, 11, 11, 12, 5, 5, 12, 1, 1, 12, 13, 2, 4, 5, 13, 0, 1, 3, 4, 2, 13, 16, 0, 15, 16, 13, 13, 14, 15, 1, 2, 5 ],
  606. "vertices": [ 1, 5, 44.18, -11.98, 1, 1, 5, 35.35, -19.16, 1, 1, 5, 22.68, -22.93, 1, 1, 5, 10.97, -22.29, 1, 1, 5, 4.42, -17.02, 1, 1, 5, -0.04, -8.76, 1, 1, 4, 119.2, -1.53, 1, 1, 4, 118.57, 8.7, 1, 1, 4, 121.38, 15.3, 1, 1, 4, 127.67, 20.79, 1, 1, 4, 136.93, 21.57, 1, 2, 5, 20.41, 14.85, 0.77064, 4, 142.17, 15.24, 0.22936, 2, 5, 29.16, 10.61, 0.97737, 4, 151.02, 11.2, 0.02263, 2, 5, 37.05, 9.87, 0.99972, 4, 158.92, 10.64, 2.8E-4, 1, 5, 46.1, 9.43, 1, 1, 5, 50, 4.28, 1, 1, 5, 50.24, -2.16, 1 ],
  607. "hull": 17,
  608. "edges": [ 20, 22, 22, 24, 24, 26, 26, 28, 28, 30, 30, 32, 32, 0, 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 18, 20, 16, 18 ],
  609. "width": 47,
  610. "height": 54
  611. }
  612. },
  613. "2shou1": {
  614. "2shou1": { "x": 33.89, "y": -0.45, "rotation": 87.79, "width": 67, "height": 91 }
  615. },
  616. "2shou2": {
  617. "2shou2": {
  618. "type": "mesh",
  619. "uvs": [ 0.31819, 0.00679, 0.57812, 0.04972, 0.73112, 0.26033, 0.78842, 0.37065, 0.87898, 0.54503, 0.97426, 0.72854, 0.9742, 0.87993, 0.89308, 0.94838, 0.77129, 0.97876, 0.51135, 0.97854, 0.24538, 0.86743, 0.1173, 0.76009, 0.0579, 0.66171, 0.02717, 0.54251, 0.01189, 0.374, 0.04193, 0.1605, 0.18357, 0.04294, 0.47075, 0.46028, 0.27528, 0.53809, 0.64079, 0.41231, 0.54831, 0.65546, 0.327, 0.71986, 0.39814, 0.28583, 0.19738, 0.32471, 0.55781, 0.26043, 0.7369, 0.59756 ],
  620. "triangles": [ 25, 3, 4, 20, 19, 25, 18, 17, 20, 12, 13, 18, 21, 18, 20, 12, 18, 21, 25, 4, 5, 11, 12, 21, 10, 11, 21, 25, 5, 8, 6, 7, 5, 8, 20, 25, 9, 21, 20, 8, 9, 20, 10, 21, 9, 8, 5, 7, 1, 22, 0, 24, 1, 2, 24, 22, 1, 16, 0, 22, 23, 15, 16, 22, 23, 16, 14, 15, 23, 19, 24, 2, 19, 2, 3, 17, 22, 24, 17, 24, 19, 17, 18, 23, 17, 23, 22, 13, 14, 23, 18, 13, 23, 25, 19, 3, 20, 17, 19 ],
  621. "vertices": [ 1, 10, -6.76, 11.73, 1, 1, 10, 2.31, 21.11, 1, 1, 10, 23.34, 30.19, 1, 1, 10, 35.91, 32.86, 1, 1, 10, 54.56, 32.57, 1, 1, 10, 72.83, 27.07, 1, 1, 10, 83.74, 20.4, 1, 1, 10, 85.73, 12.57, 1, 1, 10, 83.51, 3.99, 1, 1, 10, 74.07, -11.47, 1, 1, 10, 57.79, -22.03, 1, 1, 10, 48.42, -25.26, 1, 1, 10, 42.24, -25.82, 1, 1, 10, 21.56, -22.59, 1, 1, 10, 4.2, -17.21, 1, 1, 10, -10.59, -7.07, 1, 1, 10, -11.42, 5.05, 1, 1, 10, 37.28, 8.17, 1, 1, 10, 38.82, -7.44, 1, 1, 10, 36.7, 21.36, 1, 1, 10, 54.32, 7.12, 1, 1, 10, 52.24, -10.16, 1, 1, 10, 21.3, 6.24, 1, 1, 10, 24.54, -5.05, 1, 1, 10, 21.52, 17.76, 1, 1, 10, 54.81, 21.25, 1 ],
  622. "hull": 17,
  623. "edges": [ 0, 32, 0, 2, 2, 4, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 26, 28, 28, 30, 30, 32, 22, 24, 24, 26, 24, 36, 36, 34, 4, 6, 6, 38, 38, 34, 6, 8, 8, 10 ],
  624. "width": 76,
  625. "height": 92
  626. }
  627. },
  628. "2tou": {
  629. "2tou": {
  630. "type": "mesh",
  631. "uvs": [ 0.58877, 0.02653, 0.62981, 0.04889, 0.66243, 0.06249, 0.70259, 0.07922, 0.89189, 0.22611, 0.92192, 0.27213, 0.93989, 0.32109, 1, 0.55979, 1, 1, 0, 1, 0, 0.52143, 0.04482, 0.33016, 0.06879, 0.26437, 0.10114, 0.21693, 0.28205, 0.07769, 0.32758, 0.0578, 0.3803, 0.0425, 0.4414, 0.02653, 0.94468, 0.37465, 0.94588, 0.43585, 0.12624, 0.23658, 0.11055, 0.26863, 0.0955, 0.29748, 0.08295, 0.33433, 0.07855, 0.37439, 0.07918, 0.41125, 0.29688, 0.12201, 0.34267, 0.09958, 0.38722, 0.08676, 0.43991, 0.07576, 0.48007, 0.07096, 0.57177, 0.07176, 0.61631, 0.08858, 0.65395, 0.103, 0.6872, 0.12223, 0.86193, 0.25188, 0.88828, 0.29194, 0.90459, 0.32959, 0.90898, 0.36965, 0.90396, 0.42333 ],
  632. "triangles": [ 30, 17, 0, 31, 30, 0, 29, 16, 17, 29, 17, 30, 28, 16, 29, 27, 15, 16, 32, 0, 1, 31, 0, 32, 28, 27, 16, 33, 1, 2, 33, 2, 3, 32, 1, 33, 26, 14, 15, 26, 15, 27, 34, 33, 3, 20, 13, 14, 35, 34, 3, 26, 20, 14, 4, 35, 3, 21, 13, 20, 12, 13, 21, 36, 35, 4, 36, 4, 5, 22, 12, 21, 37, 36, 5, 37, 5, 6, 11, 12, 22, 23, 11, 22, 38, 37, 6, 24, 11, 23, 6, 7, 18, 38, 6, 18, 25, 24, 23, 38, 39, 36, 38, 36, 37, 18, 7, 19, 25, 10, 11, 25, 11, 24, 9, 10, 25, 39, 19, 7, 39, 38, 18, 19, 39, 18, 8, 39, 7, 35, 36, 39, 34, 35, 39, 32, 33, 34, 34, 30, 32, 30, 31, 32, 34, 39, 30, 29, 30, 39, 25, 28, 29, 26, 27, 28, 28, 25, 26, 21, 20, 26, 21, 23, 22, 21, 26, 23, 26, 25, 23, 25, 29, 39, 9, 25, 39, 9, 39, 8 ],
  633. "vertices": [ 2, 4, 141.7, -16.09, 0.96711, 9, -1.33, 48.63, 0.03289, 2, 4, 138.18, -24.87, 0.90133, 9, 0.85, 39.42, 0.09867, 2, 4, 136.07, -31.83, 0.80267, 9, 3.13, 32.51, 0.19733, 2, 4, 133.48, -40.41, 0.72867, 9, 5.94, 24.01, 0.27133, 2, 4, 109.97, -81.05, 0.72867, 9, 10.11, -22.76, 0.27133, 2, 4, 102.47, -87.58, 0.81089, 9, 7.74, -32.42, 0.18911, 2, 4, 94.42, -91.57, 0.93217, 9, 3.45, -40.31, 0.06783, 2, 4, 55.08, -105.16, 0.9815, 9, -20.89, -74.07, 0.0185, 1, 4, -17.97, -106.74, 1, 1, 4, -22.55, 105.21, 1, 2, 4, 56.87, 106.92, 0.95556, 8, -15.73, 67.36, 0.04444, 2, 4, 88.82, 98.11, 0.86667, 8, 5.05, 41.54, 0.13333, 2, 4, 99.85, 93.27, 0.73333, 8, 11.17, 31.17, 0.26667, 2, 4, 107.87, 86.58, 0.63333, 8, 13.77, 21.06, 0.36667, 2, 4, 131.81, 48.73, 0.63333, 8, 11.09, -23.64, 0.36667, 2, 4, 135.32, 39.15, 0.73333, 8, 8.34, -33.47, 0.26667, 2, 4, 138.1, 28.04, 0.86667, 8, 4.1, -44.12, 0.13333, 2, 4, 141.03, 15.14, 0.95556, 8, -1.05, -56.29, 0.04444, 2, 4, 85.56, -92.78, 0.97533, 9, -3.1, -46.4, 0.02467, 1, 4, 75.41, -93.25, 1, 2, 4, 104.72, 81.19, 0.6, 8, 8.07, 18.52, 0.4, 2, 4, 99.33, 84.4, 0.64444, 8, 5.57, 24.27, 0.35556, 2, 4, 94.48, 87.49, 0.73333, 8, 3.43, 29.62, 0.26667, 2, 4, 88.3, 90.01, 0.86667, 8, -0.1, 35.27, 0.13333, 2, 4, 81.64, 90.8, 0.95556, 8, -5.05, 39.81, 0.04444, 1, 4, 75.52, 90.53, 1, 2, 4, 124.52, 45.43, 0.64444, 8, 3.25, -22.07, 0.35556, 2, 4, 128.45, 35.81, 0.73333, 8, 0.81, -32.18, 0.26667, 2, 4, 130.78, 26.41, 0.86667, 8, -2.78, -41.16, 0.13333, 2, 4, 132.85, 15.28, 0.95556, 8, -7.61, -51.4, 0.04444, 1, 4, 133.83, 6.79, 1, 2, 4, 134.12, -12.65, 0.95067, 9, -9.51, 47.07, 0.04933, 2, 4, 131.53, -22.15, 0.90133, 9, -6.16, 37.81, 0.09867, 2, 4, 129.31, -30.18, 0.80267, 9, -3.35, 29.97, 0.19733, 2, 4, 126.27, -37.3, 0.73689, 9, -1.74, 22.4, 0.26311, 2, 4, 105.55, -74.8, 0.73689, 9, 2.9, -20.19, 0.26311, 2, 4, 99.03, -80.52, 0.80267, 9, 0.86, -28.63, 0.19733, 2, 4, 92.85, -84.12, 0.90133, 9, -2.12, -35.12, 0.09867, 2, 4, 86.22, -85.19, 0.96711, 9, -6.92, -39.81, 0.03289, 1, 4, 77.29, -84.32, 1 ],
  634. "hull": 18,
  635. "edges": [ 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 26, 28, 28, 30, 30, 32, 32, 34, 34, 0, 6, 8, 8, 10, 10, 12, 12, 36, 36, 38, 16, 14, 38, 14, 26, 40, 40, 42, 42, 44, 44, 46, 46, 48, 48, 50, 28, 52, 52, 54, 54, 56, 56, 58, 58, 60, 62, 64, 64, 66, 66, 68, 68, 6, 4, 6, 0, 2, 2, 4, 8, 70, 70, 72, 72, 74, 74, 76, 76, 78, 12, 14 ],
  636. "width": 212,
  637. "height": 166
  638. }
  639. },
  640. "2tui1": {
  641. "2tui1": {
  642. "type": "mesh",
  643. "uvs": [ 1, 0.34427, 0.97196, 0.73632, 0.89702, 0.97551, 0.14004, 0.9694, 0.04298, 0.6818, 0.00467, 0.39322, 0, 0, 0.93418, 1.0E-5 ],
  644. "triangles": [ 5, 6, 7, 5, 7, 0, 4, 5, 0, 1, 4, 0, 3, 4, 1, 2, 3, 1 ],
  645. "vertices": [ 2, 15, 13.61, 26.73, 0.472, 3, -12.05, 6.45, 0.528, 1, 15, 30.12, 25.71, 1, 1, 15, 40.29, 21.91, 1, 1, 15, 41.36, -19.71, 1, 1, 15, 29.46, -25.43, 1, 2, 15, 17.41, -27.92, 0.472, 3, -13.38, 61.22, 0.528, 2, 15, 0.91, -28.7, 0.232, 3, 3.13, 61.25, 0.768, 2, 15, -0.73, 22.65, 0.232, 3, 2.45, 9.88, 0.768 ],
  646. "hull": 8,
  647. "edges": [ 12, 14, 10, 12, 6, 8, 8, 10, 4, 6, 4, 2, 2, 0, 0, 14 ],
  648. "width": 55,
  649. "height": 42
  650. }
  651. },
  652. "2tui2": {
  653. "2tui2": {
  654. "type": "mesh",
  655. "uvs": [ 0.99245, 0.21609, 0.96979, 0.48802, 0.92226, 0.78681, 0.83918, 0.97314, 0.1241, 0.9765, 0.04605, 0.78345, 0.0126, 0.58202, 0.01259, 0.26309, 0.0705, 1.0E-5, 0.96979, 1.0E-5 ],
  656. "triangles": [ 0, 8, 9, 0, 1, 8, 7, 8, 1, 6, 7, 1, 2, 5, 6, 1, 2, 6, 3, 5, 2, 4, 5, 3 ],
  657. "vertices": [ 1, 3, -7.51, -57.19, 1, 1, 16, 21.29, 20, 1, 1, 16, 33.68, 16.7, 1, 1, 16, 41.26, 11.66, 1, 1, 16, 39.35, -28.34, 1, 1, 16, 31.03, -32.29, 1, 1, 16, 22.48, -33.73, 1, 1, 3, -8.76, -2.3, 1, 1, 3, 2.25, -5.69, 1, 1, 3, 1.58, -56.04, 1 ],
  658. "hull": 10,
  659. "edges": [ 16, 18, 14, 16, 12, 14, 12, 10, 10, 8, 6, 8, 6, 4, 4, 2, 2, 0, 0, 18 ],
  660. "width": 56,
  661. "height": 42
  662. }
  663. },
  664. "2wei": {
  665. "2wei": {
  666. "type": "mesh",
  667. "uvs": [ 1, 0.17943, 0.94014, 0.42009, 0.90437, 0.66414, 0.81958, 0.78278, 0.69901, 0.91159, 0.55858, 1, 0.45126, 1, 0.3148, 0.91498, 0.20351, 0.82346, 0.09487, 0.65398, 0, 0.24383, 0, 0, 0.06175, 0, 0.13859, 0.11503, 0.23663, 0.1896, 0.35587, 0.24383, 0.47379, 0.27434, 0.55725, 0.27095, 0.67252, 0.2235, 0.75863, 0.17604, 0.84872, 0.11164, 0.94014, 0, 1, 0 ],
  668. "triangles": [ 10, 11, 12, 13, 10, 12, 9, 13, 14, 9, 10, 13, 8, 14, 15, 7, 15, 16, 21, 22, 0, 0, 20, 21, 0, 1, 20, 1, 19, 20, 3, 18, 19, 17, 18, 4, 16, 17, 5, 2, 19, 1, 8, 9, 14, 6, 7, 16, 3, 19, 2, 3, 4, 18, 5, 6, 16, 4, 5, 17, 7, 8, 15 ],
  669. "vertices": [ 2, 3, 98.22, -98.02, 0.264, 4, 12.03, -98.09, 0.736, 2, 3, 79.85, -85.98, 0.512, 4, -6.75, -86.7, 0.488, 1, 3, 61.15, -78.69, 1, 1, 3, 52.24, -61.86, 1, 1, 3, 42.63, -37.98, 1, 1, 3, 36.19, -10.23, 1, 1, 3, 36.47, 10.91, 1, 1, 3, 43.37, 37.7, 1, 1, 3, 50.71, 59.53, 1, 1, 3, 64.04, 80.76, 1, 2, 3, 95.87, 99.03, 0.224, 4, 2.82, 98.75, 0.776, 1, 4, 21.59, 99.16, 1, 1, 4, 21.85, 87, 1, 1, 4, 13.32, 71.67, 1, 1, 4, 8, 52.24, 1, 1, 4, 4.33, 28.66, 1, 1, 4, 2.49, 5.39, 1, 1, 4, 3.1, -11.04, 1, 1, 4, 7.25, -33.67, 1, 1, 4, 11.26, -50.55, 1, 1, 4, 16.61, -68.19, 1, 1, 4, 25.59, -86.01, 1, 1, 4, 25.84, -97.79, 1 ],
  670. "hull": 23,
  671. "edges": [ 20, 22, 20, 18, 18, 16, 16, 14, 14, 12, 10, 12, 10, 8, 8, 6, 6, 4, 4, 2, 0, 44, 2, 0, 22, 24, 24, 26, 26, 28, 28, 30, 30, 32, 32, 34, 34, 36, 36, 38, 38, 40, 42, 44, 40, 42 ],
  672. "width": 197,
  673. "height": 77
  674. }
  675. },
  676. "2wuqi": {
  677. "2wuqi": { "x": 64, "y": 1.08, "rotation": 89, "width": 102, "height": 197 }
  678. },
  679. "2yy": {
  680. "2yy": { "x": 1.49, "y": 43.5, "rotation": -0.05, "width": 209, "height": 45 }
  681. },
  682. "2zui": {
  683. "2zui": { "x": 43.7, "y": 1.61, "rotation": -88.76, "width": 88, "height": 64 }
  684. },
  685. "3body": {
  686. "3body": {
  687. "type": "mesh",
  688. "uvs": [ 0.41264, 0.02609, 0.51958, 0.03531, 0.63737, 0.03531, 0.76016, 0.03794, 0.8497, 0.08013, 0.91062, 0.16836, 0.95633, 0.27748, 0.98693, 0.39727, 0.99837, 0.59103, 0.97797, 0.73988, 0.92618, 0.85844, 0.81758, 0.9546, 0.69395, 1, 0.60064, 1, 0.45206, 0.97984, 0.33595, 0.89949, 0.18475, 0.89026, 0.09954, 0.86655, 0.04673, 0.83331, 0.03169, 0.69367, 0.0225, 0.5817, 0.02, 0.44997, 0.02306, 0.32748, 0.03419, 0.18081, 0.04533, 0.05522, 0.09936, 0, 0.25516, 0, 0.0859, 0.16551, 0.07447, 0.34219, 0.07066, 0.46118, 0.07752, 0.58739, 0.08433, 0.71871, 0.30918, 0.82928, 0.34576, 0.81005, 0.44485, 0.899, 0.57163, 0.92051, 0.67452, 0.91931, 0.77754, 0.89767, 0.85452, 0.84239, 0.91398, 0.76186, 0.94446, 0.6657, 0.95422, 0.55581, 0.93669, 0.41759, 0.9062, 0.30822, 0.86581, 0.20606, 0.81017, 0.12793, 0.77206, 0.09067 ],
  689. "triangles": [ 16, 32, 15, 15, 32, 33, 33, 32, 30, 30, 29, 33, 28, 33, 29, 29, 21, 28, 21, 22, 28, 22, 23, 28, 28, 23, 27, 23, 24, 27, 27, 24, 25, 12, 37, 11, 13, 36, 12, 12, 36, 37, 14, 35, 13, 13, 35, 36, 15, 34, 14, 14, 34, 35, 11, 38, 10, 11, 37, 38, 2, 36, 35, 37, 36, 43, 46, 36, 2, 46, 2, 3, 1, 2, 35, 1, 35, 34, 34, 33, 1, 42, 38, 37, 45, 36, 46, 38, 39, 10, 10, 39, 9, 38, 40, 39, 43, 45, 44, 36, 45, 43, 1, 33, 0, 39, 40, 9, 41, 40, 38, 43, 42, 37, 9, 40, 8, 26, 0, 28, 40, 41, 8, 42, 41, 38, 41, 7, 8, 41, 42, 7, 42, 6, 7, 42, 43, 6, 43, 5, 6, 43, 44, 5, 45, 4, 44, 44, 4, 5, 45, 46, 4, 46, 3, 4, 15, 33, 34, 33, 28, 0, 27, 26, 28, 27, 25, 26, 32, 16, 31, 18, 31, 17, 16, 17, 31, 18, 19, 31, 19, 30, 31, 30, 32, 31, 19, 20, 30, 20, 29, 30, 20, 21, 29 ],
  690. "vertices": [ 1, 19, 75.54, 21.97, 1, 1, 19, 74.3, 4.45, 1, 1, 19, 73.99, -14.86, 1, 1, 19, 73.39, -34.99, 1, 1, 19, 68.77, -49.6, 1, 1, 19, 59.43, -59.44, 1, 1, 19, 47.96, -66.76, 1, 1, 19, 35.42, -71.57, 1, 1, 19, 15.24, -73.12, 1, 1, 19, -0.18, -69.53, 1, 1, 19, -12.37, -60.84, 1, 1, 19, -22.08, -42.87, 1, 1, 19, -26.48, -22.52, 1, 1, 19, -26.23, -7.22, 1, 1, 19, -23.74, 17.11, 1, 2, 19, -15.07, 36.02, 0.824, 27, 17.93, 18.68, 0.176, 2, 19, -13.71, 60.8, 0.824, 27, 18.35, -6.13, 0.176, 2, 19, -11.02, 74.73, 0.824, 27, 16.66, -20.22, 0.176, 2, 19, -7.43, 83.33, 0.824, 27, 13.68, -29.06, 0.176, 2, 19, 7.13, 85.56, 0.888, 27, -0.68, -32.33, 0.112, 1, 19, 18.8, 86.88, 1, 1, 19, 32.51, 87.07, 1, 1, 19, 45.24, 86.36, 1, 1, 19, 60.46, 84.29, 1, 1, 19, 73.49, 82.25, 1, 1, 19, 79.09, 73.3, 1, 1, 19, 78.67, 47.75, 1, 1, 19, 61.91, 75.79, 1, 1, 19, 43.57, 77.96, 1, 1, 19, 31.21, 78.78, 1, 1, 19, 18.07, 77.87, 1, 2, 19, 4.39, 76.97, 0.888, 27, 1.44, -23.56, 0.112, 2, 19, -7.7, 40.29, 0.824, 27, 10.88, 13.89, 0.176, 2, 19, -5.8, 34.26, 0.824, 27, 8.56, 19.77, 0.176, 1, 19, -15.31, 18.16, 1, 1, 19, -17.89, -2.59, 1, 1, 19, -18.03, -19.47, 1, 1, 19, -16.06, -36.4, 1, 1, 19, -10.51, -49.11, 1, 1, 19, -2.3, -59, 1, 1, 19, 7.62, -64.16, 1, 1, 19, 19.02, -65.94, 1, 1, 19, 33.44, -63.3, 1, 1, 19, 44.9, -58.49, 1, 1, 19, 55.63, -52.03, 1, 1, 19, 63.9, -43.04, 1, 1, 19, 67.87, -36.85, 1 ],
  691. "hull": 27,
  692. "edges": [ 50, 48, 48, 46, 46, 44, 44, 42, 42, 40, 40, 38, 38, 36, 36, 34, 34, 32, 32, 30, 30, 28, 28, 26, 24, 26, 24, 22, 22, 20, 20, 18, 18, 16, 16, 14, 14, 12, 12, 10, 10, 8, 8, 6, 6, 4, 4, 2, 2, 0, 50, 52, 0, 52, 50, 54, 54, 56, 56, 58, 58, 60, 60, 62, 62, 34, 30, 64, 64, 66, 66, 68, 68, 70, 70, 72, 72, 74, 74, 76, 76, 78, 78, 80, 80, 82, 82, 84, 84, 86, 86, 88, 88, 90, 90, 92, 92, 6 ],
  693. "width": 164,
  694. "height": 104
  695. }
  696. },
  697. "3er1": {
  698. "3er1": {
  699. "type": "mesh",
  700. "uvs": [ 0.81849, 0.07236, 0.89569, 0.14311, 0.95369, 0.23347, 0.988, 0.36711, 0.992, 0.47486, 0.9808, 0.55335, 0.88626, 0.64089, 0.43969, 0.94705, 0.38969, 1, 0.29369, 1, 0.18369, 0.92159, 0.08369, 0.81765, 0, 0.65856, 0, 0, 0.67769, 0, 0.88969, 0.5122, 0.88169, 0.42311, 0.83969, 0.30432, 0.79769, 0.22796, 0.32369, 0.88553, 0.22569, 0.80705, 0.14569, 0.70523, 0.11769, 0.5822 ],
  701. "triangles": [ 7, 8, 19, 8, 9, 19, 9, 10, 19, 7, 19, 6, 10, 20, 19, 6, 19, 15, 15, 19, 20, 6, 15, 5, 5, 15, 4, 15, 16, 4, 16, 3, 4, 10, 11, 20, 11, 21, 20, 11, 12, 21, 12, 22, 21, 15, 20, 21, 17, 15, 22, 17, 22, 18, 21, 22, 15, 12, 13, 22, 17, 16, 15, 22, 14, 18, 22, 13, 14, 16, 17, 3, 17, 2, 3, 17, 18, 2, 18, 1, 2, 18, 0, 1, 18, 14, 0 ],
  702. "vertices": [ 1, 21, 26.09, -33.75, 1, 1, 21, 19.16, -35.48, 1, 2, 21, 11.95, -35.36, 0.784, 20, 149.04, 50.18, 0.216, 2, 21, 3.36, -32.25, 0.568, 20, 140.24, 47.7, 0.432, 2, 21, -2.62, -28.38, 0.352, 20, 133.13, 47.36, 0.648, 2, 21, -6.4, -24.76, 0.352, 20, 127.95, 48.1, 0.648, 2, 21, -7.31, -16.02, 0.352, 20, 122.11, 54.67, 0.648, 2, 21, -5.82, 21.17, 0.352, 20, 101.64, 85.76, 0.648, 2, 21, -6.66, 26.05, 0.352, 20, 98.12, 89.23, 0.648, 2, 21, -2.79, 31.54, 0.352, 20, 98.06, 95.95, 0.648, 2, 21, 5.87, 34.86, 0.568, 20, 103.17, 103.69, 0.432, 2, 21, 15.51, 36.63, 0.784, 20, 109.97, 110.75, 0.216, 1, 21, 27.47, 35.37, 1, 1, 21, 63, 10.33, 1, 1, 21, 35.68, -28.45, 1, 2, 21, -0.51, -21.11, 0.352, 20, 130.61, 54.5, 0.648, 2, 21, 4.62, -24.04, 0.568, 20, 136.48, 55.11, 0.432, 2, 21, 12.73, -26.15, 0.784, 20, 144.3, 58.12, 0.216, 1, 21, 18.54, -26.65, 1, 2, 21, 2.17, 25.47, 0.352, 20, 105.63, 93.91, 0.648, 2, 21, 10.36, 28.1, 0.568, 20, 110.75, 100.81, 0.432, 2, 21, 19.08, 28.8, 0.784, 20, 117.42, 106.47, 0.216, 1, 21, 26.84, 25.73, 1 ],
  703. "hull": 15,
  704. "edges": [ 24, 26, 24, 22, 22, 20, 20, 18, 16, 18, 16, 14, 14, 12, 12, 10, 12, 30, 30, 32, 32, 34, 34, 36, 2, 4, 4, 6, 6, 8, 8, 10, 14, 38, 38, 40, 40, 42, 42, 44, 2, 0, 26, 28, 0, 28 ],
  705. "width": 70,
  706. "height": 66
  707. }
  708. },
  709. "3er2": {
  710. "3er2": {
  711. "type": "mesh",
  712. "uvs": [ 0.9655, 0.53648, 0.95537, 0.7262, 0.90145, 0.84718, 0.81777, 0.94374, 0.67171, 0.99999, 0.49018, 0.94884, 0.17195, 0.77236, 0.01968, 0.6019, 0.01346, 0.41846, 0.05198, 0.2593, 0.10777, 0.13434, 0.24216, 0, 0.862, 0.02254, 0.66309, 0.8841, 0.77973, 0.79038, 0.83805, 0.65406, 0.16355, 0.59442, 0.1458, 0.43538, 0.16355, 0.31894 ],
  713. "triangles": [ 18, 10, 11, 9, 10, 18, 8, 9, 18, 17, 8, 18, 15, 16, 17, 12, 18, 11, 15, 12, 0, 15, 18, 12, 15, 17, 18, 1, 15, 0, 2, 14, 15, 1, 2, 15, 15, 14, 13, 16, 15, 13, 7, 17, 16, 6, 16, 5, 7, 16, 6, 13, 14, 3, 13, 5, 16, 4, 13, 3, 5, 13, 4, 7, 8, 17, 3, 14, 2 ],
  714. "vertices": [ 1, 39, 34.52, -21.74, 1, 2, 20, 126.23, -77.76, 0.15467, 39, 26.99, -27.54, 0.84533, 2, 20, 120.15, -74.79, 0.44, 39, 20.44, -29.23, 0.56, 2, 20, 115.29, -70.15, 0.72533, 39, 13.73, -28.87, 0.27467, 2, 20, 112.4, -62, 0.856, 39, 6.24, -24.54, 0.144, 2, 20, 114.87, -51.81, 0.856, 39, 1.49, -15.2, 0.144, 2, 20, 123.55, -33.91, 0.856, 39, -3.55, 4.04, 0.144, 2, 20, 132, -25.31, 0.72533, 39, -2.72, 16.07, 0.27467, 2, 20, 141.17, -24.89, 0.44, 39, 3.97, 22.35, 0.56, 2, 20, 149.14, -26.98, 0.15467, 39, 11.38, 25.95, 0.84533, 1, 39, 18.15, 27.69, 1, 1, 39, 28.16, 26.43, 1, 1, 39, 50.1, -0.49, 1, 2, 20, 118.19, -61.46, 0.72533, 39, 10.29, -20.37, 0.27467, 2, 20, 122.94, -67.95, 0.44, 39, 18.11, -22.23, 0.56, 2, 20, 129.78, -71.16, 0.232, 39, 25.4, -20.21, 0.768, 2, 20, 132.44, -33.37, 0.72533, 39, 2.85, 10.24, 0.27467, 2, 20, 140.38, -32.3, 0.44, 39, 8.19, 16.21, 0.56, 2, 20, 146.21, -33.25, 0.232, 39, 13.24, 19.28, 0.768 ],
  715. "hull": 13,
  716. "edges": [ 14, 12, 12, 10, 10, 8, 10, 26, 26, 28, 28, 30, 12, 32, 32, 34, 34, 36, 14, 16, 16, 18, 18, 20, 22, 24, 20, 22, 8, 6, 6, 4, 4, 2, 0, 24, 2, 0 ],
  717. "width": 56,
  718. "height": 50
  719. }
  720. },
  721. "3eye1": {
  722. "3eye1": { "x": -1.13, "y": 4.47, "rotation": -79.28, "width": 62, "height": 60 }
  723. },
  724. "3eye2": {
  725. "3eye2": { "x": -0.06, "y": 0.95, "rotation": -79.28, "width": 57, "height": 53 }
  726. },
  727. "3fa": {
  728. "3fa": {
  729. "type": "mesh",
  730. "uvs": [ 0.80911, 0.16817, 0.92715, 0.34731, 0.96757, 0.5346, 0.9514, 0.70831, 0.84145, 0.82095, 0.66681, 0.89831, 0.31915, 0.93088, 0.10085, 0.88881, 0.02102, 0.73138, 0.04264, 0.63774, 0.15422, 0.56038, 0.22375, 0.44503, 0.26579, 0.30796, 0.25932, 0.1356, 0.3046, 0, 0.54715, 0 ],
  731. "triangles": [ 10, 8, 9, 6, 7, 8, 10, 6, 8, 5, 6, 10, 15, 12, 13, 12, 1, 11, 1, 12, 0, 3, 4, 2, 15, 13, 14, 0, 12, 15, 2, 11, 1, 2, 4, 11, 4, 5, 11, 10, 11, 5 ],
  732. "vertices": [ 1, 22, 45.38, -5.6, 1, 1, 22, 38.24, -14.57, 1, 1, 22, 29.28, -20.34, 1, 2, 22, 20, -23.37, 0.88889, 20, 143.35, -15.83, 0.11111, 2, 22, 12.19, -21.01, 0.66667, 20, 136.99, -10.72, 0.33333, 2, 22, 5.05, -15.09, 0.33333, 20, 132.59, -2.55, 0.66667, 2, 22, -2.9, -0.7, 0.11111, 20, 130.63, 13.78, 0.88889, 1, 20, 132.9, 24.06, 1, 2, 22, 2.05, 16.53, 0.11111, 20, 141.68, 27.89, 0.88889, 2, 22, 7.28, 17.6, 0.33333, 20, 146.93, 26.91, 0.66667, 2, 22, 13.29, 14.41, 0.66667, 20, 151.31, 21.71, 0.33333, 2, 22, 20.51, 13.87, 0.88889, 20, 157.8, 18.49, 0.11111, 1, 22, 28.36, 14.99, 1, 1, 22, 37.16, 18.97, 1, 1, 22, 44.99, 19.91, 1, 1, 22, 49.36, 9.38, 1 ],
  733. "hull": 16,
  734. "edges": [ 16, 14, 14, 12, 12, 10, 10, 8, 8, 6, 6, 4, 4, 2, 2, 0, 0, 30, 28, 30, 28, 26, 26, 24, 24, 22, 22, 20, 20, 18, 18, 16 ],
  735. "width": 47,
  736. "height": 56
  737. }
  738. },
  739. "3shou1": {
  740. "3shou1": {
  741. "type": "mesh",
  742. "uvs": [ 0.36838, 0.0303, 0.49886, 0.03004, 0.63545, 0.09723, 0.68597, 0.1355, 0.79793, 0.22034, 0.89259, 0.37313, 0.97638, 0.50837, 0.99355, 0.68573, 0.97903, 0.77267, 0.94971, 0.85649, 0.92027, 0.90652, 0.7913, 0.96947, 0.64796, 0.96943, 0.50134, 0.92786, 0.41878, 0.85437, 0.33272, 0.72171, 0.26018, 0.50786, 0.26006, 0.17466, 0.30088, 0.10441, 0.53538, 0.36611, 0.33358, 0.50636, 0.45472, 0.74583, 0.66613, 0.87481, 0.88904, 0.79188, 0.79848, 0.85553, 0.90637, 0.63303, 0.81391, 0.39219, 0.76935, 0.29561, 0.70224, 0.69313, 0.60541, 0.53525, 0.38265, 0.6416 ],
  743. "triangles": [ 19, 18, 0, 0, 1, 19, 19, 1, 2, 3, 19, 2, 12, 22, 11, 11, 24, 10, 11, 22, 24, 12, 13, 22, 14, 21, 13, 13, 21, 22, 24, 23, 10, 10, 23, 9, 22, 28, 24, 22, 21, 28, 9, 23, 8, 24, 28, 23, 14, 15, 21, 23, 25, 8, 23, 28, 25, 8, 25, 7, 15, 30, 21, 21, 29, 28, 21, 30, 29, 15, 20, 30, 15, 16, 20, 28, 26, 25, 28, 29, 26, 25, 6, 7, 30, 19, 29, 30, 20, 19, 26, 5, 25, 25, 5, 6, 29, 27, 26, 27, 19, 3, 19, 27, 29, 16, 17, 20, 20, 17, 19, 5, 26, 4, 26, 27, 4, 27, 3, 4, 18, 19, 17 ],
  744. "vertices": [ 2, 24, -10.35, -2.54, 0.1533, 19, 74.55, 92.58, 0.8467, 2, 24, -3.2, 7.75, 0.30472, 19, 76.7, 80.23, 0.69528, 2, 24, 7.88, 16.02, 0.78991, 19, 74.62, 66.55, 0.21009, 2, 24, 12.69, 18.57, 0.87824, 19, 72.99, 61.34, 0.12176, 2, 24, 23.36, 24.24, 0.92171, 19, 69.39, 49.79, 0.07829, 2, 24, 36.7, 26.02, 0.98438, 19, 61.14, 39.12, 0.01562, 2, 24, 48.51, 27.6, 0.99813, 19, 53.83, 29.67, 0.00187, 1, 24, 58.91, 22.36, 1, 1, 24, 62.75, 17.99, 1, 1, 24, 65.62, 12.56, 1, 1, 24, 66.67, 8.38, 1, 1, 24, 62.95, -4.11, 1, 1, 24, 55.08, -15.4, 1, 1, 24, 44.82, -25.41, 1, 1, 24, 36.37, -29.18, 1, 1, 24, 24.57, -31.03, 1, 2, 24, 9.19, -28.8, 0.79738, 19, 42.16, 97.48, 0.20262, 2, 24, -8.59, -16.43, 0.3949, 19, 63.52, 101.22, 0.6051, 2, 24, -10.1, -10.61, 0.17518, 19, 68.69, 98.14, 0.82482, 1, 24, 16.73, -1.86, 1, 1, 24, 13.13, -22.96, 1, 1, 24, 32.55, -22.32, 1, 1, 24, 51.03, -10.46, 1, 1, 24, 58.84, 10.18, 1, 1, 24, 57.27, 0.69, 1, 1, 24, 51.32, 17.45, 1, 1, 24, 33.4, 19.11, 1, 2, 24, 25.8, 19.19, 0.98915, 19, 64.09, 51.65, 0.01085, 1, 24, 43.32, -0.86, 1, 1, 24, 29.59, -2.62, 1, 1, 24, 23.04, -24.12, 1 ],
  745. "hull": 19,
  746. "edges": [ 0, 36, 0, 2, 2, 4, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 26, 28, 28, 30, 30, 32, 32, 34, 34, 36, 8, 10, 10, 12, 4, 6, 6, 8 ],
  747. "width": 96,
  748. "height": 65
  749. }
  750. },
  751. "3shou2": {
  752. "3shou2": {
  753. "type": "mesh",
  754. "uvs": [ 0.88873, 0.09444, 0.97853, 0.24322, 0.98747, 0.42079, 0.93328, 0.59597, 0.83879, 0.74282, 0.66175, 0.87768, 0.42584, 0.9633, 0.19171, 1, 0.05368, 0.90502, 0, 0.43303, 0.10399, 0.31689, 0.21061, 0.21946, 0.3592, 0.11292, 0.52529, 0.0367, 0.72759, 0.01727 ],
  755. "triangles": [ 0, 2, 14, 2, 0, 1, 14, 3, 13, 2, 3, 14, 4, 5, 13, 3, 4, 13, 12, 13, 5, 11, 12, 5, 8, 9, 10, 6, 11, 5, 10, 11, 6, 8, 10, 6, 7, 8, 6 ],
  756. "vertices": [ 1, 42, 40.31, 13.26, 1, 1, 42, 43.33, 2.06, 1, 2, 41, 71.99, -9.51, 4.0E-5, 42, 39.96, -8.63, 0.99996, 2, 41, 64, -18.16, 0.01831, 42, 32.16, -17.46, 0.98169, 2, 41, 53.85, -24.01, 0.11416, 42, 22.14, -23.52, 0.88584, 2, 41, 38.18, -26.77, 0.47818, 42, 6.53, -26.64, 0.52182, 2, 41, 19.54, -24.98, 0.94888, 42, -12.14, -25.25, 0.05112, 1, 41, 2.2, -20.38, 1, 1, 41, -5.25, -10.87, 1, 1, 41, 2.24, 18.2, 1, 2, 41, 12.32, 21.97, 0.97539, 42, -20.39, 21.53, 0.02461, 2, 41, 22.14, 24.59, 0.82831, 42, -10.63, 24.36, 0.17169, 2, 41, 35.14, 26.52, 0.42445, 42, 2.32, 26.58, 0.57555, 2, 41, 48.64, 26.19, 0.10055, 42, 15.83, 26.54, 0.89945, 2, 41, 63.33, 21.5, 0.00217, 42, 30.62, 22.18, 0.99783 ],
  757. "hull": 15,
  758. "edges": [ 14, 16, 12, 14, 12, 10, 10, 8, 8, 6, 6, 4, 4, 2, 2, 0, 0, 28, 26, 28, 26, 24, 24, 22, 22, 20, 16, 18, 20, 18 ],
  759. "width": 76,
  760. "height": 63
  761. }
  762. },
  763. "3shou3": {
  764. "3shou3": { "x": -8.87, "y": -12.88, "rotation": 18.48, "width": 44, "height": 45 }
  765. },
  766. "3tou": {
  767. "3tou": {
  768. "type": "mesh",
  769. "uvs": [ 0.63688, 0.02118, 0.68128, 0.04041, 0.71693, 0.05893, 0.75439, 0.08306, 0.87689, 0.19182, 0.91783, 0.25665, 0.9395, 0.34094, 0.94792, 0.42523, 1, 0.61812, 1, 0.81631, 0.74205, 1, 0.20076, 0.99822, 0.03268, 0.73603, 0, 0.60309, 7.2E-4, 0.45136, 0.01755, 0.38227, 0.04143, 0.3217, 0.06319, 0.27485, 0.08959, 0.23021, 0.27321, 0.06373, 0.33659, 0.03652, 0.46054, 0, 0.58315, 0, 0.1161, 0.2629, 0.0926, 0.30142, 0.06911, 0.35044, 0.04017, 0.45727, 0.03432, 0.53884, 0.08204, 0.73825, 0.29127, 0.1153, 0.34525, 0.09195, 0.44902, 0.05803, 0.49839, 0.05582, 0.74506, 0.12568, 0.71013, 0.10244, 0.67343, 0.08436, 0.6247, 0.07295, 0.58931, 0.06265, 0.85102, 0.22757, 0.87812, 0.27896, 0.90394, 0.33948, 0.90681, 0.39098, 0.90107, 0.44892, 0.05211, 0.40056 ],
  770. "triangles": [ 29, 23, 19, 29, 19, 20, 23, 18, 19, 10, 11, 30, 30, 28, 29, 10, 30, 32, 30, 31, 32, 32, 37, 10, 37, 36, 10, 10, 36, 42, 36, 33, 42, 9, 10, 8, 39, 42, 38, 38, 42, 33, 36, 34, 33, 35, 34, 36, 12, 28, 11, 28, 30, 11, 28, 24, 23, 29, 28, 23, 10, 42, 8, 28, 13, 27, 27, 26, 28, 26, 43, 28, 43, 25, 28, 28, 25, 24, 28, 12, 13, 42, 7, 8, 13, 14, 27, 27, 14, 26, 43, 26, 15, 26, 14, 15, 42, 41, 7, 41, 39, 40, 41, 42, 39, 41, 6, 7, 43, 15, 25, 41, 40, 6, 15, 16, 25, 25, 16, 24, 40, 5, 6, 40, 39, 5, 16, 17, 24, 23, 24, 18, 5, 39, 4, 24, 17, 18, 39, 38, 4, 38, 33, 4, 33, 3, 4, 33, 34, 3, 30, 29, 20, 34, 2, 3, 34, 35, 2, 30, 20, 31, 35, 1, 2, 1, 35, 0, 35, 36, 0, 36, 37, 0, 32, 22, 37, 37, 22, 0, 31, 21, 32, 31, 20, 21, 32, 21, 22 ],
  771. "vertices": [ 1, 20, 148.78, -17.26, 1, 1, 20, 145.92, -26.44, 1, 2, 20, 143.15, -33.8, 0.8, 39, 11.27, 16.86, 0.2, 2, 20, 139.52, -41.55, 0.712, 39, 13.55, 8.62, 0.288, 2, 20, 123.1, -66.93, 0.712, 39, 17.57, -21.34, 0.288, 2, 20, 113.25, -75.44, 0.84, 39, 15.62, -34.21, 0.16, 1, 20, 100.39, -80.02, 1, 1, 20, 87.51, -81.86, 1, 1, 20, 58.09, -92.84, 1, 1, 20, 27.77, -93.1, 1, 1, 20, -0.79, -40.2, 1, 1, 20, -1.46, 71.3, 1, 1, 20, 38.35, 106.27, 1, 1, 20, 58.64, 113.17, 1, 1, 20, 81.85, 113.22, 1, 1, 20, 92.45, 109.84, 1, 1, 20, 101.76, 105, 1, 2, 20, 108.97, 100.58, 0.8, 21, 8.77, 28.95, 0.2, 2, 20, 115.84, 95.2, 0.48, 21, 11.22, 20.57, 0.52, 2, 20, 141.64, 57.59, 0.192, 21, 10.26, -25.02, 0.808, 2, 20, 145.91, 44.57, 0.936, 21, 6.14, -38.09, 0.064, 1, 20, 151.71, 19.09, 1, 1, 20, 151.93, -6.17, 1, 2, 20, 110.89, 89.7, 0.48, 21, 3.99, 18.99, 0.52, 2, 20, 104.95, 94.49, 0.8, 21, 1.96, 26.34, 0.2, 1, 20, 97.41, 99.26, 1, 1, 20, 81.02, 105.08, 1, 1, 20, 68.53, 106.18, 1, 1, 20, 38.1, 96.09, 1, 2, 20, 133.78, 53.81, 0.192, 21, 1.66, -23.52, 0.808, 2, 20, 137.44, 42.72, 0.936, 21, -1.82, -34.67, 0.064, 1, 20, 142.81, 21.38, 1, 1, 20, 143.24, 11.22, 1, 2, 20, 132.99, -39.69, 0.712, 39, 7.37, 5.79, 0.288, 2, 20, 136.48, -32.46, 0.8, 39, 5.33, 13.55, 0.2, 1, 20, 139.18, -24.88, 1, 1, 20, 140.84, -14.82, 1, 1, 20, 142.36, -7.52, 1, 2, 20, 117.58, -61.64, 0.712, 39, 9.94, -20.91, 0.288, 2, 20, 109.77, -67.29, 0.84, 39, 7.68, -30.28, 0.16, 1, 20, 100.55, -72.69, 1, 1, 20, 92.68, -73.35, 1, 1, 20, 83.8, -72.24, 1, 1, 20, 89.71, 102.7, 1 ],
  772. "hull": 23,
  773. "edges": [ 36, 46, 46, 48, 48, 50, 52, 54, 54, 56, 26, 28, 26, 24, 24, 22, 36, 38, 38, 58, 58, 60, 60, 62, 62, 64, 38, 40, 40, 42, 42, 44, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 20, 22, 16, 18, 20, 18, 6, 66, 66, 68, 68, 70, 70, 72, 72, 74, 4, 6, 2, 4, 44, 0, 0, 2, 8, 76, 76, 78, 78, 80, 80, 82, 82, 84, 32, 34, 34, 36, 28, 30, 30, 32, 50, 86, 86, 52 ],
  774. "width": 206,
  775. "height": 153
  776. }
  777. },
  778. "3tui1": {
  779. "3tui1": {
  780. "type": "mesh",
  781. "uvs": [ 0.83581, 0.07306, 0.92813, 0.17973, 0.98422, 0.34402, 0.96194, 0.59698, 0.93489, 0.8004, 0.85825, 0.97131, 0.14283, 0.96727, 0.08058, 0.81358, 0.04322, 0.61241, 0.01659, 0.35163, 0.02948, 0.08465, 0.14415, 0.05242, 0.54848, 0, 0.14414, 0.22784, 0.14896, 0.42831, 0.1658, 0.60929, 0.19709, 0.74606, 0.85655, 0.295, 0.84933, 0.45928, 0.8397, 0.60128, 0.82285, 0.73492 ],
  782. "triangles": [ 13, 10, 11, 17, 0, 1, 17, 1, 2, 9, 10, 13, 12, 13, 11, 14, 13, 12, 9, 13, 14, 17, 12, 0, 18, 17, 2, 12, 17, 18, 14, 12, 18, 8, 9, 14, 3, 18, 2, 19, 18, 3, 18, 15, 14, 8, 14, 15, 19, 20, 18, 20, 15, 18, 16, 15, 20, 3, 20, 19, 4, 20, 3, 16, 7, 8, 16, 8, 15, 6, 7, 16, 5, 20, 4, 16, 20, 5, 6, 16, 5 ],
  783. "vertices": [ 1, 19, 5.76, 36.47, 1, 1, 19, 0.23, 31.11, 1, 2, 27, 10.5, 26.25, 0.33333, 19, -8.2, 27.93, 0.66667, 2, 27, 23.45, 25.65, 0.66667, 19, -21.08, 29.46, 0.33333, 1, 27, 33.9, 24.63, 1, 1, 27, 42.85, 20.6, 1, 1, 27, 44.98, -21.56, 1, 1, 27, 37.36, -25.66, 1, 2, 27, 27.24, -28.43, 0.76267, 19, -20.99, 83.67, 0.23733, 2, 27, 14.04, -30.73, 0.39733, 19, -7.67, 85.02, 0.60267, 2, 27, 0.41, -30.72, 0.112, 19, 5.93, 84.04, 0.888, 2, 27, -1.61, -24.06, 0.096, 19, 7.47, 77.25, 0.904, 1, 19, 9.76, 53.35, 1, 2, 27, 7.32, -23.56, 0.232, 19, -1.48, 77.4, 0.768, 2, 27, 17.52, -22.72, 0.46933, 19, -11.7, 77.28, 0.53067, 2, 27, 26.68, -21.21, 0.76267, 19, -20.95, 76.43, 0.23733, 1, 27, 33.54, -18.98, 1, 2, 27, 8.42, 18.59, 0.33333, 19, -5.58, 35.42, 0.66667, 2, 27, 16.81, 18.63, 0.66667, 19, -13.95, 35.99, 0.33333, 1, 27, 24.07, 18.46, 1, 1, 27, 30.93, 17.85, 1 ],
  784. "hull": 13,
  785. "edges": [ 18, 16, 12, 10, 10, 8, 8, 6, 6, 4, 4, 2, 12, 14, 14, 16, 18, 20, 20, 22, 22, 26, 26, 28, 28, 30, 30, 32, 2, 34, 34, 36, 36, 38, 38, 40, 22, 24, 2, 0, 24, 0 ],
  786. "width": 59,
  787. "height": 51
  788. }
  789. },
  790. "3tui2": {
  791. "3tui2": { "x": 20.53, "y": -0.67, "rotation": 86.02, "width": 55, "height": 38 }
  792. },
  793. "3wei1": {
  794. "3wei1": {
  795. "type": "mesh",
  796. "uvs": [ 0.16495, 0.10346, 0.27556, 0.19858, 0.4301, 0.28273, 0.60434, 0.27175, 0.75283, 0.21321, 0.88919, 0.11809, 0.95889, 0.07053, 1, 0.1876, 1, 0.30468, 0.96192, 0.45102, 0.92101, 0.68882, 0.83465, 0.82053, 0.73465, 0.92297, 0.65586, 1, 0.56798, 1, 0.47859, 0.94126, 0.39071, 0.85712, 0.29677, 0.72541, 0.19828, 0.6998, 0.09828, 0.61199, 0.04071, 0.46931, 0, 0.33029, 0, 0.19858, 0.06495, 0, 0.08919, 0 ],
  797. "triangles": [ 21, 22, 0, 12, 4, 11, 16, 17, 2, 12, 13, 3, 3, 13, 14, 16, 2, 15, 14, 15, 3, 11, 4, 10, 18, 1, 17, 18, 19, 1, 19, 20, 0, 0, 20, 21, 15, 2, 3, 12, 3, 4, 17, 1, 2, 10, 4, 9, 9, 4, 5, 22, 24, 0, 19, 0, 1, 24, 22, 23, 9, 5, 8, 7, 8, 5, 5, 6, 7 ],
  798. "vertices": [ 1, 20, 29.71, 79.26, 1, 1, 20, 22.1, 57.3, 1, 1, 20, 15.46, 26.64, 1, 1, 20, 16.66, -7.85, 1, 1, 20, 21.71, -37.21, 1, 1, 20, 29.73, -64.14, 1, 1, 20, 33.75, -77.91, 1, 1, 20, 24.22, -86.13, 1, 1, 20, 14.62, -86.21, 1, 2, 20, 2.56, -78.77, 0.52867, 19, 77.64, -78.86, 0.47133, 1, 19, 58.28, -70.45, 1, 1, 19, 47.75, -53.17, 1, 1, 19, 39.68, -33.24, 1, 1, 19, 33.61, -17.54, 1, 1, 19, 33.89, -0.14, 1, 1, 19, 39, 17.48, 1, 1, 19, 46.18, 34.76, 1, 1, 19, 57.28, 53.19, 1, 1, 19, 59.69, 72.65, 1, 1, 19, 67.21, 92.33, 1, 1, 19, 79.09, 103.54, 1, 1, 19, 90.62, 111.42, 1, 1, 19, 101.42, 111.24, 1, 1, 20, 38.03, 99.13, 1, 1, 20, 38.07, 94.33, 1 ],
  799. "hull": 25,
  800. "edges": [ 42, 40, 40, 38, 38, 36, 36, 34, 34, 32, 32, 30, 30, 28, 26, 28, 26, 24, 24, 22, 22, 20, 20, 18, 18, 16, 16, 14, 14, 12, 12, 10, 10, 8, 8, 6, 6, 4, 4, 2, 2, 0, 0, 48, 46, 48, 42, 44, 46, 44 ],
  801. "width": 198,
  802. "height": 82
  803. }
  804. },
  805. "3wei2": {
  806. "3wei2": {
  807. "type": "mesh",
  808. "uvs": [ 0.82853, 0.04477, 1, 0.17994, 0.98718, 0.3196, 0.95825, 0.47995, 0.92369, 0.63767, 0.87916, 0.8104, 0.83322, 0.9855, 0.64438, 0.99999, 0.44484, 0.94876, 0.27804, 0.89028, 0.11883, 0.79673, 0.0228, 0.71478, 1.0E-5, 0.61489, 0.11466, 0.488, 0.25469, 0.35255, 0.39357, 0.21487, 0.51238, 0.09194, 0.61877, 3.0E-5, 0.25713, 0.57446, 0.45863, 0.6905, 0.67845, 0.76716, 0.38739, 0.41698, 0.58279, 0.4978, 0.7619, 0.57653, 0.51359, 0.27194, 0.6642, 0.32581, 0.82704, 0.39834, 0.61739, 0.13726, 0.74358, 0.18699, 0.88606, 0.26158 ],
  809. "triangles": [ 6, 7, 20, 7, 8, 20, 6, 20, 5, 8, 19, 20, 20, 23, 5, 5, 23, 4, 19, 22, 20, 20, 22, 23, 4, 23, 3, 23, 22, 26, 23, 26, 3, 26, 22, 25, 3, 26, 2, 25, 28, 26, 26, 29, 2, 26, 28, 29, 2, 29, 1, 1, 29, 0, 29, 28, 0, 8, 9, 19, 10, 18, 9, 9, 18, 19, 10, 11, 18, 18, 12, 13, 18, 11, 12, 13, 14, 18, 18, 21, 19, 19, 21, 22, 18, 14, 21, 21, 24, 22, 21, 14, 15, 22, 24, 25, 21, 15, 24, 24, 27, 25, 25, 27, 28, 15, 16, 24, 24, 16, 27, 28, 27, 0, 27, 17, 0, 27, 16, 17 ],
  810. "vertices": [ 2, 43, -11.42, 14.42, 0.55128, 46, -12.08, -18.15, 0.44872, 1, 46, -2.29, 4.31, 1, 1, 46, 13.09, 6.71, 1, 2, 46, 31.15, 7.92, 0.86093, 47, -4.49, 7.56, 0.13907, 1, 47, 13.33, 9.62, 1, 2, 47, 33.09, 11.17, 0.48443, 48, -0.2, 11.16, 0.51557, 1, 48, 19.82, 13.13, 1, 4, 44, 41.91, 71, 0.00842, 45, 6.85, 70.88, 0.03553, 47, 61.68, -6.98, 6.0E-4, 48, 28.82, -6.29, 0.95545, 4, 44, 53.48, 50.83, 0.0614, 45, 18.03, 50.48, 0.31982, 47, 63.72, -30.14, 0.03886, 48, 31.41, -29.4, 0.57992, 4, 44, 61.91, 32.76, 0.04313, 45, 26.1, 32.25, 0.66444, 47, 63.78, -50.08, 0.02675, 48, 31.95, -49.32, 0.26568, 4, 44, 66.93, 12.6, 2.2E-4, 45, 30.73, 12.01, 0.94693, 47, 59.88, -70.48, 0.00321, 48, 28.54, -69.82, 0.04964, 2, 45, 31.45, -2.14, 0.99991, 48, 23.84, -83.17, 9.0E-5, 1, 45, 25.08, -11.57, 1, 2, 44, 42.61, -11.54, 0.08536, 45, 5.94, -11.66, 0.91464, 2, 44, 20.8, -10.6, 0.99977, 45, -15.84, -10.29, 2.3E-4, 2, 43, 35.3, -9.87, 0.65932, 44, -1.09, -9.92, 0.34068, 1, 43, 16.18, -8.86, 1, 1, 43, 0.58, -6.62, 1, 4, 44, 38.33, 6.71, 0.27789, 45, 2.02, 6.67, 0.6882, 47, 31.44, -63.83, 0.01229, 48, -0.04, -63.85, 0.02161, 6, 43, 69.96, 30.63, 0.00343, 44, 31.78, 32.04, 0.28605, 45, -4.04, 32.12, 0.27563, 46, 67.67, -41.07, 7.0E-4, 47, 36.13, -38.09, 0.17696, 48, 4.02, -38, 0.25722, 5, 43, 59.87, 54.87, 0.00192, 44, 20.65, 55.82, 0.05144, 45, -14.7, 56.11, 0.0376, 47, 36, -11.83, 0.34564, 48, 3.27, -11.76, 0.5634, 6, 43, 52.56, 4.48, 0.00338, 44, 15.53, 5.16, 0.96289, 45, -20.81, 5.56, 0.00213, 46, 40.21, -56.33, 0.00321, 47, 10.1, -55.67, 0.02294, 48, -21.58, -56.2, 0.00546, 6, 43, 44.64, 26.96, 0.14762, 44, 6.65, 27.27, 0.37276, 45, -29.26, 27.85, 0.02088, 46, 43.49, -32.72, 0.08528, 47, 11.32, -31.86, 0.33662, 48, -20.93, -32.38, 0.03684, 6, 43, 37.77, 47.91, 0.03022, 44, -1.12, 47.9, 0.05211, 45, -36.63, 48.63, 0.00371, 46, 46.99, -10.96, 0.03465, 47, 12.92, -9.88, 0.87387, 48, -19.86, -10.36, 0.00545, 5, 43, 31.05, 4.49, 0.93378, 44, -5.96, 4.23, 0.03192, 46, 21.11, -46.46, 0.02137, 47, -9.79, -47.49, 0.01291, 48, -41.66, -48.5, 1.0E-5, 5, 43, 24.25, 21.19, 0.52702, 44, -13.48, 20.63, 0.06976, 46, 22.72, -28.49, 0.31098, 47, -9.74, -29.45, 0.0922, 48, -42.04, -30.47, 4.0E-5, 4, 43, 18.08, 40.31, 0.08276, 44, -20.47, 39.46, 0.01352, 46, 26.01, -8.68, 0.84859, 47, -8.18, -9.42, 0.05513, 3, 43, 12.09, 3.36, 0.97097, 46, 3.73, -38.76, 0.02844, 47, -27.77, -41.32, 5.9E-4, 4, 43, 6.77, 17.7, 0.59801, 44, -30.79, 16.38, 8.0E-5, 46, 5.58, -23.58, 0.39941, 47, -27.24, -26.04, 0.0025, 3, 43, 2.29, 35.24, 0.07396, 44, -36.02, 33.71, 3.0E-5, 46, 9.65, -5.94, 0.92601 ],
  811. "hull": 18,
  812. "edges": [ 22, 20, 20, 18, 18, 16, 16, 14, 12, 14, 12, 10, 10, 8, 8, 6, 6, 4, 4, 2, 2, 0, 0, 34, 34, 32, 32, 30, 30, 28, 28, 26, 22, 24, 26, 24 ],
  813. "width": 113,
  814. "height": 111
  815. }
  816. },
  817. "3wuqi": {
  818. "3wuqi": { "x": 58.68, "y": 22.35, "rotation": -12.64, "width": 268, "height": 186 }
  819. },
  820. "3yy": {
  821. "3yy": { "x": 7.54, "y": 43.78, "rotation": -0.05, "width": 209, "height": 45 }
  822. },
  823. "3zui": {
  824. "3zui": { "x": 53.96, "y": -10.37, "rotation": -89.51, "width": 85, "height": 64 }
  825. },
  826. "effect_down": {
  827. "qk_00": { "x": 44.84, "y": 9.98, "width": 138, "height": 118 },
  828. "qk_01": { "x": 44.84, "y": 9.98, "width": 138, "height": 118 },
  829. "qk_02": { "x": 44.84, "y": 9.98, "width": 138, "height": 118 },
  830. "qk_03": { "x": 44.84, "y": 9.98, "width": 138, "height": 118 },
  831. "qk_04": { "x": 44.84, "y": 9.98, "width": 138, "height": 118 },
  832. "qk_05": { "x": 44.84, "y": 9.98, "width": 138, "height": 118 }
  833. },
  834. "effect_down2": {
  835. "qk_00": { "x": 44.84, "y": 9.98, "width": 138, "height": 118 },
  836. "qk_01": { "x": 44.84, "y": 9.98, "width": 138, "height": 118 },
  837. "qk_02": { "x": 44.84, "y": 9.98, "width": 138, "height": 118 },
  838. "qk_03": { "x": 44.84, "y": 9.98, "width": 138, "height": 118 },
  839. "qk_04": { "x": 44.84, "y": 9.98, "width": 138, "height": 118 },
  840. "qk_05": { "x": 44.84, "y": 9.98, "width": 138, "height": 118 }
  841. },
  842. "effect_right": {
  843. "qk_00": { "x": 39.56, "y": 7.94, "width": 138, "height": 118 },
  844. "qk_01": { "x": 39.56, "y": 7.94, "width": 138, "height": 118 },
  845. "qk_02": { "x": 39.56, "y": 7.94, "width": 138, "height": 118 },
  846. "qk_03": { "x": 39.56, "y": 7.94, "width": 138, "height": 118 },
  847. "qk_04": { "x": 39.56, "y": 7.94, "width": 138, "height": 118 },
  848. "qk_05": { "x": 39.56, "y": 7.94, "width": 138, "height": 118 }
  849. },
  850. "effect_right2": {
  851. "qk_00": { "x": 39.56, "y": 7.94, "width": 138, "height": 118 },
  852. "qk_01": { "x": 39.56, "y": 7.94, "width": 138, "height": 118 },
  853. "qk_02": { "x": 39.56, "y": 7.94, "width": 138, "height": 118 },
  854. "qk_03": { "x": 39.56, "y": 7.94, "width": 138, "height": 118 },
  855. "qk_04": { "x": 39.56, "y": 7.94, "width": 138, "height": 118 },
  856. "qk_05": { "x": 39.56, "y": 7.94, "width": 138, "height": 118 }
  857. },
  858. "effect_up": {
  859. "qk_00": { "x": 46.83, "y": 8.42, "width": 138, "height": 118 },
  860. "qk_01": { "x": 46.83, "y": 8.42, "width": 138, "height": 118 },
  861. "qk_02": { "x": 46.83, "y": 8.42, "width": 138, "height": 118 },
  862. "qk_03": { "x": 46.83, "y": 8.42, "width": 138, "height": 118 },
  863. "qk_04": { "x": 46.83, "y": 8.42, "width": 138, "height": 118 },
  864. "qk_05": { "x": 46.83, "y": 8.42, "width": 138, "height": 118 }
  865. },
  866. "effect_up2": {
  867. "qk_00": { "x": 46.83, "y": 8.42, "width": 138, "height": 118 },
  868. "qk_01": { "x": 46.83, "y": 8.42, "width": 138, "height": 118 },
  869. "qk_02": { "x": 46.83, "y": 8.42, "width": 138, "height": 118 },
  870. "qk_03": { "x": 46.83, "y": 8.42, "width": 138, "height": 118 },
  871. "qk_04": { "x": 46.83, "y": 8.42, "width": 138, "height": 118 },
  872. "qk_05": { "x": 46.83, "y": 8.42, "width": 138, "height": 118 }
  873. }
  874. }
  875. }
  876. ],
  877. "events": {
  878. "effect": {},
  879. "fire": {}
  880. },
  881. "animations": {
  882. "atk_down": {
  883. "slots": {
  884. "1body": {
  885. "attachment": [
  886. { "name": null }
  887. ]
  888. },
  889. "1er1": {
  890. "attachment": [
  891. { "name": null }
  892. ]
  893. },
  894. "1er2": {
  895. "attachment": [
  896. { "name": null }
  897. ]
  898. },
  899. "1fa": {
  900. "attachment": [
  901. { "name": null }
  902. ]
  903. },
  904. "1shou1": {
  905. "attachment": [
  906. { "name": null }
  907. ]
  908. },
  909. "1shou2": {
  910. "attachment": [
  911. { "name": null }
  912. ]
  913. },
  914. "1tou": {
  915. "attachment": [
  916. { "name": null }
  917. ]
  918. },
  919. "1tui1": {
  920. "attachment": [
  921. { "name": null }
  922. ],
  923. "attachment": [
  924. { "name": null }
  925. ]
  926. },
  927. "1tui2": {
  928. "attachment": [
  929. { "name": null }
  930. ],
  931. "attachment": [
  932. { "name": null }
  933. ]
  934. },
  935. "1wei1": {
  936. "attachment": [
  937. { "name": null }
  938. ]
  939. },
  940. "1wei2": {
  941. "attachment": [
  942. { "name": null }
  943. ]
  944. },
  945. "1wuqi": {
  946. "attachment": [
  947. { "name": null }
  948. ]
  949. },
  950. "1yy": {
  951. "attachment": [
  952. { "name": null }
  953. ]
  954. },
  955. "3body": {
  956. "attachment": [
  957. { "name": null }
  958. ]
  959. },
  960. "3er1": {
  961. "attachment": [
  962. { "name": null }
  963. ]
  964. },
  965. "3er2": {
  966. "attachment": [
  967. { "name": null }
  968. ]
  969. },
  970. "3eye1": {
  971. "attachment": [
  972. { "name": null }
  973. ]
  974. },
  975. "3eye2": {
  976. "attachment": [
  977. { "name": null }
  978. ]
  979. },
  980. "3fa": {
  981. "attachment": [
  982. { "name": null }
  983. ]
  984. },
  985. "3shou1": {
  986. "attachment": [
  987. { "name": null }
  988. ]
  989. },
  990. "3shou2": {
  991. "attachment": [
  992. { "name": null }
  993. ]
  994. },
  995. "3shou3": {
  996. "attachment": [
  997. { "name": null }
  998. ]
  999. },
  1000. "3tou": {
  1001. "attachment": [
  1002. { "name": null }
  1003. ]
  1004. },
  1005. "3tui1": {
  1006. "attachment": [
  1007. { "name": null }
  1008. ],
  1009. "attachment": [
  1010. { "name": null }
  1011. ]
  1012. },
  1013. "3tui2": {
  1014. "attachment": [
  1015. { "name": null }
  1016. ],
  1017. "attachment": [
  1018. { "name": null }
  1019. ]
  1020. },
  1021. "3wei1": {
  1022. "attachment": [
  1023. { "name": null }
  1024. ]
  1025. },
  1026. "3wei2": {
  1027. "attachment": [
  1028. { "name": null }
  1029. ]
  1030. },
  1031. "3wuqi": {
  1032. "attachment": [
  1033. { "name": null }
  1034. ]
  1035. },
  1036. "3yy": {
  1037. "attachment": [
  1038. { "name": null }
  1039. ]
  1040. },
  1041. "3zui": {
  1042. "attachment": [
  1043. { "name": null }
  1044. ]
  1045. },
  1046. "effect_down": {
  1047. "attachment": [
  1048. { "time": 0.2, "name": "qk_00" },
  1049. { "time": 0.2333, "name": "qk_01" },
  1050. { "time": 0.2667, "name": "qk_02" },
  1051. { "time": 0.3, "name": "qk_03" },
  1052. { "time": 0.3333, "name": "qk_04" },
  1053. { "time": 0.3667, "name": "qk_05" },
  1054. { "time": 0.4, "name": null }
  1055. ]
  1056. },
  1057. "effect_down2": {
  1058. "attachment": [
  1059. { "time": 0.2, "name": "qk_00" },
  1060. { "time": 0.2333, "name": "qk_01" },
  1061. { "time": 0.2667, "name": "qk_02" },
  1062. { "time": 0.3, "name": "qk_03" },
  1063. { "time": 0.3333, "name": "qk_04" },
  1064. { "time": 0.3667, "name": "qk_05" },
  1065. { "time": 0.4, "name": null }
  1066. ]
  1067. }
  1068. },
  1069. "bones": {
  1070. "2shenti": {
  1071. "rotate": [
  1072. { "curve": 0.25, "c3": 0.75 },
  1073. { "time": 0.1667, "angle": -5.05 },
  1074. { "time": 0.2, "angle": -0.06 },
  1075. { "time": 0.2667, "angle": -1.66 },
  1076. { "time": 0.3333, "angle": -0.07 },
  1077. { "time": 0.4667 }
  1078. ],
  1079. "translate": [
  1080. { "curve": 0.25, "c3": 0.75 },
  1081. { "time": 0.1667, "x": 4.05, "y": -2.96 },
  1082. { "time": 0.2, "x": -0.5, "y": 2.87 },
  1083. { "time": 0.2667, "x": -0.84, "y": 0.7 },
  1084. { "time": 0.3333, "x": -2.05, "y": -2.68 },
  1085. { "time": 0.4, "x": 1.21, "y": -0.06 },
  1086. { "time": 0.4667 }
  1087. ],
  1088. "scale": [
  1089. { "curve": 0.25, "c3": 0.75 },
  1090. { "time": 0.1667, "x": 0.926, "y": 1.045 },
  1091. { "time": 0.2, "x": 0.952, "y": 1.059 },
  1092. { "time": 0.2667, "x": 0.992, "y": 1.006 },
  1093. { "time": 0.3333, "x": 1.056, "y": 1.033 },
  1094. { "time": 0.4667 }
  1095. ],
  1096. "shear": [
  1097. { "curve": 0.25, "c3": 0.75 },
  1098. { "time": 0.1667, "y": 3.38 },
  1099. { "time": 0.2, "x": 2.07, "y": 3 },
  1100. { "time": 0.2667, "x": 4.97, "y": 2.25 },
  1101. { "time": 0.3667, "x": 0.22, "y": 1.13 },
  1102. { "time": 0.4667 }
  1103. ]
  1104. },
  1105. "2tou": {
  1106. "rotate": [
  1107. { "angle": 0.5, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
  1108. { "time": 0.1333, "angle": -1.45 },
  1109. { "time": 0.2667, "angle": -1.95 },
  1110. { "time": 0.3667, "angle": 6.94 },
  1111. { "time": 0.4667, "angle": 0.5 }
  1112. ],
  1113. "translate": [
  1114. { "x": -0.34, "y": -0.37, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
  1115. { "time": 0.1333, "x": -1.77, "y": 0.04 },
  1116. { "time": 0.2, "x": -3.22, "y": -0.36 },
  1117. { "time": 0.2667, "x": -0.54, "y": 1.61 },
  1118. { "time": 0.3667, "x": -0.73, "y": 0.31 },
  1119. { "time": 0.4667, "x": -0.34, "y": -0.37 }
  1120. ],
  1121. "scale": [
  1122. { "x": 0.978, "y": 1.017, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
  1123. { "time": 0.1333, "x": 0.949 },
  1124. { "time": 0.2, "x": 0.925, "y": 1.032 },
  1125. { "time": 0.2667, "x": 1.197, "y": 1.005 },
  1126. { "time": 0.4667, "x": 0.978, "y": 1.017 }
  1127. ],
  1128. "shear": [
  1129. { "y": -1.12, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
  1130. { "time": 0.1333 },
  1131. { "time": 0.2667, "y": 2.4 },
  1132. { "time": 0.4667, "y": -1.12 }
  1133. ]
  1134. },
  1135. "2tou3": {
  1136. "rotate": [
  1137. { "curve": 0.25, "c3": 0.75 },
  1138. { "time": 0.1667, "angle": 13.88 },
  1139. { "time": 0.2667, "angle": -3.31 },
  1140. { "time": 0.3667, "angle": 35.99 },
  1141. { "time": 0.4667 }
  1142. ],
  1143. "translate": [
  1144. { "curve": 0.25, "c3": 0.75 },
  1145. { "time": 0.1667, "x": 6.43, "y": -2.9 },
  1146. { "time": 0.2667, "x": 0.71, "y": -0.62 },
  1147. { "time": 0.3667, "x": 5.41, "y": -2.5 },
  1148. { "time": 0.4667 }
  1149. ],
  1150. "scale": [
  1151. {},
  1152. { "time": 0.1667, "x": 1.054, "y": 0.968 },
  1153. { "time": 0.2667, "x": 0.711, "y": 1.119 },
  1154. { "time": 0.3667, "x": 0.989, "y": 0.933 },
  1155. { "time": 0.4667 }
  1156. ]
  1157. },
  1158. "ik_r_down": {
  1159. "translate": [
  1160. {},
  1161. { "time": 0.1667, "x": -7.39, "y": -0.07 },
  1162. { "time": 0.2333, "x": -0.03, "y": 19.53 },
  1163. { "time": 0.3333, "x": 4.55, "y": 19.61 },
  1164. { "time": 0.4667 }
  1165. ]
  1166. },
  1167. "2qiang": {
  1168. "rotate": [
  1169. {},
  1170. { "time": 0.1667, "angle": -0.54 },
  1171. { "time": 0.3, "angle": -1.44 },
  1172. { "time": 0.4667 }
  1173. ],
  1174. "translate": [
  1175. {},
  1176. { "time": 0.1667, "x": -2.89, "y": -4.67 },
  1177. { "time": 0.2333, "x": -7.77, "y": 31.46 },
  1178. { "time": 0.3, "x": 4, "y": 15.53 },
  1179. { "time": 0.4667 }
  1180. ],
  1181. "scale": [
  1182. {},
  1183. { "time": 0.1667, "x": 0.906, "y": 1.081 },
  1184. { "time": 0.2333, "x": 0.771, "y": 1.251 },
  1185. { "time": 0.3, "x": 0.974, "y": 1.025 },
  1186. { "time": 0.4667 }
  1187. ]
  1188. },
  1189. "2erduo2": {
  1190. "rotate": [
  1191. {},
  1192. { "time": 0.2, "angle": -12.28 },
  1193. { "time": 0.2667, "angle": 32.36 },
  1194. { "time": 0.4, "angle": -3.93 },
  1195. { "time": 0.4667 }
  1196. ],
  1197. "translate": [
  1198. {},
  1199. { "time": 0.2, "x": 2.88, "y": 1.13 },
  1200. { "time": 0.2667, "x": -3.72, "y": 0.48 },
  1201. { "time": 0.4667 }
  1202. ]
  1203. },
  1204. "2erduo1": {
  1205. "rotate": [
  1206. {},
  1207. { "time": 0.2, "angle": 17.89 },
  1208. { "time": 0.2667, "angle": 17.05 },
  1209. { "time": 0.3667, "angle": -13.15 },
  1210. { "time": 0.4667 }
  1211. ],
  1212. "translate": [
  1213. {},
  1214. { "time": 0.2, "x": 3.88, "y": 4.11 },
  1215. { "time": 0.2667, "x": -2.5, "y": 2.47 },
  1216. { "time": 0.3667, "x": 0.47, "y": -1.47 },
  1217. { "time": 0.4667 }
  1218. ]
  1219. },
  1220. "2tui1": {
  1221. "rotate": [
  1222. {},
  1223. { "time": 0.3, "angle": -3.03 },
  1224. { "time": 0.4667 }
  1225. ],
  1226. "translate": [
  1227. {},
  1228. { "time": 0.1667, "y": -3.1 },
  1229. { "time": 0.3, "x": 1.03, "y": -1.72 },
  1230. { "time": 0.4667 }
  1231. ],
  1232. "scale": [
  1233. {},
  1234. { "time": 0.1667, "x": 0.962 },
  1235. { "time": 0.4667 }
  1236. ]
  1237. },
  1238. "2tou4": {
  1239. "translate": [
  1240. {},
  1241. { "time": 0.1667, "x": -1.74, "y": 4.11 },
  1242. { "time": 0.2333 },
  1243. { "time": 0.3, "x": 6.14, "y": -1.85 },
  1244. { "time": 0.4667 }
  1245. ],
  1246. "scale": [
  1247. {},
  1248. { "time": 0.1667, "x": 1.413 },
  1249. { "time": 0.2333 },
  1250. { "time": 0.3, "x": 0.155 },
  1251. { "time": 0.4667 }
  1252. ]
  1253. },
  1254. "2youshou1": {
  1255. "rotate": [
  1256. { "angle": 1.39 }
  1257. ],
  1258. "translate": [
  1259. {},
  1260. { "time": 0.1667, "x": 2.91, "y": 0.19 },
  1261. { "time": 0.2333, "x": 1.39, "y": -3.71 },
  1262. { "time": 0.4667 }
  1263. ]
  1264. },
  1265. "2tui2": {
  1266. "rotate": [
  1267. {},
  1268. { "time": 0.1667, "angle": 7.24 },
  1269. { "time": 0.2333, "angle": 11.15 },
  1270. { "time": 0.3333, "angle": 7.34 },
  1271. { "time": 0.4667 }
  1272. ],
  1273. "translate": [
  1274. {},
  1275. { "time": 0.1667, "x": -4.44, "y": -0.87 },
  1276. { "time": 0.2333, "x": -4.57, "y": -0.6 },
  1277. { "time": 0.3333, "x": -6.23, "y": -1.88 },
  1278. { "time": 0.4667 }
  1279. ],
  1280. "scale": [
  1281. { "time": 0.1667 },
  1282. { "time": 0.2333, "x": 1.043, "y": 1.105 },
  1283. { "time": 0.3333, "x": 0.92, "y": 1.141 },
  1284. { "time": 0.4667 }
  1285. ],
  1286. "shear": [
  1287. {},
  1288. { "time": 0.1667, "y": -5.24 },
  1289. { "time": 0.4667 }
  1290. ]
  1291. },
  1292. "2qiang2": {
  1293. "translate": [
  1294. {},
  1295. { "time": 0.1667, "x": 8.43, "y": 0.85 },
  1296. { "time": 0.2333, "x": 26.86, "y": 13.18 },
  1297. { "time": 0.4667 }
  1298. ]
  1299. }
  1300. },
  1301. "events": [
  1302. { "time": 0.1667, "name": "effect" },
  1303. { "time": 0.2333, "name": "fire" }
  1304. ]
  1305. },
  1306. "atk_left": {
  1307. "slots": {
  1308. "1body": {
  1309. "attachment": [
  1310. { "name": null }
  1311. ]
  1312. },
  1313. "1er1": {
  1314. "attachment": [
  1315. { "name": null }
  1316. ]
  1317. },
  1318. "1er2": {
  1319. "attachment": [
  1320. { "name": null }
  1321. ]
  1322. },
  1323. "1fa": {
  1324. "attachment": [
  1325. { "name": null }
  1326. ]
  1327. },
  1328. "1shou1": {
  1329. "attachment": [
  1330. { "name": null }
  1331. ]
  1332. },
  1333. "1shou2": {
  1334. "attachment": [
  1335. { "name": null }
  1336. ]
  1337. },
  1338. "1tou": {
  1339. "attachment": [
  1340. { "name": null }
  1341. ]
  1342. },
  1343. "1tui1": {
  1344. "attachment": [
  1345. { "name": null }
  1346. ],
  1347. "attachment": [
  1348. { "name": null }
  1349. ]
  1350. },
  1351. "1tui2": {
  1352. "attachment": [
  1353. { "name": null }
  1354. ],
  1355. "attachment": [
  1356. { "name": null }
  1357. ]
  1358. },
  1359. "1wei1": {
  1360. "attachment": [
  1361. { "name": null }
  1362. ]
  1363. },
  1364. "1wei2": {
  1365. "attachment": [
  1366. { "name": null }
  1367. ]
  1368. },
  1369. "1wuqi": {
  1370. "attachment": [
  1371. { "name": null }
  1372. ]
  1373. },
  1374. "1yy": {
  1375. "attachment": [
  1376. { "name": null }
  1377. ]
  1378. },
  1379. "2body": {
  1380. "attachment": [
  1381. { "name": null }
  1382. ]
  1383. },
  1384. "2er1": {
  1385. "attachment": [
  1386. { "name": null }
  1387. ]
  1388. },
  1389. "2er2": {
  1390. "attachment": [
  1391. { "name": null }
  1392. ]
  1393. },
  1394. "2eye1": {
  1395. "attachment": [
  1396. { "name": null }
  1397. ]
  1398. },
  1399. "2eye2": {
  1400. "attachment": [
  1401. { "name": null }
  1402. ]
  1403. },
  1404. "2fa": {
  1405. "attachment": [
  1406. { "name": null }
  1407. ]
  1408. },
  1409. "2shou1": {
  1410. "attachment": [
  1411. { "name": null }
  1412. ]
  1413. },
  1414. "2shou2": {
  1415. "attachment": [
  1416. { "name": null }
  1417. ]
  1418. },
  1419. "2tou": {
  1420. "attachment": [
  1421. { "name": null }
  1422. ],
  1423. "attachment": [
  1424. { "name": null }
  1425. ]
  1426. },
  1427. "2tui1": {
  1428. "attachment": [
  1429. { "name": null }
  1430. ],
  1431. "attachment": [
  1432. { "name": null }
  1433. ]
  1434. },
  1435. "2tui2": {
  1436. "attachment": [
  1437. { "name": null }
  1438. ],
  1439. "attachment": [
  1440. { "name": null }
  1441. ]
  1442. },
  1443. "2wei": {
  1444. "attachment": [
  1445. { "name": null }
  1446. ]
  1447. },
  1448. "2wuqi": {
  1449. "attachment": [
  1450. { "name": null }
  1451. ]
  1452. },
  1453. "2yy": {
  1454. "attachment": [
  1455. { "name": null }
  1456. ]
  1457. },
  1458. "2zui": {
  1459. "attachment": [
  1460. { "name": null }
  1461. ]
  1462. },
  1463. "effect_right": {
  1464. "attachment": [
  1465. { "time": 0.2, "name": "qk_00" },
  1466. { "time": 0.2333, "name": "qk_01" },
  1467. { "time": 0.2667, "name": "qk_02" },
  1468. { "time": 0.3, "name": "qk_03" },
  1469. { "time": 0.3333, "name": "qk_04" },
  1470. { "time": 0.3667, "name": "qk_05" },
  1471. { "time": 0.4, "name": null }
  1472. ]
  1473. },
  1474. "effect_right2": {
  1475. "attachment": [
  1476. { "time": 0.2, "name": "qk_00" },
  1477. { "time": 0.2333, "name": "qk_01" },
  1478. { "time": 0.2667, "name": "qk_02" },
  1479. { "time": 0.3, "name": "qk_03" },
  1480. { "time": 0.3333, "name": "qk_04" },
  1481. { "time": 0.3667, "name": "qk_05" },
  1482. { "time": 0.4, "name": null }
  1483. ]
  1484. }
  1485. },
  1486. "bones": {
  1487. "3shenti": {
  1488. "rotate": [
  1489. { "curve": 0.25, "c3": 0.75 },
  1490. { "time": 0.1667, "angle": -3.31 },
  1491. { "time": 0.2333, "angle": 7.03 },
  1492. { "time": 0.3, "angle": 7.35 },
  1493. { "time": 0.4, "angle": 0.99 },
  1494. { "time": 0.4667 }
  1495. ],
  1496. "translate": [
  1497. { "curve": 0.25, "c3": 0.75 },
  1498. { "time": 0.1667, "x": 1.37, "y": -3.21 },
  1499. { "time": 0.2333, "x": -4.32, "y": 1.56 },
  1500. { "time": 0.3, "x": -2.29, "y": -3.05 },
  1501. { "time": 0.4, "x": -0.77, "y": -0.99 },
  1502. { "time": 0.4667 }
  1503. ],
  1504. "shear": [
  1505. { "curve": 0.25, "c3": 0.75 },
  1506. { "time": 0.1667, "y": 2.14 },
  1507. { "time": 0.2333, "y": -3.68 },
  1508. { "time": 0.3, "x": 3.22, "y": 7.17 },
  1509. { "time": 0.4, "x": 1.29, "y": -1.9 },
  1510. { "time": 0.4667 }
  1511. ]
  1512. },
  1513. "3qiang": {
  1514. "rotate": [
  1515. { "angle": 3.1, "curve": 0.25, "c3": 0.75 },
  1516. { "time": 0.1667, "angle": 0.76 },
  1517. { "time": 0.2333, "angle": 4.79 },
  1518. { "time": 0.3667, "angle": -2.52 },
  1519. { "time": 0.4667, "angle": 3.1 }
  1520. ],
  1521. "translate": [
  1522. { "x": -2.29, "y": -0.76, "curve": 0.25, "c3": 0.75 },
  1523. { "time": 0.1667, "x": -2.32, "y": 0.34 },
  1524. { "time": 0.2333, "x": -30.84, "y": 6.17 },
  1525. { "time": 0.3, "x": -32.11, "y": -7.29 },
  1526. { "time": 0.3667, "x": -2.38, "y": -11.45 },
  1527. { "time": 0.4667, "x": -2.29, "y": -0.76 }
  1528. ],
  1529. "scale": [
  1530. { "time": 0.1667 },
  1531. { "time": 0.2333, "x": 0.843, "y": 1.259 },
  1532. { "time": 0.3, "x": 0.968, "y": 0.966 },
  1533. { "time": 0.4667 }
  1534. ],
  1535. "shear": [
  1536. { "curve": 0.25, "c3": 0.75 },
  1537. { "time": 0.1667, "y": 8.23 },
  1538. { "time": 0.2333, "y": 6.43 },
  1539. { "time": 0.3, "y": 12.05 },
  1540. { "time": 0.4667 }
  1541. ]
  1542. },
  1543. "3tou": {
  1544. "rotate": [
  1545. { "angle": -2.48, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
  1546. { "time": 0.1333, "angle": -9.3 },
  1547. { "time": 0.2333, "angle": -15.38 },
  1548. { "time": 0.3333, "angle": 2.11 },
  1549. { "time": 0.4667, "angle": -2.48 }
  1550. ],
  1551. "translate": [
  1552. { "x": 2.81, "y": -1.47, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
  1553. { "time": 0.1333, "x": -1.48, "y": -2.26 },
  1554. { "time": 0.2333, "x": 2.08, "y": 5.9 },
  1555. { "time": 0.3333, "x": 3.98, "y": 2.06 },
  1556. { "time": 0.4, "x": 0.02, "y": -2.34 },
  1557. { "time": 0.4667, "x": 2.81, "y": -1.47 }
  1558. ],
  1559. "scale": [
  1560. { "x": 0.999, "y": 0.998, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
  1561. { "time": 0.1333, "x": 0.997, "y": 1.012 },
  1562. { "time": 0.2333, "x": 1.038, "y": 0.843 },
  1563. { "time": 0.3333, "x": 1.034, "y": 0.998 },
  1564. { "time": 0.4667, "x": 0.999, "y": 0.998 }
  1565. ],
  1566. "shear": [
  1567. {},
  1568. { "time": 0.1333, "y": 5.05 },
  1569. { "time": 0.2333, "y": 5.06 },
  1570. { "time": 0.3333, "x": 4.94, "y": 4.28 },
  1571. { "time": 0.4667 }
  1572. ]
  1573. },
  1574. "3tou2": {
  1575. "rotate": [
  1576. { "angle": -0.7, "curve": 0.382, "c2": 0.55, "c3": 0.741 },
  1577. { "time": 0.1667, "angle": 5.29 },
  1578. { "time": 0.2333, "angle": -13.12 },
  1579. { "time": 0.3667, "angle": -3.33 },
  1580. { "time": 0.4667, "angle": -0.7 }
  1581. ],
  1582. "translate": [
  1583. { "x": 0.02, "y": 1.44, "curve": 0.382, "c2": 0.55, "c3": 0.741 },
  1584. { "time": 0.1667, "x": -0.72, "y": 6.01 },
  1585. { "time": 0.2333, "x": 4.42, "y": -1.61 },
  1586. { "time": 0.3667, "x": 1.4, "y": 16.24 },
  1587. { "time": 0.4667, "x": 0.02, "y": 1.44 }
  1588. ],
  1589. "scale": [
  1590. { "x": 1.073, "y": 0.983, "curve": 0.382, "c2": 0.55, "c3": 0.741 },
  1591. { "time": 0.1667 },
  1592. { "time": 0.2333, "y": 0.823 },
  1593. { "time": 0.4667, "x": 1.073, "y": 0.983 }
  1594. ],
  1595. "shear": [
  1596. { "time": 0.1667 },
  1597. { "time": 0.2333, "x": -2.02, "y": -12.69 },
  1598. { "time": 0.4667 }
  1599. ]
  1600. },
  1601. "3erduo": {
  1602. "rotate": [
  1603. { "curve": 0.25, "c3": 0.75 },
  1604. { "time": 0.1667, "angle": 12.61 },
  1605. { "time": 0.2333, "angle": -6.75 },
  1606. { "time": 0.3, "angle": -9.08 },
  1607. { "time": 0.4, "angle": 18.42 },
  1608. { "time": 0.4667 }
  1609. ],
  1610. "translate": [
  1611. { "curve": 0.25, "c3": 0.75 },
  1612. { "time": 0.1667, "x": -3.82, "y": 2.51 },
  1613. { "time": 0.2333, "x": -3.75, "y": 7.05 },
  1614. { "time": 0.3, "x": 0.63, "y": 4.95 },
  1615. { "time": 0.4, "x": -1.49, "y": 3.43 },
  1616. { "time": 0.4667 }
  1617. ],
  1618. "scale": [
  1619. {},
  1620. { "time": 0.1667, "x": 1.165 },
  1621. { "time": 0.2333, "x": 1.104, "y": 1.047 },
  1622. { "time": 0.3, "x": 1.125, "y": 0.989 },
  1623. { "time": 0.4667 }
  1624. ]
  1625. },
  1626. "3tui2": {
  1627. "rotate": [
  1628. { "curve": 0.25, "c3": 0.75 },
  1629. { "time": 0.1667, "angle": -2.86 },
  1630. { "time": 0.2333, "angle": 1.86 },
  1631. { "time": 0.3667, "angle": 11.21 },
  1632. { "time": 0.4667 }
  1633. ],
  1634. "translate": [
  1635. { "curve": 0.25, "c3": 0.75 },
  1636. { "time": 0.1667, "x": 6.65, "y": -0.55 },
  1637. { "time": 0.2333, "x": -10.48, "y": 0.59 },
  1638. { "time": 0.3667, "x": -12.38, "y": -0.37 },
  1639. { "time": 0.4667 }
  1640. ],
  1641. "scale": [
  1642. { "curve": 0.25, "c3": 0.75 },
  1643. { "time": 0.1667, "x": 1.044, "y": 1.056 },
  1644. { "time": 0.2333, "x": 1.02, "y": 1.109 },
  1645. { "time": 0.3667, "x": 1.009, "y": 1.016 },
  1646. { "time": 0.4667 }
  1647. ],
  1648. "shear": [
  1649. { "curve": 0.25, "c3": 0.75 },
  1650. { "time": 0.1667, "x": -9.65 },
  1651. { "time": 0.2333, "x": 15.64, "y": 8.94 },
  1652. { "time": 0.3667, "x": 6.7, "y": -4.77 },
  1653. { "time": 0.4667 }
  1654. ]
  1655. },
  1656. "3tui1": {
  1657. "rotate": [
  1658. { "curve": 0.25, "c3": 0.75 },
  1659. { "time": 0.1667, "angle": -8.94 },
  1660. { "time": 0.2333, "angle": 11.72 },
  1661. { "time": 0.3, "angle": 9.77 },
  1662. { "time": 0.4667 }
  1663. ],
  1664. "translate": [
  1665. { "curve": 0.25, "c3": 0.75 },
  1666. { "time": 0.1667, "x": 4.82, "y": -0.53 },
  1667. { "time": 0.2333, "x": -5.7, "y": -0.14 },
  1668. { "time": 0.3, "x": -4.59, "y": 0.07 },
  1669. { "time": 0.4667 }
  1670. ],
  1671. "scale": [
  1672. { "curve": 0.25, "c3": 0.75 },
  1673. { "time": 0.1667, "x": 0.987, "y": 1.048 },
  1674. { "time": 0.2333, "x": 1.039, "y": 1.054 },
  1675. { "time": 0.3, "x": 1.061, "y": 1.057 },
  1676. { "time": 0.4667 }
  1677. ],
  1678. "shear": [
  1679. { "curve": 0.25, "c3": 0.75 },
  1680. { "time": 0.1667, "y": 5.71 },
  1681. { "time": 0.2333, "y": -10.88 },
  1682. { "time": 0.3, "y": -5.55 },
  1683. { "time": 0.4667 }
  1684. ]
  1685. },
  1686. "bone_right": {
  1687. "translate": [
  1688. { "x": 450.04, "y": 0.09 }
  1689. ],
  1690. "scale": [
  1691. { "x": -1 }
  1692. ]
  1693. },
  1694. "bone_down": {
  1695. "translate": [
  1696. { "x": -608.55, "y": -0.51 }
  1697. ]
  1698. },
  1699. "3erduo2": {
  1700. "rotate": [
  1701. { "curve": 0.25, "c3": 0.75 },
  1702. { "time": 0.1667, "angle": 12.61 },
  1703. { "time": 0.2333, "angle": -6.75 },
  1704. { "time": 0.3, "angle": -9.08 },
  1705. { "time": 0.4, "angle": 18.42 },
  1706. { "time": 0.4667 }
  1707. ],
  1708. "translate": [
  1709. { "curve": 0.25, "c3": 0.75 },
  1710. { "time": 0.1667, "x": -3.82, "y": 2.51 },
  1711. { "time": 0.2333, "x": -3.75, "y": 7.05 },
  1712. { "time": 0.3, "x": 0.63, "y": 4.95 },
  1713. { "time": 0.4, "x": -1.49, "y": 3.43 },
  1714. { "time": 0.4667 }
  1715. ],
  1716. "scale": [
  1717. {},
  1718. { "time": 0.1667, "x": 1.165 },
  1719. { "time": 0.2333, "x": 1.104, "y": 1.047 },
  1720. { "time": 0.3, "x": 1.125, "y": 0.989 },
  1721. { "time": 0.4667 }
  1722. ]
  1723. },
  1724. "3tou6": {
  1725. "rotate": [
  1726. { "time": 0.2 },
  1727. { "time": 0.3, "angle": -4.36 },
  1728. { "time": 0.4667 }
  1729. ],
  1730. "scale": [
  1731. { "time": 0.2 },
  1732. { "time": 0.3, "x": 0.091 },
  1733. { "time": 0.4667 }
  1734. ]
  1735. },
  1736. "3shou1": {
  1737. "rotate": [
  1738. { "angle": 5.51, "curve": 0.337, "c2": 0.35, "c3": 0.758 },
  1739. { "time": 0.1667, "angle": 11.31, "curve": 0.25, "c3": 0.75 },
  1740. { "time": 0.2667, "angle": -13.36, "curve": 0.25, "c3": 0.75 },
  1741. { "time": 0.4667, "angle": 5.51 }
  1742. ]
  1743. },
  1744. "3shenti2": {
  1745. "rotate": [
  1746. { "angle": 4.77, "curve": 0.277, "c2": 0.12, "c3": 0.754 },
  1747. { "time": 0.1667, "angle": 25.47, "curve": 0.265, "c3": 0.618, "c4": 0.43 },
  1748. { "time": 0.2333, "angle": 10.45, "curve": 0.325, "c2": 0.31, "c3": 0.675, "c4": 0.69 },
  1749. { "time": 0.3, "angle": -18.35, "curve": 0.382, "c2": 0.57, "c3": 0.735 },
  1750. { "time": 0.3667, "angle": -17.69, "curve": 0.25, "c3": 0.75 },
  1751. { "time": 0.4667, "angle": 4.77 }
  1752. ]
  1753. },
  1754. "3shenti3": {
  1755. "rotate": [
  1756. { "angle": 4.04, "curve": 0.345, "c2": 0.41, "c3": 0.679, "c4": 0.74 },
  1757. { "time": 0.0667, "angle": -3.34, "curve": 0.355, "c2": 0.65, "c3": 0.69 },
  1758. { "time": 0.1667, "angle": -1.16, "curve": 0.38, "c2": 0.53, "c3": 0.745 },
  1759. { "time": 0.2333, "angle": 18.37, "curve": 0.25, "c3": 0.625, "c4": 0.5 },
  1760. { "time": 0.3, "angle": 9.91, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
  1761. { "time": 0.3667, "angle": -18.8, "curve": 0.25, "c3": 0.75 },
  1762. { "time": 0.4667, "angle": 4.04 }
  1763. ],
  1764. "translate": [
  1765. { "x": 0.52, "y": 2.06 }
  1766. ]
  1767. },
  1768. "3shenti4": {
  1769. "rotate": [
  1770. { "angle": 0.7, "curve": 0.382, "c2": 0.57, "c3": 0.735 },
  1771. { "time": 0.1667, "angle": -22.53, "curve": 0.38, "c2": 0.53, "c3": 0.745 },
  1772. { "time": 0.2333, "angle": 32.49, "curve": 0.282, "c3": 0.624, "c4": 0.39 },
  1773. { "time": 0.3, "angle": 27.44, "curve": 0.312, "c2": 0.26, "c3": 0.652, "c4": 0.62 },
  1774. { "time": 0.3667, "angle": -34.33, "curve": 0.367, "c2": 0.46, "c3": 0.754 },
  1775. { "time": 0.4667, "angle": 0.7 }
  1776. ],
  1777. "translate": [
  1778. { "x": 1.68, "y": 0.75 }
  1779. ]
  1780. },
  1781. "3shenti5": {
  1782. "rotate": [
  1783. { "angle": 4.77, "curve": 0.277, "c2": 0.12, "c3": 0.754 },
  1784. { "time": 0.1667, "angle": 22.4, "curve": 0.25, "c3": 0.625, "c4": 0.5 },
  1785. { "time": 0.2333, "angle": -3.6, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
  1786. { "time": 0.3, "angle": -22.3, "curve": 0.258, "c3": 0.619, "c4": 0.45 },
  1787. { "time": 0.3667, "angle": -20.66, "curve": 0.363, "c2": 0.44, "c3": 0.755 },
  1788. { "time": 0.4667, "angle": 4.77 }
  1789. ]
  1790. },
  1791. "3shenti6": {
  1792. "rotate": [
  1793. { "angle": 4.04, "curve": 0.366, "c2": 0.63, "c3": 0.703 },
  1794. { "time": 0.0667, "angle": -8.73, "curve": 0.363, "c2": 0.44, "c3": 0.755 },
  1795. { "time": 0.1667, "angle": 1.02, "curve": 0.25, "c3": 0.625, "c4": 0.5 },
  1796. { "time": 0.2333, "angle": 9.4, "curve": 0.351, "c2": 0.39, "c3": 0.701, "c4": 0.78 },
  1797. { "time": 0.3, "angle": 7.64, "curve": 0.371, "c2": 0.63, "c3": 0.71 },
  1798. { "time": 0.3667, "angle": -27.77, "curve": 0.32, "c2": 0.29, "c3": 0.757 },
  1799. { "time": 0.4667, "angle": 4.04 }
  1800. ],
  1801. "translate": [
  1802. { "x": 0.61, "y": 2.03 }
  1803. ]
  1804. },
  1805. "3shenti7": {
  1806. "rotate": [
  1807. { "angle": 0.7, "curve": 0.382, "c2": 0.57, "c3": 0.735 },
  1808. { "time": 0.0667, "angle": -11.74, "curve": 0.363, "c2": 0.44, "c3": 0.755 },
  1809. { "time": 0.1667, "angle": -16.91, "curve": 0.25, "c3": 0.625, "c4": 0.5 },
  1810. { "time": 0.2333, "angle": 22.85, "curve": 0.351, "c2": 0.39, "c3": 0.701, "c4": 0.78 },
  1811. { "time": 0.3, "angle": 18.46, "curve": 0.371, "c2": 0.63, "c3": 0.71 },
  1812. { "time": 0.3667, "angle": -10.7, "curve": 0.25, "c3": 0.75 },
  1813. { "time": 0.4667, "angle": 0.7 }
  1814. ],
  1815. "translate": [
  1816. { "x": 1.71, "y": 0.68 }
  1817. ]
  1818. },
  1819. "3qiang2": {
  1820. "translate": [
  1821. {},
  1822. { "time": 0.1667, "x": 12.8, "y": 6.18 },
  1823. { "time": 0.2333, "x": 0.75, "y": 3.24 },
  1824. { "time": 0.3, "x": 21.4, "y": -4.77 },
  1825. { "time": 0.4667 }
  1826. ]
  1827. }
  1828. },
  1829. "events": [
  1830. { "time": 0.1667, "name": "effect" },
  1831. { "time": 0.2333, "name": "fire" }
  1832. ]
  1833. },
  1834. "atk_right": {
  1835. "slots": {
  1836. "1body": {
  1837. "attachment": [
  1838. { "name": null }
  1839. ]
  1840. },
  1841. "1er1": {
  1842. "attachment": [
  1843. { "name": null }
  1844. ]
  1845. },
  1846. "1er2": {
  1847. "attachment": [
  1848. { "name": null }
  1849. ]
  1850. },
  1851. "1fa": {
  1852. "attachment": [
  1853. { "name": null }
  1854. ]
  1855. },
  1856. "1shou1": {
  1857. "attachment": [
  1858. { "name": null }
  1859. ]
  1860. },
  1861. "1shou2": {
  1862. "attachment": [
  1863. { "name": null }
  1864. ]
  1865. },
  1866. "1tou": {
  1867. "attachment": [
  1868. { "name": null }
  1869. ]
  1870. },
  1871. "1tui1": {
  1872. "attachment": [
  1873. { "name": null }
  1874. ],
  1875. "attachment": [
  1876. { "name": null }
  1877. ]
  1878. },
  1879. "1tui2": {
  1880. "attachment": [
  1881. { "name": null }
  1882. ],
  1883. "attachment": [
  1884. { "name": null }
  1885. ]
  1886. },
  1887. "1wei1": {
  1888. "attachment": [
  1889. { "name": null }
  1890. ]
  1891. },
  1892. "1wei2": {
  1893. "attachment": [
  1894. { "name": null }
  1895. ]
  1896. },
  1897. "1wuqi": {
  1898. "attachment": [
  1899. { "name": null }
  1900. ]
  1901. },
  1902. "1yy": {
  1903. "attachment": [
  1904. { "name": null }
  1905. ]
  1906. },
  1907. "2body": {
  1908. "attachment": [
  1909. { "name": null }
  1910. ]
  1911. },
  1912. "2er1": {
  1913. "attachment": [
  1914. { "name": null }
  1915. ]
  1916. },
  1917. "2er2": {
  1918. "attachment": [
  1919. { "name": null }
  1920. ]
  1921. },
  1922. "2eye1": {
  1923. "attachment": [
  1924. { "name": null }
  1925. ]
  1926. },
  1927. "2eye2": {
  1928. "attachment": [
  1929. { "name": null }
  1930. ]
  1931. },
  1932. "2fa": {
  1933. "attachment": [
  1934. { "name": null }
  1935. ]
  1936. },
  1937. "2shou1": {
  1938. "attachment": [
  1939. { "name": null }
  1940. ]
  1941. },
  1942. "2shou2": {
  1943. "attachment": [
  1944. { "name": null }
  1945. ]
  1946. },
  1947. "2tou": {
  1948. "attachment": [
  1949. { "name": null }
  1950. ],
  1951. "attachment": [
  1952. { "name": null }
  1953. ]
  1954. },
  1955. "2tui1": {
  1956. "attachment": [
  1957. { "name": null }
  1958. ],
  1959. "attachment": [
  1960. { "name": null }
  1961. ]
  1962. },
  1963. "2tui2": {
  1964. "attachment": [
  1965. { "name": null }
  1966. ],
  1967. "attachment": [
  1968. { "name": null }
  1969. ]
  1970. },
  1971. "2wei": {
  1972. "attachment": [
  1973. { "name": null }
  1974. ]
  1975. },
  1976. "2wuqi": {
  1977. "attachment": [
  1978. { "name": null }
  1979. ]
  1980. },
  1981. "2yy": {
  1982. "attachment": [
  1983. { "name": null }
  1984. ]
  1985. },
  1986. "2zui": {
  1987. "attachment": [
  1988. { "name": null }
  1989. ]
  1990. },
  1991. "effect_right": {
  1992. "attachment": [
  1993. { "time": 0.2, "name": "qk_00" },
  1994. { "time": 0.2333, "name": "qk_01" },
  1995. { "time": 0.2667, "name": "qk_02" },
  1996. { "time": 0.3, "name": "qk_03" },
  1997. { "time": 0.3333, "name": "qk_04" },
  1998. { "time": 0.3667, "name": "qk_05" },
  1999. { "time": 0.4, "name": null }
  2000. ]
  2001. },
  2002. "effect_right2": {
  2003. "attachment": [
  2004. { "time": 0.2, "name": "qk_00" },
  2005. { "time": 0.2333, "name": "qk_01" },
  2006. { "time": 0.2667, "name": "qk_02" },
  2007. { "time": 0.3, "name": "qk_03" },
  2008. { "time": 0.3333, "name": "qk_04" },
  2009. { "time": 0.3667, "name": "qk_05" },
  2010. { "time": 0.4, "name": null }
  2011. ]
  2012. }
  2013. },
  2014. "bones": {
  2015. "3shenti": {
  2016. "rotate": [
  2017. { "curve": 0.25, "c3": 0.75 },
  2018. { "time": 0.1667, "angle": -3.31 },
  2019. { "time": 0.2333, "angle": 7.03 },
  2020. { "time": 0.3, "angle": 7.35 },
  2021. { "time": 0.4, "angle": 0.99 },
  2022. { "time": 0.4667 }
  2023. ],
  2024. "translate": [
  2025. { "curve": 0.25, "c3": 0.75 },
  2026. { "time": 0.1667, "x": 1.37, "y": -3.21 },
  2027. { "time": 0.2333, "x": -4.32, "y": 1.56 },
  2028. { "time": 0.3, "x": -2.29, "y": -3.05 },
  2029. { "time": 0.4, "x": -0.77, "y": -0.99 },
  2030. { "time": 0.4667 }
  2031. ],
  2032. "shear": [
  2033. { "curve": 0.25, "c3": 0.75 },
  2034. { "time": 0.1667, "y": 2.14 },
  2035. { "time": 0.2333, "y": -3.68 },
  2036. { "time": 0.3, "x": 3.22, "y": 7.17 },
  2037. { "time": 0.4, "x": 1.29, "y": -1.9 },
  2038. { "time": 0.4667 }
  2039. ]
  2040. },
  2041. "3qiang": {
  2042. "rotate": [
  2043. { "angle": 3.1, "curve": 0.25, "c3": 0.75 },
  2044. { "time": 0.1667, "angle": 0.76 },
  2045. { "time": 0.2333, "angle": 4.79 },
  2046. { "time": 0.3667, "angle": -2.52 },
  2047. { "time": 0.4667, "angle": 3.1 }
  2048. ],
  2049. "translate": [
  2050. { "x": -2.29, "y": -0.76, "curve": 0.25, "c3": 0.75 },
  2051. { "time": 0.1667, "x": -2.32, "y": 0.34 },
  2052. { "time": 0.2333, "x": -30.84, "y": 6.17 },
  2053. { "time": 0.3, "x": -32.11, "y": -7.29 },
  2054. { "time": 0.3667, "x": -2.38, "y": -11.45 },
  2055. { "time": 0.4667, "x": -2.29, "y": -0.76 }
  2056. ],
  2057. "scale": [
  2058. { "time": 0.1667 },
  2059. { "time": 0.2333, "x": 0.843, "y": 1.259 },
  2060. { "time": 0.3, "x": 0.968, "y": 0.966 },
  2061. { "time": 0.4667 }
  2062. ],
  2063. "shear": [
  2064. { "curve": 0.25, "c3": 0.75 },
  2065. { "time": 0.1667, "y": 8.23 },
  2066. { "time": 0.2333, "y": 6.43 },
  2067. { "time": 0.3, "y": 12.05 },
  2068. { "time": 0.4667 }
  2069. ]
  2070. },
  2071. "3tou": {
  2072. "rotate": [
  2073. { "angle": -2.48, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
  2074. { "time": 0.1333, "angle": -9.3 },
  2075. { "time": 0.2333, "angle": -15.38 },
  2076. { "time": 0.3333, "angle": 2.11 },
  2077. { "time": 0.4667, "angle": -2.48 }
  2078. ],
  2079. "translate": [
  2080. { "x": 2.81, "y": -1.47, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
  2081. { "time": 0.1333, "x": -1.48, "y": -2.26 },
  2082. { "time": 0.2333, "x": 2.08, "y": 5.9 },
  2083. { "time": 0.3333, "x": 3.98, "y": 2.06 },
  2084. { "time": 0.4, "x": 0.02, "y": -2.34 },
  2085. { "time": 0.4667, "x": 2.81, "y": -1.47 }
  2086. ],
  2087. "scale": [
  2088. { "x": 0.999, "y": 0.998, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
  2089. { "time": 0.1333, "x": 0.997, "y": 1.012 },
  2090. { "time": 0.2333, "x": 1.038, "y": 0.843 },
  2091. { "time": 0.3333, "x": 1.034, "y": 0.998 },
  2092. { "time": 0.4667, "x": 0.999, "y": 0.998 }
  2093. ],
  2094. "shear": [
  2095. {},
  2096. { "time": 0.1333, "y": 5.05 },
  2097. { "time": 0.2333, "y": 5.06 },
  2098. { "time": 0.3333, "x": 4.94, "y": 4.28 },
  2099. { "time": 0.4667 }
  2100. ]
  2101. },
  2102. "3tou2": {
  2103. "rotate": [
  2104. { "angle": -0.7, "curve": 0.382, "c2": 0.55, "c3": 0.741 },
  2105. { "time": 0.1667, "angle": 5.29 },
  2106. { "time": 0.2333, "angle": -13.12 },
  2107. { "time": 0.3667, "angle": -3.33 },
  2108. { "time": 0.4667, "angle": -0.7 }
  2109. ],
  2110. "translate": [
  2111. { "x": 0.02, "y": 1.44, "curve": 0.382, "c2": 0.55, "c3": 0.741 },
  2112. { "time": 0.1667, "x": -0.72, "y": 6.01 },
  2113. { "time": 0.2333, "x": 4.42, "y": -1.61 },
  2114. { "time": 0.3667, "x": 1.4, "y": 16.24 },
  2115. { "time": 0.4667, "x": 0.02, "y": 1.44 }
  2116. ],
  2117. "scale": [
  2118. { "x": 1.073, "y": 0.983, "curve": 0.382, "c2": 0.55, "c3": 0.741 },
  2119. { "time": 0.1667 },
  2120. { "time": 0.2333, "y": 0.823 },
  2121. { "time": 0.4667, "x": 1.073, "y": 0.983 }
  2122. ],
  2123. "shear": [
  2124. { "time": 0.1667 },
  2125. { "time": 0.2333, "x": -2.02, "y": -12.69 },
  2126. { "time": 0.4667 }
  2127. ]
  2128. },
  2129. "3erduo": {
  2130. "rotate": [
  2131. { "curve": 0.25, "c3": 0.75 },
  2132. { "time": 0.1667, "angle": 12.61 },
  2133. { "time": 0.2333, "angle": -6.75 },
  2134. { "time": 0.3, "angle": -9.08 },
  2135. { "time": 0.4, "angle": 18.42 },
  2136. { "time": 0.4667 }
  2137. ],
  2138. "translate": [
  2139. { "curve": 0.25, "c3": 0.75 },
  2140. { "time": 0.1667, "x": -3.82, "y": 2.51 },
  2141. { "time": 0.2333, "x": -3.75, "y": 7.05 },
  2142. { "time": 0.3, "x": 0.63, "y": 4.95 },
  2143. { "time": 0.4, "x": -1.49, "y": 3.43 },
  2144. { "time": 0.4667 }
  2145. ],
  2146. "scale": [
  2147. {},
  2148. { "time": 0.1667, "x": 1.165 },
  2149. { "time": 0.2333, "x": 1.104, "y": 1.047 },
  2150. { "time": 0.3, "x": 1.125, "y": 0.989 },
  2151. { "time": 0.4667 }
  2152. ]
  2153. },
  2154. "3tui2": {
  2155. "rotate": [
  2156. { "curve": 0.25, "c3": 0.75 },
  2157. { "time": 0.1667, "angle": -2.86 },
  2158. { "time": 0.2333, "angle": 1.86 },
  2159. { "time": 0.3667, "angle": 11.21 },
  2160. { "time": 0.4667 }
  2161. ],
  2162. "translate": [
  2163. { "curve": 0.25, "c3": 0.75 },
  2164. { "time": 0.1667, "x": 6.65, "y": -0.55 },
  2165. { "time": 0.2333, "x": -10.48, "y": 0.59 },
  2166. { "time": 0.3667, "x": -12.38, "y": -0.37 },
  2167. { "time": 0.4667 }
  2168. ],
  2169. "scale": [
  2170. { "curve": 0.25, "c3": 0.75 },
  2171. { "time": 0.1667, "x": 1.044, "y": 1.056 },
  2172. { "time": 0.2333, "x": 1.02, "y": 1.109 },
  2173. { "time": 0.3667, "x": 1.009, "y": 1.016 },
  2174. { "time": 0.4667 }
  2175. ],
  2176. "shear": [
  2177. { "curve": 0.25, "c3": 0.75 },
  2178. { "time": 0.1667, "x": -9.65 },
  2179. { "time": 0.2333, "x": 15.64, "y": 8.94 },
  2180. { "time": 0.3667, "x": 6.7, "y": -4.77 },
  2181. { "time": 0.4667 }
  2182. ]
  2183. },
  2184. "3tui1": {
  2185. "rotate": [
  2186. { "curve": 0.25, "c3": 0.75 },
  2187. { "time": 0.1667, "angle": -8.94 },
  2188. { "time": 0.2333, "angle": 11.72 },
  2189. { "time": 0.3, "angle": 9.77 },
  2190. { "time": 0.4667 }
  2191. ],
  2192. "translate": [
  2193. { "curve": 0.25, "c3": 0.75 },
  2194. { "time": 0.1667, "x": 4.82, "y": -0.53 },
  2195. { "time": 0.2333, "x": -5.7, "y": -0.14 },
  2196. { "time": 0.3, "x": -4.59, "y": 0.07 },
  2197. { "time": 0.4667 }
  2198. ],
  2199. "scale": [
  2200. { "curve": 0.25, "c3": 0.75 },
  2201. { "time": 0.1667, "x": 0.987, "y": 1.048 },
  2202. { "time": 0.2333, "x": 1.039, "y": 1.054 },
  2203. { "time": 0.3, "x": 1.061, "y": 1.057 },
  2204. { "time": 0.4667 }
  2205. ],
  2206. "shear": [
  2207. { "curve": 0.25, "c3": 0.75 },
  2208. { "time": 0.1667, "y": 5.71 },
  2209. { "time": 0.2333, "y": -10.88 },
  2210. { "time": 0.3, "y": -5.55 },
  2211. { "time": 0.4667 }
  2212. ]
  2213. },
  2214. "bone_right": {
  2215. "translate": [
  2216. { "x": 450.04, "y": 0.09 }
  2217. ]
  2218. },
  2219. "bone_down": {
  2220. "translate": [
  2221. { "x": -608.55, "y": -0.51 }
  2222. ]
  2223. },
  2224. "3erduo2": {
  2225. "rotate": [
  2226. { "curve": 0.25, "c3": 0.75 },
  2227. { "time": 0.1667, "angle": 12.61 },
  2228. { "time": 0.2333, "angle": -6.75 },
  2229. { "time": 0.3, "angle": -9.08 },
  2230. { "time": 0.4, "angle": 18.42 },
  2231. { "time": 0.4667 }
  2232. ],
  2233. "translate": [
  2234. { "curve": 0.25, "c3": 0.75 },
  2235. { "time": 0.1667, "x": -3.82, "y": 2.51 },
  2236. { "time": 0.2333, "x": -3.75, "y": 7.05 },
  2237. { "time": 0.3, "x": 0.63, "y": 4.95 },
  2238. { "time": 0.4, "x": -1.49, "y": 3.43 },
  2239. { "time": 0.4667 }
  2240. ],
  2241. "scale": [
  2242. {},
  2243. { "time": 0.1667, "x": 1.165 },
  2244. { "time": 0.2333, "x": 1.104, "y": 1.047 },
  2245. { "time": 0.3, "x": 1.125, "y": 0.989 },
  2246. { "time": 0.4667 }
  2247. ]
  2248. },
  2249. "3tou6": {
  2250. "rotate": [
  2251. { "time": 0.2 },
  2252. { "time": 0.3, "angle": -4.36 },
  2253. { "time": 0.4667 }
  2254. ],
  2255. "scale": [
  2256. { "time": 0.2 },
  2257. { "time": 0.3, "x": 0.091 },
  2258. { "time": 0.4667 }
  2259. ]
  2260. },
  2261. "3shenti2": {
  2262. "rotate": [
  2263. { "angle": 4.77, "curve": 0.277, "c2": 0.12, "c3": 0.754 },
  2264. { "time": 0.1667, "angle": 25.47, "curve": 0.265, "c3": 0.618, "c4": 0.43 },
  2265. { "time": 0.2333, "angle": 10.45, "curve": 0.325, "c2": 0.31, "c3": 0.675, "c4": 0.69 },
  2266. { "time": 0.3, "angle": -18.35, "curve": 0.382, "c2": 0.57, "c3": 0.735 },
  2267. { "time": 0.3667, "angle": -17.69, "curve": 0.25, "c3": 0.75 },
  2268. { "time": 0.4667, "angle": 4.77 }
  2269. ]
  2270. },
  2271. "3shenti3": {
  2272. "rotate": [
  2273. { "angle": 4.04, "curve": 0.345, "c2": 0.41, "c3": 0.679, "c4": 0.74 },
  2274. { "time": 0.0667, "angle": -3.34, "curve": 0.355, "c2": 0.65, "c3": 0.69 },
  2275. { "time": 0.1667, "angle": -1.16, "curve": 0.38, "c2": 0.53, "c3": 0.745 },
  2276. { "time": 0.2333, "angle": 18.37, "curve": 0.25, "c3": 0.625, "c4": 0.5 },
  2277. { "time": 0.3, "angle": 9.91, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
  2278. { "time": 0.3667, "angle": -18.8, "curve": 0.25, "c3": 0.75 },
  2279. { "time": 0.4667, "angle": 4.04 }
  2280. ],
  2281. "translate": [
  2282. { "x": 0.52, "y": 2.06 }
  2283. ]
  2284. },
  2285. "3shenti4": {
  2286. "rotate": [
  2287. { "angle": 0.7, "curve": 0.382, "c2": 0.57, "c3": 0.735 },
  2288. { "time": 0.1667, "angle": -22.53, "curve": 0.38, "c2": 0.53, "c3": 0.745 },
  2289. { "time": 0.2333, "angle": 32.49, "curve": 0.282, "c3": 0.624, "c4": 0.39 },
  2290. { "time": 0.3, "angle": 27.44, "curve": 0.312, "c2": 0.26, "c3": 0.652, "c4": 0.62 },
  2291. { "time": 0.3667, "angle": -34.33, "curve": 0.367, "c2": 0.46, "c3": 0.754 },
  2292. { "time": 0.4667, "angle": 0.7 }
  2293. ],
  2294. "translate": [
  2295. { "x": 1.68, "y": 0.75 }
  2296. ]
  2297. },
  2298. "3shenti5": {
  2299. "rotate": [
  2300. { "angle": 4.77, "curve": 0.277, "c2": 0.12, "c3": 0.754 },
  2301. { "time": 0.1667, "angle": 22.4, "curve": 0.25, "c3": 0.625, "c4": 0.5 },
  2302. { "time": 0.2333, "angle": -3.6, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
  2303. { "time": 0.3, "angle": -22.3, "curve": 0.258, "c3": 0.619, "c4": 0.45 },
  2304. { "time": 0.3667, "angle": -20.66, "curve": 0.363, "c2": 0.44, "c3": 0.755 },
  2305. { "time": 0.4667, "angle": 4.77 }
  2306. ]
  2307. },
  2308. "3shenti6": {
  2309. "rotate": [
  2310. { "angle": 4.04, "curve": 0.366, "c2": 0.63, "c3": 0.703 },
  2311. { "time": 0.0667, "angle": -8.73, "curve": 0.363, "c2": 0.44, "c3": 0.755 },
  2312. { "time": 0.1667, "angle": 1.02, "curve": 0.25, "c3": 0.625, "c4": 0.5 },
  2313. { "time": 0.2333, "angle": 9.4, "curve": 0.351, "c2": 0.39, "c3": 0.701, "c4": 0.78 },
  2314. { "time": 0.3, "angle": 7.64, "curve": 0.371, "c2": 0.63, "c3": 0.71 },
  2315. { "time": 0.3667, "angle": -27.77, "curve": 0.32, "c2": 0.29, "c3": 0.757 },
  2316. { "time": 0.4667, "angle": 4.04 }
  2317. ],
  2318. "translate": [
  2319. { "x": 0.61, "y": 2.03 }
  2320. ]
  2321. },
  2322. "3shenti7": {
  2323. "rotate": [
  2324. { "angle": 0.7, "curve": 0.382, "c2": 0.57, "c3": 0.735 },
  2325. { "time": 0.0667, "angle": -11.74, "curve": 0.363, "c2": 0.44, "c3": 0.755 },
  2326. { "time": 0.1667, "angle": -16.91, "curve": 0.25, "c3": 0.625, "c4": 0.5 },
  2327. { "time": 0.2333, "angle": 22.85, "curve": 0.351, "c2": 0.39, "c3": 0.701, "c4": 0.78 },
  2328. { "time": 0.3, "angle": 18.46, "curve": 0.371, "c2": 0.63, "c3": 0.71 },
  2329. { "time": 0.3667, "angle": -10.7, "curve": 0.25, "c3": 0.75 },
  2330. { "time": 0.4667, "angle": 0.7 }
  2331. ],
  2332. "translate": [
  2333. { "x": 1.71, "y": 0.68 }
  2334. ]
  2335. },
  2336. "3qiang2": {
  2337. "translate": [
  2338. {},
  2339. { "time": 0.1667, "x": 12.8, "y": 6.18 },
  2340. { "time": 0.2333, "x": 0.75, "y": 3.24 },
  2341. { "time": 0.3, "x": 21.4, "y": -4.77 },
  2342. { "time": 0.4667 }
  2343. ]
  2344. }
  2345. },
  2346. "events": [
  2347. { "time": 0.1667, "name": "effect" },
  2348. { "time": 0.2333, "name": "fire" }
  2349. ]
  2350. },
  2351. "atk_up": {
  2352. "slots": {
  2353. "2body": {
  2354. "attachment": [
  2355. { "name": null }
  2356. ]
  2357. },
  2358. "2er1": {
  2359. "attachment": [
  2360. { "name": null }
  2361. ]
  2362. },
  2363. "2er2": {
  2364. "attachment": [
  2365. { "name": null }
  2366. ]
  2367. },
  2368. "2eye1": {
  2369. "attachment": [
  2370. { "name": null }
  2371. ]
  2372. },
  2373. "2eye2": {
  2374. "attachment": [
  2375. { "name": null }
  2376. ]
  2377. },
  2378. "2fa": {
  2379. "attachment": [
  2380. { "name": null }
  2381. ]
  2382. },
  2383. "2shou1": {
  2384. "attachment": [
  2385. { "name": null }
  2386. ]
  2387. },
  2388. "2shou2": {
  2389. "attachment": [
  2390. { "name": null }
  2391. ]
  2392. },
  2393. "2tou": {
  2394. "attachment": [
  2395. { "name": null }
  2396. ],
  2397. "attachment": [
  2398. { "name": null }
  2399. ]
  2400. },
  2401. "2tui1": {
  2402. "attachment": [
  2403. { "name": null }
  2404. ],
  2405. "attachment": [
  2406. { "name": null }
  2407. ]
  2408. },
  2409. "2tui2": {
  2410. "attachment": [
  2411. { "name": null }
  2412. ],
  2413. "attachment": [
  2414. { "name": null }
  2415. ]
  2416. },
  2417. "2wei": {
  2418. "attachment": [
  2419. { "name": null }
  2420. ]
  2421. },
  2422. "2wuqi": {
  2423. "attachment": [
  2424. { "name": null }
  2425. ]
  2426. },
  2427. "2yy": {
  2428. "attachment": [
  2429. { "name": null }
  2430. ]
  2431. },
  2432. "2zui": {
  2433. "attachment": [
  2434. { "name": null }
  2435. ]
  2436. },
  2437. "3body": {
  2438. "attachment": [
  2439. { "name": null }
  2440. ]
  2441. },
  2442. "3er1": {
  2443. "attachment": [
  2444. { "name": null }
  2445. ]
  2446. },
  2447. "3er2": {
  2448. "attachment": [
  2449. { "name": null }
  2450. ]
  2451. },
  2452. "3eye1": {
  2453. "attachment": [
  2454. { "name": null }
  2455. ]
  2456. },
  2457. "3eye2": {
  2458. "attachment": [
  2459. { "name": null }
  2460. ]
  2461. },
  2462. "3fa": {
  2463. "attachment": [
  2464. { "name": null }
  2465. ]
  2466. },
  2467. "3shou1": {
  2468. "attachment": [
  2469. { "name": null }
  2470. ]
  2471. },
  2472. "3shou2": {
  2473. "attachment": [
  2474. { "name": null }
  2475. ]
  2476. },
  2477. "3shou3": {
  2478. "attachment": [
  2479. { "name": null }
  2480. ]
  2481. },
  2482. "3tou": {
  2483. "attachment": [
  2484. { "name": null }
  2485. ]
  2486. },
  2487. "3tui1": {
  2488. "attachment": [
  2489. { "name": null }
  2490. ],
  2491. "attachment": [
  2492. { "name": null }
  2493. ]
  2494. },
  2495. "3tui2": {
  2496. "attachment": [
  2497. { "name": null }
  2498. ],
  2499. "attachment": [
  2500. { "name": null }
  2501. ]
  2502. },
  2503. "3wei1": {
  2504. "attachment": [
  2505. { "name": null }
  2506. ]
  2507. },
  2508. "3wei2": {
  2509. "attachment": [
  2510. { "name": null }
  2511. ]
  2512. },
  2513. "3wuqi": {
  2514. "attachment": [
  2515. { "name": null }
  2516. ]
  2517. },
  2518. "3yy": {
  2519. "attachment": [
  2520. { "name": null }
  2521. ]
  2522. },
  2523. "3zui": {
  2524. "attachment": [
  2525. { "name": null }
  2526. ]
  2527. },
  2528. "effect_up": {
  2529. "attachment": [
  2530. { "time": 0.2, "name": "qk_00" },
  2531. { "time": 0.2333, "name": "qk_01" },
  2532. { "time": 0.2667, "name": "qk_02" },
  2533. { "time": 0.3, "name": "qk_03" },
  2534. { "time": 0.3333, "name": "qk_04" },
  2535. { "time": 0.3667, "name": "qk_05" },
  2536. { "time": 0.4, "name": null }
  2537. ]
  2538. },
  2539. "effect_up2": {
  2540. "attachment": [
  2541. { "time": 0.2, "name": "qk_00" },
  2542. { "time": 0.2333, "name": "qk_01" },
  2543. { "time": 0.2667, "name": "qk_02" },
  2544. { "time": 0.3, "name": "qk_03" },
  2545. { "time": 0.3333, "name": "qk_04" },
  2546. { "time": 0.3667, "name": "qk_05" },
  2547. { "time": 0.4, "name": null }
  2548. ]
  2549. }
  2550. },
  2551. "bones": {
  2552. "1tui2": {
  2553. "rotate": [
  2554. {},
  2555. { "time": 0.1333, "angle": 5.21 },
  2556. { "time": 0.2, "angle": -4.09 },
  2557. { "time": 0.3333, "angle": -5.52 },
  2558. { "time": 0.4667 }
  2559. ],
  2560. "translate": [
  2561. {},
  2562. { "time": 0.1333, "x": -4.5, "y": -2.57 },
  2563. { "time": 0.2, "x": -0.05, "y": 0.07 },
  2564. { "time": 0.3333, "x": 1.14, "y": 1.61 },
  2565. { "time": 0.4667 }
  2566. ],
  2567. "scale": [
  2568. {},
  2569. { "time": 0.1333, "y": 1.121 },
  2570. { "time": 0.2, "x": 1.032, "y": 1.141 },
  2571. { "time": 0.3333, "x": 1.016, "y": 1.078 },
  2572. { "time": 0.4667 }
  2573. ],
  2574. "shear": [
  2575. { "time": 0.1333 },
  2576. { "time": 0.2, "y": 6.41 },
  2577. { "time": 0.3333, "y": 1.79 },
  2578. { "time": 0.4667 }
  2579. ]
  2580. },
  2581. "1qiang1": {
  2582. "rotate": [
  2583. { "curve": 0.25, "c3": 0.75 },
  2584. { "time": 0.1333, "angle": 2.25 },
  2585. { "time": 0.2, "angle": -1.03 },
  2586. { "time": 0.2667, "angle": 3.09 },
  2587. { "time": 0.4667 }
  2588. ],
  2589. "translate": [
  2590. { "curve": 0.25, "c3": 0.75 },
  2591. { "time": 0.1333, "x": 4.2, "y": 3.96 },
  2592. { "time": 0.2, "x": 12.26, "y": 0.41 },
  2593. { "time": 0.2667, "x": 10.05, "y": -0.58 },
  2594. { "time": 0.4667 }
  2595. ],
  2596. "scale": [
  2597. { "time": 0.1333 },
  2598. { "time": 0.2, "x": 0.842, "y": 1.216 },
  2599. { "time": 0.2667, "x": 0.747, "y": 1.239 },
  2600. { "time": 0.3667, "x": 0.967, "y": 1.053 },
  2601. { "time": 0.4667 }
  2602. ]
  2603. },
  2604. "1erduo2": {
  2605. "rotate": [
  2606. {},
  2607. { "time": 0.1667, "angle": 10.01 },
  2608. { "time": 0.2333, "angle": -17.68 },
  2609. { "time": 0.3, "angle": 8.22 },
  2610. { "time": 0.4667 }
  2611. ],
  2612. "translate": [
  2613. {},
  2614. { "time": 0.1667, "x": -0.02, "y": 1.27 },
  2615. { "time": 0.2333, "x": 0.21, "y": -2.5 },
  2616. { "time": 0.3, "x": -0.48, "y": 2.73 },
  2617. { "time": 0.4667 }
  2618. ],
  2619. "scale": [
  2620. {},
  2621. { "time": 0.1667, "x": 1.102, "y": 0.967 },
  2622. { "time": 0.2333, "x": 0.947, "y": 0.932 },
  2623. { "time": 0.3, "x": 0.999, "y": 0.951 },
  2624. { "time": 0.4667 }
  2625. ]
  2626. },
  2627. "1erduo1": {
  2628. "rotate": [
  2629. {},
  2630. { "time": 0.1667, "angle": 13.23 },
  2631. { "time": 0.2333, "angle": -0.88 },
  2632. { "time": 0.3, "angle": -10.02 },
  2633. { "time": 0.4667 }
  2634. ],
  2635. "translate": [
  2636. {},
  2637. { "time": 0.1667, "x": 2.55, "y": 2.07 },
  2638. { "time": 0.2333, "x": 0.26, "y": 1.58 },
  2639. { "time": 0.3, "x": -1.9, "y": -0.88 },
  2640. { "time": 0.4667 }
  2641. ],
  2642. "scale": [
  2643. {},
  2644. { "time": 0.1667, "x": 1.145 },
  2645. { "time": 0.2333, "x": 1.076 },
  2646. { "time": 0.3, "x": 1.125, "y": 0.988 },
  2647. { "time": 0.4667 }
  2648. ]
  2649. },
  2650. "1shenti1": {
  2651. "rotate": [
  2652. { "curve": 0.25, "c3": 0.75 },
  2653. { "time": 0.1333, "angle": 2.67 },
  2654. { "time": 0.2, "angle": -7.72 },
  2655. { "time": 0.2667, "angle": -1.53 },
  2656. { "time": 0.3333, "angle": 0.48 },
  2657. { "time": 0.4667 }
  2658. ],
  2659. "translate": [
  2660. { "curve": 0.25, "c3": 0.75 },
  2661. { "time": 0.1333, "x": 3.42, "y": -7.13 },
  2662. { "time": 0.2, "x": -2.28, "y": -6.62 },
  2663. { "time": 0.2667, "x": -1.28, "y": -7.94 },
  2664. { "time": 0.3333, "x": -2.73, "y": 2.8 },
  2665. { "time": 0.4667 }
  2666. ],
  2667. "scale": [
  2668. { "curve": 0.25, "c3": 0.75 },
  2669. { "time": 0.1333, "x": 1.061, "y": 0.945 },
  2670. { "time": 0.2, "x": 1.037, "y": 1.073 },
  2671. { "time": 0.2667, "x": 0.959, "y": 1.06 },
  2672. { "time": 0.3333, "x": 1.137, "y": 0.901 },
  2673. { "time": 0.4667 }
  2674. ],
  2675. "shear": [
  2676. { "time": 0.1333 },
  2677. { "time": 0.2, "x": 5.07, "y": 6.17 },
  2678. { "time": 0.2667, "x": 2.26, "y": -2.31 },
  2679. { "time": 0.3333, "x": -0.63, "y": 1.76 },
  2680. { "time": 0.4667 }
  2681. ]
  2682. },
  2683. "1tou1": {
  2684. "rotate": [
  2685. { "angle": -1.26, "curve": 0.372, "c2": 0.48, "c3": 0.752 },
  2686. { "time": 0.1333, "angle": -7.16 },
  2687. { "time": 0.2, "angle": -6.42 },
  2688. { "time": 0.2667, "angle": 1.73 },
  2689. { "time": 0.3333, "angle": 1.28 },
  2690. { "time": 0.4667, "angle": -1.26 }
  2691. ],
  2692. "translate": [
  2693. { "x": 4.48, "y": 0.43, "curve": 0.372, "c2": 0.48, "c3": 0.752 },
  2694. { "time": 0.1333, "x": 9.23, "y": 1.76 },
  2695. { "time": 0.2, "x": -2.86, "y": -3.28 },
  2696. { "time": 0.2667, "x": 10.97, "y": 4.95 },
  2697. { "time": 0.3333, "x": -2.53, "y": 3.51 },
  2698. { "time": 0.4667, "x": 4.48, "y": 0.43 }
  2699. ],
  2700. "scale": [
  2701. { "x": 0.993, "curve": 0.372, "c2": 0.48, "c3": 0.752 },
  2702. { "time": 0.1333, "x": 0.945, "y": 1.012 },
  2703. { "time": 0.2, "x": 1.038, "y": 0.961 },
  2704. { "time": 0.2667, "x": 1.062, "y": 0.999 },
  2705. { "time": 0.3333, "x": 0.823, "y": 1.1 },
  2706. { "time": 0.4667, "x": 0.993 }
  2707. ],
  2708. "shear": [
  2709. { "y": 0.78, "curve": 0.372, "c2": 0.48, "c3": 0.752 },
  2710. { "time": 0.1333, "y": 3.61 },
  2711. { "time": 0.2, "y": 2.67 },
  2712. { "time": 0.2667, "x": 2.65, "y": -2.42 },
  2713. { "time": 0.3333, "x": 2, "y": -0.37 },
  2714. { "time": 0.4667, "y": 0.78 }
  2715. ]
  2716. },
  2717. "bone_up": {
  2718. "translate": [
  2719. { "x": -331.56 }
  2720. ]
  2721. },
  2722. "bone_down": {
  2723. "translate": [
  2724. { "x": 440.68, "y": 0.37 }
  2725. ]
  2726. },
  2727. "1fa": {
  2728. "rotate": [
  2729. {},
  2730. { "time": 0.1667, "angle": 13.23 },
  2731. { "time": 0.2333, "angle": -0.88 },
  2732. { "time": 0.3, "angle": -10.02 },
  2733. { "time": 0.4667 }
  2734. ],
  2735. "translate": [
  2736. {},
  2737. { "time": 0.1667, "x": 2.55, "y": 2.07 },
  2738. { "time": 0.2333, "x": 0.26, "y": 1.58 },
  2739. { "time": 0.3, "x": -1.9, "y": -0.88 },
  2740. { "time": 0.4667 }
  2741. ],
  2742. "scale": [
  2743. {},
  2744. { "time": 0.1667, "x": 1.145 },
  2745. { "time": 0.2333, "x": 1.076 },
  2746. { "time": 0.3, "x": 1.125, "y": 0.988 },
  2747. { "time": 0.4667 }
  2748. ]
  2749. },
  2750. "1shou1": {
  2751. "rotate": [
  2752. { "angle": -3.12, "curve": 0.337, "c2": 0.35, "c3": 0.758 },
  2753. { "time": 0.1667, "angle": 1.56, "curve": 0.25, "c3": 0.75 },
  2754. { "time": 0.2667, "angle": 4.94, "curve": 0.25, "c3": 0.75 },
  2755. { "time": 0.4667, "angle": -3.12 }
  2756. ],
  2757. "scale": [
  2758. {},
  2759. { "time": 0.1667, "x": 0.999 },
  2760. { "time": 0.2667, "x": 0.853 },
  2761. { "time": 0.4667 }
  2762. ]
  2763. },
  2764. "1wei2": {
  2765. "rotate": [
  2766. { "angle": -3.22, "curve": 0.306, "c2": 0.24, "c3": 0.652, "c4": 0.62 },
  2767. { "time": 0.1667, "angle": -11.47, "curve": 0.34, "c2": 0.35, "c3": 0.681, "c4": 0.71 },
  2768. { "time": 0.2667, "angle": 6.5, "curve": 0.381, "c2": 0.59, "c3": 0.729 },
  2769. { "time": 0.4667, "angle": -3.22 }
  2770. ]
  2771. },
  2772. "1wei3": {
  2773. "rotate": [
  2774. { "angle": -5.41, "curve": 0.338, "c2": 0.35, "c3": 0.671, "c4": 0.69 },
  2775. { "time": 0.0667, "angle": -0.5, "curve": 0.341, "c2": 0.37, "c3": 0.675, "c4": 0.71 },
  2776. { "time": 0.1667, "angle": -13.66, "curve": 0.346, "c2": 0.42, "c3": 0.68, "c4": 0.75 },
  2777. { "time": 0.3, "angle": 4.98, "curve": 0.354, "c2": 0.65, "c3": 0.688 },
  2778. { "time": 0.4667, "angle": -5.41 }
  2779. ],
  2780. "translate": [
  2781. { "x": 0.18, "y": -2.96 }
  2782. ]
  2783. },
  2784. "1wei4": {
  2785. "rotate": [
  2786. { "angle": 1.29, "curve": 0.33, "c2": 0.32, "c3": 0.666, "c4": 0.66 },
  2787. { "time": 0.1, "angle": 7.11, "curve": 0.336, "c2": 0.34, "c3": 0.67, "c4": 0.68 },
  2788. { "time": 0.1667, "angle": -6.96, "curve": 0.347, "c2": 0.38, "c3": 0.685, "c4": 0.73 },
  2789. { "time": 0.3333, "angle": 11.21, "curve": 0.376, "c2": 0.61, "c3": 0.718 },
  2790. { "time": 0.4667, "angle": 1.29 }
  2791. ],
  2792. "translate": [
  2793. { "x": 0.28, "y": -1.34 }
  2794. ]
  2795. }
  2796. },
  2797. "events": [
  2798. { "time": 0.1667, "name": "effect" },
  2799. { "time": 0.2333, "name": "fire" }
  2800. ]
  2801. },
  2802. "idle_down": {
  2803. "slots": {
  2804. "1body": {
  2805. "attachment": [
  2806. { "name": null }
  2807. ]
  2808. },
  2809. "1er1": {
  2810. "attachment": [
  2811. { "name": null }
  2812. ]
  2813. },
  2814. "1er2": {
  2815. "attachment": [
  2816. { "name": null }
  2817. ]
  2818. },
  2819. "1fa": {
  2820. "attachment": [
  2821. { "name": null }
  2822. ]
  2823. },
  2824. "1shou1": {
  2825. "attachment": [
  2826. { "name": null }
  2827. ]
  2828. },
  2829. "1shou2": {
  2830. "attachment": [
  2831. { "name": null }
  2832. ]
  2833. },
  2834. "1tou": {
  2835. "attachment": [
  2836. { "name": null }
  2837. ]
  2838. },
  2839. "1tui1": {
  2840. "attachment": [
  2841. { "name": null }
  2842. ],
  2843. "attachment": [
  2844. { "name": null }
  2845. ]
  2846. },
  2847. "1tui2": {
  2848. "attachment": [
  2849. { "name": null }
  2850. ],
  2851. "attachment": [
  2852. { "name": null }
  2853. ]
  2854. },
  2855. "1wei1": {
  2856. "attachment": [
  2857. { "name": null }
  2858. ]
  2859. },
  2860. "1wei2": {
  2861. "attachment": [
  2862. { "name": null }
  2863. ]
  2864. },
  2865. "1wuqi": {
  2866. "attachment": [
  2867. { "name": null }
  2868. ]
  2869. },
  2870. "1yy": {
  2871. "attachment": [
  2872. { "name": null }
  2873. ]
  2874. },
  2875. "3body": {
  2876. "attachment": [
  2877. { "name": null }
  2878. ]
  2879. },
  2880. "3er1": {
  2881. "attachment": [
  2882. { "name": null }
  2883. ]
  2884. },
  2885. "3er2": {
  2886. "attachment": [
  2887. { "name": null }
  2888. ]
  2889. },
  2890. "3eye1": {
  2891. "attachment": [
  2892. { "name": null }
  2893. ]
  2894. },
  2895. "3eye2": {
  2896. "attachment": [
  2897. { "name": null }
  2898. ]
  2899. },
  2900. "3fa": {
  2901. "attachment": [
  2902. { "name": null }
  2903. ]
  2904. },
  2905. "3shou1": {
  2906. "attachment": [
  2907. { "name": null }
  2908. ]
  2909. },
  2910. "3shou2": {
  2911. "attachment": [
  2912. { "name": null }
  2913. ]
  2914. },
  2915. "3shou3": {
  2916. "attachment": [
  2917. { "name": null }
  2918. ]
  2919. },
  2920. "3tou": {
  2921. "attachment": [
  2922. { "name": null }
  2923. ]
  2924. },
  2925. "3tui1": {
  2926. "attachment": [
  2927. { "name": null }
  2928. ],
  2929. "attachment": [
  2930. { "name": null }
  2931. ]
  2932. },
  2933. "3tui2": {
  2934. "attachment": [
  2935. { "name": null }
  2936. ],
  2937. "attachment": [
  2938. { "name": null }
  2939. ]
  2940. },
  2941. "3wei1": {
  2942. "attachment": [
  2943. { "name": null }
  2944. ]
  2945. },
  2946. "3wei2": {
  2947. "attachment": [
  2948. { "name": null }
  2949. ]
  2950. },
  2951. "3wuqi": {
  2952. "attachment": [
  2953. { "name": null }
  2954. ]
  2955. },
  2956. "3yy": {
  2957. "attachment": [
  2958. { "name": null }
  2959. ]
  2960. },
  2961. "3zui": {
  2962. "attachment": [
  2963. { "name": null }
  2964. ]
  2965. }
  2966. },
  2967. "bones": {
  2968. "2shenti": {
  2969. "rotate": [
  2970. { "curve": 0.25, "c3": 0.75 },
  2971. { "time": 0.5, "angle": -0.33, "curve": 0.25, "c3": 0.75 },
  2972. { "time": 1 }
  2973. ],
  2974. "translate": [
  2975. { "curve": 0.25, "c3": 0.75 },
  2976. { "time": 0.2667, "x": -1.54, "y": -2.67, "curve": 0.25, "c3": 0.75 },
  2977. { "time": 0.5, "x": 0.14, "y": -5.36, "curve": 0.25, "c3": 0.75 },
  2978. { "time": 0.7667, "x": 1.23, "y": -1.23, "curve": 0.25, "c3": 0.75 },
  2979. { "time": 1 }
  2980. ],
  2981. "scale": [
  2982. { "curve": 0.25, "c3": 0.75 },
  2983. { "time": 0.5, "x": 0.982, "y": 1.01, "curve": 0.25, "c3": 0.75 },
  2984. { "time": 1 }
  2985. ],
  2986. "shear": [
  2987. { "curve": 0.25, "c3": 0.75 },
  2988. { "time": 0.2667, "y": 2.81, "curve": 0.25, "c3": 0.75 },
  2989. { "time": 0.7667, "y": -1.16, "curve": 0.25, "c3": 0.75 },
  2990. { "time": 1 }
  2991. ]
  2992. },
  2993. "2tou": {
  2994. "rotate": [
  2995. { "angle": 0.5, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
  2996. { "time": 0.3, "angle": 2.78, "curve": 0.25, "c3": 0.75 },
  2997. { "time": 0.7, "angle": -1.78, "curve": 0.25, "c3": 0.625, "c4": 0.5 },
  2998. { "time": 1, "angle": 0.5 }
  2999. ],
  3000. "translate": [
  3001. { "x": -0.34, "y": -0.37, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
  3002. { "time": 0.3, "x": 1.34, "y": -0.78, "curve": 0.25, "c3": 0.75 },
  3003. { "time": 0.7, "x": -2.03, "y": 0.04, "curve": 0.25, "c3": 0.625, "c4": 0.5 },
  3004. { "time": 1, "x": -0.34, "y": -0.37 }
  3005. ],
  3006. "scale": [
  3007. { "x": 0.978, "y": 1.017, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
  3008. { "time": 0.3, "x": 0.96, "y": 1.02, "curve": 0.25, "c3": 0.75 },
  3009. { "time": 0.7, "x": 0.996, "y": 1.013, "curve": 0.25, "c3": 0.625, "c4": 0.5 },
  3010. { "time": 1, "x": 0.978, "y": 1.017 }
  3011. ],
  3012. "shear": [
  3013. { "y": -1.12, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
  3014. { "time": 0.3, "y": -0.51, "curve": 0.25, "c3": 0.75 },
  3015. { "time": 0.7, "y": -1.73, "curve": 0.25, "c3": 0.625, "c4": 0.5 },
  3016. { "time": 1, "y": -1.12 }
  3017. ]
  3018. },
  3019. "2tou4": {
  3020. "scale": [
  3021. { "time": 0.3667 },
  3022. { "time": 0.5, "x": 0.063, "y": 1.093 },
  3023. { "time": 0.6333 }
  3024. ]
  3025. },
  3026. "2tou2": {
  3027. "scale": [
  3028. { "time": 0.3667 },
  3029. { "time": 0.5, "x": 0.063, "y": 1.093 },
  3030. { "time": 0.6333 }
  3031. ]
  3032. },
  3033. "ik_r_down": {
  3034. "translate": [
  3035. {},
  3036. { "time": 0.2667, "x": 1.93, "y": 1.54 },
  3037. { "time": 0.5, "x": 3.03, "y": 4.87 },
  3038. { "time": 0.7667, "x": 3.25, "y": -0.23 },
  3039. { "time": 1 }
  3040. ]
  3041. },
  3042. "2qiang": {
  3043. "rotate": [
  3044. {},
  3045. { "time": 0.5, "angle": 1.49 },
  3046. { "time": 1 }
  3047. ],
  3048. "translate": [
  3049. {},
  3050. { "time": 0.2667, "x": -2.84, "y": -1.83 },
  3051. { "time": 0.5, "x": -1.24, "y": -2.65 },
  3052. { "time": 0.7667, "x": 0.42, "y": -2.21 },
  3053. { "time": 1 }
  3054. ],
  3055. "scale": [
  3056. {},
  3057. { "time": 0.5, "x": 0.881, "y": 1.027 },
  3058. { "time": 1 }
  3059. ]
  3060. },
  3061. "2tou3": {
  3062. "rotate": [
  3063. { "curve": 0.25, "c3": 0.75 },
  3064. { "time": 0.1333, "angle": -1.98, "curve": 0.25, "c3": 0.75 },
  3065. { "time": 0.6667, "angle": 5.34, "curve": 0.25, "c3": 0.75 },
  3066. { "time": 1 }
  3067. ],
  3068. "translate": [
  3069. { "curve": 0.25, "c3": 0.75 },
  3070. { "time": 0.4, "x": 4.34, "y": -0.02, "curve": 0.25, "c3": 0.75 },
  3071. { "time": 1 }
  3072. ],
  3073. "scale": [
  3074. {},
  3075. { "time": 0.1333, "x": 0.999, "y": 0.967 },
  3076. { "time": 0.7333, "x": 0.896, "y": 1.062 },
  3077. { "time": 1 }
  3078. ]
  3079. },
  3080. "2erduo2": {
  3081. "rotate": [
  3082. {},
  3083. { "time": 0.3333, "angle": 10.64 },
  3084. { "time": 0.7667, "angle": -12.7 },
  3085. { "time": 1 }
  3086. ]
  3087. },
  3088. "2erduo1": {
  3089. "rotate": [
  3090. {},
  3091. { "time": 0.5333, "angle": 15.21 },
  3092. { "time": 1 }
  3093. ],
  3094. "translate": [
  3095. {},
  3096. { "time": 0.5333, "x": -2.43, "y": 0.69 },
  3097. { "time": 1 }
  3098. ]
  3099. },
  3100. "2tui1": {
  3101. "rotate": [
  3102. {},
  3103. { "time": 0.2, "angle": 1.48 },
  3104. { "time": 0.3333, "angle": 2.57 },
  3105. { "time": 0.6667, "angle": -2.41 },
  3106. { "time": 1 }
  3107. ],
  3108. "translate": [
  3109. {},
  3110. { "time": 0.2, "x": -0.44 },
  3111. { "time": 0.3333, "x": -0.75, "y": -0.71 },
  3112. { "time": 0.6667, "x": 1.51, "y": -0.1 },
  3113. { "time": 1 }
  3114. ],
  3115. "scale": [
  3116. {},
  3117. { "time": 0.3333, "x": 0.978, "y": 1.032 },
  3118. { "time": 0.6667, "x": 0.998, "y": 1.002 },
  3119. { "time": 1 }
  3120. ]
  3121. },
  3122. "2tui2": {
  3123. "rotate": [
  3124. {},
  3125. { "time": 0.4667, "angle": -1.47 },
  3126. { "time": 1 }
  3127. ],
  3128. "translate": [
  3129. {},
  3130. { "time": 0.4667, "x": 1.11, "y": -0.74 },
  3131. { "time": 1 }
  3132. ],
  3133. "scale": [
  3134. {},
  3135. { "time": 0.4667, "x": 0.966, "y": 1.077 },
  3136. { "time": 1 }
  3137. ]
  3138. },
  3139. "2youshou1": {
  3140. "rotate": [
  3141. { "angle": 1.39, "curve": 0.38, "c2": 0.59, "c3": 0.727 },
  3142. { "time": 0.1333, "angle": 2.76, "curve": 0.25, "c3": 0.75 },
  3143. { "time": 0.6333, "angle": -4.03, "curve": 0.242, "c3": 0.663, "c4": 0.65 },
  3144. { "time": 1, "angle": 1.39 }
  3145. ]
  3146. }
  3147. }
  3148. },
  3149. "idle_left": {
  3150. "slots": {
  3151. "1body": {
  3152. "attachment": [
  3153. { "name": null }
  3154. ]
  3155. },
  3156. "1er1": {
  3157. "attachment": [
  3158. { "name": null }
  3159. ]
  3160. },
  3161. "1er2": {
  3162. "attachment": [
  3163. { "name": null }
  3164. ]
  3165. },
  3166. "1fa": {
  3167. "attachment": [
  3168. { "name": null }
  3169. ]
  3170. },
  3171. "1shou1": {
  3172. "attachment": [
  3173. { "name": null }
  3174. ]
  3175. },
  3176. "1shou2": {
  3177. "attachment": [
  3178. { "name": null }
  3179. ]
  3180. },
  3181. "1tou": {
  3182. "attachment": [
  3183. { "name": null }
  3184. ]
  3185. },
  3186. "1tui1": {
  3187. "attachment": [
  3188. { "name": null }
  3189. ],
  3190. "attachment": [
  3191. { "name": null }
  3192. ]
  3193. },
  3194. "1tui2": {
  3195. "attachment": [
  3196. { "name": null }
  3197. ],
  3198. "attachment": [
  3199. { "name": null }
  3200. ]
  3201. },
  3202. "1wei1": {
  3203. "attachment": [
  3204. { "name": null }
  3205. ]
  3206. },
  3207. "1wei2": {
  3208. "attachment": [
  3209. { "name": null }
  3210. ]
  3211. },
  3212. "1wuqi": {
  3213. "attachment": [
  3214. { "name": null }
  3215. ]
  3216. },
  3217. "1yy": {
  3218. "attachment": [
  3219. { "name": null }
  3220. ]
  3221. },
  3222. "2body": {
  3223. "attachment": [
  3224. { "name": null }
  3225. ]
  3226. },
  3227. "2er1": {
  3228. "attachment": [
  3229. { "name": null }
  3230. ]
  3231. },
  3232. "2er2": {
  3233. "attachment": [
  3234. { "name": null }
  3235. ]
  3236. },
  3237. "2eye1": {
  3238. "attachment": [
  3239. { "name": null }
  3240. ]
  3241. },
  3242. "2eye2": {
  3243. "attachment": [
  3244. { "name": null }
  3245. ]
  3246. },
  3247. "2fa": {
  3248. "attachment": [
  3249. { "name": null }
  3250. ]
  3251. },
  3252. "2shou1": {
  3253. "attachment": [
  3254. { "name": null }
  3255. ]
  3256. },
  3257. "2shou2": {
  3258. "attachment": [
  3259. { "name": null }
  3260. ]
  3261. },
  3262. "2tou": {
  3263. "attachment": [
  3264. { "name": null }
  3265. ],
  3266. "attachment": [
  3267. { "name": null }
  3268. ]
  3269. },
  3270. "2tui1": {
  3271. "attachment": [
  3272. { "name": null }
  3273. ],
  3274. "attachment": [
  3275. { "name": null }
  3276. ]
  3277. },
  3278. "2tui2": {
  3279. "attachment": [
  3280. { "name": null }
  3281. ],
  3282. "attachment": [
  3283. { "name": null }
  3284. ]
  3285. },
  3286. "2wei": {
  3287. "attachment": [
  3288. { "name": null }
  3289. ]
  3290. },
  3291. "2wuqi": {
  3292. "attachment": [
  3293. { "name": null }
  3294. ]
  3295. },
  3296. "2yy": {
  3297. "attachment": [
  3298. { "name": null }
  3299. ]
  3300. },
  3301. "2zui": {
  3302. "attachment": [
  3303. { "name": null }
  3304. ]
  3305. }
  3306. },
  3307. "bones": {
  3308. "3shenti": {
  3309. "rotate": [
  3310. { "curve": 0.25, "c3": 0.75 },
  3311. { "time": 0.5, "angle": 2.94, "curve": 0.25, "c3": 0.75 },
  3312. { "time": 1 }
  3313. ],
  3314. "translate": [
  3315. { "curve": 0.25, "c3": 0.75 },
  3316. { "time": 0.2667, "x": -2, "y": -3.11, "curve": 0.25, "c3": 0.75 },
  3317. { "time": 0.5, "y": -4.45, "curve": 0.25, "c3": 0.75 },
  3318. { "time": 0.7333, "x": 2.22, "y": -2.37, "curve": 0.25, "c3": 0.75 },
  3319. { "time": 1 }
  3320. ],
  3321. "scale": [
  3322. { "curve": 0.25, "c3": 0.75 },
  3323. { "time": 0.5, "x": 0.972, "y": 1.028, "curve": 0.25, "c3": 0.75 },
  3324. { "time": 1 }
  3325. ],
  3326. "shear": [
  3327. { "curve": 0.25, "c3": 0.75 },
  3328. { "time": 0.2667, "y": -1.37, "curve": 0.25, "c3": 0.75 },
  3329. { "time": 0.7333, "y": 1.36, "curve": 0.25, "c3": 0.75 },
  3330. { "time": 1 }
  3331. ]
  3332. },
  3333. "3shou1": {
  3334. "rotate": [
  3335. { "angle": 5.51, "curve": 0.337, "c2": 0.35, "c3": 0.758 },
  3336. { "time": 0.3667, "angle": -9.66, "curve": 0.25, "c3": 0.75 },
  3337. { "time": 0.8667, "angle": 9.37, "curve": 0.273, "c3": 0.62, "c4": 0.41 },
  3338. { "time": 1, "angle": 5.51 }
  3339. ]
  3340. },
  3341. "3qiang": {
  3342. "rotate": [
  3343. { "angle": 3.1, "curve": 0.25, "c3": 0.75 },
  3344. { "time": 0.2667, "angle": 5.37, "curve": 0.25, "c3": 0.75 },
  3345. { "time": 0.5, "angle": 6.02, "curve": 0.25, "c3": 0.75 },
  3346. { "time": 0.8, "angle": 5.37, "curve": 0.25, "c3": 0.75 },
  3347. { "time": 1, "angle": 3.1 }
  3348. ],
  3349. "translate": [
  3350. { "x": -2.29, "y": -0.76, "curve": 0.25, "c3": 0.75 },
  3351. { "time": 0.2, "x": -5.01, "y": -2.17, "curve": 0.25, "c3": 0.75 },
  3352. { "time": 0.5, "x": -7.95, "y": -8.16, "curve": 0.25, "c3": 0.75 },
  3353. { "time": 0.7333, "x": -1.18, "y": -10.17, "curve": 0.25, "c3": 0.75 },
  3354. { "time": 1, "x": -2.29, "y": -0.76 }
  3355. ],
  3356. "shear": [
  3357. { "curve": 0.25, "c3": 0.75 },
  3358. { "time": 0.5, "x": -5.9, "y": 3.46, "curve": 0.25, "c3": 0.75 },
  3359. { "time": 1 }
  3360. ]
  3361. },
  3362. "3tou": {
  3363. "rotate": [
  3364. { "angle": -2.48, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
  3365. { "time": 0.2667, "angle": 1.93, "curve": 0.25, "c3": 0.75 },
  3366. { "time": 0.7333, "angle": -6.89, "curve": 0.25, "c3": 0.625, "c4": 0.5 },
  3367. { "time": 1, "angle": -2.48 }
  3368. ],
  3369. "translate": [
  3370. { "x": 2.81, "y": -1.47, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
  3371. { "time": 0.2667, "x": 4.56, "y": -0.96, "curve": 0.25, "c3": 0.75 },
  3372. { "time": 0.7333, "x": 1.07, "y": -1.99, "curve": 0.25, "c3": 0.625, "c4": 0.5 },
  3373. { "time": 1, "x": 2.81, "y": -1.47 }
  3374. ],
  3375. "scale": [
  3376. { "x": 0.999, "y": 0.998, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
  3377. { "time": 0.2667, "x": 1.068, "y": 0.978, "curve": 0.25, "c3": 0.75 },
  3378. { "time": 0.7333, "x": 0.929, "y": 1.019, "curve": 0.25, "c3": 0.625, "c4": 0.5 },
  3379. { "time": 1, "x": 0.999, "y": 0.998 }
  3380. ]
  3381. },
  3382. "3tou5": {
  3383. "scale": [
  3384. { "time": 0.3667, "curve": 0.25, "c3": 0.75 },
  3385. { "time": 0.5, "x": 0.082, "y": 1.06, "curve": 0.25, "c3": 0.75 },
  3386. { "time": 0.6333 }
  3387. ]
  3388. },
  3389. "3tou2": {
  3390. "rotate": [
  3391. { "angle": -0.7, "curve": 0.382, "c2": 0.55, "c3": 0.741 },
  3392. { "time": 0.1667, "angle": 1.24, "curve": 0.25, "c3": 0.75 },
  3393. { "time": 0.7333, "angle": -4.33, "curve": 0.245, "c3": 0.64, "c4": 0.57 },
  3394. { "time": 1, "angle": -0.7 }
  3395. ],
  3396. "translate": [
  3397. { "x": 0.02, "y": 1.44, "curve": 0.382, "c2": 0.55, "c3": 0.741 },
  3398. { "time": 0.1667, "x": -1.45, "y": 0.61, "curve": 0.25, "c3": 0.75 },
  3399. { "time": 0.7333, "x": 2.77, "y": 2.99, "curve": 0.245, "c3": 0.64, "c4": 0.57 },
  3400. { "time": 1, "x": 0.02, "y": 1.44 }
  3401. ],
  3402. "scale": [
  3403. { "x": 1.073, "y": 0.983, "curve": 0.382, "c2": 0.55, "c3": 0.741 },
  3404. { "time": 0.1667, "x": 1.079, "curve": 0.25, "c3": 0.75 },
  3405. { "time": 0.7333, "x": 1.06, "y": 0.952, "curve": 0.245, "c3": 0.64, "c4": 0.57 },
  3406. { "time": 1, "x": 1.073, "y": 0.983 }
  3407. ]
  3408. },
  3409. "3erduo": {
  3410. "rotate": [
  3411. { "curve": 0.25, "c3": 0.75 },
  3412. { "time": 0.2667, "angle": 8.05, "curve": 0.25, "c3": 0.75 },
  3413. { "time": 0.6667, "angle": -1.84, "curve": 0.25, "c3": 0.75 },
  3414. { "time": 1 }
  3415. ],
  3416. "translate": [
  3417. { "curve": 0.25, "c3": 0.75 },
  3418. { "time": 0.2667, "x": -3.15, "y": 2.35, "curve": 0.25, "c3": 0.75 },
  3419. { "time": 0.6667, "x": 1.69, "y": 1.66, "curve": 0.25, "c3": 0.75 },
  3420. { "time": 1 }
  3421. ],
  3422. "shear": [
  3423. { "curve": 0.25, "c3": 0.75 },
  3424. { "time": 0.2667, "x": -1.4, "curve": 0.25, "c3": 0.75 },
  3425. { "time": 0.4667, "x": 11.25, "curve": 0.25, "c3": 0.75 },
  3426. { "time": 1 }
  3427. ]
  3428. },
  3429. "3tui2": {
  3430. "rotate": [
  3431. { "curve": 0.25, "c3": 0.75 },
  3432. { "time": 0.3333, "angle": 3.3, "curve": 0.25, "c3": 0.75 },
  3433. { "time": 1 }
  3434. ],
  3435. "translate": [
  3436. { "curve": 0.25, "c3": 0.75 },
  3437. { "time": 0.3333, "x": -5.2, "y": -0.08, "curve": 0.25, "c3": 0.75 },
  3438. { "time": 1 }
  3439. ],
  3440. "scale": [
  3441. { "curve": 0.25, "c3": 0.75 },
  3442. { "time": 0.3333, "y": 1.026, "curve": 0.25, "c3": 0.75 },
  3443. { "time": 1 }
  3444. ],
  3445. "shear": [
  3446. { "curve": 0.25, "c3": 0.75 },
  3447. { "time": 0.3333, "x": 3.19, "curve": 0.25, "c3": 0.75 },
  3448. { "time": 1 }
  3449. ]
  3450. },
  3451. "3tui1": {
  3452. "rotate": [
  3453. { "curve": 0.25, "c3": 0.75 },
  3454. { "time": 0.6667, "angle": 2.31, "curve": 0.25, "c3": 0.75 },
  3455. { "time": 1 }
  3456. ],
  3457. "translate": [
  3458. { "curve": 0.25, "c3": 0.75 },
  3459. { "time": 0.6667, "x": -3.15, "curve": 0.25, "c3": 0.75 },
  3460. { "time": 1 }
  3461. ],
  3462. "scale": [
  3463. { "curve": 0.25, "c3": 0.75 },
  3464. { "time": 0.6667, "x": 0.996, "y": 1.042, "curve": 0.25, "c3": 0.75 },
  3465. { "time": 1, "x": 0.994, "y": 0.994 }
  3466. ],
  3467. "shear": [
  3468. { "curve": 0.25, "c3": 0.75 },
  3469. { "time": 0.6667, "x": 3.06, "curve": 0.25, "c3": 0.75 },
  3470. { "time": 1 }
  3471. ]
  3472. },
  3473. "bone_right": {
  3474. "translate": [
  3475. { "x": 450.04, "y": 0.09 }
  3476. ],
  3477. "scale": [
  3478. { "x": -1 }
  3479. ]
  3480. },
  3481. "bone_down": {
  3482. "translate": [
  3483. { "x": -608.55, "y": -0.51 }
  3484. ]
  3485. },
  3486. "3tou6": {
  3487. "scale": [
  3488. { "time": 0.3667, "curve": 0.25, "c3": 0.75 },
  3489. { "time": 0.5, "x": 0.082, "y": 1.06, "curve": 0.25, "c3": 0.75 },
  3490. { "time": 0.6333 }
  3491. ]
  3492. },
  3493. "3erduo2": {
  3494. "rotate": [
  3495. { "curve": 0.25, "c3": 0.75 },
  3496. { "time": 0.2667, "angle": 8.05, "curve": 0.25, "c3": 0.75 },
  3497. { "time": 0.6667, "angle": -1.84, "curve": 0.25, "c3": 0.75 },
  3498. { "time": 1 }
  3499. ],
  3500. "translate": [
  3501. { "curve": 0.25, "c3": 0.75 },
  3502. { "time": 0.2667, "x": -3.15, "y": 2.35, "curve": 0.25, "c3": 0.75 },
  3503. { "time": 0.6667, "x": 1.69, "y": 1.66, "curve": 0.25, "c3": 0.75 },
  3504. { "time": 1 }
  3505. ],
  3506. "shear": [
  3507. { "curve": 0.25, "c3": 0.75 },
  3508. { "time": 0.2667, "x": -1.4, "curve": 0.25, "c3": 0.75 },
  3509. { "time": 0.4667, "x": 11.25, "curve": 0.25, "c3": 0.75 },
  3510. { "time": 1 }
  3511. ]
  3512. },
  3513. "3shenti5": {
  3514. "rotate": [
  3515. { "angle": 4.77, "curve": 0.277, "c2": 0.12, "c3": 0.754 },
  3516. { "time": 0.4667, "angle": -10.49, "curve": 0.25, "c3": 0.75 },
  3517. { "time": 0.9667, "angle": 5.13, "curve": 0.313, "c3": 0.648, "c4": 0.35 },
  3518. { "time": 1, "angle": 4.77 }
  3519. ]
  3520. },
  3521. "3shenti6": {
  3522. "rotate": [
  3523. { "angle": 4.04, "curve": 0.366, "c2": 0.63, "c3": 0.703 },
  3524. { "time": 0.0667, "angle": 5.13, "curve": 0.273, "c3": 0.62, "c4": 0.41 },
  3525. { "time": 0.5667, "angle": -10.49, "curve": 0.244, "c3": 0.7, "c4": 0.79 },
  3526. { "time": 1, "angle": 4.04 }
  3527. ],
  3528. "translate": [
  3529. { "x": 0.61, "y": 2.03, "curve": 0.366, "c2": 0.63, "c3": 0.703 },
  3530. { "time": 0.0667, "x": 0.64, "y": 2.49, "curve": 0.273, "c3": 0.62, "c4": 0.41 },
  3531. { "time": 0.5667, "x": 0.19, "y": -4.07, "curve": 0.244, "c3": 0.7, "c4": 0.79 },
  3532. { "time": 1, "x": 0.61, "y": 2.03 }
  3533. ]
  3534. },
  3535. "3shenti7": {
  3536. "rotate": [
  3537. { "angle": 0.7, "curve": 0.382, "c2": 0.57, "c3": 0.735 },
  3538. { "time": 0.1667, "angle": 5.13, "curve": 0.313, "c3": 0.648, "c4": 0.35 },
  3539. { "time": 0.6667, "angle": -10.49, "curve": 0.243, "c3": 0.649, "c4": 0.6 },
  3540. { "time": 1, "angle": 0.7 }
  3541. ],
  3542. "translate": [
  3543. { "x": 1.71, "y": 0.68, "curve": 0.382, "c2": 0.57, "c3": 0.735 },
  3544. { "time": 0.1667, "x": 2.18, "y": 2.72, "curve": 0.313, "c3": 0.648, "c4": 0.35 },
  3545. { "time": 0.6667, "x": 0.53, "y": -4.47, "curve": 0.243, "c3": 0.649, "c4": 0.6 },
  3546. { "time": 1, "x": 1.71, "y": 0.68 }
  3547. ]
  3548. },
  3549. "3shenti2": {
  3550. "rotate": [
  3551. { "angle": 4.77, "curve": 0.277, "c2": 0.12, "c3": 0.754 },
  3552. { "time": 0.4667, "angle": -10.49, "curve": 0.25, "c3": 0.75 },
  3553. { "time": 0.9667, "angle": 5.13, "curve": 0.313, "c3": 0.648, "c4": 0.35 },
  3554. { "time": 1, "angle": 4.77 }
  3555. ]
  3556. },
  3557. "3shenti3": {
  3558. "rotate": [
  3559. { "angle": 4.04, "curve": 0.366, "c2": 0.63, "c3": 0.703 },
  3560. { "time": 0.0667, "angle": 5.13, "curve": 0.273, "c3": 0.62, "c4": 0.41 },
  3561. { "time": 0.5667, "angle": -10.49, "curve": 0.244, "c3": 0.7, "c4": 0.79 },
  3562. { "time": 1, "angle": 4.04 }
  3563. ],
  3564. "translate": [
  3565. { "x": 0.52, "y": 2.06, "curve": 0.366, "c2": 0.63, "c3": 0.703 },
  3566. { "time": 0.0667, "x": 0.53, "y": 2.52, "curve": 0.273, "c3": 0.62, "c4": 0.41 },
  3567. { "time": 0.5667, "x": 0.37, "y": -4.06, "curve": 0.244, "c3": 0.7, "c4": 0.79 },
  3568. { "time": 1, "x": 0.52, "y": 2.06 }
  3569. ]
  3570. },
  3571. "3shenti4": {
  3572. "rotate": [
  3573. { "angle": 0.7, "curve": 0.382, "c2": 0.57, "c3": 0.735 },
  3574. { "time": 0.1667, "angle": 5.13, "curve": 0.313, "c3": 0.648, "c4": 0.35 },
  3575. { "time": 0.6667, "angle": -10.49, "curve": 0.243, "c3": 0.649, "c4": 0.6 },
  3576. { "time": 1, "angle": 0.7 }
  3577. ],
  3578. "translate": [
  3579. { "x": 1.68, "y": 0.75, "curve": 0.382, "c2": 0.57, "c3": 0.735 },
  3580. { "time": 0.1667, "x": 2.06, "y": 2.81, "curve": 0.313, "c3": 0.648, "c4": 0.35 },
  3581. { "time": 0.6667, "x": 0.72, "y": -4.44, "curve": 0.243, "c3": 0.649, "c4": 0.6 },
  3582. { "time": 1, "x": 1.68, "y": 0.75 }
  3583. ]
  3584. },
  3585. "3qiang2": {
  3586. "translate": [
  3587. {},
  3588. { "time": 0.2333, "x": 1.63, "y": -4.1 },
  3589. { "time": 0.5, "x": -1.32, "y": -8.97 },
  3590. { "time": 0.7667, "x": -4.77, "y": -0.65 },
  3591. { "time": 1 }
  3592. ]
  3593. }
  3594. }
  3595. },
  3596. "idle_right": {
  3597. "slots": {
  3598. "1body": {
  3599. "attachment": [
  3600. { "name": null }
  3601. ]
  3602. },
  3603. "1er1": {
  3604. "attachment": [
  3605. { "name": null }
  3606. ]
  3607. },
  3608. "1er2": {
  3609. "attachment": [
  3610. { "name": null }
  3611. ]
  3612. },
  3613. "1fa": {
  3614. "attachment": [
  3615. { "name": null }
  3616. ]
  3617. },
  3618. "1shou1": {
  3619. "attachment": [
  3620. { "name": null }
  3621. ]
  3622. },
  3623. "1shou2": {
  3624. "attachment": [
  3625. { "name": null }
  3626. ]
  3627. },
  3628. "1tou": {
  3629. "attachment": [
  3630. { "name": null }
  3631. ]
  3632. },
  3633. "1tui1": {
  3634. "attachment": [
  3635. { "name": null }
  3636. ],
  3637. "attachment": [
  3638. { "name": null }
  3639. ]
  3640. },
  3641. "1tui2": {
  3642. "attachment": [
  3643. { "name": null }
  3644. ],
  3645. "attachment": [
  3646. { "name": null }
  3647. ]
  3648. },
  3649. "1wei1": {
  3650. "attachment": [
  3651. { "name": null }
  3652. ]
  3653. },
  3654. "1wei2": {
  3655. "attachment": [
  3656. { "name": null }
  3657. ]
  3658. },
  3659. "1wuqi": {
  3660. "attachment": [
  3661. { "name": null }
  3662. ]
  3663. },
  3664. "1yy": {
  3665. "attachment": [
  3666. { "name": null }
  3667. ]
  3668. },
  3669. "2body": {
  3670. "attachment": [
  3671. { "name": null }
  3672. ]
  3673. },
  3674. "2er1": {
  3675. "attachment": [
  3676. { "name": null }
  3677. ]
  3678. },
  3679. "2er2": {
  3680. "attachment": [
  3681. { "name": null }
  3682. ]
  3683. },
  3684. "2eye1": {
  3685. "attachment": [
  3686. { "name": null }
  3687. ]
  3688. },
  3689. "2eye2": {
  3690. "attachment": [
  3691. { "name": null }
  3692. ]
  3693. },
  3694. "2fa": {
  3695. "attachment": [
  3696. { "name": null }
  3697. ]
  3698. },
  3699. "2shou1": {
  3700. "attachment": [
  3701. { "name": null }
  3702. ]
  3703. },
  3704. "2shou2": {
  3705. "attachment": [
  3706. { "name": null }
  3707. ]
  3708. },
  3709. "2tou": {
  3710. "attachment": [
  3711. { "name": null }
  3712. ],
  3713. "attachment": [
  3714. { "name": null }
  3715. ]
  3716. },
  3717. "2tui1": {
  3718. "attachment": [
  3719. { "name": null }
  3720. ],
  3721. "attachment": [
  3722. { "name": null }
  3723. ]
  3724. },
  3725. "2tui2": {
  3726. "attachment": [
  3727. { "name": null }
  3728. ],
  3729. "attachment": [
  3730. { "name": null }
  3731. ]
  3732. },
  3733. "2wei": {
  3734. "attachment": [
  3735. { "name": null }
  3736. ]
  3737. },
  3738. "2wuqi": {
  3739. "attachment": [
  3740. { "name": null }
  3741. ]
  3742. },
  3743. "2yy": {
  3744. "attachment": [
  3745. { "name": null }
  3746. ]
  3747. },
  3748. "2zui": {
  3749. "attachment": [
  3750. { "name": null }
  3751. ]
  3752. }
  3753. },
  3754. "bones": {
  3755. "3shenti": {
  3756. "rotate": [
  3757. { "curve": 0.25, "c3": 0.75 },
  3758. { "time": 0.5, "angle": 2.94, "curve": 0.25, "c3": 0.75 },
  3759. { "time": 1 }
  3760. ],
  3761. "translate": [
  3762. { "curve": 0.25, "c3": 0.75 },
  3763. { "time": 0.2667, "x": -2, "y": -3.11, "curve": 0.25, "c3": 0.75 },
  3764. { "time": 0.5, "y": -4.45, "curve": 0.25, "c3": 0.75 },
  3765. { "time": 0.7333, "x": 2.22, "y": -2.37, "curve": 0.25, "c3": 0.75 },
  3766. { "time": 1 }
  3767. ],
  3768. "scale": [
  3769. { "curve": 0.25, "c3": 0.75 },
  3770. { "time": 0.5, "x": 0.972, "y": 1.028, "curve": 0.25, "c3": 0.75 },
  3771. { "time": 1 }
  3772. ],
  3773. "shear": [
  3774. { "curve": 0.25, "c3": 0.75 },
  3775. { "time": 0.2667, "y": -1.37, "curve": 0.25, "c3": 0.75 },
  3776. { "time": 0.7333, "y": 1.36, "curve": 0.25, "c3": 0.75 },
  3777. { "time": 1 }
  3778. ]
  3779. },
  3780. "3shou1": {
  3781. "rotate": [
  3782. { "angle": 5.51, "curve": 0.337, "c2": 0.35, "c3": 0.758 },
  3783. { "time": 0.3667, "angle": -9.66, "curve": 0.25, "c3": 0.75 },
  3784. { "time": 0.8667, "angle": 9.37, "curve": 0.273, "c3": 0.62, "c4": 0.41 },
  3785. { "time": 1, "angle": 5.51 }
  3786. ]
  3787. },
  3788. "3qiang": {
  3789. "rotate": [
  3790. { "angle": 3.1, "curve": 0.25, "c3": 0.75 },
  3791. { "time": 0.2667, "angle": 5.37, "curve": 0.25, "c3": 0.75 },
  3792. { "time": 0.5, "angle": 6.02, "curve": 0.25, "c3": 0.75 },
  3793. { "time": 0.8, "angle": 5.37, "curve": 0.25, "c3": 0.75 },
  3794. { "time": 1, "angle": 3.1 }
  3795. ],
  3796. "translate": [
  3797. { "x": -2.29, "y": -0.76, "curve": 0.25, "c3": 0.75 },
  3798. { "time": 0.2, "x": -5.01, "y": -2.17, "curve": 0.25, "c3": 0.75 },
  3799. { "time": 0.5, "x": -7.95, "y": -8.16, "curve": 0.25, "c3": 0.75 },
  3800. { "time": 0.7333, "x": -1.18, "y": -10.17, "curve": 0.25, "c3": 0.75 },
  3801. { "time": 1, "x": -2.29, "y": -0.76 }
  3802. ],
  3803. "shear": [
  3804. { "curve": 0.25, "c3": 0.75 },
  3805. { "time": 0.5, "x": -5.9, "y": 3.46, "curve": 0.25, "c3": 0.75 },
  3806. { "time": 1 }
  3807. ]
  3808. },
  3809. "3tou": {
  3810. "rotate": [
  3811. { "angle": -2.48, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
  3812. { "time": 0.2667, "angle": 1.93, "curve": 0.25, "c3": 0.75 },
  3813. { "time": 0.7333, "angle": -6.89, "curve": 0.25, "c3": 0.625, "c4": 0.5 },
  3814. { "time": 1, "angle": -2.48 }
  3815. ],
  3816. "translate": [
  3817. { "x": 2.81, "y": -1.47, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
  3818. { "time": 0.2667, "x": 4.56, "y": -0.96, "curve": 0.25, "c3": 0.75 },
  3819. { "time": 0.7333, "x": 1.07, "y": -1.99, "curve": 0.25, "c3": 0.625, "c4": 0.5 },
  3820. { "time": 1, "x": 2.81, "y": -1.47 }
  3821. ],
  3822. "scale": [
  3823. { "x": 0.999, "y": 0.998, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
  3824. { "time": 0.2667, "x": 1.068, "y": 0.978, "curve": 0.25, "c3": 0.75 },
  3825. { "time": 0.7333, "x": 0.929, "y": 1.019, "curve": 0.25, "c3": 0.625, "c4": 0.5 },
  3826. { "time": 1, "x": 0.999, "y": 0.998 }
  3827. ]
  3828. },
  3829. "3tou5": {
  3830. "scale": [
  3831. { "time": 0.3667, "curve": 0.25, "c3": 0.75 },
  3832. { "time": 0.5, "x": 0.082, "y": 1.06, "curve": 0.25, "c3": 0.75 },
  3833. { "time": 0.6333 }
  3834. ]
  3835. },
  3836. "3tou2": {
  3837. "rotate": [
  3838. { "angle": -0.7, "curve": 0.382, "c2": 0.55, "c3": 0.741 },
  3839. { "time": 0.1667, "angle": 1.24, "curve": 0.25, "c3": 0.75 },
  3840. { "time": 0.7333, "angle": -4.33, "curve": 0.245, "c3": 0.64, "c4": 0.57 },
  3841. { "time": 1, "angle": -0.7 }
  3842. ],
  3843. "translate": [
  3844. { "x": 0.02, "y": 1.44, "curve": 0.382, "c2": 0.55, "c3": 0.741 },
  3845. { "time": 0.1667, "x": -1.45, "y": 0.61, "curve": 0.25, "c3": 0.75 },
  3846. { "time": 0.7333, "x": 2.77, "y": 2.99, "curve": 0.245, "c3": 0.64, "c4": 0.57 },
  3847. { "time": 1, "x": 0.02, "y": 1.44 }
  3848. ],
  3849. "scale": [
  3850. { "x": 1.073, "y": 0.983, "curve": 0.382, "c2": 0.55, "c3": 0.741 },
  3851. { "time": 0.1667, "x": 1.079, "curve": 0.25, "c3": 0.75 },
  3852. { "time": 0.7333, "x": 1.06, "y": 0.952, "curve": 0.245, "c3": 0.64, "c4": 0.57 },
  3853. { "time": 1, "x": 1.073, "y": 0.983 }
  3854. ]
  3855. },
  3856. "3erduo": {
  3857. "rotate": [
  3858. { "curve": 0.25, "c3": 0.75 },
  3859. { "time": 0.2667, "angle": 8.05, "curve": 0.25, "c3": 0.75 },
  3860. { "time": 0.6667, "angle": -1.84, "curve": 0.25, "c3": 0.75 },
  3861. { "time": 1 }
  3862. ],
  3863. "translate": [
  3864. { "curve": 0.25, "c3": 0.75 },
  3865. { "time": 0.2667, "x": -3.15, "y": 2.35, "curve": 0.25, "c3": 0.75 },
  3866. { "time": 0.6667, "x": 1.69, "y": 1.66, "curve": 0.25, "c3": 0.75 },
  3867. { "time": 1 }
  3868. ],
  3869. "shear": [
  3870. { "curve": 0.25, "c3": 0.75 },
  3871. { "time": 0.2667, "x": -1.4, "curve": 0.25, "c3": 0.75 },
  3872. { "time": 0.4667, "x": 11.25, "curve": 0.25, "c3": 0.75 },
  3873. { "time": 1 }
  3874. ]
  3875. },
  3876. "3tui2": {
  3877. "rotate": [
  3878. { "curve": 0.25, "c3": 0.75 },
  3879. { "time": 0.3333, "angle": 3.3, "curve": 0.25, "c3": 0.75 },
  3880. { "time": 1 }
  3881. ],
  3882. "translate": [
  3883. { "curve": 0.25, "c3": 0.75 },
  3884. { "time": 0.3333, "x": -5.2, "y": -0.08, "curve": 0.25, "c3": 0.75 },
  3885. { "time": 1 }
  3886. ],
  3887. "scale": [
  3888. { "curve": 0.25, "c3": 0.75 },
  3889. { "time": 0.3333, "y": 1.026, "curve": 0.25, "c3": 0.75 },
  3890. { "time": 1 }
  3891. ],
  3892. "shear": [
  3893. { "curve": 0.25, "c3": 0.75 },
  3894. { "time": 0.3333, "x": 3.19, "curve": 0.25, "c3": 0.75 },
  3895. { "time": 1 }
  3896. ]
  3897. },
  3898. "3tui1": {
  3899. "rotate": [
  3900. { "curve": 0.25, "c3": 0.75 },
  3901. { "time": 0.6667, "angle": 2.31, "curve": 0.25, "c3": 0.75 },
  3902. { "time": 1 }
  3903. ],
  3904. "translate": [
  3905. { "curve": 0.25, "c3": 0.75 },
  3906. { "time": 0.6667, "x": -3.15, "curve": 0.25, "c3": 0.75 },
  3907. { "time": 1 }
  3908. ],
  3909. "scale": [
  3910. { "curve": 0.25, "c3": 0.75 },
  3911. { "time": 0.6667, "x": 0.996, "y": 1.042, "curve": 0.25, "c3": 0.75 },
  3912. { "time": 1, "x": 0.994, "y": 0.994 }
  3913. ],
  3914. "shear": [
  3915. { "curve": 0.25, "c3": 0.75 },
  3916. { "time": 0.6667, "x": 3.06, "curve": 0.25, "c3": 0.75 },
  3917. { "time": 1 }
  3918. ]
  3919. },
  3920. "bone_right": {
  3921. "translate": [
  3922. { "x": 450.04, "y": 0.09 }
  3923. ]
  3924. },
  3925. "bone_down": {
  3926. "translate": [
  3927. { "x": -608.55, "y": -0.51 }
  3928. ]
  3929. },
  3930. "3tou6": {
  3931. "scale": [
  3932. { "time": 0.3667, "curve": 0.25, "c3": 0.75 },
  3933. { "time": 0.5, "x": 0.082, "y": 1.06, "curve": 0.25, "c3": 0.75 },
  3934. { "time": 0.6333 }
  3935. ]
  3936. },
  3937. "3erduo2": {
  3938. "rotate": [
  3939. { "curve": 0.25, "c3": 0.75 },
  3940. { "time": 0.2667, "angle": 8.05, "curve": 0.25, "c3": 0.75 },
  3941. { "time": 0.6667, "angle": -1.84, "curve": 0.25, "c3": 0.75 },
  3942. { "time": 1 }
  3943. ],
  3944. "translate": [
  3945. { "curve": 0.25, "c3": 0.75 },
  3946. { "time": 0.2667, "x": -3.15, "y": 2.35, "curve": 0.25, "c3": 0.75 },
  3947. { "time": 0.6667, "x": 1.69, "y": 1.66, "curve": 0.25, "c3": 0.75 },
  3948. { "time": 1 }
  3949. ],
  3950. "shear": [
  3951. { "curve": 0.25, "c3": 0.75 },
  3952. { "time": 0.2667, "x": -1.4, "curve": 0.25, "c3": 0.75 },
  3953. { "time": 0.4667, "x": 11.25, "curve": 0.25, "c3": 0.75 },
  3954. { "time": 1 }
  3955. ]
  3956. },
  3957. "3shenti5": {
  3958. "rotate": [
  3959. { "angle": 4.77, "curve": 0.277, "c2": 0.12, "c3": 0.754 },
  3960. { "time": 0.4667, "angle": -10.49, "curve": 0.25, "c3": 0.75 },
  3961. { "time": 0.9667, "angle": 5.13, "curve": 0.313, "c3": 0.648, "c4": 0.35 },
  3962. { "time": 1, "angle": 4.77 }
  3963. ]
  3964. },
  3965. "3shenti6": {
  3966. "rotate": [
  3967. { "angle": 4.04, "curve": 0.366, "c2": 0.63, "c3": 0.703 },
  3968. { "time": 0.0667, "angle": 5.13, "curve": 0.273, "c3": 0.62, "c4": 0.41 },
  3969. { "time": 0.5667, "angle": -10.49, "curve": 0.244, "c3": 0.7, "c4": 0.79 },
  3970. { "time": 1, "angle": 4.04 }
  3971. ],
  3972. "translate": [
  3973. { "x": 0.61, "y": 2.03, "curve": 0.366, "c2": 0.63, "c3": 0.703 },
  3974. { "time": 0.0667, "x": 0.64, "y": 2.49, "curve": 0.273, "c3": 0.62, "c4": 0.41 },
  3975. { "time": 0.5667, "x": 0.19, "y": -4.07, "curve": 0.244, "c3": 0.7, "c4": 0.79 },
  3976. { "time": 1, "x": 0.61, "y": 2.03 }
  3977. ]
  3978. },
  3979. "3shenti7": {
  3980. "rotate": [
  3981. { "angle": 0.7, "curve": 0.382, "c2": 0.57, "c3": 0.735 },
  3982. { "time": 0.1667, "angle": 5.13, "curve": 0.313, "c3": 0.648, "c4": 0.35 },
  3983. { "time": 0.6667, "angle": -10.49, "curve": 0.243, "c3": 0.649, "c4": 0.6 },
  3984. { "time": 1, "angle": 0.7 }
  3985. ],
  3986. "translate": [
  3987. { "x": 1.71, "y": 0.68, "curve": 0.382, "c2": 0.57, "c3": 0.735 },
  3988. { "time": 0.1667, "x": 2.18, "y": 2.72, "curve": 0.313, "c3": 0.648, "c4": 0.35 },
  3989. { "time": 0.6667, "x": 0.53, "y": -4.47, "curve": 0.243, "c3": 0.649, "c4": 0.6 },
  3990. { "time": 1, "x": 1.71, "y": 0.68 }
  3991. ]
  3992. },
  3993. "3shenti2": {
  3994. "rotate": [
  3995. { "angle": 4.77, "curve": 0.277, "c2": 0.12, "c3": 0.754 },
  3996. { "time": 0.4667, "angle": -10.49, "curve": 0.25, "c3": 0.75 },
  3997. { "time": 0.9667, "angle": 5.13, "curve": 0.313, "c3": 0.648, "c4": 0.35 },
  3998. { "time": 1, "angle": 4.77 }
  3999. ]
  4000. },
  4001. "3shenti3": {
  4002. "rotate": [
  4003. { "angle": 4.04, "curve": 0.366, "c2": 0.63, "c3": 0.703 },
  4004. { "time": 0.0667, "angle": 5.13, "curve": 0.273, "c3": 0.62, "c4": 0.41 },
  4005. { "time": 0.5667, "angle": -10.49, "curve": 0.244, "c3": 0.7, "c4": 0.79 },
  4006. { "time": 1, "angle": 4.04 }
  4007. ],
  4008. "translate": [
  4009. { "x": 0.52, "y": 2.06, "curve": 0.366, "c2": 0.63, "c3": 0.703 },
  4010. { "time": 0.0667, "x": 0.53, "y": 2.52, "curve": 0.273, "c3": 0.62, "c4": 0.41 },
  4011. { "time": 0.5667, "x": 0.37, "y": -4.06, "curve": 0.244, "c3": 0.7, "c4": 0.79 },
  4012. { "time": 1, "x": 0.52, "y": 2.06 }
  4013. ]
  4014. },
  4015. "3shenti4": {
  4016. "rotate": [
  4017. { "angle": 0.7, "curve": 0.382, "c2": 0.57, "c3": 0.735 },
  4018. { "time": 0.1667, "angle": 5.13, "curve": 0.313, "c3": 0.648, "c4": 0.35 },
  4019. { "time": 0.6667, "angle": -10.49, "curve": 0.243, "c3": 0.649, "c4": 0.6 },
  4020. { "time": 1, "angle": 0.7 }
  4021. ],
  4022. "translate": [
  4023. { "x": 1.68, "y": 0.75, "curve": 0.382, "c2": 0.57, "c3": 0.735 },
  4024. { "time": 0.1667, "x": 2.06, "y": 2.81, "curve": 0.313, "c3": 0.648, "c4": 0.35 },
  4025. { "time": 0.6667, "x": 0.72, "y": -4.44, "curve": 0.243, "c3": 0.649, "c4": 0.6 },
  4026. { "time": 1, "x": 1.68, "y": 0.75 }
  4027. ]
  4028. },
  4029. "3qiang2": {
  4030. "translate": [
  4031. {},
  4032. { "time": 0.2333, "x": 1.63, "y": -4.1 },
  4033. { "time": 0.5, "x": -1.32, "y": -8.97 },
  4034. { "time": 0.7667, "x": -4.77, "y": -0.65 },
  4035. { "time": 1 }
  4036. ]
  4037. }
  4038. }
  4039. },
  4040. "idle_up": {
  4041. "slots": {
  4042. "2body": {
  4043. "attachment": [
  4044. { "name": null }
  4045. ]
  4046. },
  4047. "2er1": {
  4048. "attachment": [
  4049. { "name": null }
  4050. ]
  4051. },
  4052. "2er2": {
  4053. "attachment": [
  4054. { "name": null }
  4055. ]
  4056. },
  4057. "2eye1": {
  4058. "attachment": [
  4059. { "name": null }
  4060. ]
  4061. },
  4062. "2eye2": {
  4063. "attachment": [
  4064. { "name": null }
  4065. ]
  4066. },
  4067. "2fa": {
  4068. "attachment": [
  4069. { "name": null }
  4070. ]
  4071. },
  4072. "2shou1": {
  4073. "attachment": [
  4074. { "name": null }
  4075. ]
  4076. },
  4077. "2shou2": {
  4078. "attachment": [
  4079. { "name": null }
  4080. ]
  4081. },
  4082. "2tou": {
  4083. "attachment": [
  4084. { "name": null }
  4085. ],
  4086. "attachment": [
  4087. { "name": null }
  4088. ]
  4089. },
  4090. "2tui1": {
  4091. "attachment": [
  4092. { "name": null }
  4093. ],
  4094. "attachment": [
  4095. { "name": null }
  4096. ]
  4097. },
  4098. "2tui2": {
  4099. "attachment": [
  4100. { "name": null }
  4101. ],
  4102. "attachment": [
  4103. { "name": null }
  4104. ]
  4105. },
  4106. "2wei": {
  4107. "attachment": [
  4108. { "name": null }
  4109. ]
  4110. },
  4111. "2wuqi": {
  4112. "attachment": [
  4113. { "name": null }
  4114. ]
  4115. },
  4116. "2yy": {
  4117. "attachment": [
  4118. { "name": null }
  4119. ]
  4120. },
  4121. "2zui": {
  4122. "attachment": [
  4123. { "name": null }
  4124. ]
  4125. },
  4126. "3body": {
  4127. "attachment": [
  4128. { "name": null }
  4129. ]
  4130. },
  4131. "3er1": {
  4132. "attachment": [
  4133. { "name": null }
  4134. ]
  4135. },
  4136. "3er2": {
  4137. "attachment": [
  4138. { "name": null }
  4139. ]
  4140. },
  4141. "3eye1": {
  4142. "attachment": [
  4143. { "name": null }
  4144. ]
  4145. },
  4146. "3eye2": {
  4147. "attachment": [
  4148. { "name": null }
  4149. ]
  4150. },
  4151. "3fa": {
  4152. "attachment": [
  4153. { "name": null }
  4154. ]
  4155. },
  4156. "3shou1": {
  4157. "attachment": [
  4158. { "name": null }
  4159. ]
  4160. },
  4161. "3shou2": {
  4162. "attachment": [
  4163. { "name": null }
  4164. ]
  4165. },
  4166. "3shou3": {
  4167. "attachment": [
  4168. { "name": null }
  4169. ]
  4170. },
  4171. "3tou": {
  4172. "attachment": [
  4173. { "name": null }
  4174. ]
  4175. },
  4176. "3tui1": {
  4177. "attachment": [
  4178. { "name": null }
  4179. ],
  4180. "attachment": [
  4181. { "name": null }
  4182. ]
  4183. },
  4184. "3tui2": {
  4185. "attachment": [
  4186. { "name": null }
  4187. ],
  4188. "attachment": [
  4189. { "name": null }
  4190. ]
  4191. },
  4192. "3wei1": {
  4193. "attachment": [
  4194. { "name": null }
  4195. ]
  4196. },
  4197. "3wei2": {
  4198. "attachment": [
  4199. { "name": null }
  4200. ]
  4201. },
  4202. "3wuqi": {
  4203. "attachment": [
  4204. { "name": null }
  4205. ]
  4206. },
  4207. "3yy": {
  4208. "attachment": [
  4209. { "name": null }
  4210. ]
  4211. },
  4212. "3zui": {
  4213. "attachment": [
  4214. { "name": null }
  4215. ]
  4216. }
  4217. },
  4218. "bones": {
  4219. "1shenti1": {
  4220. "rotate": [
  4221. { "curve": 0.25, "c3": 0.75 },
  4222. { "time": 0.5, "angle": -2.27, "curve": 0.25, "c3": 0.75 },
  4223. { "time": 1 }
  4224. ],
  4225. "translate": [
  4226. { "curve": 0.25, "c3": 0.75 },
  4227. { "time": 0.2667, "x": 2, "y": -2.76, "curve": 0.25, "c3": 0.75 },
  4228. { "time": 0.5, "y": -5.17, "curve": 0.25, "c3": 0.75 },
  4229. { "time": 0.7667, "x": -2, "y": -2.41, "curve": 0.25, "c3": 0.75 },
  4230. { "time": 1 }
  4231. ],
  4232. "scale": [
  4233. { "curve": 0.25, "c3": 0.75 },
  4234. { "time": 0.5, "x": 0.967, "y": 1.017, "curve": 0.25, "c3": 0.75 },
  4235. { "time": 1 }
  4236. ],
  4237. "shear": [
  4238. { "curve": 0.25, "c3": 0.75 },
  4239. { "time": 0.2667, "y": 2.62, "curve": 0.25, "c3": 0.75 },
  4240. { "time": 0.7667, "y": -1.76, "curve": 0.25, "c3": 0.75 },
  4241. { "time": 1 }
  4242. ]
  4243. },
  4244. "1erduo2": {
  4245. "rotate": [
  4246. {},
  4247. { "time": 0.5333, "angle": -12.84 },
  4248. { "time": 1 }
  4249. ],
  4250. "translate": [
  4251. {},
  4252. { "time": 0.5333, "x": 0.9, "y": -0.79 },
  4253. { "time": 1 }
  4254. ]
  4255. },
  4256. "1tui2": {
  4257. "rotate": [
  4258. {},
  4259. { "time": 0.3333, "angle": -3.64 },
  4260. { "time": 0.6667, "angle": 1 },
  4261. { "time": 1 }
  4262. ],
  4263. "translate": [
  4264. {},
  4265. { "time": 0.3333, "x": 1.15, "y": 0.54 },
  4266. { "time": 0.6667, "x": -2.08 },
  4267. { "time": 1 }
  4268. ],
  4269. "scale": [
  4270. {},
  4271. { "time": 0.3333, "y": 1.059 },
  4272. { "time": 0.6667, "y": 1.061 },
  4273. { "time": 1 }
  4274. ]
  4275. },
  4276. "1tui1": {
  4277. "rotate": [
  4278. {},
  4279. { "time": 0.4667, "angle": -0.56 },
  4280. { "time": 1 }
  4281. ],
  4282. "translate": [
  4283. {},
  4284. { "time": 0.4667, "x": 1.34, "y": -0.67 },
  4285. { "time": 1 }
  4286. ],
  4287. "scale": [
  4288. {},
  4289. { "time": 0.4667, "y": 1.06 },
  4290. { "time": 1 }
  4291. ]
  4292. },
  4293. "1tou1": {
  4294. "rotate": [
  4295. { "angle": -1.26, "curve": 0.372, "c2": 0.48, "c3": 0.752 },
  4296. { "time": 0.2667, "angle": -2.58, "curve": 0.25, "c3": 0.75 },
  4297. { "time": 0.7667, "angle": -0.16, "curve": 0.252, "c3": 0.622, "c4": 0.48 },
  4298. { "time": 1, "angle": -1.26 }
  4299. ],
  4300. "translate": [
  4301. { "x": 4.48, "y": 0.43, "curve": 0.372, "c2": 0.48, "c3": 0.752 },
  4302. { "time": 0.2667, "x": 3.66, "y": -0.51, "curve": 0.25, "c3": 0.75 },
  4303. { "time": 0.7667, "x": 5.16, "y": 1.22, "curve": 0.252, "c3": 0.622, "c4": 0.48 },
  4304. { "time": 1, "x": 4.48, "y": 0.43 }
  4305. ],
  4306. "scale": [
  4307. { "x": 0.993, "curve": 0.372, "c2": 0.48, "c3": 0.752 },
  4308. { "time": 0.2667, "x": 0.997, "y": 0.97, "curve": 0.25, "c3": 0.75 },
  4309. { "time": 0.7667, "x": 0.989, "y": 1.026, "curve": 0.252, "c3": 0.622, "c4": 0.48 },
  4310. { "time": 1, "x": 0.993 }
  4311. ],
  4312. "shear": [
  4313. { "y": 0.78, "curve": 0.372, "c2": 0.48, "c3": 0.752 },
  4314. { "time": 0.2667, "y": 0.28, "curve": 0.25, "c3": 0.75 },
  4315. { "time": 0.7667, "y": 1.2, "curve": 0.252, "c3": 0.622, "c4": 0.48 },
  4316. { "time": 1, "y": 0.78 }
  4317. ]
  4318. },
  4319. "1qiang1": {
  4320. "rotate": [
  4321. { "curve": 0.25, "c3": 0.75 },
  4322. { "time": 0.3333, "angle": 2.36, "curve": 0.25, "c3": 0.75 },
  4323. { "time": 0.6667, "angle": 2.54, "curve": 0.25, "c3": 0.75 },
  4324. { "time": 1 }
  4325. ],
  4326. "translate": [
  4327. { "curve": 0.25, "c3": 0.75 },
  4328. { "time": 0.3333, "x": 4.82, "y": -2.68, "curve": 0.25, "c3": 0.75 },
  4329. { "time": 0.6667, "x": -0.94, "y": -1.73, "curve": 0.25, "c3": 0.75 },
  4330. { "time": 1 }
  4331. ],
  4332. "scale": [
  4333. { "curve": 0.25, "c3": 0.75 },
  4334. { "time": 0.3333, "x": 0.943, "y": 0.999, "curve": 0.25, "c3": 0.75 },
  4335. { "time": 0.6667, "x": 0.98, "y": 0.997, "curve": 0.25, "c3": 0.75 },
  4336. { "time": 1 }
  4337. ]
  4338. },
  4339. "1erduo1": {
  4340. "rotate": [
  4341. {},
  4342. { "time": 0.3333, "angle": -9.9 },
  4343. { "time": 0.7667, "angle": 7.31 },
  4344. { "time": 1 }
  4345. ],
  4346. "translate": [
  4347. {},
  4348. { "time": 0.3333, "x": -1.58, "y": -3.99 },
  4349. { "time": 0.7667, "x": 3.92, "y": 0.17 },
  4350. { "time": 1 }
  4351. ]
  4352. },
  4353. "bone_up": {
  4354. "translate": [
  4355. { "x": -331.56 }
  4356. ]
  4357. },
  4358. "bone_down": {
  4359. "translate": [
  4360. { "x": 440.68, "y": 0.37 }
  4361. ]
  4362. },
  4363. "1shou1": {
  4364. "rotate": [
  4365. { "angle": -3.12, "curve": 0.337, "c2": 0.35, "c3": 0.758 },
  4366. { "time": 0.3667, "angle": 6.59, "curve": 0.25, "c3": 0.75 },
  4367. { "time": 0.8667, "angle": -5.59, "curve": 0.273, "c3": 0.62, "c4": 0.41 },
  4368. { "time": 1, "angle": -3.12 }
  4369. ]
  4370. },
  4371. "1wei2": {
  4372. "rotate": [
  4373. { "angle": -3.22, "curve": 0.32, "c2": 0.29, "c3": 0.757 },
  4374. { "time": 0.4, "curve": 0.25, "c3": 0.75 },
  4375. { "time": 0.9, "angle": -3.7, "curve": 0.284, "c3": 0.625, "c4": 0.38 },
  4376. { "time": 1, "angle": -3.22 }
  4377. ]
  4378. },
  4379. "1wei3": {
  4380. "rotate": [
  4381. { "angle": -5.41, "curve": 0.375, "c2": 0.62, "c3": 0.716 },
  4382. { "time": 0.1, "angle": -6.82, "curve": 0.25, "c3": 0.75 },
  4383. { "time": 0.6, "angle": 3.98, "curve": 0.243, "c3": 0.68, "c4": 0.71 },
  4384. { "time": 1, "angle": -5.41 }
  4385. ],
  4386. "translate": [
  4387. { "x": 0.18, "y": -2.96, "curve": 0.375, "c2": 0.62, "c3": 0.716 },
  4388. { "time": 0.1, "x": 0.21, "y": -3.4, "curve": 0.25, "c3": 0.75 },
  4389. { "time": 0.6, "curve": 0.243, "c3": 0.68, "c4": 0.71 },
  4390. { "time": 1, "x": 0.18, "y": -2.96 }
  4391. ]
  4392. },
  4393. "1wei4": {
  4394. "rotate": [
  4395. { "angle": 1.29, "curve": 0.363, "c2": 0.44, "c3": 0.755 },
  4396. { "time": 0.3, "angle": -9.79, "curve": 0.25, "c3": 0.75 },
  4397. { "time": 0.8, "angle": 7.74, "curve": 0.258, "c3": 0.619, "c4": 0.45 },
  4398. { "time": 1, "angle": 1.29 }
  4399. ],
  4400. "translate": [
  4401. { "x": 0.28, "y": -1.34, "curve": 0.363, "c2": 0.44, "c3": 0.755 },
  4402. { "time": 0.3, "x": 0.77, "y": -3.64, "curve": 0.25, "c3": 0.75 },
  4403. { "time": 0.8, "curve": 0.258, "c3": 0.619, "c4": 0.45 },
  4404. { "time": 1, "x": 0.28, "y": -1.34 }
  4405. ]
  4406. }
  4407. }
  4408. },
  4409. "show": {
  4410. "slots": {
  4411. "1body": {
  4412. "attachment": [
  4413. { "name": null }
  4414. ]
  4415. },
  4416. "1er1": {
  4417. "attachment": [
  4418. { "name": null }
  4419. ]
  4420. },
  4421. "1er2": {
  4422. "attachment": [
  4423. { "name": null }
  4424. ]
  4425. },
  4426. "1fa": {
  4427. "attachment": [
  4428. { "name": null }
  4429. ]
  4430. },
  4431. "1shou1": {
  4432. "attachment": [
  4433. { "name": null }
  4434. ]
  4435. },
  4436. "1shou2": {
  4437. "attachment": [
  4438. { "name": null }
  4439. ]
  4440. },
  4441. "1tou": {
  4442. "attachment": [
  4443. { "name": null }
  4444. ]
  4445. },
  4446. "1tui1": {
  4447. "attachment": [
  4448. { "name": null }
  4449. ],
  4450. "attachment": [
  4451. { "name": null }
  4452. ]
  4453. },
  4454. "1tui2": {
  4455. "attachment": [
  4456. { "name": null }
  4457. ],
  4458. "attachment": [
  4459. { "name": null }
  4460. ]
  4461. },
  4462. "1wei1": {
  4463. "attachment": [
  4464. { "name": null }
  4465. ]
  4466. },
  4467. "1wei2": {
  4468. "attachment": [
  4469. { "name": null }
  4470. ]
  4471. },
  4472. "1wuqi": {
  4473. "attachment": [
  4474. { "name": null }
  4475. ]
  4476. },
  4477. "1yy": {
  4478. "attachment": [
  4479. { "name": null }
  4480. ]
  4481. },
  4482. "2body": {
  4483. "attachment": [
  4484. { "name": null }
  4485. ]
  4486. },
  4487. "2er1": {
  4488. "attachment": [
  4489. { "name": null }
  4490. ]
  4491. },
  4492. "2er2": {
  4493. "attachment": [
  4494. { "name": null }
  4495. ]
  4496. },
  4497. "2eye1": {
  4498. "attachment": [
  4499. { "name": null }
  4500. ]
  4501. },
  4502. "2eye2": {
  4503. "attachment": [
  4504. { "name": null }
  4505. ]
  4506. },
  4507. "2fa": {
  4508. "attachment": [
  4509. { "name": null }
  4510. ]
  4511. },
  4512. "2shou1": {
  4513. "attachment": [
  4514. { "name": null }
  4515. ]
  4516. },
  4517. "2shou2": {
  4518. "attachment": [
  4519. { "name": null }
  4520. ]
  4521. },
  4522. "2tou": {
  4523. "attachment": [
  4524. { "name": null }
  4525. ],
  4526. "attachment": [
  4527. { "name": null }
  4528. ]
  4529. },
  4530. "2tui1": {
  4531. "attachment": [
  4532. { "name": null }
  4533. ],
  4534. "attachment": [
  4535. { "name": null }
  4536. ]
  4537. },
  4538. "2tui2": {
  4539. "attachment": [
  4540. { "name": null }
  4541. ],
  4542. "attachment": [
  4543. { "name": null }
  4544. ]
  4545. },
  4546. "2wei": {
  4547. "attachment": [
  4548. { "name": null }
  4549. ]
  4550. },
  4551. "2wuqi": {
  4552. "attachment": [
  4553. { "name": null }
  4554. ]
  4555. },
  4556. "2yy": {
  4557. "attachment": [
  4558. { "name": null }
  4559. ]
  4560. },
  4561. "2zui": {
  4562. "attachment": [
  4563. { "name": null }
  4564. ]
  4565. },
  4566. "3yy": {
  4567. "color": [
  4568. { "color": "ffffff00" },
  4569. { "time": 0.1333, "color": "ffffffff" }
  4570. ]
  4571. }
  4572. },
  4573. "bones": {
  4574. "bone_right": {
  4575. "translate": [
  4576. { "x": 450.04, "y": 0.09 }
  4577. ]
  4578. },
  4579. "bone_right2": {
  4580. "translate": [
  4581. { "y": 91.88 },
  4582. { "time": 0.1, "y": 12.51 },
  4583. { "time": 0.1333, "y": -3.47 },
  4584. { "time": 0.2 }
  4585. ]
  4586. },
  4587. "3shenti": {
  4588. "rotate": [
  4589. {},
  4590. { "time": 0.1, "angle": 0.88 },
  4591. { "time": 0.1667, "angle": -1.89 },
  4592. { "time": 0.2667, "angle": 4.62 },
  4593. { "time": 0.3333 }
  4594. ],
  4595. "translate": [
  4596. {},
  4597. { "time": 0.1, "y": 20.33 },
  4598. { "time": 0.1667, "x": 4.9, "y": -6.24 },
  4599. { "time": 0.2667, "x": 0.65, "y": 2.73 },
  4600. { "time": 0.3333 }
  4601. ],
  4602. "scale": [
  4603. {},
  4604. { "time": 0.1, "x": 1.081 },
  4605. { "time": 0.1667, "x": 0.947, "y": 1.087 },
  4606. { "time": 0.3333 }
  4607. ]
  4608. },
  4609. "3tou": {
  4610. "rotate": [
  4611. {},
  4612. { "time": 0.0667, "angle": 2.18 },
  4613. { "time": 0.1333, "angle": 1.04 },
  4614. { "time": 0.2, "angle": -9.78 },
  4615. { "time": 0.2667, "angle": -5.8 },
  4616. { "time": 0.3333, "angle": -2.48 }
  4617. ],
  4618. "translate": [
  4619. {},
  4620. { "time": 0.1333, "x": 5.23, "y": -0.15 },
  4621. { "time": 0.2, "x": -1.62, "y": 1.33 },
  4622. { "time": 0.3333, "x": 2.81, "y": -1.47 }
  4623. ],
  4624. "scale": [
  4625. {},
  4626. { "time": 0.1333, "x": 0.963, "y": 1.007 },
  4627. { "time": 0.2, "x": 0.898, "y": 0.959 },
  4628. { "time": 0.3333, "x": 0.999, "y": 0.998 }
  4629. ],
  4630. "shear": [
  4631. {},
  4632. { "time": 0.0667, "y": 2.21 },
  4633. { "time": 0.1333, "y": 7 },
  4634. { "time": 0.2, "y": -1.21 },
  4635. { "time": 0.2667, "y": -5.73 },
  4636. { "time": 0.3333 }
  4637. ]
  4638. },
  4639. "3qiang": {
  4640. "rotate": [
  4641. {},
  4642. { "time": 0.1, "angle": 15.3 },
  4643. { "time": 0.1667, "angle": -10.15 },
  4644. { "time": 0.2667, "angle": 0.55 },
  4645. { "time": 0.3333, "angle": 3.1 }
  4646. ],
  4647. "translate": [
  4648. {},
  4649. { "time": 0.1, "x": -4.24, "y": 21.73 },
  4650. { "time": 0.1667, "x": 1.18, "y": -8.95 },
  4651. { "time": 0.2667, "x": 0.38, "y": 8.33 },
  4652. { "time": 0.3333, "x": -2.29, "y": -0.76 }
  4653. ],
  4654. "scale": [
  4655. { "time": 0.1 },
  4656. { "time": 0.1667, "y": 0.838 },
  4657. { "time": 0.2667, "x": 0.967, "y": 1.108 },
  4658. { "time": 0.3333 }
  4659. ],
  4660. "shear": [
  4661. {},
  4662. { "time": 0.1, "y": 6.23 },
  4663. { "time": 0.1667, "y": 15.59 },
  4664. { "time": 0.2667, "y": 1.83 },
  4665. { "time": 0.3333 }
  4666. ]
  4667. },
  4668. "3tui2": {
  4669. "rotate": [
  4670. {},
  4671. { "time": 0.1, "angle": 14.5 },
  4672. { "time": 0.1333, "angle": 8.98 },
  4673. { "time": 0.2, "angle": 8.23 },
  4674. { "time": 0.2667, "angle": 3.51 },
  4675. { "time": 0.3333 }
  4676. ],
  4677. "translate": [
  4678. {},
  4679. { "time": 0.1, "x": -6.1, "y": -0.76 },
  4680. { "time": 0.1333, "x": -5.12, "y": -1.89 },
  4681. { "time": 0.3333 }
  4682. ],
  4683. "scale": [
  4684. {},
  4685. { "time": 0.1, "x": 1.144 },
  4686. { "time": 0.1333, "x": 0.863, "y": 1.061 },
  4687. { "time": 0.2, "x": 0.89, "y": 1.114 },
  4688. { "time": 0.3333 }
  4689. ],
  4690. "shear": [
  4691. {},
  4692. { "time": 0.1, "y": -6.67 },
  4693. { "time": 0.1333, "y": -2.07 },
  4694. { "time": 0.2, "y": 2.46 },
  4695. { "time": 0.2667, "y": -0.65 },
  4696. { "time": 0.3333 }
  4697. ]
  4698. },
  4699. "3tou5": {
  4700. "translate": [
  4701. { "time": 0.1333 },
  4702. { "time": 0.2, "x": 5.74, "y": 2.02 },
  4703. { "time": 0.3333 }
  4704. ],
  4705. "scale": [
  4706. { "time": 0.1333 },
  4707. { "time": 0.2, "x": 0.12 },
  4708. { "time": 0.3333 }
  4709. ]
  4710. },
  4711. "3erduo": {
  4712. "rotate": [
  4713. {},
  4714. { "time": 0.1, "angle": -12.73 },
  4715. { "time": 0.1667, "angle": 42.11 },
  4716. { "time": 0.2667, "angle": -6.7 },
  4717. { "time": 0.3333 }
  4718. ],
  4719. "translate": [
  4720. {},
  4721. { "time": 0.1667, "x": -3.51, "y": 2.31 },
  4722. { "time": 0.2667, "x": 3.43, "y": -0.53 },
  4723. { "time": 0.3333 }
  4724. ],
  4725. "scale": [
  4726. {},
  4727. { "time": 0.1, "x": 1.232, "y": 0.949 },
  4728. { "time": 0.1667, "x": 1.122, "y": 1.008 },
  4729. { "time": 0.2667, "x": 0.987, "y": 1.078 },
  4730. { "time": 0.3333 }
  4731. ],
  4732. "shear": [
  4733. { "time": 0.1 },
  4734. { "time": 0.1667, "y": -12.06 },
  4735. { "time": 0.3333 }
  4736. ]
  4737. },
  4738. "3tou2": {
  4739. "rotate": [
  4740. {},
  4741. { "time": 0.1, "angle": -17.83 },
  4742. { "time": 0.1667, "angle": 7.8 },
  4743. { "time": 0.2333, "angle": -5.85 },
  4744. { "time": 0.2667, "angle": -6.81 },
  4745. { "time": 0.3333, "angle": -0.7 }
  4746. ],
  4747. "translate": [
  4748. {},
  4749. { "time": 0.1, "x": 8.53, "y": 6.23 },
  4750. { "time": 0.3333, "x": 0.02, "y": 1.44 }
  4751. ],
  4752. "scale": [
  4753. {},
  4754. { "time": 0.1, "x": 1.153 },
  4755. { "time": 0.1667, "x": 1.041, "y": 0.895 },
  4756. { "time": 0.2333, "x": 1.162, "y": 0.937 },
  4757. { "time": 0.2667, "x": 0.956, "y": 0.958 },
  4758. { "time": 0.3333, "x": 1.073, "y": 0.983 }
  4759. ],
  4760. "shear": [
  4761. {},
  4762. { "time": 0.2667, "y": -16.77 },
  4763. { "time": 0.3333 }
  4764. ]
  4765. },
  4766. "3tui1": {
  4767. "rotate": [
  4768. {},
  4769. { "time": 0.1667, "angle": 13.1 },
  4770. { "time": 0.3333 }
  4771. ],
  4772. "translate": [
  4773. {},
  4774. { "time": 0.1, "x": -3.13, "y": 4.31 },
  4775. { "time": 0.1667, "x": 3.63, "y": -0.79 },
  4776. { "time": 0.3333 }
  4777. ],
  4778. "scale": [
  4779. {},
  4780. { "time": 0.1667, "y": 1.09 },
  4781. { "time": 0.3333 }
  4782. ],
  4783. "shear": [
  4784. {},
  4785. { "time": 0.1667, "y": -12.69 },
  4786. { "time": 0.3333 }
  4787. ]
  4788. },
  4789. "bone_down": {
  4790. "translate": [
  4791. { "time": 0.3333, "x": -608.55, "y": -0.51 }
  4792. ]
  4793. },
  4794. "3shenti2": {
  4795. "rotate": [
  4796. { "angle": -9.55, "curve": 0.271, "c3": 0.619, "c4": 0.41 },
  4797. { "time": 0.1, "angle": 2.57, "curve": 0.319, "c2": 0.29, "c3": 0.681, "c4": 0.71 },
  4798. { "time": 0.1667, "angle": 31.79, "curve": 0.381, "c2": 0.59, "c3": 0.729 },
  4799. { "time": 0.2333, "angle": 12.22, "curve": 0.25, "c3": 0.75 },
  4800. { "time": 0.3333, "angle": 4.77 }
  4801. ]
  4802. },
  4803. "3shenti3": {
  4804. "rotate": [
  4805. { "angle": -9.55, "curve": 0.271, "c3": 0.619, "c4": 0.41 },
  4806. { "time": 0.1, "angle": -6.95, "curve": 0.319, "c2": 0.29, "c3": 0.681, "c4": 0.71 },
  4807. { "time": 0.1667, "angle": -0.64, "curve": 0.381, "c2": 0.59, "c3": 0.729 },
  4808. { "time": 0.2333, "angle": 22.27, "curve": 0.25, "c3": 0.75 },
  4809. { "time": 0.3333, "angle": 4.04 }
  4810. ],
  4811. "translate": [
  4812. { "curve": 0.25, "c3": 0.75 },
  4813. { "time": 0.3333, "x": 0.52, "y": 2.06 }
  4814. ]
  4815. },
  4816. "3shou1": {
  4817. "rotate": [
  4818. { "angle": -14.79 },
  4819. { "time": 0.1667, "angle": 10.17, "curve": 0.337, "c2": 0.35, "c3": 0.758 },
  4820. { "time": 0.3333, "angle": 5.51 }
  4821. ]
  4822. },
  4823. "3erduo2": {
  4824. "rotate": [
  4825. {},
  4826. { "time": 0.1, "angle": -12.73 },
  4827. { "time": 0.1667, "angle": 42.11 },
  4828. { "time": 0.2667, "angle": -6.7 },
  4829. { "time": 0.3333 }
  4830. ],
  4831. "translate": [
  4832. {},
  4833. { "time": 0.1667, "x": -3.51, "y": 2.31 },
  4834. { "time": 0.2667, "x": 3.43, "y": -0.53 },
  4835. { "time": 0.3333 }
  4836. ],
  4837. "scale": [
  4838. {},
  4839. { "time": 0.1, "x": 1.232, "y": 0.949 },
  4840. { "time": 0.1667, "x": 1.122, "y": 1.008 },
  4841. { "time": 0.2667, "x": 0.987, "y": 1.078 },
  4842. { "time": 0.3333 }
  4843. ],
  4844. "shear": [
  4845. { "time": 0.1 },
  4846. { "time": 0.1667, "y": -12.06 },
  4847. { "time": 0.3333 }
  4848. ]
  4849. },
  4850. "3shenti5": {
  4851. "rotate": [
  4852. { "curve": 0.258, "c3": 0.619, "c4": 0.45 },
  4853. { "time": 0.0667, "angle": -0.67, "curve": 0.363, "c2": 0.44, "c3": 0.755 },
  4854. { "time": 0.1667, "angle": 25.04, "curve": 0.245, "c3": 0.637, "c4": 0.56 },
  4855. { "time": 0.2667, "angle": -5, "curve": 0.381, "c2": 0.55, "c3": 0.742 },
  4856. { "time": 0.3333, "angle": 4.77 }
  4857. ]
  4858. },
  4859. "3shenti6": {
  4860. "rotate": [
  4861. { "curve": 0.258, "c3": 0.619, "c4": 0.45 },
  4862. { "time": 0.0667, "angle": -21.79, "curve": 0.363, "c2": 0.44, "c3": 0.755 },
  4863. { "time": 0.1667, "angle": -14.28, "curve": 0.245, "c3": 0.637, "c4": 0.56 },
  4864. { "time": 0.2667, "angle": 11.47, "curve": 0.381, "c2": 0.55, "c3": 0.742 },
  4865. { "time": 0.3333, "angle": 4.04 }
  4866. ],
  4867. "translate": [
  4868. { "curve": 0.25, "c3": 0.75 },
  4869. { "time": 0.3333, "x": 0.61, "y": 2.03 }
  4870. ]
  4871. },
  4872. "3shenti7": {
  4873. "rotate": [
  4874. { "curve": 0.258, "c3": 0.619, "c4": 0.45 },
  4875. { "time": 0.0667, "angle": -9.11, "curve": 0.363, "c2": 0.44, "c3": 0.755 },
  4876. { "time": 0.1667, "angle": -14.19, "curve": 0.245, "c3": 0.637, "c4": 0.56 },
  4877. { "time": 0.2667, "angle": 31.65, "curve": 0.381, "c2": 0.55, "c3": 0.742 },
  4878. { "time": 0.3333, "angle": 0.7 }
  4879. ],
  4880. "translate": [
  4881. { "curve": 0.25, "c3": 0.75 },
  4882. { "time": 0.3333, "x": 1.71, "y": 0.68 }
  4883. ]
  4884. },
  4885. "3tou6": {
  4886. "scale": [
  4887. { "time": 0.1333 },
  4888. { "time": 0.2, "x": 0.12 },
  4889. { "time": 0.3333 }
  4890. ]
  4891. },
  4892. "3shenti4": {
  4893. "rotate": [
  4894. { "angle": -9.55, "curve": 0.271, "c3": 0.619, "c4": 0.41 },
  4895. { "time": 0.1, "angle": -11.77, "curve": 0.319, "c2": 0.29, "c3": 0.681, "c4": 0.71 },
  4896. { "time": 0.1667, "angle": -17.08, "curve": 0.381, "c2": 0.59, "c3": 0.729 },
  4897. { "time": 0.2333, "angle": 20.6, "curve": 0.25, "c3": 0.75 },
  4898. { "time": 0.3333, "angle": 0.7 }
  4899. ],
  4900. "translate": [
  4901. { "curve": 0.25, "c3": 0.75 },
  4902. { "time": 0.3333, "x": 1.68, "y": 0.75 }
  4903. ]
  4904. }
  4905. }
  4906. }
  4907. }
  4908. }