123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783 |
- ; FBX 7.3.0 project file
- ; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors.
- ; All rights reserved.
- ; ----------------------------------------------------
- FBXHeaderExtension: {
- FBXHeaderVersion: 1003
- FBXVersion: 7300
- CreationTimeStamp: {
- Version: 1000
- Year: 2020
- Month: 5
- Day: 4
- Hour: 13
- Minute: 15
- Second: 13
- Millisecond: 534
- }
- Creator: "FBX SDK/FBX Plugins version 2013.3"
- SceneInfo: "SceneInfo::GlobalInfo", "UserData" {
- Type: "UserData"
- Version: 100
- MetaData: {
- Version: 100
- Title: ""
- Subject: ""
- Author: ""
- Keywords: ""
- Revision: ""
- Comment: ""
- }
- Properties70: {
- P: "DocumentUrl", "KString", "Url", "", "C:\Users\arong\a-pathfinding-project\Assets\AstarPathfindingProject\ExampleScenes\Prefabs\MineBot\FBX 2013\mine_bot@back.FBX"
- P: "SrcDocumentUrl", "KString", "Url", "", "C:\Users\arong\a-pathfinding-project\Assets\AstarPathfindingProject\ExampleScenes\Prefabs\MineBot\FBX 2013\mine_bot@back.FBX"
- P: "Original", "Compound", "", ""
- P: "Original|ApplicationVendor", "KString", "", "", "Autodesk"
- P: "Original|ApplicationName", "KString", "", "", "3ds Max"
- P: "Original|ApplicationVersion", "KString", "", "", "2011.1"
- P: "Original|DateTime_GMT", "DateTime", "", "", "27/02/2011 00:03:47.689"
- P: "Original|FileName", "KString", "", "", "C:\Users\bret.church\Documents\3-5_RobotSwarm\Assets\Objects\Enemies\mine_bot@back.FBX"
- P: "LastSaved", "Compound", "", ""
- P: "LastSaved|ApplicationVendor", "KString", "", "", "Autodesk"
- P: "LastSaved|ApplicationName", "KString", "", "", "3ds Max"
- P: "LastSaved|ApplicationVersion", "KString", "", "", "2011.1"
- P: "LastSaved|DateTime_GMT", "DateTime", "", "", "27/02/2011 00:03:47.689"
- }
- }
- }
- GlobalSettings: {
- Version: 1000
- Properties70: {
- P: "UpAxis", "int", "Integer", "",2
- P: "UpAxisSign", "int", "Integer", "",1
- P: "FrontAxis", "int", "Integer", "",1
- P: "FrontAxisSign", "int", "Integer", "",-1
- P: "CoordAxis", "int", "Integer", "",0
- P: "CoordAxisSign", "int", "Integer", "",1
- P: "OriginalUpAxis", "int", "Integer", "",2
- P: "OriginalUpAxisSign", "int", "Integer", "",1
- P: "UnitScaleFactor", "double", "Number", "",1
- P: "OriginalUnitScaleFactor", "double", "Number", "",1
- P: "AmbientColor", "ColorRGB", "Color", "",0,0,0
- P: "DefaultCamera", "KString", "", "", "Producer Perspective"
- P: "TimeMode", "enum", "", "",6
- P: "TimeSpanStart", "KTime", "Time", "",0
- P: "TimeSpanStop", "KTime", "Time", "",18474463200
- P: "CustomFrameRate", "double", "Number", "",-1
- }
- }
- ; Documents Description
- ;------------------------------------------------------------------
- Documents: {
- Count: 1
- Document: 85981088, "", "Scene" {
- Properties70: {
- P: "SourceObject", "object", "", ""
- P: "ActiveAnimStackName", "KString", "", "", ""
- }
- RootNode: 0
- }
- }
- ; Document References
- ;------------------------------------------------------------------
- References: {
- }
- ; Object definitions
- ;------------------------------------------------------------------
- Definitions: {
- Version: 100
- Count: 123
- ObjectType: "GlobalSettings" {
- Count: 1
- }
- ObjectType: "NodeAttribute" {
- Count: 1
- PropertyTemplate: "FbxNull" {
- Properties70: {
- P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8
- P: "Size", "double", "Number", "",100
- P: "Look", "enum", "", "",1
- }
- }
- }
- ObjectType: "Model" {
- Count: 11
- PropertyTemplate: "FbxNode" {
- Properties70: {
- P: "QuaternionInterpolate", "enum", "", "",0
- P: "RotationOffset", "Vector3D", "Vector", "",0,0,0
- P: "RotationPivot", "Vector3D", "Vector", "",0,0,0
- P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0
- P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0
- P: "TranslationActive", "bool", "", "",0
- P: "TranslationMin", "Vector3D", "Vector", "",0,0,0
- P: "TranslationMax", "Vector3D", "Vector", "",0,0,0
- P: "TranslationMinX", "bool", "", "",0
- P: "TranslationMinY", "bool", "", "",0
- P: "TranslationMinZ", "bool", "", "",0
- P: "TranslationMaxX", "bool", "", "",0
- P: "TranslationMaxY", "bool", "", "",0
- P: "TranslationMaxZ", "bool", "", "",0
- P: "RotationOrder", "enum", "", "",0
- P: "RotationSpaceForLimitOnly", "bool", "", "",0
- P: "RotationStiffnessX", "double", "Number", "",0
- P: "RotationStiffnessY", "double", "Number", "",0
- P: "RotationStiffnessZ", "double", "Number", "",0
- P: "AxisLen", "double", "Number", "",10
- P: "PreRotation", "Vector3D", "Vector", "",0,0,0
- P: "PostRotation", "Vector3D", "Vector", "",0,0,0
- P: "RotationActive", "bool", "", "",0
- P: "RotationMin", "Vector3D", "Vector", "",0,0,0
- P: "RotationMax", "Vector3D", "Vector", "",0,0,0
- P: "RotationMinX", "bool", "", "",0
- P: "RotationMinY", "bool", "", "",0
- P: "RotationMinZ", "bool", "", "",0
- P: "RotationMaxX", "bool", "", "",0
- P: "RotationMaxY", "bool", "", "",0
- P: "RotationMaxZ", "bool", "", "",0
- P: "InheritType", "enum", "", "",0
- P: "ScalingActive", "bool", "", "",0
- P: "ScalingMin", "Vector3D", "Vector", "",0,0,0
- P: "ScalingMax", "Vector3D", "Vector", "",1,1,1
- P: "ScalingMinX", "bool", "", "",0
- P: "ScalingMinY", "bool", "", "",0
- P: "ScalingMinZ", "bool", "", "",0
- P: "ScalingMaxX", "bool", "", "",0
- P: "ScalingMaxY", "bool", "", "",0
- P: "ScalingMaxZ", "bool", "", "",0
- P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0
- P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0
- P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1
- P: "MinDampRangeX", "double", "Number", "",0
- P: "MinDampRangeY", "double", "Number", "",0
- P: "MinDampRangeZ", "double", "Number", "",0
- P: "MaxDampRangeX", "double", "Number", "",0
- P: "MaxDampRangeY", "double", "Number", "",0
- P: "MaxDampRangeZ", "double", "Number", "",0
- P: "MinDampStrengthX", "double", "Number", "",0
- P: "MinDampStrengthY", "double", "Number", "",0
- P: "MinDampStrengthZ", "double", "Number", "",0
- P: "MaxDampStrengthX", "double", "Number", "",0
- P: "MaxDampStrengthY", "double", "Number", "",0
- P: "MaxDampStrengthZ", "double", "Number", "",0
- P: "PreferedAngleX", "double", "Number", "",0
- P: "PreferedAngleY", "double", "Number", "",0
- P: "PreferedAngleZ", "double", "Number", "",0
- P: "LookAtProperty", "object", "", ""
- P: "UpVectorProperty", "object", "", ""
- P: "Show", "bool", "", "",1
- P: "NegativePercentShapeSupport", "bool", "", "",1
- P: "DefaultAttributeIndex", "int", "Integer", "",-1
- P: "Freeze", "bool", "", "",0
- P: "LODBox", "bool", "", "",0
- P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0
- P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0
- P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1
- P: "Visibility", "Visibility", "", "A",1
- P: "Visibility Inheritance", "Visibility Inheritance", "", "",1
- }
- }
- }
- ObjectType: "Material" {
- Count: 1
- PropertyTemplate: "FbxSurfacePhong" {
- Properties70: {
- P: "ShadingModel", "KString", "", "", "Phong"
- P: "MultiLayer", "bool", "", "",0
- P: "EmissiveColor", "Color", "", "A",0,0,0
- P: "EmissiveFactor", "Number", "", "A",1
- P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2
- P: "AmbientFactor", "Number", "", "A",1
- P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8
- P: "DiffuseFactor", "Number", "", "A",1
- P: "Bump", "Vector3D", "Vector", "",0,0,0
- P: "NormalMap", "Vector3D", "Vector", "",0,0,0
- P: "BumpFactor", "double", "Number", "",1
- P: "TransparentColor", "Color", "", "A",0,0,0
- P: "TransparencyFactor", "Number", "", "A",0
- P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0
- P: "DisplacementFactor", "double", "Number", "",1
- P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0
- P: "VectorDisplacementFactor", "double", "Number", "",1
- P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2
- P: "SpecularFactor", "Number", "", "A",1
- P: "ShininessExponent", "Number", "", "A",20
- P: "ReflectionColor", "Color", "", "A",0,0,0
- P: "ReflectionFactor", "Number", "", "A",1
- }
- }
- }
- ObjectType: "Texture" {
- Count: 2
- PropertyTemplate: "FbxFileTexture" {
- Properties70: {
- P: "TextureTypeUse", "enum", "", "",0
- P: "Texture alpha", "Number", "", "A",1
- P: "CurrentMappingType", "enum", "", "",0
- P: "WrapModeU", "enum", "", "",0
- P: "WrapModeV", "enum", "", "",0
- P: "UVSwap", "bool", "", "",0
- P: "PremultiplyAlpha", "bool", "", "",1
- P: "Translation", "Vector", "", "A",0,0,0
- P: "Rotation", "Vector", "", "A",0,0,0
- P: "Scaling", "Vector", "", "A",1,1,1
- P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0
- P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0
- P: "CurrentTextureBlendMode", "enum", "", "",1
- P: "UVSet", "KString", "", "", "default"
- P: "UseMaterial", "bool", "", "",0
- P: "UseMipMap", "bool", "", "",0
- }
- }
- }
- ObjectType: "Video" {
- Count: 2
- PropertyTemplate: "FbxVideo" {
- Properties70: {
- P: "ImageSequence", "bool", "", "",0
- P: "ImageSequenceOffset", "int", "Integer", "",0
- P: "FrameRate", "double", "Number", "",0
- P: "LastFrame", "int", "Integer", "",0
- P: "Width", "int", "Integer", "",0
- P: "Height", "int", "Integer", "",0
- P: "Path", "KString", "XRefUrl", "", ""
- P: "StartFrame", "int", "Integer", "",0
- P: "StopFrame", "int", "Integer", "",0
- P: "PlaySpeed", "double", "Number", "",0
- P: "Offset", "KTime", "Time", "",0
- P: "InterlaceMode", "enum", "", "",0
- P: "FreeRunning", "bool", "", "",0
- P: "Loop", "bool", "", "",0
- P: "AccessMode", "enum", "", "",0
- }
- }
- }
- ObjectType: "AnimationStack" {
- Count: 1
- PropertyTemplate: "FbxAnimStack" {
- Properties70: {
- P: "Description", "KString", "", "", ""
- P: "LocalStart", "KTime", "Time", "",0
- P: "LocalStop", "KTime", "Time", "",0
- P: "ReferenceStart", "KTime", "Time", "",0
- P: "ReferenceStop", "KTime", "Time", "",0
- }
- }
- }
- ObjectType: "AnimationLayer" {
- Count: 1
- PropertyTemplate: "FbxAnimLayer" {
- Properties70: {
- P: "Weight", "Number", "", "A",100
- P: "Mute", "bool", "", "",0
- P: "Solo", "bool", "", "",0
- P: "Lock", "bool", "", "",0
- P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8
- P: "BlendMode", "enum", "", "",0
- P: "RotationAccumulationMode", "enum", "", "",0
- P: "ScaleAccumulationMode", "enum", "", "",0
- P: "BlendModeBypass", "ULongLong", "", "",0
- }
- }
- }
- ObjectType: "Geometry" {
- Count: 10
- PropertyTemplate: "FbxMesh" {
- Properties70: {
- P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8
- P: "BBoxMin", "Vector3D", "Vector", "",0,0,0
- P: "BBoxMax", "Vector3D", "Vector", "",0,0,0
- P: "Primary Visibility", "bool", "", "",1
- P: "Casts Shadows", "bool", "", "",1
- P: "Receive Shadows", "bool", "", "",1
- }
- }
- }
- ObjectType: "CollectionExclusive" {
- Count: 1
- PropertyTemplate: "FbxDisplayLayer" {
- Properties70: {
- P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8
- P: "Show", "bool", "", "",1
- P: "Freeze", "bool", "", "",0
- P: "LODBox", "bool", "", "",0
- }
- }
- }
- ObjectType: "AnimationCurve" {
- Count: 69
- }
- ObjectType: "AnimationCurveNode" {
- Count: 23
- PropertyTemplate: "FbxAnimCurveNode" {
- Properties70: {
- P: "d", "Compound", "", ""
- }
- }
- }
- }
- ; Object properties
- ;------------------------------------------------------------------
- Objects: {
- NodeAttribute: 86593568, "NodeAttribute::", "Null" {
- Properties70: {
- P: "Look", "enum", "", "",0
- }
- TypeFlags: "Null"
- }
- Geometry: 86434848, "Geometry::", "Mesh" {
- Properties70: {
- P: "Color", "ColorRGB", "Color", "",0,0,0
- }
- Vertices: *480 {
- a: -12.4304065704346,-29.9597072601318,-21.1175994873047,-17.2964401245117,-29.9582748413086,-6.91423797607422,-17.2957763671875,-29.9571266174316,4.9024829864502,-18.784008026123,-28.4702091217041,-6.91993713378906,-18.7836952209473,-28.4697322845459,1.51968765258789,-12.4040145874023,-26.4017734527588,-25.5209121704102,-13.9182891845703,-28.4721145629883,-21.1218719482422,-13.8918981552124,-24.9141826629639,-25.5237655639648,-9.09450340270996,-18.7805480957031,1.51883316040039,-9.09450149536133,-18.7805480957031,-6.92079544067383,-6.66060733795166,-21.2144393920898,-21.1221580505371,-8.42637538909912,-19.4486656188965,-25.5237655639648,-29.95969581604,12.4303960800171,-21.1175994873047,-29.9582633972168,17.2964286804199,-6.91423797607422,-28.4701976776123,18.7839965820313,-6.91993713378906,-28.4697208404541,18.7836837768555,1.51968765258789,-26.401762008667,12.4040040969849,-25.5209121704102,-28.4721031188965,13.9182786941528,-21.1218719482422,-24.9141712188721,13.8918876647949,-25.5237655639648,-18.7805366516113,9.09449291229248,1.51883316040039,-18.7805366516113,9.09449100494385,-6.92079544067383,-21.214427947998,6.66059637069702,-21.1221580505371,-19.4486541748047,8.42636489868164,-25.5237655639648,-28.6946487426758,-16.5668678283691,6.47702598571777,-29.9571208953857,-17.2957763671875,4.9024829864502,-28.4697284698486,-18.7836971282959,1.51968812942505,-29.9596996307373,-12.4304075241089,-21.1175975799561,-28.4721088409424,-13.9182901382446,-21.1218719482422,-24.914176940918,-13.8919010162354,-25.5237636566162,-26.4017658233643,-12.404016494751,-25.5209121704102,-28.4702053070068,-18.7840099334717,-6.9199390411377,-18.7805404663086,-9.09450626373291,-6.92079448699951,-21.2144298553467,-6.66061115264893,-21.1221580505371,-19.448657989502,-8.4263801574707,-25.5237636566162,-18.7805404663086,-9.09450817108154,1.51883292198181,16.5668792724609,-28.6946468353271,6.47702598571777,17.2957706451416,-29.9571304321289,4.9024829864502,18.7836894989014,-28.4697360992432,1.51968812942505,17.2964344024658,-29.9582786560059,-6.91423845291138,
- 12.4303998947144,-29.9597091674805,-21.1175975799561,13.9182834625244,-28.4721183776855,-21.1218719482422,13.8918933868408,-24.9141864776611,-25.5237636566162,12.4040088653564,-26.4017753601074,-25.5209121704102,18.7840023040771,-28.4702129364014,-6.9199390411377,9.09449768066406,-18.7805500030518,-6.92079448699951,6.66060304641724,-21.2144412994385,-21.1221580505371,8.42637157440186,-19.4486675262451,-25.5237636566162,9.0944995880127,-18.7805500030518,1.51883292198181,-29.9571151733398,17.2957649230957,4.9024829864502,12.4304056167603,29.9596843719482,-21.1175994873047,17.2964401245117,29.958251953125,-6.91423797607422,17.2957763671875,29.957103729248,4.9024829864502,18.784008026123,28.4701862335205,-6.91993713378906,18.7836952209473,28.4697093963623,1.51968765258789,12.404013633728,26.4017505645752,-25.5209121704102,13.918288230896,28.4720916748047,-21.1218719482422,13.8918972015381,24.9141597747803,-25.5237655639648,9.09450244903564,18.7805252075195,1.51883316040039,9.09450054168701,18.7805252075195,-6.92079544067383,6.6606068611145,21.2144165039063,-21.1221580505371,8.4263744354248,19.4486427307129,-25.5237655639648,29.95969581604,-12.4304180145264,-21.1175994873047,29.9582633972168,-17.2964515686035,-6.91423797607422,28.6946449279785,-16.5668716430664,6.47702598571777,28.4701976776123,-18.7840194702148,-6.91993713378906,28.4697208404541,-18.7837066650391,1.51968765258789,26.401762008667,-12.4040260314941,-25.5209121704102,28.4721031188965,-13.9183006286621,-21.1218719482422,24.9141712188721,-13.8919095993042,-25.5237655639648,18.7805366516113,-9.09451484680176,1.51883316040039,18.7805366516113,-9.09451293945313,-6.92079544067383,21.214427947998,-6.66061878204346,-21.1221580505371,19.4486541748047,-8.42638683319092,-25.5237655639648,29.9571208953857,17.2957534790039,4.9024829864502,28.4697284698486,18.7836742401123,1.51968812942505,29.9582691192627,17.2964172363281,-6.91423845291138,29.9596996307373,12.4303855895996,-21.1175975799561,28.4721088409424,13.9182682037354,-21.1218719482422,24.914176940918,13.8918790817261,-25.5237636566162,
- 26.4017658233643,12.4039945602417,-25.5209121704102,28.4702053070068,18.7839870452881,-6.9199390411377,18.7805404663086,9.09448432922363,-6.92079448699951,21.2144298553467,6.66058874130249,-21.1221580505371,19.448657989502,8.42635822296143,-25.5237636566162,18.7805404663086,9.09448623657227,1.51883292198181,-16.566858291626,28.6946258544922,6.47702503204346,-17.2957706451416,29.9571075439453,4.9024829864502,-18.7836894989014,28.4697132110596,1.51968812942505,-12.4304008483887,29.9596862792969,-21.1175975799561,-13.9182844161987,28.472095489502,-21.1218719482422,-13.8918943405151,24.9141635894775,-25.5237636566162,-12.4040098190308,26.4017524719238,-25.5209121704102,-18.7840023040771,28.4701900482178,-6.9199390411377,-9.09449863433838,18.7805271148682,-6.92079448699951,-6.66060352325439,21.2144184112549,-21.1221580505371,-8.42637252807617,19.4486446380615,-25.5237636566162,-9.09450054168701,18.7805271148682,1.51883292198181,29.9571151733398,-17.2957878112793,4.9024829864502,-31.6633014678955,-6.95487546920776,-2.78791809082031,-32.6585998535156,-7.32734966278076,-1.06401634216309,-34.6491928100586,-8.07229614257813,-1.06401634216309,-35.6444931030273,-8.44477081298828,-2.78791809082031,-34.6491928100586,-8.07229614257813,-4.51181983947754,-32.6585998535156,-7.32734966278076,-4.51181983947754,-31.6633033752441,6.95481824874878,-2.78791809082031,-32.6585998535156,7.32729053497314,-1.06401634216309,-34.6491928100586,8.07223510742188,-1.06401634216309,-35.6444892883301,8.4447078704834,-2.78791809082031,-34.6491928100586,8.07223510742188,-4.51181983947754,-32.6585998535156,7.32729053497314,-4.51181983947754,-29.9582633972168,-7.98788070678711,-2.78791809082031,-29.9582633972168,-8.9633617401123,-1.06401634216309,-29.9582614898682,-10.9143218994141,-1.06401634216309,-29.9582614898682,-11.8898029327393,-2.78791809082031,-29.9582614898682,-10.9143218994141,-4.51181983947754,-29.9582633972168,-8.9633617401123,-4.51181983947754,-29.9582672119141,7.98782300949097,-2.78791809082031,-29.9582672119141,8.96330261230469,-1.06401634216309,
- -29.9582691192627,10.9142627716064,-1.06401634216309,-29.9582672119141,11.8897457122803,-2.78791856765747,-29.9582691192627,10.9142627716064,-4.51181983947754,-29.9582672119141,8.96330261230469,-4.5118203163147,-17.2964344024658,29.9582557678223,-6.91423845291138,-29.9582691192627,-17.2964401245117,-6.91423845291138,-28.6946315765381,16.5668640136719,6.47702598571777,-16.5668830871582,-28.6946449279785,6.47702598571777,16.5668601989746,28.6946239471436,6.47702598571777,28.6946334838867,16.566858291626,6.47702598571777,-16.5668392181396,28.6946258544922,12.2806358337402,-28.6946277618408,16.5668563842773,12.2806358337402,-28.694652557373,-16.5668525695801,12.2806358337402,-16.5668869018555,-28.6946468353271,12.2806358337402,16.566837310791,28.6946277618408,12.2806358337402,28.6946258544922,16.5668563842773,12.2806358337402,28.694652557373,-16.5668544769287,12.2806358337402,16.5668869018555,-28.6946468353271,12.2806358337402,31.6621513366699,6.95481538772583,-2.78791809082031,31.6621475219727,-6.95487451553345,-2.78791809082031,32.6574478149414,-7.3273458480835,-1.06401634216309,32.6574478149414,7.32728862762451,-1.06401634216309,34.6480369567871,-8.07228851318359,-1.06401634216309,34.6480445861816,8.07223510742188,-1.06401634216309,35.6433372497559,-8.44476318359375,-2.78791809082031,35.6433410644531,8.4447078704834,-2.78791809082031,34.6480369567871,-8.07228851318359,-4.51181983947754,34.6480445861816,8.07223510742188,-4.51181983947754,32.6574478149414,-7.3273458480835,-4.51181983947754,32.6574478149414,7.32728862762451,-4.51181983947754,29.9571113586426,-7.98787927627563,-2.78791809082031,29.9571113586426,-8.96335601806641,-1.06401634216309,29.9571151733398,-10.9143161773682,-1.06401634216309,29.9571113586426,-11.889799118042,-2.78791856765747,29.9571151733398,-10.9143161773682,-4.51181983947754,29.9571113586426,-8.96335601806641,-4.5118203163147,29.9571113586426,7.98781967163086,-2.78791809082031,29.9571113586426,8.96330070495605,-1.06401634216309,29.9571113586426,10.9142589569092,-1.06401634216309,29.9571113586426,11.889741897583,-2.78791809082031,
- 29.9571113586426,10.9142589569092,-4.51181983947754,29.9571113586426,8.96330070495605,-4.51181983947754
- }
- PolygonVertexIndex: *568 {
- a: 2,4,3,-2,3,6,0,-2,6,7,5,-1,8,9,3,-5,9,10,6,-4,25,34,8,-5,6,10,11,-8,11,46,41,-8,11,33,22,95,60,83,72,-47,10,9,31,-33,9,8,34,-32,48,15,14,-14,12,16,29,-27,14,17,12,-14,17,18,16,-13,24,23,124,-49,16,18,28,-30,19,20,14,-16,20,21,17,-15,17,21,22,-19,24,2,125,-24,24,123,30,-26,30,123,26,-28,27,26,29,-29,34,25,30,-32,31,30,27,-33,24,25,4,-3,27,28,33,-33,33,28,18,-23,33,11,10,-33,37,47,69,-66,36,38,43,-38,39,0,5,-43,43,38,39,-41,40,39,42,-42,36,35,125,-3,42,5,7,-42,47,37,43,-45,44,43,40,-46,40,41,46,-46,19,15,87,-97,22,21,94,-96,21,20,93,-95,20,19,96,-94,45,46,72,-72,44,45,71,-71,47,44,70,-70,24,48,13,-124,2,1,38,-37,51,53,52,-51,52,55,49,-51,55,56,54,-50,57,58,52,-54,58,59,55,-53,74,84,57,-54,55,59,60,-57,60,95,90,-57,59,58,81,-83,58,57,84,-82,61,76,75,-63,97,65,64,-63,61,66,79,-77,64,67,61,-63,67,68,66,-62,73,127,63,-98,66,68,78,-80,69,70,64,-66,70,71,67,-65,67,71,72,-69,73,51,126,-128,73,75,80,-75,80,75,76,-78,77,76,79,-79,84,74,80,-82,81,80,77,-83,73,74,53,-52,77,78,83,-83,83,78,68,-73,83,60,59,-83,86,87,15,-49,86,122,92,-88,88,49,54,-92,92,122,88,-90,89,88,91,-91,86,85,126,-52,91,54,56,-91,96,87,92,-94,93,92,89,-95,89,90,95,-95,97,63,35,-37,65,97,36,-38,85,86,48,-125,75,73,97,-63,86,51,50,-123,98,104,105,-100,99,105,106,-101,100,106,107,-102,101,107,108,-103,102,108,109,-104,103,109,104,-99,104,116,117,-106,105,117,118,-107,106,118,119,-108,107,119,120,-109,108,120,121,-110,109,121,116,-105,110,98,99,-112,111,99,100,-113,112,100,101,-114,113,101,102,-115,114,102,103,-116,115,103,98,-111,50,49,88,-123,1,0,39,-39,13,12,26,-124,128,132,126,-86,129,128,85,-125,130,129,124,-24,131,130,23,-126,135,131,125,-36,132,133,127,-127,133,134,63,-128,134,135,35,-64,136,137,138,-140,139,138,140,-142,141,140,142,-144,143,142,144,-146,145,144,146,-148,147,146,137,-137,137,148,149,-139,138,149,150,-141,140,150,151,-143,142,151,152,-145,144,152,153,-147,146,153,148,-138,154,136,139,-156,155,139,141,-157,156,141,143,-158,157,143,145,-159,158,145,147,-160,159,147,136,-155
- }
- Edges: *300 {
- a: 0,1,2,3,4,5,6,8,9,10,12,13,15,16,17,20,21,23,25,26,28,29,30,32,33,34,35,36,37,38,41,42,43,46,48,49,50,51,52,53,54,55,56,57,58,60,61,64,65,66,67,69,70,72,73,75,76,77,81,82,84,85,86,88,89,90,91,93,94,95,99,102,106,113,114,124,125,126,127,128,129,130,131,132,134,135,137,138,139,142,143,144,145,147,154,155,158,159,162,165,166,167,169,170,173,174,178,182,183,186,187,190,194,197,200,201,202,203,204,205,206,208,209,210,212,213,215,216,217,220,221,223,225,226,229,230,233,234,235,238,240,241,242,243,244,245,246,247,248,249,250,252,253,256,257,260,261,262,263,265,266,269,273,278,280,281,282,284,285,286,287,290,291,295,298,302,309,310,320,323,324,325,326,328,330,331,333,334,335,338,339,340,341,343,350,354,361,363,371,378,380,381,382,383,385,386,387,389,390,391,393,394,395,397,398,399,401,403,404,405,406,409,410,413,414,417,418,421,422,425,428,430,431,434,435,438,439,442,443,446,447,451,464,465,467,468,471,472,475,476,479,480,483,484,485,488,489,492,496,497,498,499,501,502,503,505,506,507,509,510,511,513,514,515,517,519,520,521,522,525,526,529,530,533,534,537,538,541,544,546,547,550,551,554,555,558,559,562,563,567
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Normals: *1704 {
- a: -0.707123994827271,-0.707089483737946,0.000103243539342657,-0.70713347196579,-0.707080066204071,9.95033406070434e-005,-0.702731847763062,-0.703023076057434,-0.10920824855566,-0.701263785362244,-0.701615929603577,-0.126348882913589,-0.702731847763062,-0.703023076057434,-0.10920824855566,-0.653819799423218,-0.654875755310059,-0.379021674394608,-0.659583270549774,-0.660594582557678,-0.358559221029282,-0.701263785362244,-0.701615929603577,-0.126348882913589,-0.653819799423218,-0.654875755310059,-0.379021674394608,-0.611995041370392,-0.613310813903809,-0.499311476945877,-0.611995041370392,-0.613310813903809,-0.499311476945877,-0.659583270549774,-0.660594582557678,-0.358559221029282,-0.707109451293945,0.707104027271271,-6.94348727847682e-006,-0.702121317386627,0.702107608318329,-0.118619218468666,-0.702885627746582,0.702872514724731,-0.109187453985214,-0.70710951089859,0.707104086875916,-6.94348864271888e-006,-0.702121317386627,0.702107608318329,-0.118619218468666,-0.700276255607605,0.700270712375641,0.138687700033188,-0.70640367269516,0.706393837928772,0.0447411499917507,-0.702885627746582,0.702872514724731,-0.109187453985214,-4.41197516920511e-005,-4.41074298578314e-005,-0.999999940395355,-4.41197516920511e-005,-4.41074334958103e-005,-1,-4.41197553300299e-005,-4.41074334958103e-005,-1,-4.41197516920511e-005,-4.41074371337891e-005,-1,-0.70640367269516,0.706393837928772,0.0447411499917507,-0.700276255607605,0.700270712375641,0.138687700033188,-0.615021049976349,0.61503267288208,0.493440747261047,-0.615021109580994,0.61503279209137,0.493440836668015,8.54613162459827e-008,-7.45604224655682e-015,-1,8.54613162459827e-008,-7.45604224655682e-015,-1,6.07625310067306e-008,-0.000958684540819377,-0.999999523162842,6.07625167958759e-008,-0.000958684890065342,-0.999999523162842,1.21332109563809e-017,1.32348898008484e-023,-1,-7.44391188771919e-015,-4.27306758865598e-008,-1,-7.44391104068624e-015,-4.27306652284187e-008,-1,-4.27306616757051e-008,3.72802112327841e-015,-1,-4.27306616757051e-008,3.72802112327841e-015,-1,
- 7.46817768759213e-015,4.27306758865598e-008,-1,7.46817684055918e-015,4.27306652284187e-008,-1,1.21332109563809e-017,1.32348898008484e-023,-1,-0.70710688829422,-0.707106649875641,-1.9981359855592e-007,-0.70710688829422,-0.707106649875641,-1.99813584345065e-007,-0.707106828689575,-0.707106649875641,-1.99813584345065e-007,-0.70710688829422,-0.707106649875641,-1.9981359855592e-007,-0.70710688829422,-0.707106649875641,-1.567361493926e-007,-0.707106947898865,-0.707106709480286,-1.56736163603455e-007,-0.707106947898865,-0.707106709480286,-1.56736163603455e-007,-0.70710700750351,-0.707106649875641,-1.56736163603455e-007,-0.70708954334259,0.707123994827271,0.000102989106380846,-0.707080125808716,0.70713347196579,9.93246503639966e-005,-0.703023016452789,0.702731907367706,-0.109208226203918,-0.701615929603577,0.701263785362244,-0.126348853111267,-0.953657388687134,1.3870450743525e-007,-0.300894469022751,-0.777819335460663,9.49671417060927e-008,-0.628487944602966,-0.777819335460663,9.49671417060927e-008,-0.628487944602966,-0.953657448291779,1.38704521646105e-007,-0.300894439220428,-0.703023016452789,0.702731907367706,-0.109208226203918,-0.654875755310059,0.653819799423218,-0.379021644592285,-0.660594582557678,0.659583270549774,-0.358559191226959,-0.701615929603577,0.701263785362244,-0.126348853111267,-0.654875755310059,0.653819799423218,-0.379021644592285,-0.413984954357147,0.412187337875366,-0.811614394187927,-0.328477740287781,0.32658714056015,-0.886252284049988,-0.660594582557678,0.659583270549774,-0.358559191226959,-0.674928545951843,-0.293465465307236,0.677015066146851,-0.689713001251221,-0.262841612100601,0.674692690372467,-0.689711689949036,0.262842237949371,0.674693882465363,-0.674928069114685,0.293463945388794,0.677016198635101,-0.328477740287781,0.32658714056015,-0.886252284049988,-0.413984954357147,0.412187337875366,-0.811614394187927,-0.413985520601273,-0.412187308073044,-0.811614274978638,-0.328477829694748,-0.326586753129959,-0.886252403259277,0.707104027271271,0.707109451293945,-6.95173412168515e-006,0.702107608318329,0.702121317386627,-0.118619203567505,
- 0.702872514724731,0.702885627746582,-0.109187431633472,0.707104027271271,0.707109451293945,-6.9517345764325e-006,0.702107608318329,0.702121317386627,-0.118619203567505,0.700270712375641,0.700276255607605,0.138687714934349,0.706393778324127,0.706403613090515,0.0447411984205246,0.702872514724731,0.702885627746582,-0.109187431633472,0.706393778324127,0.706403613090515,0.0447411984205246,0.700270712375641,0.700276255607605,0.138687714934349,0.61503279209137,0.615021049976349,0.493440836668015,0.615032851696014,0.615021049976349,0.493440836668015,-0.674928545951843,-0.293465465307236,0.677015066146851,-0.293464094400406,-0.674928605556488,0.677015602588654,-0.26284322142601,-0.689711570739746,0.674693465232849,-0.689713001251221,-0.262841612100601,0.674692690372467,-0.707090020179749,-0.707123577594757,0.000103242549812421,-0.701616883277893,-0.701262950897217,-0.126348778605461,-0.703023850917816,-0.702731013298035,-0.109208233654499,-0.707080721855164,-0.707132816314697,9.95018053799868e-005,-0.703023850917816,-0.702731013298035,-0.109208233654499,-0.701616883277893,-0.701262950897217,-0.126348778605461,-0.660595297813416,-0.659582614898682,-0.358559101819992,-0.654876351356506,-0.653819143772125,-0.379021733999252,-0.654876351356506,-0.653819143772125,-0.379021733999252,-0.660595297813416,-0.659582614898682,-0.358559101819992,-0.328477829694748,-0.326586753129959,-0.886252403259277,-0.413985520601273,-0.412187308073044,-0.811614274978638,0.707103908061981,-0.707109689712524,-6.94348727847682e-006,0.707103908061981,-0.707109749317169,-6.94348773322417e-006,0.702872335910797,-0.702885866165161,-0.109187468886375,0.702107429504395,-0.702121615409851,-0.118619211018085,0.702107429504395,-0.702121615409851,-0.118619211018085,0.702872335910797,-0.702885866165161,-0.109187468886375,0.706393480300903,-0.706403851509094,0.0447412021458149,0.700270414352417,-0.700276494026184,0.138687774538994,-0.707090020179749,-0.707123577594757,0.000103242549812421,-0.707080721855164,-0.707132816314697,9.95018053799868e-005,-0.70713347196579,-0.707080066204071,9.95033406070434e-005,
- -0.707123994827271,-0.707089483737946,0.000103243539342657,0.706393480300903,-0.706403851509094,0.0447412021458149,0.615032434463501,-0.615021228790283,0.493441015481949,0.615032434463501,-0.615021288394928,0.493440985679626,0.700270414352417,-0.700276494026184,0.138687774538994,-7.44391188771919e-015,-4.27306758865598e-008,-1,-1.48999532872431e-014,-8.54613304568375e-008,-1,-1.48999532872431e-014,-8.54613304568375e-008,-1,-7.44391104068624e-015,-4.27306652284187e-008,-1,-0.707106828689575,-0.707106709480286,-6.94860091243754e-007,-0.70710688829422,-0.707106709480286,-6.94860091243754e-007,-0.70710688829422,-0.70710676908493,-6.94860091243754e-007,-0.707106828689575,-0.707106649875641,-6.94860091243754e-007,4.41074407717679e-005,-4.41197516920511e-005,-1,4.41074371337891e-005,-4.41197553300299e-005,-1,4.41074371337891e-005,-4.41197553300299e-005,-1,4.41074371337891e-005,-4.41197516920511e-005,-1,0.707123935222626,-0.70708954334259,0.000102967052953318,0.701263666152954,-0.701616227626801,-0.126348838210106,0.702731728553772,-0.703023254871368,-0.109208278357983,0.707133412361145,-0.707080125808716,9.93100693449378e-005,-7.25847328908458e-008,-0.953657388687134,-0.300894409418106,-7.25847399962731e-008,-0.953657448291779,-0.300894469022751,8.47020853456115e-009,-0.344974130392075,-0.938612222671509,8.47021563998851e-009,-0.34497407078743,-0.938612222671509,0.702731728553772,-0.703023254871368,-0.109208278357983,0.701263666152954,-0.701616227626801,-0.126348838210106,0.659582734107971,-0.660595118999481,-0.358559250831604,0.65381920337677,-0.654876232147217,-0.379021823406219,0.65381920337677,-0.654876232147217,-0.379021823406219,0.659582734107971,-0.660595118999481,-0.358559250831604,0.611994326114655,-0.613311231136322,-0.499311685562134,0.611994385719299,-0.613311290740967,-0.499311715364456,0.29346364736557,-0.674928605556488,0.677015900611877,0.262843132019043,-0.689711332321167,0.674693763256073,-0.26284322142601,-0.689711570739746,0.674693465232849,-0.293464094400406,-0.674928605556488,0.677015602588654,8.47021563998851e-009,-0.34497407078743,-0.938612222671509,
- 8.47020853456115e-009,-0.344974130392075,-0.938612222671509,6.07625167958759e-008,-0.000958684890065342,-0.999999523162842,6.07625310067306e-008,-0.000958684540819377,-0.999999523162842,0.70710951089859,0.707103967666626,-6.95173321219045e-006,0.707109570503235,0.707104027271271,-6.9517336669378e-006,0.702885746955872,0.702872455120087,-0.109187468886375,0.702121496200562,0.702107489109039,-0.118619203567505,0.702121496200562,0.702107489109039,-0.118619203567505,0.702885746955872,0.702872455120087,-0.109187468886375,0.706403732299805,0.706393659114838,0.0447412133216858,0.70027631521225,0.700270473957062,0.138687789440155,0.706403732299805,0.706393659114838,0.0447412133216858,0.615021049976349,0.615032494068146,0.493441015481949,0.615021109580994,0.615032494068146,0.493440985679626,0.70027631521225,0.700270473957062,0.138687789440155,-4.41074407717679e-005,4.41197516920511e-005,-1,-4.41074407717679e-005,4.41197516920511e-005,-1,-4.41074407717679e-005,4.41197516920511e-005,-1,-4.41074407717679e-005,4.41197516920511e-005,-1,-0.707106709480286,0.707106828689575,-8.26644111384667e-007,-0.707106649875641,0.70710676908493,-8.26644111384667e-007,-0.707106709480286,0.707106828689575,-8.26644111384667e-007,-0.70710676908493,0.70710688829422,-8.26644168228086e-007,-0.707106709480286,0.707106828689575,-1.80224063228707e-007,-0.707106709480286,0.707106828689575,-1.80224063228707e-007,-0.707106709480286,0.70710676908493,-1.80224063228707e-007,-0.707106709480286,0.707106828689575,-1.80224063228707e-007,-0.707106709480286,0.70710688829422,-1.64985479500501e-007,-0.70710676908493,0.70710688829422,-1.64985493711356e-007,-0.70710676908493,0.70710688829422,-1.64985493711356e-007,-0.70710676908493,0.70710688829422,-1.64985479500501e-007,0.70710676908493,-0.70710676908493,-8.6258501141856e-007,0.70710676908493,-0.70710676908493,-8.6258501141856e-007,0.707106709480286,-0.707106709480286,-8.6258501141856e-007,0.70710676908493,-0.70710676908493,-8.62585125105397e-007,0.707106709480286,-0.707106828689575,-1.52798648400676e-007,0.707106709480286,-0.70710688829422,-1.52798648400676e-007,
- 0.707106709480286,-0.70710688829422,-1.52798648400676e-007,0.707106709480286,-0.70710688829422,-1.52798648400676e-007,0.70710676908493,-0.70710688829422,-1.56736206236019e-007,0.70710676908493,-0.70710688829422,-1.56736206236019e-007,0.707106709480286,-0.70710688829422,-1.56736192025164e-007,0.70710676908493,-0.70710688829422,-1.56736206236019e-007,-1,1.65413609920506e-007,9.71694098552689e-005,-1,1.65413609920506e-007,9.71694098552689e-005,-1,1.63205086778362e-007,9.8764372523874e-005,-1,1.63205086778362e-007,9.87643797998317e-005,-1.10274960718471e-007,-0.999999940395355,9.71694025793113e-005,-1.04083611063288e-007,-1,9.87643579719588e-005,-1.04083596852433e-007,-1,9.87643579719588e-005,-1.10274960718471e-007,-0.999999940395355,9.71694025793113e-005,0.707123994827271,0.707089483737946,0.000103243539342657,0.70713347196579,0.707080066204071,9.95033406070434e-005,0.702731847763062,0.703023016452789,-0.109208256006241,0.701263844966888,0.701615989208221,-0.126348927617073,0.702731847763062,0.703023016452789,-0.109208256006241,0.653819799423218,0.654875755310059,-0.379021674394608,0.659583210945129,0.660594582557678,-0.358559250831604,0.701263844966888,0.701615989208221,-0.126348927617073,0.653819799423218,0.654875755310059,-0.379021674394608,0.412187337875366,0.413984954357147,-0.811614394187927,0.32658714056015,0.328477740287781,-0.886252284049988,0.659583210945129,0.660594582557678,-0.358559250831604,0.707109391689301,-0.70710414648056,-6.94348682372947e-006,0.702121317386627,-0.702107667922974,-0.118619218468666,0.702885568141937,-0.702872633934021,-0.109187439084053,0.707109451293945,-0.707104206085205,-6.94348818797152e-006,0.702121317386627,-0.702107667922974,-0.118619218468666,0.700276136398315,-0.700270712375641,0.138687670230865,0.706403613090515,-0.706393778324127,0.0447411462664604,0.702885568141937,-0.702872633934021,-0.109187439084053,4.41197516920511e-005,4.41074298578314e-005,-1,4.41197516920511e-005,4.41074334958103e-005,-1,4.41197516920511e-005,4.41074334958103e-005,-0.999999940395355,4.41197516920511e-005,4.41074371337891e-005,-1,
- 0.706403613090515,-0.706393778324127,0.0447411462664604,0.700276136398315,-0.700270712375641,0.138687670230865,0.615020990371704,-0.61503267288208,0.493440717458725,0.615021049976349,-0.615032732486725,0.49344077706337,-4.27306616757051e-008,3.72802112327841e-015,-1,-4.27306616757051e-008,3.72802112327841e-015,-1,-8.54613162459827e-008,7.45604139952387e-015,-1,-8.54613162459827e-008,7.45604224655682e-015,-1,0.70710688829422,0.707106709480286,-2.07649449635028e-007,0.707106828689575,0.707106649875641,-2.07649435424173e-007,0.707106828689575,0.707106709480286,-2.07649435424173e-007,0.70710688829422,0.707106709480286,-2.07649449635028e-007,0.707106828689575,0.707106828689575,-1.48486876128118e-007,0.70710676908493,0.70710676908493,-1.48486861917263e-007,0.70710676908493,0.70710676908493,-1.48486861917263e-007,0.707106828689575,0.70710676908493,-1.48486876128118e-007,0.953657388687134,-1.38703882157643e-007,-0.300894469022751,0.953657448291779,-1.38703882157643e-007,-0.300894439220428,1,-1.63204617820156e-007,9.87643797998317e-005,1,-1.63204603609302e-007,9.8764372523874e-005,0.70708954334259,-0.707123994827271,0.00010296607069904,0.707080125808716,-0.70713347196579,9.93085413938388e-005,0.703023016452789,-0.702731847763062,-0.10920824855566,0.701615929603577,-0.701263785362244,-0.126348882913589,0.953657388687134,-1.38703882157643e-007,-0.300894469022751,0.777819335460663,-9.49671417060927e-008,-0.628487944602966,0.777819335460663,-9.49671417060927e-008,-0.628487944602966,0.953657448291779,-1.38703882157643e-007,-0.300894439220428,0.703023016452789,-0.702731847763062,-0.10920824855566,0.654875755310059,-0.653819799423218,-0.379021674394608,0.660594582557678,-0.659583270549774,-0.358559191226959,0.701615929603577,-0.701263785362244,-0.126348882913589,0.654875755310059,-0.653819799423218,-0.379021674394608,0.413984954357147,-0.412187337875366,-0.811614394187927,0.328477740287781,-0.32658714056015,-0.886252284049988,0.660594582557678,-0.659583270549774,-0.358559191226959,0.674928367137909,0.293463230133057,0.677016258239746,
- 0.689711391925812,0.262842565774918,0.674694001674652,0.689712822437286,-0.262841045856476,0.674692988395691,0.674927830696106,-0.293466091156006,0.677015483379364,0.328477740287781,-0.32658714056015,-0.886252284049988,0.413984954357147,-0.412187337875366,-0.811614394187927,0.413985520601273,0.412187308073044,-0.811614274978638,0.328477829694748,0.326586753129959,-0.886252403259277,-0.707104027271271,-0.707109451293945,-6.9517345764325e-006,-0.702107608318329,-0.702121317386627,-0.118619203567505,-0.702872514724731,-0.702885627746582,-0.109187431633472,-0.707104086875916,-0.70710951089859,-6.9517354859272e-006,-0.702107608318329,-0.702121317386627,-0.118619203567505,-0.700270712375641,-0.700276255607605,0.13868772983551,-0.706393778324127,-0.706403613090515,0.0447411984205246,-0.702872514724731,-0.702885627746582,-0.109187431633472,-0.706393778324127,-0.706403613090515,0.0447411984205246,-0.700270712375641,-0.700276255607605,0.13868772983551,-0.615032732486725,-0.615021049976349,0.493440806865692,-0.615032732486725,-0.615021049976349,0.49344077706337,0.674928367137909,0.293463230133057,0.677016258239746,0.293465197086334,0.674927115440369,0.677016735076904,0.262840926647186,0.689711809158325,0.674694180488586,0.689711391925812,0.262842565774918,0.674694001674652,0.707090020179749,0.707123577594757,0.000103242549812421,0.701616823673248,0.701262950897217,-0.126348733901978,0.703023850917816,0.702731013298035,-0.109208203852177,0.707080721855164,0.707132816314697,9.95018053799868e-005,0.703023850917816,0.702731013298035,-0.109208203852177,0.701616823673248,0.701262950897217,-0.126348733901978,0.660595297813416,0.659582614898682,-0.35855907201767,0.654876351356506,0.653819143772125,-0.379021674394608,0.654876351356506,0.653819143772125,-0.379021674394608,0.660595297813416,0.659582614898682,-0.35855907201767,0.328477829694748,0.326586753129959,-0.886252403259277,0.413985520601273,0.412187308073044,-0.811614274978638,-0.707103848457336,0.707109749317169,-6.95173412168515e-006,-0.707103848457336,0.707109749317169,-6.95173412168515e-006,
- -0.702872276306152,0.702885866165161,-0.109187461435795,-0.70210736989975,0.702121675014496,-0.118619211018085,-0.70210736989975,0.702121675014496,-0.118619211018085,-0.702872276306152,0.702885866165161,-0.109187461435795,-0.706393539905548,0.706403851509094,0.0447412021458149,-0.700270414352417,0.700276494026184,0.138687774538994,0.707090020179749,0.707123577594757,0.000103242549812421,0.707080721855164,0.707132816314697,9.95018053799868e-005,0.70713347196579,0.707080066204071,9.95033406070434e-005,0.707123994827271,0.707089483737946,0.000103243539342657,-0.706393539905548,0.706403851509094,0.0447412021458149,-0.615032494068146,0.615021228790283,0.493441015481949,-0.615032494068146,0.615021228790283,0.493440985679626,-0.700270414352417,0.700276494026184,0.138687774538994,7.46817768759213e-015,4.27306758865598e-008,-1,1.4924219087116e-014,8.54613304568375e-008,-1,1.4924219087116e-014,8.54613304568375e-008,-1,7.46817684055918e-015,4.27306652284187e-008,-1,0.707106828689575,0.707106709480286,-6.70899396482127e-007,0.70710688829422,0.707106709480286,-6.70899396482127e-007,0.70710688829422,0.70710676908493,-6.70899396482127e-007,0.707106828689575,0.707106649875641,-6.70899396482127e-007,-0.707123935222626,0.70708954334259,0.000102990103187039,-0.707133412361145,0.707080125808716,9.93261783150956e-005,-0.707080125808716,0.70713347196579,9.93246503639966e-005,-0.70708954334259,0.707123994827271,0.000102989106380846,-0.707123935222626,0.70708954334259,0.000102990103187039,-0.701263666152954,0.701616287231445,-0.126348793506622,-0.702731609344482,0.703023254871368,-0.10920824855566,-0.707133412361145,0.707080125808716,9.93261783150956e-005,7.25847399962731e-008,0.953657388687134,-0.300894409418106,7.25847399962731e-008,0.953657448291779,-0.300894439220428,3.47647493015302e-008,0.777819335460663,-0.628487944602966,3.47647493015302e-008,0.777819395065308,-0.628487944602966,-0.702731609344482,0.703023254871368,-0.10920824855566,-0.701263666152954,0.701616287231445,-0.126348793506622,-0.659582674503326,0.660595118999481,-0.358559221029282,
- -0.65381920337677,0.654876232147217,-0.379021793603897,-0.65381920337677,0.654876232147217,-0.379021793603897,-0.659582674503326,0.660595118999481,-0.358559221029282,-0.326586693525314,0.328477829694748,-0.886252462863922,-0.412187188863754,0.41398549079895,-0.811614215373993,-0.293464690446854,0.674927294254303,0.677016735076904,-0.262841045856476,0.68971174955368,0.674694299697876,0.262840926647186,0.689711809158325,0.674694180488586,0.293465197086334,0.674927115440369,0.677016735076904,-0.326586693525314,0.328477829694748,-0.886252462863922,0.32658714056015,0.328477740287781,-0.886252284049988,0.412187337875366,0.413984954357147,-0.811614394187927,-0.412187188863754,0.41398549079895,-0.811614215373993,-0.707109570503235,-0.707103908061981,-6.95173412168515e-006,-0.70710963010788,-0.707103967666626,-6.9517345764325e-006,-0.702885806560516,-0.702872335910797,-0.109187468886375,-0.702121555805206,-0.702107489109039,-0.118619211018085,-0.702121555805206,-0.702107489109039,-0.118619211018085,-0.702885806560516,-0.702872335910797,-0.109187468886375,-0.706403791904449,-0.706393599510193,0.044741228222847,-0.700276374816895,-0.700270473957062,0.138687804341316,-0.706403791904449,-0.706393599510193,0.044741228222847,-0.615021049976349,-0.615032494068146,0.493441015481949,-0.615021109580994,-0.615032494068146,0.493440985679626,-0.700276374816895,-0.700270473957062,0.138687804341316,0.674927830696106,-0.293466091156006,0.677015483379364,0.689712822437286,-0.262841045856476,0.674692988395691,0.262843132019043,-0.689711332321167,0.674693763256073,0.29346364736557,-0.674928605556488,0.677015900611877,0.707080125808716,-0.70713347196579,9.93085413938388e-005,0.70708954334259,-0.707123994827271,0.00010296607069904,0.707123935222626,-0.70708954334259,0.000102967052953318,0.707133412361145,-0.707080125808716,9.93100693449378e-005,-0.262841045856476,0.68971174955368,0.674694299697876,-0.293464690446854,0.674927294254303,0.677016735076904,-0.674928069114685,0.293463945388794,0.677016198635101,-0.689711689949036,0.262842237949371,0.674693882465363,
- 1,-1.63204617820156e-007,9.87643797998317e-005,1,-1.65413609920506e-007,9.71694098552689e-005,1,-1.65413609920506e-007,9.71694098552689e-005,1,-1.63204603609302e-007,9.8764372523874e-005,1.10274960718471e-007,0.999999940395355,9.71694025793113e-005,1.10274960718471e-007,0.999999940395355,9.71694025793113e-005,1.04083596852433e-007,1,9.8764372523874e-005,1.04083611063288e-007,1,9.87643797998317e-005,0.854411125183105,0.519597589969635,1.03667568321066e-017,0.85441118478775,-0.519597470760345,2.11524824322851e-008,0.308456540107727,-0.165541589260101,0.936723351478577,0.308456271886826,0.165541529655457,0.936723470687866,0.308456271886826,0.165541529655457,0.936723470687866,0.308456540107727,-0.165541589260101,0.936723351478577,-0.507036685943604,0.308346420526505,0.804882705211639,-0.50703638792038,-0.308346599340439,0.804882884025574,-0.50703638792038,-0.308346599340439,0.804882884025574,-0.507036685943604,0.308346420526505,0.804882705211639,-0.881126642227173,0.472880274057388,-1.06908892094967e-017,-0.881126582622528,-0.472880482673645,-1.06909007900253e-017,-0.881126582622528,-0.472880482673645,-1.06909007900253e-017,-0.881126642227173,0.472880274057388,-1.06908892094967e-017,-0.507036685943604,0.308346390724182,-0.804882705211639,-0.50703638792038,-0.308346599340439,-0.804882884025574,-0.50703638792038,-0.308346599340439,-0.804882884025574,-0.507036685943604,0.308346390724182,-0.804882705211639,0.308456510305405,-0.165541559457779,-0.936723351478577,0.308456242084503,0.165541514754295,-0.936723411083221,0.308456242084503,0.165541514754295,-0.936723411083221,0.308456510305405,-0.165541559457779,-0.936723351478577,0.85441118478775,-0.519597470760345,2.11524824322851e-008,0.854411125183105,0.519597589969635,1.03667568321066e-017,0.85441118478775,-0.519597470760345,2.11524824322851e-008,0.518173396587372,-0.855275571346283,5.4311520614192e-008,0.208569690585136,-0.344256490468979,0.91541588306427,0.308456540107727,-0.165541589260101,0.936723351478577,0.308456540107727,-0.165541589260101,0.936723351478577,0.208569690585136,-0.344256490468979,0.91541588306427,
- -0.347303032875061,0.573242723941803,0.74214106798172,-0.507036685943604,0.308346420526505,0.804882705211639,-0.507036685943604,0.308346420526505,0.804882705211639,-0.347303032875061,0.573242723941803,0.74214106798172,-0.518174350261688,0.85527503490448,-2.52211034279526e-008,-0.881126642227173,0.472880274057388,-1.06908892094967e-017,-0.881126642227173,0.472880274057388,-1.06908892094967e-017,-0.518174350261688,0.85527503490448,-2.52211034279526e-008,-0.347303092479706,0.573242723941803,-0.742141127586365,-0.507036685943604,0.308346390724182,-0.804882705211639,-0.507036685943604,0.308346390724182,-0.804882705211639,-0.347303092479706,0.573242723941803,-0.742141127586365,0.208569571375847,-0.344256401062012,-0.91541588306427,0.308456510305405,-0.165541559457779,-0.936723351478577,0.308456510305405,-0.165541559457779,-0.936723351478577,0.208569571375847,-0.344256401062012,-0.91541588306427,0.518173396587372,-0.855275571346283,5.4311520614192e-008,0.85441118478775,-0.519597470760345,2.11524824322851e-008,0.518172979354858,0.855275869369507,6.28711321793331e-018,0.854411125183105,0.519597589969635,1.03667568321066e-017,0.308456271886826,0.165541529655457,0.936723470687866,0.208569303154945,0.344256222248077,0.915416061878204,0.208569303154945,0.344256222248077,0.915416061878204,0.308456271886826,0.165541529655457,0.936723470687866,-0.50703638792038,-0.308346599340439,0.804882884025574,-0.347302168607712,-0.573242902755737,0.742141425609589,-0.347302168607712,-0.573242902755737,0.742141425609589,-0.50703638792038,-0.308346599340439,0.804882884025574,-0.881126582622528,-0.472880482673645,-1.06909007900253e-017,-0.518173217773438,-0.855275690555573,-6.28711611306546e-018,-0.518173217773438,-0.855275690555573,-6.28711611306546e-018,-0.881126582622528,-0.472880482673645,-1.06909007900253e-017,-0.50703638792038,-0.308346599340439,-0.804882884025574,-0.347302168607712,-0.573242902755737,-0.742141425609589,-0.347302168607712,-0.573242902755737,-0.742141425609589,-0.50703638792038,-0.308346599340439,-0.804882884025574,0.308456242084503,0.165541514754295,-0.936723411083221,
- 0.208569303154945,0.344256222248077,-0.915416061878204,0.208569303154945,0.344256222248077,-0.915416061878204,0.308456242084503,0.165541514754295,-0.936723411083221,0.854411125183105,0.519597589969635,1.03667568321066e-017,0.518172979354858,0.855275869369507,6.28711321793331e-018,1.04083596852433e-007,1,9.8764372523874e-005,7.25847399962731e-008,0.953657448291779,-0.300894439220428,7.25847399962731e-008,0.953657388687134,-0.300894409418106,1.04083611063288e-007,1,9.87643797998317e-005,-1.04083611063288e-007,-1,9.87643579719588e-005,-7.25847399962731e-008,-0.953657448291779,-0.300894469022751,-7.25847328908458e-008,-0.953657388687134,-0.300894409418106,-1.04083596852433e-007,-1,9.87643579719588e-005,-1,1.63205086778362e-007,9.8764372523874e-005,-0.953657388687134,1.3870450743525e-007,-0.300894469022751,-0.953657448291779,1.38704521646105e-007,-0.300894439220428,-1,1.63205086778362e-007,9.87643797998317e-005,-0.3826824426651,0.92387992143631,8.17681211628951e-007,0.382682353258133,0.92387992143631,7.55459041101858e-007,0.382684081792831,0.923879206180573,7.55464043322718e-007,-0.382683783769608,0.923879444599152,8.17685474885366e-007,-0.923879384994507,0.38268381357193,9.95545974546985e-007,-0.3826824426651,0.92387992143631,8.17681211628951e-007,-0.382683783769608,0.923879444599152,8.17685474885366e-007,-0.923879206180573,0.382684260606766,9.95547111415362e-007,-0.923880100250244,-0.382682174444199,1.8666449363991e-007,-0.923879384994507,0.38268381357193,9.95545974546985e-007,-0.923879206180573,0.382684260606766,9.95547111415362e-007,-0.923879504203796,-0.382683336734772,1.86665062074098e-007,-0.382683962583542,-0.923879325389862,9.77334124740992e-008,-0.923880100250244,-0.382682174444199,1.8666449363991e-007,-0.923879504203796,-0.382683336734772,1.86665062074098e-007,-0.382683724164963,-0.923879384994507,9.77332490492699e-008,0.382684022188187,-0.923879265785217,-2.67099053985476e-008,-0.382683962583542,-0.923879325389862,9.77334124740992e-008,-0.382683724164963,-0.923879384994507,9.77332490492699e-008,0.382683485746384,-0.923879504203796,-2.67101167850115e-008,
- 0.382682353258133,0.92387992143631,7.55459041101858e-007,0.923879265785217,0.382683962583542,9.33324713514594e-007,0.923879325389862,0.382683873176575,9.33324542984337e-007,0.382684081792831,0.923879206180573,7.55464043322718e-007,0.923879265785217,0.382683962583542,9.33324713514594e-007,0.923880100250244,-0.382682055234909,6.22211686618357e-008,0.923879444599152,-0.382683515548706,6.22213960355111e-008,0.923879325389862,0.382683873176575,9.33324542984337e-007,0.923880100250244,-0.382682055234909,6.22211686618357e-008,0.382684022188187,-0.923879265785217,-2.67099053985476e-008,0.382683485746384,-0.923879504203796,-2.67101167850115e-008,0.923879444599152,-0.382683515548706,6.22213960355111e-008,-0.854411005973816,-0.519597828388214,-1.0366756004926e-017,-0.854410707950592,0.519598305225372,1.05762403279641e-008,-0.30845633149147,0.165541440248489,0.936723470687866,-0.308456212282181,-0.165541589260101,0.936723411083221,-0.308456212282181,-0.165541589260101,0.936723411083221,-0.30845633149147,0.165541440248489,0.936723470687866,0.507036447525024,-0.308346420526505,0.804882943630219,0.507036447525024,0.308346658945084,0.804882764816284,0.507036447525024,0.308346658945084,0.804882764816284,0.507036447525024,-0.308346420526505,0.804882943630219,0.881126642227173,-0.472880303859711,-4.42976819670093e-008,0.881126523017883,0.472880512475967,-1.47658942850626e-008,0.881126523017883,0.472880512475967,-1.47658942850626e-008,0.881126642227173,-0.472880303859711,-4.42976819670093e-008,0.507036447525024,-0.308346390724182,-0.804882943630219,0.507036507129669,0.308346658945084,-0.804882824420929,0.507036507129669,0.308346658945084,-0.804882824420929,0.507036447525024,-0.308346390724182,-0.804882943630219,-0.308456301689148,0.165541425347328,-0.936723470687866,-0.308456242084503,-0.165541604161263,-0.936723411083221,-0.308456242084503,-0.165541604161263,-0.936723411083221,-0.308456301689148,0.165541425347328,-0.936723470687866,-0.854410707950592,0.519598305225372,1.05762403279641e-008,-0.854411005973816,-0.519597828388214,-1.0366756004926e-017,
- -0.854410707950592,0.519598305225372,1.05762403279641e-008,-0.518172800540924,0.855275869369507,3.6207683962175e-008,-0.208569765090942,0.344257116317749,0.915415644645691,-0.30845633149147,0.165541440248489,0.936723470687866,-0.30845633149147,0.165541440248489,0.936723470687866,-0.208569765090942,0.344257116317749,0.915415644645691,0.347302734851837,-0.573242545127869,0.742141425609589,0.507036447525024,-0.308346420526505,0.804882943630219,0.507036447525024,-0.308346420526505,0.804882943630219,0.347302734851837,-0.573242545127869,0.742141425609589,0.518174111843109,-0.85527515411377,-1.00884484766084e-007,0.881126642227173,-0.472880303859711,-4.42976819670093e-008,0.881126642227173,-0.472880303859711,-4.42976819670093e-008,0.518174111843109,-0.85527515411377,-1.00884484766084e-007,0.347302734851837,-0.573242425918579,-0.742141425609589,0.507036447525024,-0.308346390724182,-0.804882943630219,0.507036447525024,-0.308346390724182,-0.804882943630219,0.347302734851837,-0.573242425918579,-0.742141425609589,-0.208569675683975,0.344257056713104,-0.915415644645691,-0.308456301689148,0.165541425347328,-0.936723470687866,-0.308456301689148,0.165541425347328,-0.936723470687866,-0.208569675683975,0.344257056713104,-0.915415644645691,-0.518172800540924,0.855275869369507,3.6207683962175e-008,-0.854410707950592,0.519598305225372,1.05762403279641e-008,-0.518172681331635,-0.855275988578796,-6.28710949562056e-018,-0.854411005973816,-0.519597828388214,-1.0366756004926e-017,-0.308456212282181,-0.165541589260101,0.936723411083221,-0.208569332957268,-0.344256550073624,0.915415942668915,-0.208569332957268,-0.344256550073624,0.915415942668915,-0.308456212282181,-0.165541589260101,0.936723411083221,0.507036447525024,0.308346658945084,0.804882764816284,0.347302109003067,0.573242843151093,0.742141485214233,0.347302109003067,0.573242843151093,0.742141485214233,0.507036447525024,0.308346658945084,0.804882764816284,0.881126523017883,0.472880512475967,-1.47658942850626e-008,0.518173217773438,0.855275750160217,6.28711611306546e-018,0.518173217773438,0.855275750160217,6.28711611306546e-018,
- 0.881126523017883,0.472880512475967,-1.47658942850626e-008,0.507036507129669,0.308346658945084,-0.804882824420929,0.347302109003067,0.573242843151093,-0.742141485214233,0.347302109003067,0.573242843151093,-0.742141485214233,0.507036507129669,0.308346658945084,-0.804882824420929,-0.308456242084503,-0.165541604161263,-0.936723411083221,-0.208569332957268,-0.344256550073624,-0.915415942668915,-0.208569332957268,-0.344256550073624,-0.915415942668915,-0.308456242084503,-0.165541604161263,-0.936723411083221,-0.854411005973816,-0.519597828388214,-1.0366756004926e-017,-0.518172681331635,-0.855275988578796,-6.28710949562056e-018
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "UVChannel_1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *672 {
- a: 0.181927412748337,0.0357094891369343,0.558500826358795,0.985683619976044,0.54419070482254,0.962808787822723,0.544191837310791,0.905739009380341,0.558503150939941,0.905777633190155,0.567602515220642,0.807189166545868,0.0317741632461548,0.0357094891369343,0.581912636756897,0.80721789598465,0.550617814064026,0.775570333003998,0.564928293228149,0.775589406490326,0.436712741851807,0.985683619976044,0.0319335907697678,0.00151777500286698,0.181767970323563,0.00151777500286698,0.17524565756321,0.868498086929321,0.612018287181854,0.594574868679047,0.658956706523895,0.594574868679047,0.658951878547668,0.670786678791046,0.612014770507813,0.670783579349518,0.740226209163666,0.594575583934784,0.773370802402496,0.455723255872726,0.740224480628967,0.651659071445465,0.755192518234253,0.530724167823792,0.682847797870636,0.530724167823792,0.66467010974884,0.455723255872726,0.70146632194519,0.035709235817194,0.558500826358795,0.985683619976044,0.54419070482254,0.962808787822723,0.701625943183899,0.00151757942512631,0.544191837310791,0.905739009380341,0.558503150939941,0.905777633190155,0.851459681987762,0.00151757942512631,0.567602515220642,0.807189166545868,0.581912636756897,0.80721789598465,0.550617814064026,0.775570333003998,0.564928293228149,0.775589406490326,0.851619243621826,0.035709235817194,0.236896008253098,0.868498086929321,0.612018287181854,0.594574868679047,0.658956706523895,0.594574868679047,0.658951878547668,0.670786678791046,0.612014770507813,0.670783579349518,0.740226209163666,0.594575583934784,0.760182201862335,0.432476252317429,0.535832226276398,0.670781433582306,0.773370802402496,0.455721974372864,0.66467010974884,0.455721974372864,0.677859425544739,0.432476252317429,0.881004929542542,0.192864060401917,0.876602649688721,0.205053240060806,0.555933892726898,0.99530166387558,0.676482856273651,0.205053240060806,0.439278841018677,0.99530166387558,0.436710596084595,0.905777633190155,0.535833537578583,0.594572842121124,0.256889790296555,0.888492047786713,0.451021611690521,0.905739009380341,0.672080457210541,
- 0.192864060401917,0.672077000141144,0.1214939057827,0.451022326946259,0.962808787822723,0.413300454616547,0.80721789598465,0.427610754966736,0.807189166545868,0.155251741409302,0.888491988182068,0.768371522426605,0.594575583934784,0.768371284008026,0.637563288211823,0.488895505666733,0.670781433582306,0.488894432783127,0.594569623470306,0.755192518234253,0.575295805931091,0.134924247860909,0.828176558017731,0.682847797870636,0.575295805931091,0.677859425544739,0.432477027177811,0.760182201862335,0.432477027177811,0.211312532424927,0.192864060401917,0.20691043138504,0.20505353808403,0.436712741851807,0.985683619976044,0.00679089315235615,0.20505353808403,0.436710596084595,0.905777633190155,0.451021611690521,0.905739009380341,0.535832226276398,0.670781433582306,0.451022326946259,0.962808787822723,0.413300931453705,0.80721789598465,0.00238875858485699,0.192864060401917,0.427610754966736,0.807189166545868,0.430285811424255,0.775589406490326,0.444595873355865,0.775570333003998,0.558500826358795,0.985683619976044,0.13492426276207,0.766526162624359,0.535833537578583,0.594572842121124,0.612018287181854,0.594574868679047,0.612014770507813,0.670783579349518,0.488895505666733,0.670781433582306,0.66467010974884,0.455721288919449,0.175245776772499,0.726204574108124,0.677859425544739,0.432475358247757,0.760182201862335,0.432475358247757,0.773370802402496,0.455721288919449,0.236896127462387,0.726204633712769,0.277217537164688,0.766526281833649,0.881009042263031,0.1214939057827,0.277217507362366,0.828176617622375,0.109488591551781,0.751975357532501,0.114930436015129,0.746532440185547,0.114930421113968,0.848170459270477,0.109488561749458,0.842727482318878,0.740224480628967,0.651659071445465,0.768371522426605,0.594575583934784,0.251446843147278,0.893933892250061,0.407624900341034,0.651650965213776,0.160694643855095,0.893933892250061,0.407624036073685,0.594567000865936,0.488894432783127,0.594569623470306,0.407624900341034,0.651650965213776,0.612018287181854,0.594574868679047,0.658956706523895,0.594574868679047,0.155251979827881,0.706210672855377,
- 0.256890058517456,0.706210672855377,0.407624036073685,0.594567000865936,0.379478514194489,0.63755589723587,0.302653163671494,0.842727482318878,0.658951878547668,0.670786678791046,0.297211319208145,0.848170459270477,0.612014770507813,0.670783579349518,0.768371284008026,0.637563288211823,0.535832226276398,0.670781433582306,0.682847797870636,0.530722379684448,0.755192518234253,0.530722379684448,0.682848989963531,0.575294494628906,0.755192518234253,0.575294494628906,0.773370802402496,0.455722630023956,0.755192518234253,0.530724167823792,0.682847797870636,0.530724167823792,0.66467010974884,0.455722630023956,0.755192518234253,0.575295805931091,0.682847797870636,0.575295805931091,0.677859425544739,0.432477027177811,0.760182201862335,0.432477027177811,0.755192518234253,0.530723035335541,0.682847797870636,0.530723035335541,0.755192518234253,0.575294494628906,0.682847797870636,0.575294494628906,0.379478514194489,0.63755589723587,0.379478514194489,0.594567358493805,0.379478514194489,0.594567358493805,0.658956706523895,0.594574868679047,0.658951878547668,0.670786678791046,0.740226209163666,0.594575583934784,0.740224480628967,0.651659071445465,0.768371522426605,0.594575583934784,0.768371284008026,0.637563288211823,0.627575695514679,0.0357094593346119,0.558500826358795,0.985683619976044,0.54419070482254,0.962808787822723,0.544191837310791,0.905739009380341,0.558503150939941,0.905777633190155,0.567602515220642,0.807189166545868,0.477423101663589,0.0357094593346119,0.581912636756897,0.80721789598465,0.550617814064026,0.775570333003998,0.564928293228149,0.775589406490326,0.436712741851807,0.985683619976044,0.477582544088364,0.00151770422235131,0.627416491508484,0.00151770422235131,0.297211319208145,0.746532440185547,0.740226209163666,0.594575583934784,0.740224480628967,0.651659071445465,0.535832226276398,0.670781433582306,0.535833537578583,0.594572842121124,0.768371522426605,0.594575583934784,0.768371284008026,0.637563288211823,0.488895505666733,0.670781433582306,0.488894432783127,0.594569623470306,0.407624900341034,0.651650965213776,
- 0.407624036073685,0.594567000865936,0.255208075046539,0.035709235817194,0.54419070482254,0.962808787822723,0.544191837310791,0.905739009380341,0.405361592769623,0.035709235817194,0.558503150939941,0.905777633190155,0.567602515220642,0.807189166545868,0.434751033782959,0.121494144201279,0.581912636756897,0.80721789598465,0.550617814064026,0.775570333003998,0.564928293228149,0.775589406490326,0.555933892726898,0.99530166387558,0.225818872451782,0.121494144201279,0.302653163671494,0.751975357532501,0.379478514194489,0.63755589723587,0.379478514194489,0.594567358493805,0.535833537578583,0.594572842121124,0.488895505666733,0.670781433582306,0.488894432783127,0.594569623470306,0.407624900341034,0.651650965213776,0.407624036073685,0.594567000865936,0.379478514194489,0.63755589723587,0.379478514194489,0.594567358493805,0.532771825790405,0.865401268005371,0.255367815494537,0.00151777500286698,0.405201613903046,0.00151777500286698,0.555933892726898,0.99530166387558,0.434747040271759,0.192864060401917,0.439278841018677,0.99530166387558,0.436710596084595,0.905777633190155,0.521459341049194,0.863284826278687,0.43034440279007,0.205053240060806,0.451021611690521,0.905739009380341,0.230225056409836,0.205053240060806,0.225822478532791,0.192864060401917,0.451022326946259,0.962808787822723,0.413300454616547,0.80721789598465,0.427610754966736,0.807189166545868,0.160694941878319,0.700768828392029,0.510146141052246,0.859050750732422,0.498832941055298,0.856934070587158,0.487520694732666,0.859050750732422,0.476207494735718,0.863284826278687,0.464894741773605,0.865401268005371,0.532771825790405,0.944452524185181,0.521459341049194,0.946569204330444,0.510146141052246,0.95080304145813,0.498832941055298,0.952919721603394,0.656961441040039,0.192864060401917,0.652559041976929,0.20505353808403,0.436712741851807,0.985683619976044,0.452439457178116,0.205053240060806,0.451022326946259,0.962808787822723,0.436710596084595,0.905777633190155,0.487520694732666,0.95080304145813,0.476207494735718,0.946569204330444,0.451021611690521,0.905739009380341,0.448037356138229,
- 0.192864060401917,0.413300931453705,0.80721789598465,0.427610754966736,0.807189166545868,0.430285811424255,0.775589406490326,0.444595873355865,0.775570333003998,0.251447081565857,0.700768828392029,0.464894741773605,0.944452524185181,0.00238469056785107,0.121494144201279,0.430285811424255,0.775589406490326,0.444595873355865,0.775570333003998,0.430285811424255,0.775589406490326,0.444595873355865,0.775570333003998,0.439278841018677,0.99530166387558,0.954580128192902,0.411598563194275,0.954580128192902,0.613326966762543,0.439278841018677,0.99530166387558,0.555933892726898,0.99530166387558,0.919245660305023,0.613326966762543,0.919245660305023,0.411598563194275,0.954580128192902,0.307176768779755,0.919246137142181,0.307176768779755,0.954580128192902,0.105448730289936,0.919246137142181,0.105448730289936,0.44803312420845,0.121494084596634,0.656965613365173,0.121494084596634,0.211316883563995,0.121494144201279,0.954580128192902,0.00102699035778642,0.919245779514313,0.00102699035778642,0.999231994152069,0.411835879087448,0.96389764547348,0.411835879087448,0.999231994152069,0.105685085058212,0.96389764547348,0.105685085058212,0.999231994152069,0.307413786649704,0.96389764547348,0.307413786649704,0.480645209550858,0.786551177501678,0.484385997056961,0.797435939311981,0.491867572069168,0.806918323040009,0.495608597993851,0.817802608013153,0.491868048906326,0.82868617773056,0.48438623547554,0.838169038295746,0.480645209550858,0.84905332326889,0.516472518444061,0.78711074590683,0.5127312541008,0.797995030879974,0.505249917507172,0.807478129863739,0.501509130001068,0.818362414836884,0.505249917507172,0.829246699810028,0.5127312541008,0.838729560375214,0.516472518444061,0.849613904953003,0.469315558671951,0.786551177501678,0.46931603550911,0.849054276943207,0.466442614793777,0.797435462474823,0.460697442293167,0.80691784620285,0.457824736833572,0.817802608013153,0.460697442293167,0.828686416149139,0.466442853212357,0.838169991970062,0.527801930904388,0.787110269069672,0.527801930904388,0.849613904953003,0.530675113201141,0.797995030879974,
- 0.536420524120331,0.807478129863739,0.539292752742767,0.818362414836884,0.536419808864594,0.829246699810028,0.530674636363983,0.838729560375214,0.999231994152069,0.00126275070942938,0.963897526264191,0.00126275070942938,0.9992316365242,0.613565325737,0.963897287845612,0.613565325737,0.532771825790405,0.865401268005371,0.532771825790405,0.944452524185181,0.521459341049194,0.946569204330444,0.521459341049194,0.863284826278687,0.510146141052246,0.95080304145813,0.510146141052246,0.859050750732422,0.498832941055298,0.952919721603394,0.498832941055298,0.856934070587158,0.487520694732666,0.95080304145813,0.487520694732666,0.859050750732422,0.476207494735718,0.946569204330444,0.476207494735718,0.863284826278687,0.464894741773605,0.944452524185181,0.464894741773605,0.865401268005371,0.516472518444061,0.78711074590683,0.527801930904388,0.787110269069672,0.530675113201141,0.797995030879974,0.5127312541008,0.797995030879974,0.536420524120331,0.807478129863739,0.505249917507172,0.807478129863739,0.539292752742767,0.818362414836884,0.501509130001068,0.818362414836884,0.536419808864594,0.829246699810028,0.505249917507172,0.829246699810028,0.530674636363983,0.838729560375214,0.5127312541008,0.838729560375214,0.527801930904388,0.849613904953003,0.516472518444061,0.849613904953003,0.469315558671951,0.786551177501678,0.480645209550858,0.786551177501678,0.484385997056961,0.797435939311981,0.466442614793777,0.797435462474823,0.491867572069168,0.806918323040009,0.460697442293167,0.80691784620285,0.495608597993851,0.817802608013153,0.457824736833572,0.817802608013153,0.491868048906326,0.82868617773056,0.460697442293167,0.828686416149139,0.48438623547554,0.838169038295746,0.466442853212357,0.838169991970062,0.480645209550858,0.84905332326889,0.46931603550911,0.849054276943207
- }
- UVIndex: *568 {
- a: 1,2,3,4,3,5,7,4,5,8,9,7,14,15,16,17,15,18,20,16,43,53,14,17,20,18,62,63,13,36,54,61,13,67,85,91,95,96,98,36,19,21,22,23,21,66,68,22,25,26,28,29,24,27,30,35,28,31,32,29,31,33,34,32,47,48,50,56,99,100,101,102,37,38,39,40,38,41,103,39,103,41,104,121,10,1,49,51,10,52,55,58,55,52,59,60,60,59,236,237,53,43,64,65,65,64,106,108,10,58,2,1,106,139,140,108,67,101,100,85,69,70,19,23,77,86,87,88,73,75,76,78,0,6,11,12,76,75,79,81,81,79,82,83,71,72,74,80,105,107,61,54,86,77,89,109,109,89,110,115,110,116,141,115,37,40,122,187,42,44,45,46,44,135,136,45,135,137,138,136,90,92,93,94,123,90,94,124,125,123,124,126,47,56,57,97,80,235,253,71,149,150,151,152,151,153,155,152,153,156,157,155,111,112,118,120,112,162,163,118,164,165,111,120,163,162,166,167,95,91,113,114,127,128,129,130,128,131,132,129,172,175,178,183,84,173,174,176,172,195,196,175,174,177,179,176,177,180,181,179,198,202,204,205,117,119,161,184,87,142,143,88,142,144,145,143,145,144,146,147,158,149,197,199,158,200,203,206,203,200,207,208,208,207,238,239,165,164,168,169,169,168,170,171,158,206,150,149,170,185,186,171,96,161,119,98,133,134,127,130,221,223,26,25,221,224,227,223,148,154,159,160,227,224,229,230,230,229,231,232,219,220,222,228,209,233,114,113,187,122,188,189,189,188,190,191,190,192,193,191,84,182,240,73,173,84,73,78,243,221,25,244,178,198,205,183,219,228,251,252,194,215,216,201,201,216,217,210,210,217,218,211,211,218,225,212,212,225,226,213,213,226,234,214,269,283,285,270,270,285,286,271,271,286,287,272,272,287,288,273,273,288,289,274,274,289,284,275,276,262,263,278,278,263,264,279,279,264,265,280,280,265,266,281,281,266,267,282,282,267,268,277,251,154,148,252,235,6,0,253,57,24,35,97,241,242,245,246,247,241,246,248,249,247,248,250,254,249,250,255,256,292,293,257,290,258,259,291,258,260,261,259,260,256,257,261,294,295,296,297,297,296,298,299,299,298,300,301,301,300,302,303,303,302,304,305,305,304,306,307,308,309,310,311,311,310,312,313,313,312,314,315,315,314,316,317,317,316,318,319,319,318,320,321,322,323,324,325,325,324,326,327,327,326,328,329,
- 329,328,330,331,331,330,332,333,333,332,334,335
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByPolygon"
- ReferenceInformationType: "Direct"
- Smoothing: *141 {
- a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
- }
- }
- LayerElementMaterial: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "AllSame"
- ReferenceInformationType: "IndexToDirect"
- Materials: *1 {
- a: 0
- }
- }
- Layer: 0 {
- Version: 100
- LayerElement: {
- Type: "LayerElementNormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementMaterial"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementSmoothing"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementUV"
- TypedIndex: 0
- }
- }
- }
- Geometry: 86697104, "Geometry::", "Mesh" {
- Properties70: {
- P: "Color", "ColorRGB", "Color", "",0,0,0
- }
- Vertices: *153 {
- a: 5.5000114440918,7.6575870513916,0,-5.75391721725464,0.709403991699219,-4.71097183227539,-5.75644969940186,-12.7612571716309,32.0256576538086,5.75609397888184,-12.7612457275391,32.0256462097168,5.75395727157593,-5.94838714599609,31.8751029968262,-5.75387859344482,-5.94838714599609,31.8751029968262,5.7556004524231,-11.008602142334,34.1719436645508,5.75447463989258,-7.44818878173828,34.0932693481445,-5.75448703765869,-7.44819641113281,34.0932731628418,-5.75582075119019,-11.0086097717285,34.1719589233398,2.3395824432373,-5.94838714599609,31.8751029968262,-2.33950304985046,-5.94838333129883,31.8751068115234,2.33976578712463,-7.44819259643555,34.0932693481445,-2.33977770805359,-7.44819259643555,34.0932693481445,-2.34038281440735,-11.0086097717285,34.1719551086426,2.34016036987305,-11.008602142334,34.171947479248,-2.33919024467468,-6.05490875244141,20.9186382293701,-5.75647115707397,-5.43608474731445,17.3549728393555,5.75607442855835,-5.43607711791992,17.3549785614014,5.75393915176392,-1.56026077270508,19.2641906738281,-5.75389957427979,-1.56026077270508,19.2641906738281,-2.33975458145142,-1.56040191650391,19.2494773864746,2.33979201316834,-1.56040191650391,19.2494773864746,2.33927202224731,-6.05490875244141,20.9186401367188,-5.75646829605103,-12.8700103759766,20.8405380249023,5.75607681274414,-12.8700065612793,20.8405418395996,5.75394153594971,-6.05456924438477,20.9539756774902,-5.75389671325684,-6.05456924438477,20.9539756774902,-8.88472461700439,-7.01129531860352,-4.76837158203125e-006,5.75391721725464,0.709400177001953,-4.71097087860107,-5.49988460540771,7.6575927734375,-6.67572021484375e-006,8.88457584381104,-7.01129531860352,-1.04904174804688e-005,2.34032154083252,-12.7612533569336,32.0256538391113,-2.34067797660828,-12.7612571716309,32.0256576538086,-2.33926796913147,-12.8703498840332,20.8052082061768,-2.33982992172241,-5.43622207641602,17.3402614593506,2.3398597240448,-5.43621826171875,17.3402614593506,2.33934211730957,-12.8703498840332,20.8052062988281,8.81730556488037,-6.84539413452148,-0.101239204406738,
- -2.40829277038574,7.66194915771484,-0.0143547058105469,-2.29864072799683,4.62325286865234,6.33297348022461,2.2987380027771,4.62325477600098,6.33297348022461,2.40839171409607,7.66195106506348,-0.0143527984619141,2.50204634666443,2.88285827636719,-3.24216556549072,-2.50199437141418,2.88286018371582,-3.24216461181641,-2.40829133987427,15.9753112792969,-0.0143585205078125,-2.35098505020142,15.1976680755615,2.64157962799072,2.35108709335327,15.1976699829102,2.64158153533936,2.40839385986328,15.9753112792969,-0.0143585205078125,2.50205063819885,14.1875782012939,-3.24216508865356,-2.5019896030426,14.1875801086426,-3.24216747283936
- }
- PolygonVertexIndex: *188 {
- a: 31,18,36,35,17,-29,45,46,47,-49,0,38,-30,20,30,28,-18,8,9,14,-14,6,7,12,-16,5,8,13,-12,7,4,10,-13,3,6,15,-33,9,2,33,-15,2,24,34,-34,37,25,3,-33,4,26,23,-11,27,5,11,-17,19,26,25,-19,24,27,20,-18,17,35,34,-25,37,36,18,-26,19,22,23,-27,16,21,20,-28,4,7,6,3,25,-27,2,9,8,5,27,-25,48,49,50,-46,28,1,29,38,-32,22,21,35,-37,10,23,37,-33,16,11,33,-35,21,16,34,-36,23,22,36,-38,11,13,14,-34,12,10,32,-16,30,1,-29,0,19,18,31,-39,30,20,21,40,-40,21,22,41,-41,22,19,0,42,-42,0,29,43,-43,29,1,44,-44,1,30,39,-45,39,40,46,-46,40,41,47,-47,41,42,48,-48,42,43,49,-49,43,44,50,-50,44,39,45,-51
- }
- Edges: *94 {
- a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,33,35,36,37,38,39,41,42,43,45,46,48,49,50,51,53,55,56,57,58,59,60,61,62,64,66,69,73,74,77,78,93,94,95,97,98,100,102,103,105,107,109,111,113,130,133,140,141,142,144,145,149,150,153,154,157,158,162,165,167,169,173,177,181
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Normals: *564 {
- a: 4.44710757108169e-008,-0.909219145774841,-0.416317969560623,2.58501586358761e-007,-0.99590277671814,0.0904304906725883,2.58501586358761e-007,-0.99590277671814,0.0904304906725883,2.58501586358761e-007,-0.995902836322784,0.0904304906725883,2.58501586358761e-007,-0.99590277671814,0.0904304906725883,4.44745893446452e-008,-0.909222424030304,-0.41631081700325,2.74791496224225e-008,0.99321049451828,-0.116331242024899,-3.23627176612717e-007,0.727757394313812,0.68583470582962,-3.23627148191008e-007,0.727757453918457,0.685834646224976,2.74781406517377e-008,0.993210554122925,-0.116329796612263,0.981909334659576,0.187957853078842,-0.0229327920824289,0.982997357845306,0.177996918559074,0.0450910553336143,0.938536465167999,0.21654962003231,-0.268803894519806,-0.991123676300049,0.110461831092834,0.0739734470844269,-0.981881737709045,0.188048273324966,-0.023366117849946,-0.982990562915802,0.183441579341888,0.00886562094092369,-0.995148360729218,0.081681527197361,0.0548443235456944,1.00857654672382e-007,0.478616148233414,0.878024220466614,8.14175280083873e-007,-0.41873824596405,0.908106982707977,8.14291126971511e-007,-0.418614625930786,0.908163964748383,1.00537725700178e-007,0.478743195533752,0.877954959869385,1.37581753278937e-006,-0.418724179267883,0.908113479614258,4.66176857116807e-008,0.478629797697067,0.878016829490662,4.64939162725386e-008,0.478728741407394,0.877962827682495,1.37565484692459e-006,-0.418630361557007,0.908156752586365,-1.08653375718859e-006,0.95754611492157,0.288280010223389,1.00857654672382e-007,0.478616148233414,0.878024220466614,1.00537725700178e-007,0.478743195533752,0.877954959869385,-1.0865470585486e-006,0.957556307315826,0.288246423006058,4.66176857116807e-008,0.478629797697067,0.878016829490662,6.7395426128769e-008,0.957547247409821,0.288276493549347,6.74466420491626e-008,0.957555592060089,0.288248807191849,4.64939162725386e-008,0.478728741407394,0.877962827682495,1.5985884829206e-006,-0.940319061279297,0.340294152498245,1.37581753278937e-006,-0.418724179267883,0.908113479614258,
- 1.37565484692459e-006,-0.418630361557007,0.908156752586365,1.59860996973293e-006,-0.940313279628754,0.340310156345367,8.14175280083873e-007,-0.41873824596405,0.908106982707977,5.00284102145088e-007,-0.940321147441864,0.340288281440735,5.00276144066447e-007,-0.940313160419464,0.340310275554657,8.14291126971511e-007,-0.418614625930786,0.908163964748383,5.00284102145088e-007,-0.940321147441864,0.340288281440735,-0.00394238950684667,-0.847836792469025,-0.530242502689362,-0.00397934997454286,-0.844639360904694,-0.535321116447449,5.00276144066447e-007,-0.940313160419464,0.340310275554657,0.00398201635107398,-0.844642579555511,-0.535315811634064,0.00394507823511958,-0.847837686538696,-0.530241191387177,1.5985884829206e-006,-0.940319061279297,0.340294152498245,1.59860996973293e-006,-0.940313279628754,0.340310156345367,6.7395426128769e-008,0.957547247409821,0.288276493549347,5.91617947520717e-007,0.999952733516693,-0.00972198694944382,5.91618004364136e-007,0.999952793121338,-0.00972198788076639,6.74466420491626e-008,0.957555592060089,0.288248807191849,-1.14892100100406e-006,0.999952673912048,-0.00972215924412012,-1.08653375718859e-006,0.95754611492157,0.288280010223389,-1.0865470585486e-006,0.957556307315826,0.288246423006058,-1.14892111469089e-006,0.999952793121338,-0.00972215924412012,0.991193056106567,0.110595740377903,0.0728347525000572,0.999999940395355,0.000291181000648066,0.000403401500079781,1,0.000305500696413219,0.000140330230351537,0.995189428329468,0.0817648619413376,0.05396793410182,-1,0.000367543805623427,0.000172826199559495,-0.99999988079071,0.000350344431353733,0.000488451041746885,-0.991123676300049,0.110461831092834,0.0739734470844269,-0.995148360729218,0.081681527197361,0.0548443235456944,-0.00666291266679764,-0.423480898141861,-0.905880510807037,-0.00666291266679764,-0.423480868339539,-0.905880510807037,-0.00397934997454286,-0.844639360904694,-0.535321116447449,-0.00394238950684667,-0.847836792469025,-0.530242502689362,0.00398201635107398,-0.844642579555511,-0.535315811634064,0.00666577974334359,-0.42348051071167,-0.905880749225616,
- 0.0066657792776823,-0.42348051071167,-0.905880689620972,0.00394507823511958,-0.847837686538696,-0.530241191387177,-0.0044444901868701,0.67338353395462,0.739280045032501,-0.00292389816604555,0.767535150051117,0.641000270843506,-0.00688986293971539,0.350031852722168,0.936712503433228,-0.0068898624740541,0.350031852722168,0.936712443828583,0.00689009018242359,0.350031703710556,0.936712443828583,0.00292409467510879,0.767534494400024,0.641001045703888,0.00444498751312494,0.673383235931396,0.73928028345108,0.00689009018242359,0.350031733512878,0.936712503433228,1,0.000313522235956043,-7.03628984410898e-006,1,0.000313522235956043,-7.03629075360368e-006,0.999999940395355,0.000313522235956043,-7.03628984410898e-006,1,0.000313522235956043,-7.03628984410898e-006,1,0.000305500696413219,0.000140330230351537,0.999999940395355,0.000291181000648066,0.000403401500079781,-0.999999940395355,0.000377178512280807,-3.98013116864604e-006,-1,0.000377178541384637,-3.98013162339339e-006,-0.99999988079071,0.000377178483176976,-3.98013116864604e-006,-0.999999940395355,0.000377178483176976,-3.98013116864604e-006,-0.99999988079071,0.000350344431353733,0.000488451041746885,-1,0.000367543805623427,0.000172826199559495,2.74781406517377e-008,0.993210554122925,-0.116329796612263,2.89497421590568e-007,0.874788641929626,-0.484504669904709,2.89497450012277e-007,0.874788641929626,-0.484504729509354,2.74791496224225e-008,0.99321049451828,-0.116331242024899,4.44745893446452e-008,-0.909222424030304,-0.41631081700325,-2.10690288326987e-007,-0.520867049694061,-0.853637933731079,-2.10690245694423e-007,-0.520866990089417,-0.853637754917145,-2.10690274116132e-007,-0.520867049694061,-0.853637933731079,4.44710757108169e-008,-0.909219145774841,-0.416317969560623,1.76881684410546e-007,-0.441892832517624,0.897067904472351,1.76881684410546e-007,-0.441892832517624,0.897067844867706,1.76881684410546e-007,-0.441892802715302,0.897067844867706,1.76881698621401e-007,-0.441892832517624,0.897067904472351,-1,-7.7951030107215e-005,4.09350395784713e-005,-1,-1.04934470073204e-005,-8.07480464573018e-005,
- -1,-4.17995288444217e-005,8.87675560079515e-006,-1,-7.75585795054212e-005,4.13079469581135e-005,1,-2.15647105505923e-005,-8.25632669148035e-005,1,-0.00012170282570878,5.09969067934435e-005,1,-0.00012107447400922,5.15745559823699e-005,1,-6.66302512399852e-005,2.09754107345361e-005,1,1.88848571269773e-005,-0.000175496694282629,1,-2.15647105505923e-005,-8.25632669148035e-005,1,-6.66302512399852e-005,2.09754107345361e-005,1,1.88848553079879e-005,-0.000175496694282629,-1,-1.04934470073204e-005,-8.07480464573018e-005,-0.999999940395355,1.76060439116554e-005,-0.000161192860105075,-1,1.76060475496342e-005,-0.00016119287465699,-1,-4.17995288444217e-005,8.87675560079515e-006,1,-0.00012170282570878,5.09969067934435e-005,1,-0.000171482024597935,5.23620974490768e-006,1,-0.000171482024597935,5.23620974490768e-006,1,-0.00012107447400922,5.15745559823699e-005,-0.999999940395355,-0.000109036707726773,1.13971454993589e-005,-1,-7.7951030107215e-005,4.09350395784713e-005,-1,-7.75585795054212e-005,4.13079469581135e-005,-1,-0.000109036707726773,1.13971464088536e-005,-0.981881737709045,0.188048273324966,-0.023366117849946,-0.938532829284668,0.216566041111946,-0.26880344748497,-0.982990562915802,0.183441579341888,0.00886562094092369,0.981909334659576,0.187957853078842,-0.0229327920824289,0.991193056106567,0.110595740377903,0.0728347525000572,0.995189428329468,0.0817648619413376,0.05396793410182,0.979672253131866,0.167647048830986,0.110167257487774,0.982997357845306,0.177996918559074,0.0450910553336143,0.00132380367722362,0.902004957199097,0.431723564863205,0.00444498751312494,0.673383235931396,0.73928028345108,0.00292409467510879,0.767534494400024,0.641001045703888,0.000698961492162198,0.804160416126251,0.594411849975586,0.00132380367722362,0.902005076408386,0.431723594665527,0.00292409467510879,0.767534494400024,0.641001045703888,-0.00292389816604555,0.767535150051117,0.641000270843506,-0.000698878196999431,0.804160177707672,0.594412207603455,0.000698961492162198,0.804160416126251,0.594411849975586,-0.00292389816604555,0.767535150051117,0.641000270843506,
- -0.0044444901868701,0.67338353395462,0.739280045032501,-0.00132311077322811,0.902004957199097,0.431723594665527,-0.00132311077322811,0.902005076408386,0.431723594665527,-0.000698878196999431,0.804160177707672,0.594412207603455,0.0026144296862185,0.5606330037117,-0.828060269355774,0.00146254617720842,0.560321092605591,-0.828274190425873,0.00125286937691271,0.56026417016983,-0.828312933444977,0.00261442922055721,0.5606330037117,-0.828060269355774,0.00146254617720842,0.560321092605591,-0.828274190425873,-0.0014613086823374,0.560320913791656,-0.828274369239807,-0.00125175062566996,0.560264050960541,-0.828313112258911,0.00125286937691271,0.56026417016983,-0.828312933444977,-0.0014613086823374,0.560320913791656,-0.828274369239807,-0.00261251977644861,0.560632586479187,-0.828060448169708,-0.00261252000927925,0.560632586479187,-0.828060567378998,-0.00125175062566996,0.560264050960541,-0.828313112258911,-0.999698221683502,0.000411124463425949,0.0245614536106586,-0.999820351600647,0.000929871632251889,0.0189350247383118,-0.999820291996002,0.000929871632251889,0.0189350228756666,-0.999723613262177,0.000508760975208133,0.023502541705966,0.000698961492162198,0.804160416126251,0.594411849975586,-0.000698878196999431,0.804160177707672,0.594412207603455,-3.23627148191008e-007,0.727757453918457,0.685834646224976,-3.23627176612717e-007,0.727757394313812,0.68583470582962,0.999820232391357,0.000929440720938146,0.0189350731670856,0.999698400497437,0.000410573615226895,0.024554206058383,0.999723792076111,0.000508232857100666,0.0234966650605202,0.999820291996002,0.000929440779145807,0.0189350750297308,0.999698400497437,0.000410573615226895,0.024554206058383,0.999579310417175,-3.20250990171189e-007,0.0290033705532551,0.999579250812531,-3.2025096174948e-007,0.0290033705532551,0.999723792076111,0.000508232857100666,0.0234966650605202,1.4293560468559e-007,-1.0545096529313e-007,-1,1.4293560468559e-007,-1.0545096529313e-007,-1,1.4293560468559e-007,-1.0545096529313e-007,-1,1.4293560468559e-007,-1.0545096529313e-007,-1,-0.999579012393951,3.25778501064633e-007,0.0290164034813643,
- -0.999698221683502,0.000411124463425949,0.0245614536106586,-0.999723613262177,0.000508760975208133,0.023502541705966,-0.999578952789307,3.25778472642924e-007,0.029016399756074
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "UVChannel_1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *232 {
- a: 0.718026459217072,0.77487576007843,0.620723366737366,0.757407307624817,0.596680104732513,0.738339424133301,0.596680581569672,0.712196469306946,0.620804965496063,0.738332629203796,0.620804965496063,0.712202906608582,0.739280164241791,0.83125376701355,0.719395160675049,0.831258416175842,0.739281117916107,0.812187194824219,0.71939605474472,0.812187790870667,0.739280581474304,0.782818078994751,0.838054597377777,0.951547503471375,0.739281535148621,0.801884651184082,0.754231631755829,0.83125102519989,0.754231631755829,0.812186241149902,0.897790968418121,0.951700747013092,0.754231989383698,0.782820224761963,0.754231989383698,0.801884889602661,0.719395577907562,0.782814621925354,0.719396471977234,0.80188524723053,0.703923761844635,0.782812595367432,0.70392382144928,0.80188512802124,0.703923344612122,0.831261396408081,0.703923344612122,0.812188863754272,0.815214335918427,0.782819628715515,0.815412402153015,0.801885843276978,0.815214157104492,0.831251382827759,0.815411984920502,0.812184929847717,0.477487474679947,0.694524645805359,0.596754252910614,0.693118572235107,0.62241119146347,0.921994090080261,0.706267833709717,0.870061635971069,0.706582188606262,0.846180737018585,0.516720473766327,0.712422013282776,0.477449089288712,0.711787581443787,0.741542220115662,0.899407804012299,0.725823402404785,0.864745438098907,0.797700226306915,0.871967494487762,0.804308772087097,0.857978463172913,0.795360147953033,0.84022045135498,0.780576944351196,0.837988197803497,0.620723247528076,0.693125605583191,0.516720473766327,0.738112807273865,0.744551301002502,0.936707198619843,0.744992017745972,0.912827551364899,0.828948795795441,0.861124336719513,0.725418031215668,0.91799008846283,0.70999151468277,0.883196711540222,0.67041951417923,0.944260239601135,0.655656754970551,0.941896498203278,0.646866798400879,0.924059629440308,0.653600335121155,0.910129368305206,0.596754014492035,0.75741708278656,0.477487474679947,0.756010413169861,0.477449089288712,0.738747954368591,0.430597931146622,0.757376313209534,0.445260912179947,0.739231944084167,
- 0.430597931146622,0.69315779209137,0.898675858974457,0.988852143287659,0.445260912179947,0.711302757263184,0.641465961933136,0.831261038780212,0.837500035762787,0.988695561885834,0.897790968418121,0.951700747013092,0.838054597377777,0.951547503471375,0.837500035762787,0.988695561885834,0.898675858974457,0.988852143287659,0.906716048717499,0.927132546901703,0.917275965213776,0.948188126087189,0.906716048717499,0.927132546901703,0.917275965213776,0.948188126087189,0.82602071762085,0.959810853004456,0.825730443000793,0.979224443435669,0.82602071762085,0.959810853004456,0.825730443000793,0.979224443435669,0.64126980304718,0.812180638313293,0.641270160675049,0.801890969276428,0.829830408096313,0.861753284931183,0.641466617584229,0.78281307220459,0.736806809902191,0.958201229572296,0.751931846141815,0.958514451980591,0.75193178653717,0.984212756156921,0.736806809902191,0.984525918960571,0.716640710830688,0.985037744045258,0.716640710830688,0.957689106464386,0.593630135059357,0.967060565948486,0.576833307743073,0.932457089424133,0.813144505023956,0.983926892280579,0.593630373477936,0.967059254646301,0.567607462406158,0.984849274158478,0.65485680103302,0.957688987255096,0.587353765964508,0.845670938491821,0.578437149524689,0.891691327095032,0.872810304164886,0.891484797000885,0.863814532756805,0.937489688396454,0.595621585845947,0.83153247833252,0.595474302768707,0.812455534934998,0.595474541187286,0.801614880561829,0.595622301101685,0.782540321350098,0.842023074626923,0.782634735107422,0.842182636260986,0.801697611808777,0.842182099819183,0.81237268447876,0.842023015022278,0.831435561180115,0.718025743961334,0.675657987594604,0.768527030944824,0.693138957023621,0.768527567386627,0.757394671440125,0.719111800193787,0.774500250816345,0.813144564628601,0.958800733089447,0.576834440231323,0.932455122470856,0.65485680103302,0.985037624835968,0.567607700824738,0.984851658344269,0.639064133167267,0.966812372207642,0.634734570980072,0.952316701412201,0.63473516702652,0.952316701412201,0.639064133167267,0.966812372207642,0.629389941692352,
- 0.984513282775879,0.629390180110931,0.984513521194458
- }
- UVIndex: *188 {
- a: 0,1,4,5,41,102,78,79,80,81,93,76,92,32,90,30,31,6,7,9,8,18,10,12,19,13,6,8,14,10,16,17,12,20,18,19,21,7,22,23,9,22,60,74,23,75,77,20,21,16,24,25,17,26,13,14,27,43,46,47,44,35,36,32,31,94,95,74,60,75,96,97,77,98,99,25,24,27,100,101,26,48,49,50,51,47,46,37,38,39,40,36,35,81,82,83,78,102,103,104,105,0,2,3,5,4,11,15,58,61,62,63,64,65,66,62,65,67,15,68,69,58,63,70,71,64,72,11,61,73,90,91,30,93,43,44,45,76,28,29,3,33,34,3,2,42,33,2,52,53,54,42,53,55,56,54,55,57,59,56,57,28,34,59,84,85,111,110,106,86,80,79,107,87,113,112,87,88,114,113,108,89,83,82,109,84,110,115
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByPolygon"
- ReferenceInformationType: "Direct"
- Smoothing: *45 {
- a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
- }
- }
- LayerElementMaterial: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "AllSame"
- ReferenceInformationType: "IndexToDirect"
- Materials: *1 {
- a: 0
- }
- }
- Layer: 0 {
- Version: 100
- LayerElement: {
- Type: "LayerElementNormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementMaterial"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementSmoothing"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementUV"
- TypedIndex: 0
- }
- }
- }
- Geometry: 86435536, "Geometry::", "Mesh" {
- Properties70: {
- P: "Color", "ColorRGB", "Color", "",0,0,0
- }
- Vertices: *78 {
- a: 2.19355082511902,-3.46841621398926,1.41854381561279,-2.1934597492218,-3.46842384338379,1.41855144500732,2.1944055557251,3.34444046020508,1.26800346374512,-2.19440031051636,3.34444046020508,1.26800346374512,-5.79921913146973,3.49526977539063,-13.3516530990601,5.79886341094971,3.49526977539063,-13.3516492843628,5.71111631393433,-3.55295944213867,-10.0958890914917,-5.87265682220459,9.94716644287109,-35.5147666931152,5.87142896652222,9.94712829589844,-35.5146369934082,1.18374192714691,0.320854187011719,-45.6312294006348,-1.18253231048584,0.320827484130859,-45.6311187744141,1.35103595256805,4.6059684753418,-52.0008010864258,-1.35107696056366,4.60597229003906,-52.0008201599121,2.19440460205078,-3.55268478393555,-10.0947523117065,-2.19440126419067,-3.55268478393555,-10.0947523117065,2.19525980949402,3.4949836730957,-13.3527822494507,-2.19534111022949,3.49499893188477,-13.3527956008911,2.19375205039978,-1.8631420135498,3.63425731658936,2.19420409202576,1.73915863037109,3.55465221405029,-2.19417858123779,1.73915863037109,3.55465221405029,-2.19368124008179,-1.8631420135498,3.63425731658936,-8.89849472045898,2.05113983154297,-30.593433380127,8.89828205108643,2.05117034912109,-30.5935478210449,-9.30727291107178,-4.64540481567383,-30.6022491455078,9.304762840271,-4.64543914794922,-30.6021308898926,-5.71118211746216,-3.55296325683594,-10.0958852767944
- }
- PolygonVertexIndex: *90 {
- a: 11,12,7,-9,18,19,20,-18,16,3,2,-16,0,1,14,-14,7,12,-11,9,10,12,-12,17,0,13,15,2,-19,19,3,16,14,1,-21,14,16,4,-26,15,13,6,-6,2,3,19,-19,1,0,17,-21,9,11,-9,10,23,21,-8,23,24,6,13,14,-26,5,6,24,-23,22,24,9,-9,10,9,24,-24,8,7,21,-23,21,23,25,-5,22,21,4,16,15,-6
- }
- Edges: *45 {
- a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,17,18,19,22,23,25,27,29,31,33,36,37,38,40,41,42,53,54,55,56,58,59,63,66,67,69,71,78,83
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Normals: *270 {
- a: 5.93501590628875e-006,0.951318740844727,-0.308208674192429,5.93501590628875e-006,0.951318800449371,-0.308208674192429,5.9350154515414e-006,0.951318740844727,-0.308208644390106,5.93501590628875e-006,0.951318860054016,-0.308208703994751,0,0.0220930092036724,0.999755918979645,0,0.0220930092036724,0.999755918979645,0,0.0220930092036724,0.999755918979645,0,0.0220930092036724,0.999755918979645,-3.25644009535608e-007,0.998633801937103,-0.0522555969655514,9.01636610706191e-007,0.951974272727966,0.306178033351898,9.01632802197128e-007,0.951973915100098,0.306179255247116,-3.25638751519364e-007,0.998633742332459,-0.0522554330527782,1.09704171791236e-006,-0.950128436088562,0.311858773231506,1.09704194528604e-006,-0.950128376483917,0.311859160661697,-5.19481034189084e-007,-0.99928092956543,0.037917498499155,-5.19457557857095e-007,-0.99928092956543,0.0379169918596745,-0.915535926818848,-0.0233727525919676,-0.401556611061096,-0.943988382816315,-0.284816920757294,-0.166629120707512,-0.945601105690002,-0.166950970888138,-0.279223829507828,-2.9301343147381e-006,-0.905348062515259,-0.424670368432999,-2.92998902295949e-006,-0.905350744724274,-0.424664556980133,-6.33586159892729e-006,-0.82971602678299,-0.558185815811157,-6.33586159892729e-006,-0.82971602678299,-0.558185756206512,1,-0.000109438326035161,5.76263264520094e-005,1,-0.000109438318759203,5.76263264520094e-005,1,-0.000109438318759203,5.76263264520094e-005,1,-0.000109438326035161,5.76263264520094e-005,1,-0.000109438333311118,5.76263264520094e-005,1,-0.000109438326035161,5.76263264520094e-005,-1,-0.000120324366434943,6.35063406662084e-005,-1,-0.000120324366434943,6.35063406662084e-005,-1,-0.000120324373710901,6.35063406662084e-005,-1,-0.000120324373710901,6.35063406662084e-005,-1,-0.000120324366434943,6.35063406662084e-005,-1,-0.000120324366434943,6.35063406662084e-005,7.59000045036373e-007,0.419482976198196,0.907763183116913,7.59000045036373e-007,0.419482976198196,0.907763183116913,7.59000101879792e-007,0.419483006000519,0.907763242721558,7.59000101879792e-007,0.419483006000519,0.907763123512268,
- -1.89759475688334e-007,0.419482380151749,0.907763481140137,-1.89759461477479e-007,0.419482380151749,0.907763481140137,-1.89759489899188e-007,0.419482409954071,0.907763481140137,-1.89759461477479e-007,0.419482380151749,0.907763421535492,9.01632802197128e-007,0.951973915100098,0.306179255247116,9.01636610706191e-007,0.951974272727966,0.306178033351898,0,0.818452954292297,0.574573516845703,0,0.818452954292297,0.574573516845703,1.09704194528604e-006,-0.950128376483917,0.311859160661697,1.09704171791236e-006,-0.950128436088562,0.311858773231506,1.21404855235596e-006,-0.809803426265717,0.586701214313507,1.21404855235596e-006,-0.809803485870361,0.586701214313507,0.945631086826324,-0.166806280612946,-0.279208689928055,0.944055140018463,-0.28458034992218,-0.16665555536747,0.915561258792877,-0.0233527943491936,-0.401499927043915,-0.945601105690002,-0.166950970888138,-0.279223829507828,-0.990393936634064,0.0619309470057487,-0.123630680143833,-0.973194420337677,0.0602872632443905,-0.221941411495209,-0.915535926818848,-0.0233727525919676,-0.401556611061096,-7.96416486537055e-007,-0.993929862976074,-0.110016219317913,-7.96398637703533e-007,-0.993929028511047,-0.110022887587547,-1.21686173315538e-006,-0.998583674430847,0.0532044656574726,-5.19457557857095e-007,-0.99928092956543,0.0379169918596745,-5.19481034189084e-007,-0.99928092956543,0.037917498499155,-1.21686150578171e-006,-0.998583614826202,0.053204458206892,0.983405351638794,0.0629978999495506,0.17013281583786,0.983405351638794,0.0629978999495506,0.170132830739021,0.990401387214661,0.0618207827210426,-0.123625583946705,0.973206758499146,0.0601941086351871,-0.221912324428558,0.973206758499146,0.0601941086351871,-0.221912324428558,0.990401387214661,0.0618207827210426,-0.123625583946705,0.945631086826324,-0.166806280612946,-0.279208689928055,0.915561258792877,-0.0233527943491936,-0.401499927043915,-2.92998902295949e-006,-0.905350744724274,-0.424664556980133,-2.9301343147381e-006,-0.905348062515259,-0.424670368432999,-7.96398637703533e-007,-0.993929028511047,-0.110022887587547,
- -7.96416486537055e-007,-0.993929862976074,-0.110016219317913,-3.01873456010071e-007,0.528933107852936,0.848663449287415,-3.01873484431781e-007,0.528933167457581,0.848663508892059,-3.01873484431781e-007,0.528933167457581,0.848663508892059,-3.01873484431781e-007,0.528933107852936,0.848663449287415,-0.973194420337677,0.0602872632443905,-0.221941411495209,-0.990393936634064,0.0619309470057487,-0.123630680143833,-0.983387589454651,0.0631496086716652,0.170179396867752,-0.983387529850006,0.0631496012210846,0.170179381966591,-1.34919184802129e-006,0.996511220932007,-0.0834584534168243,-1.34919184802129e-006,0.996511161327362,-0.0834584534168243,-1.34919196170813e-006,0.996511280536652,-0.0834584608674049,-3.25644009535608e-007,0.998633801937103,-0.0522555969655514,-3.25638751519364e-007,0.998633742332459,-0.0522554330527782,-1.34919196170813e-006,0.996511280536652,-0.0834584608674049
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "UVChannel_1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *120 {
- a: 0.900907397270203,0.51922208070755,0.900910019874573,0.538964569568634,0.900911092758179,0.554273664951324,0.968482136726379,0.643178880214691,0.928401708602905,0.644879758358002,0.968482136726379,0.643178880214691,0.928401708602905,0.644879758358002,0.912504732608795,0.863914310932159,0.931023716926575,0.960283517837524,0.959636151790619,0.929436683654785,0.810051441192627,0.647458672523499,0.809129953384399,0.689522385597229,0.967708349227905,0.625024497509003,0.927610993385315,0.626275658607483,0.927610993385315,0.626275658607483,0.967708349227905,0.625024497509003,0.876864552497864,0.538964569568634,0.876863718032837,0.554273664951324,0.876867055892944,0.51922208070755,0.876858592033386,0.634389698505402,0.912504732608795,0.863914310932159,0.867547750473022,0.560738444328308,0.995323896408081,0.696268200874329,0.993189573287964,0.710242807865143,0.976453185081482,0.718396544456482,0.96367084980011,0.711688816547394,0.96367084980011,0.711688816547394,0.976453185081482,0.718396544456482,0.993189573287964,0.710242807865143,0.995323896408081,0.696268200874329,0.896290719509125,0.875123560428619,0.881484925746918,0.875123560428619,0.856709659099579,0.780168116092682,0.921059310436249,0.780168116092682,0.9009108543396,0.441142708063126,0.900906324386597,0.504229485988617,0.876868486404419,0.504229485988617,0.876863241195679,0.441142708063126,0.95849609375,0.836354374885559,0.765566110610962,0.560722947120667,0.785273790359497,0.448206067085266,0.804542541503906,0.44820249080658,0.828590154647827,0.448206067085266,0.847859382629395,0.448215126991272,0.937644243240356,0.729188024997711,0.840129971504211,0.729188024997711,0.955485343933105,0.740087985992432,0.958487033843994,0.836354076862335,0.955477714538574,0.740089356899261,0.823935508728027,0.689524054527283,0.931023716926575,0.960283517837524,0.90091609954834,0.634389698505402,0.920661449432373,0.634383499622345,0.857111811637878,0.634383499622345,0.823017358779907,0.647459626197815,0.959636151790619,0.929436683654785,0.995174646377563,0.838666796684265,
- 0.995174646377563,0.838666796684265,0.995033740997314,0.724431157112122,0.995033740997314,0.724431157112122
- }
- UVIndex: *90 {
- a: 30,31,32,33,1,16,18,0,19,17,2,51,35,36,37,34,7,8,9,10,54,49,11,28,29,5,4,26,27,24,25,6,3,22,23,3,6,13,15,4,5,12,14,2,17,16,1,36,35,0,18,55,50,20,9,56,38,7,21,39,40,41,42,43,46,58,57,47,47,57,55,20,54,10,39,21,33,32,45,44,38,56,59,48,44,45,53,19,51,52
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByPolygon"
- ReferenceInformationType: "Direct"
- Smoothing: *21 {
- a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
- }
- }
- LayerElementMaterial: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "AllSame"
- ReferenceInformationType: "IndexToDirect"
- Materials: *1 {
- a: 0
- }
- }
- Layer: 0 {
- Version: 100
- LayerElement: {
- Type: "LayerElementNormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementMaterial"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementSmoothing"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementUV"
- TypedIndex: 0
- }
- }
- }
- Geometry: 86717200, "Geometry::", "Mesh" {
- Properties70: {
- P: "Color", "ColorRGB", "Color", "",0,0,0
- }
- Vertices: *168 {
- a: 17.2972240447998,-29.9597110748291,34.0730781555176,29.9596920013428,-17.2972621917725,34.0730781555176,29.9597187042236,17.2972145080566,34.0730781555176,17.297269821167,29.9596843719482,34.0730781555176,15.2430515289307,-26.4017734527588,38.4763946533203,26.4017581939697,-15.2430839538574,38.4763946533203,26.4017791748047,15.2430438995361,38.4763946533203,15.2430934906006,26.4017505645752,38.4763946533203,-17.2972240447998,-29.9597110748291,34.0730781555176,-29.9596920013428,-17.2972621917725,34.0730781555176,-29.9597187042236,17.2972145080566,34.0730781555176,-17.297269821167,29.9596843719482,34.0730781555176,-15.2430515289307,-26.4017734527588,38.4763946533203,-26.4017581939697,-15.2430839538574,38.4763946533203,-26.4017791748047,15.2430438995361,38.4763946533203,-15.2430934906006,26.4017505645752,38.4763946533203,17.2957344055176,-29.9571304321289,8.05157279968262,29.9571094512939,-17.2957725524902,8.05157279968262,17.2957801818848,29.957103729248,8.05157279968262,-17.2957344055176,-29.9571304321289,8.05157279968262,-29.9571361541748,17.2957248687744,8.05157279968262,-17.2957801818848,29.957103729248,8.05157279968262,16.5668411254883,-28.6946487426758,6.47703075408936,28.6946258544922,-16.5668792724609,6.47703075408936,28.694652557373,16.5668296813965,6.47703075408936,16.5668849945068,28.6946220397949,6.47703075408936,-16.5668411254883,-28.6946487426758,6.47703075408936,-28.6946258544922,-16.5668792724609,6.47703075408936,-28.694652557373,16.5668296813965,6.47703075408936,-16.5668849945068,28.6946220397949,6.47703075408936,-11.3108310699463,-16.9085426330566,37.387393951416,11.3108310699463,-16.9085426330566,37.387393951416,16.9085292816162,-11.3108520507813,37.387393951416,16.9085445404053,11.310827255249,37.387393951416,11.310863494873,16.908519744873,37.387393951416,-11.310863494873,16.908519744873,37.387393951416,-16.9085445404053,11.310827255249,37.387393951416,-16.9085292816162,-11.3108520507813,37.387393951416,-12.1057062149048,-18.827543258667,38.4763946533203,12.1057062149048,-18.827543258667,38.4763946533203,
- 18.8275451660156,12.1057014465332,38.4763946533203,12.1057405471802,18.8275203704834,38.4763946533203,-12.1057405471802,18.8275203704834,38.4763946533203,-18.8275279998779,-12.1057291030884,38.4763946533203,14.9895296096802,-10.5159749984741,38.4763946533203,14.9895439147949,10.5159530639648,38.4763946533203,10.5159864425659,14.989520072937,38.4763946533203,-10.5159864425659,14.989520072937,38.4763946533203,-14.9895439147949,10.5159530639648,38.4763946533203,-14.9895296096802,-10.5159749984741,38.4763946533203,-10.5159559249878,-14.9895429611206,38.4763946533203,10.5159559249878,-14.9895429611206,38.4763946533203,29.9571361541748,17.2957248687744,8.05157279968262,-29.9571094512939,-17.2957725524902,8.05157279968262,18.8275279998779,-12.1057291030884,38.4763946533203,-18.8275451660156,12.1057014465332,38.4763946533203
- }
- PolygonVertexIndex: *200 {
- a: 17,1,0,-17,18,3,2,-53,4,12,8,-1,0,1,5,-5,2,3,7,-7,3,11,15,-8,53,19,8,-10,21,20,10,-12,8,12,13,-10,10,14,15,-12,16,19,26,-23,17,16,22,-24,52,17,23,-25,18,52,24,-26,21,18,25,-30,19,53,27,-27,53,20,28,-28,20,21,29,-29,51,44,45,46,47,48,49,-51,15,14,55,-43,4,5,54,-40,51,31,32,-45,44,32,33,-46,45,33,34,-47,46,34,35,-48,47,35,36,-49,48,36,37,-50,49,37,30,-51,50,30,31,-52,39,31,30,-39,54,32,31,-40,40,33,32,-55,41,34,33,-41,42,35,34,-42,55,36,35,-43,43,37,36,-56,38,30,37,-44,6,40,54,-6,13,43,55,-15,10,20,53,-10,0,8,19,-17,11,3,18,-22,14,10,9,-14,39,38,12,-5,38,43,13,-13,42,41,7,-16,41,40,6,-8,1,17,52,-3,5,1,2,-7
- }
- Edges: *104 {
- a: 0,1,2,3,4,5,6,7,8,9,10,11,13,14,17,18,19,20,21,22,24,25,26,27,28,29,30,31,33,34,36,37,40,41,42,43,46,47,48,50,51,54,55,56,58,59,61,62,64,65,66,70,72,73,74,75,76,77,78,79,81,82,83,85,86,87,88,89,90,93,94,97,98,101,102,105,106,109,110,113,114,117,120,122,123,124,128,131,132,135,136,139,140,144,147,151,152,155,156,159,163,177,185,195
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Normals: *600 {
- a: 0.923880636692047,-0.382680743932724,-0.000113585563667584,0.923877835273743,-0.382687449455261,-0.000113585658255033,0.382686465978622,-0.923878252506256,-0.000113545997010078,0.38267970085144,-0.923881053924561,-0.000113545887870714,0.382680475711823,0.923880815505981,-0.00011354593152646,0.382687211036682,0.923877954483032,-0.000113546026113909,0.923878371715546,0.382686018943787,-0.000113585643703118,0.923881232738495,0.382679313421249,-0.000113585556391627,0.170372173190117,-0.447276502847672,0.878018736839294,-0.170372173190117,-0.447276502847672,0.878018736839294,-0.292463034391403,-0.672519505023956,0.679840385913849,0.292463034391403,-0.672519505023956,0.679840385913849,0.292463034391403,-0.672519505023956,0.679840385913849,0.672519147396088,-0.29246386885643,0.679840385913849,0.447276443243027,-0.170372650027275,0.878018796443939,0.170372173190117,-0.447276502847672,0.878018736839294,0.672519683837891,0.292462736368179,0.679840266704559,0.292463630437851,0.672519385814667,0.679840266704559,0.170372545719147,0.447276681661606,0.878018736839294,0.447276651859283,0.170372024178505,0.878018736839294,0.292463630437851,0.672519385814667,0.679840266704559,-0.292463630437851,0.672519385814667,0.679840266704559,-0.170372545719147,0.447276681661606,0.878018736839294,0.170372545719147,0.447276681661606,0.878018736839294,-0.923880636692047,-0.382680714130402,-0.000113585563667584,-0.382679730653763,-0.923881053924561,-0.000113545887870714,-0.382686495780945,-0.923878252506256,-0.000113546011561994,-0.923877835273743,-0.382687449455261,-0.000113585680082906,-0.382680535316467,0.923880815505981,-0.00011354593152646,-0.923881232738495,0.382679283618927,-0.000113585556391627,-0.923878371715546,0.382685989141464,-0.000113585643703118,-0.382687270641327,0.923877894878387,-0.000113546026113909,-0.292463034391403,-0.672519505023956,0.679840385913849,-0.170372173190117,-0.447276502847672,0.878018736839294,-0.447276443243027,-0.170372650027275,0.878018796443939,-0.672519147396088,-0.29246386885643,0.679840385913849,
- -0.672519683837891,0.292462736368179,0.679840266704559,-0.447276711463928,0.170372024178505,0.87801867723465,-0.170372545719147,0.447276681661606,0.878018736839294,-0.292463630437851,0.672519385814667,0.679840266704559,0.293463885784149,-0.674928843975067,-0.677015483379364,-0.293463885784149,-0.674928843975067,-0.677015483379364,-0.262842923402786,-0.689711809158325,-0.674693405628204,0.262842923402786,-0.689711809158325,-0.674693405628204,0.674928426742554,-0.29346439242363,-0.677015781402588,0.293463885784149,-0.674928843975067,-0.677015483379364,0.262842923402786,-0.689711809158325,-0.674693405628204,0.689711213111877,-0.262843757867813,-0.674693763256073,0.674928545951843,0.293463528156281,-0.677016019821167,0.674928426742554,-0.29346439242363,-0.677015781402588,0.689711213111877,-0.262843757867813,-0.674693763256073,0.689711689949036,0.262842267751694,-0.674693882465363,0.293464362621307,0.674928367137909,-0.677015841007233,0.674928545951843,0.293463528156281,-0.677016019821167,0.689711689949036,0.262842267751694,-0.674693882465363,0.262843251228333,0.689711451530457,-0.674693763256073,-0.293464362621307,0.674928367137909,-0.677015841007233,0.293464362621307,0.674928367137909,-0.677015841007233,0.262843251228333,0.689711451530457,-0.674693763256073,-0.262843251228333,0.689711451530457,-0.674693763256073,-0.293463885784149,-0.674928843975067,-0.677015483379364,-0.674928367137909,-0.293464362621307,-0.677015781402588,-0.689711213111877,-0.262843757867813,-0.674693822860718,-0.262842923402786,-0.689711809158325,-0.674693405628204,-0.674928367137909,-0.293464362621307,-0.677015781402588,-0.674928545951843,0.293463528156281,-0.677016019821167,-0.689711630344391,0.262842237949371,-0.674693882465363,-0.689711213111877,-0.262843757867813,-0.674693822860718,-0.674928545951843,0.293463528156281,-0.677016019821167,-0.293464362621307,0.674928367137909,-0.677015841007233,-0.262843251228333,0.689711451530457,-0.674693763256073,-0.689711630344391,0.262842237949371,-0.674693882465363,0.112370640039444,-0.271287024021149,0.955916464328766,
- 0.271286875009537,-0.112370930612087,0.955916464328766,0.271287053823471,0.112370483577251,0.955916464328766,0.112370908260345,0.271286964416504,0.955916464328766,-0.112370893359184,0.271286964416504,0.955916464328766,-0.271287053823471,0.112370498478413,0.955916464328766,-0.271286875009537,-0.112370945513248,0.955916464328766,-0.112370640039444,-0.271287024021149,0.955916464328766,-0.170372545719147,0.447276681661606,0.878018736839294,-0.447276711463928,0.170372024178505,0.87801867723465,0.167554423213005,-0.0694031417369843,0.983416855335236,0.0694033205509186,-0.167554184794426,0.983416974544525,0.170372173190117,-0.447276502847672,0.878018736839294,0.447276443243027,-0.170372650027275,0.878018796443939,-0.167554318904877,0.0694034025073051,0.98341691493988,-0.069403238594532,0.167554393410683,0.98341691493988,0.112370640039444,-0.271287024021149,0.955916464328766,0.177694469690323,-0.428992807865143,0.885657846927643,0.428992509841919,-0.177694872021675,0.885657846927643,0.271286875009537,-0.112370930612087,0.955916464328766,0.271286875009537,-0.112370930612087,0.955916464328766,0.428992509841919,-0.177694872021675,0.885657846927643,0.428992837667465,0.177694216370583,0.885657966136932,0.271287053823471,0.112370483577251,0.955916464328766,0.271287053823471,0.112370483577251,0.955916464328766,0.428992837667465,0.177694216370583,0.885657966136932,0.177694797515869,0.428992480039597,0.885657906532288,0.112370908260345,0.271286964416504,0.955916464328766,0.112370908260345,0.271286964416504,0.955916464328766,0.177694797515869,0.428992480039597,0.885657906532288,-0.177694797515869,0.428992539644241,0.885657906532288,-0.112370893359184,0.271286964416504,0.955916464328766,-0.112370893359184,0.271286964416504,0.955916464328766,-0.177694797515869,0.428992539644241,0.885657906532288,-0.42899289727211,0.177694246172905,0.885657966136932,-0.271287053823471,0.112370498478413,0.955916464328766,-0.271287053823471,0.112370498478413,0.955916464328766,-0.42899289727211,0.177694246172905,0.885657966136932,-0.428992539644241,-0.177694886922836,0.885657846927643,
- -0.271286875009537,-0.112370945513248,0.955916464328766,-0.271286875009537,-0.112370945513248,0.955916464328766,-0.428992539644241,-0.177694886922836,0.885657846927643,-0.177694469690323,-0.428992837667465,0.885657846927643,-0.112370640039444,-0.271287024021149,0.955916464328766,-0.112370640039444,-0.271287024021149,0.955916464328766,-0.177694469690323,-0.428992837667465,0.885657846927643,0.177694469690323,-0.428992807865143,0.885657846927643,0.112370640039444,-0.271287024021149,0.955916464328766,-0.069403238594532,0.167554393410683,0.98341691493988,-0.177694454789162,0.428992718458176,0.885657906532288,0.177694454789162,0.428992718458176,0.885657906532288,0.069403238594532,0.167554393410683,0.98341691493988,-0.167554318904877,0.0694034025073051,0.98341691493988,-0.428992599248886,0.177694857120514,0.885657906532288,-0.177694454789162,0.428992718458176,0.885657906532288,-0.069403238594532,0.167554393410683,0.98341691493988,-0.167554438114166,-0.0694031417369843,0.983416855335236,-0.428992837667465,-0.17769418656826,0.885657846927643,-0.428992599248886,0.177694857120514,0.885657906532288,-0.167554318904877,0.0694034025073051,0.98341691493988,-0.0694033056497574,-0.167554154992104,0.983416855335236,-0.177694767713547,-0.428992420434952,0.885658025741577,-0.428992837667465,-0.17769418656826,0.885657846927643,-0.167554438114166,-0.0694031417369843,0.983416855335236,0.0694033205509186,-0.167554184794426,0.983416974544525,0.177694767713547,-0.428992420434952,0.885658025741577,-0.177694767713547,-0.428992420434952,0.885658025741577,-0.0694033056497574,-0.167554154992104,0.983416855335236,0.167554423213005,-0.0694031417369843,0.983416855335236,0.428992867469788,-0.177694201469421,0.885657966136932,0.177694767713547,-0.428992420434952,0.885658025741577,0.0694033205509186,-0.167554184794426,0.983416974544525,0.167554318904877,0.0694034025073051,0.98341691493988,0.428992599248886,0.177694872021675,0.885657966136932,0.428992867469788,-0.177694201469421,0.885657966136932,0.167554423213005,-0.0694031417369843,0.983416855335236,
- 0.069403238594532,0.167554393410683,0.98341691493988,0.177694454789162,0.428992718458176,0.885657906532288,0.428992599248886,0.177694872021675,0.885657966136932,0.167554318904877,0.0694034025073051,0.98341691493988,0.447276651859283,0.170372024178505,0.878018736839294,-0.167554438114166,-0.0694031417369843,0.983416855335236,-0.167554318904877,0.0694034025073051,0.98341691493988,0.447276443243027,-0.170372650027275,0.878018796443939,-0.447276443243027,-0.170372650027275,0.878018796443939,0.167554318904877,0.0694034025073051,0.98341691493988,0.167554423213005,-0.0694031417369843,0.983416855335236,-0.447276711463928,0.170372024178505,0.87801867723465,-0.923878371715546,0.382685989141464,-0.000113585643703118,-0.923881232738495,0.382679283618927,-0.000113585556391627,-0.923880636692047,-0.382680714130402,-0.000113585563667584,-0.923877835273743,-0.382687449455261,-0.000113585680082906,0.382686465978622,-0.923878252506256,-0.000113545997010078,-0.382686495780945,-0.923878252506256,-0.000113546011561994,-0.382679730653763,-0.923881053924561,-0.000113545887870714,0.38267970085144,-0.923881053924561,-0.000113545887870714,-0.382687270641327,0.923877894878387,-0.000113546026113909,0.382687211036682,0.923877954483032,-0.000113546026113909,0.382680475711823,0.923880815505981,-0.00011354593152646,-0.382680535316467,0.923880815505981,-0.00011354593152646,-0.447276711463928,0.170372024178505,0.87801867723465,-0.672519683837891,0.292462736368179,0.679840266704559,-0.672519147396088,-0.29246386885643,0.679840385913849,-0.447276443243027,-0.170372650027275,0.878018796443939,-0.069403238594532,0.167554393410683,0.98341691493988,0.069403238594532,0.167554393410683,0.98341691493988,-0.170372173190117,-0.447276502847672,0.878018736839294,0.170372173190117,-0.447276502847672,0.878018736839294,0.069403238594532,0.167554393410683,0.98341691493988,0.167554318904877,0.0694034025073051,0.98341691493988,-0.447276443243027,-0.170372650027275,0.878018796443939,-0.170372173190117,-0.447276502847672,0.878018736839294,0.0694033205509186,-0.167554184794426,0.983416974544525,
- -0.0694033056497574,-0.167554154992104,0.983416855335236,0.170372545719147,0.447276681661606,0.878018736839294,-0.170372545719147,0.447276681661606,0.878018736839294,-0.0694033056497574,-0.167554154992104,0.983416855335236,-0.167554438114166,-0.0694031417369843,0.983416855335236,0.447276651859283,0.170372024178505,0.878018736839294,0.170372545719147,0.447276681661606,0.878018736839294,0.923877835273743,-0.382687449455261,-0.000113585658255033,0.923880636692047,-0.382680743932724,-0.000113585563667584,0.923881232738495,0.382679313421249,-0.000113585556391627,0.923878371715546,0.382686018943787,-0.000113585643703118,0.447276443243027,-0.170372650027275,0.878018796443939,0.672519147396088,-0.29246386885643,0.679840385913849,0.672519683837891,0.292462736368179,0.679840266704559,0.447276651859283,0.170372024178505,0.878018736839294
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "UVChannel_1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *156 {
- a: 0.329880654811859,0.229877427220345,0.329880654811859,0.393413245677948,0.218197494745255,0.393413245677948,0.218197494745255,0.229877427220345,0.0037561864592135,0.418763935565948,0.0037561864592135,0.58231258392334,0.544882357120514,0.393413245677948,0.544882357120514,0.229877427220345,0.545054078102112,0.418763935565948,0.0035864869132638,0.229877427220345,0.0035864869132638,0.393413245677948,0.545054078102112,0.58231258392334,0.038227092474699,0.699823021888733,0.0382291451096535,0.893849194049835,0.00506999483332038,0.911163985729218,0.00506824580952525,0.682508766651154,0.0912318527698517,0.596344709396362,0.108546234667301,0.629503607749939,0.218443244695663,0.418763935565948,0.330058693885803,0.418763935565948,0.330058693885803,0.58231258392334,0.218443244695663,0.58231258392334,0.319886982440948,0.596344172954559,0.406051188707352,0.682507336139679,0.0035864869132638,0.216881185770035,0.218197494745255,0.216881185770035,0.329880654811859,0.216881185770035,0.544882357120514,0.216881185770035,0.0037561864592135,0.405763983726501,0.218443244695663,0.405763983726501,0.545054078102112,0.405763983726501,0.330058693885803,0.405763983726501,0.372892320156097,0.699821770191193,0.302572518587112,0.62950336933136,0.406052738428116,0.911163330078125,0.372893899679184,0.893848955631256,0.108548708260059,0.964168190956116,0.0912341997027397,0.997327327728271,0.319889277219772,0.997327327728271,0.302574872970581,0.964168190956116,0.282927274703979,0.916846334934235,0.325571656227112,0.874201774597168,0.12819367647171,0.676825225353241,0.0855491608381271,0.719470083713531,0.0990209355950356,0.725051939487457,0.0990224927663803,0.868619620800018,0.0855504646897316,0.874202013015747,0.133775666356087,0.690297245979309,0.28292590379715,0.676825225353241,0.277343958616257,0.69029712677002,0.325570732355118,0.719469428062439,0.312098979949951,0.725051462650299,0.312100440263748,0.868619918823242,0.277345448732376,0.90337473154068,0.128195613622665,0.916846096515656,0.133777350187302,0.903374493122101,0.856013298034668,
- 0.224569663405418,0.882237672805786,0.250793755054474,0.882237672805786,0.374553680419922,0.856013894081116,0.400777637958527,0.732253670692444,0.400777637958527,0.706029534339905,0.374553680419922,0.706029534339905,0.250793755054474,0.732253909111023,0.224569663405418,0.861246585845947,0.211935117840767,0.894872188568115,0.24556040763855,0.894872188568115,0.379787147045136,0.861247181892395,0.41341245174408,0.727019965648651,0.413412272930145,0.693395256996155,0.379787147045136,0.693395256996155,0.245560467243195,0.727019965648651,0.211935117840767,0.656109929084778,0.229877427220345,0.656109929084778,0.393413245677948,0.656109929084778,0.216881185770035,0.65635472536087,0.418763935565948,0.65635472536087,0.58231258392334,0.65635472536087,0.405763983726501
- }
- UVIndex: *200 {
- a: 0,1,2,3,72,73,6,7,12,13,14,15,15,16,17,12,22,23,32,33,23,34,35,32,8,75,76,11,18,19,20,21,14,13,36,37,38,39,35,34,3,9,24,25,0,3,25,26,7,0,26,27,72,7,27,74,18,4,28,29,75,8,30,77,8,19,31,30,19,18,29,31,56,57,58,59,60,61,62,63,35,39,40,41,12,17,42,43,56,64,65,57,57,65,66,58,58,66,67,59,59,67,68,60,60,68,69,61,61,69,70,62,62,70,71,63,63,71,64,56,43,44,45,46,42,47,44,43,48,49,47,42,50,51,49,48,41,52,51,50,40,53,52,41,54,55,53,40,46,45,55,54,33,48,42,17,36,54,40,39,20,19,8,11,2,10,9,3,21,5,4,18,39,38,37,36,43,46,13,12,46,54,36,13,41,50,32,35,50,48,33,32,1,0,7,6,17,16,22,33
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByPolygon"
- ReferenceInformationType: "Direct"
- Smoothing: *49 {
- a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
- }
- }
- LayerElementMaterial: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "AllSame"
- ReferenceInformationType: "IndexToDirect"
- Materials: *1 {
- a: 0
- }
- }
- Layer: 0 {
- Version: 100
- LayerElement: {
- Type: "LayerElementNormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementMaterial"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementSmoothing"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementUV"
- TypedIndex: 0
- }
- }
- }
- Geometry: 86759168, "Geometry::", "Mesh" {
- Properties70: {
- P: "Color", "ColorRGB", "Color", "",0,0,0
- }
- Vertices: *153 {
- a: 5.5000114440918,7.6575870513916,0,-5.75391721725464,0.709403991699219,-4.71097183227539,-5.75644969940186,-12.7612571716309,32.0256576538086,5.75609397888184,-12.7612457275391,32.0256462097168,5.75395727157593,-5.94838714599609,31.8751029968262,-5.75387859344482,-5.94838714599609,31.8751029968262,5.7556004524231,-11.008602142334,34.1719436645508,5.75447463989258,-7.44818878173828,34.0932693481445,-5.75448703765869,-7.44819641113281,34.0932731628418,-5.75582075119019,-11.0086097717285,34.1719589233398,2.3395824432373,-5.94838714599609,31.8751029968262,-2.33950304985046,-5.94838333129883,31.8751068115234,2.33976578712463,-7.44819259643555,34.0932693481445,-2.33977770805359,-7.44819259643555,34.0932693481445,-2.34038281440735,-11.0086097717285,34.1719551086426,2.34016036987305,-11.008602142334,34.171947479248,-2.33919024467468,-6.05490875244141,20.9186382293701,-5.75647115707397,-5.43608474731445,17.3549728393555,5.75607442855835,-5.43607711791992,17.3549785614014,5.75393915176392,-1.56026077270508,19.2641906738281,-5.75389957427979,-1.56026077270508,19.2641906738281,-2.33975458145142,-1.56040191650391,19.2494773864746,2.33979201316834,-1.56040191650391,19.2494773864746,2.33927202224731,-6.05490875244141,20.9186401367188,-5.75646829605103,-12.8700103759766,20.8405380249023,5.75607681274414,-12.8700065612793,20.8405418395996,5.75394153594971,-6.05456924438477,20.9539756774902,-5.75389671325684,-6.05456924438477,20.9539756774902,-8.88472461700439,-7.01129531860352,-4.76837158203125e-006,5.75391721725464,0.709400177001953,-4.71097087860107,-5.49988460540771,7.6575927734375,-6.67572021484375e-006,8.88457584381104,-7.01129531860352,-1.04904174804688e-005,2.34032154083252,-12.7612533569336,32.0256538391113,-2.34067797660828,-12.7612571716309,32.0256576538086,-2.33926796913147,-12.8703498840332,20.8052082061768,-2.33982992172241,-5.43622207641602,17.3402614593506,2.3398597240448,-5.43621826171875,17.3402614593506,2.33934211730957,-12.8703498840332,20.8052062988281,8.81730556488037,-6.84539413452148,-0.101239204406738,
- -2.40829277038574,7.66194915771484,-0.0143547058105469,-2.29864072799683,4.62325286865234,6.33297348022461,2.2987380027771,4.62325477600098,6.33297348022461,2.40839171409607,7.66195106506348,-0.0143527984619141,2.50204634666443,2.88285827636719,-3.24216556549072,-2.50199437141418,2.88286018371582,-3.24216461181641,-2.40829133987427,15.9753112792969,-0.0143585205078125,-2.35098505020142,15.1976680755615,2.64157962799072,2.35108709335327,15.1976699829102,2.64158153533936,2.40839385986328,15.9753112792969,-0.0143585205078125,2.50205063819885,14.1875782012939,-3.24216508865356,-2.5019896030426,14.1875801086426,-3.24216747283936
- }
- PolygonVertexIndex: *188 {
- a: 31,18,36,35,17,-29,45,46,47,-49,0,38,-30,20,30,28,-18,8,9,14,-14,6,7,12,-16,5,8,13,-12,7,4,10,-13,3,6,15,-33,9,2,33,-15,2,24,34,-34,37,25,3,-33,4,26,23,-11,27,5,11,-17,19,26,25,-19,24,27,20,-18,17,35,34,-25,37,36,18,-26,19,22,23,-27,16,21,20,-28,4,7,6,3,25,-27,2,9,8,5,27,-25,48,49,50,-46,28,1,29,38,-32,22,21,35,-37,10,23,37,-33,16,11,33,-35,21,16,34,-36,23,22,36,-38,11,13,14,-34,12,10,32,-16,30,1,-29,0,19,18,31,-39,30,20,21,40,-40,21,22,41,-41,22,19,0,42,-42,0,29,43,-43,29,1,44,-44,1,30,39,-45,39,40,46,-46,40,41,47,-47,41,42,48,-48,42,43,49,-49,43,44,50,-50,44,39,45,-51
- }
- Edges: *94 {
- a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,33,35,36,37,38,39,41,42,43,45,46,48,49,50,51,53,55,56,57,58,59,60,61,62,64,66,69,73,74,77,78,93,94,95,97,98,100,102,103,105,107,109,111,113,130,133,140,141,142,144,145,149,150,153,154,157,158,162,165,167,169,173,177,181
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Normals: *564 {
- a: 4.44710757108169e-008,-0.909219145774841,-0.416317969560623,2.58501586358761e-007,-0.99590277671814,0.0904304906725883,2.58501586358761e-007,-0.99590277671814,0.0904304906725883,2.58501586358761e-007,-0.995902836322784,0.0904304906725883,2.58501586358761e-007,-0.99590277671814,0.0904304906725883,4.44745893446452e-008,-0.909222424030304,-0.41631081700325,2.74791496224225e-008,0.99321049451828,-0.116331242024899,-3.23627176612717e-007,0.727757394313812,0.68583470582962,-3.23627148191008e-007,0.727757453918457,0.685834646224976,2.74781406517377e-008,0.993210554122925,-0.116329796612263,0.981909334659576,0.187957853078842,-0.0229327920824289,0.982997357845306,0.177996918559074,0.0450910553336143,0.938536465167999,0.21654962003231,-0.268803894519806,-0.991123676300049,0.110461831092834,0.0739734470844269,-0.981881737709045,0.188048273324966,-0.023366117849946,-0.982990562915802,0.183441579341888,0.00886562094092369,-0.995148360729218,0.081681527197361,0.0548443235456944,1.00857654672382e-007,0.478616148233414,0.878024220466614,8.14175280083873e-007,-0.41873824596405,0.908106982707977,8.14291126971511e-007,-0.418614625930786,0.908163964748383,1.00537725700178e-007,0.478743195533752,0.877954959869385,1.37581753278937e-006,-0.418724179267883,0.908113479614258,4.66176857116807e-008,0.478629797697067,0.878016829490662,4.64939162725386e-008,0.478728741407394,0.877962827682495,1.37565484692459e-006,-0.418630361557007,0.908156752586365,-1.08653375718859e-006,0.95754611492157,0.288280010223389,1.00857654672382e-007,0.478616148233414,0.878024220466614,1.00537725700178e-007,0.478743195533752,0.877954959869385,-1.0865470585486e-006,0.957556307315826,0.288246423006058,4.66176857116807e-008,0.478629797697067,0.878016829490662,6.7395426128769e-008,0.957547247409821,0.288276493549347,6.74466420491626e-008,0.957555592060089,0.288248807191849,4.64939162725386e-008,0.478728741407394,0.877962827682495,1.5985884829206e-006,-0.940319061279297,0.340294152498245,1.37581753278937e-006,-0.418724179267883,0.908113479614258,
- 1.37565484692459e-006,-0.418630361557007,0.908156752586365,1.59860996973293e-006,-0.940313279628754,0.340310156345367,8.14175280083873e-007,-0.41873824596405,0.908106982707977,5.00284102145088e-007,-0.940321147441864,0.340288281440735,5.00276144066447e-007,-0.940313160419464,0.340310275554657,8.14291126971511e-007,-0.418614625930786,0.908163964748383,5.00284102145088e-007,-0.940321147441864,0.340288281440735,-0.00394238950684667,-0.847836792469025,-0.530242502689362,-0.00397934997454286,-0.844639360904694,-0.535321116447449,5.00276144066447e-007,-0.940313160419464,0.340310275554657,0.00398201635107398,-0.844642579555511,-0.535315811634064,0.00394507823511958,-0.847837686538696,-0.530241191387177,1.5985884829206e-006,-0.940319061279297,0.340294152498245,1.59860996973293e-006,-0.940313279628754,0.340310156345367,6.7395426128769e-008,0.957547247409821,0.288276493549347,5.91617947520717e-007,0.999952733516693,-0.00972198694944382,5.91618004364136e-007,0.999952793121338,-0.00972198788076639,6.74466420491626e-008,0.957555592060089,0.288248807191849,-1.14892100100406e-006,0.999952673912048,-0.00972215924412012,-1.08653375718859e-006,0.95754611492157,0.288280010223389,-1.0865470585486e-006,0.957556307315826,0.288246423006058,-1.14892111469089e-006,0.999952793121338,-0.00972215924412012,0.991193056106567,0.110595740377903,0.0728347525000572,0.999999940395355,0.000291181000648066,0.000403401500079781,1,0.000305500696413219,0.000140330230351537,0.995189428329468,0.0817648619413376,0.05396793410182,-1,0.000367543805623427,0.000172826199559495,-0.99999988079071,0.000350344431353733,0.000488451041746885,-0.991123676300049,0.110461831092834,0.0739734470844269,-0.995148360729218,0.081681527197361,0.0548443235456944,-0.00666291266679764,-0.423480898141861,-0.905880510807037,-0.00666291266679764,-0.423480868339539,-0.905880510807037,-0.00397934997454286,-0.844639360904694,-0.535321116447449,-0.00394238950684667,-0.847836792469025,-0.530242502689362,0.00398201635107398,-0.844642579555511,-0.535315811634064,0.00666577974334359,-0.42348051071167,-0.905880749225616,
- 0.0066657792776823,-0.42348051071167,-0.905880689620972,0.00394507823511958,-0.847837686538696,-0.530241191387177,-0.0044444901868701,0.67338353395462,0.739280045032501,-0.00292389816604555,0.767535150051117,0.641000270843506,-0.00688986293971539,0.350031852722168,0.936712503433228,-0.0068898624740541,0.350031852722168,0.936712443828583,0.00689009018242359,0.350031703710556,0.936712443828583,0.00292409467510879,0.767534494400024,0.641001045703888,0.00444498751312494,0.673383235931396,0.73928028345108,0.00689009018242359,0.350031733512878,0.936712503433228,1,0.000313522235956043,-7.03628984410898e-006,1,0.000313522235956043,-7.03629075360368e-006,0.999999940395355,0.000313522235956043,-7.03628984410898e-006,1,0.000313522235956043,-7.03628984410898e-006,1,0.000305500696413219,0.000140330230351537,0.999999940395355,0.000291181000648066,0.000403401500079781,-0.999999940395355,0.000377178512280807,-3.98013116864604e-006,-1,0.000377178541384637,-3.98013162339339e-006,-0.99999988079071,0.000377178483176976,-3.98013116864604e-006,-0.999999940395355,0.000377178483176976,-3.98013116864604e-006,-0.99999988079071,0.000350344431353733,0.000488451041746885,-1,0.000367543805623427,0.000172826199559495,2.74781406517377e-008,0.993210554122925,-0.116329796612263,2.89497421590568e-007,0.874788641929626,-0.484504669904709,2.89497450012277e-007,0.874788641929626,-0.484504729509354,2.74791496224225e-008,0.99321049451828,-0.116331242024899,4.44745893446452e-008,-0.909222424030304,-0.41631081700325,-2.10690288326987e-007,-0.520867049694061,-0.853637933731079,-2.10690245694423e-007,-0.520866990089417,-0.853637754917145,-2.10690274116132e-007,-0.520867049694061,-0.853637933731079,4.44710757108169e-008,-0.909219145774841,-0.416317969560623,1.76881684410546e-007,-0.441892832517624,0.897067904472351,1.76881684410546e-007,-0.441892832517624,0.897067844867706,1.76881684410546e-007,-0.441892802715302,0.897067844867706,1.76881698621401e-007,-0.441892832517624,0.897067904472351,-1,-7.7951030107215e-005,4.09350395784713e-005,-1,-1.04934470073204e-005,-8.07480464573018e-005,
- -1,-4.17995288444217e-005,8.87675560079515e-006,-1,-7.75585795054212e-005,4.13079469581135e-005,1,-2.15647105505923e-005,-8.25632669148035e-005,1,-0.00012170282570878,5.09969067934435e-005,1,-0.00012107447400922,5.15745559823699e-005,1,-6.66302512399852e-005,2.09754107345361e-005,1,1.88848571269773e-005,-0.000175496694282629,1,-2.15647105505923e-005,-8.25632669148035e-005,1,-6.66302512399852e-005,2.09754107345361e-005,1,1.88848553079879e-005,-0.000175496694282629,-1,-1.04934470073204e-005,-8.07480464573018e-005,-0.999999940395355,1.76060439116554e-005,-0.000161192860105075,-1,1.76060475496342e-005,-0.00016119287465699,-1,-4.17995288444217e-005,8.87675560079515e-006,1,-0.00012170282570878,5.09969067934435e-005,1,-0.000171482024597935,5.23620974490768e-006,1,-0.000171482024597935,5.23620974490768e-006,1,-0.00012107447400922,5.15745559823699e-005,-0.999999940395355,-0.000109036707726773,1.13971454993589e-005,-1,-7.7951030107215e-005,4.09350395784713e-005,-1,-7.75585795054212e-005,4.13079469581135e-005,-1,-0.000109036707726773,1.13971464088536e-005,-0.981881737709045,0.188048273324966,-0.023366117849946,-0.938532829284668,0.216566041111946,-0.26880344748497,-0.982990562915802,0.183441579341888,0.00886562094092369,0.981909334659576,0.187957853078842,-0.0229327920824289,0.991193056106567,0.110595740377903,0.0728347525000572,0.995189428329468,0.0817648619413376,0.05396793410182,0.979672253131866,0.167647048830986,0.110167257487774,0.982997357845306,0.177996918559074,0.0450910553336143,0.00132380367722362,0.902004957199097,0.431723564863205,0.00444498751312494,0.673383235931396,0.73928028345108,0.00292409467510879,0.767534494400024,0.641001045703888,0.000698961492162198,0.804160416126251,0.594411849975586,0.00132380367722362,0.902005076408386,0.431723594665527,0.00292409467510879,0.767534494400024,0.641001045703888,-0.00292389816604555,0.767535150051117,0.641000270843506,-0.000698878196999431,0.804160177707672,0.594412207603455,0.000698961492162198,0.804160416126251,0.594411849975586,-0.00292389816604555,0.767535150051117,0.641000270843506,
- -0.0044444901868701,0.67338353395462,0.739280045032501,-0.00132311077322811,0.902004957199097,0.431723594665527,-0.00132311077322811,0.902005076408386,0.431723594665527,-0.000698878196999431,0.804160177707672,0.594412207603455,0.0026144296862185,0.5606330037117,-0.828060269355774,0.00146254617720842,0.560321092605591,-0.828274190425873,0.00125286937691271,0.56026417016983,-0.828312933444977,0.00261442922055721,0.5606330037117,-0.828060269355774,0.00146254617720842,0.560321092605591,-0.828274190425873,-0.0014613086823374,0.560320913791656,-0.828274369239807,-0.00125175062566996,0.560264050960541,-0.828313112258911,0.00125286937691271,0.56026417016983,-0.828312933444977,-0.0014613086823374,0.560320913791656,-0.828274369239807,-0.00261251977644861,0.560632586479187,-0.828060448169708,-0.00261252000927925,0.560632586479187,-0.828060567378998,-0.00125175062566996,0.560264050960541,-0.828313112258911,-0.999698221683502,0.000411124463425949,0.0245614536106586,-0.999820351600647,0.000929871632251889,0.0189350247383118,-0.999820291996002,0.000929871632251889,0.0189350228756666,-0.999723613262177,0.000508760975208133,0.023502541705966,0.000698961492162198,0.804160416126251,0.594411849975586,-0.000698878196999431,0.804160177707672,0.594412207603455,-3.23627148191008e-007,0.727757453918457,0.685834646224976,-3.23627176612717e-007,0.727757394313812,0.68583470582962,0.999820232391357,0.000929440720938146,0.0189350731670856,0.999698400497437,0.000410573615226895,0.024554206058383,0.999723792076111,0.000508232857100666,0.0234966650605202,0.999820291996002,0.000929440779145807,0.0189350750297308,0.999698400497437,0.000410573615226895,0.024554206058383,0.999579310417175,-3.20250990171189e-007,0.0290033705532551,0.999579250812531,-3.2025096174948e-007,0.0290033705532551,0.999723792076111,0.000508232857100666,0.0234966650605202,1.4293560468559e-007,-1.0545096529313e-007,-1,1.4293560468559e-007,-1.0545096529313e-007,-1,1.4293560468559e-007,-1.0545096529313e-007,-1,1.4293560468559e-007,-1.0545096529313e-007,-1,-0.999579012393951,3.25778501064633e-007,0.0290164034813643,
- -0.999698221683502,0.000411124463425949,0.0245614536106586,-0.999723613262177,0.000508760975208133,0.023502541705966,-0.999578952789307,3.25778472642924e-007,0.029016399756074
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "UVChannel_1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *232 {
- a: 0.718026459217072,0.77487576007843,0.620723366737366,0.757407307624817,0.596680104732513,0.738339424133301,0.596680581569672,0.712196469306946,0.620804965496063,0.738332629203796,0.620804965496063,0.712202906608582,0.739280164241791,0.83125376701355,0.719395160675049,0.831258416175842,0.739281117916107,0.812187194824219,0.71939605474472,0.812187790870667,0.739280581474304,0.782818078994751,0.838054597377777,0.951547503471375,0.739281535148621,0.801884651184082,0.754231631755829,0.83125102519989,0.754231631755829,0.812186241149902,0.897790968418121,0.951700747013092,0.754231989383698,0.782820224761963,0.754231989383698,0.801884889602661,0.719395577907562,0.782814621925354,0.719396471977234,0.80188524723053,0.703923761844635,0.782812595367432,0.70392382144928,0.80188512802124,0.703923344612122,0.831261396408081,0.703923344612122,0.812188863754272,0.815214335918427,0.782819628715515,0.815412402153015,0.801885843276978,0.815214157104492,0.831251382827759,0.815411984920502,0.812184929847717,0.477487474679947,0.694524645805359,0.596754252910614,0.693118572235107,0.62241119146347,0.921994090080261,0.706267833709717,0.870061635971069,0.706582188606262,0.846180737018585,0.516720473766327,0.712422013282776,0.477449089288712,0.711787581443787,0.741542220115662,0.899407804012299,0.725823402404785,0.864745438098907,0.797700226306915,0.871967494487762,0.804308772087097,0.857978463172913,0.795360147953033,0.84022045135498,0.780576944351196,0.837988197803497,0.620723247528076,0.693125605583191,0.516720473766327,0.738112807273865,0.744551301002502,0.936707198619843,0.744992017745972,0.912827551364899,0.828948795795441,0.861124336719513,0.725418031215668,0.91799008846283,0.70999151468277,0.883196711540222,0.67041951417923,0.944260239601135,0.655656754970551,0.941896498203278,0.646866798400879,0.924059629440308,0.653600335121155,0.910129368305206,0.596754014492035,0.75741708278656,0.477487474679947,0.756010413169861,0.477449089288712,0.738747954368591,0.430597931146622,0.757376313209534,0.445260912179947,0.739231944084167,
- 0.430597931146622,0.69315779209137,0.898675858974457,0.988852143287659,0.445260912179947,0.711302757263184,0.641465961933136,0.831261038780212,0.837500035762787,0.988695561885834,0.897790968418121,0.951700747013092,0.838054597377777,0.951547503471375,0.837500035762787,0.988695561885834,0.898675858974457,0.988852143287659,0.906716048717499,0.927132546901703,0.917275965213776,0.948188126087189,0.906716048717499,0.927132546901703,0.917275965213776,0.948188126087189,0.82602071762085,0.959810853004456,0.825730443000793,0.979224443435669,0.82602071762085,0.959810853004456,0.825730443000793,0.979224443435669,0.64126980304718,0.812180638313293,0.641270160675049,0.801890969276428,0.829830408096313,0.861753284931183,0.641466617584229,0.78281307220459,0.736806809902191,0.958201229572296,0.751931846141815,0.958514451980591,0.75193178653717,0.984212756156921,0.736806809902191,0.984525918960571,0.716640710830688,0.985037744045258,0.716640710830688,0.957689106464386,0.593630135059357,0.967060565948486,0.576833307743073,0.932457089424133,0.813144505023956,0.983926892280579,0.593630373477936,0.967059254646301,0.567607462406158,0.984849274158478,0.65485680103302,0.957688987255096,0.587353765964508,0.845670938491821,0.578437149524689,0.891691327095032,0.872810304164886,0.891484797000885,0.863814532756805,0.937489688396454,0.595621585845947,0.83153247833252,0.595474302768707,0.812455534934998,0.595474541187286,0.801614880561829,0.595622301101685,0.782540321350098,0.842023074626923,0.782634735107422,0.842182636260986,0.801697611808777,0.842182099819183,0.81237268447876,0.842023015022278,0.831435561180115,0.718025743961334,0.675657987594604,0.768527030944824,0.693138957023621,0.768527567386627,0.757394671440125,0.719111800193787,0.774500250816345,0.813144564628601,0.958800733089447,0.576834440231323,0.932455122470856,0.65485680103302,0.985037624835968,0.567607700824738,0.984851658344269,0.639064133167267,0.966812372207642,0.634734570980072,0.952316701412201,0.63473516702652,0.952316701412201,0.639064133167267,0.966812372207642,0.629389941692352,
- 0.984513282775879,0.629390180110931,0.984513521194458
- }
- UVIndex: *188 {
- a: 0,1,4,5,41,102,78,79,80,81,93,76,92,32,90,30,31,6,7,9,8,18,10,12,19,13,6,8,14,10,16,17,12,20,18,19,21,7,22,23,9,22,60,74,23,75,77,20,21,16,24,25,17,26,13,14,27,43,46,47,44,35,36,32,31,94,95,74,60,75,96,97,77,98,99,25,24,27,100,101,26,48,49,50,51,47,46,37,38,39,40,36,35,81,82,83,78,102,103,104,105,0,2,3,5,4,11,15,58,61,62,63,64,65,66,62,65,67,15,68,69,58,63,70,71,64,72,11,61,73,90,91,30,93,43,44,45,76,28,29,3,33,34,3,2,42,33,2,52,53,54,42,53,55,56,54,55,57,59,56,57,28,34,59,84,85,111,110,106,86,80,79,107,87,113,112,87,88,114,113,108,89,83,82,109,84,110,115
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByPolygon"
- ReferenceInformationType: "Direct"
- Smoothing: *45 {
- a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
- }
- }
- LayerElementMaterial: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "AllSame"
- ReferenceInformationType: "IndexToDirect"
- Materials: *1 {
- a: 0
- }
- }
- Layer: 0 {
- Version: 100
- LayerElement: {
- Type: "LayerElementNormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementMaterial"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementSmoothing"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementUV"
- TypedIndex: 0
- }
- }
- }
- Geometry: 86752944, "Geometry::", "Mesh" {
- Properties70: {
- P: "Color", "ColorRGB", "Color", "",0,0,0
- }
- Vertices: *78 {
- a: 2.19355082511902,-3.46841621398926,1.41854381561279,-2.1934597492218,-3.46842384338379,1.41855144500732,2.1944055557251,3.34444046020508,1.26800346374512,-2.19440031051636,3.34444046020508,1.26800346374512,-5.79921913146973,3.49526977539063,-13.3516530990601,5.79886341094971,3.49526977539063,-13.3516492843628,5.71111631393433,-3.55295944213867,-10.0958890914917,-5.87265682220459,9.94716644287109,-35.5147666931152,5.87142896652222,9.94712829589844,-35.5146369934082,1.18374192714691,0.320854187011719,-45.6312294006348,-1.18253231048584,0.320827484130859,-45.6311187744141,1.35103595256805,4.6059684753418,-52.0008010864258,-1.35107696056366,4.60597229003906,-52.0008201599121,2.19440460205078,-3.55268478393555,-10.0947523117065,-2.19440126419067,-3.55268478393555,-10.0947523117065,2.19525980949402,3.4949836730957,-13.3527822494507,-2.19534111022949,3.49499893188477,-13.3527956008911,2.19375205039978,-1.8631420135498,3.63425731658936,2.19420409202576,1.73915863037109,3.55465221405029,-2.19417858123779,1.73915863037109,3.55465221405029,-2.19368124008179,-1.8631420135498,3.63425731658936,-8.89849472045898,2.05113983154297,-30.593433380127,8.89828205108643,2.05117034912109,-30.5935478210449,-9.30727291107178,-4.64540481567383,-30.6022491455078,9.304762840271,-4.64543914794922,-30.6021308898926,-5.71118211746216,-3.55296325683594,-10.0958852767944
- }
- PolygonVertexIndex: *90 {
- a: 11,12,7,-9,18,19,20,-18,16,3,2,-16,0,1,14,-14,7,12,-11,9,10,12,-12,17,0,13,15,2,-19,19,3,16,14,1,-21,14,16,4,-26,15,13,6,-6,2,3,19,-19,1,0,17,-21,9,11,-9,10,23,21,-8,23,24,6,13,14,-26,5,6,24,-23,22,24,9,-9,10,9,24,-24,8,7,21,-23,21,23,25,-5,22,21,4,16,15,-6
- }
- Edges: *45 {
- a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,17,18,19,22,23,25,27,29,31,33,36,37,38,40,41,42,53,54,55,56,58,59,63,66,67,69,71,78,83
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Normals: *270 {
- a: 5.93501590628875e-006,0.951318740844727,-0.308208674192429,5.93501590628875e-006,0.951318800449371,-0.308208674192429,5.9350154515414e-006,0.951318740844727,-0.308208644390106,5.93501590628875e-006,0.951318860054016,-0.308208703994751,0,0.0220930092036724,0.999755918979645,0,0.0220930092036724,0.999755918979645,0,0.0220930092036724,0.999755918979645,0,0.0220930092036724,0.999755918979645,-3.25644009535608e-007,0.998633801937103,-0.0522555969655514,9.01636610706191e-007,0.951974272727966,0.306178033351898,9.01632802197128e-007,0.951973915100098,0.306179255247116,-3.25638751519364e-007,0.998633742332459,-0.0522554330527782,1.09704171791236e-006,-0.950128436088562,0.311858773231506,1.09704194528604e-006,-0.950128376483917,0.311859160661697,-5.19481034189084e-007,-0.99928092956543,0.037917498499155,-5.19457557857095e-007,-0.99928092956543,0.0379169918596745,-0.915535926818848,-0.0233727525919676,-0.401556611061096,-0.943988382816315,-0.284816920757294,-0.166629120707512,-0.945601105690002,-0.166950970888138,-0.279223829507828,-2.9301343147381e-006,-0.905348062515259,-0.424670368432999,-2.92998902295949e-006,-0.905350744724274,-0.424664556980133,-6.33586159892729e-006,-0.82971602678299,-0.558185815811157,-6.33586159892729e-006,-0.82971602678299,-0.558185756206512,1,-0.000109438326035161,5.76263264520094e-005,1,-0.000109438318759203,5.76263264520094e-005,1,-0.000109438318759203,5.76263264520094e-005,1,-0.000109438326035161,5.76263264520094e-005,1,-0.000109438333311118,5.76263264520094e-005,1,-0.000109438326035161,5.76263264520094e-005,-1,-0.000120324366434943,6.35063406662084e-005,-1,-0.000120324366434943,6.35063406662084e-005,-1,-0.000120324373710901,6.35063406662084e-005,-1,-0.000120324373710901,6.35063406662084e-005,-1,-0.000120324366434943,6.35063406662084e-005,-1,-0.000120324366434943,6.35063406662084e-005,7.59000045036373e-007,0.419482976198196,0.907763183116913,7.59000045036373e-007,0.419482976198196,0.907763183116913,7.59000101879792e-007,0.419483006000519,0.907763242721558,7.59000101879792e-007,0.419483006000519,0.907763123512268,
- -1.89759475688334e-007,0.419482380151749,0.907763481140137,-1.89759461477479e-007,0.419482380151749,0.907763481140137,-1.89759489899188e-007,0.419482409954071,0.907763481140137,-1.89759461477479e-007,0.419482380151749,0.907763421535492,9.01632802197128e-007,0.951973915100098,0.306179255247116,9.01636610706191e-007,0.951974272727966,0.306178033351898,0,0.818452954292297,0.574573516845703,0,0.818452954292297,0.574573516845703,1.09704194528604e-006,-0.950128376483917,0.311859160661697,1.09704171791236e-006,-0.950128436088562,0.311858773231506,1.21404855235596e-006,-0.809803426265717,0.586701214313507,1.21404855235596e-006,-0.809803485870361,0.586701214313507,0.945631086826324,-0.166806280612946,-0.279208689928055,0.944055140018463,-0.28458034992218,-0.16665555536747,0.915561258792877,-0.0233527943491936,-0.401499927043915,-0.945601105690002,-0.166950970888138,-0.279223829507828,-0.990393936634064,0.0619309470057487,-0.123630680143833,-0.973194420337677,0.0602872632443905,-0.221941411495209,-0.915535926818848,-0.0233727525919676,-0.401556611061096,-7.96416486537055e-007,-0.993929862976074,-0.110016219317913,-7.96398637703533e-007,-0.993929028511047,-0.110022887587547,-1.21686173315538e-006,-0.998583674430847,0.0532044656574726,-5.19457557857095e-007,-0.99928092956543,0.0379169918596745,-5.19481034189084e-007,-0.99928092956543,0.037917498499155,-1.21686150578171e-006,-0.998583614826202,0.053204458206892,0.983405351638794,0.0629978999495506,0.17013281583786,0.983405351638794,0.0629978999495506,0.170132830739021,0.990401387214661,0.0618207827210426,-0.123625583946705,0.973206758499146,0.0601941086351871,-0.221912324428558,0.973206758499146,0.0601941086351871,-0.221912324428558,0.990401387214661,0.0618207827210426,-0.123625583946705,0.945631086826324,-0.166806280612946,-0.279208689928055,0.915561258792877,-0.0233527943491936,-0.401499927043915,-2.92998902295949e-006,-0.905350744724274,-0.424664556980133,-2.9301343147381e-006,-0.905348062515259,-0.424670368432999,-7.96398637703533e-007,-0.993929028511047,-0.110022887587547,
- -7.96416486537055e-007,-0.993929862976074,-0.110016219317913,-3.01873456010071e-007,0.528933107852936,0.848663449287415,-3.01873484431781e-007,0.528933167457581,0.848663508892059,-3.01873484431781e-007,0.528933167457581,0.848663508892059,-3.01873484431781e-007,0.528933107852936,0.848663449287415,-0.973194420337677,0.0602872632443905,-0.221941411495209,-0.990393936634064,0.0619309470057487,-0.123630680143833,-0.983387589454651,0.0631496086716652,0.170179396867752,-0.983387529850006,0.0631496012210846,0.170179381966591,-1.34919184802129e-006,0.996511220932007,-0.0834584534168243,-1.34919184802129e-006,0.996511161327362,-0.0834584534168243,-1.34919196170813e-006,0.996511280536652,-0.0834584608674049,-3.25644009535608e-007,0.998633801937103,-0.0522555969655514,-3.25638751519364e-007,0.998633742332459,-0.0522554330527782,-1.34919196170813e-006,0.996511280536652,-0.0834584608674049
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "UVChannel_1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *120 {
- a: 0.900907397270203,0.51922208070755,0.900910019874573,0.538964569568634,0.900911092758179,0.554273664951324,0.968482136726379,0.643178880214691,0.928401708602905,0.644879758358002,0.968482136726379,0.643178880214691,0.928401708602905,0.644879758358002,0.912504732608795,0.863914310932159,0.931023716926575,0.960283517837524,0.959636151790619,0.929436683654785,0.810051441192627,0.647458672523499,0.809129953384399,0.689522385597229,0.967708349227905,0.625024497509003,0.927610993385315,0.626275658607483,0.927610993385315,0.626275658607483,0.967708349227905,0.625024497509003,0.876864552497864,0.538964569568634,0.876863718032837,0.554273664951324,0.876867055892944,0.51922208070755,0.876858592033386,0.634389698505402,0.912504732608795,0.863914310932159,0.867547750473022,0.560738444328308,0.995323896408081,0.696268200874329,0.993189573287964,0.710242807865143,0.976453185081482,0.718396544456482,0.96367084980011,0.711688816547394,0.96367084980011,0.711688816547394,0.976453185081482,0.718396544456482,0.993189573287964,0.710242807865143,0.995323896408081,0.696268200874329,0.896290719509125,0.875123560428619,0.881484925746918,0.875123560428619,0.856709659099579,0.780168116092682,0.921059310436249,0.780168116092682,0.9009108543396,0.441142708063126,0.900906324386597,0.504229485988617,0.876868486404419,0.504229485988617,0.876863241195679,0.441142708063126,0.95849609375,0.836354374885559,0.765566110610962,0.560722947120667,0.785273790359497,0.448206067085266,0.804542541503906,0.44820249080658,0.828590154647827,0.448206067085266,0.847859382629395,0.448215126991272,0.937644243240356,0.729188024997711,0.840129971504211,0.729188024997711,0.955485343933105,0.740087985992432,0.958487033843994,0.836354076862335,0.955477714538574,0.740089356899261,0.823935508728027,0.689524054527283,0.931023716926575,0.960283517837524,0.90091609954834,0.634389698505402,0.920661449432373,0.634383499622345,0.857111811637878,0.634383499622345,0.823017358779907,0.647459626197815,0.959636151790619,0.929436683654785,0.995174646377563,0.838666796684265,
- 0.995174646377563,0.838666796684265,0.995033740997314,0.724431157112122,0.995033740997314,0.724431157112122
- }
- UVIndex: *90 {
- a: 30,31,32,33,1,16,18,0,19,17,2,51,35,36,37,34,7,8,9,10,54,49,11,28,29,5,4,26,27,24,25,6,3,22,23,3,6,13,15,4,5,12,14,2,17,16,1,36,35,0,18,55,50,20,9,56,38,7,21,39,40,41,42,43,46,58,57,47,47,57,55,20,54,10,39,21,33,32,45,44,38,56,59,48,44,45,53,19,51,52
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByPolygon"
- ReferenceInformationType: "Direct"
- Smoothing: *21 {
- a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
- }
- }
- LayerElementMaterial: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "AllSame"
- ReferenceInformationType: "IndexToDirect"
- Materials: *1 {
- a: 0
- }
- }
- Layer: 0 {
- Version: 100
- LayerElement: {
- Type: "LayerElementNormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementMaterial"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementSmoothing"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementUV"
- TypedIndex: 0
- }
- }
- }
- Geometry: 86801152, "Geometry::", "Mesh" {
- Properties70: {
- P: "Color", "ColorRGB", "Color", "",0,0,0
- }
- Vertices: *153 {
- a: 5.5000114440918,7.6575870513916,0,-5.75391721725464,0.709403991699219,-4.71097183227539,-5.75644969940186,-12.7612571716309,32.0256576538086,5.75609397888184,-12.7612457275391,32.0256462097168,5.75395727157593,-5.94838714599609,31.8751029968262,-5.75387859344482,-5.94838714599609,31.8751029968262,5.7556004524231,-11.008602142334,34.1719436645508,5.75447463989258,-7.44818878173828,34.0932693481445,-5.75448703765869,-7.44819641113281,34.0932731628418,-5.75582075119019,-11.0086097717285,34.1719589233398,2.3395824432373,-5.94838714599609,31.8751029968262,-2.33950304985046,-5.94838333129883,31.8751068115234,2.33976578712463,-7.44819259643555,34.0932693481445,-2.33977770805359,-7.44819259643555,34.0932693481445,-2.34038281440735,-11.0086097717285,34.1719551086426,2.34016036987305,-11.008602142334,34.171947479248,-2.33919024467468,-6.05490875244141,20.9186382293701,-5.75647115707397,-5.43608474731445,17.3549728393555,5.75607442855835,-5.43607711791992,17.3549785614014,5.75393915176392,-1.56026077270508,19.2641906738281,-5.75389957427979,-1.56026077270508,19.2641906738281,-2.33975458145142,-1.56040191650391,19.2494773864746,2.33979201316834,-1.56040191650391,19.2494773864746,2.33927202224731,-6.05490875244141,20.9186401367188,-5.75646829605103,-12.8700103759766,20.8405380249023,5.75607681274414,-12.8700065612793,20.8405418395996,5.75394153594971,-6.05456924438477,20.9539756774902,-5.75389671325684,-6.05456924438477,20.9539756774902,-8.88472461700439,-7.01129531860352,-4.76837158203125e-006,5.75391721725464,0.709400177001953,-4.71097087860107,-5.49988460540771,7.6575927734375,-6.67572021484375e-006,8.88457584381104,-7.01129531860352,-1.04904174804688e-005,2.34032154083252,-12.7612533569336,32.0256538391113,-2.34067797660828,-12.7612571716309,32.0256576538086,-2.33926796913147,-12.8703498840332,20.8052082061768,-2.33982992172241,-5.43622207641602,17.3402614593506,2.3398597240448,-5.43621826171875,17.3402614593506,2.33934211730957,-12.8703498840332,20.8052062988281,8.81730556488037,-6.84539413452148,-0.101239204406738,
- -2.40829277038574,7.66194915771484,-0.0143547058105469,-2.29864072799683,4.62325286865234,6.33297348022461,2.2987380027771,4.62325477600098,6.33297348022461,2.40839171409607,7.66195106506348,-0.0143527984619141,2.50204634666443,2.88285827636719,-3.24216556549072,-2.50199437141418,2.88286018371582,-3.24216461181641,-2.40829133987427,15.9753112792969,-0.0143585205078125,-2.35098505020142,15.1976680755615,2.64157962799072,2.35108709335327,15.1976699829102,2.64158153533936,2.40839385986328,15.9753112792969,-0.0143585205078125,2.50205063819885,14.1875782012939,-3.24216508865356,-2.5019896030426,14.1875801086426,-3.24216747283936
- }
- PolygonVertexIndex: *188 {
- a: 31,18,36,35,17,-29,45,46,47,-49,0,38,-30,20,30,28,-18,8,9,14,-14,6,7,12,-16,5,8,13,-12,7,4,10,-13,3,6,15,-33,9,2,33,-15,2,24,34,-34,37,25,3,-33,4,26,23,-11,27,5,11,-17,19,26,25,-19,24,27,20,-18,17,35,34,-25,37,36,18,-26,19,22,23,-27,16,21,20,-28,4,7,6,3,25,-27,2,9,8,5,27,-25,48,49,50,-46,28,1,29,38,-32,22,21,35,-37,10,23,37,-33,16,11,33,-35,21,16,34,-36,23,22,36,-38,11,13,14,-34,12,10,32,-16,30,1,-29,0,19,18,31,-39,30,20,21,40,-40,21,22,41,-41,22,19,0,42,-42,0,29,43,-43,29,1,44,-44,1,30,39,-45,39,40,46,-46,40,41,47,-47,41,42,48,-48,42,43,49,-49,43,44,50,-50,44,39,45,-51
- }
- Edges: *94 {
- a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,33,35,36,37,38,39,41,42,43,45,46,48,49,50,51,53,55,56,57,58,59,60,61,62,64,66,69,73,74,77,78,93,94,95,97,98,100,102,103,105,107,109,111,113,130,133,140,141,142,144,145,149,150,153,154,157,158,162,165,167,169,173,177,181
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Normals: *564 {
- a: 4.44710757108169e-008,-0.909219145774841,-0.416317969560623,2.58501586358761e-007,-0.99590277671814,0.0904304906725883,2.58501586358761e-007,-0.99590277671814,0.0904304906725883,2.58501586358761e-007,-0.995902836322784,0.0904304906725883,2.58501586358761e-007,-0.99590277671814,0.0904304906725883,4.44745893446452e-008,-0.909222424030304,-0.41631081700325,2.74791496224225e-008,0.99321049451828,-0.116331242024899,-3.23627176612717e-007,0.727757394313812,0.68583470582962,-3.23627148191008e-007,0.727757453918457,0.685834646224976,2.74781406517377e-008,0.993210554122925,-0.116329796612263,0.981909334659576,0.187957853078842,-0.0229327920824289,0.982997357845306,0.177996918559074,0.0450910553336143,0.938536465167999,0.21654962003231,-0.268803894519806,-0.991123676300049,0.110461831092834,0.0739734470844269,-0.981881737709045,0.188048273324966,-0.023366117849946,-0.982990562915802,0.183441579341888,0.00886562094092369,-0.995148360729218,0.081681527197361,0.0548443235456944,1.00857654672382e-007,0.478616148233414,0.878024220466614,8.14175280083873e-007,-0.41873824596405,0.908106982707977,8.14291126971511e-007,-0.418614625930786,0.908163964748383,1.00537725700178e-007,0.478743195533752,0.877954959869385,1.37581753278937e-006,-0.418724179267883,0.908113479614258,4.66176857116807e-008,0.478629797697067,0.878016829490662,4.64939162725386e-008,0.478728741407394,0.877962827682495,1.37565484692459e-006,-0.418630361557007,0.908156752586365,-1.08653375718859e-006,0.95754611492157,0.288280010223389,1.00857654672382e-007,0.478616148233414,0.878024220466614,1.00537725700178e-007,0.478743195533752,0.877954959869385,-1.0865470585486e-006,0.957556307315826,0.288246423006058,4.66176857116807e-008,0.478629797697067,0.878016829490662,6.7395426128769e-008,0.957547247409821,0.288276493549347,6.74466420491626e-008,0.957555592060089,0.288248807191849,4.64939162725386e-008,0.478728741407394,0.877962827682495,1.5985884829206e-006,-0.940319061279297,0.340294152498245,1.37581753278937e-006,-0.418724179267883,0.908113479614258,
- 1.37565484692459e-006,-0.418630361557007,0.908156752586365,1.59860996973293e-006,-0.940313279628754,0.340310156345367,8.14175280083873e-007,-0.41873824596405,0.908106982707977,5.00284102145088e-007,-0.940321147441864,0.340288281440735,5.00276144066447e-007,-0.940313160419464,0.340310275554657,8.14291126971511e-007,-0.418614625930786,0.908163964748383,5.00284102145088e-007,-0.940321147441864,0.340288281440735,-0.00394238950684667,-0.847836792469025,-0.530242502689362,-0.00397934997454286,-0.844639360904694,-0.535321116447449,5.00276144066447e-007,-0.940313160419464,0.340310275554657,0.00398201635107398,-0.844642579555511,-0.535315811634064,0.00394507823511958,-0.847837686538696,-0.530241191387177,1.5985884829206e-006,-0.940319061279297,0.340294152498245,1.59860996973293e-006,-0.940313279628754,0.340310156345367,6.7395426128769e-008,0.957547247409821,0.288276493549347,5.91617947520717e-007,0.999952733516693,-0.00972198694944382,5.91618004364136e-007,0.999952793121338,-0.00972198788076639,6.74466420491626e-008,0.957555592060089,0.288248807191849,-1.14892100100406e-006,0.999952673912048,-0.00972215924412012,-1.08653375718859e-006,0.95754611492157,0.288280010223389,-1.0865470585486e-006,0.957556307315826,0.288246423006058,-1.14892111469089e-006,0.999952793121338,-0.00972215924412012,0.991193056106567,0.110595740377903,0.0728347525000572,0.999999940395355,0.000291181000648066,0.000403401500079781,1,0.000305500696413219,0.000140330230351537,0.995189428329468,0.0817648619413376,0.05396793410182,-1,0.000367543805623427,0.000172826199559495,-0.99999988079071,0.000350344431353733,0.000488451041746885,-0.991123676300049,0.110461831092834,0.0739734470844269,-0.995148360729218,0.081681527197361,0.0548443235456944,-0.00666291266679764,-0.423480898141861,-0.905880510807037,-0.00666291266679764,-0.423480868339539,-0.905880510807037,-0.00397934997454286,-0.844639360904694,-0.535321116447449,-0.00394238950684667,-0.847836792469025,-0.530242502689362,0.00398201635107398,-0.844642579555511,-0.535315811634064,0.00666577974334359,-0.42348051071167,-0.905880749225616,
- 0.0066657792776823,-0.42348051071167,-0.905880689620972,0.00394507823511958,-0.847837686538696,-0.530241191387177,-0.0044444901868701,0.67338353395462,0.739280045032501,-0.00292389816604555,0.767535150051117,0.641000270843506,-0.00688986293971539,0.350031852722168,0.936712503433228,-0.0068898624740541,0.350031852722168,0.936712443828583,0.00689009018242359,0.350031703710556,0.936712443828583,0.00292409467510879,0.767534494400024,0.641001045703888,0.00444498751312494,0.673383235931396,0.73928028345108,0.00689009018242359,0.350031733512878,0.936712503433228,1,0.000313522235956043,-7.03628984410898e-006,1,0.000313522235956043,-7.03629075360368e-006,0.999999940395355,0.000313522235956043,-7.03628984410898e-006,1,0.000313522235956043,-7.03628984410898e-006,1,0.000305500696413219,0.000140330230351537,0.999999940395355,0.000291181000648066,0.000403401500079781,-0.999999940395355,0.000377178512280807,-3.98013116864604e-006,-1,0.000377178541384637,-3.98013162339339e-006,-0.99999988079071,0.000377178483176976,-3.98013116864604e-006,-0.999999940395355,0.000377178483176976,-3.98013116864604e-006,-0.99999988079071,0.000350344431353733,0.000488451041746885,-1,0.000367543805623427,0.000172826199559495,2.74781406517377e-008,0.993210554122925,-0.116329796612263,2.89497421590568e-007,0.874788641929626,-0.484504669904709,2.89497450012277e-007,0.874788641929626,-0.484504729509354,2.74791496224225e-008,0.99321049451828,-0.116331242024899,4.44745893446452e-008,-0.909222424030304,-0.41631081700325,-2.10690288326987e-007,-0.520867049694061,-0.853637933731079,-2.10690245694423e-007,-0.520866990089417,-0.853637754917145,-2.10690274116132e-007,-0.520867049694061,-0.853637933731079,4.44710757108169e-008,-0.909219145774841,-0.416317969560623,1.76881684410546e-007,-0.441892832517624,0.897067904472351,1.76881684410546e-007,-0.441892832517624,0.897067844867706,1.76881684410546e-007,-0.441892802715302,0.897067844867706,1.76881698621401e-007,-0.441892832517624,0.897067904472351,-1,-7.7951030107215e-005,4.09350395784713e-005,-1,-1.04934470073204e-005,-8.07480464573018e-005,
- -1,-4.17995288444217e-005,8.87675560079515e-006,-1,-7.75585795054212e-005,4.13079469581135e-005,1,-2.15647105505923e-005,-8.25632669148035e-005,1,-0.00012170282570878,5.09969067934435e-005,1,-0.00012107447400922,5.15745559823699e-005,1,-6.66302512399852e-005,2.09754107345361e-005,1,1.88848571269773e-005,-0.000175496694282629,1,-2.15647105505923e-005,-8.25632669148035e-005,1,-6.66302512399852e-005,2.09754107345361e-005,1,1.88848553079879e-005,-0.000175496694282629,-1,-1.04934470073204e-005,-8.07480464573018e-005,-0.999999940395355,1.76060439116554e-005,-0.000161192860105075,-1,1.76060475496342e-005,-0.00016119287465699,-1,-4.17995288444217e-005,8.87675560079515e-006,1,-0.00012170282570878,5.09969067934435e-005,1,-0.000171482024597935,5.23620974490768e-006,1,-0.000171482024597935,5.23620974490768e-006,1,-0.00012107447400922,5.15745559823699e-005,-0.999999940395355,-0.000109036707726773,1.13971454993589e-005,-1,-7.7951030107215e-005,4.09350395784713e-005,-1,-7.75585795054212e-005,4.13079469581135e-005,-1,-0.000109036707726773,1.13971464088536e-005,-0.981881737709045,0.188048273324966,-0.023366117849946,-0.938532829284668,0.216566041111946,-0.26880344748497,-0.982990562915802,0.183441579341888,0.00886562094092369,0.981909334659576,0.187957853078842,-0.0229327920824289,0.991193056106567,0.110595740377903,0.0728347525000572,0.995189428329468,0.0817648619413376,0.05396793410182,0.979672253131866,0.167647048830986,0.110167257487774,0.982997357845306,0.177996918559074,0.0450910553336143,0.00132380367722362,0.902004957199097,0.431723564863205,0.00444498751312494,0.673383235931396,0.73928028345108,0.00292409467510879,0.767534494400024,0.641001045703888,0.000698961492162198,0.804160416126251,0.594411849975586,0.00132380367722362,0.902005076408386,0.431723594665527,0.00292409467510879,0.767534494400024,0.641001045703888,-0.00292389816604555,0.767535150051117,0.641000270843506,-0.000698878196999431,0.804160177707672,0.594412207603455,0.000698961492162198,0.804160416126251,0.594411849975586,-0.00292389816604555,0.767535150051117,0.641000270843506,
- -0.0044444901868701,0.67338353395462,0.739280045032501,-0.00132311077322811,0.902004957199097,0.431723594665527,-0.00132311077322811,0.902005076408386,0.431723594665527,-0.000698878196999431,0.804160177707672,0.594412207603455,0.0026144296862185,0.5606330037117,-0.828060269355774,0.00146254617720842,0.560321092605591,-0.828274190425873,0.00125286937691271,0.56026417016983,-0.828312933444977,0.00261442922055721,0.5606330037117,-0.828060269355774,0.00146254617720842,0.560321092605591,-0.828274190425873,-0.0014613086823374,0.560320913791656,-0.828274369239807,-0.00125175062566996,0.560264050960541,-0.828313112258911,0.00125286937691271,0.56026417016983,-0.828312933444977,-0.0014613086823374,0.560320913791656,-0.828274369239807,-0.00261251977644861,0.560632586479187,-0.828060448169708,-0.00261252000927925,0.560632586479187,-0.828060567378998,-0.00125175062566996,0.560264050960541,-0.828313112258911,-0.999698221683502,0.000411124463425949,0.0245614536106586,-0.999820351600647,0.000929871632251889,0.0189350247383118,-0.999820291996002,0.000929871632251889,0.0189350228756666,-0.999723613262177,0.000508760975208133,0.023502541705966,0.000698961492162198,0.804160416126251,0.594411849975586,-0.000698878196999431,0.804160177707672,0.594412207603455,-3.23627148191008e-007,0.727757453918457,0.685834646224976,-3.23627176612717e-007,0.727757394313812,0.68583470582962,0.999820232391357,0.000929440720938146,0.0189350731670856,0.999698400497437,0.000410573615226895,0.024554206058383,0.999723792076111,0.000508232857100666,0.0234966650605202,0.999820291996002,0.000929440779145807,0.0189350750297308,0.999698400497437,0.000410573615226895,0.024554206058383,0.999579310417175,-3.20250990171189e-007,0.0290033705532551,0.999579250812531,-3.2025096174948e-007,0.0290033705532551,0.999723792076111,0.000508232857100666,0.0234966650605202,1.4293560468559e-007,-1.0545096529313e-007,-1,1.4293560468559e-007,-1.0545096529313e-007,-1,1.4293560468559e-007,-1.0545096529313e-007,-1,1.4293560468559e-007,-1.0545096529313e-007,-1,-0.999579012393951,3.25778501064633e-007,0.0290164034813643,
- -0.999698221683502,0.000411124463425949,0.0245614536106586,-0.999723613262177,0.000508760975208133,0.023502541705966,-0.999578952789307,3.25778472642924e-007,0.029016399756074
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "UVChannel_1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *232 {
- a: 0.718026459217072,0.77487576007843,0.620723366737366,0.757407307624817,0.596680104732513,0.738339424133301,0.596680581569672,0.712196469306946,0.620804965496063,0.738332629203796,0.620804965496063,0.712202906608582,0.739280164241791,0.83125376701355,0.719395160675049,0.831258416175842,0.739281117916107,0.812187194824219,0.71939605474472,0.812187790870667,0.739280581474304,0.782818078994751,0.838054597377777,0.951547503471375,0.739281535148621,0.801884651184082,0.754231631755829,0.83125102519989,0.754231631755829,0.812186241149902,0.897790968418121,0.951700747013092,0.754231989383698,0.782820224761963,0.754231989383698,0.801884889602661,0.719395577907562,0.782814621925354,0.719396471977234,0.80188524723053,0.703923761844635,0.782812595367432,0.70392382144928,0.80188512802124,0.703923344612122,0.831261396408081,0.703923344612122,0.812188863754272,0.815214335918427,0.782819628715515,0.815412402153015,0.801885843276978,0.815214157104492,0.831251382827759,0.815411984920502,0.812184929847717,0.477487474679947,0.694524645805359,0.596754252910614,0.693118572235107,0.62241119146347,0.921994090080261,0.706267833709717,0.870061635971069,0.706582188606262,0.846180737018585,0.516720473766327,0.712422013282776,0.477449089288712,0.711787581443787,0.741542220115662,0.899407804012299,0.725823402404785,0.864745438098907,0.797700226306915,0.871967494487762,0.804308772087097,0.857978463172913,0.795360147953033,0.84022045135498,0.780576944351196,0.837988197803497,0.620723247528076,0.693125605583191,0.516720473766327,0.738112807273865,0.744551301002502,0.936707198619843,0.744992017745972,0.912827551364899,0.828948795795441,0.861124336719513,0.725418031215668,0.91799008846283,0.70999151468277,0.883196711540222,0.67041951417923,0.944260239601135,0.655656754970551,0.941896498203278,0.646866798400879,0.924059629440308,0.653600335121155,0.910129368305206,0.596754014492035,0.75741708278656,0.477487474679947,0.756010413169861,0.477449089288712,0.738747954368591,0.430597931146622,0.757376313209534,0.445260912179947,0.739231944084167,
- 0.430597931146622,0.69315779209137,0.898675858974457,0.988852143287659,0.445260912179947,0.711302757263184,0.641465961933136,0.831261038780212,0.837500035762787,0.988695561885834,0.897790968418121,0.951700747013092,0.838054597377777,0.951547503471375,0.837500035762787,0.988695561885834,0.898675858974457,0.988852143287659,0.906716048717499,0.927132546901703,0.917275965213776,0.948188126087189,0.906716048717499,0.927132546901703,0.917275965213776,0.948188126087189,0.82602071762085,0.959810853004456,0.825730443000793,0.979224443435669,0.82602071762085,0.959810853004456,0.825730443000793,0.979224443435669,0.64126980304718,0.812180638313293,0.641270160675049,0.801890969276428,0.829830408096313,0.861753284931183,0.641466617584229,0.78281307220459,0.736806809902191,0.958201229572296,0.751931846141815,0.958514451980591,0.75193178653717,0.984212756156921,0.736806809902191,0.984525918960571,0.716640710830688,0.985037744045258,0.716640710830688,0.957689106464386,0.593630135059357,0.967060565948486,0.576833307743073,0.932457089424133,0.813144505023956,0.983926892280579,0.593630373477936,0.967059254646301,0.567607462406158,0.984849274158478,0.65485680103302,0.957688987255096,0.587353765964508,0.845670938491821,0.578437149524689,0.891691327095032,0.872810304164886,0.891484797000885,0.863814532756805,0.937489688396454,0.595621585845947,0.83153247833252,0.595474302768707,0.812455534934998,0.595474541187286,0.801614880561829,0.595622301101685,0.782540321350098,0.842023074626923,0.782634735107422,0.842182636260986,0.801697611808777,0.842182099819183,0.81237268447876,0.842023015022278,0.831435561180115,0.718025743961334,0.675657987594604,0.768527030944824,0.693138957023621,0.768527567386627,0.757394671440125,0.719111800193787,0.774500250816345,0.813144564628601,0.958800733089447,0.576834440231323,0.932455122470856,0.65485680103302,0.985037624835968,0.567607700824738,0.984851658344269,0.639064133167267,0.966812372207642,0.634734570980072,0.952316701412201,0.63473516702652,0.952316701412201,0.639064133167267,0.966812372207642,0.629389941692352,
- 0.984513282775879,0.629390180110931,0.984513521194458
- }
- UVIndex: *188 {
- a: 0,1,4,5,41,102,78,79,80,81,93,76,92,32,90,30,31,6,7,9,8,18,10,12,19,13,6,8,14,10,16,17,12,20,18,19,21,7,22,23,9,22,60,74,23,75,77,20,21,16,24,25,17,26,13,14,27,43,46,47,44,35,36,32,31,94,95,74,60,75,96,97,77,98,99,25,24,27,100,101,26,48,49,50,51,47,46,37,38,39,40,36,35,81,82,83,78,102,103,104,105,0,2,3,5,4,11,15,58,61,62,63,64,65,66,62,65,67,15,68,69,58,63,70,71,64,72,11,61,73,90,91,30,93,43,44,45,76,28,29,3,33,34,3,2,42,33,2,52,53,54,42,53,55,56,54,55,57,59,56,57,28,34,59,84,85,111,110,106,86,80,79,107,87,113,112,87,88,114,113,108,89,83,82,109,84,110,115
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByPolygon"
- ReferenceInformationType: "Direct"
- Smoothing: *45 {
- a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
- }
- }
- LayerElementMaterial: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "AllSame"
- ReferenceInformationType: "IndexToDirect"
- Materials: *1 {
- a: 0
- }
- }
- Layer: 0 {
- Version: 100
- LayerElement: {
- Type: "LayerElementNormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementMaterial"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementSmoothing"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementUV"
- TypedIndex: 0
- }
- }
- }
- Geometry: 86804928, "Geometry::", "Mesh" {
- Properties70: {
- P: "Color", "ColorRGB", "Color", "",0,0,0
- }
- Vertices: *78 {
- a: 2.19355082511902,-3.46841621398926,1.41854381561279,-2.1934597492218,-3.46842384338379,1.41855144500732,2.1944055557251,3.34444046020508,1.26800346374512,-2.19440031051636,3.34444046020508,1.26800346374512,-5.79921913146973,3.49526977539063,-13.3516530990601,5.79886341094971,3.49526977539063,-13.3516492843628,5.71111631393433,-3.55295944213867,-10.0958890914917,-5.87265682220459,9.94716644287109,-35.5147666931152,5.87142896652222,9.94712829589844,-35.5146369934082,1.18374192714691,0.320854187011719,-45.6312294006348,-1.18253231048584,0.320827484130859,-45.6311187744141,1.35103595256805,4.6059684753418,-52.0008010864258,-1.35107696056366,4.60597229003906,-52.0008201599121,2.19440460205078,-3.55268478393555,-10.0947523117065,-2.19440126419067,-3.55268478393555,-10.0947523117065,2.19525980949402,3.4949836730957,-13.3527822494507,-2.19534111022949,3.49499893188477,-13.3527956008911,2.19375205039978,-1.8631420135498,3.63425731658936,2.19420409202576,1.73915863037109,3.55465221405029,-2.19417858123779,1.73915863037109,3.55465221405029,-2.19368124008179,-1.8631420135498,3.63425731658936,-8.89849472045898,2.05113983154297,-30.593433380127,8.89828205108643,2.05117034912109,-30.5935478210449,-9.30727291107178,-4.64540481567383,-30.6022491455078,9.304762840271,-4.64543914794922,-30.6021308898926,-5.71118211746216,-3.55296325683594,-10.0958852767944
- }
- PolygonVertexIndex: *90 {
- a: 11,12,7,-9,18,19,20,-18,16,3,2,-16,0,1,14,-14,7,12,-11,9,10,12,-12,17,0,13,15,2,-19,19,3,16,14,1,-21,14,16,4,-26,15,13,6,-6,2,3,19,-19,1,0,17,-21,9,11,-9,10,23,21,-8,23,24,6,13,14,-26,5,6,24,-23,22,24,9,-9,10,9,24,-24,8,7,21,-23,21,23,25,-5,22,21,4,16,15,-6
- }
- Edges: *45 {
- a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,17,18,19,22,23,25,27,29,31,33,36,37,38,40,41,42,53,54,55,56,58,59,63,66,67,69,71,78,83
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Normals: *270 {
- a: 5.93501590628875e-006,0.951318740844727,-0.308208674192429,5.93501590628875e-006,0.951318800449371,-0.308208674192429,5.9350154515414e-006,0.951318740844727,-0.308208644390106,5.93501590628875e-006,0.951318860054016,-0.308208703994751,0,0.0220930092036724,0.999755918979645,0,0.0220930092036724,0.999755918979645,0,0.0220930092036724,0.999755918979645,0,0.0220930092036724,0.999755918979645,-3.25644009535608e-007,0.998633801937103,-0.0522555969655514,9.01636610706191e-007,0.951974272727966,0.306178033351898,9.01632802197128e-007,0.951973915100098,0.306179255247116,-3.25638751519364e-007,0.998633742332459,-0.0522554330527782,1.09704171791236e-006,-0.950128436088562,0.311858773231506,1.09704194528604e-006,-0.950128376483917,0.311859160661697,-5.19481034189084e-007,-0.99928092956543,0.037917498499155,-5.19457557857095e-007,-0.99928092956543,0.0379169918596745,-0.915535926818848,-0.0233727525919676,-0.401556611061096,-0.943988382816315,-0.284816920757294,-0.166629120707512,-0.945601105690002,-0.166950970888138,-0.279223829507828,-2.9301343147381e-006,-0.905348062515259,-0.424670368432999,-2.92998902295949e-006,-0.905350744724274,-0.424664556980133,-6.33586159892729e-006,-0.82971602678299,-0.558185815811157,-6.33586159892729e-006,-0.82971602678299,-0.558185756206512,1,-0.000109438326035161,5.76263264520094e-005,1,-0.000109438318759203,5.76263264520094e-005,1,-0.000109438318759203,5.76263264520094e-005,1,-0.000109438326035161,5.76263264520094e-005,1,-0.000109438333311118,5.76263264520094e-005,1,-0.000109438326035161,5.76263264520094e-005,-1,-0.000120324366434943,6.35063406662084e-005,-1,-0.000120324366434943,6.35063406662084e-005,-1,-0.000120324373710901,6.35063406662084e-005,-1,-0.000120324373710901,6.35063406662084e-005,-1,-0.000120324366434943,6.35063406662084e-005,-1,-0.000120324366434943,6.35063406662084e-005,7.59000045036373e-007,0.419482976198196,0.907763183116913,7.59000045036373e-007,0.419482976198196,0.907763183116913,7.59000101879792e-007,0.419483006000519,0.907763242721558,7.59000101879792e-007,0.419483006000519,0.907763123512268,
- -1.89759475688334e-007,0.419482380151749,0.907763481140137,-1.89759461477479e-007,0.419482380151749,0.907763481140137,-1.89759489899188e-007,0.419482409954071,0.907763481140137,-1.89759461477479e-007,0.419482380151749,0.907763421535492,9.01632802197128e-007,0.951973915100098,0.306179255247116,9.01636610706191e-007,0.951974272727966,0.306178033351898,0,0.818452954292297,0.574573516845703,0,0.818452954292297,0.574573516845703,1.09704194528604e-006,-0.950128376483917,0.311859160661697,1.09704171791236e-006,-0.950128436088562,0.311858773231506,1.21404855235596e-006,-0.809803426265717,0.586701214313507,1.21404855235596e-006,-0.809803485870361,0.586701214313507,0.945631086826324,-0.166806280612946,-0.279208689928055,0.944055140018463,-0.28458034992218,-0.16665555536747,0.915561258792877,-0.0233527943491936,-0.401499927043915,-0.945601105690002,-0.166950970888138,-0.279223829507828,-0.990393936634064,0.0619309470057487,-0.123630680143833,-0.973194420337677,0.0602872632443905,-0.221941411495209,-0.915535926818848,-0.0233727525919676,-0.401556611061096,-7.96416486537055e-007,-0.993929862976074,-0.110016219317913,-7.96398637703533e-007,-0.993929028511047,-0.110022887587547,-1.21686173315538e-006,-0.998583674430847,0.0532044656574726,-5.19457557857095e-007,-0.99928092956543,0.0379169918596745,-5.19481034189084e-007,-0.99928092956543,0.037917498499155,-1.21686150578171e-006,-0.998583614826202,0.053204458206892,0.983405351638794,0.0629978999495506,0.17013281583786,0.983405351638794,0.0629978999495506,0.170132830739021,0.990401387214661,0.0618207827210426,-0.123625583946705,0.973206758499146,0.0601941086351871,-0.221912324428558,0.973206758499146,0.0601941086351871,-0.221912324428558,0.990401387214661,0.0618207827210426,-0.123625583946705,0.945631086826324,-0.166806280612946,-0.279208689928055,0.915561258792877,-0.0233527943491936,-0.401499927043915,-2.92998902295949e-006,-0.905350744724274,-0.424664556980133,-2.9301343147381e-006,-0.905348062515259,-0.424670368432999,-7.96398637703533e-007,-0.993929028511047,-0.110022887587547,
- -7.96416486537055e-007,-0.993929862976074,-0.110016219317913,-3.01873456010071e-007,0.528933107852936,0.848663449287415,-3.01873484431781e-007,0.528933167457581,0.848663508892059,-3.01873484431781e-007,0.528933167457581,0.848663508892059,-3.01873484431781e-007,0.528933107852936,0.848663449287415,-0.973194420337677,0.0602872632443905,-0.221941411495209,-0.990393936634064,0.0619309470057487,-0.123630680143833,-0.983387589454651,0.0631496086716652,0.170179396867752,-0.983387529850006,0.0631496012210846,0.170179381966591,-1.34919184802129e-006,0.996511220932007,-0.0834584534168243,-1.34919184802129e-006,0.996511161327362,-0.0834584534168243,-1.34919196170813e-006,0.996511280536652,-0.0834584608674049,-3.25644009535608e-007,0.998633801937103,-0.0522555969655514,-3.25638751519364e-007,0.998633742332459,-0.0522554330527782,-1.34919196170813e-006,0.996511280536652,-0.0834584608674049
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "UVChannel_1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *120 {
- a: 0.900907397270203,0.51922208070755,0.900910019874573,0.538964569568634,0.900911092758179,0.554273664951324,0.968482136726379,0.643178880214691,0.928401708602905,0.644879758358002,0.968482136726379,0.643178880214691,0.928401708602905,0.644879758358002,0.912504732608795,0.863914310932159,0.931023716926575,0.960283517837524,0.959636151790619,0.929436683654785,0.810051441192627,0.647458672523499,0.809129953384399,0.689522385597229,0.967708349227905,0.625024497509003,0.927610993385315,0.626275658607483,0.927610993385315,0.626275658607483,0.967708349227905,0.625024497509003,0.876864552497864,0.538964569568634,0.876863718032837,0.554273664951324,0.876867055892944,0.51922208070755,0.876858592033386,0.634389698505402,0.912504732608795,0.863914310932159,0.867547750473022,0.560738444328308,0.995323896408081,0.696268200874329,0.993189573287964,0.710242807865143,0.976453185081482,0.718396544456482,0.96367084980011,0.711688816547394,0.96367084980011,0.711688816547394,0.976453185081482,0.718396544456482,0.993189573287964,0.710242807865143,0.995323896408081,0.696268200874329,0.896290719509125,0.875123560428619,0.881484925746918,0.875123560428619,0.856709659099579,0.780168116092682,0.921059310436249,0.780168116092682,0.9009108543396,0.441142708063126,0.900906324386597,0.504229485988617,0.876868486404419,0.504229485988617,0.876863241195679,0.441142708063126,0.95849609375,0.836354374885559,0.765566110610962,0.560722947120667,0.785273790359497,0.448206067085266,0.804542541503906,0.44820249080658,0.828590154647827,0.448206067085266,0.847859382629395,0.448215126991272,0.937644243240356,0.729188024997711,0.840129971504211,0.729188024997711,0.955485343933105,0.740087985992432,0.958487033843994,0.836354076862335,0.955477714538574,0.740089356899261,0.823935508728027,0.689524054527283,0.931023716926575,0.960283517837524,0.90091609954834,0.634389698505402,0.920661449432373,0.634383499622345,0.857111811637878,0.634383499622345,0.823017358779907,0.647459626197815,0.959636151790619,0.929436683654785,0.995174646377563,0.838666796684265,
- 0.995174646377563,0.838666796684265,0.995033740997314,0.724431157112122,0.995033740997314,0.724431157112122
- }
- UVIndex: *90 {
- a: 30,31,32,33,1,16,18,0,19,17,2,51,35,36,37,34,7,8,9,10,54,49,11,28,29,5,4,26,27,24,25,6,3,22,23,3,6,13,15,4,5,12,14,2,17,16,1,36,35,0,18,55,50,20,9,56,38,7,21,39,40,41,42,43,46,58,57,47,47,57,55,20,54,10,39,21,33,32,45,44,38,56,59,48,44,45,53,19,51,52
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByPolygon"
- ReferenceInformationType: "Direct"
- Smoothing: *21 {
- a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
- }
- }
- LayerElementMaterial: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "AllSame"
- ReferenceInformationType: "IndexToDirect"
- Materials: *1 {
- a: 0
- }
- }
- Layer: 0 {
- Version: 100
- LayerElement: {
- Type: "LayerElementNormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementMaterial"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementSmoothing"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementUV"
- TypedIndex: 0
- }
- }
- }
- Geometry: 86826528, "Geometry::", "Mesh" {
- Properties70: {
- P: "Color", "ColorRGB", "Color", "",0,0,0
- }
- Vertices: *153 {
- a: 5.5000114440918,7.6575870513916,0,-5.75391721725464,0.709403991699219,-4.71097183227539,-5.75644969940186,-12.7612571716309,32.0256576538086,5.75609397888184,-12.7612457275391,32.0256462097168,5.75395727157593,-5.94838714599609,31.8751029968262,-5.75387859344482,-5.94838714599609,31.8751029968262,5.7556004524231,-11.008602142334,34.1719436645508,5.75447463989258,-7.44818878173828,34.0932693481445,-5.75448703765869,-7.44819641113281,34.0932731628418,-5.75582075119019,-11.0086097717285,34.1719589233398,2.3395824432373,-5.94838714599609,31.8751029968262,-2.33950304985046,-5.94838333129883,31.8751068115234,2.33976578712463,-7.44819259643555,34.0932693481445,-2.33977770805359,-7.44819259643555,34.0932693481445,-2.34038281440735,-11.0086097717285,34.1719551086426,2.34016036987305,-11.008602142334,34.171947479248,-2.33919024467468,-6.05490875244141,20.9186382293701,-5.75647115707397,-5.43608474731445,17.3549728393555,5.75607442855835,-5.43607711791992,17.3549785614014,5.75393915176392,-1.56026077270508,19.2641906738281,-5.75389957427979,-1.56026077270508,19.2641906738281,-2.33975458145142,-1.56040191650391,19.2494773864746,2.33979201316834,-1.56040191650391,19.2494773864746,2.33927202224731,-6.05490875244141,20.9186401367188,-5.75646829605103,-12.8700103759766,20.8405380249023,5.75607681274414,-12.8700065612793,20.8405418395996,5.75394153594971,-6.05456924438477,20.9539756774902,-5.75389671325684,-6.05456924438477,20.9539756774902,-8.88472461700439,-7.01129531860352,-4.76837158203125e-006,5.75391721725464,0.709400177001953,-4.71097087860107,-5.49988460540771,7.6575927734375,-6.67572021484375e-006,8.88457584381104,-7.01129531860352,-1.04904174804688e-005,2.34032154083252,-12.7612533569336,32.0256538391113,-2.34067797660828,-12.7612571716309,32.0256576538086,-2.33926796913147,-12.8703498840332,20.8052082061768,-2.33982992172241,-5.43622207641602,17.3402614593506,2.3398597240448,-5.43621826171875,17.3402614593506,2.33934211730957,-12.8703498840332,20.8052062988281,8.81730556488037,-6.84539413452148,-0.101239204406738,
- -2.40829277038574,7.66194915771484,-0.0143547058105469,-2.29864072799683,4.62325286865234,6.33297348022461,2.2987380027771,4.62325477600098,6.33297348022461,2.40839171409607,7.66195106506348,-0.0143527984619141,2.50204634666443,2.88285827636719,-3.24216556549072,-2.50199437141418,2.88286018371582,-3.24216461181641,-2.40829133987427,15.9753112792969,-0.0143585205078125,-2.35098505020142,15.1976680755615,2.64157962799072,2.35108709335327,15.1976699829102,2.64158153533936,2.40839385986328,15.9753112792969,-0.0143585205078125,2.50205063819885,14.1875782012939,-3.24216508865356,-2.5019896030426,14.1875801086426,-3.24216747283936
- }
- PolygonVertexIndex: *188 {
- a: 31,18,36,35,17,-29,45,46,47,-49,0,38,-30,20,30,28,-18,8,9,14,-14,6,7,12,-16,5,8,13,-12,7,4,10,-13,3,6,15,-33,9,2,33,-15,2,24,34,-34,37,25,3,-33,4,26,23,-11,27,5,11,-17,19,26,25,-19,24,27,20,-18,17,35,34,-25,37,36,18,-26,19,22,23,-27,16,21,20,-28,4,7,6,3,25,-27,2,9,8,5,27,-25,48,49,50,-46,28,1,29,38,-32,22,21,35,-37,10,23,37,-33,16,11,33,-35,21,16,34,-36,23,22,36,-38,11,13,14,-34,12,10,32,-16,30,1,-29,0,19,18,31,-39,30,20,21,40,-40,21,22,41,-41,22,19,0,42,-42,0,29,43,-43,29,1,44,-44,1,30,39,-45,39,40,46,-46,40,41,47,-47,41,42,48,-48,42,43,49,-49,43,44,50,-50,44,39,45,-51
- }
- Edges: *94 {
- a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,33,35,36,37,38,39,41,42,43,45,46,48,49,50,51,53,55,56,57,58,59,60,61,62,64,66,69,73,74,77,78,93,94,95,97,98,100,102,103,105,107,109,111,113,130,133,140,141,142,144,145,149,150,153,154,157,158,162,165,167,169,173,177,181
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Normals: *564 {
- a: 4.44710757108169e-008,-0.909219145774841,-0.416317969560623,2.58501586358761e-007,-0.99590277671814,0.0904304906725883,2.58501586358761e-007,-0.99590277671814,0.0904304906725883,2.58501586358761e-007,-0.995902836322784,0.0904304906725883,2.58501586358761e-007,-0.99590277671814,0.0904304906725883,4.44745893446452e-008,-0.909222424030304,-0.41631081700325,2.74791496224225e-008,0.99321049451828,-0.116331242024899,-3.23627176612717e-007,0.727757394313812,0.68583470582962,-3.23627148191008e-007,0.727757453918457,0.685834646224976,2.74781406517377e-008,0.993210554122925,-0.116329796612263,0.981909334659576,0.187957853078842,-0.0229327920824289,0.982997357845306,0.177996918559074,0.0450910553336143,0.938536465167999,0.21654962003231,-0.268803894519806,-0.991123676300049,0.110461831092834,0.0739734470844269,-0.981881737709045,0.188048273324966,-0.023366117849946,-0.982990562915802,0.183441579341888,0.00886562094092369,-0.995148360729218,0.081681527197361,0.0548443235456944,1.00857654672382e-007,0.478616148233414,0.878024220466614,8.14175280083873e-007,-0.41873824596405,0.908106982707977,8.14291126971511e-007,-0.418614625930786,0.908163964748383,1.00537725700178e-007,0.478743195533752,0.877954959869385,1.37581753278937e-006,-0.418724179267883,0.908113479614258,4.66176857116807e-008,0.478629797697067,0.878016829490662,4.64939162725386e-008,0.478728741407394,0.877962827682495,1.37565484692459e-006,-0.418630361557007,0.908156752586365,-1.08653375718859e-006,0.95754611492157,0.288280010223389,1.00857654672382e-007,0.478616148233414,0.878024220466614,1.00537725700178e-007,0.478743195533752,0.877954959869385,-1.0865470585486e-006,0.957556307315826,0.288246423006058,4.66176857116807e-008,0.478629797697067,0.878016829490662,6.7395426128769e-008,0.957547247409821,0.288276493549347,6.74466420491626e-008,0.957555592060089,0.288248807191849,4.64939162725386e-008,0.478728741407394,0.877962827682495,1.5985884829206e-006,-0.940319061279297,0.340294152498245,1.37581753278937e-006,-0.418724179267883,0.908113479614258,
- 1.37565484692459e-006,-0.418630361557007,0.908156752586365,1.59860996973293e-006,-0.940313279628754,0.340310156345367,8.14175280083873e-007,-0.41873824596405,0.908106982707977,5.00284102145088e-007,-0.940321147441864,0.340288281440735,5.00276144066447e-007,-0.940313160419464,0.340310275554657,8.14291126971511e-007,-0.418614625930786,0.908163964748383,5.00284102145088e-007,-0.940321147441864,0.340288281440735,-0.00394238950684667,-0.847836792469025,-0.530242502689362,-0.00397934997454286,-0.844639360904694,-0.535321116447449,5.00276144066447e-007,-0.940313160419464,0.340310275554657,0.00398201635107398,-0.844642579555511,-0.535315811634064,0.00394507823511958,-0.847837686538696,-0.530241191387177,1.5985884829206e-006,-0.940319061279297,0.340294152498245,1.59860996973293e-006,-0.940313279628754,0.340310156345367,6.7395426128769e-008,0.957547247409821,0.288276493549347,5.91617947520717e-007,0.999952733516693,-0.00972198694944382,5.91618004364136e-007,0.999952793121338,-0.00972198788076639,6.74466420491626e-008,0.957555592060089,0.288248807191849,-1.14892100100406e-006,0.999952673912048,-0.00972215924412012,-1.08653375718859e-006,0.95754611492157,0.288280010223389,-1.0865470585486e-006,0.957556307315826,0.288246423006058,-1.14892111469089e-006,0.999952793121338,-0.00972215924412012,0.991193056106567,0.110595740377903,0.0728347525000572,0.999999940395355,0.000291181000648066,0.000403401500079781,1,0.000305500696413219,0.000140330230351537,0.995189428329468,0.0817648619413376,0.05396793410182,-1,0.000367543805623427,0.000172826199559495,-0.99999988079071,0.000350344431353733,0.000488451041746885,-0.991123676300049,0.110461831092834,0.0739734470844269,-0.995148360729218,0.081681527197361,0.0548443235456944,-0.00666291266679764,-0.423480898141861,-0.905880510807037,-0.00666291266679764,-0.423480868339539,-0.905880510807037,-0.00397934997454286,-0.844639360904694,-0.535321116447449,-0.00394238950684667,-0.847836792469025,-0.530242502689362,0.00398201635107398,-0.844642579555511,-0.535315811634064,0.00666577974334359,-0.42348051071167,-0.905880749225616,
- 0.0066657792776823,-0.42348051071167,-0.905880689620972,0.00394507823511958,-0.847837686538696,-0.530241191387177,-0.0044444901868701,0.67338353395462,0.739280045032501,-0.00292389816604555,0.767535150051117,0.641000270843506,-0.00688986293971539,0.350031852722168,0.936712503433228,-0.0068898624740541,0.350031852722168,0.936712443828583,0.00689009018242359,0.350031703710556,0.936712443828583,0.00292409467510879,0.767534494400024,0.641001045703888,0.00444498751312494,0.673383235931396,0.73928028345108,0.00689009018242359,0.350031733512878,0.936712503433228,1,0.000313522235956043,-7.03628984410898e-006,1,0.000313522235956043,-7.03629075360368e-006,0.999999940395355,0.000313522235956043,-7.03628984410898e-006,1,0.000313522235956043,-7.03628984410898e-006,1,0.000305500696413219,0.000140330230351537,0.999999940395355,0.000291181000648066,0.000403401500079781,-0.999999940395355,0.000377178512280807,-3.98013116864604e-006,-1,0.000377178541384637,-3.98013162339339e-006,-0.99999988079071,0.000377178483176976,-3.98013116864604e-006,-0.999999940395355,0.000377178483176976,-3.98013116864604e-006,-0.99999988079071,0.000350344431353733,0.000488451041746885,-1,0.000367543805623427,0.000172826199559495,2.74781406517377e-008,0.993210554122925,-0.116329796612263,2.89497421590568e-007,0.874788641929626,-0.484504669904709,2.89497450012277e-007,0.874788641929626,-0.484504729509354,2.74791496224225e-008,0.99321049451828,-0.116331242024899,4.44745893446452e-008,-0.909222424030304,-0.41631081700325,-2.10690288326987e-007,-0.520867049694061,-0.853637933731079,-2.10690245694423e-007,-0.520866990089417,-0.853637754917145,-2.10690274116132e-007,-0.520867049694061,-0.853637933731079,4.44710757108169e-008,-0.909219145774841,-0.416317969560623,1.76881684410546e-007,-0.441892832517624,0.897067904472351,1.76881684410546e-007,-0.441892832517624,0.897067844867706,1.76881684410546e-007,-0.441892802715302,0.897067844867706,1.76881698621401e-007,-0.441892832517624,0.897067904472351,-1,-7.7951030107215e-005,4.09350395784713e-005,-1,-1.04934470073204e-005,-8.07480464573018e-005,
- -1,-4.17995288444217e-005,8.87675560079515e-006,-1,-7.75585795054212e-005,4.13079469581135e-005,1,-2.15647105505923e-005,-8.25632669148035e-005,1,-0.00012170282570878,5.09969067934435e-005,1,-0.00012107447400922,5.15745559823699e-005,1,-6.66302512399852e-005,2.09754107345361e-005,1,1.88848571269773e-005,-0.000175496694282629,1,-2.15647105505923e-005,-8.25632669148035e-005,1,-6.66302512399852e-005,2.09754107345361e-005,1,1.88848553079879e-005,-0.000175496694282629,-1,-1.04934470073204e-005,-8.07480464573018e-005,-0.999999940395355,1.76060439116554e-005,-0.000161192860105075,-1,1.76060475496342e-005,-0.00016119287465699,-1,-4.17995288444217e-005,8.87675560079515e-006,1,-0.00012170282570878,5.09969067934435e-005,1,-0.000171482024597935,5.23620974490768e-006,1,-0.000171482024597935,5.23620974490768e-006,1,-0.00012107447400922,5.15745559823699e-005,-0.999999940395355,-0.000109036707726773,1.13971454993589e-005,-1,-7.7951030107215e-005,4.09350395784713e-005,-1,-7.75585795054212e-005,4.13079469581135e-005,-1,-0.000109036707726773,1.13971464088536e-005,-0.981881737709045,0.188048273324966,-0.023366117849946,-0.938532829284668,0.216566041111946,-0.26880344748497,-0.982990562915802,0.183441579341888,0.00886562094092369,0.981909334659576,0.187957853078842,-0.0229327920824289,0.991193056106567,0.110595740377903,0.0728347525000572,0.995189428329468,0.0817648619413376,0.05396793410182,0.979672253131866,0.167647048830986,0.110167257487774,0.982997357845306,0.177996918559074,0.0450910553336143,0.00132380367722362,0.902004957199097,0.431723564863205,0.00444498751312494,0.673383235931396,0.73928028345108,0.00292409467510879,0.767534494400024,0.641001045703888,0.000698961492162198,0.804160416126251,0.594411849975586,0.00132380367722362,0.902005076408386,0.431723594665527,0.00292409467510879,0.767534494400024,0.641001045703888,-0.00292389816604555,0.767535150051117,0.641000270843506,-0.000698878196999431,0.804160177707672,0.594412207603455,0.000698961492162198,0.804160416126251,0.594411849975586,-0.00292389816604555,0.767535150051117,0.641000270843506,
- -0.0044444901868701,0.67338353395462,0.739280045032501,-0.00132311077322811,0.902004957199097,0.431723594665527,-0.00132311077322811,0.902005076408386,0.431723594665527,-0.000698878196999431,0.804160177707672,0.594412207603455,0.0026144296862185,0.5606330037117,-0.828060269355774,0.00146254617720842,0.560321092605591,-0.828274190425873,0.00125286937691271,0.56026417016983,-0.828312933444977,0.00261442922055721,0.5606330037117,-0.828060269355774,0.00146254617720842,0.560321092605591,-0.828274190425873,-0.0014613086823374,0.560320913791656,-0.828274369239807,-0.00125175062566996,0.560264050960541,-0.828313112258911,0.00125286937691271,0.56026417016983,-0.828312933444977,-0.0014613086823374,0.560320913791656,-0.828274369239807,-0.00261251977644861,0.560632586479187,-0.828060448169708,-0.00261252000927925,0.560632586479187,-0.828060567378998,-0.00125175062566996,0.560264050960541,-0.828313112258911,-0.999698221683502,0.000411124463425949,0.0245614536106586,-0.999820351600647,0.000929871632251889,0.0189350247383118,-0.999820291996002,0.000929871632251889,0.0189350228756666,-0.999723613262177,0.000508760975208133,0.023502541705966,0.000698961492162198,0.804160416126251,0.594411849975586,-0.000698878196999431,0.804160177707672,0.594412207603455,-3.23627148191008e-007,0.727757453918457,0.685834646224976,-3.23627176612717e-007,0.727757394313812,0.68583470582962,0.999820232391357,0.000929440720938146,0.0189350731670856,0.999698400497437,0.000410573615226895,0.024554206058383,0.999723792076111,0.000508232857100666,0.0234966650605202,0.999820291996002,0.000929440779145807,0.0189350750297308,0.999698400497437,0.000410573615226895,0.024554206058383,0.999579310417175,-3.20250990171189e-007,0.0290033705532551,0.999579250812531,-3.2025096174948e-007,0.0290033705532551,0.999723792076111,0.000508232857100666,0.0234966650605202,1.4293560468559e-007,-1.0545096529313e-007,-1,1.4293560468559e-007,-1.0545096529313e-007,-1,1.4293560468559e-007,-1.0545096529313e-007,-1,1.4293560468559e-007,-1.0545096529313e-007,-1,-0.999579012393951,3.25778501064633e-007,0.0290164034813643,
- -0.999698221683502,0.000411124463425949,0.0245614536106586,-0.999723613262177,0.000508760975208133,0.023502541705966,-0.999578952789307,3.25778472642924e-007,0.029016399756074
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "UVChannel_1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *232 {
- a: 0.718026459217072,0.77487576007843,0.620723366737366,0.757407307624817,0.596680104732513,0.738339424133301,0.596680581569672,0.712196469306946,0.620804965496063,0.738332629203796,0.620804965496063,0.712202906608582,0.739280164241791,0.83125376701355,0.719395160675049,0.831258416175842,0.739281117916107,0.812187194824219,0.71939605474472,0.812187790870667,0.739280581474304,0.782818078994751,0.838054597377777,0.951547503471375,0.739281535148621,0.801884651184082,0.754231631755829,0.83125102519989,0.754231631755829,0.812186241149902,0.897790968418121,0.951700747013092,0.754231989383698,0.782820224761963,0.754231989383698,0.801884889602661,0.719395577907562,0.782814621925354,0.719396471977234,0.80188524723053,0.703923761844635,0.782812595367432,0.70392382144928,0.80188512802124,0.703923344612122,0.831261396408081,0.703923344612122,0.812188863754272,0.815214335918427,0.782819628715515,0.815412402153015,0.801885843276978,0.815214157104492,0.831251382827759,0.815411984920502,0.812184929847717,0.477487474679947,0.694524645805359,0.596754252910614,0.693118572235107,0.62241119146347,0.921994090080261,0.706267833709717,0.870061635971069,0.706582188606262,0.846180737018585,0.516720473766327,0.712422013282776,0.477449089288712,0.711787581443787,0.741542220115662,0.899407804012299,0.725823402404785,0.864745438098907,0.797700226306915,0.871967494487762,0.804308772087097,0.857978463172913,0.795360147953033,0.84022045135498,0.780576944351196,0.837988197803497,0.620723247528076,0.693125605583191,0.516720473766327,0.738112807273865,0.744551301002502,0.936707198619843,0.744992017745972,0.912827551364899,0.828948795795441,0.861124336719513,0.725418031215668,0.91799008846283,0.70999151468277,0.883196711540222,0.67041951417923,0.944260239601135,0.655656754970551,0.941896498203278,0.646866798400879,0.924059629440308,0.653600335121155,0.910129368305206,0.596754014492035,0.75741708278656,0.477487474679947,0.756010413169861,0.477449089288712,0.738747954368591,0.430597931146622,0.757376313209534,0.445260912179947,0.739231944084167,
- 0.430597931146622,0.69315779209137,0.898675858974457,0.988852143287659,0.445260912179947,0.711302757263184,0.641465961933136,0.831261038780212,0.837500035762787,0.988695561885834,0.897790968418121,0.951700747013092,0.838054597377777,0.951547503471375,0.837500035762787,0.988695561885834,0.898675858974457,0.988852143287659,0.906716048717499,0.927132546901703,0.917275965213776,0.948188126087189,0.906716048717499,0.927132546901703,0.917275965213776,0.948188126087189,0.82602071762085,0.959810853004456,0.825730443000793,0.979224443435669,0.82602071762085,0.959810853004456,0.825730443000793,0.979224443435669,0.64126980304718,0.812180638313293,0.641270160675049,0.801890969276428,0.829830408096313,0.861753284931183,0.641466617584229,0.78281307220459,0.736806809902191,0.958201229572296,0.751931846141815,0.958514451980591,0.75193178653717,0.984212756156921,0.736806809902191,0.984525918960571,0.716640710830688,0.985037744045258,0.716640710830688,0.957689106464386,0.593630135059357,0.967060565948486,0.576833307743073,0.932457089424133,0.813144505023956,0.983926892280579,0.593630373477936,0.967059254646301,0.567607462406158,0.984849274158478,0.65485680103302,0.957688987255096,0.587353765964508,0.845670938491821,0.578437149524689,0.891691327095032,0.872810304164886,0.891484797000885,0.863814532756805,0.937489688396454,0.595621585845947,0.83153247833252,0.595474302768707,0.812455534934998,0.595474541187286,0.801614880561829,0.595622301101685,0.782540321350098,0.842023074626923,0.782634735107422,0.842182636260986,0.801697611808777,0.842182099819183,0.81237268447876,0.842023015022278,0.831435561180115,0.718025743961334,0.675657987594604,0.768527030944824,0.693138957023621,0.768527567386627,0.757394671440125,0.719111800193787,0.774500250816345,0.813144564628601,0.958800733089447,0.576834440231323,0.932455122470856,0.65485680103302,0.985037624835968,0.567607700824738,0.984851658344269,0.639064133167267,0.966812372207642,0.634734570980072,0.952316701412201,0.63473516702652,0.952316701412201,0.639064133167267,0.966812372207642,0.629389941692352,
- 0.984513282775879,0.629390180110931,0.984513521194458
- }
- UVIndex: *188 {
- a: 0,1,4,5,41,102,78,79,80,81,93,76,92,32,90,30,31,6,7,9,8,18,10,12,19,13,6,8,14,10,16,17,12,20,18,19,21,7,22,23,9,22,60,74,23,75,77,20,21,16,24,25,17,26,13,14,27,43,46,47,44,35,36,32,31,94,95,74,60,75,96,97,77,98,99,25,24,27,100,101,26,48,49,50,51,47,46,37,38,39,40,36,35,81,82,83,78,102,103,104,105,0,2,3,5,4,11,15,58,61,62,63,64,65,66,62,65,67,15,68,69,58,63,70,71,64,72,11,61,73,90,91,30,93,43,44,45,76,28,29,3,33,34,3,2,42,33,2,52,53,54,42,53,55,56,54,55,57,59,56,57,28,34,59,84,85,111,110,106,86,80,79,107,87,113,112,87,88,114,113,108,89,83,82,109,84,110,115
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByPolygon"
- ReferenceInformationType: "Direct"
- Smoothing: *45 {
- a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
- }
- }
- LayerElementMaterial: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "AllSame"
- ReferenceInformationType: "IndexToDirect"
- Materials: *1 {
- a: 0
- }
- }
- Layer: 0 {
- Version: 100
- LayerElement: {
- Type: "LayerElementNormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementMaterial"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementSmoothing"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementUV"
- TypedIndex: 0
- }
- }
- }
- Geometry: 86834416, "Geometry::", "Mesh" {
- Properties70: {
- P: "Color", "ColorRGB", "Color", "",0,0,0
- }
- Vertices: *78 {
- a: 2.19355082511902,-3.46841621398926,1.41854381561279,-2.1934597492218,-3.46842384338379,1.41855144500732,2.1944055557251,3.34444046020508,1.26800346374512,-2.19440031051636,3.34444046020508,1.26800346374512,-5.79921913146973,3.49526977539063,-13.3516530990601,5.79886341094971,3.49526977539063,-13.3516492843628,5.71111631393433,-3.55295944213867,-10.0958890914917,-5.87265682220459,9.94716644287109,-35.5147666931152,5.87142896652222,9.94712829589844,-35.5146369934082,1.18374192714691,0.320854187011719,-45.6312294006348,-1.18253231048584,0.320827484130859,-45.6311187744141,1.35103595256805,4.6059684753418,-52.0008010864258,-1.35107696056366,4.60597229003906,-52.0008201599121,2.19440460205078,-3.55268478393555,-10.0947523117065,-2.19440126419067,-3.55268478393555,-10.0947523117065,2.19525980949402,3.4949836730957,-13.3527822494507,-2.19534111022949,3.49499893188477,-13.3527956008911,2.19375205039978,-1.8631420135498,3.63425731658936,2.19420409202576,1.73915863037109,3.55465221405029,-2.19417858123779,1.73915863037109,3.55465221405029,-2.19368124008179,-1.8631420135498,3.63425731658936,-8.89849472045898,2.05113983154297,-30.593433380127,8.89828205108643,2.05117034912109,-30.5935478210449,-9.30727291107178,-4.64540481567383,-30.6022491455078,9.304762840271,-4.64543914794922,-30.6021308898926,-5.71118211746216,-3.55296325683594,-10.0958852767944
- }
- PolygonVertexIndex: *90 {
- a: 11,12,7,-9,18,19,20,-18,16,3,2,-16,0,1,14,-14,7,12,-11,9,10,12,-12,17,0,13,15,2,-19,19,3,16,14,1,-21,14,16,4,-26,15,13,6,-6,2,3,19,-19,1,0,17,-21,9,11,-9,10,23,21,-8,23,24,6,13,14,-26,5,6,24,-23,22,24,9,-9,10,9,24,-24,8,7,21,-23,21,23,25,-5,22,21,4,16,15,-6
- }
- Edges: *45 {
- a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,17,18,19,22,23,25,27,29,31,33,36,37,38,40,41,42,53,54,55,56,58,59,63,66,67,69,71,78,83
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Normals: *270 {
- a: 5.93501590628875e-006,0.951318740844727,-0.308208674192429,5.93501590628875e-006,0.951318800449371,-0.308208674192429,5.9350154515414e-006,0.951318740844727,-0.308208644390106,5.93501590628875e-006,0.951318860054016,-0.308208703994751,0,0.0220930092036724,0.999755918979645,0,0.0220930092036724,0.999755918979645,0,0.0220930092036724,0.999755918979645,0,0.0220930092036724,0.999755918979645,-3.25644009535608e-007,0.998633801937103,-0.0522555969655514,9.01636610706191e-007,0.951974272727966,0.306178033351898,9.01632802197128e-007,0.951973915100098,0.306179255247116,-3.25638751519364e-007,0.998633742332459,-0.0522554330527782,1.09704171791236e-006,-0.950128436088562,0.311858773231506,1.09704194528604e-006,-0.950128376483917,0.311859160661697,-5.19481034189084e-007,-0.99928092956543,0.037917498499155,-5.19457557857095e-007,-0.99928092956543,0.0379169918596745,-0.915535926818848,-0.0233727525919676,-0.401556611061096,-0.943988382816315,-0.284816920757294,-0.166629120707512,-0.945601105690002,-0.166950970888138,-0.279223829507828,-2.9301343147381e-006,-0.905348062515259,-0.424670368432999,-2.92998902295949e-006,-0.905350744724274,-0.424664556980133,-6.33586159892729e-006,-0.82971602678299,-0.558185815811157,-6.33586159892729e-006,-0.82971602678299,-0.558185756206512,1,-0.000109438326035161,5.76263264520094e-005,1,-0.000109438318759203,5.76263264520094e-005,1,-0.000109438318759203,5.76263264520094e-005,1,-0.000109438326035161,5.76263264520094e-005,1,-0.000109438333311118,5.76263264520094e-005,1,-0.000109438326035161,5.76263264520094e-005,-1,-0.000120324366434943,6.35063406662084e-005,-1,-0.000120324366434943,6.35063406662084e-005,-1,-0.000120324373710901,6.35063406662084e-005,-1,-0.000120324373710901,6.35063406662084e-005,-1,-0.000120324366434943,6.35063406662084e-005,-1,-0.000120324366434943,6.35063406662084e-005,7.59000045036373e-007,0.419482976198196,0.907763183116913,7.59000045036373e-007,0.419482976198196,0.907763183116913,7.59000101879792e-007,0.419483006000519,0.907763242721558,7.59000101879792e-007,0.419483006000519,0.907763123512268,
- -1.89759475688334e-007,0.419482380151749,0.907763481140137,-1.89759461477479e-007,0.419482380151749,0.907763481140137,-1.89759489899188e-007,0.419482409954071,0.907763481140137,-1.89759461477479e-007,0.419482380151749,0.907763421535492,9.01632802197128e-007,0.951973915100098,0.306179255247116,9.01636610706191e-007,0.951974272727966,0.306178033351898,0,0.818452954292297,0.574573516845703,0,0.818452954292297,0.574573516845703,1.09704194528604e-006,-0.950128376483917,0.311859160661697,1.09704171791236e-006,-0.950128436088562,0.311858773231506,1.21404855235596e-006,-0.809803426265717,0.586701214313507,1.21404855235596e-006,-0.809803485870361,0.586701214313507,0.945631086826324,-0.166806280612946,-0.279208689928055,0.944055140018463,-0.28458034992218,-0.16665555536747,0.915561258792877,-0.0233527943491936,-0.401499927043915,-0.945601105690002,-0.166950970888138,-0.279223829507828,-0.990393936634064,0.0619309470057487,-0.123630680143833,-0.973194420337677,0.0602872632443905,-0.221941411495209,-0.915535926818848,-0.0233727525919676,-0.401556611061096,-7.96416486537055e-007,-0.993929862976074,-0.110016219317913,-7.96398637703533e-007,-0.993929028511047,-0.110022887587547,-1.21686173315538e-006,-0.998583674430847,0.0532044656574726,-5.19457557857095e-007,-0.99928092956543,0.0379169918596745,-5.19481034189084e-007,-0.99928092956543,0.037917498499155,-1.21686150578171e-006,-0.998583614826202,0.053204458206892,0.983405351638794,0.0629978999495506,0.17013281583786,0.983405351638794,0.0629978999495506,0.170132830739021,0.990401387214661,0.0618207827210426,-0.123625583946705,0.973206758499146,0.0601941086351871,-0.221912324428558,0.973206758499146,0.0601941086351871,-0.221912324428558,0.990401387214661,0.0618207827210426,-0.123625583946705,0.945631086826324,-0.166806280612946,-0.279208689928055,0.915561258792877,-0.0233527943491936,-0.401499927043915,-2.92998902295949e-006,-0.905350744724274,-0.424664556980133,-2.9301343147381e-006,-0.905348062515259,-0.424670368432999,-7.96398637703533e-007,-0.993929028511047,-0.110022887587547,
- -7.96416486537055e-007,-0.993929862976074,-0.110016219317913,-3.01873456010071e-007,0.528933107852936,0.848663449287415,-3.01873484431781e-007,0.528933167457581,0.848663508892059,-3.01873484431781e-007,0.528933167457581,0.848663508892059,-3.01873484431781e-007,0.528933107852936,0.848663449287415,-0.973194420337677,0.0602872632443905,-0.221941411495209,-0.990393936634064,0.0619309470057487,-0.123630680143833,-0.983387589454651,0.0631496086716652,0.170179396867752,-0.983387529850006,0.0631496012210846,0.170179381966591,-1.34919184802129e-006,0.996511220932007,-0.0834584534168243,-1.34919184802129e-006,0.996511161327362,-0.0834584534168243,-1.34919196170813e-006,0.996511280536652,-0.0834584608674049,-3.25644009535608e-007,0.998633801937103,-0.0522555969655514,-3.25638751519364e-007,0.998633742332459,-0.0522554330527782,-1.34919196170813e-006,0.996511280536652,-0.0834584608674049
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "UVChannel_1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *120 {
- a: 0.900907397270203,0.51922208070755,0.900910019874573,0.538964569568634,0.900911092758179,0.554273664951324,0.968482136726379,0.643178880214691,0.928401708602905,0.644879758358002,0.968482136726379,0.643178880214691,0.928401708602905,0.644879758358002,0.912504732608795,0.863914310932159,0.931023716926575,0.960283517837524,0.959636151790619,0.929436683654785,0.810051441192627,0.647458672523499,0.809129953384399,0.689522385597229,0.967708349227905,0.625024497509003,0.927610993385315,0.626275658607483,0.927610993385315,0.626275658607483,0.967708349227905,0.625024497509003,0.876864552497864,0.538964569568634,0.876863718032837,0.554273664951324,0.876867055892944,0.51922208070755,0.876858592033386,0.634389698505402,0.912504732608795,0.863914310932159,0.867547750473022,0.560738444328308,0.995323896408081,0.696268200874329,0.993189573287964,0.710242807865143,0.976453185081482,0.718396544456482,0.96367084980011,0.711688816547394,0.96367084980011,0.711688816547394,0.976453185081482,0.718396544456482,0.993189573287964,0.710242807865143,0.995323896408081,0.696268200874329,0.896290719509125,0.875123560428619,0.881484925746918,0.875123560428619,0.856709659099579,0.780168116092682,0.921059310436249,0.780168116092682,0.9009108543396,0.441142708063126,0.900906324386597,0.504229485988617,0.876868486404419,0.504229485988617,0.876863241195679,0.441142708063126,0.95849609375,0.836354374885559,0.765566110610962,0.560722947120667,0.785273790359497,0.448206067085266,0.804542541503906,0.44820249080658,0.828590154647827,0.448206067085266,0.847859382629395,0.448215126991272,0.937644243240356,0.729188024997711,0.840129971504211,0.729188024997711,0.955485343933105,0.740087985992432,0.958487033843994,0.836354076862335,0.955477714538574,0.740089356899261,0.823935508728027,0.689524054527283,0.931023716926575,0.960283517837524,0.90091609954834,0.634389698505402,0.920661449432373,0.634383499622345,0.857111811637878,0.634383499622345,0.823017358779907,0.647459626197815,0.959636151790619,0.929436683654785,0.995174646377563,0.838666796684265,
- 0.995174646377563,0.838666796684265,0.995033740997314,0.724431157112122,0.995033740997314,0.724431157112122
- }
- UVIndex: *90 {
- a: 30,31,32,33,1,16,18,0,19,17,2,51,35,36,37,34,7,8,9,10,54,49,11,28,29,5,4,26,27,24,25,6,3,22,23,3,6,13,15,4,5,12,14,2,17,16,1,36,35,0,18,55,50,20,9,56,38,7,21,39,40,41,42,43,46,58,57,47,47,57,55,20,54,10,39,21,33,32,45,44,38,56,59,48,44,45,53,19,51,52
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByPolygon"
- ReferenceInformationType: "Direct"
- Smoothing: *21 {
- a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
- }
- }
- LayerElementMaterial: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "AllSame"
- ReferenceInformationType: "IndexToDirect"
- Materials: *1 {
- a: 0
- }
- }
- Layer: 0 {
- Version: 100
- LayerElement: {
- Type: "LayerElementNormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementMaterial"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementSmoothing"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementUV"
- TypedIndex: 0
- }
- }
- }
- Model: 86593904, "Model::minebot_main_root", "Null" {
- Version: 232
- Properties70: {
- P: "InheritType", "enum", "", "",1
- P: "ScalingMin", "Vector3D", "Vector", "",1,1,1
- P: "DefaultAttributeIndex", "int", "Integer", "",0
- P: "MaxHandle", "int", "Integer", "U",1
- }
- Shading: T
- Culling: "CullingOff"
- }
- Model: 86351648, "Model::minebot_main", "Mesh" {
- Version: 232
- Properties70: {
- P: "InheritType", "enum", "", "",1
- P: "ScalingMin", "Vector3D", "Vector", "",1,1,1
- P: "GeometricTranslation", "Vector3D", "Vector", "",-7.62939453125e-006,12.2019929885864,-7.62939453125e-006
- P: "GeometricRotation", "Vector3D", "Vector", "",-90.0000076293945,45.0000038146973,0
- P: "DefaultAttributeIndex", "int", "Integer", "",0
- P: "Lcl Translation", "Lcl Translation", "", "A+",-1.16475007416739e-007,-1.56066676026967e-006,27.6431045532227
- P: "Lcl Rotation", "Lcl Rotation", "", "A+",90.0000093346676,-2.73207566800489e-005,90.0000025044781
- P: "Lcl Scaling", "Lcl Scaling", "", "A+",1.00000000000011,1.00000000000013,1.00000000000001
- P: "UDP3DSMAX", "KString", "", "U", "MapChannel:1 = UVChannel_1&cr;&lf;"
- P: "MaxHandle", "int", "Integer", "U",2
- }
- Shading: T
- Culling: "CullingOff"
- }
- Model: 86353904, "Model::minebot_right_upperleg", "Mesh" {
- Version: 232
- Properties70: {
- P: "InheritType", "enum", "", "",1
- P: "ScalingMin", "Vector3D", "Vector", "",1,1,1
- P: "DefaultAttributeIndex", "int", "Integer", "",0
- P: "Lcl Translation", "Lcl Translation", "", "A+",-28.1494159698486,-7.95376777648926,1.03962011053227e-005
- P: "Lcl Rotation", "Lcl Rotation", "", "A+",23.9531010485477,-89.3049146033024,-83.2791028720113
- P: "Lcl Scaling", "Lcl Scaling", "", "A+",0.999999974354277,0.999999975914339,0.999999970921596
- P: "UDP3DSMAX", "KString", "", "U", "MapChannel:1 = UVChannel_1&cr;&lf;"
- P: "MaxHandle", "int", "Integer", "U",3
- }
- Shading: T
- Culling: "CullingOff"
- }
- Model: 86388944, "Model::minebot_right_lowerleg", "Mesh" {
- Version: 232
- Properties70: {
- P: "InheritType", "enum", "", "",1
- P: "ScalingMin", "Vector3D", "Vector", "",1,1,1
- P: "DefaultAttributeIndex", "int", "Integer", "",0
- P: "Lcl Translation", "Lcl Translation", "", "A+",1.40070915222168e-006,-9.29283237457275,30.6071128845215
- P: "Lcl Rotation", "Lcl Rotation", "", "A+",-90.0137030696003,0.0325114355367871,0.0218782740031604
- P: "Lcl Scaling", "Lcl Scaling", "", "A+",0.999999995474626,0.99999971270664,0.99999998234598
- P: "UDP3DSMAX", "KString", "", "U", "MapChannel:1 = UVChannel_1&cr;&lf;"
- P: "MaxHandle", "int", "Integer", "U",4
- }
- Shading: T
- Culling: "CullingOff"
- }
- Model: 86391200, "Model::minebot_head", "Mesh" {
- Version: 232
- Properties70: {
- P: "InheritType", "enum", "", "",1
- P: "ScalingMin", "Vector3D", "Vector", "",1,1,1
- P: "GeometricTranslation", "Vector3D", "Vector", "",9.5367449830519e-006,-22.4767112731934,9.44089515542146e-006
- P: "GeometricRotation", "Vector3D", "Vector", "",-89.9999923706055,-135,-9.6593457783456e-006
- P: "DefaultAttributeIndex", "int", "Integer", "",0
- P: "Lcl Translation", "Lcl Translation", "", "A+",-6.85378563503036e-006,34.6787033081055,-4.38112419942627e-006
- P: "Lcl Rotation", "Lcl Rotation", "", "A+",5.00895531675326e-006,-4.24975994724501e-014,8.65142139482811e-006
- P: "Lcl Scaling", "Lcl Scaling", "", "A+",1.00000000000001,1.00000000000002,1
- P: "UDP3DSMAX", "KString", "", "U", "MapChannel:1 = UVChannel_1&cr;&lf;"
- P: "MaxHandle", "int", "Integer", "U",5
- }
- Shading: T
- Culling: "CullingOff"
- }
- Model: 86393456, "Model::minebot_front_upperleg", "Mesh" {
- Version: 232
- Properties70: {
- P: "InheritType", "enum", "", "",1
- P: "ScalingMin", "Vector3D", "Vector", "",1,1,1
- P: "DefaultAttributeIndex", "int", "Integer", "",0
- P: "Lcl Translation", "Lcl Translation", "", "A+",7.15256010153098e-006,-7.95376968383789,-28.1494216918945
- P: "Lcl Rotation", "Lcl Rotation", "", "A+",101.23867650903,20.734624725554,-176.051704728536
- P: "Lcl Scaling", "Lcl Scaling", "", "A+",1.00000001066391,1.00000018721415,0.999999836566053
- P: "UDP3DSMAX", "KString", "", "U", "MapChannel:1 = UVChannel_1&cr;&lf;"
- P: "MaxHandle", "int", "Integer", "U",6
- }
- Shading: T
- Culling: "CullingOff"
- }
- Model: 86399824, "Model::minebot_back_lowerleg", "Mesh" {
- Version: 232
- Properties70: {
- P: "InheritType", "enum", "", "",1
- P: "ScalingMin", "Vector3D", "Vector", "",1,1,1
- P: "DefaultAttributeIndex", "int", "Integer", "",0
- P: "Lcl Translation", "Lcl Translation", "", "A+",2.86102294921875e-006,-9.29283142089844,30.6071109771729
- P: "Lcl Rotation", "Lcl Rotation", "", "A+",-60.3703761997105,0.00407890260332801,0.00444271682184583
- P: "Lcl Scaling", "Lcl Scaling", "", "A+",1.00000024395884,1.0000001675631,1.00000029615229
- P: "UDP3DSMAX", "KString", "", "U", "MapChannel:1 = UVChannel_1&cr;&lf;"
- P: "MaxHandle", "int", "Integer", "U",7
- }
- Shading: T
- Culling: "CullingOff"
- }
- Model: 86402080, "Model::minebot_left_upperleg", "Mesh" {
- Version: 232
- Properties70: {
- P: "InheritType", "enum", "", "",1
- P: "ScalingMin", "Vector3D", "Vector", "",1,1,1
- P: "DefaultAttributeIndex", "int", "Integer", "",0
- P: "Lcl Translation", "Lcl Translation", "", "A+",28.1494274139404,-7.95376968383789,4.15622707805596e-006
- P: "Lcl Rotation", "Lcl Rotation", "", "A+",-163.537562661969,85.9260770500231,-108.327911243153
- P: "Lcl Scaling", "Lcl Scaling", "", "A+",1.00000001966616,0.999999881624868,0.999999874871959
- P: "UDP3DSMAX", "KString", "", "U", "MapChannel:1 = UVChannel_1&cr;&lf;"
- P: "MaxHandle", "int", "Integer", "U",8
- }
- Shading: T
- Culling: "CullingOff"
- }
- Model: 86404336, "Model::minebot_left_lowerleg", "Mesh" {
- Version: 232
- Properties70: {
- P: "InheritType", "enum", "", "",1
- P: "ScalingMin", "Vector3D", "Vector", "",1,1,1
- P: "DefaultAttributeIndex", "int", "Integer", "",0
- P: "Lcl Translation", "Lcl Translation", "", "A+",1.31130218505859e-006,-9.29283618927002,30.6071090698242
- P: "Lcl Rotation", "Lcl Rotation", "", "A+",-80.831762023516,0.0534131623167276,0.00839558809448767
- P: "Lcl Scaling", "Lcl Scaling", "", "A+",0.999999849220622,0.999999901157731,0.999999882061595
- P: "UDP3DSMAX", "KString", "", "U", "MapChannel:1 = UVChannel_1&cr;&lf;"
- P: "MaxHandle", "int", "Integer", "U",9
- }
- Shading: T
- Culling: "CullingOff"
- }
- Model: 86617456, "Model::minebot_front_upperleg2", "Mesh" {
- Version: 232
- Properties70: {
- P: "InheritType", "enum", "", "",1
- P: "ScalingMin", "Vector3D", "Vector", "",1,1,1
- P: "DefaultAttributeIndex", "int", "Integer", "",0
- P: "Lcl Translation", "Lcl Translation", "", "A+",1.19209316835622e-005,-7.95376968383789,28.1494255065918
- P: "Lcl Rotation", "Lcl Rotation", "", "A+",-65.4018488042547,-12.6146490627827,-4.69922524877685
- P: "Lcl Scaling", "Lcl Scaling", "", "A+",0.999999833708745,1.00000000892232,0.999999832147367
- P: "UDP3DSMAX", "KString", "", "U", "MapChannel:1 = UVChannel_1&cr;&lf;"
- P: "MaxHandle", "int", "Integer", "U",10
- }
- Shading: T
- Culling: "CullingOff"
- }
- Model: 86605856, "Model::minebot_front_lowerleg", "Mesh" {
- Version: 232
- Properties70: {
- P: "InheritType", "enum", "", "",1
- P: "ScalingMin", "Vector3D", "Vector", "",1,1,1
- P: "DefaultAttributeIndex", "int", "Integer", "",0
- P: "Lcl Translation", "Lcl Translation", "", "A+",1.9073486328125e-006,-9.29283332824707,30.6071090698242
- P: "Lcl Rotation", "Lcl Rotation", "", "A+",-61.0056645211704,0.00193763905784981,-0.00141982540416939
- P: "Lcl Scaling", "Lcl Scaling", "", "A+",1.00000012008816,1.00000022493556,1.00000001132156
- P: "UDP3DSMAX", "KString", "", "U", "MapChannel:1 = UVChannel_1&cr;&lf;"
- P: "MaxHandle", "int", "Integer", "U",11
- }
- Shading: T
- Culling: "CullingOff"
- }
- Material: 86629280, "Material::01 - Default", "" {
- Version: 102
- ShadingModel: "phong"
- MultiLayer: 0
- Properties70: {
- P: "ShadingModel", "KString", "", "", "phong"
- P: "EmissiveFactor", "Number", "", "A",0
- P: "AmbientColor", "Color", "", "A",0.588235318660736,0.588235318660736,0.588235318660736
- P: "DiffuseColor", "Color", "", "A",0.588235318660736,0.588235318660736,0.588235318660736
- P: "BumpFactor", "double", "Number", "",0.300000011920929
- P: "TransparentColor", "Color", "", "A",1,1,1
- P: "SpecularColor", "Color", "", "A",0.899999976158142,0.899999976158142,0.899999976158142
- P: "SpecularFactor", "Number", "", "A",0
- P: "ShininessExponent", "Number", "", "A",1.99999991737042
- P: "Emissive", "Vector3D", "Vector", "",0,0,0
- P: "Ambient", "Vector3D", "Vector", "",0.588235318660736,0.588235318660736,0.588235318660736
- P: "Diffuse", "Vector3D", "Vector", "",0.588235318660736,0.588235318660736,0.588235318660736
- P: "Specular", "Vector3D", "Vector", "",0,0,0
- P: "Shininess", "double", "Number", "",1.99999991737042
- P: "Opacity", "double", "Number", "",1
- P: "Reflectivity", "double", "Number", "",0
- }
- }
- Video: 86433568, "Video::Map #1", "Clip" {
- Type: "Clip"
- Properties70: {
- P: "Path", "KString", "XRefUrl", "", "C:\Users\bret.church\Desktop\SIDE_JOB\Minibot\Users\Roald\Desktop\minebot_diffuse.TIF"
- }
- UseMipMap: 0
- Filename: "C:\Users\bret.church\Desktop\SIDE_JOB\Minibot\Users\Roald\Desktop\minebot_diffuse.TIF"
- RelativeFilename: "..\..\..\..\..\..\..\..\bret.church\Desktop\SIDE_JOB\Minibot\Users\Roald\Desktop\minebot_diffuse.TIF"
- }
- Video: 86434208, "Video::Map #2", "Clip" {
- Type: "Clip"
- Properties70: {
- P: "Path", "KString", "XRefUrl", "", "C:\Users\bret.church\Desktop\SIDE_JOB\Minibot\Users\Roald\Desktop\minebot_normals.TIF"
- }
- UseMipMap: 0
- Filename: "C:\Users\bret.church\Desktop\SIDE_JOB\Minibot\Users\Roald\Desktop\minebot_normals.TIF"
- RelativeFilename: "..\..\..\..\..\..\..\..\bret.church\Desktop\SIDE_JOB\Minibot\Users\Roald\Desktop\minebot_normals.TIF"
- }
- Texture: 86432064, "Texture::Map #1", "" {
- Type: "TextureVideoClip"
- Version: 202
- TextureName: "Texture::Map #1"
- Properties70: {
- P: "UVSet", "KString", "", "", "UVChannel_1"
- P: "UseMaterial", "bool", "", "",1
- }
- Media: "Video::Map #1"
- FileName: "C:\Users\bret.church\Desktop\SIDE_JOB\Minibot\Users\Roald\Desktop\minebot_diffuse.TIF"
- RelativeFilename: "..\..\..\..\..\..\..\..\bret.church\Desktop\SIDE_JOB\Minibot\Users\Roald\Desktop\minebot_diffuse.TIF"
- ModelUVTranslation: 0,0
- ModelUVScaling: 1,1
- Texture_Alpha_Source: "Alpha_Black"
- Cropping: 0,0,0,0
- }
- Texture: 86432816, "Texture::Map #2", "" {
- Type: "TextureVideoClip"
- Version: 202
- TextureName: "Texture::Map #2"
- Properties70: {
- P: "UVSet", "KString", "", "", "UVChannel_1"
- P: "UseMaterial", "bool", "", "",1
- }
- Media: "Video::Map #2"
- FileName: "C:\Users\bret.church\Desktop\SIDE_JOB\Minibot\Users\Roald\Desktop\minebot_normals.TIF"
- RelativeFilename: "..\..\..\..\..\..\..\..\bret.church\Desktop\SIDE_JOB\Minibot\Users\Roald\Desktop\minebot_normals.TIF"
- ModelUVTranslation: 0,0
- ModelUVScaling: 1,1
- Texture_Alpha_Source: "Alpha_Black"
- Cropping: 0,0,0,0
- }
- AnimationStack: 86654528, "AnimStack::Take 001", "" {
- Properties70: {
- P: "LocalStop", "KTime", "Time", "",18474463200
- P: "ReferenceStop", "KTime", "Time", "",18474463200
- }
- }
- AnimationLayer: 85981904, "AnimLayer::BaseLayer", "" {
- }
- AnimationCurveNode: 87082512, "AnimCurveNode::R", "" {
- Properties70: {
- P: "d|X", "Number", "", "A+",0
- P: "d|Y", "Number", "", "A+",0
- P: "d|Z", "Number", "", "A+",0
- }
- }
- AnimationCurveNode: 87246688, "AnimCurveNode::S", "" {
- Properties70: {
- P: "d|X", "Number", "", "A+",1
- P: "d|Y", "Number", "", "A+",1
- P: "d|Z", "Number", "", "A+",1
- }
- }
- AnimationCurveNode: 87247056, "AnimCurveNode::T", "" {
- Properties70: {
- P: "d|X", "Number", "", "A+",-1.16475007416739e-007
- P: "d|Y", "Number", "", "A+",-1.56066676026967e-006
- P: "d|Z", "Number", "", "A+",27.6431045532227
- }
- }
- AnimationCurveNode: 87255632, "AnimCurveNode::R", "" {
- Properties70: {
- P: "d|X", "Number", "", "A+",90.0000093346676
- P: "d|Y", "Number", "", "A+",-2.73207566800489e-005
- P: "d|Z", "Number", "", "A+",90.0000025044781
- }
- }
- AnimationCurveNode: 87272400, "AnimCurveNode::S", "" {
- Properties70: {
- P: "d|X", "Number", "", "A+",1.00000000000011
- P: "d|Y", "Number", "", "A+",1.00000000000013
- P: "d|Z", "Number", "", "A+",1.00000000000001
- }
- }
- AnimationCurveNode: 87272768, "AnimCurveNode::R", "" {
- Properties70: {
- P: "d|X", "Number", "", "A+",23.9531010485477
- P: "d|Y", "Number", "", "A+",-89.3049146033024
- P: "d|Z", "Number", "", "A+",-83.2791028720113
- }
- }
- AnimationCurveNode: 87273136, "AnimCurveNode::S", "" {
- Properties70: {
- P: "d|X", "Number", "", "A+",0.999999974354277
- P: "d|Y", "Number", "", "A+",0.999999975914339
- P: "d|Z", "Number", "", "A+",0.999999970921596
- }
- }
- AnimationCurveNode: 87273504, "AnimCurveNode::R", "" {
- Properties70: {
- P: "d|X", "Number", "", "A+",-90.0137030696003
- P: "d|Y", "Number", "", "A+",0.0325114355367871
- P: "d|Z", "Number", "", "A+",0.0218782740031604
- }
- }
- AnimationCurveNode: 86954048, "AnimCurveNode::S", "" {
- Properties70: {
- P: "d|X", "Number", "", "A+",0.999999995474626
- P: "d|Y", "Number", "", "A+",0.99999971270664
- P: "d|Z", "Number", "", "A+",0.99999998234598
- }
- }
- AnimationCurveNode: 86954416, "AnimCurveNode::R", "" {
- Properties70: {
- P: "d|X", "Number", "", "A+",5.00895531675326e-006
- P: "d|Y", "Number", "", "A+",-4.24975994724501e-014
- P: "d|Z", "Number", "", "A+",8.65142139482811e-006
- }
- }
- AnimationCurveNode: 87284144, "AnimCurveNode::S", "" {
- Properties70: {
- P: "d|X", "Number", "", "A+",1.00000000000001
- P: "d|Y", "Number", "", "A+",1.00000000000002
- P: "d|Z", "Number", "", "A+",1
- }
- }
- AnimationCurveNode: 87284512, "AnimCurveNode::R", "" {
- Properties70: {
- P: "d|X", "Number", "", "A+",101.23867650903
- P: "d|Y", "Number", "", "A+",20.734624725554
- P: "d|Z", "Number", "", "A+",-176.051704728536
- }
- }
- AnimationCurveNode: 87284880, "AnimCurveNode::S", "" {
- Properties70: {
- P: "d|X", "Number", "", "A+",1.00000001066391
- P: "d|Y", "Number", "", "A+",1.00000018721415
- P: "d|Z", "Number", "", "A+",0.999999836566053
- }
- }
- AnimationCurveNode: 87285248, "AnimCurveNode::R", "" {
- Properties70: {
- P: "d|X", "Number", "", "A+",-60.3703761997105
- P: "d|Y", "Number", "", "A+",0.00407890260332801
- P: "d|Z", "Number", "", "A+",0.00444271682184583
- }
- }
- AnimationCurveNode: 87285616, "AnimCurveNode::S", "" {
- Properties70: {
- P: "d|X", "Number", "", "A+",1.00000024395884
- P: "d|Y", "Number", "", "A+",1.0000001675631
- P: "d|Z", "Number", "", "A+",1.00000029615229
- }
- }
- AnimationCurveNode: 87288272, "AnimCurveNode::R", "" {
- Properties70: {
- P: "d|X", "Number", "", "A+",-163.537562661969
- P: "d|Y", "Number", "", "A+",85.9260770500231
- P: "d|Z", "Number", "", "A+",-108.327911243153
- }
- }
- AnimationCurveNode: 87286064, "AnimCurveNode::S", "" {
- Properties70: {
- P: "d|X", "Number", "", "A+",1.00000001966616
- P: "d|Y", "Number", "", "A+",0.999999881624868
- P: "d|Z", "Number", "", "A+",0.999999874871959
- }
- }
- AnimationCurveNode: 87288640, "AnimCurveNode::R", "" {
- Properties70: {
- P: "d|X", "Number", "", "A+",-80.831762023516
- P: "d|Y", "Number", "", "A+",0.0534131623167276
- P: "d|Z", "Number", "", "A+",0.00839558809448767
- }
- }
- AnimationCurveNode: 87286432, "AnimCurveNode::S", "" {
- Properties70: {
- P: "d|X", "Number", "", "A+",0.999999849220622
- P: "d|Y", "Number", "", "A+",0.999999901157731
- P: "d|Z", "Number", "", "A+",0.999999882061595
- }
- }
- AnimationCurveNode: 87287536, "AnimCurveNode::R", "" {
- Properties70: {
- P: "d|X", "Number", "", "A+",-65.4018488042547
- P: "d|Y", "Number", "", "A+",-12.6146490627827
- P: "d|Z", "Number", "", "A+",-4.69922524877685
- }
- }
- AnimationCurveNode: 87286800, "AnimCurveNode::S", "" {
- Properties70: {
- P: "d|X", "Number", "", "A+",0.999999833708745
- P: "d|Y", "Number", "", "A+",1.00000000892232
- P: "d|Z", "Number", "", "A+",0.999999832147367
- }
- }
- AnimationCurveNode: 87287168, "AnimCurveNode::R", "" {
- Properties70: {
- P: "d|X", "Number", "", "A+",-61.0056645211704
- P: "d|Y", "Number", "", "A+",0.00193763905784981
- P: "d|Z", "Number", "", "A+",-0.00141982540416939
- }
- }
- AnimationCurveNode: 87287904, "AnimCurveNode::S", "" {
- Properties70: {
- P: "d|X", "Number", "", "A+",1.00000012008816
- P: "d|Y", "Number", "", "A+",1.00000022493556
- P: "d|Z", "Number", "", "A+",1.00000001132156
- }
- }
- AnimationCurve: 86840352, "AnimCurve::", "" {
- Default: 0
- KeyVer: 4008
- KeyTime: *1 {
- a: 0
- }
- KeyValueFloat: *1 {
- a: 0
- }
- ;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
- KeyAttrFlags: *1 {
- a: 16778248
- }
- ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
- KeyAttrDataFloat: *4 {
- a: 0,0,218434820,0
- }
- KeyAttrRefCount: *1 {
- a: 1
- }
- Post-Extrapolation: {
- Type: C
- Repetition: 1
- }
- }
- AnimationCurve: 86863408, "AnimCurve::", "" {
- Default: 0
- KeyVer: 4008
- KeyTime: *1 {
- a: 0
- }
- KeyValueFloat: *1 {
- a: 0
- }
- ;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
- KeyAttrFlags: *1 {
- a: 16778248
- }
- ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
- KeyAttrDataFloat: *4 {
- a: 0,0,218434820,0
- }
- KeyAttrRefCount: *1 {
- a: 1
- }
- Post-Extrapolation: {
- Type: C
- Repetition: 1
- }
- }
- AnimationCurve: 86864768, "AnimCurve::", "" {
- Default: 0
- KeyVer: 4008
- KeyTime: *1 {
- a: 0
- }
- KeyValueFloat: *1 {
- a: 0
- }
- ;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
- KeyAttrFlags: *1 {
- a: 16778248
- }
- ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
- KeyAttrDataFloat: *4 {
- a: 0,0,218434820,0
- }
- KeyAttrRefCount: *1 {
- a: 1
- }
- Post-Extrapolation: {
- Type: C
- Repetition: 1
- }
- }
- AnimationCurve: 86866128, "AnimCurve::", "" {
- Default: 0
- KeyVer: 4008
- KeyTime: *1 {
- a: 0
- }
- KeyValueFloat: *1 {
- a: 1
- }
- ;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
- KeyAttrFlags: *1 {
- a: 16778248
- }
- ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
- KeyAttrDataFloat: *4 {
- a: 0,0,218434820,0
- }
- KeyAttrRefCount: *1 {
- a: 1
- }
- Post-Extrapolation: {
- Type: C
- Repetition: 1
- }
- }
- AnimationCurve: 86875856, "AnimCurve::", "" {
- Default: 0
- KeyVer: 4008
- KeyTime: *1 {
- a: 0
- }
- KeyValueFloat: *1 {
- a: 1
- }
- ;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
- KeyAttrFlags: *1 {
- a: 16778248
- }
- ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
- KeyAttrDataFloat: *4 {
- a: 0,0,218434820,0
- }
- KeyAttrRefCount: *1 {
- a: 1
- }
- Post-Extrapolation: {
- Type: C
- Repetition: 1
- }
- }
- AnimationCurve: 86877376, "AnimCurve::", "" {
- Default: 0
- KeyVer: 4008
- KeyTime: *1 {
- a: 0
- }
- KeyValueFloat: *1 {
- a: 1
- }
- ;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
- KeyAttrFlags: *1 {
- a: 16778248
- }
- ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
- KeyAttrDataFloat: *4 {
- a: 0,0,218434820,0
- }
- KeyAttrRefCount: *1 {
- a: 1
- }
- Post-Extrapolation: {
- Type: C
- Repetition: 1
- }
- }
- AnimationCurve: 86878896, "AnimCurve::", "" {
- Default: 0
- KeyVer: 4008
- KeyTime: *13 {
- a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924599,18474463200
- }
- KeyValueFloat: *13 {
- a: -1.16475e-007,0.9270519,1.60516,1.86846,1.600921,0.9270514,8.720974e-014,-0.9270514,-1.606805,-1.86846,-1.60516,-0.9212574,-1.16475e-007
- }
- ;KeyAttrFlags: Linear
- KeyAttrFlags: *1 {
- a: 8452
- }
- ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
- KeyAttrDataFloat: *4 {
- a: 0,0,218434821,0
- }
- KeyAttrRefCount: *1 {
- a: 13
- }
- Post-Extrapolation: {
- Type: C
- Repetition: 1
- }
- }
- AnimationCurve: 86880416, "AnimCurve::", "" {
- Default: 0
- KeyVer: 4008
- KeyTime: *13 {
- a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924599,18474463200
- }
- KeyValueFloat: *13 {
- a: -1.560667e-006,-1.27658e-006,-9.067762e-007,-7.229134e-007,-9.090878e-007,-1.276581e-006,-1.560667e-006,-1.556542e-006,-1.390869e-006,-1.287173e-006,-1.391521e-006,-1.556568e-006,-1.560667e-006
- }
- ;KeyAttrFlags: Linear
- KeyAttrFlags: *1 {
- a: 8452
- }
- ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
- KeyAttrDataFloat: *4 {
- a: 0,0,218434821,0
- }
- KeyAttrRefCount: *1 {
- a: 13
- }
- Post-Extrapolation: {
- Type: C
- Repetition: 1
- }
- }
- AnimationCurve: 86947488, "AnimCurve::", "" {
- Default: 0
- KeyVer: 4008
- KeyTime: *13 {
- a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924599,18474463200
- }
- KeyValueFloat: *13 {
- a: 27.6431,28.52762,30.16898,31.0535,30.15872,28.52762,27.6431,28.52762,30.17451,31.0535,30.16898,28.52209,27.6431
- }
- ;KeyAttrFlags: Linear
- KeyAttrFlags: *1 {
- a: 8452
- }
- ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
- KeyAttrDataFloat: *4 {
- a: 0,0,218434821,0
- }
- KeyAttrRefCount: *1 {
- a: 13
- }
- Post-Extrapolation: {
- Type: C
- Repetition: 1
- }
- }
- AnimationCurve: 86949008, "AnimCurve::", "" {
- Default: 0
- KeyVer: 4008
- KeyTime: *13 {
- a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924599,18474463200
- }
- KeyValueFloat: *13 {
- a: 90.00001,90.00001,90.00001,90.00001,90.00001,90.00001,90.00001,90.00001,90.00001,90.00001,90.00001,90.00001,90.00001
- }
- ;KeyAttrFlags: Linear
- KeyAttrFlags: *1 {
- a: 8452
- }
- ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
- KeyAttrDataFloat: *4 {
- a: 0,0,218434821,0
- }
- KeyAttrRefCount: *1 {
- a: 13
- }
- Post-Extrapolation: {
- Type: C
- Repetition: 1
- }
- }
- AnimationCurve: 86950528, "AnimCurve::", "" {
- Default: 0
- KeyVer: 4008
- KeyTime: *13 {
- a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924599,18474463200
- }
- KeyValueFloat: *13 {
- a: -2.732076e-005,-2.732076e-005,-2.732076e-005,-2.732076e-005,-2.732076e-005,-2.732076e-005,-2.732076e-005,-2.732076e-005,-2.732076e-005,-2.732076e-005,-2.732076e-005,-2.732076e-005,-2.732076e-005
- }
- ;KeyAttrFlags: Linear
- KeyAttrFlags: *1 {
- a: 8452
- }
- ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
- KeyAttrDataFloat: *4 {
- a: 0,0,218434821,0
- }
- KeyAttrRefCount: *1 {
- a: 13
- }
- Post-Extrapolation: {
- Type: C
- Repetition: 1
- }
- }
- AnimationCurve: 86952048, "AnimCurve::", "" {
- Default: 0
- KeyVer: 4008
- KeyTime: *13 {
- a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924599,18474463200
- }
- KeyValueFloat: *13 {
- a: 90,90,90,90,90,90,90,90,90,90,90,90,90
- }
- ;KeyAttrFlags: Linear
- KeyAttrFlags: *1 {
- a: 8452
- }
- ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
- KeyAttrDataFloat: *4 {
- a: 0,0,218434821,0
- }
- KeyAttrRefCount: *1 {
- a: 13
- }
- Post-Extrapolation: {
- Type: C
- Repetition: 1
- }
- }
- AnimationCurve: 86953568, "AnimCurve::", "" {
- Default: 0
- KeyVer: 4008
- KeyTime: *1 {
- a: 0
- }
- KeyValueFloat: *1 {
- a: 1
- }
- ;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
- KeyAttrFlags: *1 {
- a: 16778248
- }
- ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
- KeyAttrDataFloat: *4 {
- a: 0,0,218434820,0
- }
- KeyAttrRefCount: *1 {
- a: 1
- }
- Post-Extrapolation: {
- Type: C
- Repetition: 1
- }
- }
- AnimationCurve: 86406928, "AnimCurve::", "" {
- Default: 0
- KeyVer: 4008
- KeyTime: *1 {
- a: 0
- }
- KeyValueFloat: *1 {
- a: 1
- }
- ;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
- KeyAttrFlags: *1 {
- a: 16778248
- }
- ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
- KeyAttrDataFloat: *4 {
- a: 0,0,218434820,0
- }
- KeyAttrRefCount: *1 {
- a: 1
- }
- Post-Extrapolation: {
- Type: C
- Repetition: 1
- }
- }
- AnimationCurve: 86965376, "AnimCurve::", "" {
- Default: 0
- KeyVer: 4008
- KeyTime: *1 {
- a: 0
- }
- KeyValueFloat: *1 {
- a: 1
- }
- ;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
- KeyAttrFlags: *1 {
- a: 16778248
- }
- ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
- KeyAttrDataFloat: *4 {
- a: 0,0,218434820,0
- }
- KeyAttrRefCount: *1 {
- a: 1
- }
- Post-Extrapolation: {
- Type: C
- Repetition: 1
- }
- }
- AnimationCurve: 86966896, "AnimCurve::", "" {
- Default: 0
- KeyVer: 4008
- KeyTime: *11 {
- a: 0,1539538600,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924599,18474463200
- }
- KeyValueFloat: *11 {
- a: 23.9531,43.82991,47.95728,67.64304,159.3864,217.6598,239.0378,258.4127,281.808,325.4639,384.1295
- }
- ;KeyAttrFlags: Linear
- KeyAttrFlags: *1 {
- a: 8452
- }
- ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
- KeyAttrDataFloat: *4 {
- a: 0,0,218434821,0
- }
- KeyAttrRefCount: *1 {
- a: 11
- }
- Post-Extrapolation: {
- Type: C
- Repetition: 1
- }
- }
- AnimationCurve: 86991984, "AnimCurve::", "" {
- Default: 0
- KeyVer: 4008
- KeyTime: *11 {
- a: 0,1539538600,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924599,18474463200
- }
- KeyValueFloat: *11 {
- a: -89.30492,-88.47923,-86.74103,-88.34784,-89.28038,-88.39601,-87.92287,-88.05696,-88.63673,-89.30448,-89.30508
- }
- ;KeyAttrFlags: Linear
- KeyAttrFlags: *1 {
- a: 8452
- }
- ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
- KeyAttrDataFloat: *4 {
- a: 0,0,218434821,0
- }
- KeyAttrRefCount: *1 {
- a: 11
- }
- Post-Extrapolation: {
- Type: C
- Repetition: 1
- }
- }
- AnimationCurve: 86997776, "AnimCurve::", "" {
- Default: 0
- KeyVer: 4008
- KeyTime: *11 {
- a: 0,1539538600,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924599,18474463200
- }
- KeyValueFloat: *11 {
- a: -83.27911,-132.0253,-137.5195,-153.5686,-239.1631,-288.0348,-299.0046,-308.6401,-322.9685,-358.8493,-443.4418
- }
- ;KeyAttrFlags: Linear
- KeyAttrFlags: *1 {
- a: 8452
- }
- ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
- KeyAttrDataFloat: *4 {
- a: 0,0,218434821,0
- }
- KeyAttrRefCount: *1 {
- a: 11
- }
- Post-Extrapolation: {
- Type: C
- Repetition: 1
- }
- }
- AnimationCurve: 86996816, "AnimCurve::", "" {
- Default: 0
- KeyVer: 4008
- KeyTime: *1 {
- a: 0
- }
- KeyValueFloat: *1 {
- a: 1
- }
- ;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
- KeyAttrFlags: *1 {
- a: 16778248
- }
- ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
- KeyAttrDataFloat: *4 {
- a: 0,0,218434820,0
- }
- KeyAttrRefCount: *1 {
- a: 1
- }
- Post-Extrapolation: {
- Type: C
- Repetition: 1
- }
- }
- AnimationCurve: 87000016, "AnimCurve::", "" {
- Default: 0
- KeyVer: 4008
- KeyTime: *1 {
- a: 0
- }
- KeyValueFloat: *1 {
- a: 1
- }
- ;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
- KeyAttrFlags: *1 {
- a: 16778248
- }
- ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
- KeyAttrDataFloat: *4 {
- a: 0,0,218434820,0
- }
- KeyAttrRefCount: *1 {
- a: 1
- }
- Post-Extrapolation: {
- Type: C
- Repetition: 1
- }
- }
- AnimationCurve: 86996496, "AnimCurve::", "" {
- Default: 0
- KeyVer: 4008
- KeyTime: *1 {
- a: 0
- }
- KeyValueFloat: *1 {
- a: 1
- }
- ;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
- KeyAttrFlags: *1 {
- a: 16778248
- }
- ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
- KeyAttrDataFloat: *4 {
- a: 0,0,218434820,0
- }
- KeyAttrRefCount: *1 {
- a: 1
- }
- Post-Extrapolation: {
- Type: C
- Repetition: 1
- }
- }
- AnimationCurve: 86997136, "AnimCurve::", "" {
- Default: 0
- KeyVer: 4008
- KeyTime: *13 {
- a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924599,18474463200
- }
- KeyValueFloat: *13 {
- a: -90.01369,-63.11832,-39.31785,-20.94286,-17.28114,-26.4177,-38.34047,-52.2186,-67.45946,-83.60226,-101.2413,-118.4385,-90.02143
- }
- ;KeyAttrFlags: Linear
- KeyAttrFlags: *1 {
- a: 8452
- }
- ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
- KeyAttrDataFloat: *4 {
- a: 0,0,218434821,0
- }
- KeyAttrRefCount: *1 {
- a: 13
- }
- Post-Extrapolation: {
- Type: C
- Repetition: 1
- }
- }
- AnimationCurve: 86999056, "AnimCurve::", "" {
- Default: 0
- KeyVer: 4008
- KeyTime: *13 {
- a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924599,18474463200
- }
- KeyValueFloat: *13 {
- a: 0.03251136,-0.002732076,-0.0302714,-0.04587155,-0.04800257,-0.04188272,-0.03125495,-0.01590068,-0.004152755,0.02546295,0.04921999,0.07214495,0.03235398
- }
- ;KeyAttrFlags: Linear
- KeyAttrFlags: *1 {
- a: 8452
- }
- ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
- KeyAttrDataFloat: *4 {
- a: 0,0,218434821,0
- }
- KeyAttrRefCount: *1 {
- a: 13
- }
- Post-Extrapolation: {
- Type: C
- Repetition: 1
- }
- }
- AnimationCurve: 86999376, "AnimCurve::", "" {
- Default: 0
- KeyVer: 4008
- KeyTime: *13 {
- a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924599,18474463200
- }
- KeyValueFloat: *13 {
- a: 0.02187827,-0.0003824906,-0.01767653,-0.03740212,-0.04242913,-0.0310637,-0.01860544,-0.007349283,0.01478053,0.003005025,-0.001475321,-0.01445268,0.02032664
- }
- ;KeyAttrFlags: Linear
- KeyAttrFlags: *1 {
- a: 8452
- }
- ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
- KeyAttrDataFloat: *4 {
- a: 0,0,218434821,0
- }
- KeyAttrRefCount: *1 {
- a: 13
- }
- Post-Extrapolation: {
- Type: C
- Repetition: 1
- }
- }
- AnimationCurve: 86998096, "AnimCurve::", "" {
- Default: 0
- KeyVer: 4008
- KeyTime: *1 {
- a: 0
- }
- KeyValueFloat: *1 {
- a: 1
- }
- ;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
- KeyAttrFlags: *1 {
- a: 16778248
- }
- ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
- KeyAttrDataFloat: *4 {
- a: 0,0,218434820,0
- }
- KeyAttrRefCount: *1 {
- a: 1
- }
- Post-Extrapolation: {
- Type: C
- Repetition: 1
- }
- }
- AnimationCurve: 86997456, "AnimCurve::", "" {
- Default: 0
- KeyVer: 4008
- KeyTime: *1 {
- a: 0
- }
- KeyValueFloat: *1 {
- a: 0.9999998
- }
- ;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
- KeyAttrFlags: *1 {
- a: 16778248
- }
- ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
- KeyAttrDataFloat: *4 {
- a: 0,0,218434820,0
- }
- KeyAttrRefCount: *1 {
- a: 1
- }
- Post-Extrapolation: {
- Type: C
- Repetition: 1
- }
- }
- AnimationCurve: 86998416, "AnimCurve::", "" {
- Default: 0
- KeyVer: 4008
- KeyTime: *1 {
- a: 0
- }
- KeyValueFloat: *1 {
- a: 1
- }
- ;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
- KeyAttrFlags: *1 {
- a: 16778248
- }
- ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
- KeyAttrDataFloat: *4 {
- a: 0,0,218434820,0
- }
- KeyAttrRefCount: *1 {
- a: 1
- }
- Post-Extrapolation: {
- Type: C
- Repetition: 1
- }
- }
- AnimationCurve: 86998736, "AnimCurve::", "" {
- Default: 0
- KeyVer: 4008
- KeyTime: *13 {
- a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924599,18474463200
- }
- KeyValueFloat: *13 {
- a: 5.008957e-006,5.008957e-006,5.008957e-006,5.008957e-006,5.008957e-006,5.008957e-006,5.008957e-006,5.008957e-006,5.008957e-006,5.008957e-006,5.008957e-006,5.008957e-006,5.008957e-006
- }
- ;KeyAttrFlags: Linear
- KeyAttrFlags: *1 {
- a: 8452
- }
- ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
- KeyAttrDataFloat: *4 {
- a: 0,0,218434821,0
- }
- KeyAttrRefCount: *1 {
- a: 13
- }
- Post-Extrapolation: {
- Type: C
- Repetition: 1
- }
- }
- AnimationCurve: 86999696, "AnimCurve::", "" {
- Default: 0
- KeyVer: 4008
- KeyTime: *13 {
- a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924599,18474463200
- }
- KeyValueFloat: *13 {
- a: 0,0,0,0,0,0,0,0,0,0,0,0,0
- }
- ;KeyAttrFlags: Linear
- KeyAttrFlags: *1 {
- a: 8452
- }
- ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
- KeyAttrDataFloat: *4 {
- a: 0,0,218434821,0
- }
- KeyAttrRefCount: *1 {
- a: 13
- }
- Post-Extrapolation: {
- Type: C
- Repetition: 1
- }
- }
- AnimationCurve: 87014576, "AnimCurve::", "" {
- Default: 0
- KeyVer: 4008
- KeyTime: *13 {
- a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924599,18474463200
- }
- KeyValueFloat: *13 {
- a: 8.651422e-006,8.651422e-006,8.651422e-006,8.651422e-006,8.651422e-006,8.651422e-006,8.651422e-006,8.651422e-006,8.651422e-006,8.651422e-006,8.651422e-006,8.651422e-006,8.651422e-006
- }
- ;KeyAttrFlags: Linear
- KeyAttrFlags: *1 {
- a: 8452
- }
- ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
- KeyAttrDataFloat: *4 {
- a: 0,0,218434821,0
- }
- KeyAttrRefCount: *1 {
- a: 13
- }
- Post-Extrapolation: {
- Type: C
- Repetition: 1
- }
- }
- AnimationCurve: 87012336, "AnimCurve::", "" {
- Default: 0
- KeyVer: 4008
- KeyTime: *1 {
- a: 0
- }
- KeyValueFloat: *1 {
- a: 1
- }
- ;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
- KeyAttrFlags: *1 {
- a: 16778248
- }
- ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
- KeyAttrDataFloat: *4 {
- a: 0,0,218434820,0
- }
- KeyAttrRefCount: *1 {
- a: 1
- }
- Post-Extrapolation: {
- Type: C
- Repetition: 1
- }
- }
- AnimationCurve: 87013616, "AnimCurve::", "" {
- Default: 0
- KeyVer: 4008
- KeyTime: *1 {
- a: 0
- }
- KeyValueFloat: *1 {
- a: 1
- }
- ;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
- KeyAttrFlags: *1 {
- a: 16778248
- }
- ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
- KeyAttrDataFloat: *4 {
- a: 0,0,218434820,0
- }
- KeyAttrRefCount: *1 {
- a: 1
- }
- Post-Extrapolation: {
- Type: C
- Repetition: 1
- }
- }
- AnimationCurve: 87011376, "AnimCurve::", "" {
- Default: 0
- KeyVer: 4008
- KeyTime: *1 {
- a: 0
- }
- KeyValueFloat: *1 {
- a: 1
- }
- ;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
- KeyAttrFlags: *1 {
- a: 16778248
- }
- ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
- KeyAttrDataFloat: *4 {
- a: 0,0,218434820,0
- }
- KeyAttrRefCount: *1 {
- a: 1
- }
- Post-Extrapolation: {
- Type: C
- Repetition: 1
- }
- }
- AnimationCurve: 87009776, "AnimCurve::", "" {
- Default: 0
- KeyVer: 4008
- KeyTime: *12 {
- a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,18474463200
- }
- KeyValueFloat: *12 {
- a: 101.2387,124.6013,124.3749,122.2008,118.0158,114.39,114.5982,120.4658,126.8081,106.8772,90.861,101.2387
- }
- ;KeyAttrFlags: Linear
- KeyAttrFlags: *1 {
- a: 8452
- }
- ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
- KeyAttrDataFloat: *4 {
- a: 0,0,218434821,0
- }
- KeyAttrRefCount: *1 {
- a: 12
- }
- Post-Extrapolation: {
- Type: C
- Repetition: 1
- }
- }
- AnimationCurve: 87008816, "AnimCurve::", "" {
- Default: 0
- KeyVer: 4008
- KeyTime: *12 {
- a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,18474463200
- }
- KeyValueFloat: *12 {
- a: 20.73462,25.16925,17.90606,9.897411,2.247582,-5.218756,-12.61465,-19.49691,-24.87875,-19.69816,-7.158175,20.73462
- }
- ;KeyAttrFlags: Linear
- KeyAttrFlags: *1 {
- a: 8452
- }
- ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
- KeyAttrDataFloat: *4 {
- a: 0,0,218434821,0
- }
- KeyAttrRefCount: *1 {
- a: 12
- }
- Post-Extrapolation: {
- Type: C
- Repetition: 1
- }
- }
- AnimationCurve: 87014256, "AnimCurve::", "" {
- Default: 0
- KeyVer: 4008
- KeyTime: *12 {
- a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,18474463200
- }
- KeyValueFloat: *12 {
- a: -176.0517,-168.2538,-169.0379,-171.3769,-174.7335,-179.2401,-184.6993,-190.2333,-194.0887,-189.5023,-186.0911,-176.0517
- }
- ;KeyAttrFlags: Linear
- KeyAttrFlags: *1 {
- a: 8452
- }
- ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
- KeyAttrDataFloat: *4 {
- a: 0,0,218434821,0
- }
- KeyAttrRefCount: *1 {
- a: 12
- }
- Post-Extrapolation: {
- Type: C
- Repetition: 1
- }
- }
- AnimationCurve: 87013296, "AnimCurve::", "" {
- Default: 0
- KeyVer: 4008
- KeyTime: *1 {
- a: 0
- }
- KeyValueFloat: *1 {
- a: 1
- }
- ;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
- KeyAttrFlags: *1 {
- a: 16778248
- }
- ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
- KeyAttrDataFloat: *4 {
- a: 0,0,218434820,0
- }
- KeyAttrRefCount: *1 {
- a: 1
- }
- Post-Extrapolation: {
- Type: C
- Repetition: 1
- }
- }
- AnimationCurve: 87011696, "AnimCurve::", "" {
- Default: 0
- KeyVer: 4008
- KeyTime: *1 {
- a: 0
- }
- KeyValueFloat: *1 {
- a: 1
- }
- ;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
- KeyAttrFlags: *1 {
- a: 16778248
- }
- ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
- KeyAttrDataFloat: *4 {
- a: 0,0,218434820,0
- }
- KeyAttrRefCount: *1 {
- a: 1
- }
- Post-Extrapolation: {
- Type: C
- Repetition: 1
- }
- }
- AnimationCurve: 87010096, "AnimCurve::", "" {
- Default: 0
- KeyVer: 4008
- KeyTime: *1 {
- a: 0
- }
- KeyValueFloat: *1 {
- a: 0.9999999
- }
- ;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
- KeyAttrFlags: *1 {
- a: 16778248
- }
- ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
- KeyAttrDataFloat: *4 {
- a: 0,0,218434820,0
- }
- KeyAttrRefCount: *1 {
- a: 1
- }
- Post-Extrapolation: {
- Type: C
- Repetition: 1
- }
- }
- AnimationCurve: 87012976, "AnimCurve::", "" {
- Default: 0
- KeyVer: 4008
- KeyTime: *13 {
- a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924599,18474463200
- }
- KeyValueFloat: *13 {
- a: -60.37038,-72.35925,-69.72891,-66.65426,-63.24982,-60.85718,-60.98761,-64.81303,-69.88385,-58.69146,-52.08962,-53.41186,-60.37038
- }
- ;KeyAttrFlags: Linear
- KeyAttrFlags: *1 {
- a: 8452
- }
- ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
- KeyAttrDataFloat: *4 {
- a: 0,0,218434821,0
- }
- KeyAttrRefCount: *1 {
- a: 13
- }
- Post-Extrapolation: {
- Type: C
- Repetition: 1
- }
- }
- AnimationCurve: 87013936, "AnimCurve::", "" {
- Default: 0
- KeyVer: 4008
- KeyTime: *13 {
- a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924599,18474463200
- }
- KeyValueFloat: *13 {
- a: 0.004078722,-0.0655425,-5.464151e-005,0.01111955,-0.004289359,-0.002950642,-0.0003551698,-0.04335804,-0.04297555,-0.03849495,-0.02393298,0.01002672,0.004078722
- }
- ;KeyAttrFlags: Linear
- KeyAttrFlags: *1 {
- a: 8452
- }
- ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
- KeyAttrDataFloat: *4 {
- a: 0,0,218434821,0
- }
- KeyAttrRefCount: *1 {
- a: 13
- }
- Post-Extrapolation: {
- Type: C
- Repetition: 1
- }
- }
- AnimationCurve: 87014896, "AnimCurve::", "" {
- Default: 0
- KeyVer: 4008
- KeyTime: *13 {
- a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924599,18474463200
- }
- KeyValueFloat: *13 {
- a: 0.00444182,-0.05078929,0.001147472,0.005852901,-0.001748528,-0.001557283,-0.00109283,-0.02491653,-0.001748528,-0.02584544,-0.05057072,0.009425662,0.00444182
- }
- ;KeyAttrFlags: Linear
- KeyAttrFlags: *1 {
- a: 8452
- }
- ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
- KeyAttrDataFloat: *4 {
- a: 0,0,218434821,0
- }
- KeyAttrRefCount: *1 {
- a: 13
- }
- Post-Extrapolation: {
- Type: C
- Repetition: 1
- }
- }
- AnimationCurve: 87009136, "AnimCurve::", "" {
- Default: 0
- KeyVer: 4008
- KeyTime: *1 {
- a: 0
- }
- KeyValueFloat: *1 {
- a: 1
- }
- ;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
- KeyAttrFlags: *1 {
- a: 16778248
- }
- ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
- KeyAttrDataFloat: *4 {
- a: 0,0,218434820,0
- }
- KeyAttrRefCount: *1 {
- a: 1
- }
- Post-Extrapolation: {
- Type: C
- Repetition: 1
- }
- }
- AnimationCurve: 87015216, "AnimCurve::", "" {
- Default: 0
- KeyVer: 4008
- KeyTime: *1 {
- a: 0
- }
- KeyValueFloat: *1 {
- a: 1
- }
- ;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
- KeyAttrFlags: *1 {
- a: 16778248
- }
- ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
- KeyAttrDataFloat: *4 {
- a: 0,0,218434820,0
- }
- KeyAttrRefCount: *1 {
- a: 1
- }
- Post-Extrapolation: {
- Type: C
- Repetition: 1
- }
- }
- AnimationCurve: 87016176, "AnimCurve::", "" {
- Default: 0
- KeyVer: 4008
- KeyTime: *1 {
- a: 0
- }
- KeyValueFloat: *1 {
- a: 1
- }
- ;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
- KeyAttrFlags: *1 {
- a: 16778248
- }
- ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
- KeyAttrDataFloat: *4 {
- a: 0,0,218434820,0
- }
- KeyAttrRefCount: *1 {
- a: 1
- }
- Post-Extrapolation: {
- Type: C
- Repetition: 1
- }
- }
- AnimationCurve: 87015536, "AnimCurve::", "" {
- Default: 0
- KeyVer: 4008
- KeyTime: *11 {
- a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,12316308800,13855847400,15395386000,16934924599,18474463200
- }
- KeyValueFloat: *11 {
- a: 16.46244,-4.207369,-23.26231,-46.1956,-84.4386,-173.7742,-196.8311,-179.9085,-179.7121,-124.3027,-163.5376
- }
- ;KeyAttrFlags: Linear
- KeyAttrFlags: *1 {
- a: 8452
- }
- ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
- KeyAttrDataFloat: *4 {
- a: 0,0,218434821,0
- }
- KeyAttrRefCount: *1 {
- a: 11
- }
- Post-Extrapolation: {
- Type: C
- Repetition: 1
- }
- }
- AnimationCurve: 87015856, "AnimCurve::", "" {
- Default: 0
- KeyVer: 4008
- KeyTime: *11 {
- a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,12316308800,13855847400,15395386000,16934924599,18474463200
- }
- KeyValueFloat: *11 {
- a: 94.07392,95.74265,96.03553,94.95246,93.10127,92.11697,95.05025,94.0014,91.82415,88.27281,85.92609
- }
- ;KeyAttrFlags: Linear
- KeyAttrFlags: *1 {
- a: 8452
- }
- ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
- KeyAttrDataFloat: *4 {
- a: 0,0,218434821,0
- }
- KeyAttrRefCount: *1 {
- a: 11
- }
- Post-Extrapolation: {
- Type: C
- Repetition: 1
- }
- }
- AnimationCurve: 87012656, "AnimCurve::", "" {
- Default: 0
- KeyVer: 4008
- KeyTime: *11 {
- a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,12316308800,13855847400,15395386000,16934924599,18474463200
- }
- KeyValueFloat: *11 {
- a: 71.67209,58.46004,44.36159,26.10784,-4.4576,-84.13254,-110.4439,-123.3187,-147.5007,-79.98373,-108.3279
- }
- ;KeyAttrFlags: Linear
- KeyAttrFlags: *1 {
- a: 8452
- }
- ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
- KeyAttrDataFloat: *4 {
- a: 0,0,218434821,0
- }
- KeyAttrRefCount: *1 {
- a: 11
- }
- Post-Extrapolation: {
- Type: C
- Repetition: 1
- }
- }
- AnimationCurve: 87012016, "AnimCurve::", "" {
- Default: 0
- KeyVer: 4008
- KeyTime: *1 {
- a: 0
- }
- KeyValueFloat: *1 {
- a: 1
- }
- ;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
- KeyAttrFlags: *1 {
- a: 16778248
- }
- ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
- KeyAttrDataFloat: *4 {
- a: 0,0,218434820,0
- }
- KeyAttrRefCount: *1 {
- a: 1
- }
- Post-Extrapolation: {
- Type: C
- Repetition: 1
- }
- }
- AnimationCurve: 87016496, "AnimCurve::", "" {
- Default: 0
- KeyVer: 4008
- KeyTime: *1 {
- a: 0
- }
- KeyValueFloat: *1 {
- a: 0.9999999
- }
- ;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
- KeyAttrFlags: *1 {
- a: 16778248
- }
- ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
- KeyAttrDataFloat: *4 {
- a: 0,0,218434820,0
- }
- KeyAttrRefCount: *1 {
- a: 1
- }
- Post-Extrapolation: {
- Type: C
- Repetition: 1
- }
- }
- AnimationCurve: 87009456, "AnimCurve::", "" {
- Default: 0
- KeyVer: 4008
- KeyTime: *1 {
- a: 0
- }
- KeyValueFloat: *1 {
- a: 0.9999999
- }
- ;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
- KeyAttrFlags: *1 {
- a: 16778248
- }
- ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
- KeyAttrDataFloat: *4 {
- a: 0,0,218434820,0
- }
- KeyAttrRefCount: *1 {
- a: 1
- }
- Post-Extrapolation: {
- Type: C
- Repetition: 1
- }
- }
- AnimationCurve: 87010416, "AnimCurve::", "" {
- Default: 0
- KeyVer: 4008
- KeyTime: *13 {
- a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924599,18474463200
- }
- KeyValueFloat: *13 {
- a: -80.83176,-66.01091,-53.40211,-41.60637,-28.76075,-15.57493,-19.10021,-39.4753,-63.43169,-90.94036,-119.132,-99.04665,-80.83176
- }
- ;KeyAttrFlags: Linear
- KeyAttrFlags: *1 {
- a: 8452
- }
- ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
- KeyAttrDataFloat: *4 {
- a: 0,0,218434821,0
- }
- KeyAttrRefCount: *1 {
- a: 13
- }
- Post-Extrapolation: {
- Type: C
- Repetition: 1
- }
- }
- AnimationCurve: 87010736, "AnimCurve::", "" {
- Default: 0
- KeyVer: 4008
- KeyTime: *13 {
- a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924599,18474463200
- }
- KeyValueFloat: *13 {
- a: 0.05341271,0.003946659,-0.02357781,-0.0698865,-0.102207,-0.1193644,-0.1175612,-0.07537797,-0.0207911,0.0879182,0.1758231,0.1110919,0.05341735
- }
- ;KeyAttrFlags: Linear
- KeyAttrFlags: *1 {
- a: 8452
- }
- ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
- KeyAttrDataFloat: *4 {
- a: 0,0,218434821,0
- }
- KeyAttrRefCount: *1 {
- a: 13
- }
- Post-Extrapolation: {
- Type: C
- Repetition: 1
- }
- }
- AnimationCurve: 87011056, "AnimCurve::", "" {
- Default: 0
- KeyVer: 4008
- KeyTime: *13 {
- a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924599,18474463200
- }
- KeyValueFloat: *13 {
- a: 0.008395643,0.001309238,-0.03010747,-0.03808514,-0.06434038,-0.09007654,-0.09802688,-0.04289359,0.03062657,0.006010947,-0.03161012,0.01871472,0.008394358
- }
- ;KeyAttrFlags: Linear
- KeyAttrFlags: *1 {
- a: 8452
- }
- ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
- KeyAttrDataFloat: *4 {
- a: 0,0,218434821,0
- }
- KeyAttrRefCount: *1 {
- a: 13
- }
- Post-Extrapolation: {
- Type: C
- Repetition: 1
- }
- }
- AnimationCurve: 87198448, "AnimCurve::", "" {
- Default: 0
- KeyVer: 4008
- KeyTime: *1 {
- a: 0
- }
- KeyValueFloat: *1 {
- a: 0.9999999
- }
- ;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
- KeyAttrFlags: *1 {
- a: 16778248
- }
- ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
- KeyAttrDataFloat: *4 {
- a: 0,0,218434820,0
- }
- KeyAttrRefCount: *1 {
- a: 1
- }
- Post-Extrapolation: {
- Type: C
- Repetition: 1
- }
- }
- AnimationCurve: 87197168, "AnimCurve::", "" {
- Default: 0
- KeyVer: 4008
- KeyTime: *1 {
- a: 0
- }
- KeyValueFloat: *1 {
- a: 0.9999999
- }
- ;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
- KeyAttrFlags: *1 {
- a: 16778248
- }
- ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
- KeyAttrDataFloat: *4 {
- a: 0,0,218434820,0
- }
- KeyAttrRefCount: *1 {
- a: 1
- }
- Post-Extrapolation: {
- Type: C
- Repetition: 1
- }
- }
- AnimationCurve: 87203888, "AnimCurve::", "" {
- Default: 0
- KeyVer: 4008
- KeyTime: *1 {
- a: 0
- }
- KeyValueFloat: *1 {
- a: 0.9999999
- }
- ;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
- KeyAttrFlags: *1 {
- a: 16778248
- }
- ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
- KeyAttrDataFloat: *4 {
- a: 0,0,218434820,0
- }
- KeyAttrRefCount: *1 {
- a: 1
- }
- Post-Extrapolation: {
- Type: C
- Repetition: 1
- }
- }
- AnimationCurve: 87203248, "AnimCurve::", "" {
- Default: 0
- KeyVer: 4008
- KeyTime: *12 {
- a: 0,1539538600,3079077200,4618615800,6158154400,9237231600,10776770200,12316308800,13855847400,15395386000,16934924599,18474463200
- }
- KeyValueFloat: *12 {
- a: -65.40185,-59.53423,-53.0503,-73.12289,-90.07312,-78.76129,-55.39491,-55.64509,-57.79772,-61.95334,-65.62413,-65.40195
- }
- ;KeyAttrFlags: Linear
- KeyAttrFlags: *1 {
- a: 8452
- }
- ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
- KeyAttrDataFloat: *4 {
- a: 0,0,218434821,0
- }
- KeyAttrRefCount: *1 {
- a: 12
- }
- Post-Extrapolation: {
- Type: C
- Repetition: 1
- }
- }
- AnimationCurve: 87200688, "AnimCurve::", "" {
- Default: 0
- KeyVer: 4008
- KeyTime: *12 {
- a: 0,1539538600,3079077200,4618615800,6158154400,9237231600,10776770200,12316308800,13855847400,15395386000,16934924599,18474463200
- }
- KeyValueFloat: *12 {
- a: -12.61465,-19.49694,-24.90858,-19.69821,-7.139324,20.73466,25.18724,17.85728,9.915006,2.291631,-5.217418,-12.61489
- }
- ;KeyAttrFlags: Linear
- KeyAttrFlags: *1 {
- a: 8452
- }
- ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
- KeyAttrDataFloat: *4 {
- a: 0,0,218434821,0
- }
- KeyAttrRefCount: *1 {
- a: 12
- }
- Post-Extrapolation: {
- Type: C
- Repetition: 1
- }
- }
- AnimationCurve: 87199088, "AnimCurve::", "" {
- Default: 0
- KeyVer: 4008
- KeyTime: *12 {
- a: 0,1539538600,3079077200,4618615800,6158154400,9237231600,10776770200,12316308800,13855847400,15395386000,16934924599,18474463200
- }
- KeyValueFloat: *12 {
- a: -4.699225,-10.23324,-14.1454,-9.502213,-5.948548,3.948369,11.75515,10.9454,8.631946,5.29794,0.7553134,-4.698624
- }
- ;KeyAttrFlags: Linear
- KeyAttrFlags: *1 {
- a: 8452
- }
- ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
- KeyAttrDataFloat: *4 {
- a: 0,0,218434821,0
- }
- KeyAttrRefCount: *1 {
- a: 12
- }
- Post-Extrapolation: {
- Type: C
- Repetition: 1
- }
- }
- AnimationCurve: 87199728, "AnimCurve::", "" {
- Default: 0
- KeyVer: 4008
- KeyTime: *1 {
- a: 0
- }
- KeyValueFloat: *1 {
- a: 0.9999999
- }
- ;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
- KeyAttrFlags: *1 {
- a: 16778248
- }
- ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
- KeyAttrDataFloat: *4 {
- a: 0,0,218434820,0
- }
- KeyAttrRefCount: *1 {
- a: 1
- }
- Post-Extrapolation: {
- Type: C
- Repetition: 1
- }
- }
- AnimationCurve: 87203568, "AnimCurve::", "" {
- Default: 0
- KeyVer: 4008
- KeyTime: *1 {
- a: 0
- }
- KeyValueFloat: *1 {
- a: 1
- }
- ;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
- KeyAttrFlags: *1 {
- a: 16778248
- }
- ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
- KeyAttrDataFloat: *4 {
- a: 0,0,218434820,0
- }
- KeyAttrRefCount: *1 {
- a: 1
- }
- Post-Extrapolation: {
- Type: C
- Repetition: 1
- }
- }
- AnimationCurve: 87204208, "AnimCurve::", "" {
- Default: 0
- KeyVer: 4008
- KeyTime: *1 {
- a: 0
- }
- KeyValueFloat: *1 {
- a: 0.9999999
- }
- ;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
- KeyAttrFlags: *1 {
- a: 16778248
- }
- ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
- KeyAttrDataFloat: *4 {
- a: 0,0,218434820,0
- }
- KeyAttrRefCount: *1 {
- a: 1
- }
- Post-Extrapolation: {
- Type: C
- Repetition: 1
- }
- }
- AnimationCurve: 87202928, "AnimCurve::", "" {
- Default: 0
- KeyVer: 4008
- KeyTime: *13 {
- a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924599,18474463200
- }
- KeyValueFloat: *13 {
- a: -61.00566,-64.80626,-69.96893,-58.69234,-52.07943,-53.39025,-60.37043,-72.3579,-69.69061,-66.65137,-63.2714,-60.84529,-61.02523
- }
- ;KeyAttrFlags: Linear
- KeyAttrFlags: *1 {
- a: 8452
- }
- ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
- KeyAttrDataFloat: *4 {
- a: 0,0,218434821,0
- }
- KeyAttrRefCount: *1 {
- a: 13
- }
- Post-Extrapolation: {
- Type: C
- Repetition: 1
- }
- }
- AnimationCurve: 87197488, "AnimCurve::", "" {
- Default: 0
- KeyVer: 4008
- KeyTime: *13 {
- a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924599,18474463200
- }
- KeyValueFloat: *13 {
- a: 0.001938356,0.001527108,-0.0003005283,0.007458567,0.005092279,-0.008387472,-0.003469736,0.00398883,-0.0296157,0.02885072,0.006814821,0.01832112,-0.001639245
- }
- ;KeyAttrFlags: Linear
- KeyAttrFlags: *1 {
- a: 8452
- }
- ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
- KeyAttrDataFloat: *4 {
- a: 0,0,218434821,0
- }
- KeyAttrRefCount: *1 {
- a: 13
- }
- Post-Extrapolation: {
- Type: C
- Repetition: 1
- }
- }
- AnimationCurve: 87197808, "AnimCurve::", "" {
- Default: 0
- KeyVer: 4008
- KeyTime: *13 {
- a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924599,18474463200
- }
- KeyValueFloat: *13 {
- a: -0.001420679,-0.00396151,-0.002759397,0.003196529,0.001487046,-0.01073706,-0.005846642,-0.0009289057,-0.01218506,0.003387774,0.001778193,0.009284242,0.002516186
- }
- ;KeyAttrFlags: Linear
- KeyAttrFlags: *1 {
- a: 8452
- }
- ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
- KeyAttrDataFloat: *4 {
- a: 0,0,218434821,0
- }
- KeyAttrRefCount: *1 {
- a: 13
- }
- Post-Extrapolation: {
- Type: C
- Repetition: 1
- }
- }
- AnimationCurve: 87201328, "AnimCurve::", "" {
- Default: 0
- KeyVer: 4008
- KeyTime: *1 {
- a: 0
- }
- KeyValueFloat: *1 {
- a: 1
- }
- ;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
- KeyAttrFlags: *1 {
- a: 16778248
- }
- ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
- KeyAttrDataFloat: *4 {
- a: 0,0,218434820,0
- }
- KeyAttrRefCount: *1 {
- a: 1
- }
- Post-Extrapolation: {
- Type: C
- Repetition: 1
- }
- }
- AnimationCurve: 87201008, "AnimCurve::", "" {
- Default: 0
- KeyVer: 4008
- KeyTime: *1 {
- a: 0
- }
- KeyValueFloat: *1 {
- a: 1
- }
- ;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
- KeyAttrFlags: *1 {
- a: 16778248
- }
- ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
- KeyAttrDataFloat: *4 {
- a: 0,0,218434820,0
- }
- KeyAttrRefCount: *1 {
- a: 1
- }
- Post-Extrapolation: {
- Type: C
- Repetition: 1
- }
- }
- AnimationCurve: 87200368, "AnimCurve::", "" {
- Default: 0
- KeyVer: 4008
- KeyTime: *1 {
- a: 0
- }
- KeyValueFloat: *1 {
- a: 1
- }
- ;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
- KeyAttrFlags: *1 {
- a: 16778248
- }
- ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
- KeyAttrDataFloat: *4 {
- a: 0,0,218434820,0
- }
- KeyAttrRefCount: *1 {
- a: 1
- }
- Post-Extrapolation: {
- Type: C
- Repetition: 1
- }
- }
- CollectionExclusive: 86203552, "DisplayLayer::lores", "DisplayLayer" {
- Properties70: {
- P: "Color", "ColorRGB", "Color", "",0.882352941176471,0.345098039215686,0.780392156862745
- }
- }
- }
- ; Object connections
- ;------------------------------------------------------------------
- Connections: {
-
- ;Model::minebot_main_root, Model::RootNode
- C: "OO",86593904,0
-
- ;Model::minebot_main, Model::minebot_main_root
- C: "OO",86351648,86593904
-
- ;NodeAttribute::, Model::minebot_main_root
- C: "OO",86593568,86593904
-
- ;AnimCurveNode::R, Model::minebot_main_root
- C: "OP",87082512,86593904, "Lcl Rotation"
-
- ;AnimCurveNode::S, Model::minebot_main_root
- C: "OP",87246688,86593904, "Lcl Scaling"
-
- ;Model::minebot_right_upperleg, Model::minebot_main
- C: "OO",86353904,86351648
-
- ;Model::minebot_head, Model::minebot_main
- C: "OO",86391200,86351648
-
- ;Model::minebot_front_upperleg, Model::minebot_main
- C: "OO",86393456,86351648
-
- ;Model::minebot_left_upperleg, Model::minebot_main
- C: "OO",86402080,86351648
-
- ;Model::minebot_front_upperleg2, Model::minebot_main
- C: "OO",86617456,86351648
-
- ;Geometry::, Model::minebot_main
- C: "OO",86434848,86351648
-
- ;Material::01 - Default, Model::minebot_main
- C: "OO",86629280,86351648
-
- ;AnimCurveNode::T, Model::minebot_main
- C: "OP",87247056,86351648, "Lcl Translation"
-
- ;AnimCurveNode::R, Model::minebot_main
- C: "OP",87255632,86351648, "Lcl Rotation"
-
- ;AnimCurveNode::S, Model::minebot_main
- C: "OP",87272400,86351648, "Lcl Scaling"
-
- ;Model::minebot_right_lowerleg, Model::minebot_right_upperleg
- C: "OO",86388944,86353904
-
- ;Geometry::, Model::minebot_right_upperleg
- C: "OO",86697104,86353904
-
- ;Material::01 - Default, Model::minebot_right_upperleg
- C: "OO",86629280,86353904
-
- ;AnimCurveNode::R, Model::minebot_right_upperleg
- C: "OP",87272768,86353904, "Lcl Rotation"
-
- ;AnimCurveNode::S, Model::minebot_right_upperleg
- C: "OP",87273136,86353904, "Lcl Scaling"
-
- ;Geometry::, Model::minebot_right_lowerleg
- C: "OO",86435536,86388944
-
- ;Material::01 - Default, Model::minebot_right_lowerleg
- C: "OO",86629280,86388944
-
- ;AnimCurveNode::R, Model::minebot_right_lowerleg
- C: "OP",87273504,86388944, "Lcl Rotation"
-
- ;AnimCurveNode::S, Model::minebot_right_lowerleg
- C: "OP",86954048,86388944, "Lcl Scaling"
-
- ;Geometry::, Model::minebot_head
- C: "OO",86717200,86391200
-
- ;Material::01 - Default, Model::minebot_head
- C: "OO",86629280,86391200
-
- ;AnimCurveNode::R, Model::minebot_head
- C: "OP",86954416,86391200, "Lcl Rotation"
-
- ;AnimCurveNode::S, Model::minebot_head
- C: "OP",87284144,86391200, "Lcl Scaling"
-
- ;Model::minebot_back_lowerleg, Model::minebot_front_upperleg
- C: "OO",86399824,86393456
-
- ;Geometry::, Model::minebot_front_upperleg
- C: "OO",86759168,86393456
-
- ;Material::01 - Default, Model::minebot_front_upperleg
- C: "OO",86629280,86393456
-
- ;AnimCurveNode::R, Model::minebot_front_upperleg
- C: "OP",87284512,86393456, "Lcl Rotation"
-
- ;AnimCurveNode::S, Model::minebot_front_upperleg
- C: "OP",87284880,86393456, "Lcl Scaling"
-
- ;Geometry::, Model::minebot_back_lowerleg
- C: "OO",86752944,86399824
-
- ;Material::01 - Default, Model::minebot_back_lowerleg
- C: "OO",86629280,86399824
-
- ;AnimCurveNode::R, Model::minebot_back_lowerleg
- C: "OP",87285248,86399824, "Lcl Rotation"
-
- ;AnimCurveNode::S, Model::minebot_back_lowerleg
- C: "OP",87285616,86399824, "Lcl Scaling"
-
- ;Model::minebot_left_lowerleg, Model::minebot_left_upperleg
- C: "OO",86404336,86402080
-
- ;Geometry::, Model::minebot_left_upperleg
- C: "OO",86801152,86402080
-
- ;Material::01 - Default, Model::minebot_left_upperleg
- C: "OO",86629280,86402080
-
- ;AnimCurveNode::R, Model::minebot_left_upperleg
- C: "OP",87288272,86402080, "Lcl Rotation"
-
- ;AnimCurveNode::S, Model::minebot_left_upperleg
- C: "OP",87286064,86402080, "Lcl Scaling"
-
- ;Geometry::, Model::minebot_left_lowerleg
- C: "OO",86804928,86404336
-
- ;Material::01 - Default, Model::minebot_left_lowerleg
- C: "OO",86629280,86404336
-
- ;AnimCurveNode::R, Model::minebot_left_lowerleg
- C: "OP",87288640,86404336, "Lcl Rotation"
-
- ;AnimCurveNode::S, Model::minebot_left_lowerleg
- C: "OP",87286432,86404336, "Lcl Scaling"
-
- ;Model::minebot_front_lowerleg, Model::minebot_front_upperleg2
- C: "OO",86605856,86617456
-
- ;Geometry::, Model::minebot_front_upperleg2
- C: "OO",86826528,86617456
-
- ;Material::01 - Default, Model::minebot_front_upperleg2
- C: "OO",86629280,86617456
-
- ;AnimCurveNode::R, Model::minebot_front_upperleg2
- C: "OP",87287536,86617456, "Lcl Rotation"
-
- ;AnimCurveNode::S, Model::minebot_front_upperleg2
- C: "OP",87286800,86617456, "Lcl Scaling"
-
- ;Geometry::, Model::minebot_front_lowerleg
- C: "OO",86834416,86605856
-
- ;Material::01 - Default, Model::minebot_front_lowerleg
- C: "OO",86629280,86605856
-
- ;AnimCurveNode::R, Model::minebot_front_lowerleg
- C: "OP",87287168,86605856, "Lcl Rotation"
-
- ;AnimCurveNode::S, Model::minebot_front_lowerleg
- C: "OP",87287904,86605856, "Lcl Scaling"
-
- ;Texture::Map #1, Material::01 - Default
- C: "OP",86432064,86629280, "DiffuseColor"
-
- ;Texture::Map #2, Material::01 - Default
- C: "OP",86432816,86629280, "Bump"
-
- ;Video::Map #1, Texture::Map #1
- C: "OO",86433568,86432064
-
- ;Video::Map #2, Texture::Map #2
- C: "OO",86434208,86432816
-
- ;AnimLayer::BaseLayer, AnimStack::Take 001
- C: "OO",85981904,86654528
-
- ;AnimCurveNode::R, AnimLayer::BaseLayer
- C: "OO",87082512,85981904
-
- ;AnimCurveNode::S, AnimLayer::BaseLayer
- C: "OO",87246688,85981904
-
- ;AnimCurveNode::T, AnimLayer::BaseLayer
- C: "OO",87247056,85981904
-
- ;AnimCurveNode::R, AnimLayer::BaseLayer
- C: "OO",87255632,85981904
-
- ;AnimCurveNode::S, AnimLayer::BaseLayer
- C: "OO",87272400,85981904
-
- ;AnimCurveNode::R, AnimLayer::BaseLayer
- C: "OO",87272768,85981904
-
- ;AnimCurveNode::S, AnimLayer::BaseLayer
- C: "OO",87273136,85981904
-
- ;AnimCurveNode::R, AnimLayer::BaseLayer
- C: "OO",87273504,85981904
-
- ;AnimCurveNode::S, AnimLayer::BaseLayer
- C: "OO",86954048,85981904
-
- ;AnimCurveNode::R, AnimLayer::BaseLayer
- C: "OO",86954416,85981904
-
- ;AnimCurveNode::S, AnimLayer::BaseLayer
- C: "OO",87284144,85981904
-
- ;AnimCurveNode::R, AnimLayer::BaseLayer
- C: "OO",87284512,85981904
-
- ;AnimCurveNode::S, AnimLayer::BaseLayer
- C: "OO",87284880,85981904
-
- ;AnimCurveNode::R, AnimLayer::BaseLayer
- C: "OO",87285248,85981904
-
- ;AnimCurveNode::S, AnimLayer::BaseLayer
- C: "OO",87285616,85981904
-
- ;AnimCurveNode::R, AnimLayer::BaseLayer
- C: "OO",87288272,85981904
-
- ;AnimCurveNode::S, AnimLayer::BaseLayer
- C: "OO",87286064,85981904
-
- ;AnimCurveNode::R, AnimLayer::BaseLayer
- C: "OO",87288640,85981904
-
- ;AnimCurveNode::S, AnimLayer::BaseLayer
- C: "OO",87286432,85981904
-
- ;AnimCurveNode::R, AnimLayer::BaseLayer
- C: "OO",87287536,85981904
-
- ;AnimCurveNode::S, AnimLayer::BaseLayer
- C: "OO",87286800,85981904
-
- ;AnimCurveNode::R, AnimLayer::BaseLayer
- C: "OO",87287168,85981904
-
- ;AnimCurveNode::S, AnimLayer::BaseLayer
- C: "OO",87287904,85981904
-
- ;Model::minebot_front_lowerleg, DisplayLayer::lores
- C: "OO",86605856,86203552
-
- ;Model::minebot_front_upperleg, DisplayLayer::lores
- C: "OO",86617456,86203552
-
- ;Model::minebot_left_lowerleg, DisplayLayer::lores
- C: "OO",86404336,86203552
-
- ;Model::minebot_left_upperleg, DisplayLayer::lores
- C: "OO",86402080,86203552
-
- ;Model::minebot_back_lowerleg, DisplayLayer::lores
- C: "OO",86399824,86203552
-
- ;Model::minebot_front_upperleg2, DisplayLayer::lores
- C: "OO",86393456,86203552
-
- ;Model::minebot_head, DisplayLayer::lores
- C: "OO",86391200,86203552
-
- ;Model::minebot_right_lowerleg, DisplayLayer::lores
- C: "OO",86388944,86203552
-
- ;Model::minebot_right_upperleg, DisplayLayer::lores
- C: "OO",86353904,86203552
-
- ;Model::minebot_main, DisplayLayer::lores
- C: "OO",86351648,86203552
-
- ;AnimCurve::, AnimCurveNode::R
- C: "OP",86840352,87082512, "d|X"
-
- ;AnimCurve::, AnimCurveNode::R
- C: "OP",86863408,87082512, "d|Y"
-
- ;AnimCurve::, AnimCurveNode::R
- C: "OP",86864768,87082512, "d|Z"
-
- ;AnimCurve::, AnimCurveNode::S
- C: "OP",86866128,87246688, "d|X"
-
- ;AnimCurve::, AnimCurveNode::S
- C: "OP",86875856,87246688, "d|Y"
-
- ;AnimCurve::, AnimCurveNode::S
- C: "OP",86877376,87246688, "d|Z"
-
- ;AnimCurve::, AnimCurveNode::T
- C: "OP",86878896,87247056, "d|X"
-
- ;AnimCurve::, AnimCurveNode::T
- C: "OP",86880416,87247056, "d|Y"
-
- ;AnimCurve::, AnimCurveNode::T
- C: "OP",86947488,87247056, "d|Z"
-
- ;AnimCurve::, AnimCurveNode::R
- C: "OP",86949008,87255632, "d|X"
-
- ;AnimCurve::, AnimCurveNode::R
- C: "OP",86950528,87255632, "d|Y"
-
- ;AnimCurve::, AnimCurveNode::R
- C: "OP",86952048,87255632, "d|Z"
-
- ;AnimCurve::, AnimCurveNode::S
- C: "OP",86953568,87272400, "d|X"
-
- ;AnimCurve::, AnimCurveNode::S
- C: "OP",86406928,87272400, "d|Y"
-
- ;AnimCurve::, AnimCurveNode::S
- C: "OP",86965376,87272400, "d|Z"
-
- ;AnimCurve::, AnimCurveNode::R
- C: "OP",86966896,87272768, "d|X"
-
- ;AnimCurve::, AnimCurveNode::R
- C: "OP",86991984,87272768, "d|Y"
-
- ;AnimCurve::, AnimCurveNode::R
- C: "OP",86997776,87272768, "d|Z"
-
- ;AnimCurve::, AnimCurveNode::S
- C: "OP",86996816,87273136, "d|X"
-
- ;AnimCurve::, AnimCurveNode::S
- C: "OP",87000016,87273136, "d|Y"
-
- ;AnimCurve::, AnimCurveNode::S
- C: "OP",86996496,87273136, "d|Z"
-
- ;AnimCurve::, AnimCurveNode::R
- C: "OP",86997136,87273504, "d|X"
-
- ;AnimCurve::, AnimCurveNode::R
- C: "OP",86999056,87273504, "d|Y"
-
- ;AnimCurve::, AnimCurveNode::R
- C: "OP",86999376,87273504, "d|Z"
-
- ;AnimCurve::, AnimCurveNode::S
- C: "OP",86998096,86954048, "d|X"
-
- ;AnimCurve::, AnimCurveNode::S
- C: "OP",86997456,86954048, "d|Y"
-
- ;AnimCurve::, AnimCurveNode::S
- C: "OP",86998416,86954048, "d|Z"
-
- ;AnimCurve::, AnimCurveNode::R
- C: "OP",86998736,86954416, "d|X"
-
- ;AnimCurve::, AnimCurveNode::R
- C: "OP",86999696,86954416, "d|Y"
-
- ;AnimCurve::, AnimCurveNode::R
- C: "OP",87014576,86954416, "d|Z"
-
- ;AnimCurve::, AnimCurveNode::S
- C: "OP",87012336,87284144, "d|X"
-
- ;AnimCurve::, AnimCurveNode::S
- C: "OP",87013616,87284144, "d|Y"
-
- ;AnimCurve::, AnimCurveNode::S
- C: "OP",87011376,87284144, "d|Z"
-
- ;AnimCurve::, AnimCurveNode::R
- C: "OP",87009776,87284512, "d|X"
-
- ;AnimCurve::, AnimCurveNode::R
- C: "OP",87008816,87284512, "d|Y"
-
- ;AnimCurve::, AnimCurveNode::R
- C: "OP",87014256,87284512, "d|Z"
-
- ;AnimCurve::, AnimCurveNode::S
- C: "OP",87013296,87284880, "d|X"
-
- ;AnimCurve::, AnimCurveNode::S
- C: "OP",87011696,87284880, "d|Y"
-
- ;AnimCurve::, AnimCurveNode::S
- C: "OP",87010096,87284880, "d|Z"
-
- ;AnimCurve::, AnimCurveNode::R
- C: "OP",87012976,87285248, "d|X"
-
- ;AnimCurve::, AnimCurveNode::R
- C: "OP",87013936,87285248, "d|Y"
-
- ;AnimCurve::, AnimCurveNode::R
- C: "OP",87014896,87285248, "d|Z"
-
- ;AnimCurve::, AnimCurveNode::S
- C: "OP",87009136,87285616, "d|X"
-
- ;AnimCurve::, AnimCurveNode::S
- C: "OP",87015216,87285616, "d|Y"
-
- ;AnimCurve::, AnimCurveNode::S
- C: "OP",87016176,87285616, "d|Z"
-
- ;AnimCurve::, AnimCurveNode::R
- C: "OP",87015536,87288272, "d|X"
-
- ;AnimCurve::, AnimCurveNode::R
- C: "OP",87015856,87288272, "d|Y"
-
- ;AnimCurve::, AnimCurveNode::R
- C: "OP",87012656,87288272, "d|Z"
-
- ;AnimCurve::, AnimCurveNode::S
- C: "OP",87012016,87286064, "d|X"
-
- ;AnimCurve::, AnimCurveNode::S
- C: "OP",87016496,87286064, "d|Y"
-
- ;AnimCurve::, AnimCurveNode::S
- C: "OP",87009456,87286064, "d|Z"
-
- ;AnimCurve::, AnimCurveNode::R
- C: "OP",87010416,87288640, "d|X"
-
- ;AnimCurve::, AnimCurveNode::R
- C: "OP",87010736,87288640, "d|Y"
-
- ;AnimCurve::, AnimCurveNode::R
- C: "OP",87011056,87288640, "d|Z"
-
- ;AnimCurve::, AnimCurveNode::S
- C: "OP",87198448,87286432, "d|X"
-
- ;AnimCurve::, AnimCurveNode::S
- C: "OP",87197168,87286432, "d|Y"
-
- ;AnimCurve::, AnimCurveNode::S
- C: "OP",87203888,87286432, "d|Z"
-
- ;AnimCurve::, AnimCurveNode::R
- C: "OP",87203248,87287536, "d|X"
-
- ;AnimCurve::, AnimCurveNode::R
- C: "OP",87200688,87287536, "d|Y"
-
- ;AnimCurve::, AnimCurveNode::R
- C: "OP",87199088,87287536, "d|Z"
-
- ;AnimCurve::, AnimCurveNode::S
- C: "OP",87199728,87286800, "d|X"
-
- ;AnimCurve::, AnimCurveNode::S
- C: "OP",87203568,87286800, "d|Y"
-
- ;AnimCurve::, AnimCurveNode::S
- C: "OP",87204208,87286800, "d|Z"
-
- ;AnimCurve::, AnimCurveNode::R
- C: "OP",87202928,87287168, "d|X"
-
- ;AnimCurve::, AnimCurveNode::R
- C: "OP",87197488,87287168, "d|Y"
-
- ;AnimCurve::, AnimCurveNode::R
- C: "OP",87197808,87287168, "d|Z"
-
- ;AnimCurve::, AnimCurveNode::S
- C: "OP",87201328,87287904, "d|X"
-
- ;AnimCurve::, AnimCurveNode::S
- C: "OP",87201008,87287904, "d|Y"
-
- ;AnimCurve::, AnimCurveNode::S
- C: "OP",87200368,87287904, "d|Z"
- }
- ;Takes section
- ;----------------------------------------------------
- Takes: {
- Current: ""
- Take: "Take 001" {
- FileName: "Take_001.tak"
- LocalTime: 0,18474463200
- ReferenceTime: 0,18474463200
- }
- }
|