CraftingFailed.anim 176 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465
  1. %YAML 1.1
  2. %TAG !u! tag:unity3d.com,2011:
  3. --- !u!74 &7400000
  4. AnimationClip:
  5. m_ObjectHideFlags: 0
  6. m_CorrespondingSourceObject: {fileID: 0}
  7. m_PrefabInstance: {fileID: 0}
  8. m_PrefabAsset: {fileID: 0}
  9. m_Name: CraftingFailed
  10. serializedVersion: 6
  11. m_Legacy: 1
  12. m_Compressed: 0
  13. m_UseHighQualityCurve: 1
  14. m_RotationCurves:
  15. - curve:
  16. serializedVersion: 2
  17. m_Curve:
  18. - serializedVersion: 3
  19. time: 0
  20. value: {x: 0, y: 0, z: 0.16975373, w: 0.9854865}
  21. inSlope: {x: 0, y: 0, z: 0.05683511, w: -0.009816884}
  22. outSlope: {x: 0, y: 0, z: 0.05683511, w: -0.009816884}
  23. tangentMode: 0
  24. weightedMode: 0
  25. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  26. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  27. - serializedVersion: 3
  28. time: 0.016666668
  29. value: {x: 0, y: 0, z: 0.17070098, w: 0.9853229}
  30. inSlope: {x: 0, y: 0, z: 0.11210694, w: -0.019530056}
  31. outSlope: {x: 0, y: 0, z: 0.11210694, w: -0.019530056}
  32. tangentMode: 0
  33. weightedMode: 0
  34. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  35. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  36. - serializedVersion: 3
  37. time: 0.033333335
  38. value: {x: 0, y: 0, z: 0.17349063, w: 0.9848355}
  39. inSlope: {x: 0, y: 0, z: 0.22026432, w: -0.039006468}
  40. outSlope: {x: 0, y: 0, z: 0.22026432, w: -0.039006468}
  41. tangentMode: 0
  42. weightedMode: 0
  43. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  44. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  45. - serializedVersion: 3
  46. time: 0.050000004
  47. value: {x: 0, y: 0, z: 0.17804313, w: 0.9840227}
  48. inSlope: {x: 0, y: 0, z: 0.32360357, w: -0.058836937}
  49. outSlope: {x: 0, y: 0, z: 0.32360357, w: -0.058836937}
  50. tangentMode: 0
  51. weightedMode: 0
  52. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  53. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  54. - serializedVersion: 3
  55. time: 0.06666667
  56. value: {x: 0, y: 0, z: 0.18427742, w: 0.9828743}
  57. inSlope: {x: 0, y: 0, z: 0.42202908, w: -0.0794828}
  58. outSlope: {x: 0, y: 0, z: 0.42202908, w: -0.0794828}
  59. tangentMode: 0
  60. weightedMode: 0
  61. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  62. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  63. - serializedVersion: 3
  64. time: 0.083333336
  65. value: {x: 0, y: 0, z: 0.19211076, w: 0.98137325}
  66. inSlope: {x: 0, y: 0, z: 0.51544505, w: -0.10131956}
  67. outSlope: {x: 0, y: 0, z: 0.51544505, w: -0.10131956}
  68. tangentMode: 0
  69. weightedMode: 0
  70. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  71. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  72. - serializedVersion: 3
  73. time: 0.1
  74. value: {x: 0, y: 0, z: 0.20145892, w: 0.97949696}
  75. inSlope: {x: 0, y: 0, z: 0.60375816, w: -0.124644056}
  76. outSlope: {x: 0, y: 0, z: 0.60375816, w: -0.124644056}
  77. tangentMode: 0
  78. weightedMode: 0
  79. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  80. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  81. - serializedVersion: 3
  82. time: 0.11666667
  83. value: {x: 0, y: 0, z: 0.21223603, w: 0.97721845}
  84. inSlope: {x: 0, y: 0, z: 0.6868725, w: -0.14968154}
  85. outSlope: {x: 0, y: 0, z: 0.6868725, w: -0.14968154}
  86. tangentMode: 0
  87. weightedMode: 0
  88. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  89. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  90. - serializedVersion: 3
  91. time: 0.13333334
  92. value: {x: 0, y: 0, z: 0.22435467, w: 0.9745076}
  93. inSlope: {x: 0, y: 0, z: 0.7646928, w: -0.1765841}
  94. outSlope: {x: 0, y: 0, z: 0.7646928, w: -0.1765841}
  95. tangentMode: 0
  96. weightedMode: 0
  97. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  98. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  99. - serializedVersion: 3
  100. time: 0.15
  101. value: {x: 0, y: 0, z: 0.2377258, w: 0.9713323}
  102. inSlope: {x: 0, y: 0, z: 0.8371233, w: -0.20543219}
  103. outSlope: {x: 0, y: 0, z: 0.8371233, w: -0.20543219}
  104. tangentMode: 0
  105. weightedMode: 0
  106. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  107. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  108. - serializedVersion: 3
  109. time: 0.16666667
  110. value: {x: 0, y: 0, z: 0.25225878, w: 0.96765983}
  111. inSlope: {x: 0, y: 0, z: 0.904069, w: -0.23624542}
  112. outSlope: {x: 0, y: 0, z: 0.904069, w: -0.23624542}
  113. tangentMode: 0
  114. weightedMode: 0
  115. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  116. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  117. - serializedVersion: 3
  118. time: 0.18333334
  119. value: {x: 0, y: 0, z: 0.26786143, w: 0.96345747}
  120. inSlope: {x: 0, y: 0, z: 0.9654451, w: -0.26898268}
  121. outSlope: {x: 0, y: 0, z: 0.9654451, w: -0.26898268}
  122. tangentMode: 0
  123. weightedMode: 0
  124. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  125. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  126. - serializedVersion: 3
  127. time: 0.2
  128. value: {x: 0, y: 0, z: 0.28444028, w: 0.95869374}
  129. inSlope: {x: 0, y: 0, z: 1.0211672, w: -0.30353847}
  130. outSlope: {x: 0, y: 0, z: 1.0211672, w: -0.30353847}
  131. tangentMode: 0
  132. weightedMode: 0
  133. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  134. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  135. - serializedVersion: 3
  136. time: 0.21666667
  137. value: {x: 0, y: 0, z: 0.30190033, w: 0.9533395}
  138. inSlope: {x: 0, y: 0, z: 1.0711617, w: -0.3397626}
  139. outSlope: {x: 0, y: 0, z: 1.0711617, w: -0.3397626}
  140. tangentMode: 0
  141. weightedMode: 0
  142. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  143. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  144. - serializedVersion: 3
  145. time: 0.23333333
  146. value: {x: 0, y: 0, z: 0.32014567, w: 0.9473683}
  147. inSlope: {x: 0, y: 0, z: 1.1153727, w: -0.377453}
  148. outSlope: {x: 0, y: 0, z: 1.1153727, w: -0.377453}
  149. tangentMode: 0
  150. weightedMode: 0
  151. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  152. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  153. - serializedVersion: 3
  154. time: 0.25
  155. value: {x: 0, y: 0, z: 0.3390794, w: 0.94075775}
  156. inSlope: {x: 0, y: 0, z: 1.1537554, w: -0.41635913}
  157. outSlope: {x: 0, y: 0, z: 1.1537554, w: -0.41635913}
  158. tangentMode: 0
  159. weightedMode: 0
  160. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  161. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  162. - serializedVersion: 3
  163. time: 0.26666668
  164. value: {x: 0, y: 0, z: 0.3586042, w: 0.9334897}
  165. inSlope: {x: 0, y: 0, z: 1.2737657, w: -0.49214202}
  166. outSlope: {x: 0, y: 0, z: 1.2737657, w: -0.49214202}
  167. tangentMode: 0
  168. weightedMode: 0
  169. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  170. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  171. - serializedVersion: 3
  172. time: 0.28333336
  173. value: {x: 0, y: 0, z: 0.3815383, w: 0.924353}
  174. inSlope: {x: 0, y: 0, z: 1.5370636, w: -0.6399638}
  175. outSlope: {x: 0, y: 0, z: 1.5370636, w: -0.6399638}
  176. tangentMode: 0
  177. weightedMode: 0
  178. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  179. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  180. - serializedVersion: 3
  181. time: 0.30000004
  182. value: {x: 0, y: 0, z: 0.4098397, w: 0.91215754}
  183. inSlope: {x: 0, y: 0, z: 1.8172451, w: -0.82181203}
  184. outSlope: {x: 0, y: 0, z: 1.8172451, w: -0.82181203}
  185. tangentMode: 0
  186. weightedMode: 0
  187. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  188. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  189. - serializedVersion: 3
  190. time: 0.31666672
  191. value: {x: 0, y: 0, z: 0.4421132, w: 0.89695925}
  192. inSlope: {x: 0, y: 0, z: 2.0140834, w: -0.99723375}
  193. outSlope: {x: 0, y: 0, z: 2.0140834, w: -0.99723375}
  194. tangentMode: 0
  195. weightedMode: 0
  196. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  197. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  198. - serializedVersion: 3
  199. time: 0.3333334
  200. value: {x: 0, y: 0, z: 0.47697586, w: 0.8789164}
  201. inSlope: {x: 0, y: 0, z: 2.1291866, w: -1.1586614}
  202. outSlope: {x: 0, y: 0, z: 2.1291866, w: -1.1586614}
  203. tangentMode: 0
  204. weightedMode: 0
  205. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  206. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  207. - serializedVersion: 3
  208. time: 0.35000008
  209. value: {x: 0, y: 0, z: 0.51308614, w: 0.85833716}
  210. inSlope: {x: 0, y: 0, z: 2.1659606, w: -1.2962604}
  211. outSlope: {x: 0, y: 0, z: 2.1659606, w: -1.2962604}
  212. tangentMode: 0
  213. weightedMode: 0
  214. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  215. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  216. - serializedVersion: 3
  217. time: 0.36666676
  218. value: {x: 0, y: 0, z: 0.5491746, w: 0.83570766}
  219. inSlope: {x: 0, y: 0, z: 2.1295702, w: -1.3990551}
  220. outSlope: {x: 0, y: 0, z: 2.1295702, w: -1.3990551}
  221. tangentMode: 0
  222. weightedMode: 0
  223. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  224. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  225. - serializedVersion: 3
  226. time: 0.38333344
  227. value: {x: 0, y: 0, z: 0.5840719, w: 0.81170195}
  228. inSlope: {x: 0, y: 0, z: 2.0266612, w: -1.4559859}
  229. outSlope: {x: 0, y: 0, z: 2.0266612, w: -1.4559859}
  230. tangentMode: 0
  231. weightedMode: 0
  232. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  233. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  234. - serializedVersion: 3
  235. time: 0.40000013
  236. value: {x: 0, y: 0, z: 0.61673003, w: 0.78717476}
  237. inSlope: {x: 0, y: 0, z: 1.8648651, w: -1.4568818}
  238. outSlope: {x: 0, y: 0, z: 1.8648651, w: -1.4568818}
  239. tangentMode: 0
  240. weightedMode: 0
  241. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  242. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  243. - serializedVersion: 3
  244. time: 0.4166668
  245. value: {x: 0, y: 0, z: 0.6462341, w: 0.7631392}
  246. inSlope: {x: 0, y: 0, z: 1.6520588, w: -1.3932295}
  247. outSlope: {x: 0, y: 0, z: 1.6520588, w: -1.3932295}
  248. tangentMode: 0
  249. weightedMode: 0
  250. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  251. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  252. - serializedVersion: 3
  253. time: 0.4333335
  254. value: {x: 0, y: 0, z: 0.6717987, w: 0.74073374}
  255. inSlope: {x: 0, y: 0, z: 1.3954252, w: -1.2587919}
  256. outSlope: {x: 0, y: 0, z: 1.3954252, w: -1.2587919}
  257. tangentMode: 0
  258. weightedMode: 0
  259. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  260. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  261. - serializedVersion: 3
  262. time: 0.45000017
  263. value: {x: 0, y: 0, z: 0.6927483, w: 0.7211794}
  264. inSlope: {x: 0, y: 0, z: 1.100411, w: -1.0500572}
  265. outSlope: {x: 0, y: 0, z: 1.100411, w: -1.0500572}
  266. tangentMode: 0
  267. weightedMode: 0
  268. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  269. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  270. - serializedVersion: 3
  271. time: 0.46666685
  272. value: {x: 0, y: 0, z: 0.7084791, w: 0.7057318}
  273. inSlope: {x: 0, y: 0, z: 0.7696414, w: -0.7665694}
  274. outSlope: {x: 0, y: 0, z: 0.7696414, w: -0.7665694}
  275. tangentMode: 0
  276. weightedMode: 0
  277. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  278. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  279. - serializedVersion: 3
  280. time: 0.48333353
  281. value: {x: 0, y: 0, z: 0.71840304, w: 0.6956271}
  282. inSlope: {x: 0, y: 0, z: 0.40187636, w: -0.41124982}
  283. outSlope: {x: 0, y: 0, z: 0.40187636, w: -0.41124982}
  284. tangentMode: 0
  285. weightedMode: 0
  286. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  287. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  288. - serializedVersion: 3
  289. time: 0.5
  290. value: {x: 0, y: 0, z: 0.72187495, w: 0.6920235}
  291. inSlope: {x: 0, y: 0, z: 0.20831709, w: -0.21621719}
  292. outSlope: {x: 0, y: 0, z: 0.20831709, w: -0.21621719}
  293. tangentMode: 0
  294. weightedMode: 0
  295. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  296. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  297. m_PreInfinity: 2
  298. m_PostInfinity: 2
  299. m_RotationOrder: 4
  300. path: FailedPiece
  301. - curve:
  302. serializedVersion: 2
  303. m_Curve:
  304. - serializedVersion: 3
  305. time: 0
  306. value: {x: 0, y: 0, z: -0.969005, w: -0.2470412}
  307. inSlope: {x: 0, y: 0, z: 0.06458044, w: -0.25104225}
  308. outSlope: {x: 0, y: 0, z: 0.06458044, w: -0.25104225}
  309. tangentMode: 0
  310. weightedMode: 0
  311. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  312. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  313. - serializedVersion: 3
  314. time: 0.016666668
  315. value: {x: 0, y: 0, z: -0.96792865, w: -0.25122523}
  316. inSlope: {x: 0, y: 0, z: 0.12620687, w: -0.4785159}
  317. outSlope: {x: 0, y: 0, z: 0.12620687, w: -0.4785159}
  318. tangentMode: 0
  319. weightedMode: 0
  320. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  321. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  322. - serializedVersion: 3
  323. time: 0.033333335
  324. value: {x: 0, y: 0, z: -0.9647981, w: -0.26299173}
  325. inSlope: {x: 0, y: 0, z: 0.24780747, w: -0.89727664}
  326. outSlope: {x: 0, y: 0, z: 0.24780747, w: -0.89727664}
  327. tangentMode: 0
  328. weightedMode: 0
  329. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  330. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  331. - serializedVersion: 3
  332. time: 0.050000004
  333. value: {x: 0, y: 0, z: -0.9596684, w: -0.28113446}
  334. inSlope: {x: 0, y: 0, z: 0.36782384, w: -1.2429053}
  335. outSlope: {x: 0, y: 0, z: 0.36782384, w: -1.2429053}
  336. tangentMode: 0
  337. weightedMode: 0
  338. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  339. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  340. - serializedVersion: 3
  341. time: 0.06666667
  342. value: {x: 0, y: 0, z: -0.9525373, w: -0.3044219}
  343. inSlope: {x: 0, y: 0, z: 0.48756844, w: -1.5143038}
  344. outSlope: {x: 0, y: 0, z: 0.48756844, w: -1.5143038}
  345. tangentMode: 0
  346. weightedMode: 0
  347. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  348. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  349. - serializedVersion: 3
  350. time: 0.083333336
  351. value: {x: 0, y: 0, z: -0.9434161, w: -0.33161125}
  352. inSlope: {x: 0, y: 0, z: 0.60452884, w: -1.7112423}
  353. outSlope: {x: 0, y: 0, z: 0.60452884, w: -1.7112423}
  354. tangentMode: 0
  355. weightedMode: 0
  356. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  357. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  358. - serializedVersion: 3
  359. time: 0.1
  360. value: {x: 0, y: 0, z: -0.93238634, w: -0.3614633}
  361. inSlope: {x: 0, y: 0, z: 0.71327275, w: -1.8345103}
  362. outSlope: {x: 0, y: 0, z: 0.71327275, w: -1.8345103}
  363. tangentMode: 0
  364. weightedMode: 0
  365. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  366. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  367. - serializedVersion: 3
  368. time: 0.11666667
  369. value: {x: 0, y: 0, z: -0.91964036, w: -0.3927616}
  370. inSlope: {x: 0, y: 0, z: 0.80633986, w: -1.8859556}
  371. outSlope: {x: 0, y: 0, z: 0.80633986, w: -1.8859556}
  372. tangentMode: 0
  373. weightedMode: 0
  374. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  375. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  376. - serializedVersion: 3
  377. time: 0.13333334
  378. value: {x: 0, y: 0, z: -0.90550834, w: -0.4243285}
  379. inSlope: {x: 0, y: 0, z: 0.87516177, w: -1.8685088}
  380. outSlope: {x: 0, y: 0, z: 0.87516177, w: -1.8685088}
  381. tangentMode: 0
  382. weightedMode: 0
  383. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  384. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  385. - serializedVersion: 3
  386. time: 0.15
  387. value: {x: 0, y: 0, z: -0.8904683, w: -0.45504522}
  388. inSlope: {x: 0, y: 0, z: 0.91093725, w: -1.7860339}
  389. outSlope: {x: 0, y: 0, z: 0.91093725, w: -1.7860339}
  390. tangentMode: 0
  391. weightedMode: 0
  392. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  393. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  394. - serializedVersion: 3
  395. time: 0.16666667
  396. value: {x: 0, y: 0, z: -0.87514377, w: -0.48386297}
  397. inSlope: {x: 0, y: 0, z: 0.90544766, w: -1.6429586}
  398. outSlope: {x: 0, y: 0, z: 0.90544766, w: -1.6429586}
  399. tangentMode: 0
  400. weightedMode: 0
  401. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  402. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  403. - serializedVersion: 3
  404. time: 0.18333334
  405. value: {x: 0, y: 0, z: -0.8602867, w: -0.5098105}
  406. inSlope: {x: 0, y: 0, z: 0.85179096, w: -1.4438055}
  407. outSlope: {x: 0, y: 0, z: 0.85179096, w: -1.4438055}
  408. tangentMode: 0
  409. weightedMode: 0
  410. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  411. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  412. - serializedVersion: 3
  413. time: 0.2
  414. value: {x: 0, y: 0, z: -0.84675074, w: -0.5319898}
  415. inSlope: {x: 0, y: 0, z: 0.80677277, w: -1.2860514}
  416. outSlope: {x: 0, y: 0, z: 0.80677277, w: -1.2860514}
  417. tangentMode: 0
  418. weightedMode: 0
  419. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  420. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  421. - serializedVersion: 3
  422. time: 0.21666667
  423. value: {x: 0, y: 0, z: -0.8333943, w: -0.5526789}
  424. inSlope: {x: 0, y: 0, z: 0.8463586, w: -1.2738438}
  425. outSlope: {x: 0, y: 0, z: 0.8463586, w: -1.2738438}
  426. tangentMode: 0
  427. weightedMode: 0
  428. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  429. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  430. - serializedVersion: 3
  431. time: 0.23333333
  432. value: {x: 0, y: 0, z: -0.8185388, w: -0.57445127}
  433. inSlope: {x: 0, y: 0, z: 0.932563, w: -1.3269086}
  434. outSlope: {x: 0, y: 0, z: 0.932563, w: -1.3269086}
  435. tangentMode: 0
  436. weightedMode: 0
  437. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  438. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  439. - serializedVersion: 3
  440. time: 0.25
  441. value: {x: 0, y: 0, z: -0.80230886, w: -0.59690917}
  442. inSlope: {x: 0, y: 0, z: 1.0103163, w: -1.3565965}
  443. outSlope: {x: 0, y: 0, z: 1.0103163, w: -1.3565965}
  444. tangentMode: 0
  445. weightedMode: 0
  446. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  447. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  448. - serializedVersion: 3
  449. time: 0.26666668
  450. value: {x: 0, y: 0, z: -0.78486156, w: -0.61967117}
  451. inSlope: {x: 0, y: 0, z: 1.0775731, w: -1.3640004}
  452. outSlope: {x: 0, y: 0, z: 1.0775731, w: -1.3640004}
  453. tangentMode: 0
  454. weightedMode: 0
  455. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  456. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  457. - serializedVersion: 3
  458. time: 0.28333336
  459. value: {x: 0, y: 0, z: -0.7663897, w: -0.6423759}
  460. inSlope: {x: 0, y: 0, z: 1.1321774, w: -1.3504624}
  461. outSlope: {x: 0, y: 0, z: 1.1321774, w: -1.3504624}
  462. tangentMode: 0
  463. weightedMode: 0
  464. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  465. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  466. - serializedVersion: 3
  467. time: 0.30000004
  468. value: {x: 0, y: 0, z: -0.7471223, w: -0.6646866}
  469. inSlope: {x: 0, y: 0, z: 1.1720046, w: -1.3175858}
  470. outSlope: {x: 0, y: 0, z: 1.1720046, w: -1.3175858}
  471. tangentMode: 0
  472. weightedMode: 0
  473. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  474. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  475. - serializedVersion: 3
  476. time: 0.31666672
  477. value: {x: 0, y: 0, z: -0.7273229, w: -0.68629545}
  478. inSlope: {x: 0, y: 0, z: 1.1950036, w: -1.2671406}
  479. outSlope: {x: 0, y: 0, z: 1.1950036, w: -1.2671406}
  480. tangentMode: 0
  481. weightedMode: 0
  482. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  483. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  484. - serializedVersion: 3
  485. time: 0.3333334
  486. value: {x: 0, y: 0, z: -0.7072888, w: -0.7069247}
  487. inSlope: {x: 0, y: 0, z: 1.1992558, w: -1.2009921}
  488. outSlope: {x: 0, y: 0, z: 1.1992558, w: -1.2009921}
  489. tangentMode: 0
  490. weightedMode: 0
  491. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  492. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  493. - serializedVersion: 3
  494. time: 0.35000008
  495. value: {x: 0, y: 0, z: -0.68734765, w: -0.72632855}
  496. inSlope: {x: 0, y: 0, z: 1.1831071, w: -1.1210855}
  497. outSlope: {x: 0, y: 0, z: 1.1831071, w: -1.1210855}
  498. tangentMode: 0
  499. weightedMode: 0
  500. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  501. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  502. - serializedVersion: 3
  503. time: 0.36666676
  504. value: {x: 0, y: 0, z: -0.66785187, w: -0.7442942}
  505. inSlope: {x: 0, y: 0, z: 1.1451467, w: -1.0292878}
  506. outSlope: {x: 0, y: 0, z: 1.1451467, w: -1.0292878}
  507. tangentMode: 0
  508. weightedMode: 0
  509. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  510. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  511. - serializedVersion: 3
  512. time: 0.38333344
  513. value: {x: 0, y: 0, z: -0.64917606, w: -0.7606382}
  514. inSlope: {x: 0, y: 0, z: 1.0842643, w: -0.9273229}
  515. outSlope: {x: 0, y: 0, z: 1.0842643, w: -0.9273229}
  516. tangentMode: 0
  517. weightedMode: 0
  518. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  519. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  520. - serializedVersion: 3
  521. time: 0.40000013
  522. value: {x: 0, y: 0, z: -0.6317097, w: -0.775205}
  523. inSlope: {x: 0, y: 0, z: 0.99970675, w: -0.81669796}
  524. outSlope: {x: 0, y: 0, z: 0.99970675, w: -0.81669796}
  525. tangentMode: 0
  526. weightedMode: 0
  527. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  528. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  529. - serializedVersion: 3
  530. time: 0.4166668
  531. value: {x: 0, y: 0, z: -0.6158525, w: -0.78786147}
  532. inSlope: {x: 0, y: 0, z: 0.8910452, w: -0.69854677}
  533. outSlope: {x: 0, y: 0, z: 0.8910452, w: -0.69854677}
  534. tangentMode: 0
  535. weightedMode: 0
  536. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  537. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  538. - serializedVersion: 3
  539. time: 0.4333335
  540. value: {x: 0, y: 0, z: -0.60200816, w: -0.7984899}
  541. inSlope: {x: 0, y: 0, z: 0.75821334, w: -0.57355773}
  542. outSlope: {x: 0, y: 0, z: 0.75821334, w: -0.57355773}
  543. tangentMode: 0
  544. weightedMode: 0
  545. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  546. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  547. - serializedVersion: 3
  548. time: 0.45000017
  549. value: {x: 0, y: 0, z: -0.5905787, w: -0.8069801}
  550. inSlope: {x: 0, y: 0, z: 0.60149026, w: -0.4418578}
  551. outSlope: {x: 0, y: 0, z: 0.60149026, w: -0.4418578}
  552. tangentMode: 0
  553. weightedMode: 0
  554. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  555. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  556. - serializedVersion: 3
  557. time: 0.46666685
  558. value: {x: 0, y: 0, z: -0.5819585, w: -0.81321853}
  559. inSlope: {x: 0, y: 0, z: 0.421566, w: -0.3029517}
  560. outSlope: {x: 0, y: 0, z: 0.421566, w: -0.3029517}
  561. tangentMode: 0
  562. weightedMode: 0
  563. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  564. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  565. - serializedVersion: 3
  566. time: 0.48333353
  567. value: {x: 0, y: 0, z: -0.57652646, w: -0.8170785}
  568. inSlope: {x: 0, y: 0, z: 0.21952681, w: -0.1556132}
  569. outSlope: {x: 0, y: 0, z: 0.21952681, w: -0.1556132}
  570. tangentMode: 0
  571. weightedMode: 0
  572. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  573. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  574. - serializedVersion: 3
  575. time: 0.5
  576. value: {x: 0, y: 0, z: -0.5746409, w: -0.8184056}
  577. inSlope: {x: 0, y: 0, z: 0.11313332, w: -0.07963035}
  578. outSlope: {x: 0, y: 0, z: 0.11313332, w: -0.07963035}
  579. tangentMode: 0
  580. weightedMode: 0
  581. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  582. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  583. m_PreInfinity: 2
  584. m_PostInfinity: 2
  585. m_RotationOrder: 4
  586. path: FailedPiece2
  587. - curve:
  588. serializedVersion: 2
  589. m_Curve:
  590. - serializedVersion: 3
  591. time: 0
  592. value: {x: 0, y: 0, z: -0.8431006, w: 0.53775585}
  593. inSlope: {x: 0, y: 0, z: 0.202893, w: 0.3159177}
  594. outSlope: {x: 0, y: 0, z: 0.202893, w: 0.3159177}
  595. tangentMode: 0
  596. weightedMode: 0
  597. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  598. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  599. - serializedVersion: 3
  600. time: 0.016666668
  601. value: {x: 0, y: 0, z: -0.83971906, w: 0.54302114}
  602. inSlope: {x: 0, y: 0, z: 0.39158103, w: 0.59808785}
  603. outSlope: {x: 0, y: 0, z: 0.39158103, w: 0.59808785}
  604. tangentMode: 0
  605. weightedMode: 0
  606. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  607. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  608. - serializedVersion: 3
  609. time: 0.033333335
  610. value: {x: 0, y: 0, z: -0.8300479, w: 0.5576921}
  611. inSlope: {x: 0, y: 0, z: 0.7523649, w: 1.1083655}
  612. outSlope: {x: 0, y: 0, z: 0.7523649, w: 1.1083655}
  613. tangentMode: 0
  614. weightedMode: 0
  615. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  616. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  617. - serializedVersion: 3
  618. time: 0.050000004
  619. value: {x: 0, y: 0, z: -0.8146402, w: 0.57996666}
  620. inSlope: {x: 0, y: 0, z: 1.082325, w: 1.5079288}
  621. outSlope: {x: 0, y: 0, z: 1.082325, w: 1.5079288}
  622. tangentMode: 0
  623. weightedMode: 0
  624. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  625. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  626. - serializedVersion: 3
  627. time: 0.06666667
  628. value: {x: 0, y: 0, z: -0.7939704, w: 0.6079564}
  629. inSlope: {x: 0, y: 0, z: 1.382053, w: 1.7939062}
  630. outSlope: {x: 0, y: 0, z: 1.382053, w: 1.7939062}
  631. tangentMode: 0
  632. weightedMode: 0
  633. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  634. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  635. - serializedVersion: 3
  636. time: 0.083333336
  637. value: {x: 0, y: 0, z: -0.7685718, w: 0.63976353}
  638. inSlope: {x: 0, y: 0, z: 1.6449506, w: 1.9679048}
  639. outSlope: {x: 0, y: 0, z: 1.6449506, w: 1.9679048}
  640. tangentMode: 0
  641. weightedMode: 0
  642. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  643. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  644. - serializedVersion: 3
  645. time: 0.1
  646. value: {x: 0, y: 0, z: -0.7391387, w: 0.6735532}
  647. inSlope: {x: 0, y: 0, z: 1.859429, w: 2.0357647}
  648. outSlope: {x: 0, y: 0, z: 1.859429, w: 2.0357647}
  649. tangentMode: 0
  650. weightedMode: 0
  651. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  652. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  653. - serializedVersion: 3
  654. time: 0.11666667
  655. value: {x: 0, y: 0, z: -0.70659083, w: 0.70762235}
  656. inSlope: {x: 0, y: 0, z: 2.0111647, w: 2.0072184}
  657. outSlope: {x: 0, y: 0, z: 2.0111647, w: 2.0072184}
  658. tangentMode: 0
  659. weightedMode: 0
  660. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  661. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  662. - serializedVersion: 3
  663. time: 0.13333334
  664. value: {x: 0, y: 0, z: -0.6720999, w: 0.7404605}
  665. inSlope: {x: 0, y: 0, z: 2.0852063, w: 1.8951609}
  666. outSlope: {x: 0, y: 0, z: 2.0852063, w: 1.8951609}
  667. tangentMode: 0
  668. weightedMode: 0
  669. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  670. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  671. - serializedVersion: 3
  672. time: 0.15
  673. value: {x: 0, y: 0, z: -0.63708395, w: 0.7707944}
  674. inSlope: {x: 0, y: 0, z: 2.0677724, w: 1.7144699}
  675. outSlope: {x: 0, y: 0, z: 2.0677724, w: 1.7144699}
  676. tangentMode: 0
  677. weightedMode: 0
  678. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  679. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  680. - serializedVersion: 3
  681. time: 0.16666667
  682. value: {x: 0, y: 0, z: -0.60317415, w: 0.7976095}
  683. inSlope: {x: 0, y: 0, z: 1.9476755, w: 1.4803989}
  684. outSlope: {x: 0, y: 0, z: 1.9476755, w: 1.4803989}
  685. tangentMode: 0
  686. weightedMode: 0
  687. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  688. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  689. - serializedVersion: 3
  690. time: 0.18333334
  691. value: {x: 0, y: 0, z: -0.57216144, w: 0.820141}
  692. inSlope: {x: 0, y: 0, z: 1.7172111, w: 1.206565}
  693. outSlope: {x: 0, y: 0, z: 1.7172111, w: 1.206565}
  694. tangentMode: 0
  695. weightedMode: 0
  696. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  697. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  698. - serializedVersion: 3
  699. time: 0.2
  700. value: {x: 0, y: 0, z: -0.5459338, w: 0.83782834}
  701. inSlope: {x: 0, y: 0, z: 1.5047551, w: 0.98407936}
  702. outSlope: {x: 0, y: 0, z: 1.5047551, w: 0.98407936}
  703. tangentMode: 0
  704. weightedMode: 0
  705. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  706. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  707. - serializedVersion: 3
  708. time: 0.21666667
  709. value: {x: 0, y: 0, z: -0.52200294, w: 0.85294366}
  710. inSlope: {x: 0, y: 0, z: 1.4751436, w: 0.901748}
  711. outSlope: {x: 0, y: 0, z: 1.4751436, w: 0.901748}
  712. tangentMode: 0
  713. weightedMode: 0
  714. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  715. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  716. - serializedVersion: 3
  717. time: 0.23333333
  718. value: {x: 0, y: 0, z: -0.49676234, w: 0.8678866}
  719. inSlope: {x: 0, y: 0, z: 1.5459709, w: 0.88415986}
  720. outSlope: {x: 0, y: 0, z: 1.5459709, w: 0.88415986}
  721. tangentMode: 0
  722. weightedMode: 0
  723. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  724. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  725. - serializedVersion: 3
  726. time: 0.25
  727. value: {x: 0, y: 0, z: -0.47047058, w: 0.88241565}
  728. inSlope: {x: 0, y: 0, z: 1.6006237, w: 0.85299575}
  729. outSlope: {x: 0, y: 0, z: 1.6006237, w: 0.85299575}
  730. tangentMode: 0
  731. weightedMode: 0
  732. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  733. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  734. - serializedVersion: 3
  735. time: 0.26666668
  736. value: {x: 0, y: 0, z: -0.4434082, w: 0.8963198}
  737. inSlope: {x: 0, y: 0, z: 1.637844, w: 0.81017303}
  738. outSlope: {x: 0, y: 0, z: 1.637844, w: 0.81017303}
  739. tangentMode: 0
  740. weightedMode: 0
  741. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  742. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  743. - serializedVersion: 3
  744. time: 0.28333336
  745. value: {x: 0, y: 0, z: -0.41587573, w: 0.90942144}
  746. inSlope: {x: 0, y: 0, z: 1.656487, w: 0.7577628}
  747. outSlope: {x: 0, y: 0, z: 1.656487, w: 0.7577628}
  748. tangentMode: 0
  749. weightedMode: 0
  750. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  751. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  752. - serializedVersion: 3
  753. time: 0.30000004
  754. value: {x: 0, y: 0, z: -0.3881919, w: 0.9215786}
  755. inSlope: {x: 0, y: 0, z: 1.6555591, w: 0.6979245}
  756. outSlope: {x: 0, y: 0, z: 1.6555591, w: 0.6979245}
  757. tangentMode: 0
  758. weightedMode: 0
  759. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  760. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  761. - serializedVersion: 3
  762. time: 0.31666672
  763. value: {x: 0, y: 0, z: -0.3606904, w: 0.9326856}
  764. inSlope: {x: 0, y: 0, z: 1.634249, w: 0.6328417}
  765. outSlope: {x: 0, y: 0, z: 1.634249, w: 0.6328417}
  766. tangentMode: 0
  767. weightedMode: 0
  768. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  769. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  770. - serializedVersion: 3
  771. time: 0.3333334
  772. value: {x: 0, y: 0, z: -0.3337169, w: 0.9426733}
  773. inSlope: {x: 0, y: 0, z: 1.5919318, w: 0.5646528}
  774. outSlope: {x: 0, y: 0, z: 1.5919318, w: 0.5646528}
  775. tangentMode: 0
  776. weightedMode: 0
  777. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  778. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  779. - serializedVersion: 3
  780. time: 0.35000008
  781. value: {x: 0, y: 0, z: -0.30762595, w: 0.9515074}
  782. inSlope: {x: 0, y: 0, z: 1.5281918, w: 0.4953696}
  783. outSlope: {x: 0, y: 0, z: 1.5281918, w: 0.4953696}
  784. tangentMode: 0
  785. weightedMode: 0
  786. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  787. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  788. - serializedVersion: 3
  789. time: 0.36666676
  790. value: {x: 0, y: 0, z: -0.28277713, w: 0.95918566}
  791. inSlope: {x: 0, y: 0, z: 1.4427993, w: 0.42680883}
  792. outSlope: {x: 0, y: 0, z: 1.4427993, w: 0.42680883}
  793. tangentMode: 0
  794. weightedMode: 0
  795. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  796. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  797. - serializedVersion: 3
  798. time: 0.38333344
  799. value: {x: 0, y: 0, z: -0.2595326, w: 0.96573436}
  800. inSlope: {x: 0, y: 0, z: 1.3356934, w: 0.3605172}
  801. outSlope: {x: 0, y: 0, z: 1.3356934, w: 0.3605172}
  802. tangentMode: 0
  803. weightedMode: 0
  804. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  805. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  806. - serializedVersion: 3
  807. time: 0.40000013
  808. value: {x: 0, y: 0, z: -0.23825398, w: 0.9712029}
  809. inSlope: {x: 0, y: 0, z: 1.2069658, w: 0.297691}
  810. outSlope: {x: 0, y: 0, z: 1.2069658, w: 0.297691}
  811. tangentMode: 0
  812. weightedMode: 0
  813. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  814. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  815. - serializedVersion: 3
  816. time: 0.4166668
  817. value: {x: 0, y: 0, z: -0.21930037, w: 0.9756574}
  818. inSlope: {x: 0, y: 0, z: 1.0568217, w: 0.2391098}
  819. outSlope: {x: 0, y: 0, z: 1.0568217, w: 0.2391098}
  820. tangentMode: 0
  821. weightedMode: 0
  822. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  823. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  824. - serializedVersion: 3
  825. time: 0.4333335
  826. value: {x: 0, y: 0, z: -0.20302656, w: 0.97917324}
  827. inSlope: {x: 0, y: 0, z: 0.8855516, w: 0.18506512}
  828. outSlope: {x: 0, y: 0, z: 0.8855516, w: 0.18506512}
  829. tangentMode: 0
  830. weightedMode: 0
  831. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  832. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  833. - serializedVersion: 3
  834. time: 0.45000017
  835. value: {x: 0, y: 0, z: -0.18978196, w: 0.98182625}
  836. inSlope: {x: 0, y: 0, z: 0.6935074, w: 0.13529766}
  837. outSlope: {x: 0, y: 0, z: 0.6935074, w: 0.13529766}
  838. tangentMode: 0
  839. weightedMode: 0
  840. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  841. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  842. - serializedVersion: 3
  843. time: 0.46666685
  844. value: {x: 0, y: 0, z: -0.17990963, w: 0.98368317}
  845. inSlope: {x: 0, y: 0, z: 0.48108464, w: 0.08892946}
  846. outSlope: {x: 0, y: 0, z: 0.48108464, w: 0.08892946}
  847. tangentMode: 0
  848. weightedMode: 0
  849. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  850. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  851. - serializedVersion: 3
  852. time: 0.48333353
  853. value: {x: 0, y: 0, z: -0.1737458, w: 0.98479056}
  854. inSlope: {x: 0, y: 0, z: 0.24870127, w: 0.04440318}
  855. outSlope: {x: 0, y: 0, z: 0.24870127, w: 0.04440318}
  856. tangentMode: 0
  857. weightedMode: 0
  858. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  859. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  860. - serializedVersion: 3
  861. time: 0.5
  862. value: {x: 0, y: 0, z: -0.17161961, w: 0.9851633}
  863. inSlope: {x: 0, y: 0, z: 0.12757272, w: 0.022362731}
  864. outSlope: {x: 0, y: 0, z: 0.12757272, w: 0.022362731}
  865. tangentMode: 0
  866. weightedMode: 0
  867. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  868. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}
  869. m_PreInfinity: 2
  870. m_PostInfinity: 2
  871. m_RotationOrder: 4
  872. path: FailedPiece3
  873. m_CompressedRotationCurves: []
  874. m_EulerCurves: []
  875. m_PositionCurves: []
  876. m_ScaleCurves:
  877. - curve:
  878. serializedVersion: 2
  879. m_Curve:
  880. - serializedVersion: 3
  881. time: 0
  882. value: {x: 0, y: 0, z: 0}
  883. inSlope: {x: 11.921175, y: 12.116646, z: 0}
  884. outSlope: {x: 11.921175, y: 12.116646, z: 0}
  885. tangentMode: 0
  886. weightedMode: 0
  887. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  888. outWeight: {x: 0.07483941, y: 0.07986595, z: 0.33333334}
  889. - serializedVersion: 3
  890. time: 0.5
  891. value: {x: 1, y: 1, z: 1}
  892. inSlope: {x: 0, y: 0, z: 0}
  893. outSlope: {x: 0, y: 0, z: 0}
  894. tangentMode: 0
  895. weightedMode: 0
  896. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  897. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  898. m_PreInfinity: 2
  899. m_PostInfinity: 2
  900. m_RotationOrder: 4
  901. path: FailedGlow
  902. - curve:
  903. serializedVersion: 2
  904. m_Curve:
  905. - serializedVersion: 3
  906. time: 0
  907. value: {x: 0, y: 0, z: 0}
  908. inSlope: {x: 0, y: 0, z: 0}
  909. outSlope: {x: 0, y: 0, z: 0}
  910. tangentMode: 0
  911. weightedMode: 0
  912. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  913. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  914. - serializedVersion: 3
  915. time: 0.083333336
  916. value: {x: 0, y: 0, z: 0}
  917. inSlope: {x: 0, y: 0, z: 0}
  918. outSlope: {x: 0, y: 0, z: 0}
  919. tangentMode: 0
  920. weightedMode: 0
  921. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  922. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  923. - serializedVersion: 3
  924. time: 0.2
  925. value: {x: 1, y: 1, z: 1}
  926. inSlope: {x: 0, y: 0, z: 0}
  927. outSlope: {x: 0, y: 0, z: 0}
  928. tangentMode: 0
  929. weightedMode: 0
  930. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  931. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  932. m_PreInfinity: 2
  933. m_PostInfinity: 2
  934. m_RotationOrder: 4
  935. path: Failed
  936. - curve:
  937. serializedVersion: 2
  938. m_Curve:
  939. - serializedVersion: 3
  940. time: 0
  941. value: {x: 0, y: 0, z: 0}
  942. inSlope: {x: 0, y: 0, z: 0}
  943. outSlope: {x: 0, y: 0, z: 0}
  944. tangentMode: 0
  945. weightedMode: 0
  946. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  947. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  948. - serializedVersion: 3
  949. time: 0.06666667
  950. value: {x: 1, y: 1, z: 1}
  951. inSlope: {x: 0, y: 0, z: 0}
  952. outSlope: {x: 0, y: 0, z: 0}
  953. tangentMode: 0
  954. weightedMode: 0
  955. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  956. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  957. - serializedVersion: 3
  958. time: 0.5
  959. value: {x: 0, y: 0, z: 0}
  960. inSlope: {x: 0, y: 0, z: 0}
  961. outSlope: {x: 0, y: 0, z: 0}
  962. tangentMode: 0
  963. weightedMode: 0
  964. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  965. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  966. m_PreInfinity: 2
  967. m_PostInfinity: 2
  968. m_RotationOrder: 4
  969. path: FailedPiece3
  970. - curve:
  971. serializedVersion: 2
  972. m_Curve:
  973. - serializedVersion: 3
  974. time: 0
  975. value: {x: 0, y: 0, z: 0}
  976. inSlope: {x: 0, y: 0, z: 0}
  977. outSlope: {x: 0, y: 0, z: 0}
  978. tangentMode: 0
  979. weightedMode: 0
  980. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  981. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  982. - serializedVersion: 3
  983. time: 0.06666667
  984. value: {x: 1, y: 1, z: 1}
  985. inSlope: {x: 0, y: 0, z: 0}
  986. outSlope: {x: 0, y: 0, z: 0}
  987. tangentMode: 0
  988. weightedMode: 0
  989. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  990. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  991. - serializedVersion: 3
  992. time: 0.5
  993. value: {x: 0, y: 0, z: 0}
  994. inSlope: {x: 0, y: 0, z: 0}
  995. outSlope: {x: 0, y: 0, z: 0}
  996. tangentMode: 0
  997. weightedMode: 0
  998. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  999. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  1000. m_PreInfinity: 2
  1001. m_PostInfinity: 2
  1002. m_RotationOrder: 4
  1003. path: FailedPiece2
  1004. - curve:
  1005. serializedVersion: 2
  1006. m_Curve:
  1007. - serializedVersion: 3
  1008. time: 0
  1009. value: {x: 0, y: 0, z: 0}
  1010. inSlope: {x: 0, y: 0, z: 0}
  1011. outSlope: {x: 0, y: 0, z: 0}
  1012. tangentMode: 0
  1013. weightedMode: 0
  1014. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  1015. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  1016. - serializedVersion: 3
  1017. time: 0.06666667
  1018. value: {x: 1, y: 1, z: 1}
  1019. inSlope: {x: 0, y: 0, z: 0}
  1020. outSlope: {x: 0, y: 0, z: 0}
  1021. tangentMode: 0
  1022. weightedMode: 0
  1023. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  1024. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  1025. - serializedVersion: 3
  1026. time: 0.5
  1027. value: {x: 0, y: 0, z: 0}
  1028. inSlope: {x: 0, y: 0, z: 0}
  1029. outSlope: {x: 0, y: 0, z: 0}
  1030. tangentMode: 0
  1031. weightedMode: 0
  1032. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  1033. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  1034. m_PreInfinity: 2
  1035. m_PostInfinity: 2
  1036. m_RotationOrder: 4
  1037. path: FailedPiece
  1038. m_FloatCurves:
  1039. - curve:
  1040. serializedVersion: 2
  1041. m_Curve:
  1042. - serializedVersion: 3
  1043. time: 0
  1044. value: 1
  1045. inSlope: Infinity
  1046. outSlope: Infinity
  1047. tangentMode: 103
  1048. weightedMode: 0
  1049. inWeight: 0
  1050. outWeight: 0
  1051. m_PreInfinity: 2
  1052. m_PostInfinity: 2
  1053. m_RotationOrder: 4
  1054. attribute: m_IsActive
  1055. path: FailedGlow
  1056. classID: 1
  1057. script: {fileID: 0}
  1058. - curve:
  1059. serializedVersion: 2
  1060. m_Curve:
  1061. - serializedVersion: 3
  1062. time: 0
  1063. value: 0
  1064. inSlope: 0
  1065. outSlope: 0
  1066. tangentMode: 136
  1067. weightedMode: 0
  1068. inWeight: 0.33333334
  1069. outWeight: 0.33333334
  1070. - serializedVersion: 3
  1071. time: 0.2
  1072. value: 1
  1073. inSlope: 0
  1074. outSlope: 0
  1075. tangentMode: 136
  1076. weightedMode: 0
  1077. inWeight: 0.33333334
  1078. outWeight: 0.33333334
  1079. - serializedVersion: 3
  1080. time: 0.5
  1081. value: 0
  1082. inSlope: 0
  1083. outSlope: 0
  1084. tangentMode: 136
  1085. weightedMode: 0
  1086. inWeight: 0.33333334
  1087. outWeight: 0.33333334
  1088. m_PreInfinity: 2
  1089. m_PostInfinity: 2
  1090. m_RotationOrder: 4
  1091. attribute: m_Color.a
  1092. path: FailedGlow
  1093. classID: 114
  1094. script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
  1095. - curve:
  1096. serializedVersion: 2
  1097. m_Curve:
  1098. - serializedVersion: 3
  1099. time: 0
  1100. value: 0
  1101. inSlope: Infinity
  1102. outSlope: Infinity
  1103. tangentMode: 103
  1104. weightedMode: 0
  1105. inWeight: 0
  1106. outWeight: 0
  1107. - serializedVersion: 3
  1108. time: 0.083333336
  1109. value: 1
  1110. inSlope: Infinity
  1111. outSlope: Infinity
  1112. tangentMode: 103
  1113. weightedMode: 0
  1114. inWeight: 0
  1115. outWeight: 0
  1116. m_PreInfinity: 2
  1117. m_PostInfinity: 2
  1118. m_RotationOrder: 4
  1119. attribute: m_IsActive
  1120. path: Failed
  1121. classID: 1
  1122. script: {fileID: 0}
  1123. - curve:
  1124. serializedVersion: 2
  1125. m_Curve:
  1126. - serializedVersion: 3
  1127. time: 0
  1128. value: 27
  1129. inSlope: 0
  1130. outSlope: 0
  1131. tangentMode: 136
  1132. weightedMode: 0
  1133. inWeight: 0.33333334
  1134. outWeight: 0.33333334
  1135. - serializedVersion: 3
  1136. time: 0.083333336
  1137. value: 27
  1138. inSlope: 0
  1139. outSlope: 0
  1140. tangentMode: 136
  1141. weightedMode: 0
  1142. inWeight: 0.33333334
  1143. outWeight: 0.33333334
  1144. - serializedVersion: 3
  1145. time: 0.5
  1146. value: 41.3
  1147. inSlope: 0
  1148. outSlope: 0
  1149. tangentMode: 136
  1150. weightedMode: 0
  1151. inWeight: 0.33333334
  1152. outWeight: 0.33333334
  1153. m_PreInfinity: 2
  1154. m_PostInfinity: 2
  1155. m_RotationOrder: 4
  1156. attribute: m_AnchoredPosition.y
  1157. path: Failed
  1158. classID: 224
  1159. script: {fileID: 0}
  1160. - curve:
  1161. serializedVersion: 2
  1162. m_Curve:
  1163. - serializedVersion: 3
  1164. time: 0
  1165. value: 1
  1166. inSlope: 0
  1167. outSlope: 0
  1168. tangentMode: 136
  1169. weightedMode: 0
  1170. inWeight: 0.33333334
  1171. outWeight: 0.33333334
  1172. - serializedVersion: 3
  1173. time: 0.4
  1174. value: 1
  1175. inSlope: 0
  1176. outSlope: 0
  1177. tangentMode: 136
  1178. weightedMode: 0
  1179. inWeight: 0.33333334
  1180. outWeight: 0.33333334
  1181. - serializedVersion: 3
  1182. time: 0.5
  1183. value: 0
  1184. inSlope: 0
  1185. outSlope: 0
  1186. tangentMode: 136
  1187. weightedMode: 0
  1188. inWeight: 0.33333334
  1189. outWeight: 0.33333334
  1190. m_PreInfinity: 2
  1191. m_PostInfinity: 2
  1192. m_RotationOrder: 4
  1193. attribute: m_Color.a
  1194. path: Failed
  1195. classID: 114
  1196. script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3}
  1197. - curve:
  1198. serializedVersion: 2
  1199. m_Curve:
  1200. - serializedVersion: 3
  1201. time: 0
  1202. value: 1
  1203. inSlope: Infinity
  1204. outSlope: Infinity
  1205. tangentMode: 103
  1206. weightedMode: 0
  1207. inWeight: 0
  1208. outWeight: 0
  1209. m_PreInfinity: 2
  1210. m_PostInfinity: 2
  1211. m_RotationOrder: 4
  1212. attribute: m_IsActive
  1213. path: FailedPiece3
  1214. classID: 1
  1215. script: {fileID: 0}
  1216. - curve:
  1217. serializedVersion: 2
  1218. m_Curve:
  1219. - serializedVersion: 3
  1220. time: 0
  1221. value: 1
  1222. inSlope: Infinity
  1223. outSlope: Infinity
  1224. tangentMode: 103
  1225. weightedMode: 0
  1226. inWeight: 0
  1227. outWeight: 0
  1228. m_PreInfinity: 2
  1229. m_PostInfinity: 2
  1230. m_RotationOrder: 4
  1231. attribute: m_IsActive
  1232. path: FailedPiece2
  1233. classID: 1
  1234. script: {fileID: 0}
  1235. - curve:
  1236. serializedVersion: 2
  1237. m_Curve:
  1238. - serializedVersion: 3
  1239. time: 0
  1240. value: 1
  1241. inSlope: Infinity
  1242. outSlope: Infinity
  1243. tangentMode: 103
  1244. weightedMode: 0
  1245. inWeight: 0
  1246. outWeight: 0
  1247. m_PreInfinity: 2
  1248. m_PostInfinity: 2
  1249. m_RotationOrder: 4
  1250. attribute: m_IsActive
  1251. path: FailedPiece
  1252. classID: 1
  1253. script: {fileID: 0}
  1254. - curve:
  1255. serializedVersion: 2
  1256. m_Curve:
  1257. - serializedVersion: 3
  1258. time: 0
  1259. value: -14.3
  1260. inSlope: -114.78629
  1261. outSlope: -114.78629
  1262. tangentMode: 0
  1263. weightedMode: 0
  1264. inWeight: 0.33333334
  1265. outWeight: 0.19954705
  1266. - serializedVersion: 3
  1267. time: 0.26666668
  1268. value: -56.8
  1269. inSlope: -202.00395
  1270. outSlope: -202.00395
  1271. tangentMode: 0
  1272. weightedMode: 0
  1273. inWeight: 0.33333334
  1274. outWeight: 0.18422192
  1275. - serializedVersion: 3
  1276. time: 0.5
  1277. value: -108.8
  1278. inSlope: -264.33505
  1279. outSlope: -264.33505
  1280. tangentMode: 0
  1281. weightedMode: 0
  1282. inWeight: 0.14253412
  1283. outWeight: 0.33333334
  1284. m_PreInfinity: 2
  1285. m_PostInfinity: 2
  1286. m_RotationOrder: 4
  1287. attribute: m_AnchoredPosition.x
  1288. path: FailedPiece
  1289. classID: 224
  1290. script: {fileID: 0}
  1291. - curve:
  1292. serializedVersion: 2
  1293. m_Curve:
  1294. - serializedVersion: 3
  1295. time: 0
  1296. value: 8.1
  1297. inSlope: 253.29205
  1298. outSlope: 253.29205
  1299. tangentMode: 0
  1300. weightedMode: 0
  1301. inWeight: 0.33333334
  1302. outWeight: 0.11038772
  1303. - serializedVersion: 3
  1304. time: 0.26666668
  1305. value: 31.7
  1306. inSlope: -76.926285
  1307. outSlope: -76.926285
  1308. tangentMode: 0
  1309. weightedMode: 0
  1310. inWeight: 0.33333334
  1311. outWeight: 0.23153098
  1312. - serializedVersion: 3
  1313. time: 0.5
  1314. value: -22.9
  1315. inSlope: -278.66766
  1316. outSlope: -278.66766
  1317. tangentMode: 0
  1318. weightedMode: 0
  1319. inWeight: 0.21531728
  1320. outWeight: 0.33333334
  1321. m_PreInfinity: 2
  1322. m_PostInfinity: 2
  1323. m_RotationOrder: 4
  1324. attribute: m_AnchoredPosition.y
  1325. path: FailedPiece
  1326. classID: 224
  1327. script: {fileID: 0}
  1328. - curve:
  1329. serializedVersion: 2
  1330. m_Curve:
  1331. - serializedVersion: 3
  1332. time: 0
  1333. value: 14.9
  1334. inSlope: 333.56427
  1335. outSlope: 333.56427
  1336. tangentMode: 0
  1337. weightedMode: 0
  1338. inWeight: 0.33333334
  1339. outWeight: 0.20600906
  1340. - serializedVersion: 3
  1341. time: 0.2
  1342. value: 85.7
  1343. inSlope: 283.2
  1344. outSlope: 283.2
  1345. tangentMode: 136
  1346. weightedMode: 0
  1347. inWeight: 0.33333334
  1348. outWeight: 0.33333334
  1349. - serializedVersion: 3
  1350. time: 0.5
  1351. value: 156.5
  1352. inSlope: 132.4927
  1353. outSlope: 132.4927
  1354. tangentMode: 0
  1355. weightedMode: 0
  1356. inWeight: 0.19128779
  1357. outWeight: 0.33333334
  1358. m_PreInfinity: 2
  1359. m_PostInfinity: 2
  1360. m_RotationOrder: 4
  1361. attribute: m_AnchoredPosition.x
  1362. path: FailedPiece2
  1363. classID: 224
  1364. script: {fileID: 0}
  1365. - curve:
  1366. serializedVersion: 2
  1367. m_Curve:
  1368. - serializedVersion: 3
  1369. time: 0
  1370. value: 8.7
  1371. inSlope: 243.8688
  1372. outSlope: 243.8688
  1373. tangentMode: 0
  1374. weightedMode: 0
  1375. inWeight: 0.33333334
  1376. outWeight: 0.26719987
  1377. - serializedVersion: 3
  1378. time: 0.2
  1379. value: 39.7
  1380. inSlope: 0
  1381. outSlope: 0
  1382. tangentMode: 136
  1383. weightedMode: 0
  1384. inWeight: 0.33333334
  1385. outWeight: 0.33333334
  1386. - serializedVersion: 3
  1387. time: 0.5
  1388. value: -17.7
  1389. inSlope: -268.06705
  1390. outSlope: -268.06705
  1391. tangentMode: 0
  1392. weightedMode: 0
  1393. inWeight: 0.22392292
  1394. outWeight: 0.33333334
  1395. m_PreInfinity: 2
  1396. m_PostInfinity: 2
  1397. m_RotationOrder: 4
  1398. attribute: m_AnchoredPosition.y
  1399. path: FailedPiece2
  1400. classID: 224
  1401. script: {fileID: 0}
  1402. - curve:
  1403. serializedVersion: 2
  1404. m_Curve:
  1405. - serializedVersion: 3
  1406. time: 0
  1407. value: -11.8
  1408. inSlope: -437.49417
  1409. outSlope: -437.49417
  1410. tangentMode: 0
  1411. weightedMode: 0
  1412. inWeight: 0.33333334
  1413. outWeight: 0.24392213
  1414. - serializedVersion: 3
  1415. time: 0.2
  1416. value: -74.5
  1417. inSlope: -134.4
  1418. outSlope: -134.4
  1419. tangentMode: 136
  1420. weightedMode: 0
  1421. inWeight: 0.33333334
  1422. outWeight: 0.33333334
  1423. - serializedVersion: 3
  1424. time: 0.5
  1425. value: -91.3
  1426. inSlope: 0
  1427. outSlope: 0
  1428. tangentMode: 136
  1429. weightedMode: 0
  1430. inWeight: 0.33333334
  1431. outWeight: 0.33333334
  1432. m_PreInfinity: 2
  1433. m_PostInfinity: 2
  1434. m_RotationOrder: 4
  1435. attribute: m_AnchoredPosition.x
  1436. path: FailedPiece3
  1437. classID: 224
  1438. script: {fileID: 0}
  1439. - curve:
  1440. serializedVersion: 2
  1441. m_Curve:
  1442. - serializedVersion: 3
  1443. time: 0
  1444. value: -10.5
  1445. inSlope: -266.8806
  1446. outSlope: -266.8806
  1447. tangentMode: 0
  1448. weightedMode: 0
  1449. inWeight: 0.33333334
  1450. outWeight: 0.35747215
  1451. - serializedVersion: 3
  1452. time: 0.2
  1453. value: -75.3
  1454. inSlope: -333.4
  1455. outSlope: -333.4
  1456. tangentMode: 136
  1457. weightedMode: 0
  1458. inWeight: 0.33333334
  1459. outWeight: 0.33333334
  1460. - serializedVersion: 3
  1461. time: 0.5
  1462. value: -177.2
  1463. inSlope: -260.41864
  1464. outSlope: -260.41864
  1465. tangentMode: 0
  1466. weightedMode: 0
  1467. inWeight: 0.28444082
  1468. outWeight: 0.33333334
  1469. m_PreInfinity: 2
  1470. m_PostInfinity: 2
  1471. m_RotationOrder: 4
  1472. attribute: m_AnchoredPosition.y
  1473. path: FailedPiece3
  1474. classID: 224
  1475. script: {fileID: 0}
  1476. - curve:
  1477. serializedVersion: 2
  1478. m_Curve:
  1479. - serializedVersion: 3
  1480. time: 0
  1481. value: 0
  1482. inSlope: Infinity
  1483. outSlope: Infinity
  1484. tangentMode: 103
  1485. weightedMode: 0
  1486. inWeight: 0
  1487. outWeight: 0
  1488. m_PreInfinity: 2
  1489. m_PostInfinity: 2
  1490. m_RotationOrder: 4
  1491. attribute: m_IsActive
  1492. path: Ring1
  1493. classID: 1
  1494. script: {fileID: 0}
  1495. - curve:
  1496. serializedVersion: 2
  1497. m_Curve:
  1498. - serializedVersion: 3
  1499. time: 0
  1500. value: 0
  1501. inSlope: Infinity
  1502. outSlope: Infinity
  1503. tangentMode: 103
  1504. weightedMode: 0
  1505. inWeight: 0
  1506. outWeight: 0
  1507. m_PreInfinity: 2
  1508. m_PostInfinity: 2
  1509. m_RotationOrder: 4
  1510. attribute: m_IsActive
  1511. path: Glow
  1512. classID: 1
  1513. script: {fileID: 0}
  1514. - curve:
  1515. serializedVersion: 2
  1516. m_Curve:
  1517. - serializedVersion: 3
  1518. time: 0
  1519. value: 0
  1520. inSlope: Infinity
  1521. outSlope: Infinity
  1522. tangentMode: 103
  1523. weightedMode: 0
  1524. inWeight: 0
  1525. outWeight: 0
  1526. m_PreInfinity: 2
  1527. m_PostInfinity: 2
  1528. m_RotationOrder: 4
  1529. attribute: m_IsActive
  1530. path: Number
  1531. classID: 1
  1532. script: {fileID: 0}
  1533. - curve:
  1534. serializedVersion: 2
  1535. m_Curve:
  1536. - serializedVersion: 3
  1537. time: 0
  1538. value: 0
  1539. inSlope: Infinity
  1540. outSlope: Infinity
  1541. tangentMode: 103
  1542. weightedMode: 0
  1543. inWeight: 0
  1544. outWeight: 0
  1545. m_PreInfinity: 2
  1546. m_PostInfinity: 2
  1547. m_RotationOrder: 4
  1548. attribute: m_IsActive
  1549. path: Ring2
  1550. classID: 1
  1551. script: {fileID: 0}
  1552. - curve:
  1553. serializedVersion: 2
  1554. m_Curve:
  1555. - serializedVersion: 3
  1556. time: 0
  1557. value: 0
  1558. inSlope: Infinity
  1559. outSlope: Infinity
  1560. tangentMode: 103
  1561. weightedMode: 0
  1562. inWeight: 0
  1563. outWeight: 0
  1564. m_PreInfinity: 2
  1565. m_PostInfinity: 2
  1566. m_RotationOrder: 4
  1567. attribute: m_IsActive
  1568. path: Ring3
  1569. classID: 1
  1570. script: {fileID: 0}
  1571. m_PPtrCurves: []
  1572. m_SampleRate: 60
  1573. m_WrapMode: 0
  1574. m_Bounds:
  1575. m_Center: {x: 0, y: 0, z: 0}
  1576. m_Extent: {x: 0, y: 0, z: 0}
  1577. m_ClipBindingConstant:
  1578. genericBindings: []
  1579. pptrCurveMapping: []
  1580. m_AnimationClipSettings:
  1581. serializedVersion: 2
  1582. m_AdditiveReferencePoseClip: {fileID: 0}
  1583. m_AdditiveReferencePoseTime: 0
  1584. m_StartTime: 0
  1585. m_StopTime: 0.5
  1586. m_OrientationOffsetY: 0
  1587. m_Level: 0
  1588. m_CycleOffset: 0
  1589. m_HasAdditiveReferencePose: 0
  1590. m_LoopTime: 1
  1591. m_LoopBlend: 0
  1592. m_LoopBlendOrientation: 0
  1593. m_LoopBlendPositionY: 0
  1594. m_LoopBlendPositionXZ: 0
  1595. m_KeepOriginalOrientation: 0
  1596. m_KeepOriginalPositionY: 1
  1597. m_KeepOriginalPositionXZ: 0
  1598. m_HeightFromFeet: 0
  1599. m_Mirror: 0
  1600. m_EditorCurves:
  1601. - curve:
  1602. serializedVersion: 2
  1603. m_Curve:
  1604. - serializedVersion: 3
  1605. time: 0
  1606. value: 1
  1607. inSlope: Infinity
  1608. outSlope: Infinity
  1609. tangentMode: 103
  1610. weightedMode: 0
  1611. inWeight: 0
  1612. outWeight: 0
  1613. m_PreInfinity: 2
  1614. m_PostInfinity: 2
  1615. m_RotationOrder: 4
  1616. attribute: m_IsActive
  1617. path: FailedGlow
  1618. classID: 1
  1619. script: {fileID: 0}
  1620. - curve:
  1621. serializedVersion: 2
  1622. m_Curve:
  1623. - serializedVersion: 3
  1624. time: 0
  1625. value: 0
  1626. inSlope: 11.921175
  1627. outSlope: 11.921175
  1628. tangentMode: 0
  1629. weightedMode: 0
  1630. inWeight: 0.33333334
  1631. outWeight: 0.07483941
  1632. - serializedVersion: 3
  1633. time: 0.5
  1634. value: 1
  1635. inSlope: 0
  1636. outSlope: 0
  1637. tangentMode: 136
  1638. weightedMode: 0
  1639. inWeight: 0.33333334
  1640. outWeight: 0.33333334
  1641. m_PreInfinity: 2
  1642. m_PostInfinity: 2
  1643. m_RotationOrder: 4
  1644. attribute: m_LocalScale.x
  1645. path: FailedGlow
  1646. classID: 224
  1647. script: {fileID: 0}
  1648. - curve:
  1649. serializedVersion: 2
  1650. m_Curve:
  1651. - serializedVersion: 3
  1652. time: 0
  1653. value: 0
  1654. inSlope: 12.116646
  1655. outSlope: 12.116646
  1656. tangentMode: 0
  1657. weightedMode: 0
  1658. inWeight: 0.33333334
  1659. outWeight: 0.07986595
  1660. - serializedVersion: 3
  1661. time: 0.5
  1662. value: 1
  1663. inSlope: 0
  1664. outSlope: 0
  1665. tangentMode: 136
  1666. weightedMode: 0
  1667. inWeight: 0.33333334
  1668. outWeight: 0.33333334
  1669. m_PreInfinity: 2
  1670. m_PostInfinity: 2
  1671. m_RotationOrder: 4
  1672. attribute: m_LocalScale.y
  1673. path: FailedGlow
  1674. classID: 224
  1675. script: {fileID: 0}
  1676. - curve:
  1677. serializedVersion: 2
  1678. m_Curve:
  1679. - serializedVersion: 3
  1680. time: 0
  1681. value: 0
  1682. inSlope: 0
  1683. outSlope: 0
  1684. tangentMode: 136
  1685. weightedMode: 0
  1686. inWeight: 0.33333334
  1687. outWeight: 0.33333334
  1688. - serializedVersion: 3
  1689. time: 0.5
  1690. value: 1
  1691. inSlope: 0
  1692. outSlope: 0
  1693. tangentMode: 136
  1694. weightedMode: 0
  1695. inWeight: 0.33333334
  1696. outWeight: 0.33333334
  1697. m_PreInfinity: 2
  1698. m_PostInfinity: 2
  1699. m_RotationOrder: 4
  1700. attribute: m_LocalScale.z
  1701. path: FailedGlow
  1702. classID: 224
  1703. script: {fileID: 0}
  1704. - curve:
  1705. serializedVersion: 2
  1706. m_Curve:
  1707. - serializedVersion: 3
  1708. time: 0
  1709. value: 0
  1710. inSlope: 0
  1711. outSlope: 0
  1712. tangentMode: 136
  1713. weightedMode: 0
  1714. inWeight: 0.33333334
  1715. outWeight: 0.33333334
  1716. - serializedVersion: 3
  1717. time: 0.2
  1718. value: 1
  1719. inSlope: 0
  1720. outSlope: 0
  1721. tangentMode: 136
  1722. weightedMode: 0
  1723. inWeight: 0.33333334
  1724. outWeight: 0.33333334
  1725. - serializedVersion: 3
  1726. time: 0.5
  1727. value: 0
  1728. inSlope: 0
  1729. outSlope: 0
  1730. tangentMode: 136
  1731. weightedMode: 0
  1732. inWeight: 0.33333334
  1733. outWeight: 0.33333334
  1734. m_PreInfinity: 2
  1735. m_PostInfinity: 2
  1736. m_RotationOrder: 4
  1737. attribute: m_Color.a
  1738. path: FailedGlow
  1739. classID: 114
  1740. script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
  1741. - curve:
  1742. serializedVersion: 2
  1743. m_Curve:
  1744. - serializedVersion: 3
  1745. time: 0
  1746. value: 0
  1747. inSlope: Infinity
  1748. outSlope: Infinity
  1749. tangentMode: 103
  1750. weightedMode: 0
  1751. inWeight: 0
  1752. outWeight: 0
  1753. - serializedVersion: 3
  1754. time: 0.083333336
  1755. value: 1
  1756. inSlope: Infinity
  1757. outSlope: Infinity
  1758. tangentMode: 103
  1759. weightedMode: 0
  1760. inWeight: 0
  1761. outWeight: 0
  1762. m_PreInfinity: 2
  1763. m_PostInfinity: 2
  1764. m_RotationOrder: 4
  1765. attribute: m_IsActive
  1766. path: Failed
  1767. classID: 1
  1768. script: {fileID: 0}
  1769. - curve:
  1770. serializedVersion: 2
  1771. m_Curve:
  1772. - serializedVersion: 3
  1773. time: 0
  1774. value: 0
  1775. inSlope: 0
  1776. outSlope: 0
  1777. tangentMode: 136
  1778. weightedMode: 0
  1779. inWeight: 0.33333334
  1780. outWeight: 0.33333334
  1781. - serializedVersion: 3
  1782. time: 0.083333336
  1783. value: 0
  1784. inSlope: 0
  1785. outSlope: 0
  1786. tangentMode: 136
  1787. weightedMode: 0
  1788. inWeight: 0.33333334
  1789. outWeight: 0.33333334
  1790. - serializedVersion: 3
  1791. time: 0.2
  1792. value: 1
  1793. inSlope: 0
  1794. outSlope: 0
  1795. tangentMode: 136
  1796. weightedMode: 0
  1797. inWeight: 0.33333334
  1798. outWeight: 0.33333334
  1799. m_PreInfinity: 2
  1800. m_PostInfinity: 2
  1801. m_RotationOrder: 4
  1802. attribute: m_LocalScale.x
  1803. path: Failed
  1804. classID: 224
  1805. script: {fileID: 0}
  1806. - curve:
  1807. serializedVersion: 2
  1808. m_Curve:
  1809. - serializedVersion: 3
  1810. time: 0
  1811. value: 0
  1812. inSlope: 0
  1813. outSlope: 0
  1814. tangentMode: 136
  1815. weightedMode: 0
  1816. inWeight: 0.33333334
  1817. outWeight: 0.33333334
  1818. - serializedVersion: 3
  1819. time: 0.083333336
  1820. value: 0
  1821. inSlope: 0
  1822. outSlope: 0
  1823. tangentMode: 136
  1824. weightedMode: 0
  1825. inWeight: 0.33333334
  1826. outWeight: 0.33333334
  1827. - serializedVersion: 3
  1828. time: 0.2
  1829. value: 1
  1830. inSlope: 0
  1831. outSlope: 0
  1832. tangentMode: 136
  1833. weightedMode: 0
  1834. inWeight: 0.33333334
  1835. outWeight: 0.33333334
  1836. m_PreInfinity: 2
  1837. m_PostInfinity: 2
  1838. m_RotationOrder: 4
  1839. attribute: m_LocalScale.y
  1840. path: Failed
  1841. classID: 224
  1842. script: {fileID: 0}
  1843. - curve:
  1844. serializedVersion: 2
  1845. m_Curve:
  1846. - serializedVersion: 3
  1847. time: 0
  1848. value: 0
  1849. inSlope: 0
  1850. outSlope: 0
  1851. tangentMode: 136
  1852. weightedMode: 0
  1853. inWeight: 0.33333334
  1854. outWeight: 0.33333334
  1855. - serializedVersion: 3
  1856. time: 0.083333336
  1857. value: 0
  1858. inSlope: 0
  1859. outSlope: 0
  1860. tangentMode: 136
  1861. weightedMode: 0
  1862. inWeight: 0.33333334
  1863. outWeight: 0.33333334
  1864. - serializedVersion: 3
  1865. time: 0.2
  1866. value: 1
  1867. inSlope: 0
  1868. outSlope: 0
  1869. tangentMode: 136
  1870. weightedMode: 0
  1871. inWeight: 0.33333334
  1872. outWeight: 0.33333334
  1873. m_PreInfinity: 2
  1874. m_PostInfinity: 2
  1875. m_RotationOrder: 4
  1876. attribute: m_LocalScale.z
  1877. path: Failed
  1878. classID: 224
  1879. script: {fileID: 0}
  1880. - curve:
  1881. serializedVersion: 2
  1882. m_Curve:
  1883. - serializedVersion: 3
  1884. time: 0
  1885. value: 27
  1886. inSlope: 0
  1887. outSlope: 0
  1888. tangentMode: 136
  1889. weightedMode: 0
  1890. inWeight: 0.33333334
  1891. outWeight: 0.33333334
  1892. - serializedVersion: 3
  1893. time: 0.083333336
  1894. value: 27
  1895. inSlope: 0
  1896. outSlope: 0
  1897. tangentMode: 136
  1898. weightedMode: 0
  1899. inWeight: 0.33333334
  1900. outWeight: 0.33333334
  1901. - serializedVersion: 3
  1902. time: 0.5
  1903. value: 41.3
  1904. inSlope: 0
  1905. outSlope: 0
  1906. tangentMode: 136
  1907. weightedMode: 0
  1908. inWeight: 0.33333334
  1909. outWeight: 0.33333334
  1910. m_PreInfinity: 2
  1911. m_PostInfinity: 2
  1912. m_RotationOrder: 4
  1913. attribute: m_AnchoredPosition.y
  1914. path: Failed
  1915. classID: 224
  1916. script: {fileID: 0}
  1917. - curve:
  1918. serializedVersion: 2
  1919. m_Curve:
  1920. - serializedVersion: 3
  1921. time: 0
  1922. value: 1
  1923. inSlope: 0
  1924. outSlope: 0
  1925. tangentMode: 136
  1926. weightedMode: 0
  1927. inWeight: 0.33333334
  1928. outWeight: 0.33333334
  1929. - serializedVersion: 3
  1930. time: 0.4
  1931. value: 1
  1932. inSlope: 0
  1933. outSlope: 0
  1934. tangentMode: 136
  1935. weightedMode: 0
  1936. inWeight: 0.33333334
  1937. outWeight: 0.33333334
  1938. - serializedVersion: 3
  1939. time: 0.5
  1940. value: 0
  1941. inSlope: 0
  1942. outSlope: 0
  1943. tangentMode: 136
  1944. weightedMode: 0
  1945. inWeight: 0.33333334
  1946. outWeight: 0.33333334
  1947. m_PreInfinity: 2
  1948. m_PostInfinity: 2
  1949. m_RotationOrder: 4
  1950. attribute: m_Color.a
  1951. path: Failed
  1952. classID: 114
  1953. script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3}
  1954. - curve:
  1955. serializedVersion: 2
  1956. m_Curve:
  1957. - serializedVersion: 3
  1958. time: 0
  1959. value: 1
  1960. inSlope: Infinity
  1961. outSlope: Infinity
  1962. tangentMode: 103
  1963. weightedMode: 0
  1964. inWeight: 0
  1965. outWeight: 0
  1966. m_PreInfinity: 2
  1967. m_PostInfinity: 2
  1968. m_RotationOrder: 4
  1969. attribute: m_IsActive
  1970. path: FailedPiece3
  1971. classID: 1
  1972. script: {fileID: 0}
  1973. - curve:
  1974. serializedVersion: 2
  1975. m_Curve:
  1976. - serializedVersion: 3
  1977. time: 0
  1978. value: 1
  1979. inSlope: Infinity
  1980. outSlope: Infinity
  1981. tangentMode: 103
  1982. weightedMode: 0
  1983. inWeight: 0
  1984. outWeight: 0
  1985. m_PreInfinity: 2
  1986. m_PostInfinity: 2
  1987. m_RotationOrder: 4
  1988. attribute: m_IsActive
  1989. path: FailedPiece2
  1990. classID: 1
  1991. script: {fileID: 0}
  1992. - curve:
  1993. serializedVersion: 2
  1994. m_Curve:
  1995. - serializedVersion: 3
  1996. time: 0
  1997. value: 1
  1998. inSlope: Infinity
  1999. outSlope: Infinity
  2000. tangentMode: 103
  2001. weightedMode: 0
  2002. inWeight: 0
  2003. outWeight: 0
  2004. m_PreInfinity: 2
  2005. m_PostInfinity: 2
  2006. m_RotationOrder: 4
  2007. attribute: m_IsActive
  2008. path: FailedPiece
  2009. classID: 1
  2010. script: {fileID: 0}
  2011. - curve:
  2012. serializedVersion: 2
  2013. m_Curve:
  2014. - serializedVersion: 3
  2015. time: 0
  2016. value: 0
  2017. inSlope: 0
  2018. outSlope: 0
  2019. tangentMode: 136
  2020. weightedMode: 0
  2021. inWeight: 0.33333334
  2022. outWeight: 0.33333334
  2023. - serializedVersion: 3
  2024. time: 0.06666667
  2025. value: 1
  2026. inSlope: 0
  2027. outSlope: 0
  2028. tangentMode: 136
  2029. weightedMode: 0
  2030. inWeight: 0.33333334
  2031. outWeight: 0.33333334
  2032. - serializedVersion: 3
  2033. time: 0.5
  2034. value: 0
  2035. inSlope: 0
  2036. outSlope: 0
  2037. tangentMode: 136
  2038. weightedMode: 0
  2039. inWeight: 0.33333334
  2040. outWeight: 0.33333334
  2041. m_PreInfinity: 2
  2042. m_PostInfinity: 2
  2043. m_RotationOrder: 4
  2044. attribute: m_LocalScale.x
  2045. path: FailedPiece3
  2046. classID: 224
  2047. script: {fileID: 0}
  2048. - curve:
  2049. serializedVersion: 2
  2050. m_Curve:
  2051. - serializedVersion: 3
  2052. time: 0
  2053. value: 0
  2054. inSlope: 0
  2055. outSlope: 0
  2056. tangentMode: 136
  2057. weightedMode: 0
  2058. inWeight: 0.33333334
  2059. outWeight: 0.33333334
  2060. - serializedVersion: 3
  2061. time: 0.06666667
  2062. value: 1
  2063. inSlope: 0
  2064. outSlope: 0
  2065. tangentMode: 136
  2066. weightedMode: 0
  2067. inWeight: 0.33333334
  2068. outWeight: 0.33333334
  2069. - serializedVersion: 3
  2070. time: 0.5
  2071. value: 0
  2072. inSlope: 0
  2073. outSlope: 0
  2074. tangentMode: 136
  2075. weightedMode: 0
  2076. inWeight: 0.33333334
  2077. outWeight: 0.33333334
  2078. m_PreInfinity: 2
  2079. m_PostInfinity: 2
  2080. m_RotationOrder: 4
  2081. attribute: m_LocalScale.y
  2082. path: FailedPiece3
  2083. classID: 224
  2084. script: {fileID: 0}
  2085. - curve:
  2086. serializedVersion: 2
  2087. m_Curve:
  2088. - serializedVersion: 3
  2089. time: 0
  2090. value: 0
  2091. inSlope: 0
  2092. outSlope: 0
  2093. tangentMode: 136
  2094. weightedMode: 0
  2095. inWeight: 0.33333334
  2096. outWeight: 0.33333334
  2097. - serializedVersion: 3
  2098. time: 0.06666667
  2099. value: 1
  2100. inSlope: 0
  2101. outSlope: 0
  2102. tangentMode: 136
  2103. weightedMode: 0
  2104. inWeight: 0.33333334
  2105. outWeight: 0.33333334
  2106. - serializedVersion: 3
  2107. time: 0.5
  2108. value: 0
  2109. inSlope: 0
  2110. outSlope: 0
  2111. tangentMode: 136
  2112. weightedMode: 0
  2113. inWeight: 0.33333334
  2114. outWeight: 0.33333334
  2115. m_PreInfinity: 2
  2116. m_PostInfinity: 2
  2117. m_RotationOrder: 4
  2118. attribute: m_LocalScale.z
  2119. path: FailedPiece3
  2120. classID: 224
  2121. script: {fileID: 0}
  2122. - curve:
  2123. serializedVersion: 2
  2124. m_Curve:
  2125. - serializedVersion: 3
  2126. time: 0
  2127. value: 0
  2128. inSlope: 0
  2129. outSlope: 0
  2130. tangentMode: 136
  2131. weightedMode: 0
  2132. inWeight: 0.33333334
  2133. outWeight: 0.33333334
  2134. - serializedVersion: 3
  2135. time: 0.06666667
  2136. value: 1
  2137. inSlope: 0
  2138. outSlope: 0
  2139. tangentMode: 136
  2140. weightedMode: 0
  2141. inWeight: 0.33333334
  2142. outWeight: 0.33333334
  2143. - serializedVersion: 3
  2144. time: 0.5
  2145. value: 0
  2146. inSlope: 0
  2147. outSlope: 0
  2148. tangentMode: 136
  2149. weightedMode: 0
  2150. inWeight: 0.33333334
  2151. outWeight: 0.33333334
  2152. m_PreInfinity: 2
  2153. m_PostInfinity: 2
  2154. m_RotationOrder: 4
  2155. attribute: m_LocalScale.x
  2156. path: FailedPiece2
  2157. classID: 224
  2158. script: {fileID: 0}
  2159. - curve:
  2160. serializedVersion: 2
  2161. m_Curve:
  2162. - serializedVersion: 3
  2163. time: 0
  2164. value: 0
  2165. inSlope: 0
  2166. outSlope: 0
  2167. tangentMode: 136
  2168. weightedMode: 0
  2169. inWeight: 0.33333334
  2170. outWeight: 0.33333334
  2171. - serializedVersion: 3
  2172. time: 0.06666667
  2173. value: 1
  2174. inSlope: 0
  2175. outSlope: 0
  2176. tangentMode: 136
  2177. weightedMode: 0
  2178. inWeight: 0.33333334
  2179. outWeight: 0.33333334
  2180. - serializedVersion: 3
  2181. time: 0.5
  2182. value: 0
  2183. inSlope: 0
  2184. outSlope: 0
  2185. tangentMode: 136
  2186. weightedMode: 0
  2187. inWeight: 0.33333334
  2188. outWeight: 0.33333334
  2189. m_PreInfinity: 2
  2190. m_PostInfinity: 2
  2191. m_RotationOrder: 4
  2192. attribute: m_LocalScale.y
  2193. path: FailedPiece2
  2194. classID: 224
  2195. script: {fileID: 0}
  2196. - curve:
  2197. serializedVersion: 2
  2198. m_Curve:
  2199. - serializedVersion: 3
  2200. time: 0
  2201. value: 0
  2202. inSlope: 0
  2203. outSlope: 0
  2204. tangentMode: 136
  2205. weightedMode: 0
  2206. inWeight: 0.33333334
  2207. outWeight: 0.33333334
  2208. - serializedVersion: 3
  2209. time: 0.06666667
  2210. value: 1
  2211. inSlope: 0
  2212. outSlope: 0
  2213. tangentMode: 136
  2214. weightedMode: 0
  2215. inWeight: 0.33333334
  2216. outWeight: 0.33333334
  2217. - serializedVersion: 3
  2218. time: 0.5
  2219. value: 0
  2220. inSlope: 0
  2221. outSlope: 0
  2222. tangentMode: 136
  2223. weightedMode: 0
  2224. inWeight: 0.33333334
  2225. outWeight: 0.33333334
  2226. m_PreInfinity: 2
  2227. m_PostInfinity: 2
  2228. m_RotationOrder: 4
  2229. attribute: m_LocalScale.z
  2230. path: FailedPiece2
  2231. classID: 224
  2232. script: {fileID: 0}
  2233. - curve:
  2234. serializedVersion: 2
  2235. m_Curve:
  2236. - serializedVersion: 3
  2237. time: 0
  2238. value: 0
  2239. inSlope: 0
  2240. outSlope: 0
  2241. tangentMode: 136
  2242. weightedMode: 0
  2243. inWeight: 0.33333334
  2244. outWeight: 0.33333334
  2245. - serializedVersion: 3
  2246. time: 0.06666667
  2247. value: 1
  2248. inSlope: 0
  2249. outSlope: 0
  2250. tangentMode: 136
  2251. weightedMode: 0
  2252. inWeight: 0.33333334
  2253. outWeight: 0.33333334
  2254. - serializedVersion: 3
  2255. time: 0.5
  2256. value: 0
  2257. inSlope: 0
  2258. outSlope: 0
  2259. tangentMode: 136
  2260. weightedMode: 0
  2261. inWeight: 0.33333334
  2262. outWeight: 0.33333334
  2263. m_PreInfinity: 2
  2264. m_PostInfinity: 2
  2265. m_RotationOrder: 4
  2266. attribute: m_LocalScale.x
  2267. path: FailedPiece
  2268. classID: 224
  2269. script: {fileID: 0}
  2270. - curve:
  2271. serializedVersion: 2
  2272. m_Curve:
  2273. - serializedVersion: 3
  2274. time: 0
  2275. value: 0
  2276. inSlope: 0
  2277. outSlope: 0
  2278. tangentMode: 136
  2279. weightedMode: 0
  2280. inWeight: 0.33333334
  2281. outWeight: 0.33333334
  2282. - serializedVersion: 3
  2283. time: 0.06666667
  2284. value: 1
  2285. inSlope: 0
  2286. outSlope: 0
  2287. tangentMode: 136
  2288. weightedMode: 0
  2289. inWeight: 0.33333334
  2290. outWeight: 0.33333334
  2291. - serializedVersion: 3
  2292. time: 0.5
  2293. value: 0
  2294. inSlope: 0
  2295. outSlope: 0
  2296. tangentMode: 136
  2297. weightedMode: 0
  2298. inWeight: 0.33333334
  2299. outWeight: 0.33333334
  2300. m_PreInfinity: 2
  2301. m_PostInfinity: 2
  2302. m_RotationOrder: 4
  2303. attribute: m_LocalScale.y
  2304. path: FailedPiece
  2305. classID: 224
  2306. script: {fileID: 0}
  2307. - curve:
  2308. serializedVersion: 2
  2309. m_Curve:
  2310. - serializedVersion: 3
  2311. time: 0
  2312. value: 0
  2313. inSlope: 0
  2314. outSlope: 0
  2315. tangentMode: 136
  2316. weightedMode: 0
  2317. inWeight: 0.33333334
  2318. outWeight: 0.33333334
  2319. - serializedVersion: 3
  2320. time: 0.06666667
  2321. value: 1
  2322. inSlope: 0
  2323. outSlope: 0
  2324. tangentMode: 136
  2325. weightedMode: 0
  2326. inWeight: 0.33333334
  2327. outWeight: 0.33333334
  2328. - serializedVersion: 3
  2329. time: 0.5
  2330. value: 0
  2331. inSlope: 0
  2332. outSlope: 0
  2333. tangentMode: 136
  2334. weightedMode: 0
  2335. inWeight: 0.33333334
  2336. outWeight: 0.33333334
  2337. m_PreInfinity: 2
  2338. m_PostInfinity: 2
  2339. m_RotationOrder: 4
  2340. attribute: m_LocalScale.z
  2341. path: FailedPiece
  2342. classID: 224
  2343. script: {fileID: 0}
  2344. - curve:
  2345. serializedVersion: 2
  2346. m_Curve:
  2347. - serializedVersion: 3
  2348. time: 0
  2349. value: -14.3
  2350. inSlope: -114.78629
  2351. outSlope: -114.78629
  2352. tangentMode: 0
  2353. weightedMode: 0
  2354. inWeight: 0.33333334
  2355. outWeight: 0.19954705
  2356. - serializedVersion: 3
  2357. time: 0.26666668
  2358. value: -56.8
  2359. inSlope: -202.00395
  2360. outSlope: -202.00395
  2361. tangentMode: 0
  2362. weightedMode: 0
  2363. inWeight: 0.33333334
  2364. outWeight: 0.18422192
  2365. - serializedVersion: 3
  2366. time: 0.5
  2367. value: -108.8
  2368. inSlope: -264.33505
  2369. outSlope: -264.33505
  2370. tangentMode: 0
  2371. weightedMode: 0
  2372. inWeight: 0.14253412
  2373. outWeight: 0.33333334
  2374. m_PreInfinity: 2
  2375. m_PostInfinity: 2
  2376. m_RotationOrder: 4
  2377. attribute: m_AnchoredPosition.x
  2378. path: FailedPiece
  2379. classID: 224
  2380. script: {fileID: 0}
  2381. - curve:
  2382. serializedVersion: 2
  2383. m_Curve:
  2384. - serializedVersion: 3
  2385. time: 0
  2386. value: 8.1
  2387. inSlope: 253.29205
  2388. outSlope: 253.29205
  2389. tangentMode: 0
  2390. weightedMode: 0
  2391. inWeight: 0.33333334
  2392. outWeight: 0.11038772
  2393. - serializedVersion: 3
  2394. time: 0.26666668
  2395. value: 31.7
  2396. inSlope: -76.926285
  2397. outSlope: -76.926285
  2398. tangentMode: 0
  2399. weightedMode: 0
  2400. inWeight: 0.33333334
  2401. outWeight: 0.23153098
  2402. - serializedVersion: 3
  2403. time: 0.5
  2404. value: -22.9
  2405. inSlope: -278.66766
  2406. outSlope: -278.66766
  2407. tangentMode: 0
  2408. weightedMode: 0
  2409. inWeight: 0.21531728
  2410. outWeight: 0.33333334
  2411. m_PreInfinity: 2
  2412. m_PostInfinity: 2
  2413. m_RotationOrder: 4
  2414. attribute: m_AnchoredPosition.y
  2415. path: FailedPiece
  2416. classID: 224
  2417. script: {fileID: 0}
  2418. - curve:
  2419. serializedVersion: 2
  2420. m_Curve:
  2421. - serializedVersion: 3
  2422. time: 0
  2423. value: 0
  2424. inSlope: 0
  2425. outSlope: 0
  2426. tangentMode: 0
  2427. weightedMode: 0
  2428. inWeight: 0.33333334
  2429. outWeight: 0.33333334
  2430. - serializedVersion: 3
  2431. time: 0.016666668
  2432. value: 0
  2433. inSlope: 0
  2434. outSlope: 0
  2435. tangentMode: 0
  2436. weightedMode: 0
  2437. inWeight: 0.33333334
  2438. outWeight: 0.33333334
  2439. - serializedVersion: 3
  2440. time: 0.033333335
  2441. value: 0
  2442. inSlope: 0
  2443. outSlope: 0
  2444. tangentMode: 0
  2445. weightedMode: 0
  2446. inWeight: 0.33333334
  2447. outWeight: 0.33333334
  2448. - serializedVersion: 3
  2449. time: 0.050000004
  2450. value: 0
  2451. inSlope: 0
  2452. outSlope: 0
  2453. tangentMode: 0
  2454. weightedMode: 0
  2455. inWeight: 0.33333334
  2456. outWeight: 0.33333334
  2457. - serializedVersion: 3
  2458. time: 0.06666667
  2459. value: 0
  2460. inSlope: 0
  2461. outSlope: 0
  2462. tangentMode: 0
  2463. weightedMode: 0
  2464. inWeight: 0.33333334
  2465. outWeight: 0.33333334
  2466. - serializedVersion: 3
  2467. time: 0.083333336
  2468. value: 0
  2469. inSlope: 0
  2470. outSlope: 0
  2471. tangentMode: 0
  2472. weightedMode: 0
  2473. inWeight: 0.33333334
  2474. outWeight: 0.33333334
  2475. - serializedVersion: 3
  2476. time: 0.1
  2477. value: 0
  2478. inSlope: 0
  2479. outSlope: 0
  2480. tangentMode: 0
  2481. weightedMode: 0
  2482. inWeight: 0.33333334
  2483. outWeight: 0.33333334
  2484. - serializedVersion: 3
  2485. time: 0.11666667
  2486. value: 0
  2487. inSlope: 0
  2488. outSlope: 0
  2489. tangentMode: 0
  2490. weightedMode: 0
  2491. inWeight: 0.33333334
  2492. outWeight: 0.33333334
  2493. - serializedVersion: 3
  2494. time: 0.13333334
  2495. value: 0
  2496. inSlope: 0
  2497. outSlope: 0
  2498. tangentMode: 0
  2499. weightedMode: 0
  2500. inWeight: 0.33333334
  2501. outWeight: 0.33333334
  2502. - serializedVersion: 3
  2503. time: 0.15
  2504. value: 0
  2505. inSlope: 0
  2506. outSlope: 0
  2507. tangentMode: 0
  2508. weightedMode: 0
  2509. inWeight: 0.33333334
  2510. outWeight: 0.33333334
  2511. - serializedVersion: 3
  2512. time: 0.16666667
  2513. value: 0
  2514. inSlope: 0
  2515. outSlope: 0
  2516. tangentMode: 0
  2517. weightedMode: 0
  2518. inWeight: 0.33333334
  2519. outWeight: 0.33333334
  2520. - serializedVersion: 3
  2521. time: 0.18333334
  2522. value: 0
  2523. inSlope: 0
  2524. outSlope: 0
  2525. tangentMode: 0
  2526. weightedMode: 0
  2527. inWeight: 0.33333334
  2528. outWeight: 0.33333334
  2529. - serializedVersion: 3
  2530. time: 0.2
  2531. value: 0
  2532. inSlope: 0
  2533. outSlope: 0
  2534. tangentMode: 0
  2535. weightedMode: 0
  2536. inWeight: 0.33333334
  2537. outWeight: 0.33333334
  2538. - serializedVersion: 3
  2539. time: 0.21666667
  2540. value: 0
  2541. inSlope: 0
  2542. outSlope: 0
  2543. tangentMode: 0
  2544. weightedMode: 0
  2545. inWeight: 0.33333334
  2546. outWeight: 0.33333334
  2547. - serializedVersion: 3
  2548. time: 0.23333333
  2549. value: 0
  2550. inSlope: 0
  2551. outSlope: 0
  2552. tangentMode: 0
  2553. weightedMode: 0
  2554. inWeight: 0.33333334
  2555. outWeight: 0.33333334
  2556. - serializedVersion: 3
  2557. time: 0.25
  2558. value: 0
  2559. inSlope: 0
  2560. outSlope: 0
  2561. tangentMode: 0
  2562. weightedMode: 0
  2563. inWeight: 0.33333334
  2564. outWeight: 0.33333334
  2565. - serializedVersion: 3
  2566. time: 0.26666668
  2567. value: 0
  2568. inSlope: 0
  2569. outSlope: 0
  2570. tangentMode: 0
  2571. weightedMode: 0
  2572. inWeight: 0.33333334
  2573. outWeight: 0.33333334
  2574. - serializedVersion: 3
  2575. time: 0.28333336
  2576. value: 0
  2577. inSlope: 0
  2578. outSlope: 0
  2579. tangentMode: 0
  2580. weightedMode: 0
  2581. inWeight: 0.33333334
  2582. outWeight: 0.33333334
  2583. - serializedVersion: 3
  2584. time: 0.30000004
  2585. value: 0
  2586. inSlope: 0
  2587. outSlope: 0
  2588. tangentMode: 0
  2589. weightedMode: 0
  2590. inWeight: 0.33333334
  2591. outWeight: 0.33333334
  2592. - serializedVersion: 3
  2593. time: 0.31666672
  2594. value: 0
  2595. inSlope: 0
  2596. outSlope: 0
  2597. tangentMode: 0
  2598. weightedMode: 0
  2599. inWeight: 0.33333334
  2600. outWeight: 0.33333334
  2601. - serializedVersion: 3
  2602. time: 0.3333334
  2603. value: 0
  2604. inSlope: 0
  2605. outSlope: 0
  2606. tangentMode: 0
  2607. weightedMode: 0
  2608. inWeight: 0.33333334
  2609. outWeight: 0.33333334
  2610. - serializedVersion: 3
  2611. time: 0.35000008
  2612. value: 0
  2613. inSlope: 0
  2614. outSlope: 0
  2615. tangentMode: 0
  2616. weightedMode: 0
  2617. inWeight: 0.33333334
  2618. outWeight: 0.33333334
  2619. - serializedVersion: 3
  2620. time: 0.36666676
  2621. value: 0
  2622. inSlope: 0
  2623. outSlope: 0
  2624. tangentMode: 0
  2625. weightedMode: 0
  2626. inWeight: 0.33333334
  2627. outWeight: 0.33333334
  2628. - serializedVersion: 3
  2629. time: 0.38333344
  2630. value: 0
  2631. inSlope: 0
  2632. outSlope: 0
  2633. tangentMode: 0
  2634. weightedMode: 0
  2635. inWeight: 0.33333334
  2636. outWeight: 0.33333334
  2637. - serializedVersion: 3
  2638. time: 0.40000013
  2639. value: 0
  2640. inSlope: 0
  2641. outSlope: 0
  2642. tangentMode: 0
  2643. weightedMode: 0
  2644. inWeight: 0.33333334
  2645. outWeight: 0.33333334
  2646. - serializedVersion: 3
  2647. time: 0.4166668
  2648. value: 0
  2649. inSlope: 0
  2650. outSlope: 0
  2651. tangentMode: 0
  2652. weightedMode: 0
  2653. inWeight: 0.33333334
  2654. outWeight: 0.33333334
  2655. - serializedVersion: 3
  2656. time: 0.4333335
  2657. value: 0
  2658. inSlope: 0
  2659. outSlope: 0
  2660. tangentMode: 0
  2661. weightedMode: 0
  2662. inWeight: 0.33333334
  2663. outWeight: 0.33333334
  2664. - serializedVersion: 3
  2665. time: 0.45000017
  2666. value: 0
  2667. inSlope: 0
  2668. outSlope: 0
  2669. tangentMode: 0
  2670. weightedMode: 0
  2671. inWeight: 0.33333334
  2672. outWeight: 0.33333334
  2673. - serializedVersion: 3
  2674. time: 0.46666685
  2675. value: 0
  2676. inSlope: 0
  2677. outSlope: 0
  2678. tangentMode: 0
  2679. weightedMode: 0
  2680. inWeight: 0.33333334
  2681. outWeight: 0.33333334
  2682. - serializedVersion: 3
  2683. time: 0.48333353
  2684. value: 0
  2685. inSlope: 0
  2686. outSlope: 0
  2687. tangentMode: 0
  2688. weightedMode: 0
  2689. inWeight: 0.33333334
  2690. outWeight: 0.33333334
  2691. - serializedVersion: 3
  2692. time: 0.5
  2693. value: 0
  2694. inSlope: 0
  2695. outSlope: 0
  2696. tangentMode: 0
  2697. weightedMode: 0
  2698. inWeight: 0.33333334
  2699. outWeight: 0.33333334
  2700. m_PreInfinity: 2
  2701. m_PostInfinity: 2
  2702. m_RotationOrder: 4
  2703. attribute: m_LocalRotation.x
  2704. path: FailedPiece
  2705. classID: 224
  2706. script: {fileID: 0}
  2707. - curve:
  2708. serializedVersion: 2
  2709. m_Curve:
  2710. - serializedVersion: 3
  2711. time: 0
  2712. value: 0
  2713. inSlope: 0
  2714. outSlope: 0
  2715. tangentMode: 0
  2716. weightedMode: 0
  2717. inWeight: 0.33333334
  2718. outWeight: 0.33333334
  2719. - serializedVersion: 3
  2720. time: 0.016666668
  2721. value: 0
  2722. inSlope: 0
  2723. outSlope: 0
  2724. tangentMode: 0
  2725. weightedMode: 0
  2726. inWeight: 0.33333334
  2727. outWeight: 0.33333334
  2728. - serializedVersion: 3
  2729. time: 0.033333335
  2730. value: 0
  2731. inSlope: 0
  2732. outSlope: 0
  2733. tangentMode: 0
  2734. weightedMode: 0
  2735. inWeight: 0.33333334
  2736. outWeight: 0.33333334
  2737. - serializedVersion: 3
  2738. time: 0.050000004
  2739. value: 0
  2740. inSlope: 0
  2741. outSlope: 0
  2742. tangentMode: 0
  2743. weightedMode: 0
  2744. inWeight: 0.33333334
  2745. outWeight: 0.33333334
  2746. - serializedVersion: 3
  2747. time: 0.06666667
  2748. value: 0
  2749. inSlope: 0
  2750. outSlope: 0
  2751. tangentMode: 0
  2752. weightedMode: 0
  2753. inWeight: 0.33333334
  2754. outWeight: 0.33333334
  2755. - serializedVersion: 3
  2756. time: 0.083333336
  2757. value: 0
  2758. inSlope: 0
  2759. outSlope: 0
  2760. tangentMode: 0
  2761. weightedMode: 0
  2762. inWeight: 0.33333334
  2763. outWeight: 0.33333334
  2764. - serializedVersion: 3
  2765. time: 0.1
  2766. value: 0
  2767. inSlope: 0
  2768. outSlope: 0
  2769. tangentMode: 0
  2770. weightedMode: 0
  2771. inWeight: 0.33333334
  2772. outWeight: 0.33333334
  2773. - serializedVersion: 3
  2774. time: 0.11666667
  2775. value: 0
  2776. inSlope: 0
  2777. outSlope: 0
  2778. tangentMode: 0
  2779. weightedMode: 0
  2780. inWeight: 0.33333334
  2781. outWeight: 0.33333334
  2782. - serializedVersion: 3
  2783. time: 0.13333334
  2784. value: 0
  2785. inSlope: 0
  2786. outSlope: 0
  2787. tangentMode: 0
  2788. weightedMode: 0
  2789. inWeight: 0.33333334
  2790. outWeight: 0.33333334
  2791. - serializedVersion: 3
  2792. time: 0.15
  2793. value: 0
  2794. inSlope: 0
  2795. outSlope: 0
  2796. tangentMode: 0
  2797. weightedMode: 0
  2798. inWeight: 0.33333334
  2799. outWeight: 0.33333334
  2800. - serializedVersion: 3
  2801. time: 0.16666667
  2802. value: 0
  2803. inSlope: 0
  2804. outSlope: 0
  2805. tangentMode: 0
  2806. weightedMode: 0
  2807. inWeight: 0.33333334
  2808. outWeight: 0.33333334
  2809. - serializedVersion: 3
  2810. time: 0.18333334
  2811. value: 0
  2812. inSlope: 0
  2813. outSlope: 0
  2814. tangentMode: 0
  2815. weightedMode: 0
  2816. inWeight: 0.33333334
  2817. outWeight: 0.33333334
  2818. - serializedVersion: 3
  2819. time: 0.2
  2820. value: 0
  2821. inSlope: 0
  2822. outSlope: 0
  2823. tangentMode: 0
  2824. weightedMode: 0
  2825. inWeight: 0.33333334
  2826. outWeight: 0.33333334
  2827. - serializedVersion: 3
  2828. time: 0.21666667
  2829. value: 0
  2830. inSlope: 0
  2831. outSlope: 0
  2832. tangentMode: 0
  2833. weightedMode: 0
  2834. inWeight: 0.33333334
  2835. outWeight: 0.33333334
  2836. - serializedVersion: 3
  2837. time: 0.23333333
  2838. value: 0
  2839. inSlope: 0
  2840. outSlope: 0
  2841. tangentMode: 0
  2842. weightedMode: 0
  2843. inWeight: 0.33333334
  2844. outWeight: 0.33333334
  2845. - serializedVersion: 3
  2846. time: 0.25
  2847. value: 0
  2848. inSlope: 0
  2849. outSlope: 0
  2850. tangentMode: 0
  2851. weightedMode: 0
  2852. inWeight: 0.33333334
  2853. outWeight: 0.33333334
  2854. - serializedVersion: 3
  2855. time: 0.26666668
  2856. value: 0
  2857. inSlope: 0
  2858. outSlope: 0
  2859. tangentMode: 0
  2860. weightedMode: 0
  2861. inWeight: 0.33333334
  2862. outWeight: 0.33333334
  2863. - serializedVersion: 3
  2864. time: 0.28333336
  2865. value: 0
  2866. inSlope: 0
  2867. outSlope: 0
  2868. tangentMode: 0
  2869. weightedMode: 0
  2870. inWeight: 0.33333334
  2871. outWeight: 0.33333334
  2872. - serializedVersion: 3
  2873. time: 0.30000004
  2874. value: 0
  2875. inSlope: 0
  2876. outSlope: 0
  2877. tangentMode: 0
  2878. weightedMode: 0
  2879. inWeight: 0.33333334
  2880. outWeight: 0.33333334
  2881. - serializedVersion: 3
  2882. time: 0.31666672
  2883. value: 0
  2884. inSlope: 0
  2885. outSlope: 0
  2886. tangentMode: 0
  2887. weightedMode: 0
  2888. inWeight: 0.33333334
  2889. outWeight: 0.33333334
  2890. - serializedVersion: 3
  2891. time: 0.3333334
  2892. value: 0
  2893. inSlope: 0
  2894. outSlope: 0
  2895. tangentMode: 0
  2896. weightedMode: 0
  2897. inWeight: 0.33333334
  2898. outWeight: 0.33333334
  2899. - serializedVersion: 3
  2900. time: 0.35000008
  2901. value: 0
  2902. inSlope: 0
  2903. outSlope: 0
  2904. tangentMode: 0
  2905. weightedMode: 0
  2906. inWeight: 0.33333334
  2907. outWeight: 0.33333334
  2908. - serializedVersion: 3
  2909. time: 0.36666676
  2910. value: 0
  2911. inSlope: 0
  2912. outSlope: 0
  2913. tangentMode: 0
  2914. weightedMode: 0
  2915. inWeight: 0.33333334
  2916. outWeight: 0.33333334
  2917. - serializedVersion: 3
  2918. time: 0.38333344
  2919. value: 0
  2920. inSlope: 0
  2921. outSlope: 0
  2922. tangentMode: 0
  2923. weightedMode: 0
  2924. inWeight: 0.33333334
  2925. outWeight: 0.33333334
  2926. - serializedVersion: 3
  2927. time: 0.40000013
  2928. value: 0
  2929. inSlope: 0
  2930. outSlope: 0
  2931. tangentMode: 0
  2932. weightedMode: 0
  2933. inWeight: 0.33333334
  2934. outWeight: 0.33333334
  2935. - serializedVersion: 3
  2936. time: 0.4166668
  2937. value: 0
  2938. inSlope: 0
  2939. outSlope: 0
  2940. tangentMode: 0
  2941. weightedMode: 0
  2942. inWeight: 0.33333334
  2943. outWeight: 0.33333334
  2944. - serializedVersion: 3
  2945. time: 0.4333335
  2946. value: 0
  2947. inSlope: 0
  2948. outSlope: 0
  2949. tangentMode: 0
  2950. weightedMode: 0
  2951. inWeight: 0.33333334
  2952. outWeight: 0.33333334
  2953. - serializedVersion: 3
  2954. time: 0.45000017
  2955. value: 0
  2956. inSlope: 0
  2957. outSlope: 0
  2958. tangentMode: 0
  2959. weightedMode: 0
  2960. inWeight: 0.33333334
  2961. outWeight: 0.33333334
  2962. - serializedVersion: 3
  2963. time: 0.46666685
  2964. value: 0
  2965. inSlope: 0
  2966. outSlope: 0
  2967. tangentMode: 0
  2968. weightedMode: 0
  2969. inWeight: 0.33333334
  2970. outWeight: 0.33333334
  2971. - serializedVersion: 3
  2972. time: 0.48333353
  2973. value: 0
  2974. inSlope: 0
  2975. outSlope: 0
  2976. tangentMode: 0
  2977. weightedMode: 0
  2978. inWeight: 0.33333334
  2979. outWeight: 0.33333334
  2980. - serializedVersion: 3
  2981. time: 0.5
  2982. value: 0
  2983. inSlope: 0
  2984. outSlope: 0
  2985. tangentMode: 0
  2986. weightedMode: 0
  2987. inWeight: 0.33333334
  2988. outWeight: 0.33333334
  2989. m_PreInfinity: 2
  2990. m_PostInfinity: 2
  2991. m_RotationOrder: 4
  2992. attribute: m_LocalRotation.y
  2993. path: FailedPiece
  2994. classID: 224
  2995. script: {fileID: 0}
  2996. - curve:
  2997. serializedVersion: 2
  2998. m_Curve:
  2999. - serializedVersion: 3
  3000. time: 0
  3001. value: 0.16975373
  3002. inSlope: 0.05683511
  3003. outSlope: 0.05683511
  3004. tangentMode: 0
  3005. weightedMode: 0
  3006. inWeight: 0.33333334
  3007. outWeight: 0.33333334
  3008. - serializedVersion: 3
  3009. time: 0.016666668
  3010. value: 0.17070098
  3011. inSlope: 0.11210694
  3012. outSlope: 0.11210694
  3013. tangentMode: 0
  3014. weightedMode: 0
  3015. inWeight: 0.33333334
  3016. outWeight: 0.33333334
  3017. - serializedVersion: 3
  3018. time: 0.033333335
  3019. value: 0.17349063
  3020. inSlope: 0.22026432
  3021. outSlope: 0.22026432
  3022. tangentMode: 0
  3023. weightedMode: 0
  3024. inWeight: 0.33333334
  3025. outWeight: 0.33333334
  3026. - serializedVersion: 3
  3027. time: 0.050000004
  3028. value: 0.17804313
  3029. inSlope: 0.32360357
  3030. outSlope: 0.32360357
  3031. tangentMode: 0
  3032. weightedMode: 0
  3033. inWeight: 0.33333334
  3034. outWeight: 0.33333334
  3035. - serializedVersion: 3
  3036. time: 0.06666667
  3037. value: 0.18427742
  3038. inSlope: 0.42202908
  3039. outSlope: 0.42202908
  3040. tangentMode: 0
  3041. weightedMode: 0
  3042. inWeight: 0.33333334
  3043. outWeight: 0.33333334
  3044. - serializedVersion: 3
  3045. time: 0.083333336
  3046. value: 0.19211076
  3047. inSlope: 0.51544505
  3048. outSlope: 0.51544505
  3049. tangentMode: 0
  3050. weightedMode: 0
  3051. inWeight: 0.33333334
  3052. outWeight: 0.33333334
  3053. - serializedVersion: 3
  3054. time: 0.1
  3055. value: 0.20145892
  3056. inSlope: 0.60375816
  3057. outSlope: 0.60375816
  3058. tangentMode: 0
  3059. weightedMode: 0
  3060. inWeight: 0.33333334
  3061. outWeight: 0.33333334
  3062. - serializedVersion: 3
  3063. time: 0.11666667
  3064. value: 0.21223603
  3065. inSlope: 0.6868725
  3066. outSlope: 0.6868725
  3067. tangentMode: 0
  3068. weightedMode: 0
  3069. inWeight: 0.33333334
  3070. outWeight: 0.33333334
  3071. - serializedVersion: 3
  3072. time: 0.13333334
  3073. value: 0.22435467
  3074. inSlope: 0.7646928
  3075. outSlope: 0.7646928
  3076. tangentMode: 0
  3077. weightedMode: 0
  3078. inWeight: 0.33333334
  3079. outWeight: 0.33333334
  3080. - serializedVersion: 3
  3081. time: 0.15
  3082. value: 0.2377258
  3083. inSlope: 0.8371233
  3084. outSlope: 0.8371233
  3085. tangentMode: 0
  3086. weightedMode: 0
  3087. inWeight: 0.33333334
  3088. outWeight: 0.33333334
  3089. - serializedVersion: 3
  3090. time: 0.16666667
  3091. value: 0.25225878
  3092. inSlope: 0.904069
  3093. outSlope: 0.904069
  3094. tangentMode: 0
  3095. weightedMode: 0
  3096. inWeight: 0.33333334
  3097. outWeight: 0.33333334
  3098. - serializedVersion: 3
  3099. time: 0.18333334
  3100. value: 0.26786143
  3101. inSlope: 0.9654451
  3102. outSlope: 0.9654451
  3103. tangentMode: 0
  3104. weightedMode: 0
  3105. inWeight: 0.33333334
  3106. outWeight: 0.33333334
  3107. - serializedVersion: 3
  3108. time: 0.2
  3109. value: 0.28444028
  3110. inSlope: 1.0211672
  3111. outSlope: 1.0211672
  3112. tangentMode: 0
  3113. weightedMode: 0
  3114. inWeight: 0.33333334
  3115. outWeight: 0.33333334
  3116. - serializedVersion: 3
  3117. time: 0.21666667
  3118. value: 0.30190033
  3119. inSlope: 1.0711617
  3120. outSlope: 1.0711617
  3121. tangentMode: 0
  3122. weightedMode: 0
  3123. inWeight: 0.33333334
  3124. outWeight: 0.33333334
  3125. - serializedVersion: 3
  3126. time: 0.23333333
  3127. value: 0.32014567
  3128. inSlope: 1.1153727
  3129. outSlope: 1.1153727
  3130. tangentMode: 0
  3131. weightedMode: 0
  3132. inWeight: 0.33333334
  3133. outWeight: 0.33333334
  3134. - serializedVersion: 3
  3135. time: 0.25
  3136. value: 0.3390794
  3137. inSlope: 1.1537554
  3138. outSlope: 1.1537554
  3139. tangentMode: 0
  3140. weightedMode: 0
  3141. inWeight: 0.33333334
  3142. outWeight: 0.33333334
  3143. - serializedVersion: 3
  3144. time: 0.26666668
  3145. value: 0.3586042
  3146. inSlope: 1.2737657
  3147. outSlope: 1.2737657
  3148. tangentMode: 0
  3149. weightedMode: 0
  3150. inWeight: 0.33333334
  3151. outWeight: 0.33333334
  3152. - serializedVersion: 3
  3153. time: 0.28333336
  3154. value: 0.3815383
  3155. inSlope: 1.5370636
  3156. outSlope: 1.5370636
  3157. tangentMode: 0
  3158. weightedMode: 0
  3159. inWeight: 0.33333334
  3160. outWeight: 0.33333334
  3161. - serializedVersion: 3
  3162. time: 0.30000004
  3163. value: 0.4098397
  3164. inSlope: 1.8172451
  3165. outSlope: 1.8172451
  3166. tangentMode: 0
  3167. weightedMode: 0
  3168. inWeight: 0.33333334
  3169. outWeight: 0.33333334
  3170. - serializedVersion: 3
  3171. time: 0.31666672
  3172. value: 0.4421132
  3173. inSlope: 2.0140834
  3174. outSlope: 2.0140834
  3175. tangentMode: 0
  3176. weightedMode: 0
  3177. inWeight: 0.33333334
  3178. outWeight: 0.33333334
  3179. - serializedVersion: 3
  3180. time: 0.3333334
  3181. value: 0.47697586
  3182. inSlope: 2.1291866
  3183. outSlope: 2.1291866
  3184. tangentMode: 0
  3185. weightedMode: 0
  3186. inWeight: 0.33333334
  3187. outWeight: 0.33333334
  3188. - serializedVersion: 3
  3189. time: 0.35000008
  3190. value: 0.51308614
  3191. inSlope: 2.1659606
  3192. outSlope: 2.1659606
  3193. tangentMode: 0
  3194. weightedMode: 0
  3195. inWeight: 0.33333334
  3196. outWeight: 0.33333334
  3197. - serializedVersion: 3
  3198. time: 0.36666676
  3199. value: 0.5491746
  3200. inSlope: 2.1295702
  3201. outSlope: 2.1295702
  3202. tangentMode: 0
  3203. weightedMode: 0
  3204. inWeight: 0.33333334
  3205. outWeight: 0.33333334
  3206. - serializedVersion: 3
  3207. time: 0.38333344
  3208. value: 0.5840719
  3209. inSlope: 2.0266612
  3210. outSlope: 2.0266612
  3211. tangentMode: 0
  3212. weightedMode: 0
  3213. inWeight: 0.33333334
  3214. outWeight: 0.33333334
  3215. - serializedVersion: 3
  3216. time: 0.40000013
  3217. value: 0.61673003
  3218. inSlope: 1.8648651
  3219. outSlope: 1.8648651
  3220. tangentMode: 0
  3221. weightedMode: 0
  3222. inWeight: 0.33333334
  3223. outWeight: 0.33333334
  3224. - serializedVersion: 3
  3225. time: 0.4166668
  3226. value: 0.6462341
  3227. inSlope: 1.6520588
  3228. outSlope: 1.6520588
  3229. tangentMode: 0
  3230. weightedMode: 0
  3231. inWeight: 0.33333334
  3232. outWeight: 0.33333334
  3233. - serializedVersion: 3
  3234. time: 0.4333335
  3235. value: 0.6717987
  3236. inSlope: 1.3954252
  3237. outSlope: 1.3954252
  3238. tangentMode: 0
  3239. weightedMode: 0
  3240. inWeight: 0.33333334
  3241. outWeight: 0.33333334
  3242. - serializedVersion: 3
  3243. time: 0.45000017
  3244. value: 0.6927483
  3245. inSlope: 1.100411
  3246. outSlope: 1.100411
  3247. tangentMode: 0
  3248. weightedMode: 0
  3249. inWeight: 0.33333334
  3250. outWeight: 0.33333334
  3251. - serializedVersion: 3
  3252. time: 0.46666685
  3253. value: 0.7084791
  3254. inSlope: 0.7696414
  3255. outSlope: 0.7696414
  3256. tangentMode: 0
  3257. weightedMode: 0
  3258. inWeight: 0.33333334
  3259. outWeight: 0.33333334
  3260. - serializedVersion: 3
  3261. time: 0.48333353
  3262. value: 0.71840304
  3263. inSlope: 0.40187636
  3264. outSlope: 0.40187636
  3265. tangentMode: 0
  3266. weightedMode: 0
  3267. inWeight: 0.33333334
  3268. outWeight: 0.33333334
  3269. - serializedVersion: 3
  3270. time: 0.5
  3271. value: 0.72187495
  3272. inSlope: 0.20831709
  3273. outSlope: 0.20831709
  3274. tangentMode: 0
  3275. weightedMode: 0
  3276. inWeight: 0.33333334
  3277. outWeight: 0.33333334
  3278. m_PreInfinity: 2
  3279. m_PostInfinity: 2
  3280. m_RotationOrder: 4
  3281. attribute: m_LocalRotation.z
  3282. path: FailedPiece
  3283. classID: 224
  3284. script: {fileID: 0}
  3285. - curve:
  3286. serializedVersion: 2
  3287. m_Curve:
  3288. - serializedVersion: 3
  3289. time: 0
  3290. value: 0.9854865
  3291. inSlope: -0.009816884
  3292. outSlope: -0.009816884
  3293. tangentMode: 0
  3294. weightedMode: 0
  3295. inWeight: 0.33333334
  3296. outWeight: 0.33333334
  3297. - serializedVersion: 3
  3298. time: 0.016666668
  3299. value: 0.9853229
  3300. inSlope: -0.019530056
  3301. outSlope: -0.019530056
  3302. tangentMode: 0
  3303. weightedMode: 0
  3304. inWeight: 0.33333334
  3305. outWeight: 0.33333334
  3306. - serializedVersion: 3
  3307. time: 0.033333335
  3308. value: 0.9848355
  3309. inSlope: -0.039006468
  3310. outSlope: -0.039006468
  3311. tangentMode: 0
  3312. weightedMode: 0
  3313. inWeight: 0.33333334
  3314. outWeight: 0.33333334
  3315. - serializedVersion: 3
  3316. time: 0.050000004
  3317. value: 0.9840227
  3318. inSlope: -0.058836937
  3319. outSlope: -0.058836937
  3320. tangentMode: 0
  3321. weightedMode: 0
  3322. inWeight: 0.33333334
  3323. outWeight: 0.33333334
  3324. - serializedVersion: 3
  3325. time: 0.06666667
  3326. value: 0.9828743
  3327. inSlope: -0.0794828
  3328. outSlope: -0.0794828
  3329. tangentMode: 0
  3330. weightedMode: 0
  3331. inWeight: 0.33333334
  3332. outWeight: 0.33333334
  3333. - serializedVersion: 3
  3334. time: 0.083333336
  3335. value: 0.98137325
  3336. inSlope: -0.10131956
  3337. outSlope: -0.10131956
  3338. tangentMode: 0
  3339. weightedMode: 0
  3340. inWeight: 0.33333334
  3341. outWeight: 0.33333334
  3342. - serializedVersion: 3
  3343. time: 0.1
  3344. value: 0.97949696
  3345. inSlope: -0.124644056
  3346. outSlope: -0.124644056
  3347. tangentMode: 0
  3348. weightedMode: 0
  3349. inWeight: 0.33333334
  3350. outWeight: 0.33333334
  3351. - serializedVersion: 3
  3352. time: 0.11666667
  3353. value: 0.97721845
  3354. inSlope: -0.14968154
  3355. outSlope: -0.14968154
  3356. tangentMode: 0
  3357. weightedMode: 0
  3358. inWeight: 0.33333334
  3359. outWeight: 0.33333334
  3360. - serializedVersion: 3
  3361. time: 0.13333334
  3362. value: 0.9745076
  3363. inSlope: -0.1765841
  3364. outSlope: -0.1765841
  3365. tangentMode: 0
  3366. weightedMode: 0
  3367. inWeight: 0.33333334
  3368. outWeight: 0.33333334
  3369. - serializedVersion: 3
  3370. time: 0.15
  3371. value: 0.9713323
  3372. inSlope: -0.20543219
  3373. outSlope: -0.20543219
  3374. tangentMode: 0
  3375. weightedMode: 0
  3376. inWeight: 0.33333334
  3377. outWeight: 0.33333334
  3378. - serializedVersion: 3
  3379. time: 0.16666667
  3380. value: 0.96765983
  3381. inSlope: -0.23624542
  3382. outSlope: -0.23624542
  3383. tangentMode: 0
  3384. weightedMode: 0
  3385. inWeight: 0.33333334
  3386. outWeight: 0.33333334
  3387. - serializedVersion: 3
  3388. time: 0.18333334
  3389. value: 0.96345747
  3390. inSlope: -0.26898268
  3391. outSlope: -0.26898268
  3392. tangentMode: 0
  3393. weightedMode: 0
  3394. inWeight: 0.33333334
  3395. outWeight: 0.33333334
  3396. - serializedVersion: 3
  3397. time: 0.2
  3398. value: 0.95869374
  3399. inSlope: -0.30353847
  3400. outSlope: -0.30353847
  3401. tangentMode: 0
  3402. weightedMode: 0
  3403. inWeight: 0.33333334
  3404. outWeight: 0.33333334
  3405. - serializedVersion: 3
  3406. time: 0.21666667
  3407. value: 0.9533395
  3408. inSlope: -0.3397626
  3409. outSlope: -0.3397626
  3410. tangentMode: 0
  3411. weightedMode: 0
  3412. inWeight: 0.33333334
  3413. outWeight: 0.33333334
  3414. - serializedVersion: 3
  3415. time: 0.23333333
  3416. value: 0.9473683
  3417. inSlope: -0.377453
  3418. outSlope: -0.377453
  3419. tangentMode: 0
  3420. weightedMode: 0
  3421. inWeight: 0.33333334
  3422. outWeight: 0.33333334
  3423. - serializedVersion: 3
  3424. time: 0.25
  3425. value: 0.94075775
  3426. inSlope: -0.41635913
  3427. outSlope: -0.41635913
  3428. tangentMode: 0
  3429. weightedMode: 0
  3430. inWeight: 0.33333334
  3431. outWeight: 0.33333334
  3432. - serializedVersion: 3
  3433. time: 0.26666668
  3434. value: 0.9334897
  3435. inSlope: -0.49214202
  3436. outSlope: -0.49214202
  3437. tangentMode: 0
  3438. weightedMode: 0
  3439. inWeight: 0.33333334
  3440. outWeight: 0.33333334
  3441. - serializedVersion: 3
  3442. time: 0.28333336
  3443. value: 0.924353
  3444. inSlope: -0.6399638
  3445. outSlope: -0.6399638
  3446. tangentMode: 0
  3447. weightedMode: 0
  3448. inWeight: 0.33333334
  3449. outWeight: 0.33333334
  3450. - serializedVersion: 3
  3451. time: 0.30000004
  3452. value: 0.91215754
  3453. inSlope: -0.82181203
  3454. outSlope: -0.82181203
  3455. tangentMode: 0
  3456. weightedMode: 0
  3457. inWeight: 0.33333334
  3458. outWeight: 0.33333334
  3459. - serializedVersion: 3
  3460. time: 0.31666672
  3461. value: 0.89695925
  3462. inSlope: -0.99723375
  3463. outSlope: -0.99723375
  3464. tangentMode: 0
  3465. weightedMode: 0
  3466. inWeight: 0.33333334
  3467. outWeight: 0.33333334
  3468. - serializedVersion: 3
  3469. time: 0.3333334
  3470. value: 0.8789164
  3471. inSlope: -1.1586614
  3472. outSlope: -1.1586614
  3473. tangentMode: 0
  3474. weightedMode: 0
  3475. inWeight: 0.33333334
  3476. outWeight: 0.33333334
  3477. - serializedVersion: 3
  3478. time: 0.35000008
  3479. value: 0.85833716
  3480. inSlope: -1.2962604
  3481. outSlope: -1.2962604
  3482. tangentMode: 0
  3483. weightedMode: 0
  3484. inWeight: 0.33333334
  3485. outWeight: 0.33333334
  3486. - serializedVersion: 3
  3487. time: 0.36666676
  3488. value: 0.83570766
  3489. inSlope: -1.3990551
  3490. outSlope: -1.3990551
  3491. tangentMode: 0
  3492. weightedMode: 0
  3493. inWeight: 0.33333334
  3494. outWeight: 0.33333334
  3495. - serializedVersion: 3
  3496. time: 0.38333344
  3497. value: 0.81170195
  3498. inSlope: -1.4559859
  3499. outSlope: -1.4559859
  3500. tangentMode: 0
  3501. weightedMode: 0
  3502. inWeight: 0.33333334
  3503. outWeight: 0.33333334
  3504. - serializedVersion: 3
  3505. time: 0.40000013
  3506. value: 0.78717476
  3507. inSlope: -1.4568818
  3508. outSlope: -1.4568818
  3509. tangentMode: 0
  3510. weightedMode: 0
  3511. inWeight: 0.33333334
  3512. outWeight: 0.33333334
  3513. - serializedVersion: 3
  3514. time: 0.4166668
  3515. value: 0.7631392
  3516. inSlope: -1.3932295
  3517. outSlope: -1.3932295
  3518. tangentMode: 0
  3519. weightedMode: 0
  3520. inWeight: 0.33333334
  3521. outWeight: 0.33333334
  3522. - serializedVersion: 3
  3523. time: 0.4333335
  3524. value: 0.74073374
  3525. inSlope: -1.2587919
  3526. outSlope: -1.2587919
  3527. tangentMode: 0
  3528. weightedMode: 0
  3529. inWeight: 0.33333334
  3530. outWeight: 0.33333334
  3531. - serializedVersion: 3
  3532. time: 0.45000017
  3533. value: 0.7211794
  3534. inSlope: -1.0500572
  3535. outSlope: -1.0500572
  3536. tangentMode: 0
  3537. weightedMode: 0
  3538. inWeight: 0.33333334
  3539. outWeight: 0.33333334
  3540. - serializedVersion: 3
  3541. time: 0.46666685
  3542. value: 0.7057318
  3543. inSlope: -0.7665694
  3544. outSlope: -0.7665694
  3545. tangentMode: 0
  3546. weightedMode: 0
  3547. inWeight: 0.33333334
  3548. outWeight: 0.33333334
  3549. - serializedVersion: 3
  3550. time: 0.48333353
  3551. value: 0.6956271
  3552. inSlope: -0.41124982
  3553. outSlope: -0.41124982
  3554. tangentMode: 0
  3555. weightedMode: 0
  3556. inWeight: 0.33333334
  3557. outWeight: 0.33333334
  3558. - serializedVersion: 3
  3559. time: 0.5
  3560. value: 0.6920235
  3561. inSlope: -0.21621719
  3562. outSlope: -0.21621719
  3563. tangentMode: 0
  3564. weightedMode: 0
  3565. inWeight: 0.33333334
  3566. outWeight: 0.33333334
  3567. m_PreInfinity: 2
  3568. m_PostInfinity: 2
  3569. m_RotationOrder: 4
  3570. attribute: m_LocalRotation.w
  3571. path: FailedPiece
  3572. classID: 224
  3573. script: {fileID: 0}
  3574. - curve:
  3575. serializedVersion: 2
  3576. m_Curve:
  3577. - serializedVersion: 3
  3578. time: 0
  3579. value: 14.9
  3580. inSlope: 333.56427
  3581. outSlope: 333.56427
  3582. tangentMode: 0
  3583. weightedMode: 0
  3584. inWeight: 0.33333334
  3585. outWeight: 0.20600906
  3586. - serializedVersion: 3
  3587. time: 0.2
  3588. value: 85.7
  3589. inSlope: 283.2
  3590. outSlope: 283.2
  3591. tangentMode: 136
  3592. weightedMode: 0
  3593. inWeight: 0.33333334
  3594. outWeight: 0.33333334
  3595. - serializedVersion: 3
  3596. time: 0.5
  3597. value: 156.5
  3598. inSlope: 132.4927
  3599. outSlope: 132.4927
  3600. tangentMode: 0
  3601. weightedMode: 0
  3602. inWeight: 0.19128779
  3603. outWeight: 0.33333334
  3604. m_PreInfinity: 2
  3605. m_PostInfinity: 2
  3606. m_RotationOrder: 4
  3607. attribute: m_AnchoredPosition.x
  3608. path: FailedPiece2
  3609. classID: 224
  3610. script: {fileID: 0}
  3611. - curve:
  3612. serializedVersion: 2
  3613. m_Curve:
  3614. - serializedVersion: 3
  3615. time: 0
  3616. value: 8.7
  3617. inSlope: 243.8688
  3618. outSlope: 243.8688
  3619. tangentMode: 0
  3620. weightedMode: 0
  3621. inWeight: 0.33333334
  3622. outWeight: 0.26719987
  3623. - serializedVersion: 3
  3624. time: 0.2
  3625. value: 39.7
  3626. inSlope: 0
  3627. outSlope: 0
  3628. tangentMode: 136
  3629. weightedMode: 0
  3630. inWeight: 0.33333334
  3631. outWeight: 0.33333334
  3632. - serializedVersion: 3
  3633. time: 0.5
  3634. value: -17.7
  3635. inSlope: -268.06705
  3636. outSlope: -268.06705
  3637. tangentMode: 0
  3638. weightedMode: 0
  3639. inWeight: 0.22392292
  3640. outWeight: 0.33333334
  3641. m_PreInfinity: 2
  3642. m_PostInfinity: 2
  3643. m_RotationOrder: 4
  3644. attribute: m_AnchoredPosition.y
  3645. path: FailedPiece2
  3646. classID: 224
  3647. script: {fileID: 0}
  3648. - curve:
  3649. serializedVersion: 2
  3650. m_Curve:
  3651. - serializedVersion: 3
  3652. time: 0
  3653. value: 0
  3654. inSlope: 0
  3655. outSlope: 0
  3656. tangentMode: 0
  3657. weightedMode: 0
  3658. inWeight: 0.33333334
  3659. outWeight: 0.33333334
  3660. - serializedVersion: 3
  3661. time: 0.016666668
  3662. value: 0
  3663. inSlope: 0
  3664. outSlope: 0
  3665. tangentMode: 0
  3666. weightedMode: 0
  3667. inWeight: 0.33333334
  3668. outWeight: 0.33333334
  3669. - serializedVersion: 3
  3670. time: 0.033333335
  3671. value: 0
  3672. inSlope: 0
  3673. outSlope: 0
  3674. tangentMode: 0
  3675. weightedMode: 0
  3676. inWeight: 0.33333334
  3677. outWeight: 0.33333334
  3678. - serializedVersion: 3
  3679. time: 0.050000004
  3680. value: 0
  3681. inSlope: 0
  3682. outSlope: 0
  3683. tangentMode: 0
  3684. weightedMode: 0
  3685. inWeight: 0.33333334
  3686. outWeight: 0.33333334
  3687. - serializedVersion: 3
  3688. time: 0.06666667
  3689. value: 0
  3690. inSlope: 0
  3691. outSlope: 0
  3692. tangentMode: 0
  3693. weightedMode: 0
  3694. inWeight: 0.33333334
  3695. outWeight: 0.33333334
  3696. - serializedVersion: 3
  3697. time: 0.083333336
  3698. value: 0
  3699. inSlope: 0
  3700. outSlope: 0
  3701. tangentMode: 0
  3702. weightedMode: 0
  3703. inWeight: 0.33333334
  3704. outWeight: 0.33333334
  3705. - serializedVersion: 3
  3706. time: 0.1
  3707. value: 0
  3708. inSlope: 0
  3709. outSlope: 0
  3710. tangentMode: 0
  3711. weightedMode: 0
  3712. inWeight: 0.33333334
  3713. outWeight: 0.33333334
  3714. - serializedVersion: 3
  3715. time: 0.11666667
  3716. value: 0
  3717. inSlope: 0
  3718. outSlope: 0
  3719. tangentMode: 0
  3720. weightedMode: 0
  3721. inWeight: 0.33333334
  3722. outWeight: 0.33333334
  3723. - serializedVersion: 3
  3724. time: 0.13333334
  3725. value: 0
  3726. inSlope: 0
  3727. outSlope: 0
  3728. tangentMode: 0
  3729. weightedMode: 0
  3730. inWeight: 0.33333334
  3731. outWeight: 0.33333334
  3732. - serializedVersion: 3
  3733. time: 0.15
  3734. value: 0
  3735. inSlope: 0
  3736. outSlope: 0
  3737. tangentMode: 0
  3738. weightedMode: 0
  3739. inWeight: 0.33333334
  3740. outWeight: 0.33333334
  3741. - serializedVersion: 3
  3742. time: 0.16666667
  3743. value: 0
  3744. inSlope: 0
  3745. outSlope: 0
  3746. tangentMode: 0
  3747. weightedMode: 0
  3748. inWeight: 0.33333334
  3749. outWeight: 0.33333334
  3750. - serializedVersion: 3
  3751. time: 0.18333334
  3752. value: 0
  3753. inSlope: 0
  3754. outSlope: 0
  3755. tangentMode: 0
  3756. weightedMode: 0
  3757. inWeight: 0.33333334
  3758. outWeight: 0.33333334
  3759. - serializedVersion: 3
  3760. time: 0.2
  3761. value: 0
  3762. inSlope: 0
  3763. outSlope: 0
  3764. tangentMode: 0
  3765. weightedMode: 0
  3766. inWeight: 0.33333334
  3767. outWeight: 0.33333334
  3768. - serializedVersion: 3
  3769. time: 0.21666667
  3770. value: 0
  3771. inSlope: 0
  3772. outSlope: 0
  3773. tangentMode: 0
  3774. weightedMode: 0
  3775. inWeight: 0.33333334
  3776. outWeight: 0.33333334
  3777. - serializedVersion: 3
  3778. time: 0.23333333
  3779. value: 0
  3780. inSlope: 0
  3781. outSlope: 0
  3782. tangentMode: 0
  3783. weightedMode: 0
  3784. inWeight: 0.33333334
  3785. outWeight: 0.33333334
  3786. - serializedVersion: 3
  3787. time: 0.25
  3788. value: 0
  3789. inSlope: 0
  3790. outSlope: 0
  3791. tangentMode: 0
  3792. weightedMode: 0
  3793. inWeight: 0.33333334
  3794. outWeight: 0.33333334
  3795. - serializedVersion: 3
  3796. time: 0.26666668
  3797. value: 0
  3798. inSlope: 0
  3799. outSlope: 0
  3800. tangentMode: 0
  3801. weightedMode: 0
  3802. inWeight: 0.33333334
  3803. outWeight: 0.33333334
  3804. - serializedVersion: 3
  3805. time: 0.28333336
  3806. value: 0
  3807. inSlope: 0
  3808. outSlope: 0
  3809. tangentMode: 0
  3810. weightedMode: 0
  3811. inWeight: 0.33333334
  3812. outWeight: 0.33333334
  3813. - serializedVersion: 3
  3814. time: 0.30000004
  3815. value: 0
  3816. inSlope: 0
  3817. outSlope: 0
  3818. tangentMode: 0
  3819. weightedMode: 0
  3820. inWeight: 0.33333334
  3821. outWeight: 0.33333334
  3822. - serializedVersion: 3
  3823. time: 0.31666672
  3824. value: 0
  3825. inSlope: 0
  3826. outSlope: 0
  3827. tangentMode: 0
  3828. weightedMode: 0
  3829. inWeight: 0.33333334
  3830. outWeight: 0.33333334
  3831. - serializedVersion: 3
  3832. time: 0.3333334
  3833. value: 0
  3834. inSlope: 0
  3835. outSlope: 0
  3836. tangentMode: 0
  3837. weightedMode: 0
  3838. inWeight: 0.33333334
  3839. outWeight: 0.33333334
  3840. - serializedVersion: 3
  3841. time: 0.35000008
  3842. value: 0
  3843. inSlope: 0
  3844. outSlope: 0
  3845. tangentMode: 0
  3846. weightedMode: 0
  3847. inWeight: 0.33333334
  3848. outWeight: 0.33333334
  3849. - serializedVersion: 3
  3850. time: 0.36666676
  3851. value: 0
  3852. inSlope: 0
  3853. outSlope: 0
  3854. tangentMode: 0
  3855. weightedMode: 0
  3856. inWeight: 0.33333334
  3857. outWeight: 0.33333334
  3858. - serializedVersion: 3
  3859. time: 0.38333344
  3860. value: 0
  3861. inSlope: 0
  3862. outSlope: 0
  3863. tangentMode: 0
  3864. weightedMode: 0
  3865. inWeight: 0.33333334
  3866. outWeight: 0.33333334
  3867. - serializedVersion: 3
  3868. time: 0.40000013
  3869. value: 0
  3870. inSlope: 0
  3871. outSlope: 0
  3872. tangentMode: 0
  3873. weightedMode: 0
  3874. inWeight: 0.33333334
  3875. outWeight: 0.33333334
  3876. - serializedVersion: 3
  3877. time: 0.4166668
  3878. value: 0
  3879. inSlope: 0
  3880. outSlope: 0
  3881. tangentMode: 0
  3882. weightedMode: 0
  3883. inWeight: 0.33333334
  3884. outWeight: 0.33333334
  3885. - serializedVersion: 3
  3886. time: 0.4333335
  3887. value: 0
  3888. inSlope: 0
  3889. outSlope: 0
  3890. tangentMode: 0
  3891. weightedMode: 0
  3892. inWeight: 0.33333334
  3893. outWeight: 0.33333334
  3894. - serializedVersion: 3
  3895. time: 0.45000017
  3896. value: 0
  3897. inSlope: 0
  3898. outSlope: 0
  3899. tangentMode: 0
  3900. weightedMode: 0
  3901. inWeight: 0.33333334
  3902. outWeight: 0.33333334
  3903. - serializedVersion: 3
  3904. time: 0.46666685
  3905. value: 0
  3906. inSlope: 0
  3907. outSlope: 0
  3908. tangentMode: 0
  3909. weightedMode: 0
  3910. inWeight: 0.33333334
  3911. outWeight: 0.33333334
  3912. - serializedVersion: 3
  3913. time: 0.48333353
  3914. value: 0
  3915. inSlope: 0
  3916. outSlope: 0
  3917. tangentMode: 0
  3918. weightedMode: 0
  3919. inWeight: 0.33333334
  3920. outWeight: 0.33333334
  3921. - serializedVersion: 3
  3922. time: 0.5
  3923. value: 0
  3924. inSlope: 0
  3925. outSlope: 0
  3926. tangentMode: 0
  3927. weightedMode: 0
  3928. inWeight: 0.33333334
  3929. outWeight: 0.33333334
  3930. m_PreInfinity: 2
  3931. m_PostInfinity: 2
  3932. m_RotationOrder: 4
  3933. attribute: m_LocalRotation.x
  3934. path: FailedPiece2
  3935. classID: 224
  3936. script: {fileID: 0}
  3937. - curve:
  3938. serializedVersion: 2
  3939. m_Curve:
  3940. - serializedVersion: 3
  3941. time: 0
  3942. value: 0
  3943. inSlope: 0
  3944. outSlope: 0
  3945. tangentMode: 0
  3946. weightedMode: 0
  3947. inWeight: 0.33333334
  3948. outWeight: 0.33333334
  3949. - serializedVersion: 3
  3950. time: 0.016666668
  3951. value: 0
  3952. inSlope: 0
  3953. outSlope: 0
  3954. tangentMode: 0
  3955. weightedMode: 0
  3956. inWeight: 0.33333334
  3957. outWeight: 0.33333334
  3958. - serializedVersion: 3
  3959. time: 0.033333335
  3960. value: 0
  3961. inSlope: 0
  3962. outSlope: 0
  3963. tangentMode: 0
  3964. weightedMode: 0
  3965. inWeight: 0.33333334
  3966. outWeight: 0.33333334
  3967. - serializedVersion: 3
  3968. time: 0.050000004
  3969. value: 0
  3970. inSlope: 0
  3971. outSlope: 0
  3972. tangentMode: 0
  3973. weightedMode: 0
  3974. inWeight: 0.33333334
  3975. outWeight: 0.33333334
  3976. - serializedVersion: 3
  3977. time: 0.06666667
  3978. value: 0
  3979. inSlope: 0
  3980. outSlope: 0
  3981. tangentMode: 0
  3982. weightedMode: 0
  3983. inWeight: 0.33333334
  3984. outWeight: 0.33333334
  3985. - serializedVersion: 3
  3986. time: 0.083333336
  3987. value: 0
  3988. inSlope: 0
  3989. outSlope: 0
  3990. tangentMode: 0
  3991. weightedMode: 0
  3992. inWeight: 0.33333334
  3993. outWeight: 0.33333334
  3994. - serializedVersion: 3
  3995. time: 0.1
  3996. value: 0
  3997. inSlope: 0
  3998. outSlope: 0
  3999. tangentMode: 0
  4000. weightedMode: 0
  4001. inWeight: 0.33333334
  4002. outWeight: 0.33333334
  4003. - serializedVersion: 3
  4004. time: 0.11666667
  4005. value: 0
  4006. inSlope: 0
  4007. outSlope: 0
  4008. tangentMode: 0
  4009. weightedMode: 0
  4010. inWeight: 0.33333334
  4011. outWeight: 0.33333334
  4012. - serializedVersion: 3
  4013. time: 0.13333334
  4014. value: 0
  4015. inSlope: 0
  4016. outSlope: 0
  4017. tangentMode: 0
  4018. weightedMode: 0
  4019. inWeight: 0.33333334
  4020. outWeight: 0.33333334
  4021. - serializedVersion: 3
  4022. time: 0.15
  4023. value: 0
  4024. inSlope: 0
  4025. outSlope: 0
  4026. tangentMode: 0
  4027. weightedMode: 0
  4028. inWeight: 0.33333334
  4029. outWeight: 0.33333334
  4030. - serializedVersion: 3
  4031. time: 0.16666667
  4032. value: 0
  4033. inSlope: 0
  4034. outSlope: 0
  4035. tangentMode: 0
  4036. weightedMode: 0
  4037. inWeight: 0.33333334
  4038. outWeight: 0.33333334
  4039. - serializedVersion: 3
  4040. time: 0.18333334
  4041. value: 0
  4042. inSlope: 0
  4043. outSlope: 0
  4044. tangentMode: 0
  4045. weightedMode: 0
  4046. inWeight: 0.33333334
  4047. outWeight: 0.33333334
  4048. - serializedVersion: 3
  4049. time: 0.2
  4050. value: 0
  4051. inSlope: 0
  4052. outSlope: 0
  4053. tangentMode: 0
  4054. weightedMode: 0
  4055. inWeight: 0.33333334
  4056. outWeight: 0.33333334
  4057. - serializedVersion: 3
  4058. time: 0.21666667
  4059. value: 0
  4060. inSlope: 0
  4061. outSlope: 0
  4062. tangentMode: 0
  4063. weightedMode: 0
  4064. inWeight: 0.33333334
  4065. outWeight: 0.33333334
  4066. - serializedVersion: 3
  4067. time: 0.23333333
  4068. value: 0
  4069. inSlope: 0
  4070. outSlope: 0
  4071. tangentMode: 0
  4072. weightedMode: 0
  4073. inWeight: 0.33333334
  4074. outWeight: 0.33333334
  4075. - serializedVersion: 3
  4076. time: 0.25
  4077. value: 0
  4078. inSlope: 0
  4079. outSlope: 0
  4080. tangentMode: 0
  4081. weightedMode: 0
  4082. inWeight: 0.33333334
  4083. outWeight: 0.33333334
  4084. - serializedVersion: 3
  4085. time: 0.26666668
  4086. value: 0
  4087. inSlope: 0
  4088. outSlope: 0
  4089. tangentMode: 0
  4090. weightedMode: 0
  4091. inWeight: 0.33333334
  4092. outWeight: 0.33333334
  4093. - serializedVersion: 3
  4094. time: 0.28333336
  4095. value: 0
  4096. inSlope: 0
  4097. outSlope: 0
  4098. tangentMode: 0
  4099. weightedMode: 0
  4100. inWeight: 0.33333334
  4101. outWeight: 0.33333334
  4102. - serializedVersion: 3
  4103. time: 0.30000004
  4104. value: 0
  4105. inSlope: 0
  4106. outSlope: 0
  4107. tangentMode: 0
  4108. weightedMode: 0
  4109. inWeight: 0.33333334
  4110. outWeight: 0.33333334
  4111. - serializedVersion: 3
  4112. time: 0.31666672
  4113. value: 0
  4114. inSlope: 0
  4115. outSlope: 0
  4116. tangentMode: 0
  4117. weightedMode: 0
  4118. inWeight: 0.33333334
  4119. outWeight: 0.33333334
  4120. - serializedVersion: 3
  4121. time: 0.3333334
  4122. value: 0
  4123. inSlope: 0
  4124. outSlope: 0
  4125. tangentMode: 0
  4126. weightedMode: 0
  4127. inWeight: 0.33333334
  4128. outWeight: 0.33333334
  4129. - serializedVersion: 3
  4130. time: 0.35000008
  4131. value: 0
  4132. inSlope: 0
  4133. outSlope: 0
  4134. tangentMode: 0
  4135. weightedMode: 0
  4136. inWeight: 0.33333334
  4137. outWeight: 0.33333334
  4138. - serializedVersion: 3
  4139. time: 0.36666676
  4140. value: 0
  4141. inSlope: 0
  4142. outSlope: 0
  4143. tangentMode: 0
  4144. weightedMode: 0
  4145. inWeight: 0.33333334
  4146. outWeight: 0.33333334
  4147. - serializedVersion: 3
  4148. time: 0.38333344
  4149. value: 0
  4150. inSlope: 0
  4151. outSlope: 0
  4152. tangentMode: 0
  4153. weightedMode: 0
  4154. inWeight: 0.33333334
  4155. outWeight: 0.33333334
  4156. - serializedVersion: 3
  4157. time: 0.40000013
  4158. value: 0
  4159. inSlope: 0
  4160. outSlope: 0
  4161. tangentMode: 0
  4162. weightedMode: 0
  4163. inWeight: 0.33333334
  4164. outWeight: 0.33333334
  4165. - serializedVersion: 3
  4166. time: 0.4166668
  4167. value: 0
  4168. inSlope: 0
  4169. outSlope: 0
  4170. tangentMode: 0
  4171. weightedMode: 0
  4172. inWeight: 0.33333334
  4173. outWeight: 0.33333334
  4174. - serializedVersion: 3
  4175. time: 0.4333335
  4176. value: 0
  4177. inSlope: 0
  4178. outSlope: 0
  4179. tangentMode: 0
  4180. weightedMode: 0
  4181. inWeight: 0.33333334
  4182. outWeight: 0.33333334
  4183. - serializedVersion: 3
  4184. time: 0.45000017
  4185. value: 0
  4186. inSlope: 0
  4187. outSlope: 0
  4188. tangentMode: 0
  4189. weightedMode: 0
  4190. inWeight: 0.33333334
  4191. outWeight: 0.33333334
  4192. - serializedVersion: 3
  4193. time: 0.46666685
  4194. value: 0
  4195. inSlope: 0
  4196. outSlope: 0
  4197. tangentMode: 0
  4198. weightedMode: 0
  4199. inWeight: 0.33333334
  4200. outWeight: 0.33333334
  4201. - serializedVersion: 3
  4202. time: 0.48333353
  4203. value: 0
  4204. inSlope: 0
  4205. outSlope: 0
  4206. tangentMode: 0
  4207. weightedMode: 0
  4208. inWeight: 0.33333334
  4209. outWeight: 0.33333334
  4210. - serializedVersion: 3
  4211. time: 0.5
  4212. value: 0
  4213. inSlope: 0
  4214. outSlope: 0
  4215. tangentMode: 0
  4216. weightedMode: 0
  4217. inWeight: 0.33333334
  4218. outWeight: 0.33333334
  4219. m_PreInfinity: 2
  4220. m_PostInfinity: 2
  4221. m_RotationOrder: 4
  4222. attribute: m_LocalRotation.y
  4223. path: FailedPiece2
  4224. classID: 224
  4225. script: {fileID: 0}
  4226. - curve:
  4227. serializedVersion: 2
  4228. m_Curve:
  4229. - serializedVersion: 3
  4230. time: 0
  4231. value: -0.969005
  4232. inSlope: 0.06458044
  4233. outSlope: 0.06458044
  4234. tangentMode: 0
  4235. weightedMode: 0
  4236. inWeight: 0.33333334
  4237. outWeight: 0.33333334
  4238. - serializedVersion: 3
  4239. time: 0.016666668
  4240. value: -0.96792865
  4241. inSlope: 0.12620687
  4242. outSlope: 0.12620687
  4243. tangentMode: 0
  4244. weightedMode: 0
  4245. inWeight: 0.33333334
  4246. outWeight: 0.33333334
  4247. - serializedVersion: 3
  4248. time: 0.033333335
  4249. value: -0.9647981
  4250. inSlope: 0.24780747
  4251. outSlope: 0.24780747
  4252. tangentMode: 0
  4253. weightedMode: 0
  4254. inWeight: 0.33333334
  4255. outWeight: 0.33333334
  4256. - serializedVersion: 3
  4257. time: 0.050000004
  4258. value: -0.9596684
  4259. inSlope: 0.36782384
  4260. outSlope: 0.36782384
  4261. tangentMode: 0
  4262. weightedMode: 0
  4263. inWeight: 0.33333334
  4264. outWeight: 0.33333334
  4265. - serializedVersion: 3
  4266. time: 0.06666667
  4267. value: -0.9525373
  4268. inSlope: 0.48756844
  4269. outSlope: 0.48756844
  4270. tangentMode: 0
  4271. weightedMode: 0
  4272. inWeight: 0.33333334
  4273. outWeight: 0.33333334
  4274. - serializedVersion: 3
  4275. time: 0.083333336
  4276. value: -0.9434161
  4277. inSlope: 0.60452884
  4278. outSlope: 0.60452884
  4279. tangentMode: 0
  4280. weightedMode: 0
  4281. inWeight: 0.33333334
  4282. outWeight: 0.33333334
  4283. - serializedVersion: 3
  4284. time: 0.1
  4285. value: -0.93238634
  4286. inSlope: 0.71327275
  4287. outSlope: 0.71327275
  4288. tangentMode: 0
  4289. weightedMode: 0
  4290. inWeight: 0.33333334
  4291. outWeight: 0.33333334
  4292. - serializedVersion: 3
  4293. time: 0.11666667
  4294. value: -0.91964036
  4295. inSlope: 0.80633986
  4296. outSlope: 0.80633986
  4297. tangentMode: 0
  4298. weightedMode: 0
  4299. inWeight: 0.33333334
  4300. outWeight: 0.33333334
  4301. - serializedVersion: 3
  4302. time: 0.13333334
  4303. value: -0.90550834
  4304. inSlope: 0.87516177
  4305. outSlope: 0.87516177
  4306. tangentMode: 0
  4307. weightedMode: 0
  4308. inWeight: 0.33333334
  4309. outWeight: 0.33333334
  4310. - serializedVersion: 3
  4311. time: 0.15
  4312. value: -0.8904683
  4313. inSlope: 0.91093725
  4314. outSlope: 0.91093725
  4315. tangentMode: 0
  4316. weightedMode: 0
  4317. inWeight: 0.33333334
  4318. outWeight: 0.33333334
  4319. - serializedVersion: 3
  4320. time: 0.16666667
  4321. value: -0.87514377
  4322. inSlope: 0.90544766
  4323. outSlope: 0.90544766
  4324. tangentMode: 0
  4325. weightedMode: 0
  4326. inWeight: 0.33333334
  4327. outWeight: 0.33333334
  4328. - serializedVersion: 3
  4329. time: 0.18333334
  4330. value: -0.8602867
  4331. inSlope: 0.85179096
  4332. outSlope: 0.85179096
  4333. tangentMode: 0
  4334. weightedMode: 0
  4335. inWeight: 0.33333334
  4336. outWeight: 0.33333334
  4337. - serializedVersion: 3
  4338. time: 0.2
  4339. value: -0.84675074
  4340. inSlope: 0.80677277
  4341. outSlope: 0.80677277
  4342. tangentMode: 0
  4343. weightedMode: 0
  4344. inWeight: 0.33333334
  4345. outWeight: 0.33333334
  4346. - serializedVersion: 3
  4347. time: 0.21666667
  4348. value: -0.8333943
  4349. inSlope: 0.8463586
  4350. outSlope: 0.8463586
  4351. tangentMode: 0
  4352. weightedMode: 0
  4353. inWeight: 0.33333334
  4354. outWeight: 0.33333334
  4355. - serializedVersion: 3
  4356. time: 0.23333333
  4357. value: -0.8185388
  4358. inSlope: 0.932563
  4359. outSlope: 0.932563
  4360. tangentMode: 0
  4361. weightedMode: 0
  4362. inWeight: 0.33333334
  4363. outWeight: 0.33333334
  4364. - serializedVersion: 3
  4365. time: 0.25
  4366. value: -0.80230886
  4367. inSlope: 1.0103163
  4368. outSlope: 1.0103163
  4369. tangentMode: 0
  4370. weightedMode: 0
  4371. inWeight: 0.33333334
  4372. outWeight: 0.33333334
  4373. - serializedVersion: 3
  4374. time: 0.26666668
  4375. value: -0.78486156
  4376. inSlope: 1.0775731
  4377. outSlope: 1.0775731
  4378. tangentMode: 0
  4379. weightedMode: 0
  4380. inWeight: 0.33333334
  4381. outWeight: 0.33333334
  4382. - serializedVersion: 3
  4383. time: 0.28333336
  4384. value: -0.7663897
  4385. inSlope: 1.1321774
  4386. outSlope: 1.1321774
  4387. tangentMode: 0
  4388. weightedMode: 0
  4389. inWeight: 0.33333334
  4390. outWeight: 0.33333334
  4391. - serializedVersion: 3
  4392. time: 0.30000004
  4393. value: -0.7471223
  4394. inSlope: 1.1720046
  4395. outSlope: 1.1720046
  4396. tangentMode: 0
  4397. weightedMode: 0
  4398. inWeight: 0.33333334
  4399. outWeight: 0.33333334
  4400. - serializedVersion: 3
  4401. time: 0.31666672
  4402. value: -0.7273229
  4403. inSlope: 1.1950036
  4404. outSlope: 1.1950036
  4405. tangentMode: 0
  4406. weightedMode: 0
  4407. inWeight: 0.33333334
  4408. outWeight: 0.33333334
  4409. - serializedVersion: 3
  4410. time: 0.3333334
  4411. value: -0.7072888
  4412. inSlope: 1.1992558
  4413. outSlope: 1.1992558
  4414. tangentMode: 0
  4415. weightedMode: 0
  4416. inWeight: 0.33333334
  4417. outWeight: 0.33333334
  4418. - serializedVersion: 3
  4419. time: 0.35000008
  4420. value: -0.68734765
  4421. inSlope: 1.1831071
  4422. outSlope: 1.1831071
  4423. tangentMode: 0
  4424. weightedMode: 0
  4425. inWeight: 0.33333334
  4426. outWeight: 0.33333334
  4427. - serializedVersion: 3
  4428. time: 0.36666676
  4429. value: -0.66785187
  4430. inSlope: 1.1451467
  4431. outSlope: 1.1451467
  4432. tangentMode: 0
  4433. weightedMode: 0
  4434. inWeight: 0.33333334
  4435. outWeight: 0.33333334
  4436. - serializedVersion: 3
  4437. time: 0.38333344
  4438. value: -0.64917606
  4439. inSlope: 1.0842643
  4440. outSlope: 1.0842643
  4441. tangentMode: 0
  4442. weightedMode: 0
  4443. inWeight: 0.33333334
  4444. outWeight: 0.33333334
  4445. - serializedVersion: 3
  4446. time: 0.40000013
  4447. value: -0.6317097
  4448. inSlope: 0.99970675
  4449. outSlope: 0.99970675
  4450. tangentMode: 0
  4451. weightedMode: 0
  4452. inWeight: 0.33333334
  4453. outWeight: 0.33333334
  4454. - serializedVersion: 3
  4455. time: 0.4166668
  4456. value: -0.6158525
  4457. inSlope: 0.8910452
  4458. outSlope: 0.8910452
  4459. tangentMode: 0
  4460. weightedMode: 0
  4461. inWeight: 0.33333334
  4462. outWeight: 0.33333334
  4463. - serializedVersion: 3
  4464. time: 0.4333335
  4465. value: -0.60200816
  4466. inSlope: 0.75821334
  4467. outSlope: 0.75821334
  4468. tangentMode: 0
  4469. weightedMode: 0
  4470. inWeight: 0.33333334
  4471. outWeight: 0.33333334
  4472. - serializedVersion: 3
  4473. time: 0.45000017
  4474. value: -0.5905787
  4475. inSlope: 0.60149026
  4476. outSlope: 0.60149026
  4477. tangentMode: 0
  4478. weightedMode: 0
  4479. inWeight: 0.33333334
  4480. outWeight: 0.33333334
  4481. - serializedVersion: 3
  4482. time: 0.46666685
  4483. value: -0.5819585
  4484. inSlope: 0.421566
  4485. outSlope: 0.421566
  4486. tangentMode: 0
  4487. weightedMode: 0
  4488. inWeight: 0.33333334
  4489. outWeight: 0.33333334
  4490. - serializedVersion: 3
  4491. time: 0.48333353
  4492. value: -0.57652646
  4493. inSlope: 0.21952681
  4494. outSlope: 0.21952681
  4495. tangentMode: 0
  4496. weightedMode: 0
  4497. inWeight: 0.33333334
  4498. outWeight: 0.33333334
  4499. - serializedVersion: 3
  4500. time: 0.5
  4501. value: -0.5746409
  4502. inSlope: 0.11313332
  4503. outSlope: 0.11313332
  4504. tangentMode: 0
  4505. weightedMode: 0
  4506. inWeight: 0.33333334
  4507. outWeight: 0.33333334
  4508. m_PreInfinity: 2
  4509. m_PostInfinity: 2
  4510. m_RotationOrder: 4
  4511. attribute: m_LocalRotation.z
  4512. path: FailedPiece2
  4513. classID: 224
  4514. script: {fileID: 0}
  4515. - curve:
  4516. serializedVersion: 2
  4517. m_Curve:
  4518. - serializedVersion: 3
  4519. time: 0
  4520. value: -0.2470412
  4521. inSlope: -0.25104225
  4522. outSlope: -0.25104225
  4523. tangentMode: 0
  4524. weightedMode: 0
  4525. inWeight: 0.33333334
  4526. outWeight: 0.33333334
  4527. - serializedVersion: 3
  4528. time: 0.016666668
  4529. value: -0.25122523
  4530. inSlope: -0.4785159
  4531. outSlope: -0.4785159
  4532. tangentMode: 0
  4533. weightedMode: 0
  4534. inWeight: 0.33333334
  4535. outWeight: 0.33333334
  4536. - serializedVersion: 3
  4537. time: 0.033333335
  4538. value: -0.26299173
  4539. inSlope: -0.89727664
  4540. outSlope: -0.89727664
  4541. tangentMode: 0
  4542. weightedMode: 0
  4543. inWeight: 0.33333334
  4544. outWeight: 0.33333334
  4545. - serializedVersion: 3
  4546. time: 0.050000004
  4547. value: -0.28113446
  4548. inSlope: -1.2429053
  4549. outSlope: -1.2429053
  4550. tangentMode: 0
  4551. weightedMode: 0
  4552. inWeight: 0.33333334
  4553. outWeight: 0.33333334
  4554. - serializedVersion: 3
  4555. time: 0.06666667
  4556. value: -0.3044219
  4557. inSlope: -1.5143038
  4558. outSlope: -1.5143038
  4559. tangentMode: 0
  4560. weightedMode: 0
  4561. inWeight: 0.33333334
  4562. outWeight: 0.33333334
  4563. - serializedVersion: 3
  4564. time: 0.083333336
  4565. value: -0.33161125
  4566. inSlope: -1.7112423
  4567. outSlope: -1.7112423
  4568. tangentMode: 0
  4569. weightedMode: 0
  4570. inWeight: 0.33333334
  4571. outWeight: 0.33333334
  4572. - serializedVersion: 3
  4573. time: 0.1
  4574. value: -0.3614633
  4575. inSlope: -1.8345103
  4576. outSlope: -1.8345103
  4577. tangentMode: 0
  4578. weightedMode: 0
  4579. inWeight: 0.33333334
  4580. outWeight: 0.33333334
  4581. - serializedVersion: 3
  4582. time: 0.11666667
  4583. value: -0.3927616
  4584. inSlope: -1.8859556
  4585. outSlope: -1.8859556
  4586. tangentMode: 0
  4587. weightedMode: 0
  4588. inWeight: 0.33333334
  4589. outWeight: 0.33333334
  4590. - serializedVersion: 3
  4591. time: 0.13333334
  4592. value: -0.4243285
  4593. inSlope: -1.8685088
  4594. outSlope: -1.8685088
  4595. tangentMode: 0
  4596. weightedMode: 0
  4597. inWeight: 0.33333334
  4598. outWeight: 0.33333334
  4599. - serializedVersion: 3
  4600. time: 0.15
  4601. value: -0.45504522
  4602. inSlope: -1.7860339
  4603. outSlope: -1.7860339
  4604. tangentMode: 0
  4605. weightedMode: 0
  4606. inWeight: 0.33333334
  4607. outWeight: 0.33333334
  4608. - serializedVersion: 3
  4609. time: 0.16666667
  4610. value: -0.48386297
  4611. inSlope: -1.6429586
  4612. outSlope: -1.6429586
  4613. tangentMode: 0
  4614. weightedMode: 0
  4615. inWeight: 0.33333334
  4616. outWeight: 0.33333334
  4617. - serializedVersion: 3
  4618. time: 0.18333334
  4619. value: -0.5098105
  4620. inSlope: -1.4438055
  4621. outSlope: -1.4438055
  4622. tangentMode: 0
  4623. weightedMode: 0
  4624. inWeight: 0.33333334
  4625. outWeight: 0.33333334
  4626. - serializedVersion: 3
  4627. time: 0.2
  4628. value: -0.5319898
  4629. inSlope: -1.2860514
  4630. outSlope: -1.2860514
  4631. tangentMode: 0
  4632. weightedMode: 0
  4633. inWeight: 0.33333334
  4634. outWeight: 0.33333334
  4635. - serializedVersion: 3
  4636. time: 0.21666667
  4637. value: -0.5526789
  4638. inSlope: -1.2738438
  4639. outSlope: -1.2738438
  4640. tangentMode: 0
  4641. weightedMode: 0
  4642. inWeight: 0.33333334
  4643. outWeight: 0.33333334
  4644. - serializedVersion: 3
  4645. time: 0.23333333
  4646. value: -0.57445127
  4647. inSlope: -1.3269086
  4648. outSlope: -1.3269086
  4649. tangentMode: 0
  4650. weightedMode: 0
  4651. inWeight: 0.33333334
  4652. outWeight: 0.33333334
  4653. - serializedVersion: 3
  4654. time: 0.25
  4655. value: -0.59690917
  4656. inSlope: -1.3565965
  4657. outSlope: -1.3565965
  4658. tangentMode: 0
  4659. weightedMode: 0
  4660. inWeight: 0.33333334
  4661. outWeight: 0.33333334
  4662. - serializedVersion: 3
  4663. time: 0.26666668
  4664. value: -0.61967117
  4665. inSlope: -1.3640004
  4666. outSlope: -1.3640004
  4667. tangentMode: 0
  4668. weightedMode: 0
  4669. inWeight: 0.33333334
  4670. outWeight: 0.33333334
  4671. - serializedVersion: 3
  4672. time: 0.28333336
  4673. value: -0.6423759
  4674. inSlope: -1.3504624
  4675. outSlope: -1.3504624
  4676. tangentMode: 0
  4677. weightedMode: 0
  4678. inWeight: 0.33333334
  4679. outWeight: 0.33333334
  4680. - serializedVersion: 3
  4681. time: 0.30000004
  4682. value: -0.6646866
  4683. inSlope: -1.3175858
  4684. outSlope: -1.3175858
  4685. tangentMode: 0
  4686. weightedMode: 0
  4687. inWeight: 0.33333334
  4688. outWeight: 0.33333334
  4689. - serializedVersion: 3
  4690. time: 0.31666672
  4691. value: -0.68629545
  4692. inSlope: -1.2671406
  4693. outSlope: -1.2671406
  4694. tangentMode: 0
  4695. weightedMode: 0
  4696. inWeight: 0.33333334
  4697. outWeight: 0.33333334
  4698. - serializedVersion: 3
  4699. time: 0.3333334
  4700. value: -0.7069247
  4701. inSlope: -1.2009921
  4702. outSlope: -1.2009921
  4703. tangentMode: 0
  4704. weightedMode: 0
  4705. inWeight: 0.33333334
  4706. outWeight: 0.33333334
  4707. - serializedVersion: 3
  4708. time: 0.35000008
  4709. value: -0.72632855
  4710. inSlope: -1.1210855
  4711. outSlope: -1.1210855
  4712. tangentMode: 0
  4713. weightedMode: 0
  4714. inWeight: 0.33333334
  4715. outWeight: 0.33333334
  4716. - serializedVersion: 3
  4717. time: 0.36666676
  4718. value: -0.7442942
  4719. inSlope: -1.0292878
  4720. outSlope: -1.0292878
  4721. tangentMode: 0
  4722. weightedMode: 0
  4723. inWeight: 0.33333334
  4724. outWeight: 0.33333334
  4725. - serializedVersion: 3
  4726. time: 0.38333344
  4727. value: -0.7606382
  4728. inSlope: -0.9273229
  4729. outSlope: -0.9273229
  4730. tangentMode: 0
  4731. weightedMode: 0
  4732. inWeight: 0.33333334
  4733. outWeight: 0.33333334
  4734. - serializedVersion: 3
  4735. time: 0.40000013
  4736. value: -0.775205
  4737. inSlope: -0.81669796
  4738. outSlope: -0.81669796
  4739. tangentMode: 0
  4740. weightedMode: 0
  4741. inWeight: 0.33333334
  4742. outWeight: 0.33333334
  4743. - serializedVersion: 3
  4744. time: 0.4166668
  4745. value: -0.78786147
  4746. inSlope: -0.69854677
  4747. outSlope: -0.69854677
  4748. tangentMode: 0
  4749. weightedMode: 0
  4750. inWeight: 0.33333334
  4751. outWeight: 0.33333334
  4752. - serializedVersion: 3
  4753. time: 0.4333335
  4754. value: -0.7984899
  4755. inSlope: -0.57355773
  4756. outSlope: -0.57355773
  4757. tangentMode: 0
  4758. weightedMode: 0
  4759. inWeight: 0.33333334
  4760. outWeight: 0.33333334
  4761. - serializedVersion: 3
  4762. time: 0.45000017
  4763. value: -0.8069801
  4764. inSlope: -0.4418578
  4765. outSlope: -0.4418578
  4766. tangentMode: 0
  4767. weightedMode: 0
  4768. inWeight: 0.33333334
  4769. outWeight: 0.33333334
  4770. - serializedVersion: 3
  4771. time: 0.46666685
  4772. value: -0.81321853
  4773. inSlope: -0.3029517
  4774. outSlope: -0.3029517
  4775. tangentMode: 0
  4776. weightedMode: 0
  4777. inWeight: 0.33333334
  4778. outWeight: 0.33333334
  4779. - serializedVersion: 3
  4780. time: 0.48333353
  4781. value: -0.8170785
  4782. inSlope: -0.1556132
  4783. outSlope: -0.1556132
  4784. tangentMode: 0
  4785. weightedMode: 0
  4786. inWeight: 0.33333334
  4787. outWeight: 0.33333334
  4788. - serializedVersion: 3
  4789. time: 0.5
  4790. value: -0.8184056
  4791. inSlope: -0.07963035
  4792. outSlope: -0.07963035
  4793. tangentMode: 0
  4794. weightedMode: 0
  4795. inWeight: 0.33333334
  4796. outWeight: 0.33333334
  4797. m_PreInfinity: 2
  4798. m_PostInfinity: 2
  4799. m_RotationOrder: 4
  4800. attribute: m_LocalRotation.w
  4801. path: FailedPiece2
  4802. classID: 224
  4803. script: {fileID: 0}
  4804. - curve:
  4805. serializedVersion: 2
  4806. m_Curve:
  4807. - serializedVersion: 3
  4808. time: 0
  4809. value: -11.8
  4810. inSlope: -437.49417
  4811. outSlope: -437.49417
  4812. tangentMode: 0
  4813. weightedMode: 0
  4814. inWeight: 0.33333334
  4815. outWeight: 0.24392213
  4816. - serializedVersion: 3
  4817. time: 0.2
  4818. value: -74.5
  4819. inSlope: -134.4
  4820. outSlope: -134.4
  4821. tangentMode: 136
  4822. weightedMode: 0
  4823. inWeight: 0.33333334
  4824. outWeight: 0.33333334
  4825. - serializedVersion: 3
  4826. time: 0.5
  4827. value: -91.3
  4828. inSlope: 0
  4829. outSlope: 0
  4830. tangentMode: 136
  4831. weightedMode: 0
  4832. inWeight: 0.33333334
  4833. outWeight: 0.33333334
  4834. m_PreInfinity: 2
  4835. m_PostInfinity: 2
  4836. m_RotationOrder: 4
  4837. attribute: m_AnchoredPosition.x
  4838. path: FailedPiece3
  4839. classID: 224
  4840. script: {fileID: 0}
  4841. - curve:
  4842. serializedVersion: 2
  4843. m_Curve:
  4844. - serializedVersion: 3
  4845. time: 0
  4846. value: -10.5
  4847. inSlope: -266.8806
  4848. outSlope: -266.8806
  4849. tangentMode: 0
  4850. weightedMode: 0
  4851. inWeight: 0.33333334
  4852. outWeight: 0.35747215
  4853. - serializedVersion: 3
  4854. time: 0.2
  4855. value: -75.3
  4856. inSlope: -333.4
  4857. outSlope: -333.4
  4858. tangentMode: 136
  4859. weightedMode: 0
  4860. inWeight: 0.33333334
  4861. outWeight: 0.33333334
  4862. - serializedVersion: 3
  4863. time: 0.5
  4864. value: -177.2
  4865. inSlope: -260.41864
  4866. outSlope: -260.41864
  4867. tangentMode: 0
  4868. weightedMode: 0
  4869. inWeight: 0.28444082
  4870. outWeight: 0.33333334
  4871. m_PreInfinity: 2
  4872. m_PostInfinity: 2
  4873. m_RotationOrder: 4
  4874. attribute: m_AnchoredPosition.y
  4875. path: FailedPiece3
  4876. classID: 224
  4877. script: {fileID: 0}
  4878. - curve:
  4879. serializedVersion: 2
  4880. m_Curve:
  4881. - serializedVersion: 3
  4882. time: 0
  4883. value: 0
  4884. inSlope: 0
  4885. outSlope: 0
  4886. tangentMode: 0
  4887. weightedMode: 0
  4888. inWeight: 0.33333334
  4889. outWeight: 0.33333334
  4890. - serializedVersion: 3
  4891. time: 0.016666668
  4892. value: 0
  4893. inSlope: 0
  4894. outSlope: 0
  4895. tangentMode: 0
  4896. weightedMode: 0
  4897. inWeight: 0.33333334
  4898. outWeight: 0.33333334
  4899. - serializedVersion: 3
  4900. time: 0.033333335
  4901. value: 0
  4902. inSlope: 0
  4903. outSlope: 0
  4904. tangentMode: 0
  4905. weightedMode: 0
  4906. inWeight: 0.33333334
  4907. outWeight: 0.33333334
  4908. - serializedVersion: 3
  4909. time: 0.050000004
  4910. value: 0
  4911. inSlope: 0
  4912. outSlope: 0
  4913. tangentMode: 0
  4914. weightedMode: 0
  4915. inWeight: 0.33333334
  4916. outWeight: 0.33333334
  4917. - serializedVersion: 3
  4918. time: 0.06666667
  4919. value: 0
  4920. inSlope: 0
  4921. outSlope: 0
  4922. tangentMode: 0
  4923. weightedMode: 0
  4924. inWeight: 0.33333334
  4925. outWeight: 0.33333334
  4926. - serializedVersion: 3
  4927. time: 0.083333336
  4928. value: 0
  4929. inSlope: 0
  4930. outSlope: 0
  4931. tangentMode: 0
  4932. weightedMode: 0
  4933. inWeight: 0.33333334
  4934. outWeight: 0.33333334
  4935. - serializedVersion: 3
  4936. time: 0.1
  4937. value: 0
  4938. inSlope: 0
  4939. outSlope: 0
  4940. tangentMode: 0
  4941. weightedMode: 0
  4942. inWeight: 0.33333334
  4943. outWeight: 0.33333334
  4944. - serializedVersion: 3
  4945. time: 0.11666667
  4946. value: 0
  4947. inSlope: 0
  4948. outSlope: 0
  4949. tangentMode: 0
  4950. weightedMode: 0
  4951. inWeight: 0.33333334
  4952. outWeight: 0.33333334
  4953. - serializedVersion: 3
  4954. time: 0.13333334
  4955. value: 0
  4956. inSlope: 0
  4957. outSlope: 0
  4958. tangentMode: 0
  4959. weightedMode: 0
  4960. inWeight: 0.33333334
  4961. outWeight: 0.33333334
  4962. - serializedVersion: 3
  4963. time: 0.15
  4964. value: 0
  4965. inSlope: 0
  4966. outSlope: 0
  4967. tangentMode: 0
  4968. weightedMode: 0
  4969. inWeight: 0.33333334
  4970. outWeight: 0.33333334
  4971. - serializedVersion: 3
  4972. time: 0.16666667
  4973. value: 0
  4974. inSlope: 0
  4975. outSlope: 0
  4976. tangentMode: 0
  4977. weightedMode: 0
  4978. inWeight: 0.33333334
  4979. outWeight: 0.33333334
  4980. - serializedVersion: 3
  4981. time: 0.18333334
  4982. value: 0
  4983. inSlope: 0
  4984. outSlope: 0
  4985. tangentMode: 0
  4986. weightedMode: 0
  4987. inWeight: 0.33333334
  4988. outWeight: 0.33333334
  4989. - serializedVersion: 3
  4990. time: 0.2
  4991. value: 0
  4992. inSlope: 0
  4993. outSlope: 0
  4994. tangentMode: 0
  4995. weightedMode: 0
  4996. inWeight: 0.33333334
  4997. outWeight: 0.33333334
  4998. - serializedVersion: 3
  4999. time: 0.21666667
  5000. value: 0
  5001. inSlope: 0
  5002. outSlope: 0
  5003. tangentMode: 0
  5004. weightedMode: 0
  5005. inWeight: 0.33333334
  5006. outWeight: 0.33333334
  5007. - serializedVersion: 3
  5008. time: 0.23333333
  5009. value: 0
  5010. inSlope: 0
  5011. outSlope: 0
  5012. tangentMode: 0
  5013. weightedMode: 0
  5014. inWeight: 0.33333334
  5015. outWeight: 0.33333334
  5016. - serializedVersion: 3
  5017. time: 0.25
  5018. value: 0
  5019. inSlope: 0
  5020. outSlope: 0
  5021. tangentMode: 0
  5022. weightedMode: 0
  5023. inWeight: 0.33333334
  5024. outWeight: 0.33333334
  5025. - serializedVersion: 3
  5026. time: 0.26666668
  5027. value: 0
  5028. inSlope: 0
  5029. outSlope: 0
  5030. tangentMode: 0
  5031. weightedMode: 0
  5032. inWeight: 0.33333334
  5033. outWeight: 0.33333334
  5034. - serializedVersion: 3
  5035. time: 0.28333336
  5036. value: 0
  5037. inSlope: 0
  5038. outSlope: 0
  5039. tangentMode: 0
  5040. weightedMode: 0
  5041. inWeight: 0.33333334
  5042. outWeight: 0.33333334
  5043. - serializedVersion: 3
  5044. time: 0.30000004
  5045. value: 0
  5046. inSlope: 0
  5047. outSlope: 0
  5048. tangentMode: 0
  5049. weightedMode: 0
  5050. inWeight: 0.33333334
  5051. outWeight: 0.33333334
  5052. - serializedVersion: 3
  5053. time: 0.31666672
  5054. value: 0
  5055. inSlope: 0
  5056. outSlope: 0
  5057. tangentMode: 0
  5058. weightedMode: 0
  5059. inWeight: 0.33333334
  5060. outWeight: 0.33333334
  5061. - serializedVersion: 3
  5062. time: 0.3333334
  5063. value: 0
  5064. inSlope: 0
  5065. outSlope: 0
  5066. tangentMode: 0
  5067. weightedMode: 0
  5068. inWeight: 0.33333334
  5069. outWeight: 0.33333334
  5070. - serializedVersion: 3
  5071. time: 0.35000008
  5072. value: 0
  5073. inSlope: 0
  5074. outSlope: 0
  5075. tangentMode: 0
  5076. weightedMode: 0
  5077. inWeight: 0.33333334
  5078. outWeight: 0.33333334
  5079. - serializedVersion: 3
  5080. time: 0.36666676
  5081. value: 0
  5082. inSlope: 0
  5083. outSlope: 0
  5084. tangentMode: 0
  5085. weightedMode: 0
  5086. inWeight: 0.33333334
  5087. outWeight: 0.33333334
  5088. - serializedVersion: 3
  5089. time: 0.38333344
  5090. value: 0
  5091. inSlope: 0
  5092. outSlope: 0
  5093. tangentMode: 0
  5094. weightedMode: 0
  5095. inWeight: 0.33333334
  5096. outWeight: 0.33333334
  5097. - serializedVersion: 3
  5098. time: 0.40000013
  5099. value: 0
  5100. inSlope: 0
  5101. outSlope: 0
  5102. tangentMode: 0
  5103. weightedMode: 0
  5104. inWeight: 0.33333334
  5105. outWeight: 0.33333334
  5106. - serializedVersion: 3
  5107. time: 0.4166668
  5108. value: 0
  5109. inSlope: 0
  5110. outSlope: 0
  5111. tangentMode: 0
  5112. weightedMode: 0
  5113. inWeight: 0.33333334
  5114. outWeight: 0.33333334
  5115. - serializedVersion: 3
  5116. time: 0.4333335
  5117. value: 0
  5118. inSlope: 0
  5119. outSlope: 0
  5120. tangentMode: 0
  5121. weightedMode: 0
  5122. inWeight: 0.33333334
  5123. outWeight: 0.33333334
  5124. - serializedVersion: 3
  5125. time: 0.45000017
  5126. value: 0
  5127. inSlope: 0
  5128. outSlope: 0
  5129. tangentMode: 0
  5130. weightedMode: 0
  5131. inWeight: 0.33333334
  5132. outWeight: 0.33333334
  5133. - serializedVersion: 3
  5134. time: 0.46666685
  5135. value: 0
  5136. inSlope: 0
  5137. outSlope: 0
  5138. tangentMode: 0
  5139. weightedMode: 0
  5140. inWeight: 0.33333334
  5141. outWeight: 0.33333334
  5142. - serializedVersion: 3
  5143. time: 0.48333353
  5144. value: 0
  5145. inSlope: 0
  5146. outSlope: 0
  5147. tangentMode: 0
  5148. weightedMode: 0
  5149. inWeight: 0.33333334
  5150. outWeight: 0.33333334
  5151. - serializedVersion: 3
  5152. time: 0.5
  5153. value: 0
  5154. inSlope: 0
  5155. outSlope: 0
  5156. tangentMode: 0
  5157. weightedMode: 0
  5158. inWeight: 0.33333334
  5159. outWeight: 0.33333334
  5160. m_PreInfinity: 2
  5161. m_PostInfinity: 2
  5162. m_RotationOrder: 4
  5163. attribute: m_LocalRotation.x
  5164. path: FailedPiece3
  5165. classID: 224
  5166. script: {fileID: 0}
  5167. - curve:
  5168. serializedVersion: 2
  5169. m_Curve:
  5170. - serializedVersion: 3
  5171. time: 0
  5172. value: 0
  5173. inSlope: 0
  5174. outSlope: 0
  5175. tangentMode: 0
  5176. weightedMode: 0
  5177. inWeight: 0.33333334
  5178. outWeight: 0.33333334
  5179. - serializedVersion: 3
  5180. time: 0.016666668
  5181. value: 0
  5182. inSlope: 0
  5183. outSlope: 0
  5184. tangentMode: 0
  5185. weightedMode: 0
  5186. inWeight: 0.33333334
  5187. outWeight: 0.33333334
  5188. - serializedVersion: 3
  5189. time: 0.033333335
  5190. value: 0
  5191. inSlope: 0
  5192. outSlope: 0
  5193. tangentMode: 0
  5194. weightedMode: 0
  5195. inWeight: 0.33333334
  5196. outWeight: 0.33333334
  5197. - serializedVersion: 3
  5198. time: 0.050000004
  5199. value: 0
  5200. inSlope: 0
  5201. outSlope: 0
  5202. tangentMode: 0
  5203. weightedMode: 0
  5204. inWeight: 0.33333334
  5205. outWeight: 0.33333334
  5206. - serializedVersion: 3
  5207. time: 0.06666667
  5208. value: 0
  5209. inSlope: 0
  5210. outSlope: 0
  5211. tangentMode: 0
  5212. weightedMode: 0
  5213. inWeight: 0.33333334
  5214. outWeight: 0.33333334
  5215. - serializedVersion: 3
  5216. time: 0.083333336
  5217. value: 0
  5218. inSlope: 0
  5219. outSlope: 0
  5220. tangentMode: 0
  5221. weightedMode: 0
  5222. inWeight: 0.33333334
  5223. outWeight: 0.33333334
  5224. - serializedVersion: 3
  5225. time: 0.1
  5226. value: 0
  5227. inSlope: 0
  5228. outSlope: 0
  5229. tangentMode: 0
  5230. weightedMode: 0
  5231. inWeight: 0.33333334
  5232. outWeight: 0.33333334
  5233. - serializedVersion: 3
  5234. time: 0.11666667
  5235. value: 0
  5236. inSlope: 0
  5237. outSlope: 0
  5238. tangentMode: 0
  5239. weightedMode: 0
  5240. inWeight: 0.33333334
  5241. outWeight: 0.33333334
  5242. - serializedVersion: 3
  5243. time: 0.13333334
  5244. value: 0
  5245. inSlope: 0
  5246. outSlope: 0
  5247. tangentMode: 0
  5248. weightedMode: 0
  5249. inWeight: 0.33333334
  5250. outWeight: 0.33333334
  5251. - serializedVersion: 3
  5252. time: 0.15
  5253. value: 0
  5254. inSlope: 0
  5255. outSlope: 0
  5256. tangentMode: 0
  5257. weightedMode: 0
  5258. inWeight: 0.33333334
  5259. outWeight: 0.33333334
  5260. - serializedVersion: 3
  5261. time: 0.16666667
  5262. value: 0
  5263. inSlope: 0
  5264. outSlope: 0
  5265. tangentMode: 0
  5266. weightedMode: 0
  5267. inWeight: 0.33333334
  5268. outWeight: 0.33333334
  5269. - serializedVersion: 3
  5270. time: 0.18333334
  5271. value: 0
  5272. inSlope: 0
  5273. outSlope: 0
  5274. tangentMode: 0
  5275. weightedMode: 0
  5276. inWeight: 0.33333334
  5277. outWeight: 0.33333334
  5278. - serializedVersion: 3
  5279. time: 0.2
  5280. value: 0
  5281. inSlope: 0
  5282. outSlope: 0
  5283. tangentMode: 0
  5284. weightedMode: 0
  5285. inWeight: 0.33333334
  5286. outWeight: 0.33333334
  5287. - serializedVersion: 3
  5288. time: 0.21666667
  5289. value: 0
  5290. inSlope: 0
  5291. outSlope: 0
  5292. tangentMode: 0
  5293. weightedMode: 0
  5294. inWeight: 0.33333334
  5295. outWeight: 0.33333334
  5296. - serializedVersion: 3
  5297. time: 0.23333333
  5298. value: 0
  5299. inSlope: 0
  5300. outSlope: 0
  5301. tangentMode: 0
  5302. weightedMode: 0
  5303. inWeight: 0.33333334
  5304. outWeight: 0.33333334
  5305. - serializedVersion: 3
  5306. time: 0.25
  5307. value: 0
  5308. inSlope: 0
  5309. outSlope: 0
  5310. tangentMode: 0
  5311. weightedMode: 0
  5312. inWeight: 0.33333334
  5313. outWeight: 0.33333334
  5314. - serializedVersion: 3
  5315. time: 0.26666668
  5316. value: 0
  5317. inSlope: 0
  5318. outSlope: 0
  5319. tangentMode: 0
  5320. weightedMode: 0
  5321. inWeight: 0.33333334
  5322. outWeight: 0.33333334
  5323. - serializedVersion: 3
  5324. time: 0.28333336
  5325. value: 0
  5326. inSlope: 0
  5327. outSlope: 0
  5328. tangentMode: 0
  5329. weightedMode: 0
  5330. inWeight: 0.33333334
  5331. outWeight: 0.33333334
  5332. - serializedVersion: 3
  5333. time: 0.30000004
  5334. value: 0
  5335. inSlope: 0
  5336. outSlope: 0
  5337. tangentMode: 0
  5338. weightedMode: 0
  5339. inWeight: 0.33333334
  5340. outWeight: 0.33333334
  5341. - serializedVersion: 3
  5342. time: 0.31666672
  5343. value: 0
  5344. inSlope: 0
  5345. outSlope: 0
  5346. tangentMode: 0
  5347. weightedMode: 0
  5348. inWeight: 0.33333334
  5349. outWeight: 0.33333334
  5350. - serializedVersion: 3
  5351. time: 0.3333334
  5352. value: 0
  5353. inSlope: 0
  5354. outSlope: 0
  5355. tangentMode: 0
  5356. weightedMode: 0
  5357. inWeight: 0.33333334
  5358. outWeight: 0.33333334
  5359. - serializedVersion: 3
  5360. time: 0.35000008
  5361. value: 0
  5362. inSlope: 0
  5363. outSlope: 0
  5364. tangentMode: 0
  5365. weightedMode: 0
  5366. inWeight: 0.33333334
  5367. outWeight: 0.33333334
  5368. - serializedVersion: 3
  5369. time: 0.36666676
  5370. value: 0
  5371. inSlope: 0
  5372. outSlope: 0
  5373. tangentMode: 0
  5374. weightedMode: 0
  5375. inWeight: 0.33333334
  5376. outWeight: 0.33333334
  5377. - serializedVersion: 3
  5378. time: 0.38333344
  5379. value: 0
  5380. inSlope: 0
  5381. outSlope: 0
  5382. tangentMode: 0
  5383. weightedMode: 0
  5384. inWeight: 0.33333334
  5385. outWeight: 0.33333334
  5386. - serializedVersion: 3
  5387. time: 0.40000013
  5388. value: 0
  5389. inSlope: 0
  5390. outSlope: 0
  5391. tangentMode: 0
  5392. weightedMode: 0
  5393. inWeight: 0.33333334
  5394. outWeight: 0.33333334
  5395. - serializedVersion: 3
  5396. time: 0.4166668
  5397. value: 0
  5398. inSlope: 0
  5399. outSlope: 0
  5400. tangentMode: 0
  5401. weightedMode: 0
  5402. inWeight: 0.33333334
  5403. outWeight: 0.33333334
  5404. - serializedVersion: 3
  5405. time: 0.4333335
  5406. value: 0
  5407. inSlope: 0
  5408. outSlope: 0
  5409. tangentMode: 0
  5410. weightedMode: 0
  5411. inWeight: 0.33333334
  5412. outWeight: 0.33333334
  5413. - serializedVersion: 3
  5414. time: 0.45000017
  5415. value: 0
  5416. inSlope: 0
  5417. outSlope: 0
  5418. tangentMode: 0
  5419. weightedMode: 0
  5420. inWeight: 0.33333334
  5421. outWeight: 0.33333334
  5422. - serializedVersion: 3
  5423. time: 0.46666685
  5424. value: 0
  5425. inSlope: 0
  5426. outSlope: 0
  5427. tangentMode: 0
  5428. weightedMode: 0
  5429. inWeight: 0.33333334
  5430. outWeight: 0.33333334
  5431. - serializedVersion: 3
  5432. time: 0.48333353
  5433. value: 0
  5434. inSlope: 0
  5435. outSlope: 0
  5436. tangentMode: 0
  5437. weightedMode: 0
  5438. inWeight: 0.33333334
  5439. outWeight: 0.33333334
  5440. - serializedVersion: 3
  5441. time: 0.5
  5442. value: 0
  5443. inSlope: 0
  5444. outSlope: 0
  5445. tangentMode: 0
  5446. weightedMode: 0
  5447. inWeight: 0.33333334
  5448. outWeight: 0.33333334
  5449. m_PreInfinity: 2
  5450. m_PostInfinity: 2
  5451. m_RotationOrder: 4
  5452. attribute: m_LocalRotation.y
  5453. path: FailedPiece3
  5454. classID: 224
  5455. script: {fileID: 0}
  5456. - curve:
  5457. serializedVersion: 2
  5458. m_Curve:
  5459. - serializedVersion: 3
  5460. time: 0
  5461. value: -0.8431006
  5462. inSlope: 0.202893
  5463. outSlope: 0.202893
  5464. tangentMode: 0
  5465. weightedMode: 0
  5466. inWeight: 0.33333334
  5467. outWeight: 0.33333334
  5468. - serializedVersion: 3
  5469. time: 0.016666668
  5470. value: -0.83971906
  5471. inSlope: 0.39158103
  5472. outSlope: 0.39158103
  5473. tangentMode: 0
  5474. weightedMode: 0
  5475. inWeight: 0.33333334
  5476. outWeight: 0.33333334
  5477. - serializedVersion: 3
  5478. time: 0.033333335
  5479. value: -0.8300479
  5480. inSlope: 0.7523649
  5481. outSlope: 0.7523649
  5482. tangentMode: 0
  5483. weightedMode: 0
  5484. inWeight: 0.33333334
  5485. outWeight: 0.33333334
  5486. - serializedVersion: 3
  5487. time: 0.050000004
  5488. value: -0.8146402
  5489. inSlope: 1.082325
  5490. outSlope: 1.082325
  5491. tangentMode: 0
  5492. weightedMode: 0
  5493. inWeight: 0.33333334
  5494. outWeight: 0.33333334
  5495. - serializedVersion: 3
  5496. time: 0.06666667
  5497. value: -0.7939704
  5498. inSlope: 1.382053
  5499. outSlope: 1.382053
  5500. tangentMode: 0
  5501. weightedMode: 0
  5502. inWeight: 0.33333334
  5503. outWeight: 0.33333334
  5504. - serializedVersion: 3
  5505. time: 0.083333336
  5506. value: -0.7685718
  5507. inSlope: 1.6449506
  5508. outSlope: 1.6449506
  5509. tangentMode: 0
  5510. weightedMode: 0
  5511. inWeight: 0.33333334
  5512. outWeight: 0.33333334
  5513. - serializedVersion: 3
  5514. time: 0.1
  5515. value: -0.7391387
  5516. inSlope: 1.859429
  5517. outSlope: 1.859429
  5518. tangentMode: 0
  5519. weightedMode: 0
  5520. inWeight: 0.33333334
  5521. outWeight: 0.33333334
  5522. - serializedVersion: 3
  5523. time: 0.11666667
  5524. value: -0.70659083
  5525. inSlope: 2.0111647
  5526. outSlope: 2.0111647
  5527. tangentMode: 0
  5528. weightedMode: 0
  5529. inWeight: 0.33333334
  5530. outWeight: 0.33333334
  5531. - serializedVersion: 3
  5532. time: 0.13333334
  5533. value: -0.6720999
  5534. inSlope: 2.0852063
  5535. outSlope: 2.0852063
  5536. tangentMode: 0
  5537. weightedMode: 0
  5538. inWeight: 0.33333334
  5539. outWeight: 0.33333334
  5540. - serializedVersion: 3
  5541. time: 0.15
  5542. value: -0.63708395
  5543. inSlope: 2.0677724
  5544. outSlope: 2.0677724
  5545. tangentMode: 0
  5546. weightedMode: 0
  5547. inWeight: 0.33333334
  5548. outWeight: 0.33333334
  5549. - serializedVersion: 3
  5550. time: 0.16666667
  5551. value: -0.60317415
  5552. inSlope: 1.9476755
  5553. outSlope: 1.9476755
  5554. tangentMode: 0
  5555. weightedMode: 0
  5556. inWeight: 0.33333334
  5557. outWeight: 0.33333334
  5558. - serializedVersion: 3
  5559. time: 0.18333334
  5560. value: -0.57216144
  5561. inSlope: 1.7172111
  5562. outSlope: 1.7172111
  5563. tangentMode: 0
  5564. weightedMode: 0
  5565. inWeight: 0.33333334
  5566. outWeight: 0.33333334
  5567. - serializedVersion: 3
  5568. time: 0.2
  5569. value: -0.5459338
  5570. inSlope: 1.5047551
  5571. outSlope: 1.5047551
  5572. tangentMode: 0
  5573. weightedMode: 0
  5574. inWeight: 0.33333334
  5575. outWeight: 0.33333334
  5576. - serializedVersion: 3
  5577. time: 0.21666667
  5578. value: -0.52200294
  5579. inSlope: 1.4751436
  5580. outSlope: 1.4751436
  5581. tangentMode: 0
  5582. weightedMode: 0
  5583. inWeight: 0.33333334
  5584. outWeight: 0.33333334
  5585. - serializedVersion: 3
  5586. time: 0.23333333
  5587. value: -0.49676234
  5588. inSlope: 1.5459709
  5589. outSlope: 1.5459709
  5590. tangentMode: 0
  5591. weightedMode: 0
  5592. inWeight: 0.33333334
  5593. outWeight: 0.33333334
  5594. - serializedVersion: 3
  5595. time: 0.25
  5596. value: -0.47047058
  5597. inSlope: 1.6006237
  5598. outSlope: 1.6006237
  5599. tangentMode: 0
  5600. weightedMode: 0
  5601. inWeight: 0.33333334
  5602. outWeight: 0.33333334
  5603. - serializedVersion: 3
  5604. time: 0.26666668
  5605. value: -0.4434082
  5606. inSlope: 1.637844
  5607. outSlope: 1.637844
  5608. tangentMode: 0
  5609. weightedMode: 0
  5610. inWeight: 0.33333334
  5611. outWeight: 0.33333334
  5612. - serializedVersion: 3
  5613. time: 0.28333336
  5614. value: -0.41587573
  5615. inSlope: 1.656487
  5616. outSlope: 1.656487
  5617. tangentMode: 0
  5618. weightedMode: 0
  5619. inWeight: 0.33333334
  5620. outWeight: 0.33333334
  5621. - serializedVersion: 3
  5622. time: 0.30000004
  5623. value: -0.3881919
  5624. inSlope: 1.6555591
  5625. outSlope: 1.6555591
  5626. tangentMode: 0
  5627. weightedMode: 0
  5628. inWeight: 0.33333334
  5629. outWeight: 0.33333334
  5630. - serializedVersion: 3
  5631. time: 0.31666672
  5632. value: -0.3606904
  5633. inSlope: 1.634249
  5634. outSlope: 1.634249
  5635. tangentMode: 0
  5636. weightedMode: 0
  5637. inWeight: 0.33333334
  5638. outWeight: 0.33333334
  5639. - serializedVersion: 3
  5640. time: 0.3333334
  5641. value: -0.3337169
  5642. inSlope: 1.5919318
  5643. outSlope: 1.5919318
  5644. tangentMode: 0
  5645. weightedMode: 0
  5646. inWeight: 0.33333334
  5647. outWeight: 0.33333334
  5648. - serializedVersion: 3
  5649. time: 0.35000008
  5650. value: -0.30762595
  5651. inSlope: 1.5281918
  5652. outSlope: 1.5281918
  5653. tangentMode: 0
  5654. weightedMode: 0
  5655. inWeight: 0.33333334
  5656. outWeight: 0.33333334
  5657. - serializedVersion: 3
  5658. time: 0.36666676
  5659. value: -0.28277713
  5660. inSlope: 1.4427993
  5661. outSlope: 1.4427993
  5662. tangentMode: 0
  5663. weightedMode: 0
  5664. inWeight: 0.33333334
  5665. outWeight: 0.33333334
  5666. - serializedVersion: 3
  5667. time: 0.38333344
  5668. value: -0.2595326
  5669. inSlope: 1.3356934
  5670. outSlope: 1.3356934
  5671. tangentMode: 0
  5672. weightedMode: 0
  5673. inWeight: 0.33333334
  5674. outWeight: 0.33333334
  5675. - serializedVersion: 3
  5676. time: 0.40000013
  5677. value: -0.23825398
  5678. inSlope: 1.2069658
  5679. outSlope: 1.2069658
  5680. tangentMode: 0
  5681. weightedMode: 0
  5682. inWeight: 0.33333334
  5683. outWeight: 0.33333334
  5684. - serializedVersion: 3
  5685. time: 0.4166668
  5686. value: -0.21930037
  5687. inSlope: 1.0568217
  5688. outSlope: 1.0568217
  5689. tangentMode: 0
  5690. weightedMode: 0
  5691. inWeight: 0.33333334
  5692. outWeight: 0.33333334
  5693. - serializedVersion: 3
  5694. time: 0.4333335
  5695. value: -0.20302656
  5696. inSlope: 0.8855516
  5697. outSlope: 0.8855516
  5698. tangentMode: 0
  5699. weightedMode: 0
  5700. inWeight: 0.33333334
  5701. outWeight: 0.33333334
  5702. - serializedVersion: 3
  5703. time: 0.45000017
  5704. value: -0.18978196
  5705. inSlope: 0.6935074
  5706. outSlope: 0.6935074
  5707. tangentMode: 0
  5708. weightedMode: 0
  5709. inWeight: 0.33333334
  5710. outWeight: 0.33333334
  5711. - serializedVersion: 3
  5712. time: 0.46666685
  5713. value: -0.17990963
  5714. inSlope: 0.48108464
  5715. outSlope: 0.48108464
  5716. tangentMode: 0
  5717. weightedMode: 0
  5718. inWeight: 0.33333334
  5719. outWeight: 0.33333334
  5720. - serializedVersion: 3
  5721. time: 0.48333353
  5722. value: -0.1737458
  5723. inSlope: 0.24870127
  5724. outSlope: 0.24870127
  5725. tangentMode: 0
  5726. weightedMode: 0
  5727. inWeight: 0.33333334
  5728. outWeight: 0.33333334
  5729. - serializedVersion: 3
  5730. time: 0.5
  5731. value: -0.17161961
  5732. inSlope: 0.12757272
  5733. outSlope: 0.12757272
  5734. tangentMode: 0
  5735. weightedMode: 0
  5736. inWeight: 0.33333334
  5737. outWeight: 0.33333334
  5738. m_PreInfinity: 2
  5739. m_PostInfinity: 2
  5740. m_RotationOrder: 4
  5741. attribute: m_LocalRotation.z
  5742. path: FailedPiece3
  5743. classID: 224
  5744. script: {fileID: 0}
  5745. - curve:
  5746. serializedVersion: 2
  5747. m_Curve:
  5748. - serializedVersion: 3
  5749. time: 0
  5750. value: 0.53775585
  5751. inSlope: 0.3159177
  5752. outSlope: 0.3159177
  5753. tangentMode: 0
  5754. weightedMode: 0
  5755. inWeight: 0.33333334
  5756. outWeight: 0.33333334
  5757. - serializedVersion: 3
  5758. time: 0.016666668
  5759. value: 0.54302114
  5760. inSlope: 0.59808785
  5761. outSlope: 0.59808785
  5762. tangentMode: 0
  5763. weightedMode: 0
  5764. inWeight: 0.33333334
  5765. outWeight: 0.33333334
  5766. - serializedVersion: 3
  5767. time: 0.033333335
  5768. value: 0.5576921
  5769. inSlope: 1.1083655
  5770. outSlope: 1.1083655
  5771. tangentMode: 0
  5772. weightedMode: 0
  5773. inWeight: 0.33333334
  5774. outWeight: 0.33333334
  5775. - serializedVersion: 3
  5776. time: 0.050000004
  5777. value: 0.57996666
  5778. inSlope: 1.5079288
  5779. outSlope: 1.5079288
  5780. tangentMode: 0
  5781. weightedMode: 0
  5782. inWeight: 0.33333334
  5783. outWeight: 0.33333334
  5784. - serializedVersion: 3
  5785. time: 0.06666667
  5786. value: 0.6079564
  5787. inSlope: 1.7939062
  5788. outSlope: 1.7939062
  5789. tangentMode: 0
  5790. weightedMode: 0
  5791. inWeight: 0.33333334
  5792. outWeight: 0.33333334
  5793. - serializedVersion: 3
  5794. time: 0.083333336
  5795. value: 0.63976353
  5796. inSlope: 1.9679048
  5797. outSlope: 1.9679048
  5798. tangentMode: 0
  5799. weightedMode: 0
  5800. inWeight: 0.33333334
  5801. outWeight: 0.33333334
  5802. - serializedVersion: 3
  5803. time: 0.1
  5804. value: 0.6735532
  5805. inSlope: 2.0357647
  5806. outSlope: 2.0357647
  5807. tangentMode: 0
  5808. weightedMode: 0
  5809. inWeight: 0.33333334
  5810. outWeight: 0.33333334
  5811. - serializedVersion: 3
  5812. time: 0.11666667
  5813. value: 0.70762235
  5814. inSlope: 2.0072184
  5815. outSlope: 2.0072184
  5816. tangentMode: 0
  5817. weightedMode: 0
  5818. inWeight: 0.33333334
  5819. outWeight: 0.33333334
  5820. - serializedVersion: 3
  5821. time: 0.13333334
  5822. value: 0.7404605
  5823. inSlope: 1.8951609
  5824. outSlope: 1.8951609
  5825. tangentMode: 0
  5826. weightedMode: 0
  5827. inWeight: 0.33333334
  5828. outWeight: 0.33333334
  5829. - serializedVersion: 3
  5830. time: 0.15
  5831. value: 0.7707944
  5832. inSlope: 1.7144699
  5833. outSlope: 1.7144699
  5834. tangentMode: 0
  5835. weightedMode: 0
  5836. inWeight: 0.33333334
  5837. outWeight: 0.33333334
  5838. - serializedVersion: 3
  5839. time: 0.16666667
  5840. value: 0.7976095
  5841. inSlope: 1.4803989
  5842. outSlope: 1.4803989
  5843. tangentMode: 0
  5844. weightedMode: 0
  5845. inWeight: 0.33333334
  5846. outWeight: 0.33333334
  5847. - serializedVersion: 3
  5848. time: 0.18333334
  5849. value: 0.820141
  5850. inSlope: 1.206565
  5851. outSlope: 1.206565
  5852. tangentMode: 0
  5853. weightedMode: 0
  5854. inWeight: 0.33333334
  5855. outWeight: 0.33333334
  5856. - serializedVersion: 3
  5857. time: 0.2
  5858. value: 0.83782834
  5859. inSlope: 0.98407936
  5860. outSlope: 0.98407936
  5861. tangentMode: 0
  5862. weightedMode: 0
  5863. inWeight: 0.33333334
  5864. outWeight: 0.33333334
  5865. - serializedVersion: 3
  5866. time: 0.21666667
  5867. value: 0.85294366
  5868. inSlope: 0.901748
  5869. outSlope: 0.901748
  5870. tangentMode: 0
  5871. weightedMode: 0
  5872. inWeight: 0.33333334
  5873. outWeight: 0.33333334
  5874. - serializedVersion: 3
  5875. time: 0.23333333
  5876. value: 0.8678866
  5877. inSlope: 0.88415986
  5878. outSlope: 0.88415986
  5879. tangentMode: 0
  5880. weightedMode: 0
  5881. inWeight: 0.33333334
  5882. outWeight: 0.33333334
  5883. - serializedVersion: 3
  5884. time: 0.25
  5885. value: 0.88241565
  5886. inSlope: 0.85299575
  5887. outSlope: 0.85299575
  5888. tangentMode: 0
  5889. weightedMode: 0
  5890. inWeight: 0.33333334
  5891. outWeight: 0.33333334
  5892. - serializedVersion: 3
  5893. time: 0.26666668
  5894. value: 0.8963198
  5895. inSlope: 0.81017303
  5896. outSlope: 0.81017303
  5897. tangentMode: 0
  5898. weightedMode: 0
  5899. inWeight: 0.33333334
  5900. outWeight: 0.33333334
  5901. - serializedVersion: 3
  5902. time: 0.28333336
  5903. value: 0.90942144
  5904. inSlope: 0.7577628
  5905. outSlope: 0.7577628
  5906. tangentMode: 0
  5907. weightedMode: 0
  5908. inWeight: 0.33333334
  5909. outWeight: 0.33333334
  5910. - serializedVersion: 3
  5911. time: 0.30000004
  5912. value: 0.9215786
  5913. inSlope: 0.6979245
  5914. outSlope: 0.6979245
  5915. tangentMode: 0
  5916. weightedMode: 0
  5917. inWeight: 0.33333334
  5918. outWeight: 0.33333334
  5919. - serializedVersion: 3
  5920. time: 0.31666672
  5921. value: 0.9326856
  5922. inSlope: 0.6328417
  5923. outSlope: 0.6328417
  5924. tangentMode: 0
  5925. weightedMode: 0
  5926. inWeight: 0.33333334
  5927. outWeight: 0.33333334
  5928. - serializedVersion: 3
  5929. time: 0.3333334
  5930. value: 0.9426733
  5931. inSlope: 0.5646528
  5932. outSlope: 0.5646528
  5933. tangentMode: 0
  5934. weightedMode: 0
  5935. inWeight: 0.33333334
  5936. outWeight: 0.33333334
  5937. - serializedVersion: 3
  5938. time: 0.35000008
  5939. value: 0.9515074
  5940. inSlope: 0.4953696
  5941. outSlope: 0.4953696
  5942. tangentMode: 0
  5943. weightedMode: 0
  5944. inWeight: 0.33333334
  5945. outWeight: 0.33333334
  5946. - serializedVersion: 3
  5947. time: 0.36666676
  5948. value: 0.95918566
  5949. inSlope: 0.42680883
  5950. outSlope: 0.42680883
  5951. tangentMode: 0
  5952. weightedMode: 0
  5953. inWeight: 0.33333334
  5954. outWeight: 0.33333334
  5955. - serializedVersion: 3
  5956. time: 0.38333344
  5957. value: 0.96573436
  5958. inSlope: 0.3605172
  5959. outSlope: 0.3605172
  5960. tangentMode: 0
  5961. weightedMode: 0
  5962. inWeight: 0.33333334
  5963. outWeight: 0.33333334
  5964. - serializedVersion: 3
  5965. time: 0.40000013
  5966. value: 0.9712029
  5967. inSlope: 0.297691
  5968. outSlope: 0.297691
  5969. tangentMode: 0
  5970. weightedMode: 0
  5971. inWeight: 0.33333334
  5972. outWeight: 0.33333334
  5973. - serializedVersion: 3
  5974. time: 0.4166668
  5975. value: 0.9756574
  5976. inSlope: 0.2391098
  5977. outSlope: 0.2391098
  5978. tangentMode: 0
  5979. weightedMode: 0
  5980. inWeight: 0.33333334
  5981. outWeight: 0.33333334
  5982. - serializedVersion: 3
  5983. time: 0.4333335
  5984. value: 0.97917324
  5985. inSlope: 0.18506512
  5986. outSlope: 0.18506512
  5987. tangentMode: 0
  5988. weightedMode: 0
  5989. inWeight: 0.33333334
  5990. outWeight: 0.33333334
  5991. - serializedVersion: 3
  5992. time: 0.45000017
  5993. value: 0.98182625
  5994. inSlope: 0.13529766
  5995. outSlope: 0.13529766
  5996. tangentMode: 0
  5997. weightedMode: 0
  5998. inWeight: 0.33333334
  5999. outWeight: 0.33333334
  6000. - serializedVersion: 3
  6001. time: 0.46666685
  6002. value: 0.98368317
  6003. inSlope: 0.08892946
  6004. outSlope: 0.08892946
  6005. tangentMode: 0
  6006. weightedMode: 0
  6007. inWeight: 0.33333334
  6008. outWeight: 0.33333334
  6009. - serializedVersion: 3
  6010. time: 0.48333353
  6011. value: 0.98479056
  6012. inSlope: 0.04440318
  6013. outSlope: 0.04440318
  6014. tangentMode: 0
  6015. weightedMode: 0
  6016. inWeight: 0.33333334
  6017. outWeight: 0.33333334
  6018. - serializedVersion: 3
  6019. time: 0.5
  6020. value: 0.9851633
  6021. inSlope: 0.022362731
  6022. outSlope: 0.022362731
  6023. tangentMode: 0
  6024. weightedMode: 0
  6025. inWeight: 0.33333334
  6026. outWeight: 0.33333334
  6027. m_PreInfinity: 2
  6028. m_PostInfinity: 2
  6029. m_RotationOrder: 4
  6030. attribute: m_LocalRotation.w
  6031. path: FailedPiece3
  6032. classID: 224
  6033. script: {fileID: 0}
  6034. - curve:
  6035. serializedVersion: 2
  6036. m_Curve:
  6037. - serializedVersion: 3
  6038. time: 0
  6039. value: 0
  6040. inSlope: Infinity
  6041. outSlope: Infinity
  6042. tangentMode: 103
  6043. weightedMode: 0
  6044. inWeight: 0
  6045. outWeight: 0
  6046. m_PreInfinity: 2
  6047. m_PostInfinity: 2
  6048. m_RotationOrder: 4
  6049. attribute: m_IsActive
  6050. path: Ring1
  6051. classID: 1
  6052. script: {fileID: 0}
  6053. - curve:
  6054. serializedVersion: 2
  6055. m_Curve:
  6056. - serializedVersion: 3
  6057. time: 0
  6058. value: 0
  6059. inSlope: Infinity
  6060. outSlope: Infinity
  6061. tangentMode: 103
  6062. weightedMode: 0
  6063. inWeight: 0
  6064. outWeight: 0
  6065. m_PreInfinity: 2
  6066. m_PostInfinity: 2
  6067. m_RotationOrder: 4
  6068. attribute: m_IsActive
  6069. path: Glow
  6070. classID: 1
  6071. script: {fileID: 0}
  6072. - curve:
  6073. serializedVersion: 2
  6074. m_Curve:
  6075. - serializedVersion: 3
  6076. time: 0
  6077. value: 0
  6078. inSlope: Infinity
  6079. outSlope: Infinity
  6080. tangentMode: 103
  6081. weightedMode: 0
  6082. inWeight: 0
  6083. outWeight: 0
  6084. m_PreInfinity: 2
  6085. m_PostInfinity: 2
  6086. m_RotationOrder: 4
  6087. attribute: m_IsActive
  6088. path: Number
  6089. classID: 1
  6090. script: {fileID: 0}
  6091. - curve:
  6092. serializedVersion: 2
  6093. m_Curve:
  6094. - serializedVersion: 3
  6095. time: 0
  6096. value: 0
  6097. inSlope: Infinity
  6098. outSlope: Infinity
  6099. tangentMode: 103
  6100. weightedMode: 0
  6101. inWeight: 0
  6102. outWeight: 0
  6103. m_PreInfinity: 2
  6104. m_PostInfinity: 2
  6105. m_RotationOrder: 4
  6106. attribute: m_IsActive
  6107. path: Ring2
  6108. classID: 1
  6109. script: {fileID: 0}
  6110. - curve:
  6111. serializedVersion: 2
  6112. m_Curve:
  6113. - serializedVersion: 3
  6114. time: 0
  6115. value: 0
  6116. inSlope: Infinity
  6117. outSlope: Infinity
  6118. tangentMode: 103
  6119. weightedMode: 0
  6120. inWeight: 0
  6121. outWeight: 0
  6122. m_PreInfinity: 2
  6123. m_PostInfinity: 2
  6124. m_RotationOrder: 4
  6125. attribute: m_IsActive
  6126. path: Ring3
  6127. classID: 1
  6128. script: {fileID: 0}
  6129. m_EulerEditorCurves:
  6130. - curve:
  6131. serializedVersion: 2
  6132. m_Curve:
  6133. - serializedVersion: 3
  6134. time: 0
  6135. value: 0
  6136. inSlope: 0
  6137. outSlope: 0
  6138. tangentMode: 136
  6139. weightedMode: 0
  6140. inWeight: 0.33333334
  6141. outWeight: 0.33333334
  6142. - serializedVersion: 3
  6143. time: 0.26666668
  6144. value: 0
  6145. inSlope: 0
  6146. outSlope: 0
  6147. tangentMode: 136
  6148. weightedMode: 0
  6149. inWeight: 0.33333334
  6150. outWeight: 0.33333334
  6151. - serializedVersion: 3
  6152. time: 0.5
  6153. value: 0
  6154. inSlope: 0
  6155. outSlope: 0
  6156. tangentMode: 136
  6157. weightedMode: 0
  6158. inWeight: 0.33333334
  6159. outWeight: 0.33333334
  6160. m_PreInfinity: 2
  6161. m_PostInfinity: 2
  6162. m_RotationOrder: 4
  6163. attribute: localEulerAnglesBaked.x
  6164. path: FailedPiece
  6165. classID: 224
  6166. script: {fileID: 0}
  6167. - curve:
  6168. serializedVersion: 2
  6169. m_Curve:
  6170. - serializedVersion: 3
  6171. time: 0
  6172. value: 0
  6173. inSlope: 0
  6174. outSlope: 0
  6175. tangentMode: 136
  6176. weightedMode: 0
  6177. inWeight: 0.33333334
  6178. outWeight: 0.33333334
  6179. - serializedVersion: 3
  6180. time: 0.26666668
  6181. value: 0
  6182. inSlope: 0
  6183. outSlope: 0
  6184. tangentMode: 136
  6185. weightedMode: 0
  6186. inWeight: 0.33333334
  6187. outWeight: 0.33333334
  6188. - serializedVersion: 3
  6189. time: 0.5
  6190. value: 0
  6191. inSlope: 0
  6192. outSlope: 0
  6193. tangentMode: 136
  6194. weightedMode: 0
  6195. inWeight: 0.33333334
  6196. outWeight: 0.33333334
  6197. m_PreInfinity: 2
  6198. m_PostInfinity: 2
  6199. m_RotationOrder: 4
  6200. attribute: localEulerAnglesBaked.y
  6201. path: FailedPiece
  6202. classID: 224
  6203. script: {fileID: 0}
  6204. - curve:
  6205. serializedVersion: 2
  6206. m_Curve:
  6207. - serializedVersion: 3
  6208. time: 0
  6209. value: 19.547
  6210. inSlope: 0
  6211. outSlope: 0
  6212. tangentMode: 136
  6213. weightedMode: 0
  6214. inWeight: 0.33333334
  6215. outWeight: 0.33333334
  6216. - serializedVersion: 3
  6217. time: 0.26666668
  6218. value: 42.029
  6219. inSlope: 145.74399
  6220. outSlope: 145.74399
  6221. tangentMode: 136
  6222. weightedMode: 0
  6223. inWeight: 0.33333334
  6224. outWeight: 0.33333334
  6225. - serializedVersion: 3
  6226. time: 0.5
  6227. value: 92.419
  6228. inSlope: 0
  6229. outSlope: 0
  6230. tangentMode: 136
  6231. weightedMode: 0
  6232. inWeight: 0.33333334
  6233. outWeight: 0.33333334
  6234. m_PreInfinity: 2
  6235. m_PostInfinity: 2
  6236. m_RotationOrder: 4
  6237. attribute: localEulerAnglesBaked.z
  6238. path: FailedPiece
  6239. classID: 224
  6240. script: {fileID: 0}
  6241. - curve:
  6242. serializedVersion: 2
  6243. m_Curve:
  6244. - serializedVersion: 3
  6245. time: 0
  6246. value: 0
  6247. inSlope: 0
  6248. outSlope: 0
  6249. tangentMode: 136
  6250. weightedMode: 0
  6251. inWeight: 0.33333334
  6252. outWeight: 0.33333334
  6253. - serializedVersion: 3
  6254. time: 0.2
  6255. value: 0
  6256. inSlope: 0
  6257. outSlope: 0
  6258. tangentMode: 136
  6259. weightedMode: 0
  6260. inWeight: 0.33333334
  6261. outWeight: 0.33333334
  6262. - serializedVersion: 3
  6263. time: 0.5
  6264. value: 0
  6265. inSlope: 0
  6266. outSlope: 0
  6267. tangentMode: 136
  6268. weightedMode: 0
  6269. inWeight: 0.33333334
  6270. outWeight: 0.33333334
  6271. m_PreInfinity: 2
  6272. m_PostInfinity: 2
  6273. m_RotationOrder: 4
  6274. attribute: localEulerAnglesBaked.x
  6275. path: FailedPiece2
  6276. classID: 224
  6277. script: {fileID: 0}
  6278. - curve:
  6279. serializedVersion: 2
  6280. m_Curve:
  6281. - serializedVersion: 3
  6282. time: 0
  6283. value: 0
  6284. inSlope: 0
  6285. outSlope: 0
  6286. tangentMode: 136
  6287. weightedMode: 0
  6288. inWeight: 0.33333334
  6289. outWeight: 0.33333334
  6290. - serializedVersion: 3
  6291. time: 0.2
  6292. value: 0
  6293. inSlope: 0
  6294. outSlope: 0
  6295. tangentMode: 136
  6296. weightedMode: 0
  6297. inWeight: 0.33333334
  6298. outWeight: 0.33333334
  6299. - serializedVersion: 3
  6300. time: 0.5
  6301. value: 0
  6302. inSlope: 0
  6303. outSlope: 0
  6304. tangentMode: 136
  6305. weightedMode: 0
  6306. inWeight: 0.33333334
  6307. outWeight: 0.33333334
  6308. m_PreInfinity: 2
  6309. m_PostInfinity: 2
  6310. m_RotationOrder: 4
  6311. attribute: localEulerAnglesBaked.y
  6312. path: FailedPiece2
  6313. classID: 224
  6314. script: {fileID: 0}
  6315. - curve:
  6316. serializedVersion: 2
  6317. m_Curve:
  6318. - serializedVersion: 3
  6319. time: 0
  6320. value: -208.605
  6321. inSlope: 0
  6322. outSlope: 0
  6323. tangentMode: 136
  6324. weightedMode: 0
  6325. inWeight: 0.33333334
  6326. outWeight: 0.33333334
  6327. - serializedVersion: 3
  6328. time: 0.2
  6329. value: -244.28
  6330. inSlope: -162.49203
  6331. outSlope: -162.49203
  6332. tangentMode: 136
  6333. weightedMode: 0
  6334. inWeight: 0.33333334
  6335. outWeight: 0.33333334
  6336. - serializedVersion: 3
  6337. time: 0.5
  6338. value: -289.851
  6339. inSlope: 0
  6340. outSlope: 0
  6341. tangentMode: 136
  6342. weightedMode: 0
  6343. inWeight: 0.33333334
  6344. outWeight: 0.33333334
  6345. m_PreInfinity: 2
  6346. m_PostInfinity: 2
  6347. m_RotationOrder: 4
  6348. attribute: localEulerAnglesBaked.z
  6349. path: FailedPiece2
  6350. classID: 224
  6351. script: {fileID: 0}
  6352. - curve:
  6353. serializedVersion: 2
  6354. m_Curve:
  6355. - serializedVersion: 3
  6356. time: 0
  6357. value: 0
  6358. inSlope: 0
  6359. outSlope: 0
  6360. tangentMode: 136
  6361. weightedMode: 0
  6362. inWeight: 0.33333334
  6363. outWeight: 0.33333334
  6364. - serializedVersion: 3
  6365. time: 0.2
  6366. value: 0
  6367. inSlope: 0
  6368. outSlope: 0
  6369. tangentMode: 136
  6370. weightedMode: 0
  6371. inWeight: 0.33333334
  6372. outWeight: 0.33333334
  6373. - serializedVersion: 3
  6374. time: 0.5
  6375. value: 0
  6376. inSlope: 0
  6377. outSlope: 0
  6378. tangentMode: 136
  6379. weightedMode: 0
  6380. inWeight: 0.33333334
  6381. outWeight: 0.33333334
  6382. m_PreInfinity: 2
  6383. m_PostInfinity: 2
  6384. m_RotationOrder: 4
  6385. attribute: localEulerAnglesBaked.x
  6386. path: FailedPiece3
  6387. classID: 224
  6388. script: {fileID: 0}
  6389. - curve:
  6390. serializedVersion: 2
  6391. m_Curve:
  6392. - serializedVersion: 3
  6393. time: 0
  6394. value: 0
  6395. inSlope: 0
  6396. outSlope: 0
  6397. tangentMode: 136
  6398. weightedMode: 0
  6399. inWeight: 0.33333334
  6400. outWeight: 0.33333334
  6401. - serializedVersion: 3
  6402. time: 0.2
  6403. value: 0
  6404. inSlope: 0
  6405. outSlope: 0
  6406. tangentMode: 136
  6407. weightedMode: 0
  6408. inWeight: 0.33333334
  6409. outWeight: 0.33333334
  6410. - serializedVersion: 3
  6411. time: 0.5
  6412. value: 0
  6413. inSlope: 0
  6414. outSlope: 0
  6415. tangentMode: 136
  6416. weightedMode: 0
  6417. inWeight: 0.33333334
  6418. outWeight: 0.33333334
  6419. m_PreInfinity: 2
  6420. m_PostInfinity: 2
  6421. m_RotationOrder: 4
  6422. attribute: localEulerAnglesBaked.y
  6423. path: FailedPiece3
  6424. classID: 224
  6425. script: {fileID: 0}
  6426. - curve:
  6427. serializedVersion: 2
  6428. m_Curve:
  6429. - serializedVersion: 3
  6430. time: 0
  6431. value: -114.938
  6432. inSlope: 0
  6433. outSlope: 0
  6434. tangentMode: 136
  6435. weightedMode: 0
  6436. inWeight: 0.33333334
  6437. outWeight: 0.33333334
  6438. - serializedVersion: 3
  6439. time: 0.2
  6440. value: -66.177
  6441. inSlope: 190.348
  6442. outSlope: 190.348
  6443. tangentMode: 136
  6444. weightedMode: 0
  6445. inWeight: 0.33333334
  6446. outWeight: 0.33333334
  6447. - serializedVersion: 3
  6448. time: 0.5
  6449. value: -19.764
  6450. inSlope: 0
  6451. outSlope: 0
  6452. tangentMode: 136
  6453. weightedMode: 0
  6454. inWeight: 0.33333334
  6455. outWeight: 0.33333334
  6456. m_PreInfinity: 2
  6457. m_PostInfinity: 2
  6458. m_RotationOrder: 4
  6459. attribute: localEulerAnglesBaked.z
  6460. path: FailedPiece3
  6461. classID: 224
  6462. script: {fileID: 0}
  6463. m_HasGenericRootTransform: 0
  6464. m_HasMotionFloatCurves: 0
  6465. m_Events: []