| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947 |
- ; FBX 7.5.0 project file
- ; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors.
- ; All rights reserved.
- ; ----------------------------------------------------
- FBXHeaderExtension: {
- FBXHeaderVersion: 1003
- FBXVersion: 7500
- CreationTimeStamp: {
- Version: 1000
- Year: 2020
- Month: 7
- Day: 2
- Hour: 8
- Minute: 11
- Second: 2
- Millisecond: 849
- }
- Creator: "FBX SDK/FBX Plugins version 2016.1.2"
- SceneInfo: "SceneInfo::GlobalInfo", "UserData" {
- Type: "UserData"
- Version: 100
- MetaData: {
- Version: 100
- Title: ""
- Subject: ""
- Author: ""
- Keywords: ""
- Revision: ""
- Comment: ""
- }
- Properties70: {
- P: "DocumentUrl", "KString", "Url", "", "A:\Lordenfel\Unity\Lordenfel\Assets\Lordenfel\Source\SM_Cupboard_01.fbx"
- P: "SrcDocumentUrl", "KString", "Url", "", "A:\Lordenfel\Unity\Lordenfel\Assets\Lordenfel\Source\SM_Cupboard_01.fbx"
- P: "Original", "Compound", "", ""
- P: "Original|ApplicationVendor", "KString", "", "", "Autodesk"
- P: "Original|ApplicationName", "KString", "", "", "Maya LT"
- P: "Original|ApplicationVersion", "KString", "", "", "2016"
- P: "Original|DateTime_GMT", "DateTime", "", "", "02/07/2020 05:11:02.849"
- P: "Original|FileName", "KString", "", "", "A:\Lordenfel\Unity\Lordenfel\Assets\Lordenfel\Source\SM_Cupboard_01.fbx"
- P: "LastSaved", "Compound", "", ""
- P: "LastSaved|ApplicationVendor", "KString", "", "", "Autodesk"
- P: "LastSaved|ApplicationName", "KString", "", "", "Maya LT"
- P: "LastSaved|ApplicationVersion", "KString", "", "", "2016"
- P: "LastSaved|DateTime_GMT", "DateTime", "", "", "02/07/2020 05:11:02.849"
- P: "Original|ApplicationActiveProject", "KString", "", "", "A:\Lordenfel\Maya"
- P: "Original|ApplicationNativeFile", "KString", "", "", "A:\Lordenfel\Maya\Lordenfel_05.mlt"
- }
- }
- }
- GlobalSettings: {
- Version: 1000
- Properties70: {
- P: "UpAxis", "int", "Integer", "",1
- P: "UpAxisSign", "int", "Integer", "",1
- P: "FrontAxis", "int", "Integer", "",2
- P: "FrontAxisSign", "int", "Integer", "",1
- P: "CoordAxis", "int", "Integer", "",0
- P: "CoordAxisSign", "int", "Integer", "",1
- P: "OriginalUpAxis", "int", "Integer", "",1
- 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: "TimeProtocol", "enum", "", "",2
- P: "SnapOnFrameMode", "enum", "", "",0
- P: "TimeSpanStart", "KTime", "Time", "",1539538600
- P: "TimeSpanStop", "KTime", "Time", "",92372316000
- P: "CustomFrameRate", "double", "Number", "",-1
- P: "TimeMarker", "Compound", "", ""
- P: "CurrentTimeMarker", "int", "Integer", "",-1
- }
- }
- ; Documents Description
- ;------------------------------------------------------------------
- Documents: {
- Count: 1
- Document: 2399942330768, "", "Scene" {
- Properties70: {
- P: "SourceObject", "object", "", ""
- P: "ActiveAnimStackName", "KString", "", "", "Take 001"
- }
- RootNode: 0
- }
- }
- ; Document References
- ;------------------------------------------------------------------
- References: {
- }
- ; Object definitions
- ;------------------------------------------------------------------
- Definitions: {
- Version: 100
- Count: 35
- ObjectType: "GlobalSettings" {
- Count: 1
- }
- 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: "NodeAttribute" {
- Count: 2
- 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: 13
- 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: "Geometry" {
- Count: 11
- 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: "Material" {
- Count: 2
- 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
- }
- }
- }
- }
- ; Object properties
- ;------------------------------------------------------------------
- Objects: {
- NodeAttribute: 2399515771808, "NodeAttribute::", "Null" {
- Properties70: {
- P: "Look", "enum", "", "",0
- }
- TypeFlags: "Null"
- }
- NodeAttribute: 2399503639568, "NodeAttribute::", "LodGroup" {
- Properties70: {
- P: "WorldSpace", "bool", "", "",1
- P: "Thresholds|Level0", "Distance", "", "",100, "cm"
- P: "DisplayLevels|Level0", "enum", "", "",1
- P: "DisplayLevels|Level1", "enum", "", "",1
- }
- }
- Geometry: 2399509356768, "Geometry::", "Mesh" {
- Vertices: *486 {
- a: 101.732421875,201.36653137207,0.74090576171875,101.732421875,12.308910369873,0.74090576171875,93.01123046875,201.36653137207,0.74090576171875,93.01123046875,12.308910369873,0.74090576171875,-102.32958984375,201.36653137207,52.2388305664063,102.32958984375,201.36653137207,52.2388305664063,102.32958984375,201.36653137207,-0.70654296875,-102.32958984375,201.36653137207,-0.70654296875,-102.32958984375,206.979309082031,52.2388305664063,102.32958984375,206.979309082031,52.2388305664063,102.32958984375,206.979309082031,-0.70654296875,-102.32958984375,206.979309082031,-0.70654296875,104.1552734375,208.019775390625,-1.81256103515625,-104.1552734375,208.019775390625,-1.81256103515625,-104.1552734375,208.019775390625,54.1512451171875,104.1552734375,208.019775390625,54.1512451171875,104.1552734375,215.514297485352,-1.81256103515625,-104.1552734375,215.514297485352,-1.81256103515625,-104.1552734375,215.514297485352,54.1512451171875,104.1552734375,215.514297485352,54.1512451171875,2.439453125,201.36653137207,4.51971435546875,2.439453125,12.308910369873,4.51971435546875,-2.439453125,201.36653137207,4.51971435546875,-2.439453125,12.308910369873,4.51971435546875,96.70751953125,120.153709411621,6.4730224609375,-96.70751953125,120.153709411621,6.4730224609375,96.70751953125,125.032806396484,6.4730224609375,-96.70751953125,125.032806396484,6.4730224609375,96.70751953125,159.540344238281,6.4730224609375,-96.70751953125,159.540344238281,6.4730224609375,96.70751953125,164.419448852539,6.4730224609375,-96.70751953125,164.419448852539,6.4730224609375,-101.73291015625,201.36653137207,0.74090576171875,-101.73291015625,12.308910369873,0.74090576171875,-93.0107421875,201.36653137207,0.74090576171875,-93.0107421875,12.308910369873,0.74090576171875,96.70751953125,80.7670745849609,6.4730224609375,-96.70751953125,80.7670745849609,6.4730224609375,96.70751953125,85.6461715698242,6.4730224609375,-96.70751953125,85.6461715698242,6.4730224609375,96.70751953125,41.3804321289063,2.26871919631958,-96.70751953125,41.3804321289063,2.26871919631958,
- 96.70751953125,46.2595291137695,2.26871919631958,-96.70751953125,46.2595291137695,2.26871919631958,102.32958984375,12.3962574005127,52.1959838867188,-102.3291015625,12.3962574005127,52.1959838867188,-102.3291015625,12.3962535858154,0.1292724609375,102.32958984375,12.3962535858154,0.1292724609375,-104.1552734375,10.5812568664551,-1.58984375,104.1552734375,10.5812568664551,-1.58984375,104.1552734375,10.581259727478,53.9151611328125,-104.1552734375,10.581259727478,53.9151611328125,-104.1552734375,0,-1.58984375,104.1552734375,0,-1.58984375,104.1552734375,3.814697265625e-006,53.9151611328125,-104.1552734375,3.814697265625e-006,53.9151611328125,101.24462890625,12.308910369873,50.5326538085938,101.732421875,12.308910369873,50.0447998046875,101.24462890625,201.36653137207,50.5326538085938,101.732421875,201.36653137207,50.0447998046875,93.01123046875,12.308910369873,50.0447998046875,93.4990234375,12.308910369873,50.5326538085938,93.4990234375,201.36653137207,50.5326538085938,93.01123046875,201.36653137207,50.0447998046875,1.95166015625,12.308910369873,47.2091064453125,2.439453125,12.308910369873,46.7212524414063,1.95166015625,201.36653137207,47.2091064453125,2.439453125,201.36653137207,46.7212524414063,-2.439453125,12.308910369873,46.7212524414063,-1.95166015625,12.308910369873,47.2091064453125,-1.95166015625,201.36653137207,47.2091064453125,-2.439453125,201.36653137207,46.7212524414063,-96.70751953125,120.641548156738,45.3589477539063,-96.70751953125,120.153709411621,44.87109375,96.70751953125,120.641548156738,45.3589477539063,96.70751953125,120.153709411621,44.87109375,-96.70751953125,125.032806396484,44.87109375,-96.70751953125,124.544967651367,45.3589477539063,96.70751953125,124.544967651367,45.3589477539063,96.70751953125,125.032806396484,44.87109375,-96.70751953125,160.028182983398,45.3589477539063,-96.70751953125,159.540344238281,44.87109375,96.70751953125,160.028182983398,45.3589477539063,96.70751953125,159.540344238281,44.87109375,-96.70751953125,164.419448852539,44.87109375,-96.70751953125,163.931610107422,45.3589477539063,
- 96.70751953125,163.931610107422,45.3589477539063,96.70751953125,164.419448852539,44.87109375,-101.2451171875,12.308910369873,50.5326538085938,-101.73291015625,12.308910369873,50.0447998046875,-101.2451171875,201.36653137207,50.5326538085938,-101.73291015625,201.36653137207,50.0447998046875,-93.0107421875,12.308910369873,50.0447998046875,-93.49853515625,12.308910369873,50.5326538085938,-93.49853515625,201.36653137207,50.5326538085938,-93.0107421875,201.36653137207,50.0447998046875,-96.70751953125,81.2549133300781,45.3589477539063,-96.70751953125,80.7670745849609,44.87109375,96.70751953125,81.2549133300781,45.3589477539063,96.70751953125,80.7670745849609,44.87109375,-96.70751953125,85.6461715698242,44.87109375,-96.70751953125,85.158332824707,45.3589477539063,96.70751953125,85.158332824707,45.3589477539063,96.70751953125,85.6461715698242,44.87109375,-96.70751953125,41.8682746887207,45.1319999694824,-96.70751953125,41.3804321289063,44.6441459655762,96.70751953125,41.8682746887207,45.1319999694824,96.70751953125,41.3804321289063,44.6441459655762,-96.70751953125,46.2595291137695,44.6441459655762,-96.70751953125,45.7716865539551,45.1319999694824,96.70751953125,45.7716865539551,45.1319999694824,96.70751953125,46.2595291137695,44.6441459655762,0.329963684082031,163.931610107422,45.3589477539063,0.329963684082031,160.028182983398,45.3589477539063,0.329963684082031,159.540344238281,44.87109375,0.329963684082031,159.540344238281,6.4730224609375,0.329963684082031,164.419448852539,6.4730224609375,0.329963684082031,164.419448852539,44.87109375,-0.184181213378906,124.544967651367,45.3589477539063,-0.184181213378906,120.641548156738,45.3589477539063,-0.184181213378906,120.153709411621,44.87109375,-0.184181213378906,120.153709411621,6.4730224609375,-0.184181213378906,125.032806396484,6.4730224609375,-0.184181213378906,125.032806396484,44.87109375,0.243736267089844,85.158332824707,45.3589477539063,0.243736267089844,81.2549133300781,45.3589477539063,0.243736267089844,80.7670745849609,44.87109375,0.243736267089844,80.7670745849609,6.4730224609375,
- 0.243736267089844,85.6461715698242,6.4730224609375,0.243736267089844,85.6461715698242,44.87109375,56.5421600341797,84.6155548095703,44.7052612304688,56.5421600341797,84.4497222900391,6.4730224609375,56.5421600341797,79.5706253051758,6.4730224609375,56.5421600341797,79.5706253051758,44.87109375,56.5421600341797,80.058464050293,45.3589477539063,56.5421600341797,83.7960586547852,45.5247802734375,35.9899749755859,124.13916015625,45.3589477539063,35.9899749755859,120.235748291016,45.3589477539063,35.9899749755859,119.747901916504,44.87109375,35.9899749755859,119.747901916504,6.4730224609375,35.9899749755859,124.626998901367,6.4730224609375,35.9899749755859,124.626998901367,44.87109375,-43.3400459289551,123.509048461914,45.3589477539063,-43.3400459289551,119.605628967285,45.3589477539063,-43.3400459289551,119.117797851563,44.87109375,-43.3400459289551,119.117797851563,6.4730224609375,-43.3400459289551,123.996887207031,6.4730224609375,-43.3400459289551,123.996887207031,44.87109375,60.6348266601563,163.516098022461,45.3589477539063,60.6348266601563,159.612670898438,45.3589477539063,60.6348266601563,159.12483215332,44.87109375,60.6348266601563,159.12483215332,6.4730224609375,60.6348266601563,164.003936767578,6.4730224609375,60.6348266601563,164.003936767578,44.87109375,1.95166015625,134.838958740234,45.8700141906738,-1.95166015625,134.838958740234,45.8700141906738,-2.439453125,134.838958740234,45.3821601867676,2.439453125,134.838958740234,45.3821601867676,2.60795378684998,67.0249938964844,47.9138984680176,-1.29536652565002,67.0250015258789,47.9138984680176,-1.78315949440002,67.0249938964844,47.4260444641113,3.09574675559998,67.0250015258789,47.4260444641113
- }
- PolygonVertexIndex: *556 {
- a: 59,57,1,-1,62,61,56,-59,2,63,62,58,59,-1,3,2,0,-2,2,3,60,-64,4,7,6,-6,9,8,4,-6,10,9,5,-7,11,10,6,-8,8,11,7,-5,16,17,18,-20,10,11,13,-13,11,8,14,-14,8,9,15,-15,9,10,12,-16,12,13,17,-17,13,14,18,-18,14,15,19,-19,15,12,16,-20,161,65,-22,159,69,64,-159,22,71,70,66,67,-21,21,23,22,-21,22,156,-72,75,138,139,-25,78,136,137,-75,26,79,78,74,75,-25,140,26,24,-140,26,140,141,-80,83,150,151,-29,86,148,149,-83,30,87,86,82,83,-29,152,30,28,-152,30,152,153,-88,89,91,32,-34,93,94,90,-89,34,32,91,90,94,-96,35,33,32,-35,34,95,92,-36,133,126,127,-133,135,124,125,-135,38,103,102,98,99,-37,128,131,132,-128,131,128,129,-131,40,107,105,-42,104,106,110,-110,42,111,110,106,107,-41,42,40,41,-44,111,42,43,-109,52,53,54,-56,46,47,49,-49,47,44,50,-50,44,45,51,-51,45,46,48,-52,48,49,53,-53,49,50,54,-54,50,51,55,-55,51,48,52,-56,44,47,46,-46,61,60,3,1,57,-57,69,68,23,21,65,-65,77,76,27,25,73,-73,85,84,31,29,81,-81,92,93,88,89,33,-36,101,100,39,37,97,-97,109,108,43,41,105,-105,56,57,59,-59,60,61,62,-64,64,65,161,-159,68,69,159,-161,137,138,75,-75,141,136,78,-80,149,150,83,-83,153,148,86,-88,89,88,90,-92,93,92,95,-95,125,126,133,-135,129,124,135,-131,107,106,104,-106,109,110,111,-109,112,85,80,-114,80,81,114,-114,115,114,81,-30,31,116,115,-30,117,116,31,-85,84,85,112,-118,118,142,143,-120,143,144,120,-120,121,120,144,-146,146,122,121,-146,123,122,146,-148,147,142,118,-124,124,101,96,-126,96,97,126,-126,127,126,97,-38,39,128,127,-38,129,128,39,-101,100,101,124,-130,38,131,130,-104,132,131,38,-37,99,133,132,-37,134,133,99,-99,102,135,134,-99,130,135,102,-104,136,118,119,-138,119,120,138,-138,139,138,120,-122,122,140,139,-122,141,140,122,-124,123,118,136,-142,142,77,72,-144,72,73,144,-144,145,144,73,-26,27,146,145,-26,147,146,27,-77,76,77,142,-148,148,112,113,-150,113,114,150,-150,151,150,114,-116,116,152,151,-116,153,152,116,-118,117,112,148,-154,70,155,154,-67,156,155,70,-72,154,157,67,-67,155,159,158,-155,160,159,155,-157,158,161,157,-155,161,21,-158,23,68,-161,23,156,-23,157,20,-68,157,21,-21,23,160,-157
- }
- Edges: *278 {
- a: 2,1,19,14,13,17,25,24,23,22,27,26,38,30,29,34,33,37,49,47,48,51,52,55,56,60,65,63,42,67,43,71,44,45,94,79,255,92,90,91,100,263,261,112,111,262,122,269,267,134,133,268,144,145,162,159,150,156,425,281,279,418,177,280,188,206,199,202,220,216,224,212,215,213,214,217,218,221,222,226,231,229,208,233,209,237,210,211,252,3,11,5,248,7,8,9,258,89,88,82,254,87,85,86,264,101,109,265,260,105,106,107,270,123,131,271,266,127,128,129,274,143,152,149,272,147,155,154,282,176,175,283,278,174,172,173,288,186,197,193,284,191,194,195,6,0,20,4,83,523,305,514,468,98,485,102,348,120,365,124,142,148,146,161,396,426,413,434,207,192,346,492,349,351,352,357,354,358,359,509,362,368,370,444,373,375,376,381,378,382,383,461,386,392,394,170,169,399,330,405,165,406,181,184,183,334,190,420,178,185,166,179,164,167,433,332,168,171,336,442,104,103,447,306,453,99,454,115,118,117,310,466,372,371,471,374,477,380,478,385,389,388,390,187,189,203,490,126,125,495,314,501,121,502,137,140,139,318,516,526,515,96,518,535,522,528,81,84,533,304,78,300,80,543,95,547,539,544
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Normals: *1668 {
- a: 0.999951958656311,0,0.0097961938008666,0.999951958656311,0,0.0097961938008666,1,0,0,1,0,0,-0.0591492541134357,0,0.998249173164368,-0.0591492541134357,0,0.998249173164368,0.0591492541134357,0,0.998249173164368,0.0591492541134357,0,0.998249173164368,0,1,-2.81264533441572e-007,0,1,-2.81264505019863e-007,0,0.999999940395355,-2.81264533441572e-007,0,0.999999940395355,-2.81264533441572e-007,0,1,-2.81264505019863e-007,0,1,-2.81264533441572e-007,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-0.999951958656311,0,0.0097961938008666,-0.999951958656311,0,0.0097961938008666,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0.999999940395355,0,0,0.999999940395355,0,0,0.999999940395355,0,0,0.999999940395355,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.999999940395355,0,0,-0.999999940395355,0,0,-0.999999940395355,0,0,-0.999999940395355,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.728357195854187,-0.685197591781616,0,-0.728357195854187,-0.685197591781616,0,-0.728357195854187,-0.685197770595551,0,-0.728357195854187,-0.685197770595551,-0.495142132043839,-0.868811964988709,0,-0.495142161846161,-0.868811964988709,0,-0.495142102241516,-0.868811905384064,0,-0.495142072439194,-0.868811964988709,0,0,-0.878407716751099,0.47791188955307,0,-0.878407716751099,0.47791188955307,0,-0.878407716751099,0.477911859750748,0,-0.878407716751099,0.477911859750748,0.495141804218292,-0.868812203407288,0,0.495141834020615,-0.868812143802643,0,0.495141863822937,-0.868812143802643,0,0.495141804218292,-0.868812084197998,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,0.999984741210938,0.00546237593516707,-0.000875143159646541,0.9996737241745,-0.0122791323810816,0.0223992522805929,0.999983906745911,-0.00282842735759914,-0.00491529842838645,-0.108316078782082,0.0108460579067469,0.994057297706604,-0.112249925732613,-0.0114522641524673,0.993614077568054,0.109712444245815,-0.0141178034245968,0.993863046169281,0.110564984381199,0.010859290137887,0.993809580802917,0,1,2.93382441896028e-007,0,1,2.93382441896028e-007,
- 0,1,2.93382413474319e-007,0,1,2.93382413474319e-007,0,1,2.93382441896028e-007,0,1,2.93382441896028e-007,0,0,-0.999999940395355,0,0,-0.999999940395355,0,0,-0.999999940395355,0,0,-0.999999940395355,-0.999999940395355,0,0,-0.999935567378998,-0.000460266892332584,0.0113436663523316,-0.999733626842499,-0.000464519253000617,0.0230778213590384,0.00668284948915243,-0.999898552894592,0.0125814722850919,1.06348579720361e-007,-0.999921858310699,0.0124977054074407,-3.26372984194023e-010,-1,0,0.00668337941169739,-0.999977648258209,0,-0.0007427575183101,0.111123815178871,0.99380624294281,-9.79967126113479e-007,0.109538368880749,0.993982553482056,-9.8801115200331e-007,-0.111303560435772,0.993786454200745,0.000733216293156147,-0.109715394675732,0.99396276473999,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-0.999999940395355,0,0,-1,0,0,-1,0,0,-1,-0.00668337941169739,0.999977648258209,0,3.26372984194023e-010,1,0,1.07008055749702e-007,0.999920666217804,0.0125911040231586,-0.00668285740539432,0.999899446964264,0.0125069515779614,0.0115170637145638,-0.999854207038879,0.0126081183552742,-1.13071848772961e-007,-0.999921917915344,0.0124966828152537,0,-1,0,0.0115179792046547,-0.99993371963501,0,-0.00128602073527873,0.111637659370899,0.993748128414154,9.9181534096715e-007,0.10951255261898,0.993985414505005,9.91704041553021e-007,-0.111329592764378,0.993783533573151,0.0012578695314005,-0.109210319817066,0.994017779827118,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-4.05169187089882e-009,0,-1,0,0,-1,0,0,-1,-4.06063804803125e-009,0,-0.999999940395355,-0.0115179792046547,0.99993371963501,0,0,1,0,-1.12271060004332e-007,0.999920666217804,0.0125928269699216,-0.0115170832723379,0.999855816364288,0.012479692697525,-0.999951958656311,0,0.0097961938008666,-0.999951958656311,0,0.0097961938008666,-1,0,0,-1,0,0,0.0591422617435455,0,0.998249590396881,0.0591422617435455,0,0.998249590396881,-0.0591422617435455,0,0.998249590396881,-0.0591422617435455,0,0.998249590396881,0,1,-1.93347815979905e-007,0,1,-1.93347815979905e-007,0,1,-1.93347815979905e-007,0,1,-1.93347844401615e-007,
- 0,1,-1.93347844401615e-007,0,1,-1.93347815979905e-007,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,0.999951958656311,0,0.0097961938008666,0.999951958656311,0,0.0097961938008666,1,0,0,-5.96034624322783e-007,-0.99992299079895,0.0124061955139041,-0.00780692510306835,-0.999890267848969,0.0125876255333424,-0.00780695164576173,-0.99996954202652,0,1.31128308211714e-009,-1,0,1.45890417115879e-005,0.122597604990005,0.992456495761871,0.000552353856619447,0.117667227983475,0.993052959442139,-0.00149005092680454,-0.117276333272457,0.993098258972168,-1.28213258676624e-007,-0.133942380547524,0.990989089012146,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,-2.0325903182794e-009,0,-0.999999940395355,-2.01974303948305e-009,0,-1,0,0,-1,2.74669417876794e-007,0.999997615814209,-0.00216415245085955,0.00725483940914273,0.999973356723785,-0.000793957966379821,0.00727395666763186,0.999885261058807,0.0132850557565689,-9.32356215344043e-006,0.999891400337219,0.0147405676543713,0,-1,0,0,-0.999935269355774,0.0113806705921888,0,-0.999935269355774,0.0113806705921888,0,-1,0,0,-0.110417366027832,0.993885278701782,0,-0.110417366027832,0.993885278701782,0,0.110417366027832,0.993885278701782,0,0.110417366027832,0.993885278701782,0.999999940395355,0,0,0.999999940395355,0,0,1,0,0,1,0,0,0.999999940395355,0,0,0.999999940395355,0,0,0,0,-0.999999940395355,0,0,-0.999999940395355,0,0,-0.999999940395355,0,0,-0.999999940395355,0,0.999935269355774,0.0113806705921888,0,1,0,0,1,0,0,0.999935269355774,0.0113806705921888,0,-1,6.87270826915665e-008,0,-1,6.87270826915665e-008,0,-1,6.87270826915665e-008,0,-1,6.87270826915665e-008,0,0.687670052051544,-0.726023316383362,0,0.687670111656189,-0.726023256778717,0,0.687670171260834,-0.726023316383362,0,0.687670111656189,-0.726023316383362,0.705028414726257,0.709179103374481,-2.7550065340165e-008,0.705028355121613,0.709179103374481,-2.75500635638082e-008,0.705028355121613,0.709179103374481,-2.75500635638082e-008,0.705028355121613,0.709179162979126,-2.75500635638082e-008,0,0.687682747840881,0.726011395454407,0,0.687682747840881,0.726011395454407,
- 0,0.687682688236237,0.726011395454407,0,0.687682747840881,0.726011395454407,-0.704933285713196,0.70927357673645,-4.13195202497718e-008,-0.704933285713196,0.709273636341095,-4.13195238024855e-008,-0.704933285713196,0.70927357673645,-4.13195238024855e-008,-0.704933226108551,0.709273636341095,-4.13195238024855e-008,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,-6.8733889690975e-008,0,1,-6.8733889690975e-008,0,1,-6.8733889690975e-008,0,1,-6.8733889690975e-008,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,-2.61707810977896e-007,0,-1,-2.61707810977896e-007,0,-1,-2.61707782556186e-007,0,-1,-2.61707782556186e-007,0,-1,-2.61707810977896e-007,0,-1,-2.61707810977896e-007,0,-1,-2.61707384652254e-007,0,-1,-2.61707384652254e-007,0,-1,-2.61707413073964e-007,0,-1,-2.61707413073964e-007,0,-1,-2.61707384652254e-007,0,-1,-2.61707384652254e-007,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,-2.61707810977896e-007,0,-1,-2.61707810977896e-007,0,-1,-2.61707782556186e-007,0,-1,-2.61707782556186e-007,0,-1,-2.61707810977896e-007,0,-1,-2.61707810977896e-007,0,-1,-2.37395838098564e-007,0,-0.999999940395355,-2.37395823887709e-007,0,-0.999999940395355,-2.37395823887709e-007,0,-0.999999940395355,-2.37395823887709e-007,0,-0.999999940395355,-2.37395823887709e-007,0,-1,-2.37395838098564e-007,0,0.0591492541134357,0,0.998249173164368,0.999951958656311,0,0.0097961938008666,0.999951958656311,0,0.0097961938008666,0.0591492541134357,0,0.998249173164368,-0.999951958656311,0,0.0097961938008666,-0.0591492541134357,0,0.998249173164368,-0.0591492541134357,0,0.998249173164368,-0.999951958656311,0,0.0097961938008666,0.109712444245815,-0.0141178034245968,0.993863046169281,0.9996737241745,-0.0122791323810816,0.0223992522805929,0.999984741210938,0.00546237593516707,-0.000875143159646541,0.110564984381199,0.010859290137887,0.993809580802917,-0.999685883522034,0.0117052877321839,0.0221628490835428,-0.112249925732613,-0.0114522641524673,0.993614077568054,-0.108316078782082,0.0108460579067469,0.994057297706604,
- -0.999080657958984,-0.00499694235622883,0.0425780639052391,-9.8801115200331e-007,-0.111303560435772,0.993786454200745,1.06348579720361e-007,-0.999921858310699,0.0124977054074407,0.00668284948915243,-0.999898552894592,0.0125814722850919,0.000733216293156147,-0.109715394675732,0.99396276473999,1.07008055749702e-007,0.999920666217804,0.0125911040231586,-9.79967126113479e-007,0.109538368880749,0.993982553482056,-0.0007427575183101,0.111123815178871,0.99380624294281,-0.00668285740539432,0.999899446964264,0.0125069515779614,9.91704041553021e-007,-0.111329592764378,0.993783533573151,-1.13071848772961e-007,-0.999921917915344,0.0124966828152537,0.0115170637145638,-0.999854207038879,0.0126081183552742,0.0012578695314005,-0.109210319817066,0.994017779827118,-1.12271060004332e-007,0.999920666217804,0.0125928269699216,9.9181534096715e-007,0.10951255261898,0.993985414505005,-0.00128602073527873,0.111637659370899,0.993748128414154,-0.0115170832723379,0.999855816364288,0.012479692697525,-0.999951958656311,0,0.0097961938008666,-0.0591422617435455,0,0.998249590396881,-0.0591422617435455,0,0.998249590396881,-0.999951958656311,0,0.0097961938008666,0.0591422617435455,0,0.998249590396881,0.999951958656311,0,0.0097961938008666,0.999951958656311,0,0.0097961938008666,0.0591422617435455,0,0.998249590396881,-0.00149005092680454,-0.117276333272457,0.993098258972168,-0.00780692510306835,-0.999890267848969,0.0125876255333424,-5.96034624322783e-007,-0.99992299079895,0.0124061955139041,-1.28213258676624e-007,-0.133942380547524,0.990989089012146,0.00727395666763186,0.999885261058807,0.0132850557565689,0.000552353856619447,0.117667227983475,0.993052959442139,1.45890417115879e-005,0.122597604990005,0.992456495761871,-9.32356215344043e-006,0.999891400337219,0.0147405676543713,0,-0.999935269355774,0.0113806705921888,0,-0.110417366027832,0.993885278701782,0,-0.110417366027832,0.993885278701782,0,-0.999935269355774,0.0113806705921888,0,0.110417366027832,0.993885278701782,0,0.110417366027832,0.993885278701782,0,0.999935269355774,0.0113806705921888,0,0.999935269355774,0.0113806705921888,
- 0.000292910233838484,0.110695779323578,0.993854284286499,0,0.110417157411575,0.993885338306427,0,-0.110417157411575,0.993885338306427,-0.000290281226625666,-0.110139302909374,0.993916153907776,0,-0.110417157411575,0.993885338306427,0,-0.999921321868896,0.0125444522127509,-0.00264066131785512,-0.999917566776276,0.0125592509284616,-0.000290281226625666,-0.110139302909374,0.993916153907776,-0.00264080613851547,-0.999996542930603,0,-0.00264066131785512,-0.999917566776276,0.0125592509284616,0,-0.999921321868896,0.0125444522127509,0,-1,0,0,0,-1,-2.47779574635842e-009,0,-1,-2.49123832674059e-009,0,-1,0,0,-1,0.00264053582213819,0.999917984008789,0.0125298062339425,0.00264080613851547,0.999996542930603,0,0,1,0,0,0.999921321868896,0.0125444522127509,0,0.999921321868896,0.0125444522127509,0,0.110417157411575,0.993885338306427,0.000292910233838484,0.110695779323578,0.993854284286499,0.00264053582213819,0.999917984008789,0.0125298062339425,-0.0008979911217466,0.112349264323711,0.993668437004089,2.42259193328209e-006,0.108179859817028,0.994131326675415,2.48458491114434e-006,-0.112703137099743,0.993628680706024,0.000856472877785563,-0.108519926667213,0.994093894958496,2.48458491114434e-006,-0.112703137099743,0.993628680706024,-2.77582358876316e-007,-0.999922871589661,0.0124244960024953,0.0079425647854805,-0.999888479709625,0.0126451049000025,0.000856472877785563,-0.108519926667213,0.994093894958496,0.00794256757944822,-0.999968469142914,0,0.0079425647854805,-0.999888479709625,0.0126451049000025,-2.77582358876316e-007,-0.999922871589661,0.0124244960024953,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.0079414201900363,0.999891042709351,0.0124426670372486,-0.00794266536831856,0.999968469142914,0,-1.3104740625991e-009,1,0,-2.79242613032693e-007,0.999919831752777,0.0126640405505896,-2.79242613032693e-007,0.999919831752777,0.0126640405505896,2.42259193328209e-006,0.108179859817028,0.994131326675415,-0.0008979911217466,0.112349264323711,0.993668437004089,-0.0079414201900363,0.999891042709351,0.0124426670372486,0.000552353856619447,0.117667227983475,0.993052959442139,
- 0,0.110417358577251,0.993885278701782,0,-0.110417358577251,0.993885278701782,-0.00149005092680454,-0.117276333272457,0.993098258972168,0,-0.110417358577251,0.993885278701782,0,-0.999921381473541,0.0125444736331701,-0.00780692510306835,-0.999890267848969,0.0125876255333424,-0.00149005092680454,-0.117276333272457,0.993098258972168,-0.00780695164576173,-0.99996954202652,0,-0.00780692510306835,-0.999890267848969,0.0125876255333424,0,-0.999921381473541,0.0125444736331701,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0.00727395666763186,0.999885261058807,0.0132850557565689,0.00725483940914273,0.999973356723785,-0.000793957966379821,0,1,0,0,0.999921381473541,0.0125444736331701,0,0.999921381473541,0.0125444736331701,0,0.110417358577251,0.993885278701782,0.000552353856619447,0.117667227983475,0.993052959442139,0.00727395666763186,0.999885261058807,0.0132850557565689,-0.0277085360139608,0.999613702297211,-0.00216319737955928,2.74669417876794e-007,0.999997615814209,-0.00216415245085955,-9.32356215344043e-006,0.999891400337219,0.0147405676543713,-0.0277400985360146,0.999509692192078,0.014522117562592,-2.01974303948305e-009,0,-1,-2.0325903182794e-009,0,-0.999999940395355,-4.86641926755738e-009,0,-1,-4.86641882346817e-009,0,-1,0.029772475361824,-0.99947589635849,0.0127047533169389,-5.96034624322783e-007,-0.99992299079895,0.0124061955139041,1.31128308211714e-009,-1,0,0.029774883762002,-0.999556660652161,0,-1.28213258676624e-007,-0.133942380547524,0.990989089012146,-5.96034624322783e-007,-0.99992299079895,0.0124061955139041,0.029772475361824,-0.99947589635849,0.0127047533169389,0.005682657007128,-0.128278285264969,0.991721987724304,-0.002140051452443,0.13143265247345,0.991322696208954,1.45890417115879e-005,0.122597604990005,0.992456495761871,-1.28213258676624e-007,-0.133942380547524,0.990989089012146,0.005682657007128,-0.128278285264969,0.991721987724304,-9.32356215344043e-006,0.999891400337219,0.0147405676543713,1.45890417115879e-005,0.122597604990005,0.992456495761871,-0.002140051452443,0.13143265247345,0.991322696208954,-0.0277400985360146,0.999509692192078,0.014522117562592,
- -9.79967126113479e-007,0.109538368880749,0.993982553482056,-0.0008979911217466,0.112349264323711,0.993668437004089,0.000856472877785563,-0.108519926667213,0.994093894958496,-9.8801115200331e-007,-0.111303560435772,0.993786454200745,0.000856472877785563,-0.108519926667213,0.994093894958496,0.0079425647854805,-0.999888479709625,0.0126451049000025,1.06348579720361e-007,-0.999921858310699,0.0124977054074407,-9.8801115200331e-007,-0.111303560435772,0.993786454200745,-3.26372984194023e-010,-1,0,1.06348579720361e-007,-0.999921858310699,0.0124977054074407,0.0079425647854805,-0.999888479709625,0.0126451049000025,0.00794256757944822,-0.999968469142914,0,0,0,-1,0,0,-0.999999940395355,0,0,-1,0,0,-1,1.07008055749702e-007,0.999920666217804,0.0125911040231586,3.26372984194023e-010,1,0,-0.00794266536831856,0.999968469142914,0,-0.0079414201900363,0.999891042709351,0.0124426670372486,-0.0079414201900363,0.999891042709351,0.0124426670372486,-0.0008979911217466,0.112349264323711,0.993668437004089,-9.79967126113479e-007,0.109538368880749,0.993982553482056,1.07008055749702e-007,0.999920666217804,0.0125911040231586,2.42259193328209e-006,0.108179859817028,0.994131326675415,0.00218339893035591,0.112481892108917,0.993651390075684,-0.00210398901253939,-0.108391769230366,0.99410605430603,2.48458491114434e-006,-0.112703137099743,0.993628680706024,-0.00210398901253939,-0.108391769230366,0.99410605430603,-0.0194057058542967,-0.999731600284576,0.012649935670197,-2.77582358876316e-007,-0.999922871589661,0.0124244960024953,2.48458491114434e-006,-0.112703137099743,0.993628680706024,0,-1,0,-2.77582358876316e-007,-0.999922871589661,0.0124244960024953,-0.0194057058542967,-0.999731600284576,0.012649935670197,-0.0194072593003511,-0.999811589717865,0,0,0,-0.999999940395355,0,0,-1,0,0,-1,0,0,-0.999999940395355,-2.79242613032693e-007,0.999919831752777,0.0126640405505896,-1.3104740625991e-009,1,0,0.0194074008613825,0.999811589717865,0,0.0194059032946825,0.999734401702881,0.0124338120222092,0.0194059032946825,0.999734401702881,0.0124338120222092,0.00218339893035591,0.112481892108917,0.993651390075684,
- 2.42259193328209e-006,0.108179859817028,0.994131326675415,-2.79242613032693e-007,0.999919831752777,0.0126640405505896,9.9181534096715e-007,0.10951255261898,0.993985414505005,0.000292910233838484,0.110695779323578,0.993854284286499,-0.000290281226625666,-0.110139302909374,0.993916153907776,9.91704041553021e-007,-0.111329592764378,0.993783533573151,-0.000290281226625666,-0.110139302909374,0.993916153907776,-0.00264066131785512,-0.999917566776276,0.0125592509284616,-1.13071848772961e-007,-0.999921917915344,0.0124966828152537,9.91704041553021e-007,-0.111329592764378,0.993783533573151,0,-1,0,-1.13071848772961e-007,-0.999921917915344,0.0124966828152537,-0.00264066131785512,-0.999917566776276,0.0125592509284616,-0.00264080613851547,-0.999996542930603,0,-2.47779574635842e-009,0,-1,-4.05169187089882e-009,0,-1,-4.06063804803125e-009,0,-0.999999940395355,-2.49123832674059e-009,0,-1,-1.12271060004332e-007,0.999920666217804,0.0125928269699216,0,1,0,0.00264080613851547,0.999996542930603,0,0.00264053582213819,0.999917984008789,0.0125298062339425,0.00264053582213819,0.999917984008789,0.0125298062339425,0.000292910233838484,0.110695779323578,0.993854284286499,9.9181534096715e-007,0.10951255261898,0.993985414505005,-1.12271060004332e-007,0.999920666217804,0.0125928269699216,-0.109519764780998,-0.0200032498687506,0.993783295154572,-0.11203471571207,0.0046073580160737,0.993693590164185,0.11100147664547,0.00582437217235565,0.993803203105927,0.109519764780998,-0.0200032498687506,0.993783295154572,-0.999935567378998,-0.000460266892332584,0.0113436663523316,-0.11203471571207,0.0046073580160737,0.993693590164185,-0.109519764780998,-0.0200032498687506,0.993783295154572,-0.999733626842499,-0.000464519253000617,0.0230778213590384,0.11100147664547,0.00582437217235565,0.993803203105927,0.99996280670166,0.000564235146157444,0.00861150585114956,0.999733626842499,-0.000464520911918953,0.0230778213590384,0.109519764780998,-0.0200032498687506,0.993783295154572,-0.11203471571207,0.0046073580160737,0.993693590164185,-0.108316078782082,0.0108460579067469,0.994057297706604,
- 0.110564984381199,0.010859290137887,0.993809580802917,0.11100147664547,0.00582437217235565,0.993803203105927,-0.999080657958984,-0.00499694235622883,0.0425780639052391,-0.108316078782082,0.0108460579067469,0.994057297706604,-0.11203471571207,0.0046073580160737,0.993693590164185,-0.999935567378998,-0.000460266892332584,0.0113436663523316,0.110564984381199,0.010859290137887,0.993809580802917,0.999984741210938,0.00546237593516707,-0.000875143159646541,0.99996280670166,0.000564235146157444,0.00861150585114956,0.11100147664547,0.00582437217235565,0.993803203105927,0.999984741210938,0.00546237593516707,-0.000875143159646541,0.999983906745911,-0.00282842735759914,-0.00491529842838645,0.99996280670166,0.000564235146157444,0.00861150585114956,-0.999983906745911,0.00282842665910721,0.00491530308499932,-0.999685883522034,0.0117052877321839,0.0221628490835428,-0.999080657958984,-0.00499694235622883,0.0425780639052391,-0.999983906745911,0.00282842665910721,0.00491530308499932,-0.999935567378998,-0.000460266892332584,0.0113436663523316,-0.999999940395355,0,0,0.99996280670166,0.000564235146157444,0.00861150585114956,1,-6.14888362449051e-010,0,0.999733626842499,-0.000464520911918953,0.0230778213590384,0.99996280670166,0.000564235146157444,0.00861150585114956,0.999983906745911,-0.00282842735759914,-0.00491529842838645,1,-6.14888362449051e-010,0,-0.999983906745911,0.00282842665910721,0.00491530308499932,-0.999080657958984,-0.00499694235622883,0.0425780639052391,-0.999935567378998,-0.000460266892332584,0.0113436663523316
- }
- NormalsW: *556 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementBinormal: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *1668 {
- a: 0.00979619473218918,-5.52012068055774e-007,-0.999952077865601,0.00979619473218918,-4.2918628651023e-007,-0.999952077865601,0,-3.66235013871119e-007,-1,0,-4.57793589703215e-007,-1,0.998249173164368,-3.13677674057544e-007,0.0591492541134357,0.998249173164368,-2.60816307218192e-007,0.0591492541134357,0.998249173164368,-6.09304819931822e-008,-0.0591492541134357,0.998249173164368,-1.82790529379417e-007,-0.0591492541134357,1,-0,0,1,-4.12341357889853e-013,-1.46602701533993e-006,1,-1.40491628747297e-011,-4.99499947181903e-005,1,-2.65979877012157e-011,-9.45657302509062e-005,1,-9.27833591207738e-012,-3.29879367200192e-005,1,1.31657055049694e-013,4.6808980869173e-007,1,3.05182545901062e-008,0,1,3.05182545901062e-008,0,1,3.05182545901062e-008,0,1,3.05182545901062e-008,0,0,-9.15586895189335e-008,1,0,-7.62989103009204e-008,1,0.00979619473218918,-6.10362036468359e-008,0.999952077865601,0.00979619473218918,-7.62952510058312e-008,0.999952077865601,0,0,1,0,0,1,0,0,1,0,0,1,0,1,-0,0,1,-0,0,1,-0,0,1,-0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-5.63840956147033e-007,-1,-0,-2.81920478073516e-007,-1,-0,0,-1,0,-2.81920478073516e-007,-1,-0,0,1,0,0,1,0,0,1,0,0,1,0,1.10794793783953e-007,0,-1,1.10794793783953e-007,0,-1,1.10794793783953e-007,0,-1,1.10794793783953e-007,0,-1,1.54811630181939e-007,-0.685197591781616,0.728357195854187,1.35363065201233e-009,-0.685197591781616,0.728357195854187,-1.52104377093565e-007,-0.685197710990906,0.728357136249542,1.35363065201233e-009,-0.685197710990906,0.728357136249542,3.17963749694172e-005,-1.81209798029158e-005,1,4.77775138278957e-005,-2.72287470579613e-005,1,6.37586490483955e-005,-3.6336510675028e-005,1,4.77775138278957e-005,-2.72287416009931e-005,1,0,0.477911949157715,0.878407835960388,-1.57681299128853e-007,0.477911949157715,0.878407835960388,-3.15362598257707e-007,0.477911919355392,0.878407835960388,-1.57681299128853e-007,0.477911919355392,0.878407835960388,-6.91030436428264e-005,-3.93822811020073e-005,1,-5.10805075464305e-005,-2.91111227852525e-005,1,-6.91030363668688e-005,-3.93822847399861e-005,1,
- -8.71255761012435e-005,-4.9653448513709e-005,1,0,-1,-0,1.38490063861241e-008,-1,0,2.76980127722481e-008,-1,0,1.38490063861241e-008,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,3.46229689363042e-009,1,-0,5.19344522942333e-009,1,-0,6.92459334317164e-009,1,-0,5.19344522942333e-009,1,-0,-0,1,0,-0,1,0,0,1,-0,-0,1,0,-0.00080447259824723,-0.0129264928400517,-0.999916136264801,0.0225539207458496,0.0126057099550962,-0.999666154384613,-0.00493149086833,-0.00574651453644037,-0.999971330165863,0.994115591049194,-0.000219581997953355,0.108324825763702,0.993607699871063,-0.0133617389947176,0.112095192074776,0.993891060352325,-0.010506097227335,-0.1098647788167,0.993868589401245,-0.00210710545070469,-0.11054852604866,1,4.81350040121981e-013,-1.64069138008927e-006,1,9.94585707195239e-013,-3.39006555805099e-006,1,7.51435892676344e-012,-2.56128460023319e-005,1,1.26867587615931e-011,-4.32430788350757e-005,1,5.06305587733014e-012,-1.72575291799149e-005,1,3.20899258771448e-013,-1.09379163859558e-006,1,4.27275324454968e-007,0,1,3.05195783312229e-007,0,1,1.83116270591199e-007,0,1,3.05195783312229e-007,0,0,-0.0100629525259137,0.99994945526123,0.0113420523703098,0.00337050040252507,0.999930024147034,0.0230824965983629,-0.0201192889362574,0.999531149864197,-8.40867651277222e-005,0.0125811910256743,0.999920845031738,1.21723323900369e-005,0.0124977072700858,0.999921977519989,0,0,1,-0,0,1,-0.00664118817076087,0.993784129619598,-0.111126303672791,0.000982834841124713,0.993982136249542,-0.109538324177265,0.00225300132296979,0.993783950805664,0.11130328476429,-0.0066425921395421,0.993940651416779,0.109717860817909,-0,1,6.01067142724787e-007,-0,1,8.06619937065989e-007,0,1,-1.52187794810743e-007,0,1,-1.52210100168304e-006,-0,1,9.88971677884365e-008,-0,1,6.01067142724787e-007,-0.00226712785661221,-0.999997437000275,-0,0.00668338034301996,-0.999977648258209,0,0.00668338034301996,-0.999977648258209,0,-0.00226712808944285,-0.999997496604919,-0,-0,0,-1,0,0,-1,2.85480127786286e-005,0.0125911058858037,-0.999920785427094,-8.35887258290313e-005,0.0125066731125116,-0.999921858310699,
- -0.000145220052218065,0.0126072820276022,0.999920547008514,-4.53529573860578e-005,0.0124966828152537,0.999921917915344,-0,0,1,-0,0,1,-0.0114473132416606,0.993682205677032,-0.111645065248013,-0.00360754365101457,0.993979036808014,-0.109511844813824,-0.00229969038628042,0.993780910968781,0.111329302191734,-0.0114497132599354,0.993951976299286,0.109217584133148,-0,1,6.01056740379136e-007,-0,1,7.96852873463649e-006,-0,1,2.3697575670667e-005,-0,1,2.40906247199746e-005,-0,1,1.57983849931043e-005,-0,1,3.00528370189568e-007,0.0023144562728703,-0.99999737739563,-9.37746408302687e-012,0.0115179792046547,-0.999933660030365,0,0.0115179792046547,-0.999933660030365,0,0.00231445604003966,-0.999997317790985,-9.39816887507439e-012,-0,0,-1,0,0,-1,-2.91432734229602e-005,0.0125928288325667,-0.999920785427094,-0.000143740835483186,0.0124788647517562,-0.999922156333923,0.00979619473218918,-6.13346600175646e-008,0.999952077865601,0.00979619473218918,-9.20027289907921e-008,0.999952077865601,0,-1.22078191111541e-007,1,0,-9.15586468863694e-008,1,0.998249590396881,3.76408621605151e-007,-0.0591422617435455,0.998249590396881,6.94502944043052e-007,-0.0591422617435455,0.998249590396881,1.76702315002331e-006,0.0591422617435455,0.998249590396881,1.06630079699244e-006,0.0591422617435455,1,1.81011320299004e-013,9.36195306167065e-007,1,9.05056601495022e-014,4.68097653083532e-007,1,5.87830728104172e-013,3.0402759421122e-006,1,-9.79676496176696e-012,-5.06691212649457e-005,1,-2.07691919218433e-011,-0.000107418796687853,1,-4.85312918324654e-012,-2.5100513084908e-005,1,1.83110159923672e-007,0,1,3.05187626281622e-008,0,1,-1.22072634667347e-007,0,1,3.05187626281622e-008,0,0,0,-1,0.00979619473218918,1.52590772017902e-007,-0.999952077865601,0.00979619473218918,3.05181544035804e-007,-0.999952077865601,0,1.52598104818935e-007,-1,-0.000116734496259596,0.0124061973765492,0.99992311000824,0.000152520835399628,0.0125868180766702,0.999920785427094,-6.47946649223741e-007,5.05864194977335e-009,1,-2.7330492002875e-007,-3.58380116439327e-016,1,-0.00430231215432286,0.992447257041931,-0.122596405446529,
- 0.0141630200669169,0.992952644824982,-0.117663219571114,0.0104245468974113,0.993043601512909,0.117285519838333,-0.00422688759863377,0.990980327129364,0.133941203355789,-0,1,0,0,1,-1.85902615612576e-006,0,1,-1.25708611449227e-005,0,1,-1.9264109141659e-005,0,1,-8.28039628686383e-006,-0,1,1.502678514953e-007,-0.00708213774487376,-0.999975025653839,-0,0.00426568044349551,-0.999990940093994,-8.6703812532396e-012,0.0042656809091568,-0.999990999698639,-8.61557960391002e-012,-0.0141647504642606,-0.999899685382843,-0,9.44088606047444e-006,-0.00216415268369019,-0.999997735023499,-0.000743988261092454,-0.000788580975495279,-0.999999403953552,-0.0013508815318346,0.0132952220737934,-0.999910712242126,0.000237298794672824,0.0147405695170164,-0.999891400337219,2.38656667761461e-007,0,1,7.95470782577468e-008,0.0113806705921888,0.999935269355774,8.04585766900345e-008,0.0113806705921888,0.999935269355774,1.19328333880731e-007,0,1,-1.18592424769304e-007,0.993885397911072,0.110417380928993,-1.18592424769304e-007,0.993885397911072,0.110417380928993,-1.27377120406891e-007,0.993885397911072,-0.110417380928993,-1.22984772588097e-007,0.993885397911072,-0.110417380928993,0,1,-1.08930726128165e-006,0,1,-6.85790496390837e-007,0,1,-2.65579092229018e-005,0,1,-5.26924122823402e-005,0,1,-1.78868249349762e-005,0,1,-8.16981753359869e-007,0,-1,-0,0,-1,-0,0,-1,-0,0,-1,-0,1.19320660019184e-007,0.0113806705921888,-0.999935269355774,1.19328376513295e-007,0,-1,1.19328376513295e-007,0,-1,1.19320660019184e-007,0.0113806705921888,-0.999935269355774,2.83912669374331e-007,6.87270826915665e-008,1,2.25052758651145e-007,6.87270826915665e-008,1,1.6619284792796e-007,6.87270826915665e-008,1,2.25052758651145e-007,6.87270826915665e-008,1,0,-0.726023316383362,-0.687670052051544,1.20814505066846e-007,-0.726023316383362,-0.687670171260834,2.41628981711983e-007,-0.726023316383362,-0.687670171260834,1.20814476645137e-007,-0.726023316383362,-0.687670111656189,-0.709179103374481,0.705028414726257,-5.16543110506973e-008,-0.709179103374481,0.705028355121613,-1.22362985166546e-006,
- -0.709179103374481,0.705028355121613,-2.39560540649109e-006,-0.709179162979126,0.705028355121613,-1.2236299653523e-006,2.05010280751594e-007,0.726011395454407,-0.687682747840881,2.03213318172857e-007,0.726011395454407,-0.687682747840881,2.0141632717241e-007,0.726011395454407,-0.687682688236237,2.03213318172857e-007,0.726011395454407,-0.687682747840881,0.709273636341095,0.704933345317841,-2.56685598287731e-006,0.709273636341095,0.704933285713196,4.67731410935812e-007,0.709273636341095,0.704933345317841,3.50231903212261e-006,0.709273636341095,0.704933226108551,4.67731410935812e-007,2.2159707668834e-007,-1,0,1.1079853834417e-007,-1,0,0,-1,0,1.1079853834417e-007,-1,0,0,1,-1.71478973243211e-006,0,1,-2.13918610825203e-006,0,1,-2.56358271144563e-006,0,1,-2.13918610825203e-006,1.10793088481387e-007,1,-0,2.76981815261479e-008,1,-0,-5.5396725429091e-008,1,0,2.76981815261479e-008,1,-0,0,1,2.44334296439774e-006,0,1,2.43475210481847e-006,0,1,2.4261612452392e-006,0,1,2.43475210481847e-006,1.40965823902661e-007,-6.8733889690975e-008,-1,7.04829119513306e-008,-6.8733889690975e-008,-1,0,-6.8733889690975e-008,-1,7.04829119513306e-008,-6.8733889690975e-008,-1,1,0,-1.33045978145674e-006,1,0,7.04190551914508e-006,1,0,0,1,0,0,1,0,-8.86973225533438e-007,1,0,-2.3786635210854e-005,1,0,-2.4430344637949e-005,1,0,-5.63521916774334e-006,1,0,5.46910086995922e-007,1,0,2.73455043497961e-007,1,0,-1.62868964252993e-005,1,0,-3.14081225951668e-005,-2.61707810977896e-007,1,2.11372498597484e-005,-2.61707810977896e-007,1,1.47992268466624e-005,-2.61707782556186e-007,1,-6.01061458382901e-007,-2.61707782556186e-007,1,3.0053925570428e-007,-2.61707810977896e-007,1,1.44922141771531e-005,-2.61707810977896e-007,1,-1.52210100168304e-006,-2.61707384652254e-007,1,-1.73021317095845e-006,-2.61707384652254e-007,1,4.41447537014028e-006,-2.61707413073964e-007,1,0,-2.61707413073964e-007,1,-3.00529791275039e-007,-2.61707384652254e-007,1,-1.35382867938461e-006,-2.61707384652254e-007,1,-1.73049120348878e-005,1,0,-1.87564564839704e-005,1,0,-2.27804030146217e-005,1,0,-8.0478930613026e-006,
- 1,0,-1.13902015073108e-005,1,0,0,1,0,0,-2.61707810977896e-007,1,-1.22745914268307e-005,-2.61707810977896e-007,1,-2.54831115853449e-006,-2.61707782556186e-007,1,6.01061458382901e-007,-2.61707782556186e-007,1,3.00530729191451e-007,-2.61707810977896e-007,1,-8.18306125438539e-006,-2.61707810977896e-007,1,-1.63031891133869e-005,-2.37395838098564e-007,1,-2.59668959188275e-005,-2.37395852309419e-007,1,-1.89945728834573e-006,-2.37395852309419e-007,1,0,-2.37395852309419e-007,1,-2.7232937327426e-007,-2.37395852309419e-007,1,-1.74928172782529e-005,-2.37395838098564e-007,1,-4.6780078264419e-005,0.998249173164368,-2.58105814054943e-007,-0.0591492541134357,0.00979619473218918,-4.2918628651023e-007,-0.999952077865601,0.00979619473218918,-5.52012068055774e-007,-0.999952077865601,0.998249173164368,-4.19456284816988e-007,-0.0591492541134357,0.00979619473218918,-3.39022449225013e-007,0.999952077865601,0.998249173164368,-2.60816307218192e-007,0.0591492541134357,0.998249173164368,-3.13677674057544e-007,0.0591492541134357,0.00979619473218918,-3.23610521490991e-007,0.999952077865601,0.993891060352325,-0.0105063309893012,-0.109864786267281,0.0225539207458496,0.0126057099550962,-0.999666154384613,-0.00080447259824723,-0.0129264928400517,-0.999916136264801,0.993862092494965,-0.00490441778674722,-0.110517241060734,0.0220086649060249,-0.013140644878149,0.999671459197998,0.993607699871063,-0.0133617389947176,0.112095192074776,0.994115591049194,-0.000219581997953355,0.108324825763702,0.0425342656672001,0.00856673438102007,0.999058365821838,0.00521781109273434,0.993772983551025,0.111302062869072,1.21723323900369e-005,0.0124977072700858,0.999921977519989,-8.40867651277222e-005,0.0125811910256743,0.999920845031738,-0.00664296979084611,0.993940651416779,0.109717860817909,6.63716273265891e-005,0.0125911058858037,-0.999920785427094,0.000982834841124713,0.993982136249542,-0.109538324177265,-0.00664118817076087,0.993784129619598,-0.111126303672791,-8.28190095489845e-005,0.0125066787004471,-0.999921858310699,0.000749364786315709,0.993783354759216,0.111329577863216,
- -4.53529573860578e-005,0.0124966828152537,0.999921917915344,-0.000145220052218065,0.0126072820276022,0.999920547008514,-0.0114490771666169,0.993951976299286,0.109217584133148,9.49348577705678e-006,0.0125928288325667,-0.999920785427094,-0.00360754365101457,0.993979036808014,-0.109511844813824,-0.0114473132416606,0.993682205677032,-0.111645065248013,-0.000144388497574255,0.0124788573011756,-0.999922156333923,0.00979619473218918,-6.13346600175646e-008,0.999952077865601,0.998249590396881,-9.68020543723469e-008,0.0591422617435455,0.998249590396881,-1.29070429011335e-007,0.0591422617435455,0.00979619473218918,-9.20027289907921e-008,0.999952077865601,0.998249590396881,3.76408621605151e-007,-0.0591422617435455,0.00979619473218918,3.08200782228596e-007,-0.999952077865601,0.00979619473218918,2.46567623207739e-007,-0.999952077865601,0.998249590396881,6.94502944043052e-007,-0.0591422617435455,0.00703349011018872,0.993073523044586,0.117283970117569,0.000152520835399628,0.0125868180766702,0.999920785427094,-0.000116734496259596,0.0124061973765492,0.99992311000824,-0.00422721076756716,0.990980327129364,0.133941203355789,0.00207028887234628,0.0132703222334385,-0.9999098777771,0.0141630200669169,0.992952644824982,-0.117663219571114,-0.00430231215432286,0.992447257041931,-0.122596405446529,-0.000735435110982507,0.0147405574098229,-0.99989116191864,7.95470782577468e-008,0.0113806705921888,0.999935269355774,1.31781916934415e-007,0.993885397911072,0.110417380928993,2.6356383386883e-007,0.993885397911072,0.110417380928993,8.04585766900345e-008,0.0113806705921888,0.999935269355774,-1.22984772588097e-007,0.993885397911072,-0.110417380928993,-1.27377120406891e-007,0.993885397911072,-0.110417380928993,-1.20676432402433e-007,0.0113806705921888,-0.999935269355774,-1.20676432402433e-007,0.0113806705921888,-0.999935269355774,0.00410863477736712,0.993845880031586,-0.11069605499506,0,0.993885338306427,-0.110417157411575,0,0.993885338306427,0.110417157411575,0.00342407543212175,0.993910253047943,0.110139645636082,0,0.993885338306427,0.110417157411575,
- 0,0.0125444522127509,0.999921321868896,4.32671913586091e-005,0.012559182010591,0.999921202659607,0.00228271563537419,0.993913531303406,0.110139682888985,0,0,1,4.32671913586091e-005,0.012559182010591,0.999921202659607,0,0.0125444522127509,0.999921321868896,0,0,1,4.75664734267411e-007,-1,0,-0.00229611620306969,-0.99999737739563,5.68930709834992e-012,-0.004592708311975,-0.99998950958252,1.14415317498118e-011,4.75664734267411e-007,-1,0,5.75543381273746e-005,0.0125296982005239,-0.999921500682831,0,0,-1,0,0,-1,0,0.0125444522127509,-0.999921321868896,0,0.0125444522127509,-0.999921321868896,0,0.993885338306427,-0.110417157411575,0.00410863477736712,0.993845880031586,-0.11069605499506,2.87771690636873e-005,0.0125297736376524,-0.999921500682831,-0.00635040365159512,0.993648052215576,-0.112352699041367,-0.00228199199773371,0.994128823280334,-0.108179584145546,-0.00228083878755569,0.993626177310944,0.112702861428261,-0.00635317619889975,0.994073688983917,0.108523197472095,-0.00228097848594189,0.993626177310944,0.112702861428261,2.51924338954268e-005,0.0124244960024953,0.999922871589661,-0.000112955232907552,0.0126446075737476,0.999920070171356,-0.0063532292842865,0.994073688983917,0.108523197472095,-2.12693237244821e-007,-1.68938363298565e-009,1,-0.000112955232907552,0.0126446075737476,0.999920070171356,2.51924338954268e-005,0.0124244960024953,0.999922871589661,-1.78267981709723e-007,0,1,0.0022954426240176,-0.999997437000275,0,0.00639087520539761,-0.999979615211487,0,0.00639083189889789,-0.999979615211487,0,0.00229543331079185,-0.999997437000275,0,-6.47553679300472e-006,0.0124430079013109,-0.999922573566437,0,0,-1,0,0,-1,-0.000120718752441462,0.0126640405505896,-0.999919831752777,-2.9083448680467e-005,0.0126640405505896,-0.999919831752777,-0.00228199199773371,0.994128823280334,-0.108179584145546,-0.00635040365159512,0.993648052215576,-0.112352699041367,-7.95136365923099e-005,0.0124424295499921,-0.999922633171082,0.0141630200669169,0.992952644824982,-0.117663219571114,-3.812043871676e-007,0.993885397911072,-0.110417373478413,0,0.993885397911072,0.110417373478413,
- 0.0104245468974113,0.993043601512909,0.117285519838333,-5.25798725448112e-007,0.993885397911072,0.110417373478413,-4.80082576359564e-007,0.0125444736331701,0.999921381473541,0.000152520835399628,0.0125868180766702,0.999920785427094,0.00703349011018872,0.993073523044586,0.117283970117569,-6.47946649223741e-007,5.05864194977335e-009,1,0.000152520835399628,0.0125868180766702,0.999920785427094,-4.80082576359564e-007,0.0125444736331701,0.999921381473541,-4.76114564662566e-007,0,1,4.76132100857285e-007,-1,0,-0.00708213774487376,-0.999975025653839,-0,-0.0141647504642606,-0.999899685382843,-0,4.76132100857285e-007,-1,0,-0.0013508815318346,0.0132952220737934,-0.999910712242126,-0.000743988261092454,-0.000788580975495279,-0.999999403953552,2.38056998114189e-007,0,-1,1.19019141209264e-007,0.0125444736331701,-0.999921381473541,-4.82085283692868e-007,0.0125444736331701,-0.999921381473541,-3.812043871676e-007,0.993885397911072,-0.110417373478413,0.0141630200669169,0.992952644824982,-0.117663219571114,0.00207028887234628,0.0132703222334385,-0.9999098777771,0.00212283572182059,-0.00210518040694296,-0.999995589256287,9.44088606047444e-006,-0.00216415268369019,-0.999997735023499,0.000237298794672824,0.0147405695170164,-0.999891400337219,0.00375283346511424,0.0146317407488823,-0.999885976314545,0.0042656809091568,-0.999990999698639,-8.61557960391002e-012,0.00426568044349551,-0.999990940093994,-8.6703812532396e-012,0.0297748856246471,-0.999556720256805,-1.44897080445183e-010,0.0297748856246471,-0.999556720256805,-1.44897066567395e-010,-0.000379052886273712,0.0126990983262658,0.999919354915619,-0.000116734496259596,0.0124061973765492,0.99992311000824,-2.7330492002875e-007,-3.58380116439327e-016,1,-5.74113926177233e-007,-1.71017582317745e-008,1,-0.00422721076756716,0.990980327129364,0.133941203355789,-0.000116734496259596,0.0124061973765492,0.99992311000824,-0.000379052886273712,0.0126990983262658,0.999919354915619,-0.0295284520834684,0.991283893585205,0.128390818834305,-0.0330802612006664,0.990773320198059,-0.131431221961975,-0.00430231215432286,0.992447257041931,-0.122596405446529,
- -0.00422688759863377,0.990980327129364,0.133941203355789,-0.0291522517800331,0.991295158863068,0.128390118479729,-0.000735435110982507,0.0147405574098229,-0.99989116191864,-0.00430231215432286,0.992447257041931,-0.122596405446529,-0.0330802612006664,0.990773320198059,-0.131431221961975,-0.00874628406018019,0.0142844617366791,-0.999859750270844,0.000982834841124713,0.993982136249542,-0.109538324177265,-0.00635040365159512,0.993648052215576,-0.112352699041367,-0.00635317619889975,0.994073688983917,0.108523197472095,0.00225300132296979,0.993783950805664,0.11130328476429,-0.0063532292842865,0.994073688983917,0.108523197472095,-0.000112955232907552,0.0126446075737476,0.999920070171356,1.21723323900369e-005,0.0124977072700858,0.999921977519989,0.00521781109273434,0.993772983551025,0.111302062869072,0,0,1,1.21723323900369e-005,0.0124977072700858,0.999921977519989,-0.000112955232907552,0.0126446075737476,0.999920070171356,-2.12693237244821e-007,-1.68938363298565e-009,1,0.00639087520539761,-0.999979615211487,0,-0.00226712785661221,-0.999997437000275,-0,-0.00226712808944285,-0.999997496604919,-0,0.00639083189889789,-0.999979615211487,0,2.85480127786286e-005,0.0125911058858037,-0.999920785427094,0,0,-1,0,0,-1,-6.47553679300472e-006,0.0124430079013109,-0.999922573566437,-7.95136365923099e-005,0.0124424295499921,-0.999922633171082,-0.00635040365159512,0.993648052215576,-0.112352699041367,0.000982834841124713,0.993982136249542,-0.109538324177265,6.63716273265891e-005,0.0125911058858037,-0.999920785427094,-0.00228199199773371,0.994128823280334,-0.108179584145546,0.0192841943353415,0.993464231491089,-0.112503074109554,0.0192930176854134,0.993918836116791,0.108412191271782,-0.00228083878755569,0.993626177310944,0.112702861428261,0.0192930176854134,0.993918836116791,0.108412191271782,0.000245501229073852,0.0126475542783737,0.999920010566711,2.51924338954268e-005,0.0124244960024953,0.999922871589661,-0.00228097848594189,0.993626177310944,0.112702861428261,-1.78267981709723e-007,0,1,2.51924338954268e-005,0.0124244960024953,0.999922871589661,
- 0.000245501229073852,0.0126475542783737,0.999920010566711,0,0,1,-0.0194074027240276,-0.999811708927155,-0,0.0022954426240176,-0.999997437000275,0,0.00229543331079185,-0.999997437000275,0,-0.019407331943512,-0.999811708927155,-0,-0.000120718752441462,0.0126640405505896,-0.999919831752777,0,0,-1,0,0,-1,0.000241307992837392,0.012431469745934,-0.999922752380371,0.000241307992837392,0.012431469745934,-0.999922752380371,0.0192841943353415,0.993464231491089,-0.112503074109554,-0.00228199199773371,0.994128823280334,-0.108179584145546,-2.9083448680467e-005,0.0126640405505896,-0.999919831752777,-0.00360754365101457,0.993979036808014,-0.109511844813824,0.00410863477736712,0.993845880031586,-0.11069605499506,0.00342407543212175,0.993910253047943,0.110139645636082,-0.00229969038628042,0.993780910968781,0.111329302191734,0.00228271563537419,0.993913531303406,0.110139682888985,4.32671913586091e-005,0.012559182010591,0.999921202659607,-4.53529573860578e-005,0.0124966828152537,0.999921917915344,0.000749364786315709,0.993783354759216,0.111329577863216,-0,0,1,-4.53529573860578e-005,0.0124966828152537,0.999921917915344,4.32671913586091e-005,0.012559182010591,0.999921202659607,0,0,1,-0.00229611620306969,-0.99999737739563,5.68930709834992e-012,0.0023144562728703,-0.99999737739563,-9.37746408302687e-012,0.00231445604003966,-0.999997317790985,-9.39816887507439e-012,-0.004592708311975,-0.99998950958252,1.14415317498118e-011,-2.91432734229602e-005,0.0125928288325667,-0.999920785427094,0,0,-1,0,0,-1,5.75543381273746e-005,0.0125296982005239,-0.999921500682831,2.87771690636873e-005,0.0125297736376524,-0.999921500682831,0.00410863477736712,0.993845880031586,-0.11069605499506,-0.00360754365101457,0.993979036808014,-0.109511844813824,9.49348577705678e-006,0.0125928288325667,-0.999920785427094,0.993984699249268,-0.00220400909893215,0.109497599303722,0.993697285652161,0.00427886936813593,0.112015292048454,0.993804812431335,0.00492566218599677,-0.111030526459217,0.993984699249268,0.00220400909893215,-0.109497599303722,0.0113411955535412,0.00505683198571205,0.99992299079895,
- 0.993697285652161,0.00427886936813593,0.112015292048454,0.993984699249268,-0.00220400909893215,0.109497599303722,0.0230824965983629,-0.0201189424842596,0.999531149864197,0.993804812431335,0.00492528453469276,-0.111030526459217,0.00861147977411747,4.75877131975722e-005,-0.99996292591095,0.0230824947357178,0.0201184153556824,-0.999531090259552,0.993984699249268,0.00220357882790267,-0.109497606754303,0.993697285652161,0.00427886936813593,0.112015292048454,0.994115591049194,-0.000219581997953355,0.108324825763702,0.993868589401245,-0.00210710545070469,-0.11054852604866,0.993804812431335,0.00492566218599677,-0.111030526459217,0.0425342656672001,0.00856673438102007,0.999058365821838,0.994115591049194,-0.000219581997953355,0.108324825763702,0.993697285652161,0.00427886936813593,0.112015292048454,0.0113411955535412,0.00505683198571205,0.99992299079895,0.993862092494965,-0.00490441778674722,-0.110517241060734,-0.00080447259824723,-0.0129264928400517,-0.999916136264801,0.00861147977411747,4.75877131975722e-005,-0.99996292591095,0.993804812431335,0.00492528453469276,-0.111030526459217,-0.00080447259824723,-0.0129264928400517,-0.999916136264801,-0.00493149086833,-0.00574651453644037,-0.999971330165863,0.00861147977411747,4.75877131975722e-005,-0.99996292591095,0.00493149319663644,0.00574576389044523,0.999971330165863,0.0220086593180895,-0.0131410658359528,0.999671459197998,0.0425342656672001,0.00856625195592642,0.999058365821838,0.00493149319663644,0.00574576389044523,0.999971330165863,0.0113420523703098,0.00337050040252507,0.999930024147034,0,-0.0100629525259137,0.99994945526123,0.00861147977411747,4.75877131975722e-005,-0.99996292591095,6.18722607870215e-012,0.010062356479466,-0.99994945526123,0.0230824947357178,0.0201184153556824,-0.999531090259552,0.00861147977411747,4.75877131975722e-005,-0.99996292591095,-0.00493149086833,-0.00574651453644037,-0.999971330165863,6.18722607870215e-012,0.010062356479466,-0.99994945526123,0.00493149319663644,0.00574576389044523,0.999971330165863,0.0425342656672001,0.00856625195592642,0.999058365821838,
- 0.0113420523703098,0.00337050040252507,0.999930024147034
- }
- BinormalsW: *556 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementTangent: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *1668 {
- a: -5.40764855117004e-009,-1,5.51985579022585e-007,-4.20441459425547e-009,-1,4.29165652349184e-007,0,-1,3.66235013871119e-007,0,-1,4.57793589703215e-007,-3.13128452944511e-007,-1,-1.85537949448644e-008,-2.60359655612774e-007,-1,-1.54270836105752e-008,-6.08238011068352e-008,-1,3.60399243781728e-009,-1.82470486720376e-007,-1,1.08119238007021e-008,0,2.81264533441572e-007,1,1.46602701533993e-006,2.81264505019863e-007,1,4.99499910802115e-005,2.81264505019863e-007,1,9.45657229749486e-005,2.81264505019863e-007,1,3.29879367200192e-005,2.81264505019863e-007,1,-4.6808980869173e-007,2.81264533441572e-007,1,-3.05182545901062e-008,1,0,-3.05182545901062e-008,1,0,-3.05182545901062e-008,1,0,-3.05182545901062e-008,1,0,0,-1,-9.15586895189335e-008,0,-1,-7.62989103009204e-008,-5.97922489298242e-010,-1,-6.10332762107646e-008,-7.47403028356075e-010,-1,-7.62915917107421e-008,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,-0,-0,1,-0,-0,1,-0,-0,1,-0,-0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,-5.63840956147033e-007,0,1,-2.81920478073516e-007,0,1,0,0,1,-2.81920478073516e-007,0,0,-0,1,0,-0,1,0,-0,1,0,-0,1,1,-0,1.10794793783953e-007,1,-0,1.10794793783953e-007,1,-0,1.10794793783953e-007,1,-0,1.10794793783953e-007,1,1.0607656264483e-007,-1.12758172576832e-007,1,9.27503407410768e-010,-9.85927783858642e-010,1,-1.04221570040863e-007,1.1078630279826e-007,1,9.27503407410768e-010,-9.85927783858642e-010,0.868811964988709,-0.495142132043839,-3.6597532016458e-005,0.868811964988709,-0.495142161846161,-5.49917749594897e-005,0.868811964988709,-0.495142132043839,-7.33860142645426e-005,0.868812024593353,-0.495142102241516,-5.49917749594897e-005,1,0,-0,1,7.53577751311241e-008,1.38508482905308e-007,1,1.50715550262248e-007,2.77016965810617e-007,1,7.53577751311241e-008,1.38508482905308e-007,0.868812203407288,0.495141804218292,7.9537378042005e-005,0.868812143802643,0.495141834020615,5.87935028306674e-005,0.868812143802643,0.495141863822937,7.9537378042005e-005,0.868812143802643,0.495141834020615,0.000100281256891321,1,-0,0,1,1.38490063861241e-008,0,1,2.76980127722481e-008,0,
- 1,1.38490063861241e-008,0,0,-0,1,0,-0,1,0,-0,1,0,-0,1,1,-3.46229689363042e-009,-0,1,-5.19344522942333e-009,0,1,-6.92459334317164e-009,0,1,-5.19344522942333e-009,0,0,0,-1,0,0,-1,0,-0,-1,0,0,-1,0.0054732309654355,-0.999901592731476,0.0129219023510814,-0.0119926733896136,-0.999845206737518,-0.0128785409033298,-0.00280010001733899,-0.999979496002197,0.0057603707537055,-0.00139317440334708,-0.999941229820251,0.0107584502547979,-0.0119926687330008,-0.999845206737518,-0.0128789115697145,-0.0119926715269685,-0.999845147132874,-0.0128789087757468,-0.000893582939170301,-0.999938905239105,0.0110256792977452,1.64069138008927e-006,-2.93382441896028e-007,1,3.39006555805099e-006,-2.93382470317738e-007,1,2.56128460023319e-005,-2.93382413474319e-007,1,4.32430788350757e-005,-2.93382413474319e-007,1,1.72575291799149e-005,-2.93382470317738e-007,1,1.09379163859558e-006,-2.93382441896028e-007,1,-4.27275296033258e-007,1,0,-3.05195783312229e-007,1,0,-1.83116256380345e-007,1,0,-3.05195783312229e-007,1,0,0,-0.999949395656586,-0.0100629525259137,0.000498468463774771,-0.999994337558746,0.00336506310850382,-7.90467158395813e-009,-0.999797463417053,-0.0201246496289968,0.999977767467499,0.0066833789460361,2.39336311186333e-011,1,-4.58696369776135e-008,-1.21727089208434e-005,1,-3.26372984194023e-010,0,0.999977767467499,0.00668338034301996,0,0.999977767467499,0.00668259477242827,1.46522097566049e-007,0.999999582767487,-0.000976813375018537,0.000108632157207467,0.999997496604919,-0.00223911204375327,-0.000249785167397931,0.999977767467499,0.00668293610215187,2.10466915007146e-008,-0,6.01067142724787e-007,-1,-0,8.06619937065989e-007,-1,0,-1.52187794810743e-007,-1,0,-1.52210100168304e-006,-1,0,9.88971677884365e-008,-1,-0,6.01067142724787e-007,-1,0.999997496604919,-0.00226712808944285,0,0.999977767467499,0.00668338127434254,0,0.999977767467499,0.00668338127434254,0,0.999997496604919,-0.00226712808944285,0,0.999977767467499,0.00668338034301996,-0,1,-3.26372984194023e-010,0,1,-4.66734718429507e-007,2.85443966276944e-005,0.999977767467499,0.00668338127434254,4.79843541203312e-013,
- 0.999933660030365,0.0115179792046547,1.42294379404384e-012,1,4.53665847999218e-007,4.53508291684557e-005,1,0,0,0.999933660030365,0.0115179782733321,0,0.999933660030365,0.0115193240344524,-5.53158230331974e-008,0.999993562698364,0.00358573696576059,-0.000396056973841041,0.99999737739563,0.00228550494648516,0.000255038059549406,0.999933660030365,0.0115186013281345,1.64964461646377e-007,-0,6.01056740379136e-007,-1,0,7.96852873463649e-006,-1,-0,2.3697575670667e-005,-1,-0,2.40906247199746e-005,-1,0,1.57983849931043e-005,-1,0,3.00528370189568e-007,-1,0.99999737739563,0.0023144562728703,-4.05168121275779e-009,0.999933660030365,0.0115179792046547,0,0.999933660030365,0.0115179792046547,0,0.99999737739563,0.0023144562728703,-4.06062738989021e-009,0.999933660030365,0.0115179782733321,-0,1,0,0,1,4.79448033274821e-007,-2.91395444946829e-005,0.999933660030365,0.0115179801359773,1.13245844993171e-011,-6.00849758836119e-010,-1,-6.13317183706386e-008,-9.01281715925961e-010,-1,-9.19983023095483e-008,0,-1,-1.22078191111541e-007,0,-1,-9.15586468863694e-008,3.75749721115426e-007,-1,-2.22616485245908e-008,6.93287233843876e-007,-1,-4.10744682710629e-008,1.76393007222941e-006,-1,1.04505751608031e-007,1.06443428649072e-006,-1,6.30634460208057e-008,-9.36195306167065e-007,1.93347815979905e-007,1,-4.68097653083532e-007,1.93347815979905e-007,1,-3.0402759421122e-006,1.93347815979905e-007,1,5.06691212649457e-005,1.93347844401615e-007,1,0.000107418796687853,1.93347844401615e-007,1,2.5100513084908e-005,1.93347815979905e-007,1,-1.83110159923672e-007,1,0,-3.05187626281622e-008,1,0,1.22072634667347e-007,1,0,-3.05187626281622e-008,1,0,0,-1,0,1.49480883226971e-009,-1,-1.52583453427724e-007,2.98961766453942e-009,-1,-3.05166906855447e-007,0,-1,-1.52598104818935e-007,1,8.53167932746146e-007,0.000116732888272963,0.99996954202652,-0.00780822755768895,-5.42397319804877e-005,0.99996954202652,-0.00780695118010044,6.47966373890085e-007,1,1.31128308211714e-009,2.7330492002875e-007,0.999990701675415,0.00426806882023811,-0.000541932124178857,0.999899566173553,-0.0141296191141009,0.00111806206405163,
- 0.999944627285004,-0.0105273593217134,0.000257133011473343,0.999991059303284,0.00418878206983209,0.000566286209505051,0,0,-1,0,-1.85902615612576e-006,-1,0,-1.25708611449227e-005,-1,0,-1.9264109141659e-005,-1,0,-8.28039628686383e-006,-1,0,1.502678514953e-007,-1,0.99997490644455,-0.00708213681355119,0,0.999990880489349,0.00426568044349551,-2.03257166653259e-009,0.999990880489349,0.00426568044349551,-2.01972460978084e-009,0.999899685382843,-0.0141647504642606,0,1,-2.53875271027937e-007,9.44145722314715e-006,0.99997341632843,-0.00725542614236474,-0.000738247414119542,0.999972701072693,-0.0072553614154458,-0.00144743558485061,1,5.82424627282307e-006,0.000237410436966456,1,0,-2.38656667761461e-007,1,-9.05299113451719e-010,-7.95419268229125e-008,1,-9.15667541789844e-010,-8.04533613063541e-008,1,0,-1.19328333880731e-007,1,1.17867259064042e-007,1.3094662243418e-008,1,1.17867259064042e-007,1.3094662243418e-008,1,1.26598237670805e-007,-1.40646481128215e-008,1,1.22232748367423e-007,-1.35796547340306e-008,0,-1.08930726128165e-006,-1,0,-6.85790496390837e-007,-1,0,-2.65579092229018e-005,-1,0,-5.26924122823402e-005,-1,0,-1.78868249349762e-005,-1,0,-8.1698169651645e-007,-1,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-1.35794897548891e-009,1.19312915103365e-007,1,-0,1.19328376513295e-007,1,-0,1.19328376513295e-007,1,-1.35794897548891e-009,1.19312915103365e-007,1,-1.95124881421753e-014,-2.83912669374331e-007,1,-1.54672180282828e-014,-2.25052758651145e-007,1,-1.14219496084563e-014,-1.6619284792796e-007,1,-1.54672180282828e-014,-2.25052758651145e-007,1,0,0,1,8.77141275168469e-008,8.30805149121261e-008,1,1.75428255033694e-007,1.66161029824252e-007,1,8.77141275168469e-008,8.30805078066987e-008,1.7208577673955e-008,-5.59556809776041e-008,-1,8.48349202442478e-007,-8.82231688592583e-007,-1,1.67948985563271e-006,-1.70850773884013e-006,-1,8.48349202442478e-007,-8.82231688592583e-007,-1,1,-1.4883977428326e-007,1.40982010066182e-007,1,-1.47535160976986e-007,1.39746276772712e-007,1,-1.46230547670712e-007,1.38510515057533e-007,1,-1.47535160976986e-007,1.39746276772712e-007,
- 1.7914755972015e-006,1.83876898063318e-006,1,-3.60877038474428e-007,-3.00412580145348e-007,1,-2.51322967415035e-006,-2.43959425461071e-006,1,-3.60877095317846e-007,-3.00412580145348e-007,1,1,2.2159707668834e-007,0,1,1.1079853834417e-007,0,1,0,0,1,1.1079853834417e-007,0,0,-1.71478973243211e-006,-1,0,-2.13918610825203e-006,-1,0,-2.56358271144563e-006,-1,0,-2.13918610825203e-006,-1,1,-1.10793088481387e-007,-0,1,-2.76981815261479e-008,-0,1,5.5396725429091e-008,-0,1,-2.76981815261479e-008,-0,0,-2.44334296439774e-006,1,0,-2.43475210481847e-006,1,0,-2.4261612452392e-006,1,0,-2.43475210481847e-006,1,1,9.68912941551195e-015,1.40965823902661e-007,1,4.84456470775598e-015,7.04829119513306e-008,1,-0,0,1,4.84456470775598e-015,7.04829119513306e-008,-1.33045978145674e-006,0,-1,7.04190551914508e-006,0,-1,-0,0,-1,-0,0,-1,-8.86973225533438e-007,0,-1,-2.3786635210854e-005,0,-1,-2.4430344637949e-005,0,-1,-5.63521916774334e-006,0,-1,5.46910086995922e-007,0,-1,2.73455043497961e-007,0,-1,-1.62868964252993e-005,0,-1,-3.14081225951668e-005,0,-1,5.5317833647095e-012,-2.11372498597484e-005,1,3.87307330304565e-012,-1.47992268466624e-005,1,-1.57302461529542e-013,6.01061458382901e-007,1,7.86534669317517e-014,-3.0053925570428e-007,1,3.79272568212796e-012,-1.44922141771531e-005,1,-3.9834571730589e-013,1.52210100168304e-006,1,-4.52809447923364e-013,1.73021317095845e-006,1,1.15530089835059e-012,-4.41447537014028e-006,1,0,0,1,-7.86508716228013e-014,3.00529791275039e-007,1,-3.54306861627407e-013,1.35382867938461e-006,1,-4.52882306309355e-012,1.73049120348878e-005,1,-1.87564564839704e-005,0,-1,-2.27804030146217e-005,0,-1,-8.0478930613026e-006,0,-1,-1.13902015073108e-005,0,-1,-0,0,-1,-0,0,-1,-3.21235659600516e-012,1.22745914268307e-005,1,-6.66912922456242e-013,2.54831115853449e-006,1,1.57302461529542e-013,-6.01061458382901e-007,1,7.86512307647709e-014,-3.00530729191451e-007,1,-2.14157120856373e-012,8.18306125438539e-006,1,-4.2666720850848e-012,1.63031891133869e-005,1,-6.16443267958955e-012,2.59668959188275e-005,1,-4.50923152983673e-013,1.89945717465889e-006,1,
- 0,0,1,-6.46498506855567e-014,2.7232937327426e-007,1,-4.15272156939483e-012,1.74928172782529e-005,1,-1.11053952492335e-011,4.6780078264419e-005,1,-2.57653908875e-007,-1,1.52667549713215e-008,-4.20441459425547e-009,-1,4.29165652349184e-007,-5.40764855117004e-009,-1,5.51985579022585e-007,-4.18721867845306e-007,-1,2.48105074263094e-008,-3.32116778523073e-009,-1,-3.39006163585509e-007,-2.60359655612774e-007,-1,-1.54270836105752e-008,-3.13128452944511e-007,-1,-1.85537949448644e-008,-3.17018766793353e-009,-1,-3.23594974815933e-007,-0.0119929034262896,-0.999845147132874,-0.0128788836300373,-0.0119926733896136,-0.999845206737518,-0.0128785409033298,0.0054732309654355,-0.999901592731476,0.0129219023510814,-0.00367391854524612,-0.999929010868073,0.0113348951563239,-0.0119926752522588,-0.999845147132874,-0.0128788985311985,-0.0119926687330008,-0.999845206737518,-0.0128789115697145,-0.00139317440334708,-0.999941229820251,0.0107584502547979,0.00535699166357517,-0.999950766563416,0.00834631640464067,0.999986350536346,-0.00518549978733063,-0.000579779094550759,1,-4.58696369776135e-008,-1.21727089208434e-005,0.999977767467499,0.0066833789460361,2.39336311186333e-011,0.999977767467499,0.00668331142514944,6.25004688004083e-008,1,-9.43349846238561e-007,6.63650134811178e-005,0.999999582767487,-0.000976813375018537,0.000108632157207467,0.999977767467499,0.00668259477242827,1.46522097566049e-007,0.999977767467499,0.0066833714954555,7.69668474731589e-007,0.999999701976776,-0.000744595832657069,-8.44120004330762e-005,1,4.53665847999218e-007,4.53508291684557e-005,0.999933660030365,0.0115179792046547,1.42294379404384e-012,0.999933660030365,0.0115179689601064,9.5513883024978e-008,1,-7.34947525060647e-009,9.49414516071556e-006,0.999993562698364,0.00358573696576059,-0.000396056973841041,0.999933660030365,0.0115193240344524,-5.53158230331974e-008,0.999933660030365,0.0115179885178804,-6.47633896733169e-007,-6.00849758836119e-010,-1,-6.13317183706386e-008,-9.66326041407228e-008,-1,-5.72508795926296e-009,-1.28844490632218e-007,-1,-7.63351071242369e-009,
- -9.01281715925961e-010,-1,-9.19983023095483e-008,3.75749721115426e-007,-1,-2.22616485245908e-008,3.01922908896302e-009,-1,-3.08185974517983e-007,2.41545183854441e-009,-1,-2.46555771354906e-007,6.93287233843876e-007,-1,-4.10744682710629e-008,0.999974131584167,-0.00715970527380705,0.00065486814128235,0.99996954202652,-0.00780822755768895,-5.42397319804877e-005,1,8.53167932746146e-007,0.000116732888272963,0.999991059303284,0.00418910197913647,0.000566329574212432,0.999971389770508,-0.00730080436915159,0.00197352352552116,0.999899566173553,-0.0141296191141009,0.00111806206405163,0.999990701675415,0.00426806882023811,-0.000541932124178857,0.999999761581421,2.01628008653643e-005,-0.000735217763576657,1,-9.05299113451719e-010,-7.95419268229125e-008,1,-1.30976104628644e-007,-1.45510172799845e-008,1,-2.61952209257288e-007,-2.91020345599691e-008,1,-9.15667541789844e-010,-8.04533613063541e-008,1,1.22232748367423e-007,-1.35796547340306e-008,1,1.26598237670805e-007,-1.40646481128215e-008,1,1.37337130556858e-009,-1.2066861643234e-007,1,1.37337130556858e-009,-1.2066861643234e-007,0.999991476535797,-0.0041158078238368,0.000163700839038938,1,-0,0,1,0,-0,0.999994158744812,-0.00343521567992866,-8.86118432390504e-005,1,0,-0,1,0,-0,0.999996542930603,-0.00264099682681262,-1.00990810096846e-005,0.99999725818634,-0.0023007991258055,3.7097717722645e-005,0.999996542930603,-0.00264080613851547,0,0.999996542930603,-0.00264099682681262,-1.00990810096846e-005,1,0,-0,1,0,-0,1,4.75664734267411e-007,0,0.99999737739563,-0.00229611620306969,-2.47778930706488e-009,0.99998939037323,-0.00459270784631372,-2.4912119034326e-009,1,4.75664734267411e-007,0,0.999996542930603,-0.00264104991219938,2.446449798299e-005,0.999996542930603,-0.00264080613851547,0,1,-0,-0,1,-0,-0,1,-0,0,1,-0,0,0.999991476535797,-0.0041158078238368,0.000163700839038938,0.999996542930603,-0.00264068925753236,-4.31051012128592e-006,0.999979436397552,0.00641108769923449,0.00017882400425151,0.99999737739563,0.00226833741180599,-0.000249273871304467,0.99999737739563,0.00226658675819635,0.000254588958341628,
- 0.999979436397552,0.00640860013663769,-0.00016195084026549,0.99999737739563,0.00226672552525997,0.000254604674410075,1,-5.90324646054796e-007,-2.51870424108347e-005,0.999968528747559,0.00794335920363665,1.25120159282233e-005,0.999979436397552,0.00640865275636315,-0.000161945179570466,0.999968469142914,0.00794256757944822,2.12699944768247e-007,0.999968528747559,0.00794335920363665,1.25120159282233e-005,1,-5.90324646054796e-007,-2.51870424108347e-005,1,0,1.78267981709723e-007,0.999997317790985,0.00229544239118695,0,0.999979615211487,0.00639087520539761,0,0.999979615211487,0.00639083189889789,0,0.999997317790985,0.00229543307796121,0,0.999968469142914,0.00794088654220104,9.23403349588625e-005,0.999968469142914,0.00794266536831856,0,1,1.3104741736214e-009,0,1,1.80755125711585e-006,-0.000120705539302435,1,6.4742425820441e-007,-2.90775824396405e-005,0.99999737739563,0.00226833741180599,-0.000249273871304467,0.999979436397552,0.00641108769923449,0.00017882400425151,0.999968528747559,0.00794179551303387,1.93055839190492e-005,0.999899566173553,-0.0141296191141009,0.00111806206405163,1,3.78873409090374e-007,-4.20915924337351e-008,1,0,-0,0.999944627285004,-0.0105273593217134,0.000257133011473343,1,5.22583604833926e-007,5.80573313868626e-008,1,6.02234084823294e-009,4.80044775486022e-007,0.99996954202652,-0.00780822755768895,-5.42397319804877e-005,0.999974131584167,-0.00715970527380705,0.00065486814128235,0.99996954202652,-0.00780695118010044,6.47966373890085e-007,0.99996954202652,-0.00780822755768895,-5.42397319804877e-005,1,6.02234084823294e-009,4.80044775486022e-007,1,0,4.76114564662566e-007,1,4.76132100857285e-007,0,0.99997490644455,-0.00708213681355119,0,0.999899685382843,-0.0141647504642606,0,1,4.76132100857285e-007,0,0.999972701072693,-0.0072553614154458,-0.00144743558485061,0.99997341632843,-0.00725542614236474,-0.000738247414119542,1,-0,2.38056998114189e-007,1,-1.49303247543031e-009,1.1900976915058e-007,1,6.04744254673051e-009,-4.82047312289069e-007,1,3.78873409090374e-007,-4.20915924337351e-008,0.999899566173553,-0.0141296191141009,0.00111806206405163,
- 0.999971389770508,-0.00730080436915159,0.00197352352552116,0.9996138215065,0.0277130044996738,0.00206368416547775,1,-2.53875271027937e-007,9.44145722314715e-006,1,5.82424627282307e-006,0.000237410436966456,0.999608099460602,0.0276824347674847,0.00415687868371606,0.999990880489349,0.00426568044349551,-2.01972460978084e-009,0.999990880489349,0.00426568044349551,-2.03257166653259e-009,0.999556720256805,0.0297748856246471,-4.86426188217592e-009,0.999556720256805,0.0297748856246471,-4.86426143808671e-009,0.999556720256805,0.0297748930752277,7.70604799527064e-007,1,8.53167932746146e-007,0.000116732888272963,1,1.31128308211714e-009,2.7330492002875e-007,0.999556720256805,0.0297748874872923,5.74368641537149e-007,0.999991059303284,0.00418910197913647,0.000566329574212432,1,8.53167932746146e-007,0.000116732888272963,0.999556720256805,0.0297748930752277,7.70604799527064e-007,0.999547898769379,0.0300136208534241,-0.00184526760131121,0.999450385570526,0.0330744795501232,-0.00222752057015896,0.999990701675415,0.00426806882023811,-0.000541932124178857,0.999991059303284,0.00418878206983209,0.000566286209505051,0.999558866024017,0.0296405255794525,-0.00189358973875642,0.999999761581421,2.01628008653643e-005,-0.000735217763576657,0.999990701675415,0.00426806882023811,-0.000541932124178857,0.999450385570526,0.0330744795501232,-0.00222752057015896,0.999576926231384,0.0278632212430239,-0.00834574364125729,0.999999582767487,-0.000976813375018537,0.000108632157207467,0.999979436397552,0.00641108769923449,0.00017882400425151,0.999979436397552,0.00640860013663769,-0.00016195084026549,0.999997496604919,-0.00223911204375327,-0.000249785167397931,0.999979436397552,0.00640865275636315,-0.000161945179570466,0.999968528747559,0.00794335920363665,1.25120159282233e-005,1,-4.58696369776135e-008,-1.21727089208434e-005,0.999986350536346,-0.00518549978733063,-0.000579779094550759,1,-3.26372984194023e-010,0,1,-4.58696369776135e-008,-1.21727089208434e-005,0.999968528747559,0.00794335920363665,1.25120159282233e-005,0.999968469142914,0.00794256757944822,2.12699944768247e-007,
- 0.999979615211487,0.00639087520539761,0,0.999997496604919,-0.00226712808944285,0,0.999997496604919,-0.00226712808944285,0,0.999979615211487,0.00639083189889789,0,1,-4.66734718429507e-007,2.85443966276944e-005,1,-3.26372984194023e-010,0,0.999968469142914,0.00794266536831856,0,0.999968469142914,0.00794088654220104,9.23403349588625e-005,0.999968528747559,0.00794179551303387,1.93055839190492e-005,0.999979436397552,0.00641108769923449,0.00017882400425151,0.999999582767487,-0.000976813375018537,0.000108632157207467,1,-9.43349846238561e-007,6.63650134811178e-005,0.99999737739563,0.00226833741180599,-0.000249273871304467,0.999811768531799,-0.0194074064493179,-6.22275520001381e-009,0.99981164932251,-0.0194074027240276,-9.975757997438e-009,0.99999737739563,0.00226658675819635,0.000254588958341628,0.99981164932251,-0.0194074027240276,-9.975757997438e-009,0.999811768531799,-0.0194072630256414,-6.08880890151653e-010,1,-5.90324646054796e-007,-2.51870424108347e-005,0.99999737739563,0.00226672552525997,0.000254604674410075,1,0,1.78267981709723e-007,1,-5.90324646054796e-007,-2.51870424108347e-005,0.999811768531799,-0.0194072630256414,-6.08880890151653e-010,0.99981164932251,-0.0194072611629963,0,0.99981164932251,-0.0194074027240276,0,0.999997317790985,0.00229544239118695,0,0.999997317790985,0.00229543307796121,0,0.99981164932251,-0.019407331943512,0,1,1.80755125711585e-006,-0.000120705539302435,1,1.3104741736214e-009,0,0.99981164932251,-0.0194074027240276,0,0.99981164932251,-0.0194074027240276,4.48942358982629e-012,0.99981164932251,-0.0194074027240276,4.48942358982629e-012,0.999811768531799,-0.0194074064493179,-6.22275520001381e-009,0.99999737739563,0.00226833741180599,-0.000249273871304467,1,6.4742425820441e-007,-2.90775824396405e-005,0.999993562698364,0.00358573696576059,-0.000396056973841041,0.999991476535797,-0.0041158078238368,0.000163700839038938,0.999994158744812,-0.00343521567992866,-8.86118432390504e-005,0.99999737739563,0.00228550494648516,0.000255038059549406,0.99999725818634,-0.0023007991258055,3.7097717722645e-005,0.999996542930603,-0.00264099682681262,-1.00990810096846e-005,
- 1,4.53665847999218e-007,4.53508291684557e-005,0.999999701976776,-0.000744595832657069,-8.44120004330762e-005,1,0,0,1,4.53665847999218e-007,4.53508291684557e-005,0.999996542930603,-0.00264099682681262,-1.00990810096846e-005,0.999996542930603,-0.00264080613851547,0,0.99999737739563,-0.00229611620306969,-2.47778930706488e-009,0.99999737739563,0.0023144562728703,-4.05168121275779e-009,0.99999737739563,0.0023144562728703,-4.06062738989021e-009,0.99998939037323,-0.00459270784631372,-2.4912119034326e-009,1,4.79448033274821e-007,-2.91395444946829e-005,1,0,0,0.999996542930603,-0.00264080613851547,0,0.999996542930603,-0.00264104991219938,2.446449798299e-005,0.999996542930603,-0.00264068925753236,-4.31051012128592e-006,0.999991476535797,-0.0041158078238368,0.000163700839038938,0.999993562698364,0.00358573696576059,-0.000396056973841041,1,-7.34947525060647e-009,9.49414516071556e-006,2.38960129461674e-010,-0.999797463417053,-0.0201243050396442,0.00373579072766006,-0.999980270862579,0.00505770090967417,0.00554182147607207,-0.99997091293335,0.00524153234437108,-2.38960129461674e-010,-0.999797463417053,-0.0201243050396442,0.000517594278790057,-0.999987065792084,0.00505128549411893,0.00373579072766006,-0.999980270862579,0.00505770090967417,2.38960129461674e-010,-0.999797463417053,-0.0201243050396442,9.77641370636384e-011,-0.999797463417053,-0.0201243031769991,0.0055414461530745,-0.99997091293335,0.00524157425388694,0.000564623740501702,-0.999999821186066,-4.27270424552262e-005,-1.38981572916919e-008,-0.999797523021698,-0.020123777911067,-4.28186012868537e-007,-0.999797463417053,-0.0201242603361607,0.00373579072766006,-0.999980270862579,0.00505770090967417,-0.00139317440334708,-0.999941229820251,0.0107584502547979,-0.000893582939170301,-0.999938905239105,0.0110256792977452,0.00554182147607207,-0.99997091293335,0.00524153234437108,0.00535699166357517,-0.999950766563416,0.00834631640464067,-0.00139317440334708,-0.999941229820251,0.0107584502547979,0.00373579072766006,-0.999980270862579,0.00505770090967417,0.000517594278790057,-0.999987065792084,0.00505128549411893,
- -0.00367391854524612,-0.999929010868073,0.0113348951563239,0.0054732309654355,-0.999901592731476,0.0129219023510814,0.000564623740501702,-0.999999821186066,-4.27270424552262e-005,0.0055414461530745,-0.99997091293335,0.00524157425388694,0.0054732309654355,-0.999901592731476,0.0129219023510814,-0.00280010001733899,-0.999979496002197,0.0057603707537055,0.000564623740501702,-0.999999821186066,-4.27270424552262e-005,-0.002800103276968,-0.999979496002197,0.00575962010771036,-0.0119926845654845,-0.999845147132874,-0.0128793194890022,0.00535697117447853,-0.999950766563416,0.00834583397954702,-0.002800103276968,-0.999979496002197,0.00575962010771036,0.000498468463774771,-0.999994337558746,0.00336506310850382,0,-0.999949395656586,-0.0100629525259137,0.000564623740501702,-0.999999821186066,-4.27270424552262e-005,-6.1485722069321e-010,-0.99994945526123,-0.010062356479466,-1.38981572916919e-008,-0.999797523021698,-0.020123777911067,0.000564623740501702,-0.999999821186066,-4.27270424552262e-005,-0.00280010001733899,-0.999979496002197,0.0057603707537055,-6.1485722069321e-010,-0.99994945526123,-0.010062356479466,-0.002800103276968,-0.999979496002197,0.00575962010771036,0.00535697117447853,-0.999950766563416,0.00834583397954702,0.000498468463774771,-0.999994337558746,0.00336506310850382
- }
- TangentsW: *556 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *772 {
- a: 0.0355523228645325,2.60146403312683,-0.237914741039276,2.60146403312683,-0.237914979457855,2.57247376441956,0.0355525612831116,2.57247376441956,0.0355522632598877,2.48613047599792,-0.237915396690369,2.48613047599792,-0.237914979457855,2.45713901519775,0.0355525612831116,2.45713901519775,0.782871127128601,2.60708498954773,1.07192850112915,2.60708498954773,1.07192921638489,2.64579582214355,0.782871723175049,2.64579582214355,0.782870888710022,2.73652648925781,1.07192873954773,2.73652648925781,1.07192921638489,2.77523565292358,0.782871723175049,2.77523565292358,0.704903364181519,2.89283514022827,0.418213963508606,2.89283466339111,0.418213963508606,2.83818078041077,0.704903364181519,2.8381814956665,0.696022868156433,2.90220880508423,0.427094101905823,2.90220880508423,0.704903602600098,2.74246144294739,0.418214559555054,2.74246072769165,0.418214559555054,2.68780755996704,0.704903602600098,2.68780827522278,0.696022868156433,2.75183629989624,0.427094101905823,2.7518367767334,2.16879105567932,1.40341520309448,2.1687912940979,1.12994611263275,3.22587394714355,1.12994611263275,3.22587466239929,1.40341520309448,3.22587466239929,-0.637564659118652,2.14993095397949,-0.637564778327942,2.14993095397949,-0.926623940467834,3.22587466239929,-0.926623821258545,2.15936088562012,-0.539444446563721,2.15936088562012,-0.265975624322891,2.14993095397949,-0.256098598241806,2.14993071556091,-0.545157551765442,3.21644496917725,-0.265975624322891,3.22587466239929,-0.25609889626503,3.21644520759583,-0.539444327354431,3.22587323188782,-0.545157670974731,2.14993095397949,0.0944275557994843,3.22587466239929,0.0944278612732887,3.22587442398071,0.38111612200737,2.14993095397949,0.381115943193436,3.2164454460144,0.476399749517441,3.21644473075867,0.745327889919281,2.15936326980591,0.745327889919281,2.15936350822449,0.476399600505829,3.22587418556213,0.754208981990814,2.14993119239807,0.75420880317688,2.14993071556091,0.467520952224731,3.22587466239929,0.467521101236343,1.09546315670013,0.347484290599823,2.07196235656738,0.347484320402145,
- 2.07196187973022,0.392531961202621,1.09546327590942,0.392531931400299,3.22587561607361,1.52441465854645,2.16879105567932,1.52441465854645,2.16879105567932,1.49542307853699,3.22587561607361,1.49542307853699,2.1687912940979,1.6172502040863,3.22587537765503,1.61724960803986,3.22587561607361,1.64624166488647,2.16879105567932,1.64624166488647,3.22587513923645,-0.125740677118301,2.14993119239807,-0.125740677118301,2.14993119239807,-0.164451658725739,3.22587537765503,-0.164451628923416,2.14993143081665,-0.0350116789340973,3.22587561607361,-0.035011675208807,3.22587513923645,0.00369880348443985,2.14993119239807,0.00369879603385925,1.09546315670013,-0.525960624217987,2.07196235656738,-0.525960445404053,2.07196235656738,-0.500760316848755,1.09546315670013,-0.500760734081268,2.2268705368042,2.14262461662292,3.22587561607361,2.14262461662292,3.22587561607361,2.16782474517822,2.22687029838562,2.16782474517822,1.14989805221558,2.87700605392456,2.14890289306641,2.87700653076172,2.14890217781067,2.90220880508423,1.14989757537842,2.90220832824707,0.0409950166940689,-0.393507599830627,0.0409950017929077,-0.438560128211975,1.01749420166016,-0.438560247421265,1.01749432086945,-0.393507421016693,1.14989757537842,2.07953786849976,2.14890217781067,2.07953834533691,2.14890217781067,2.10473823547363,1.14989757537842,2.10473775863647,1.09181773662567,1.26152384281158,2.09082269668579,1.26152384281158,2.09082269668579,1.28672575950623,1.09181761741638,1.28672575950623,2.14993119239807,0.840611219406128,3.22587561607361,0.840611457824707,3.22587561607361,0.895262718200684,2.14993119239807,0.895262718200684,3.22587513923645,1.03993403911591,2.14993119239807,1.03993391990662,2.14993119239807,0.98527991771698,3.22587561607361,0.985279858112335,-0.297797501087189,2.19687938690186,-0.295277744531631,2.19435977935791,-0.0406187772750854,2.19435977935791,-0.0406178832054138,2.23940658569336,-0.295276612043381,2.23940658569336,-0.297796487808228,2.23688697814941,-0.297796964645386,2.32574677467346,-0.0431381091475487,2.32574677467346,-0.0406183302402496,
- 2.32826638221741,-0.0406188070774078,2.36827492713928,-0.0431386455893517,2.37079477310181,-0.297797381877899,2.37079453468323,-0.261112451553345,1.48791289329529,-0.258592665195465,1.48539352416992,-0.0406183004379272,1.48539340496063,-0.0406179428100586,1.5105926990509,-0.258592575788498,1.5105926990509,-0.2611123919487,1.50807321071625,-0.261112451553345,1.59693372249603,-0.043138112872839,1.59693336486816,-0.0406183004379272,1.59945285320282,-0.0406183004379272,1.61961388587952,-0.0431381054222584,1.62213349342346,-0.261112451553345,1.62213361263275,-0.0594785213470459,1.28498435020447,-0.0619983226060867,1.28750395774841,-0.260327100753784,1.2875040769577,-0.260327100753784,1.2623028755188,-0.0619983337819576,1.26230311393738,-0.0594785176217556,1.26482284069061,-0.0406179428100586,1.39904916286469,-0.238946422934532,1.39904928207397,-0.241466283798218,1.39652955532074,-0.24146680533886,1.37636804580688,-0.238947078585625,1.37384831905365,-0.0406183004379272,1.37384819984436,-0.0594787374138832,1.06189393997192,-0.0619985610246658,1.06441366672516,-0.260327160358429,1.06441366672516,-0.260327100753784,1.03921246528625,-0.0619983449578285,1.03921234607697,-0.0594785436987877,1.0417320728302,-0.059478759765625,1.17595982551575,-0.257807374000549,1.17595994472504,-0.260327160358429,1.1734402179718,-0.260327100753784,1.15327823162079,-0.257807284593582,1.15075838565826,-0.0594785213470459,1.15075838565826,-0.295277655124664,1.9766206741333,-0.297797441482544,1.97410094738007,-0.297796696424484,1.93408703804016,-0.29527685046196,1.93156743049622,-0.0406178832054138,1.93156743049622,-0.0406189560890198,1.9766206741333,-0.297796428203583,2.10801577568054,-0.297796726226807,2.06296348571777,-0.0431381054222584,2.06296348571777,-0.0406182780861855,2.06548309326172,-0.0406179055571556,2.1054961681366,-0.0431376919150352,2.10801601409912,-0.0594787374138832,0.838803648948669,-0.0619985722005367,0.841323435306549,-0.26032829284668,0.84132331609726,-0.260327577590942,0.816122114658356,-0.0619983412325382,0.816122114658356,
- -0.0594785436987877,0.818641841411591,-0.0594785213470459,0.952868103981018,-0.257807999849319,0.952868103981018,-0.260327875614166,0.950348377227783,-0.26032829284668,0.930186986923218,-0.257808566093445,0.927667319774628,-0.059478759765625,0.927667260169983,-0.0406179241836071,1.73115932941437,-0.0431376956403255,1.7336790561676,-0.262010753154755,1.7336790561676,-0.26201069355011,1.70847856998444,-0.0431380905210972,1.70847845077515,-0.040618259459734,1.71099805831909,-0.0406189560890198,1.84522449970245,-0.259490609169006,1.84522426128387,-0.262010395526886,1.84270453453064,-0.262010395526886,1.82254314422607,-0.259490609169006,1.82002353668213,-0.0406189560890198,1.82002365589142,1.09546327590942,0.612786293029785,2.07196235656738,0.867445528507233,1.09546315670013,0.867445170879364,1.09546327590942,0.00396353006362915,2.07196259498596,0.00396361947059631,2.07196235656738,0.258622467517853,1.09546315670013,0.258622407913208,1.09546315670013,0.481394410133362,2.07196235656738,0.521402597427368,1.09546315670013,0.521402537822723,1.09546315670013,-0.300355017185211,2.07196235656738,-0.0823803246021271,1.09546315670013,-0.0823804140090942,1.09546315670013,-0.832798779010773,2.07196235656738,-0.832798540592194,2.07196235656738,-0.614823877811432,1.09546315670013,-0.614824295043945,1.09546315670013,-0.411898136138916,2.07196187973022,-0.391737222671509,1.09546327590942,-0.391737222671509,3.22587490081787,1.93740463256836,2.22687005996704,1.7390763759613,3.22587466239929,1.7390763759613,3.22587418556213,2.45768404006958,2.22686982154846,2.45768404006958,2.2268705368042,2.25935530662537,3.22587418556213,2.25935530662537,3.22587490081787,2.05109190940857,2.22687029838562,2.03093123435974,3.22587490081787,2.03093123435974,3.22587442398071,2.74449825286865,2.22687005996704,2.54617094993591,3.22587418556213,2.54617094993591,2.14890193939209,2.79066348075867,1.14989733695984,2.79066348075867,1.1498966217041,2.59233546257019,2.14890122413635,2.59233546257019,3.22587442398071,2.85818982124329,2.22686982154846,2.83802795410156,
- 3.22587442398071,2.83802795410156,1.0174947977066,-0.671964347362518,0.0409955978393555,-0.926623404026031,1.0174947977066,-0.926623284816742,1.0174947977066,-0.533080518245697,0.0409960485994816,-0.573092222213745,1.01749491691589,-0.573093950748444,0.0409960746765137,-0.0443264245986938,0.0409956052899361,-0.298984527587891,1.01749491691589,-0.298984825611115,1.01749491691589,-0.0443264245986938,2.14890241622925,2.50095200538635,1.14989757537842,2.30262422561646,2.14890146255493,2.3026237487793,2.14890122413635,1.99319553375244,1.14989650249481,1.99319529533386,1.14989757537842,1.79486680030823,2.14890217781067,1.79486680030823,2.14890098571777,2.21376180648804,1.14989757537842,2.19360113143921,2.14890146255493,2.19360113143921,2.09082269668579,1.70348405838013,1.09181761741638,1.48461174964905,2.09082269668579,1.48461198806763,2.07196187973022,1.17518055438995,1.07295775413513,1.17518043518066,1.07295751571655,0.956308424472809,2.07196187973022,0.956308543682098,2.09082269668579,1.39575159549713,1.09181773662567,1.37558925151825,2.09082269668579,1.37558913230896,2.07196259498596,0.61026668548584,2.07196259498596,0.612786829471588,1.09546327590942,0.610266447067261,2.07196235656738,0.478875160217285,2.07196235656738,0.481394708156586,1.09546315670013,0.478874832391739,2.07196235656738,-0.302874565124512,2.07196235656738,-0.300354540348053,1.09546315670013,-0.302874803543091,2.07196235656738,-0.414417624473572,2.07196235656738,-0.411898136138916,1.09546315670013,-0.414417624473572,2.22686982154846,1.93992447853088,2.22686982154846,1.93740487098694,3.22587490081787,1.93992447853088,2.22686982154846,2.05361127853394,2.22686982154846,2.05109167098999,3.22587490081787,2.05361151695251,2.22687029838562,2.74701809883118,2.22687029838562,2.74449825286865,3.22587442398071,2.74701809883118,2.22687029838562,2.86070966720581,2.22687029838562,2.85819005966187,3.22587466239929,2.86070966720581,1.0174947977066,-0.669444501399994,0.0409955978393555,-0.669444620609283,0.0409955978393555,-0.671964406967163,1.0174947977066,-0.530560910701752,
- 0.0409955978393555,-0.530560672283173,0.0409956239163876,-0.533080160617828,1.14989805221558,2.50347208976746,1.14989805221558,2.50095248222351,2.14890241622925,2.50347185134888,1.14989757537842,2.21628165245056,1.14989757537842,2.21376204490662,2.14890098571777,2.21628141403198,1.09181773662567,1.70600366592407,1.09181773662567,1.70348405838013,2.09082269668579,1.70600390434265,1.09181773662567,1.39827156066895,1.09181773662567,1.39575171470642,2.09082269668579,1.39827144145966,2.72807645797729,2.85819005966187,2.72807645797729,2.83802795410156,2.72807645797729,2.74701809883118,2.72807645797729,2.74449825286865,1.65110421180725,2.90220856666565,2.72807645797729,2.54617094993591,1.65110397338867,2.79066348075867,1.6511048078537,2.87700629234314,1.65110325813293,2.59233546257019,2.72807669639587,2.86070966720581,2.72542095184326,2.05109167098999,2.72542142868042,2.03093123435974,2.72542095184326,1.93992447853088,2.72542095184326,1.93740475177765,2.725421667099,2.16782474517822,2.72542095184326,1.7390763759613,2.72542071342468,2.45768404006958,2.72542190551758,2.14262461662292,2.72542095184326,2.25935530662537,2.72542095184326,2.05361127853394,1.65065813064575,2.21376180648804,1.65065836906433,2.19360113143921,1.65065908432007,2.50347185134888,1.65065908432007,2.50095224380493,1.65065884590149,2.10473799705505,1.65065836906433,2.30262398719788,1.65065777301788,1.99319541454315,1.65065884590149,2.07953810691834,1.65065884590149,1.79486680030823,1.65065813064575,2.21628141403198,1.94144487380981,1.79486680030823,1.94144368171692,2.21883988380432,1.9414439201355,1.99319553375244,1.94144487380981,2.07953834533691,1.94144487380981,2.10473823547363,1.94144415855408,2.3026237487793,1.9414449930191,2.50095224380493,1.94144415855408,2.19360113143921,1.9414449930191,2.50347185134888,1.94144463539124,2.2128586769104,2.9122633934021,2.05109167098999,2.91226387023926,2.03093123435974,2.9122633934021,1.93992447853088,2.9122633934021,1.93740463256836,2.91226434707642,2.16782474517822,2.9122633934021,1.7390763759613,2.91226315498352,
- 2.45768404006958,2.91226434707642,2.14262461662292,2.9122633934021,2.25935530662537,2.9122633934021,2.05361127853394,2.50251722335815,2.05109167098999,2.50251770019531,2.03093123435974,2.50251722335815,1.93992447853088,2.50251722335815,1.93740487098694,2.50251793861389,2.16782474517822,2.50251746177673,1.7390763759613,2.50251722335815,2.45768404006958,2.50251817703247,2.14262461662292,2.50251770019531,2.25935530662537,2.50251722335815,2.05361127853394,3.03955602645874,2.85819005966187,3.03955602645874,2.83802795410156,3.03955602645874,2.74701809883118,3.03955602645874,2.74449825286865,1.9625837802887,2.90220880508423,3.03955602645874,2.54617094993591,1.96258354187012,2.79066348075867,1.96258449554443,2.87700653076172,1.96258282661438,2.59233546257019,3.03955626487732,2.86070966720581,1.43908381462097,-0.391737222671509,1.43908381462097,-0.302874714136124,1.43908381462097,-0.411898136138916,1.43908381462097,-0.614824175834656,1.43908381462097,-0.414417624473572,1.43908381462097,-0.300354838371277,1.78934860229492,-0.391737222671509,1.7893488407135,-0.302874624729156,1.7893488407135,-0.411898136138916,1.7893488407135,-0.614823997020721,1.7893488407135,-0.414417624473572,1.7893488407135,-0.300354659557343
- }
- UVIndex: *556 {
- a: 192,263,193,194,199,266,200,201,114,115,116,117,118,119,56,57,58,59,195,196,197,198,28,29,30,31,60,61,62,63,0,1,2,3,64,65,66,67,4,5,6,7,32,33,34,35,42,36,39,43,36,37,38,39,37,40,41,38,40,42,43,41,68,69,70,71,8,9,10,11,72,73,74,75,12,13,14,15,385,269,203,382,272,210,380,126,127,128,129,130,131,79,76,77,78,205,377,208,212,347,349,214,219,344,345,221,138,139,140,141,142,143,351,81,82,348,215,350,352,218,222,367,369,224,229,364,365,231,150,151,152,153,154,155,371,85,86,368,225,370,372,228,232,288,233,234,235,291,236,237,162,163,164,165,166,167,88,89,90,91,238,239,240,241,340,327,329,339,343,324,325,341,174,175,176,177,178,179,331,337,338,328,336,330,332,334,254,252,299,253,260,261,259,302,186,187,188,189,190,191,97,98,99,96,258,255,256,257,44,45,46,47,50,49,52,53,20,21,17,16,48,51,54,55,26,27,23,22,100,101,102,103,16,17,18,19,104,105,106,107,22,23,24,25,48,49,50,51,108,109,110,111,112,113,120,121,122,123,124,125,132,133,134,135,136,137,144,145,146,147,148,149,156,157,158,159,160,161,168,169,170,171,172,173,180,181,182,183,184,185,262,263,192,264,265,266,199,267,268,269,385,381,271,272,382,384,346,347,212,276,353,344,219,279,366,367,222,282,373,364,229,285,232,286,287,288,235,289,290,291,326,327,340,342,333,324,343,335,252,300,298,299,302,259,303,301,304,284,230,305,280,281,307,306,309,307,281,223,84,311,308,87,312,310,226,227,283,284,304,313,314,354,355,315,356,357,317,316,319,317,357,359,361,321,318,358,322,320,360,362,363,354,314,323,324,296,250,325,292,293,327,326,329,327,293,243,92,331,328,95,332,330,246,247,295,296,324,333,245,336,334,248,338,337,93,94,242,340,339,244,342,340,242,294,249,343,341,251,335,343,249,297,344,314,315,345,316,317,347,346,349,347,317,319,321,351,348,318,352,350,320,322,323,314,344,353,354,278,220,355,274,275,357,356,359,357,275,213,80,361,358,83,362,360,216,217,277,278,354,363,364,304,305,365,306,307,367,366,369,367,307,309,311,371,368,308,372,370,310,312,313,304,364,373,209,376,374,211,378,376,209,273,375,379,202,270,376,382,380,374,384,382,376,378,381,385,379,375,
- 385,203,379,206,207,383,206,377,205,379,204,202,379,203,204,206,383,377
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *278 {
- 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,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,0,0,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementMaterial: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "AllSame"
- ReferenceInformationType: "IndexToDirect"
- Materials: *1 {
- a: 0
- }
- }
- Layer: 0 {
- Version: 100
- LayerElement: {
- Type: "LayerElementNormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementBinormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementTangent"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementMaterial"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementSmoothing"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementUV"
- TypedIndex: 0
- }
- }
- }
- Geometry: 2399509365984, "Geometry::", "Mesh" {
- Vertices: *252 {
- a: 101.732421875,201.36653137207,0.74090576171875,101.732421875,12.308910369873,0.74090576171875,93.01123046875,201.36653137207,0.74090576171875,93.01123046875,12.308910369873,0.74090576171875,-102.32958984375,201.36653137207,52.2388305664063,102.32958984375,201.36653137207,52.2388305664063,102.32958984375,201.36653137207,-0.70654296875,-102.32958984375,201.36653137207,-0.70654296875,-102.32958984375,206.979309082031,52.2388305664063,102.32958984375,206.979309082031,52.2388305664063,102.32958984375,206.979309082031,-0.70654296875,-102.32958984375,206.979309082031,-0.70654296875,104.1552734375,208.019775390625,-1.81256103515625,-104.1552734375,208.019775390625,-1.81256103515625,-104.1552734375,208.019775390625,54.1512451171875,104.1552734375,208.019775390625,54.1512451171875,104.1552734375,215.514297485352,-1.81256103515625,-104.1552734375,215.514297485352,-1.81256103515625,-104.1552734375,215.514297485352,54.1512451171875,104.1552734375,215.514297485352,54.1512451171875,2.439453125,201.36653137207,4.51971435546875,2.439453125,12.308910369873,4.51971435546875,-2.439453125,201.36653137207,4.51971435546875,-2.439453125,12.308910369873,4.51971435546875,96.70751953125,120.153709411621,6.4730224609375,-96.70751953125,120.153709411621,6.4730224609375,96.70751953125,125.032806396484,6.4730224609375,-96.70751953125,125.032806396484,6.4730224609375,96.70751953125,159.540344238281,6.4730224609375,-96.70751953125,159.540344238281,6.4730224609375,96.70751953125,164.419448852539,6.4730224609375,-96.70751953125,164.419448852539,6.4730224609375,-101.73291015625,201.36653137207,0.74090576171875,-101.73291015625,12.308910369873,0.74090576171875,-93.0107421875,201.36653137207,0.74090576171875,-93.0107421875,12.308910369873,0.74090576171875,96.70751953125,80.7670745849609,6.4730224609375,-96.70751953125,80.7670745849609,6.4730224609375,96.70751953125,85.6461715698242,6.4730224609375,-96.70751953125,85.6461715698242,6.4730224609375,96.70751953125,41.3804321289063,2.26871919631958,-96.70751953125,41.3804321289063,2.26871919631958,
- 96.70751953125,46.2595291137695,2.26871919631958,-96.70751953125,46.2595291137695,2.26871919631958,102.32958984375,12.3962574005127,52.1959838867188,-102.3291015625,12.3962574005127,52.1959838867188,-102.3291015625,12.3962535858154,0.1292724609375,102.32958984375,12.3962535858154,0.1292724609375,-104.1552734375,10.5812568664551,-1.58984375,104.1552734375,10.5812568664551,-1.58984375,104.1552734375,10.581259727478,53.9151611328125,-104.1552734375,10.581259727478,53.9151611328125,-104.1552734375,0,-1.58984375,104.1552734375,0,-1.58984375,104.1552734375,3.814697265625e-006,53.9151611328125,-104.1552734375,3.814697265625e-006,53.9151611328125,101.732421875,12.308910369873,50.5326538085938,101.732421875,201.36653137207,50.5326538085938,93.01123046875,12.308910369873,50.5326538085938,93.01123046875,201.36653137207,50.5326538085938,2.439453125,12.308910369873,47.2091064453125,2.439453125,201.36653137207,47.2091064453125,-2.439453125,12.308910369873,47.2091064453125,-2.439453125,201.36653137207,47.2091064453125,-96.70751953125,120.153709411621,45.4724197387695,96.70751953125,120.153709411621,45.4724197387695,-96.70751953125,125.032806396484,45.4724197387695,96.70751953125,125.032806396484,45.4724197387695,-96.70751953125,159.540344238281,45.4724197387695,96.70751953125,159.540344238281,45.4724197387695,-96.70751953125,164.419448852539,45.4724197387695,96.70751953125,164.419448852539,45.4724197387695,-101.73291015625,12.308910369873,50.5438461303711,-101.73291015625,201.36653137207,50.5438461303711,-93.0107421875,12.308910369873,50.5438461303711,-93.0107421875,201.36653137207,50.5438461303711,-96.70751953125,80.7670745849609,45.4724197387695,96.70751953125,80.7670745849609,45.4724197387695,-96.70751953125,85.6461715698242,45.4724197387695,96.70751953125,85.6461715698242,45.4724197387695,-96.70751953125,41.3804321289063,45.2454719543457,96.70751953125,41.3804321289063,45.2454719543457,-96.70751953125,46.2595291137695,45.2454719543457,96.70751953125,46.2595291137695,45.2454719543457
- }
- PolygonVertexIndex: *256 {
- a: 57,56,1,-1,59,58,56,-58,2,59,57,-1,3,2,0,-2,2,3,58,-60,4,7,6,-6,9,8,4,-6,10,9,5,-7,11,10,6,-8,8,11,7,-5,16,17,18,-20,10,11,13,-13,11,8,14,-14,8,9,15,-15,9,10,12,-16,12,13,17,-17,13,14,18,-18,14,15,19,-19,15,12,16,-20,60,21,20,-62,63,62,60,-62,63,22,23,-63,24,65,64,-26,65,67,66,-65,26,67,65,-25,26,24,25,-28,66,67,26,-28,29,28,69,-69,69,71,70,-69,30,71,69,-29,31,30,28,-30,70,71,30,-32,72,73,32,-34,75,73,72,-75,34,32,73,-76,35,33,32,-35,34,75,74,-36,36,77,76,-38,76,77,79,-79,38,36,37,-40,78,79,38,-40,40,81,80,-42,82,80,81,-84,42,83,81,-41,42,40,41,-44,83,42,43,-83,52,53,54,-56,46,47,49,-49,47,44,50,-50,44,45,51,-51,45,46,48,-52,48,49,53,-53,49,50,54,-54,50,51,55,-55,51,48,52,-56,44,47,46,-46,58,3,1,-57,20,22,63,-62,66,27,25,-65,70,31,29,-69,74,72,33,-36,82,43,41,-81,21,23,22,-21,21,60,62,-24
- }
- Edges: *132 {
- a: 2,1,17,12,11,15,23,22,21,20,25,24,36,28,27,32,31,35,47,45,46,49,50,53,54,58,63,61,40,65,41,69,42,43,77,76,86,85,90,107,99,102,111,127,119,123,130,131,146,143,136,140,150,163,156,158,166,182,175,178,196,192,200,188,191,189,190,193,194,197,198,202,207,205,184,209,185,213,186,187,3,5,7,8,78,81,83,84,94,88,96,92,114,109,116,112,129,134,132,139,148,155,161,153,164,168,172,170,0,4,128,135,171,110,113,89,93,151,159,154,165,149,91,103,167,179,108,120,79,80,228,248
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Normals: *768 {
- a: 0.999999940395355,0,0,0.999999940395355,0,0,0.999999940395355,0,0,0.999999940395355,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.999999940395355,0,0,-0.999999940395355,0,0,-0.999999940395355,0,0,-0.999999940395355,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0.999999940395355,0,0,0.999999940395355,0,0,0.999999940395355,0,0,0.999999940395355,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.999999940395355,0,0,-0.999999940395355,0,0,-0.999999940395355,0,0,-0.999999940395355,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.728357195854187,-0.685197591781616,0,-0.728357195854187,-0.685197591781616,0,-0.728357195854187,-0.685197770595551,0,-0.728357195854187,-0.685197770595551,-0.495142132043839,-0.868811964988709,0,-0.495142161846161,-0.868811964988709,0,-0.495142102241516,-0.868811905384064,0,-0.495142072439194,-0.868811964988709,0,0,-0.878407716751099,0.47791188955307,0,-0.878407716751099,0.47791188955307,0,-0.878407716751099,0.477911859750748,0,-0.878407716751099,0.477911859750748,0.495141804218292,-0.868812203407288,0,0.495141834020615,-0.868812143802643,0,0.495141863822937,-0.868812143802643,0,0.495141804218292,-0.868812084197998,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0.999999940395355,0,0,0.999999940395355,0,0,0.999999940395355,0,0,0.999999940395355,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.999999940395355,0,0,0.999999940395355,0,0,0.999999940395355,0,0,0.999999940395355,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-0.999999940395355,0,0,-0.999999940395355,0,0,-0.999999940395355,0,0,-0.999999940395355,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.999999940395355,0,0,0.999999940395355,0,0,0.999999940395355,0,0,0.999999940395355,
- 0,0,-0.999999940395355,0,0,-0.999999940395355,0,0,-0.999999940395355,0,0,-0.999999940395355,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.999999940395355,0,0,0.999999940395355,0,0,0.999999940395355,0,0,0.999999940395355,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-0.999999940395355,0,0,-0.999999940395355,0,0,-0.999999940395355,0,0,-0.999999940395355,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,6.87270826915665e-008,0,-1,6.87270826915665e-008,0,-1,6.87270826915665e-008,0,-1,6.87270826915665e-008,0,0.687670052051544,-0.726023316383362,0,0.687670111656189,-0.726023256778717,0,0.687670171260834,-0.726023316383362,0,0.687670111656189,-0.726023316383362,0.705028414726257,0.709179103374481,-2.7550065340165e-008,0.705028355121613,0.709179103374481,-2.75500635638082e-008,0.705028355121613,0.709179103374481,-2.75500635638082e-008,0.705028355121613,0.709179162979126,-2.75500635638082e-008,0,0.687682747840881,0.726011395454407,0,0.687682747840881,0.726011395454407,0,0.687682688236237,0.726011395454407,0,0.687682747840881,0.726011395454407,-0.704933285713196,0.70927357673645,-4.13195202497718e-008,-0.704933285713196,0.709273636341095,-4.13195238024855e-008,-0.704933285713196,0.70927357673645,-4.13195238024855e-008,-0.704933226108551,0.709273636341095,-4.13195238024855e-008,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,-6.8733889690975e-008,0,1,-6.8733889690975e-008,0,1,-6.8733889690975e-008,0,1,-6.8733889690975e-008,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-0.999999940395355,0,0,-0.999999940395355,0,0,-0.999999940395355,0,0,-0.999999940395355,0,-1,0,0,-1,0,0,-1,0,0,-1,0
- }
- NormalsW: *256 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementBinormal: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *768 {
- a: 0,-4.27273960212915e-007,-1,0,-3.96754415987743e-007,-1,0,-3.66234900184281e-007,-1,0,-3.96754415987743e-007,-1,1,-2.13630187317904e-007,0,1,-1.3733378523284e-007,0,1,-6.1037397358632e-008,0,1,-1.3733378523284e-007,0,1,-0,2.7810358460556e-006,1,-0,9.27002133721544e-007,1,0,-9.27031578612514e-007,1,-0,9.27002133721544e-007,1,3.05182545901062e-008,0,1,3.05182545901062e-008,0,1,3.05182545901062e-008,0,1,3.05182545901062e-008,0,0,-9.15587037297882e-008,1,0,-7.62989174063478e-008,1,0,-6.10391381883346e-008,1,0,-7.62989174063478e-008,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,-0,0,1,-0,0,1,-0,0,1,-0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-5.63840956147033e-007,-1,-0,-2.81920478073516e-007,-1,-0,0,-1,0,-2.81920478073516e-007,-1,-0,0,1,0,0,1,0,0,1,0,0,1,0,1.10794793783953e-007,0,-1,1.10794793783953e-007,0,-1,1.10794793783953e-007,0,-1,1.10794793783953e-007,0,-1,1.54811630181939e-007,-0.685197591781616,0.728357195854187,1.35363065201233e-009,-0.685197591781616,0.728357195854187,-1.52104377093565e-007,-0.685197710990906,0.728357136249542,1.35363065201233e-009,-0.685197710990906,0.728357136249542,3.17963749694172e-005,-1.81209798029158e-005,1,4.77775138278957e-005,-2.72287470579613e-005,1,6.37586490483955e-005,-3.6336510675028e-005,1,4.77775138278957e-005,-2.72287416009931e-005,1,0,0.477911949157715,0.878407835960388,-1.57681299128853e-007,0.477911949157715,0.878407835960388,-3.15362598257707e-007,0.477911919355392,0.878407835960388,-1.57681299128853e-007,0.477911919355392,0.878407835960388,-6.91030436428264e-005,-3.93822811020073e-005,1,-5.10805075464305e-005,-2.91111227852525e-005,1,-6.91030363668688e-005,-3.93822847399861e-005,1,-8.71255761012435e-005,-4.9653448513709e-005,1,0,-1,-0,1.38490063861241e-008,-1,0,2.76980127722481e-008,-1,0,1.38490063861241e-008,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,3.46229689363042e-009,1,-0,5.19344522942333e-009,1,-0,6.92459334317164e-009,1,-0,5.19344522942333e-009,1,-0,-0,1,0,-0,1,0,0,1,-0,-0,1,0,0,-5.18833530804841e-007,-1,0,-3.05196095951032e-007,-1,0,-9.15586824135062e-008,-1,0,-3.05196095951032e-007,-1,
- 1,0,-0,1,0,-0,1,-0,0,1,0,-0,0,-3.66234871762572e-007,1,0,-3.05195669625391e-007,1,0,-2.4415646748821e-007,1,0,-3.05195669625391e-007,1,0,0,1,-1.40365609695436e-005,0,1,-2.80731219390873e-005,0,1,-1.40365609695436e-005,0,1,-2.76579066849081e-005,1,0,-1.37440192702343e-005,1,0,1.6986780337902e-007,1,-0,-1.37440192702343e-005,1,0,-0,1,5.91799391713721e-007,-0,1,5.91799391713721e-007,-0,1,5.91799391713721e-007,-0,1,5.91799391713721e-007,0,-1,-0,0,-1,-0,0,-1,-0,0,-1,-0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,-0,0,1,-0,0,1,-0,0,1,-0,-0,1,5.91789103054907e-007,-0,1,2.95894551527454e-007,-0,1,0,-0,1,2.95894551527454e-007,4.77287699141016e-007,-1,0,4.77287699141016e-007,-1,0,4.77287699141016e-007,-1,0,4.77287699141016e-007,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1.22078233744105e-007,1,0,-1.22078233744105e-007,1,0,-1.22078233744105e-007,1,0,-1.22078233744105e-007,1,1,3.13494012971205e-007,-0,1,5.95633309785626e-007,-0,1,8.77772549756628e-007,-0,1,5.95633309785626e-007,-0,1,0,-9.2681420937879e-007,1,0,-4.63407104689395e-007,1,-0,0,1,0,-4.63407104689395e-007,1,1.83110159923672e-007,0,1,3.05187626281622e-008,0,1,-1.22072634667347e-007,0,1,3.05187626281622e-008,0,0,0,-1,0,3.05196330430135e-008,-1,0,6.10392660860271e-008,-1,0,3.05196330430135e-008,-1,-4.84789438814914e-007,0,1,-4.84789438814914e-007,0,1,-4.84789438814914e-007,0,1,-4.84789438814914e-007,0,1,0,1,-0,-1.32590017187795e-007,1,0,-2.65180034375589e-007,1,0,-1.32590017187795e-007,1,0,4.77332093851146e-007,-1,0,4.77332093851146e-007,-1,0,4.77332093851146e-007,-1,0,4.77332093851146e-007,-1,0,0,0,-1,1.21197075486634e-007,0,-1,2.42394150973269e-007,0,-1,1.21197075486634e-007,0,-1,2.4204331339206e-007,0,1,1.2102165669603e-007,0,1,0,0,1,1.2102165669603e-007,0,1,-1.32578179545817e-007,1,0,-1.32578179545817e-007,1,0,-1.32578179545817e-007,1,0,-1.32578179545817e-007,1,0,0,1,-1.07406572169566e-006,0,1,-8.05550598670379e-007,0,1,-5.37035418801679e-007,0,1,-8.05550598670379e-007,0,-1,-0,0,-1,-0,0,-1,-0,0,-1,-0,1.21021699328594e-007,0,-1,1.21021699328594e-007,0,-1,1.21021699328594e-007,0,-1,
- 1.21021699328594e-007,0,-1,2.83912669374331e-007,6.87270826915665e-008,1,2.25052758651145e-007,6.87270826915665e-008,1,1.6619284792796e-007,6.87270826915665e-008,1,2.25052758651145e-007,6.87270826915665e-008,1,0,-0.726023316383362,-0.687670052051544,1.20814505066846e-007,-0.726023316383362,-0.687670171260834,2.41628981711983e-007,-0.726023316383362,-0.687670171260834,1.20814476645137e-007,-0.726023316383362,-0.687670111656189,-0.709179103374481,0.705028414726257,-5.16543110506973e-008,-0.709179103374481,0.705028355121613,-1.22362985166546e-006,-0.709179103374481,0.705028355121613,-2.39560540649109e-006,-0.709179162979126,0.705028355121613,-1.2236299653523e-006,2.05010280751594e-007,0.726011395454407,-0.687682747840881,2.03213318172857e-007,0.726011395454407,-0.687682747840881,2.0141632717241e-007,0.726011395454407,-0.687682688236237,2.03213318172857e-007,0.726011395454407,-0.687682747840881,0.709273636341095,0.704933345317841,-2.56685598287731e-006,0.709273636341095,0.704933285713196,4.67731410935812e-007,0.709273636341095,0.704933345317841,3.50231903212261e-006,0.709273636341095,0.704933226108551,4.67731410935812e-007,2.2159707668834e-007,-1,0,1.1079853834417e-007,-1,0,0,-1,0,1.1079853834417e-007,-1,0,0,1,-1.71478973243211e-006,0,1,-2.13918610825203e-006,0,1,-2.56358271144563e-006,0,1,-2.13918610825203e-006,1.10793088481387e-007,1,-0,2.76981815261479e-008,1,-0,-5.5396725429091e-008,1,0,2.76981815261479e-008,1,-0,0,1,2.44334296439774e-006,0,1,2.43475210481847e-006,0,1,2.4261612452392e-006,0,1,2.43475210481847e-006,1.40965823902661e-007,-6.8733889690975e-008,-1,7.04829119513306e-008,-6.8733889690975e-008,-1,0,-6.8733889690975e-008,-1,7.04829119513306e-008,-6.8733889690975e-008,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,-0,0,1,-0,3.29675167165533e-008,1,-0,6.59350334331066e-008,1,-0,3.29675167165533e-008,0,1,-5.91802177041245e-007,0,1,2.9589273253805e-007,0,1,1.18358764211735e-006,0,1,2.9589273253805e-007,0,1,0,0,1,-2.95897365276687e-007,0,1,-5.91794730553374e-007,0,1,-2.95897365276687e-007,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,-2.68520238932979e-007,
- 0,1,-5.37040477865958e-007,0,1,-2.68520238932979e-007,1,5.95527112068339e-008,0,1,5.95527112068339e-008,0,1,5.95527112068339e-008,0,1,5.95527112068339e-008,0,1,0,0,1,0,0,1,0,0,1,0,0
- }
- BinormalsW: *256 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementTangent: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *768 {
- a: -0,-1,4.27273931791206e-007,0,-1,3.96754387566034e-007,0,-1,3.66234871762572e-007,0,-1,3.96754387566034e-007,-2.13630187317904e-007,-1,0,-1.3733378523284e-007,-1,0,-6.1037397358632e-008,-1,0,-1.3733378523284e-007,-1,0,-2.7810358460556e-006,-0,1,-9.27002133721544e-007,-0,1,9.27031578612514e-007,-0,1,-9.27002133721544e-007,-0,1,-3.05182545901062e-008,1,0,-3.05182545901062e-008,1,0,-3.05182545901062e-008,1,0,-3.05182545901062e-008,1,0,0,-1,-9.15586966243609e-008,0,-1,-7.62989174063478e-008,0,-1,-6.10391381883346e-008,0,-1,-7.62989174063478e-008,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,-0,-0,1,-0,-0,1,-0,-0,1,-0,-0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,-5.63840956147033e-007,0,1,-2.81920478073516e-007,0,1,0,0,1,-2.81920478073516e-007,0,0,-0,1,0,-0,1,0,-0,1,0,-0,1,1,-0,1.10794793783953e-007,1,-0,1.10794793783953e-007,1,-0,1.10794793783953e-007,1,-0,1.10794793783953e-007,1,1.0607656264483e-007,-1.12758172576832e-007,1,9.27503407410768e-010,-9.85927783858642e-010,1,-1.04221570040863e-007,1.1078630279826e-007,1,9.27503407410768e-010,-9.85927783858642e-010,0.868811964988709,-0.495142132043839,-3.6597532016458e-005,0.868811964988709,-0.495142161846161,-5.49917749594897e-005,0.868811964988709,-0.495142132043839,-7.33860142645426e-005,0.868812024593353,-0.495142102241516,-5.49917749594897e-005,1,0,-0,1,7.53577751311241e-008,1.38508482905308e-007,1,1.50715550262248e-007,2.77016965810617e-007,1,7.53577751311241e-008,1.38508482905308e-007,0.868812203407288,0.495141804218292,7.9537378042005e-005,0.868812143802643,0.495141834020615,5.87935028306674e-005,0.868812143802643,0.495141863822937,7.9537378042005e-005,0.868812143802643,0.495141834020615,0.000100281256891321,1,-0,0,1,1.38490063861241e-008,0,1,2.76980127722481e-008,0,1,1.38490063861241e-008,0,0,-0,1,0,-0,1,0,-0,1,0,-0,1,1,-3.46229689363042e-009,-0,1,-5.19344522942333e-009,0,1,-6.92459334317164e-009,0,1,-5.19344522942333e-009,0,0,0,-1,0,0,-1,0,-0,-1,0,0,-1,-0,-1,5.18833530804841e-007,-0,-1,3.05196095951032e-007,-0,-1,9.15586824135062e-008,-0,-1,3.05196095951032e-007,0,-1,0,
- 0,-1,0,-0,-1,0,0,-1,0,0,-1,-3.66234871762572e-007,0,-1,-3.05195669625391e-007,0,-1,-2.4415646748821e-007,0,-1,-3.05195669625391e-007,1,0,-0,1,0,1.40365609695436e-005,1,0,2.80731219390873e-005,1,0,1.40365609695436e-005,1,2.76579066849081e-005,-0,1,1.37440192702343e-005,-0,1,-1.6986780337902e-007,-0,1,1.37440192702343e-005,-0,-0,5.91799391713721e-007,-1,-0,5.91799391713721e-007,-1,-0,5.91799391713721e-007,-1,-0,5.91799391713721e-007,-1,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,0,0,1,0,0,1,0,0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,-0,-0,1,-0,-0,1,-0,-0,1,-0,-0,-0,5.91789103054907e-007,-1,0,2.95894551527454e-007,-1,0,0,-1,0,2.95894551527454e-007,-1,1,4.77287699141016e-007,0,1,4.77287699141016e-007,0,1,4.77287699141016e-007,0,1,4.77287699141016e-007,0,1,-0,0,1,0,0,1,0,0,1,0,0,0,-1,-1.22078233744105e-007,0,-1,-1.22078233744105e-007,0,-1,-1.22078233744105e-007,0,-1,-1.22078233744105e-007,3.13494012971205e-007,-1,-0,5.95633309785626e-007,-1,-0,8.77772549756628e-007,-1,-0,5.95633309785626e-007,-1,-0,9.2681420937879e-007,-0,1,4.63407104689395e-007,-0,1,-0,-0,1,4.63407104689395e-007,-0,1,-1.83110159923672e-007,1,0,-3.05187626281622e-008,1,0,1.22072634667347e-007,1,0,-3.05187626281622e-008,1,0,0,-1,0,0,-1,-3.05196330430135e-008,0,-1,-6.10392660860271e-008,0,-1,-3.05196330430135e-008,1,0,4.84789438814914e-007,1,0,4.84789438814914e-007,1,0,4.84789438814914e-007,1,0,4.84789438814914e-007,1,-0,-0,1,1.32590017187795e-007,-0,1,2.65180034375589e-007,-0,1,1.32590017187795e-007,-0,1,4.77332093851146e-007,0,1,4.77332093851146e-007,0,1,4.77332093851146e-007,0,1,4.77332093851146e-007,0,1,-0,0,1,0,1.21197075486634e-007,1,0,2.42394150973269e-007,1,0,1.21197075486634e-007,1,0,-2.4204331339206e-007,1,0,-1.2102165669603e-007,1,0,-0,1,0,-1.2102165669603e-007,1,1.32578179545817e-007,-0,1,1.32578179545817e-007,-0,1,1.32578179545817e-007,-0,1,1.32578179545817e-007,-0,0,-1.07406572169566e-006,-1,0,-8.05550598670379e-007,-1,0,-5.37035418801679e-007,-1,0,-8.05550598670379e-007,-1,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,1.21021699328594e-007,1,-0,1.21021699328594e-007,1,-0,1.21021699328594e-007,
- 1,-0,1.21021699328594e-007,1,-1.95124881421753e-014,-2.83912669374331e-007,1,-1.54672180282828e-014,-2.25052758651145e-007,1,-1.14219496084563e-014,-1.6619284792796e-007,1,-1.54672180282828e-014,-2.25052758651145e-007,1,0,0,1,8.77141275168469e-008,8.30805149121261e-008,1,1.75428255033694e-007,1.66161029824252e-007,1,8.77141275168469e-008,8.30805078066987e-008,1.7208577673955e-008,-5.59556809776041e-008,-1,8.48349202442478e-007,-8.82231688592583e-007,-1,1.67948985563271e-006,-1.70850773884013e-006,-1,8.48349202442478e-007,-8.82231688592583e-007,-1,1,-1.4883977428326e-007,1.40982010066182e-007,1,-1.47535160976986e-007,1.39746276772712e-007,1,-1.46230547670712e-007,1.38510515057533e-007,1,-1.47535160976986e-007,1.39746276772712e-007,1.7914755972015e-006,1.83876898063318e-006,1,-3.60877038474428e-007,-3.00412580145348e-007,1,-2.51322967415035e-006,-2.43959425461071e-006,1,-3.60877095317846e-007,-3.00412580145348e-007,1,1,2.2159707668834e-007,0,1,1.1079853834417e-007,0,1,0,0,1,1.1079853834417e-007,0,0,-1.71478973243211e-006,-1,0,-2.13918610825203e-006,-1,0,-2.56358271144563e-006,-1,0,-2.13918610825203e-006,-1,1,-1.10793088481387e-007,-0,1,-2.76981815261479e-008,-0,1,5.5396725429091e-008,-0,1,-2.76981815261479e-008,-0,0,-2.44334296439774e-006,1,0,-2.43475210481847e-006,1,0,-2.4261612452392e-006,1,0,-2.43475210481847e-006,1,1,9.68912941551195e-015,1.40965823902661e-007,1,4.84456470775598e-015,7.04829119513306e-008,1,-0,0,1,4.84456470775598e-015,7.04829119513306e-008,-0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0,0,1,-3.29675167165533e-008,0,1,-6.59350334331066e-008,-0,1,-3.29675167165533e-008,0,1,0,5.91802177041245e-007,1,0,-2.9589273253805e-007,1,0,-1.18358764211735e-006,1,0,-2.9589273253805e-007,1,0,-0,1,0,2.95897365276687e-007,1,0,5.91794730553374e-007,1,0,2.95897365276687e-007,1,0,0,-1,0,0,-1,-0,0,-1,0,0,-1,0,-0,1,0,2.68520238932979e-007,1,0,5.37040477865958e-007,1,0,2.68520238932979e-007,1,-5.95527076541202e-008,1,0,-5.95527076541202e-008,1,0,-5.95527076541202e-008,1,0,-5.95527076541202e-008,1,0,-0,0,-1,-0,0,-1,-0,0,-1,-0,0,-1
- }
- TangentsW: *256 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *472 {
- a: 0.0355523228645325,2.60146403312683,-0.237914741039276,2.60146403312683,-0.237914979457855,2.57247376441956,0.0355525612831116,2.57247376441956,0.0355522632598877,2.48613047599792,-0.237915396690369,2.48613047599792,-0.237914979457855,2.45713901519775,0.0355525612831116,2.45713901519775,0.782871127128601,2.60708498954773,1.07192850112915,2.60708498954773,1.07192921638489,2.64579582214355,0.782871723175049,2.64579582214355,0.782870888710022,2.73652648925781,1.07192873954773,2.73652648925781,1.07192921638489,2.77523565292358,0.782871723175049,2.77523565292358,0.704903364181519,2.89283514022827,0.418213963508606,2.89283466339111,0.418213963508606,2.83818078041077,0.704903364181519,2.8381814956665,0.696022868156433,2.90220880508423,0.427094101905823,2.90220880508423,0.704903602600098,2.74246144294739,0.418214559555054,2.74246072769165,0.418214559555054,2.68780755996704,0.704903602600098,2.68780827522278,0.696022868156433,2.75183629989624,0.427094101905823,2.7518367767334,2.16879105567932,1.40341520309448,2.1687912940979,1.12994611263275,3.22587394714355,1.12994611263275,3.22587466239929,1.40341520309448,3.22587466239929,-0.637564659118652,2.14993095397949,-0.637564778327942,2.14993095397949,-0.926623940467834,3.22587466239929,-0.926623821258545,2.15936088562012,-0.539444446563721,2.15936088562012,-0.265975624322891,2.14993095397949,-0.256098598241806,2.14993071556091,-0.545157551765442,3.21644496917725,-0.265975624322891,3.22587466239929,-0.25609889626503,3.21644520759583,-0.539444327354431,3.22587323188782,-0.545157670974731,2.14993095397949,0.0944275557994843,3.22587466239929,0.0944278612732887,3.22587442398071,0.38111612200737,2.14993095397949,0.381115943193436,3.2164454460144,0.476399749517441,3.21644473075867,0.745327889919281,2.15936326980591,0.745327889919281,2.15936350822449,0.476399600505829,3.22587418556213,0.754208981990814,2.14993119239807,0.75420880317688,2.14993071556091,0.467520952224731,3.22587466239929,0.467521101236343,1.09546315670013,0.347484290599823,2.07196235656738,0.347484320402145,
- 2.07196187973022,0.392531961202621,1.09546327590942,0.392531931400299,3.22587561607361,1.52441465854645,2.16879105567932,1.52441465854645,2.16879105567932,1.49542307853699,3.22587561607361,1.49542307853699,2.1687912940979,1.6172502040863,3.22587537765503,1.61724960803986,3.22587561607361,1.64624166488647,2.16879105567932,1.64624166488647,3.22587513923645,-0.125740677118301,2.14993119239807,-0.125740677118301,2.14993119239807,-0.164451658725739,3.22587537765503,-0.164451628923416,2.14993143081665,-0.0350116789340973,3.22587561607361,-0.035011675208807,3.22587513923645,0.00369880348443985,2.14993119239807,0.00369879603385925,2.2268705368042,2.14262461662292,3.22587561607361,2.14262461662292,3.22587561607361,2.16782474517822,2.22687029838562,2.16782474517822,1.14989805221558,2.87700605392456,2.14890289306641,2.87700653076172,2.14890217781067,2.90220880508423,1.14989757537842,2.90220832824707,0.0409950166940689,-0.393507599830627,0.0409950017929077,-0.438560128211975,1.01749420166016,-0.438560247421265,1.01749432086945,-0.393507421016693,1.14989757537842,2.07953786849976,2.14890217781067,2.07953834533691,2.14890217781067,2.10473823547363,1.14989757537842,2.10473775863647,1.09181773662567,1.26152384281158,2.09082269668579,1.26152384281158,2.09082269668579,1.28672575950623,1.09181761741638,1.28672575950623,2.14993119239807,0.840611219406128,3.22587561607361,0.840611457824707,3.22587561607361,0.895262718200684,2.14993119239807,0.895262718200684,3.22587513923645,1.03993403911591,2.14993119239807,1.03993391990662,2.14993119239807,0.98527991771698,3.22587561607361,0.985279858112335,-0.297797501087189,2.19435977935791,-0.0406187772750854,2.19435977935791,-0.0406178832054138,2.23940658569336,-0.297796487808228,2.23940658569336,-0.297796964645386,2.32574677467346,-0.0406183116137981,2.3257474899292,-0.0406187959015369,2.37079429626465,-0.297797381877899,2.37079453468323,-0.0619983226060867,1.28750395774841,-0.260327100753784,1.2875040769577,-0.260327100753784,1.2623028755188,-0.0619983337819576,1.26230311393738,-0.0406179428100586,
- 1.39904916286469,-0.238946422934532,1.39904928207397,-0.238947078585625,1.37384831905365,-0.0406183004379272,1.37384819984436,-0.0619985610246658,1.06441366672516,-0.260327160358429,1.06441366672516,-0.260327100753784,1.03921246528625,-0.0619983449578285,1.03921234607697,-0.059478759765625,1.17595982551575,-0.257807374000549,1.17595994472504,-0.257807284593582,1.15075838565826,-0.0594785213470459,1.15075838565826,-0.297855347394943,1.9766206741333,-0.297854393720627,1.93156743049622,-0.0406178832054138,1.93156743049622,-0.0406189560890198,1.9766206741333,-0.297796428203583,2.10801577568054,-0.297796726226807,2.06296348571777,-0.0405605100095272,2.06296348571777,-0.0405601486563683,2.10801553726196,-0.0431376956403255,1.7336790561676,-0.262010753154755,1.7336790561676,-0.26201069355011,1.70847856998444,-0.0431380905210972,1.70847845077515,-0.0406189560890198,1.84522449970245,-0.259490609169006,1.84522426128387,-0.259490609169006,1.82002353668213,-0.0406189560890198,1.82002365589142,1.09546315670013,0.610266506671906,2.07196235656738,0.867445528507233,1.09546315670013,0.867445170879364,1.09546327590942,0.00396353006362915,2.07196259498596,0.00396361947059631,2.07196235656738,0.261142253875732,1.09546303749084,0.261142194271088,1.09546315670013,0.478874951601028,2.07196235656738,0.523922145366669,1.09546315670013,0.523922085762024,1.09546315670013,-0.302874833345413,2.07196235656738,-0.0823803246021271,1.09546315670013,-0.0823804140090942,1.09546315670013,-0.832798779010773,2.07196235656738,-0.832798540592194,2.07196235656738,-0.612304091453552,1.09546315670013,-0.612304449081421,1.09546327590942,-0.414417535066605,2.07196187973022,-0.38921782374382,1.09546327590942,-0.38921782374382,3.23191547393799,2.01816630363464,2.22687005996704,1.7390763759613,3.22587466239929,1.7390763759613,3.22587418556213,2.45768404006958,2.22686982154846,2.45768404006958,2.2268705368042,2.25935530662537,3.22587418556213,2.25935530662537,3.22587442398071,2.74449825286865,2.22687005996704,2.54617094993591,3.22587418556213,2.54617094993591,2.14890193939209,
- 2.79066348075867,1.14989733695984,2.79066348075867,1.1498966217041,2.59233546257019,2.14890122413635,2.59233546257019,1.0174947977066,-0.669386744499207,0.0409955978393555,-0.926623404026031,1.0174947977066,-0.926623284816742,0.0409959331154823,-0.575545430183411,1.01749503612518,-0.575546264648438,0.0409960746765137,-0.0443264245986938,0.0409958064556122,-0.301562279462814,1.0174947977066,-0.301562339067459,1.01749491691589,-0.0443264245986938,2.14890241622925,2.50095200538635,1.14989757537842,2.30262422561646,2.14890146255493,2.3026237487793,2.14890122413635,1.99319553375244,1.14989650249481,1.99319529533386,1.14989757537842,1.79486680030823,2.14890217781067,1.79486680030823,1.14989757537842,2.19360113143921,2.14890146255493,2.19360113143921,2.09082269668579,1.70348405838013,1.09181761741638,1.48461174964905,2.09082269668579,1.48461198806763,2.07196187973022,1.17518055438995,1.07295775413513,1.17518043518066,1.07295751571655,0.956308424472809,2.07196187973022,0.956308543682098,1.09181773662567,1.37558925151825,2.09082269668579,1.37558913230896,2.07196235656738,0.610266923904419,2.07196235656738,0.478875160217285,2.07196235656738,-0.302874326705933,2.07196259498596,-0.414417535066605,2.22033643722534,2.01820516586304,2.22686982154846,2.05361127853394,3.22587490081787,2.05361151695251,2.22687029838562,2.74449825286865,2.22687029838562,2.86070966720581,3.22587466239929,2.86070966720581,0.0409955978393555,-0.669386863708496,1.0174947977066,-0.531687498092651,0.0409956090152264,-0.531687200069427,1.14989805221558,2.50095248222351,1.14989757537842,2.21628165245056,2.14890098571777,2.21628141403198,1.09181773662567,1.70348405838013,1.09181773662567,1.39827156066895,2.09082269668579,1.39827144145966,0.609924256801605,0.524131536483765,0.60992419719696,0.472473651170731,1.06192004680634,0.472473680973053,1.06192004680634,0.524131536483765,1.06192004680634,0.622202157974243,0.609924256801605,0.622202157974243,0.609924256801605,0.570544242858887,1.06192016601563,0.570544242858887,-0.939824461936951,0.429455757141113,-0.939824461936951,
- 0.377797842025757,1.06192004680634,0.377797961235046,1.06192004680634,0.429455876350403
- }
- UVIndex: *256 {
- a: 144,205,145,146,151,206,152,153,108,109,110,111,56,57,58,59,147,148,149,150,28,29,30,31,60,61,62,63,0,1,2,3,64,65,66,67,4,5,6,7,32,33,34,35,42,36,39,43,36,37,38,39,37,40,41,38,40,42,43,41,68,69,70,71,8,9,10,11,72,73,74,75,12,13,14,15,207,155,156,154,161,208,162,163,160,157,158,159,166,164,209,165,164,211,210,209,116,117,118,119,77,78,79,76,169,170,167,168,172,173,171,212,171,214,213,212,124,125,126,127,80,81,82,83,176,177,174,175,178,215,179,180,217,181,182,216,132,133,134,135,84,85,86,87,183,184,185,186,189,187,218,188,194,195,220,219,89,90,91,88,192,193,190,191,198,196,221,197,222,203,204,223,140,141,142,143,93,94,95,92,202,199,200,201,44,45,46,47,50,49,52,53,20,21,17,16,48,51,54,55,26,27,23,22,96,97,98,99,16,17,18,19,100,101,102,103,22,23,24,25,48,49,50,51,104,105,106,107,224,225,226,227,112,113,114,115,120,121,122,123,128,129,130,131,136,137,138,139,232,233,234,235,228,229,230,231
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *132 {
- 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
- }
- }
- LayerElementMaterial: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "AllSame"
- ReferenceInformationType: "IndexToDirect"
- Materials: *1 {
- a: 0
- }
- }
- Layer: 0 {
- Version: 100
- LayerElement: {
- Type: "LayerElementNormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementBinormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementTangent"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementMaterial"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementSmoothing"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementUV"
- TypedIndex: 0
- }
- }
- }
- Geometry: 2399509389024, "Geometry::", "Mesh" {
- Vertices: *24 {
- a: 101.732421875,201.36653137207,0.74090576171875,101.732421875,12.308910369873,0.74090576171875,93.01123046875,201.36653137207,0.74090576171875,93.01123046875,12.308910369873,0.74090576171875,101.732421875,12.308910369873,50.53271484375,101.732421875,201.36653137207,50.53271484375,93.01123046875,12.308910369873,50.53271484375,93.01123046875,201.36653137207,50.53271484375
- }
- PolygonVertexIndex: *24 {
- a: 5,4,1,-1,7,6,4,-6,2,7,5,-1,3,2,0,-2,2,3,6,-8,6,3,1,-5
- }
- Edges: *12 {
- a: 2,1,17,12,11,15,3,5,7,8,0,4
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByVertice"
- ReferenceInformationType: "Direct"
- Normals: *24 {
- a: 0.983989596366882,0.0453912802040577,-0.172348856925964,0.983989596366882,-0.0453912802040577,-0.172348856925964,-0.983989596366882,0.0453912802040577,-0.172348856925964,-0.983989596366882,-0.0453912802040577,-0.172348856925964,0.983989596366882,-0.0453912802040577,0.172348856925964,0.983989596366882,0.0453912802040577,0.172348856925964,-0.983989596366882,-0.0453912802040577,0.172348856925964,-0.983989596366882,0.0453912802040577,0.172348856925964
- }
- NormalsW: *8 {
- a: 1,1,1,1,1,1,1,1
- }
- }
- LayerElementBinormal: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *72 {
- a: 0.172526702284813,-4.21423408170085e-007,-0.985004842281342,0.172526672482491,-3.89758440633159e-007,-0.985004842281342,-0.172526702284813,-3.60887440820079e-007,-0.985004842281342,-0.172526672482491,-3.89758440633159e-007,-0.985004842281342,0.172526687383652,-3.67872381445977e-008,0.985004842281342,0.172526687383652,-2.42143833872888e-008,0.985004842281342,0.172526687383652,-1.07102087198996e-008,-0.985004842281342,0.172526687383652,-2.42143833872888e-008,-0.985004842281342,0.0460808165371418,0.998937785625458,1.28522529507791e-007,0.0460808463394642,0.998937785625458,4.19095194104102e-008,0.0460808463394642,-0.998937785625458,-4.28408419850257e-008,0.0460808463394642,-0.998937785625458,4.19095194104102e-008,0.172526687383652,5.12227371629592e-009,-0.985004842281342,0.172526687383652,6.05359584682219e-009,-0.985004842281342,0.172526687383652,5.12227371629592e-009,0.985004842281342,0.172526687383652,6.05359584682219e-009,0.985004842281342,-0.172526687383652,-9.03382755268467e-008,0.985004842281342,-0.172526687383652,-7.49714601511187e-008,0.985004842281342,0.172526687383652,-6.05359602445787e-008,0.985004842281342,0.172526687383652,-7.49714601511187e-008,0.985004842281342,0.0460808388888836,-0.998937785625458,-9.31322685637781e-010,0.0460808388888836,-0.998937785625458,9.31322685637781e-010,0.0460808388888836,0.998937785625458,-9.31322685637781e-010,0.0460808388888836,0.998937785625458,9.31322685637781e-010
- }
- BinormalsW: *24 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementTangent: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *72 {
- a: 0.04471056163311,-0.998969376087189,0.00783162284642458,-0.0447106994688511,-0.998969376087189,-0.00783082284033298,-0.0447105728089809,-0.998969376087189,0.0078315632417798,0.0447106994688511,-0.998969376087189,-0.00783082284033298,-0.0447106398642063,-0.998969376087189,0.00783117115497589,0.0447106324136257,-0.998969376087189,-0.00783123169094324,-0.044710636138916,-0.998969376087189,-0.00783119723200798,0.0447106324136257,-0.998969376087189,0.00783123169094324,-0.172165781259537,0.00794184952974319,0.985035955905914,0.172165781259537,-0.00794202275574207,0.985035955905914,-0.172165766358376,-0.00794202275574207,0.985035955905914,0.172165781259537,0.00794202275574207,0.985035955905914,-0.044710636138916,0.998969376087189,-0.00783120281994343,0.0447106324136257,0.998969376087189,0.00783121306449175,-0.044710636138916,0.998969376087189,0.00783120281994343,0.0447106324136257,0.998969376087189,-0.00783121306449175,-0.0447106212377548,-0.998969376087189,-0.00783129688352346,0.0447106473147869,-0.998969376087189,0.00783113390207291,0.0447106249630451,-0.998969376087189,-0.00783126708120108,-0.0447106473147869,-0.998969376087189,0.00783113390207291,-0.172165781259537,-0.00794197898358107,-0.985035955905914,0.172165781259537,0.00794197898358107,-0.985035955905914,-0.172165781259537,0.00794197898358107,-0.985035955905914,0.172165781259537,-0.00794197898358107,-0.985035955905914
- }
- TangentsW: *24 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *48 {
- a: 1.09546315670013,0.610266506671906,2.07196235656738,0.610266923904419,2.07196235656738,0.867445528507233,1.09546315670013,0.867445170879364,1.09546315670013,0.478874951601028,2.07196235656738,0.478875160217285,2.07196235656738,0.523922145366669,1.09546315670013,0.523922085762024,-0.297796964645386,2.32574677467346,-0.0406183116137981,2.3257474899292,-0.0406187959015369,2.37079429626465,-0.297797381877899,2.37079453468323,1.09546315670013,0.347484290599823,2.07196235656738,0.347484320402145,2.07196187973022,0.392531961202621,1.09546327590942,0.392531931400299,1.09546327590942,0.00396353006362915,2.07196259498596,0.00396361947059631,2.07196235656738,0.261142253875732,1.09546303749084,0.261142194271088,-0.297797501087189,2.19435977935791,-0.0406187772750854,2.19435977935791,-0.0406178832054138,2.23940658569336,-0.297796487808228,2.23940658569336
- }
- UVIndex: *24 {
- a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *12 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementMaterial: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "AllSame"
- ReferenceInformationType: "IndexToDirect"
- Materials: *1 {
- a: 0
- }
- }
- Layer: 0 {
- Version: 100
- LayerElement: {
- Type: "LayerElementNormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementBinormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementTangent"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementMaterial"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementSmoothing"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementUV"
- TypedIndex: 0
- }
- }
- }
- Geometry: 2399509375712, "Geometry::", "Mesh" {
- Vertices: *24 {
- a: -102.32958984375,201.36653137207,52.23876953125,102.32958984375,201.36653137207,52.23876953125,102.32958984375,201.36653137207,-0.70654296875,-102.32958984375,201.36653137207,-0.70654296875,104.1552734375,215.514297485352,-1.81256103515625,-104.1552734375,215.514297485352,-1.81256103515625,-104.1552734375,215.514297485352,54.1512451171875,104.1552734375,215.514297485352,54.1512451171875
- }
- PolygonVertexIndex: *24 {
- a: 0,3,2,-2,4,5,6,-8,3,5,4,-3,0,6,5,-4,1,7,6,-1,2,4,7,-2
- }
- Edges: *12 {
- a: 3,2,1,0,10,8,4,12,5,16,6,7
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByVertice"
- ReferenceInformationType: "Direct"
- Normals: *24 {
- a: -0.0706464573740959,-0.961124002933502,0.26692658662796,0.0706464573740959,-0.961124002933502,0.26692658662796,0.0693714842200279,-0.960042655467987,-0.271119117736816,-0.0693714767694473,-0.960042655467987,-0.271119117736816,0.0626605823636055,0.971276342868805,-0.22955559194088,-0.0626605749130249,0.971276342868805,-0.22955559194088,-0.0610816478729248,0.970653891563416,0.232593953609467,0.0610816478729248,0.970653891563416,0.232593953609467
- }
- NormalsW: *8 {
- a: 1,1,1,1,1,1,1,1
- }
- }
- LayerElementBinormal: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *72 {
- a: 0,0.267595201730728,0.963531494140625,0,-0.271773874759674,0.962361216545105,0,-0.271773874759674,0.962361216545105,0,0.267595201730728,0.963531494140625,1.07102110291635e-007,-0.230007618665695,-0.973188877105713,1.07102110291635e-007,-0.230007603764534,-0.973188877105713,1.08964741230011e-007,0.233029097318649,-0.972469806671143,1.08033418655396e-007,0.233029097318649,-0.972469806671143,1.11758708953857e-008,-0.271773874759674,0.962361216545105,4.6566133171666e-009,-0.230007603764534,-0.973188877105713,4.6566133171666e-009,-0.230007603764534,-0.973188877105713,1.30385160446167e-008,-0.271773874759674,0.962361216545105,-0.997309505939484,0.0733062401413918,0,0.998025953769684,0.0628041252493858,9.31322685637781e-010,0.997925519943237,0.0643798112869263,0,-0.997399568557739,0.072070837020874,-1.86264537127556e-009,2.60770320892334e-008,0.267595201730728,0.963531494140625,8.38190317153931e-009,0.233029097318649,-0.972469806671143,9.31322574615479e-009,0.233029097318649,-0.972469806671143,3.16649675369263e-008,0.267595171928406,0.963531494140625,0.997399568557739,0.0720708444714546,-1.86264537127556e-009,-0.997925519943237,0.0643798187375069,0,-0.998025953769684,0.0628041252493858,9.31322685637781e-010,0.997309505939484,0.0733062401413918,0
- }
- BinormalsW: *24 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementTangent: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *72 {
- a: 0.99750143289566,-0.0680700838565826,0.0189046524465084,0.997591018676758,-0.0667604133486748,-0.0188533551990986,0.997591018676758,0.0667604207992554,0.0188533570617437,0.99750143289566,0.0680700838565826,-0.0189046524465084,0.9980348944664,-0.0609805509448051,0.0144125139340758,0.9980348944664,0.0609805919229984,-0.0144123025238514,0.998132884502411,0.0594000332057476,0.0142339067533612,0.998132884502411,-0.0594000853598118,-0.0142336962744594,0.997591018676758,-0.0667604133486748,-0.0188533663749695,0.9980348944664,0.0609805695712566,-0.0144124031066895,0.9980348944664,-0.0609805732965469,0.0144124133512378,0.997591018676758,0.066760428249836,0.0188533458858728,0.0195673834532499,0.266208410263062,0.963716864585876,0.0146078579127789,-0.232134774327278,0.972573935985565,-0.0147787434980273,0.229079350829124,0.973295569419861,-0.0195397809147835,-0.270414054393768,0.962545812129974,0.99750143289566,0.068070076406002,-0.0189046766608953,0.998132884502411,-0.05940006300807,-0.0142337940633297,0.998132884502411,0.0594000592827797,0.014233810827136,0.99750143289566,-0.0680700913071632,0.018904622644186,-0.0195397827774286,0.270414054393768,-0.962545812129974,-0.0147787453606725,-0.229079350829124,-0.973295569419861,0.0146078579127789,0.232134774327278,-0.972573935985565,0.0195673834532499,-0.266208410263062,-0.963716864585876
- }
- TangentsW: *24 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *48 {
- a: 2.16879105567932,1.40341520309448,2.1687912940979,1.12994611263275,3.22587394714355,1.12994611263275,3.22587466239929,1.40341520309448,3.22587466239929,-0.637564659118652,2.14993095397949,-0.637564778327942,2.14993095397949,-0.926623940467834,3.22587466239929,-0.926623821258545,-0.312416315078735,0.400715112686157,-0.321008741855621,0.334130108356476,0.659383356571198,0.334130138158798,0.650790870189667,0.40071514248848,0.650382876396179,0.510961353778839,0.659383535385132,0.577546358108521,0.395995676517487,0.577546358108521,0.401201009750366,0.510961353778839,0.650791168212891,0.422637760639191,0.659383535385132,0.48922273516655,-0.321008563041687,0.489222645759583,-0.312416076660156,0.422637701034546,0.654178142547607,0.599285006523132,0.659383535385132,0.665870070457459,0.395995676517487,0.665870070457459,0.404996275901794,0.599285006523132
- }
- UVIndex: *24 {
- a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *12 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementMaterial: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "AllSame"
- ReferenceInformationType: "IndexToDirect"
- Materials: *1 {
- a: 0
- }
- }
- Layer: 0 {
- Version: 100
- LayerElement: {
- Type: "LayerElementNormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementBinormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementTangent"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementMaterial"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementSmoothing"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementUV"
- TypedIndex: 0
- }
- }
- }
- Geometry: 2399509364448, "Geometry::", "Mesh" {
- Vertices: *24 {
- a: 2.439453125,201.36653137207,4.51971435546875,2.439453125,12.308910369873,4.51971435546875,-2.439453125,201.36653137207,4.51971435546875,-2.439453125,12.308910369873,4.51971435546875,2.439453125,12.308910369873,47.2091064453125,2.439453125,201.36653137207,47.2091064453125,-2.439453125,12.308910369873,47.2091064453125,-2.439453125,201.36653137207,47.2091064453125
- }
- PolygonVertexIndex: *24 {
- a: 4,1,0,-6,7,6,4,-6,7,2,3,-7,0,2,7,-6,1,3,2,-1,1,4,6,-4
- }
- Edges: *12 {
- a: 1,0,10,9,2,5,7,8,3,4,12,16
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByVertice"
- ReferenceInformationType: "Direct"
- Normals: *24 {
- a: 0.993206024169922,0.0256311222910881,-0.113512016832829,0.993206024169922,-0.0256311222910881,-0.113512016832829,-0.993206024169922,0.0256311222910881,-0.113512016832829,-0.993206024169922,-0.0256311222910881,-0.113512016832829,0.993206024169922,-0.0256311222910881,0.113512016832829,0.993206024169922,0.0256311222910881,0.113512016832829,-0.993206024169922,-0.0256311222910881,0.113512016832829,-0.993206024169922,0.0256311222910881,0.113512016832829
- }
- NormalsW: *8 {
- a: 1,1,1,1,1,1,1,1
- }
- }
- LayerElementBinormal: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *72 {
- a: 0.113549306988716,-5.15487045049667e-007,-0.993532419204712,-0.113549329340458,-3.03145498037338e-007,-0.993532419204712,-0.113549321889877,-9.08039510250092e-008,-0.993532419204712,0.113549329340458,-3.03145498037338e-007,-0.993532419204712,0.113549321889877,0,0.993532419204712,0.113549321889877,0,0.993532419204712,0.113549321889877,0,-0.993532419204712,0.113549321889877,0,-0.993532419204712,0.113549314439297,-3.63914296030998e-007,0.993532419204712,-0.113549329340458,-3.03145498037338e-007,0.993532419204712,-0.113549314439297,-2.42609530687332e-007,0.993532419204712,0.113549329340458,-3.03145498037338e-007,0.993532419204712,0.0257978606969118,-0.999667167663574,2.32830615898294e-010,0.0257978588342667,0.999667167663574,6.98491819939306e-010,0.0257978606969118,0.999667167663574,1.62981428353248e-009,0.0257978588342667,-0.999667167663574,6.98491819939306e-010,0.113549321889877,6.75208866596222e-009,0.993532419204712,0.113549321889877,6.75208866596222e-009,-0.993532419204712,0.113549321889877,6.75208866596222e-009,-0.993532419204712,0.113549321889877,6.75208866596222e-009,0.993532419204712,0.0257978606969118,0.999667167663574,2.32830615898294e-010,0.0257978606969118,0.999667167663574,-2.32830615898294e-010,0.0257978606969118,-0.999667167663574,2.32830615898294e-010,0.0257978606969118,-0.999667167663574,-2.32830615898294e-010
- }
- BinormalsW: *24 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementTangent: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *72 {
- a: -0.0254654102027416,-0.999671459197998,-0.00290988432243466,-0.0254653170704842,-0.999671459197998,0.00291069783270359,0.0254653617739677,-0.999671459197998,-0.00291030621156096,0.0254653170704842,-0.999671459197998,0.00291069783270359,-0.0254653505980968,-0.999671459197998,0.0029103965498507,0.0254653505980968,-0.999671459197998,-0.0029103965498507,-0.0254653505980968,-0.999671459197998,-0.0029103965498507,0.0254653505980968,-0.999671459197998,0.0029103965498507,-0.0254653934389353,-0.999671459197998,0.00291003496386111,-0.0254653170704842,-0.999671459197998,-0.00291069783270359,0.0254653785377741,-0.999671459197998,0.00291015533730388,0.0254653170704842,-0.999671459197998,-0.00291069783270359,0.113474242389202,0.00292836758308113,0.993536651134491,-0.113474242389202,0.00292836665175855,0.993536651134491,0.113474242389202,-0.00292836921289563,0.993536651134491,-0.113474242389202,-0.00292836665175855,0.993536651134491,0.0254653505980968,0.999671459197998,-0.00291040330193937,-0.025465352460742,0.999671459197998,-0.00291038979776204,0.0254653505980968,0.999671459197998,0.00291040330193937,-0.025465352460742,0.999671459197998,0.00291038979776204,-0.113474242389202,0.00292836758308113,-0.993536651134491,0.113474242389202,-0.00292836758308113,-0.993536651134491,-0.113474242389202,-0.00292836758308113,-0.993536651134491,0.113474242389202,0.00292836758308113,-0.993536651134491
- }
- TangentsW: *24 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *48 {
- a: 2.07196235656738,-0.302874326705933,2.07196235656738,-0.0823803246021271,1.09546315670013,-0.0823804140090942,1.09546315670013,-0.302874833345413,1.09546327590942,-0.414417535066605,2.07196259498596,-0.414417535066605,2.07196187973022,-0.38921782374382,1.09546327590942,-0.38921782374382,1.09546315670013,-0.612304449081421,1.09546315670013,-0.832798779010773,2.07196235656738,-0.832798540592194,2.07196235656738,-0.612304091453552,0.609924256801605,0.524131536483765,0.60992419719696,0.472473651170731,1.06192004680634,0.472473680973053,1.06192004680634,0.524131536483765,-0.939824461936951,0.429455757141113,-0.939824461936951,0.377797842025757,1.06192004680634,0.377797961235046,1.06192004680634,0.429455876350403,1.06192004680634,0.622202157974243,0.609924256801605,0.622202157974243,0.609924256801605,0.570544242858887,1.06192016601563,0.570544242858887
- }
- UVIndex: *24 {
- a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *12 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementMaterial: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "AllSame"
- ReferenceInformationType: "IndexToDirect"
- Materials: *1 {
- a: 0
- }
- }
- Layer: 0 {
- Version: 100
- LayerElement: {
- Type: "LayerElementNormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementBinormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementTangent"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementMaterial"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementSmoothing"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementUV"
- TypedIndex: 0
- }
- }
- }
- Geometry: 2399509376224, "Geometry::", "Mesh" {
- Vertices: *24 {
- a: 92.77734375,120.153709411621,6.4730224609375,-92.77783203125,120.153709411621,6.4730224609375,92.77734375,125.032806396484,6.4730224609375,-92.77783203125,125.032806396484,6.4730224609375,-92.77783203125,120.153709411621,45.472412109375,92.77734375,120.153709411621,45.472412109375,-92.77783203125,125.032806396484,45.472412109375,92.77734375,125.032806396484,45.472412109375
- }
- PolygonVertexIndex: *24 {
- a: 0,5,4,-2,5,7,6,-5,2,7,5,-1,2,0,1,-4,6,7,2,-4,6,3,1,-5
- }
- Edges: *12 {
- a: 2,19,11,14,6,0,8,4,1,5,3,15
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByVertice"
- ReferenceInformationType: "Direct"
- Normals: *24 {
- a: 0.0260823164135218,-0.991927266120911,-0.124097064137459,-0.0260823164135218,-0.991927266120911,-0.124097064137459,0.0260823164135218,0.991927266120911,-0.124097064137459,-0.0260823164135218,0.991927266120911,-0.124097064137459,-0.0260823164135218,-0.991927266120911,0.124097064137459,0.0260823164135218,-0.991927266120911,0.124097064137459,-0.0260823164135218,0.991927266120911,0.124097064137459,0.0260823164135218,0.991927266120911,0.124097064137459
- }
- NormalsW: *8 {
- a: 1,1,1,1,1,1,1,1
- }
- }
- LayerElementBinormal: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *72 {
- a: 0,-0.124139294028282,0.992264807224274,-1.08717940747738e-005,0.124139010906219,0.992264866828918,-1.08641106635332e-005,0.124139569699764,0.992264747619629,-1.4517920135404e-005,-0.124138914048672,0.992264866828918,-1.08717940747738e-005,0.124139010906219,0.992264866828918,-1.77836022885458e-006,0.124139338731766,-0.992264807224274,2.18860787271069e-008,0.124139294028282,-0.992264807224274,-1.08641106635332e-005,0.124139569699764,0.992264747619629,-0.999654531478882,0.0262855049222708,1.58324837684631e-008,-0.999654531478882,0.0262855011969805,1.55996531248093e-008,0.999654531478882,0.0262855049222708,1.58324837684631e-008,0.999654531478882,0.0262855011969805,1.55996531248093e-008,0,-0.124139294028282,-0.992264807224274,0,-0.124139294028282,0.992264807224274,0,-0.124139294028282,0.992264807224274,0,-0.124139294028282,-0.992264807224274,0,0.124139294028282,-0.992264807224274,0,0.124139294028282,-0.992264807224274,0,-0.124139294028282,-0.992264807224274,0,-0.124139294028282,-0.992264807224274,0.999654531478882,0.0262855049222708,-1.58324837684631e-008,0.999654531478882,0.0262855030596256,7.6834112405777e-009,-0.999654531478882,0.0262854993343353,3.11993062496185e-008,-0.999654531478882,0.0262855030596256,7.6834112405777e-009
- }
- BinormalsW: *24 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementTangent: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *72 {
- a: 0.999659895896912,0.0258805695921183,0.00323784095235169,0.999659776687622,0.0258819162845612,-0.00322704925201833,0.999659776687622,-0.0258792173117399,0.00324862427078187,0.999659895896912,-0.0258823726326227,-0.00322343036532402,0.999659776687622,0.0258819162845612,-0.00322704925201833,0.999659895896912,-0.0258803479373455,-0.00323960604146123,0.999659895896912,0.025880565866828,0.00323786260560155,0.999659776687622,-0.0258792173117399,0.00324862427078187,-0.00326196919195354,-0.124054186046124,-0.992270112037659,0.00326193775981665,0.124054193496704,-0.992270112037659,0.00326196919195354,-0.124054186046124,-0.992270112037659,-0.00326193775981665,0.124054193496704,-0.992270112037659,0.999659895896912,-0.0258805695921183,0.00323784095235169,0.999659895896912,0.0258805695921183,0.00323784095235169,0.999659895896912,-0.0258805695921183,-0.00323784095235169,0.999659895896912,0.0258805695921183,-0.00323784095235169,0.999659895896912,0.0258805695921183,0.00323784095235169,0.999659895896912,-0.0258805695921183,-0.00323784095235169,0.999659895896912,-0.0258805695921183,0.00323784095235169,0.999659895896912,0.0258805695921183,-0.00323784095235169,0.00326196919195354,-0.124054186046124,0.992270112037659,-0.00326196127571166,0.124054193496704,0.992270112037659,-0.00326192216016352,-0.124054193496704,0.992270112037659,0.00326196127571166,0.124054193496704,0.992270112037659
- }
- TangentsW: *24 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *44 {
- a: 3.22587466239929,1.7390763759613,3.23191547393799,2.01816630363464,2.22033643722534,2.01820516586304,2.22687005996704,1.7390763759613,3.22587490081787,2.05361151695251,2.22686982154846,2.05361127853394,-0.0406179428100586,1.39904916286469,-0.238946422934532,1.39904928207397,-0.238947078585625,1.37384831905365,-0.0406183004379272,1.37384819984436,3.22587561607361,2.14262461662292,3.22587561607361,2.16782474517822,2.22687029838562,2.16782474517822,2.2268705368042,2.14262461662292,2.2268705368042,2.25935530662537,3.22587418556213,2.25935530662537,3.22587418556213,2.45768404006958,2.22686982154846,2.45768404006958,-0.0619983226060867,1.28750395774841,-0.260327100753784,1.2875040769577,-0.260327100753784,1.2623028755188,-0.0619983337819576,1.26230311393738
- }
- UVIndex: *24 {
- a: 0,1,2,3,1,4,5,2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *12 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementMaterial: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "AllSame"
- ReferenceInformationType: "IndexToDirect"
- Materials: *1 {
- a: 0
- }
- }
- Layer: 0 {
- Version: 100
- LayerElement: {
- Type: "LayerElementNormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementBinormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementTangent"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementMaterial"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementSmoothing"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementUV"
- TypedIndex: 0
- }
- }
- }
- Geometry: 2399509379808, "Geometry::", "Mesh" {
- Vertices: *24 {
- a: 92.77734375,159.540344238281,6.4730224609375,-92.77783203125,159.540344238281,6.4730224609375,92.77734375,164.419448852539,6.4730224609375,-92.77783203125,164.419448852539,6.4730224609375,-92.77783203125,159.540344238281,45.472412109375,92.77734375,159.540344238281,45.472412109375,-92.77783203125,164.419448852539,45.472412109375,92.77734375,164.419448852539,45.472412109375
- }
- PolygonVertexIndex: *24 {
- a: 1,0,5,-5,5,7,6,-5,2,7,5,-1,3,2,0,-2,6,7,2,-4,6,3,1,-5
- }
- Edges: *12 {
- a: 3,19,11,15,6,1,8,4,2,5,0,12
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByVertice"
- ReferenceInformationType: "Direct"
- Normals: *24 {
- a: 0.0260823592543602,-0.991927266120911,-0.124097064137459,-0.0260823592543602,-0.991927266120911,-0.124097064137459,0.0260823592543602,0.991927266120911,-0.124097064137459,-0.0260823592543602,0.991927266120911,-0.124097064137459,-0.0260823592543602,-0.991927266120911,0.124097064137459,0.0260823592543602,-0.991927266120911,0.124097064137459,-0.0260823592543602,0.991927266120911,0.124097064137459,0.0260823592543602,0.991927266120911,0.124097064137459
- }
- NormalsW: *8 {
- a: 1,1,1,1,1,1,1,1
- }
- }
- LayerElementBinormal: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *72 {
- a: 0,-0.124139294028282,0.992264807224274,0,-0.124139294028282,0.992264807224274,0,0.124139294028282,0.992264807224274,0,0.124139294028282,0.992264807224274,0,0.124139294028282,0.992264807224274,0,0.124139294028282,-0.992264807224274,0,0.124139294028282,-0.992264807224274,0,0.124139294028282,0.992264807224274,-0.999654531478882,0.0262855459004641,1.55996531248093e-008,-0.999654531478882,0.0262855440378189,7.91624188423157e-009,0.999654531478882,0.0262855440378189,0,0.999654531478882,0.0262855440378189,7.91624188423157e-009,6.1932944106502e-008,-0.124139294028282,-0.992264807224274,6.1932944106502e-008,-0.124139294028282,-0.992264807224274,6.1932944106502e-008,-0.124139294028282,0.992264807224274,6.1932944106502e-008,-0.124139294028282,0.992264807224274,0,0.124139294028282,-0.992264807224274,0,0.124139294028282,-0.992264807224274,0,-0.124139294028282,-0.992264807224274,0,-0.124139294028282,-0.992264807224274,0.999654531478882,0.0262855440378189,0,0.999654531478882,0.0262855440378189,-7.91624188423157e-009,-0.999654531478882,0.0262855459004641,-1.55996531248093e-008,-0.999654531478882,0.0262855440378189,-7.91624188423157e-009
- }
- BinormalsW: *24 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementTangent: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *72 {
- a: 0.999659895896912,-0.0258806124329567,-0.00323784630745649,0.999659895896912,0.0258806124329567,0.00323784630745649,0.999659895896912,0.0258806124329567,-0.00323784630745649,0.999659895896912,-0.0258806124329567,0.00323784630745649,0.999659895896912,0.0258806124329567,-0.00323784630745649,0.999659895896912,-0.0258806124329567,-0.00323784630745649,0.999659895896912,0.0258806124329567,0.00323784630745649,0.999659895896912,-0.0258806124329567,0.00323784630745649,-0.00326197454705834,-0.124054186046124,-0.992270112037659,0.00326195103116333,0.124054193496704,-0.992270112037659,0.00326195894740522,-0.124054193496704,-0.992270112037659,-0.00326195103116333,0.124054193496704,-0.992270112037659,0.999659895896912,0.0258806198835373,-0.00323778484016657,0.999659895896912,-0.0258806031197309,0.00323790754191577,0.999659895896912,0.0258806198835373,0.00323778484016657,0.999659895896912,-0.0258806031197309,-0.00323790754191577,0.999659895896912,0.0258806124329567,0.00323784630745649,0.999659895896912,-0.0258806124329567,-0.00323784630745649,0.999659895896912,-0.0258806124329567,0.00323784630745649,0.999659895896912,0.0258806124329567,-0.00323784630745649,0.00326195894740522,-0.124054193496704,0.992270112037659,-0.00326195103116333,0.124054193496704,0.992270112037659,-0.00326197454705834,-0.124054186046124,0.992270112037659,0.00326195103116333,0.124054193496704,0.992270112037659
- }
- TangentsW: *24 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *44 {
- a: 2.22687005996704,2.54617094993591,3.22587418556213,2.54617094993591,3.22587442398071,2.74449825286865,2.22687029838562,2.74449825286865,3.22587466239929,2.86070966720581,2.22687029838562,2.86070966720581,-0.059478759765625,1.17595982551575,-0.257807374000549,1.17595994472504,-0.257807284593582,1.15075838565826,-0.0594785213470459,1.15075838565826,1.14989805221558,2.87700605392456,2.14890289306641,2.87700653076172,2.14890217781067,2.90220880508423,1.14989757537842,2.90220832824707,1.1498966217041,2.59233546257019,2.14890122413635,2.59233546257019,2.14890193939209,2.79066348075867,1.14989733695984,2.79066348075867,-0.0619985610246658,1.06441366672516,-0.260327160358429,1.06441366672516,-0.260327100753784,1.03921246528625,-0.0619983449578285,1.03921234607697
- }
- UVIndex: *24 {
- a: 0,1,2,3,2,4,5,3,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *12 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementMaterial: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "AllSame"
- ReferenceInformationType: "IndexToDirect"
- Materials: *1 {
- a: 0
- }
- }
- Layer: 0 {
- Version: 100
- LayerElement: {
- Type: "LayerElementNormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementBinormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementTangent"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementMaterial"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementSmoothing"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementUV"
- TypedIndex: 0
- }
- }
- }
- Geometry: 2399509377248, "Geometry::", "Mesh" {
- Vertices: *24 {
- a: -101.73291015625,201.36653137207,0.74090576171875,-101.73291015625,12.308910369873,0.74090576171875,-93.0107421875,201.36653137207,0.74090576171875,-93.0107421875,12.308910369873,0.74090576171875,-101.73291015625,12.308910369873,50.5438232421875,-101.73291015625,201.36653137207,50.5438232421875,-93.0107421875,12.308910369873,50.5438232421875,-93.0107421875,201.36653137207,50.5438232421875
- }
- PolygonVertexIndex: *24 {
- a: 4,5,0,-2,7,5,4,-7,2,0,5,-8,3,1,0,-3,2,7,6,-4,6,4,1,-4
- }
- Edges: *12 {
- a: 2,3,18,15,8,12,1,6,4,11,0,7
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByVertice"
- ReferenceInformationType: "Direct"
- Normals: *24 {
- a: -0.983992576599121,0.0453964471817017,-0.172330260276794,-0.983992576599121,-0.0453964471817017,-0.172330260276794,0.983992576599121,0.0453964471817017,-0.172330260276794,0.983992576599121,-0.0453964471817017,-0.172330260276794,-0.983992576599121,-0.0453964471817017,0.172330260276794,-0.983992576599121,0.0453964471817017,0.172330260276794,0.983992576599121,-0.0453964471817017,0.172330260276794,0.983992576599121,0.0453964471817017,0.172330260276794
- }
- NormalsW: *8 {
- a: 1,1,1,1,1,1,1,1
- }
- }
- LayerElementBinormal: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *72 {
- a: 0.172508120536804,-1.20140612125397e-007,0.985008120536804,0.172508120536804,-1.20606273412704e-007,0.985008120536804,-0.172508120536804,-1.20140612125397e-007,0.985008120536804,-0.172508120536804,-1.20606273412704e-007,0.985008120536804,0.172508120536804,5.44823706150055e-008,-0.985008120536804,0.172508120536804,1.02445483207703e-007,0.985008120536804,0.172508105635643,1.51339918375015e-007,0.985008120536804,0.172508120536804,1.02445483207703e-007,-0.985008120536804,0.0460859201848507,-0.998937487602234,-4.2840838432312e-008,0.0460859313607216,0.998937487602234,-2.1420419216156e-008,0.0460859276354313,0.998937487602234,0,0.0460859313607216,-0.998937487602234,-2.1420419216156e-008,0.172508120536804,3.16649675369263e-008,0.985008120536804,0.172508120536804,5.12227416038513e-009,-0.985008120536804,0.172508120536804,-2.09547579288483e-008,-0.985008120536804,0.172508120536804,5.12227416038513e-009,0.985008120536804,-0.172508120536804,-4.65661287307739e-010,-0.985008120536804,0.172508120536804,3.07336449623108e-008,-0.985008120536804,0.172508120536804,6.05359673500061e-008,-0.985008120536804,-0.172508120536804,3.07336449623108e-008,-0.985008120536804,0.0460859276354313,0.998937487602234,0,0.0460859276354313,-0.998937487602234,0,0.0460859276354313,-0.998937487602234,0,0.0460859276354313,0.998937487602234,0
- }
- BinormalsW: *24 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementTangent: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *72 {
- a: 0.0447158478200436,-0.998969078063965,-0.00783137418329716,-0.0447158887982368,-0.998969078063965,0.00783113669604063,-0.0447158478200436,-0.998969078063965,-0.00783137418329716,0.0447158887982368,-0.998969078063965,0.00783113669604063,0.044715877622366,-0.998969078063965,0.00783120188862085,-0.0447158515453339,-0.998969078063965,0.00783135648816824,0.0447158925235271,-0.998969078063965,-0.00783110596239567,-0.0447158515453339,-0.998969078063965,-0.00783135648816824,0.172147154808044,0.00794195663183928,0.985039234161377,-0.172147154808044,0.0079420218244195,0.985039234161377,0.172147154808044,-0.00794200040400028,0.985039234161377,-0.172147154808044,-0.0079420218244195,0.985039234161377,0.0447158627212048,0.998969078063965,-0.00783128663897514,-0.0447158664464951,0.998969078063965,-0.00783125031739473,0.0447158701717854,0.998969078063965,0.00783123448491097,-0.0447158664464951,0.998969078063965,0.00783125031739473,0.0447158664464951,-0.998969078063965,-0.00783125497400761,0.0447158738970757,-0.998969078063965,0.00783122517168522,-0.0447158552706242,-0.998969078063965,-0.00783131457865238,-0.0447158738970757,-0.998969078063965,0.00783122517168522,0.172147154808044,-0.00794200040400028,-0.985039234161377,-0.172147154808044,-0.00794200040400028,-0.985039234161377,0.172147154808044,0.00794200040400028,-0.985039234161377,-0.172147154808044,0.00794200040400028,-0.985039234161377
- }
- TangentsW: *24 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *48 {
- a: 1.0174947977066,-0.669386744499207,0.0409955978393555,-0.669386863708496,0.0409955978393555,-0.926623404026031,1.0174947977066,-0.926623284816742,0.0409956090152264,-0.531687200069427,0.0409959331154823,-0.575545430183411,1.01749503612518,-0.575546264648438,1.0174947977066,-0.531687498092651,-0.297796428203583,2.10801577568054,-0.297796726226807,2.06296348571777,-0.0405605100095272,2.06296348571777,-0.0405601486563683,2.10801553726196,0.0409950166940689,-0.393507599830627,0.0409950017929077,-0.438560128211975,1.01749420166016,-0.438560247421265,1.01749432086945,-0.393507421016693,0.0409960746765137,-0.0443264245986938,0.0409958064556122,-0.301562279462814,1.0174947977066,-0.301562339067459,1.01749491691589,-0.0443264245986938,-0.297855347394943,1.9766206741333,-0.297854393720627,1.93156743049622,-0.0406178832054138,1.93156743049622,-0.0406189560890198,1.9766206741333
- }
- UVIndex: *24 {
- a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *12 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementMaterial: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "AllSame"
- ReferenceInformationType: "IndexToDirect"
- Materials: *1 {
- a: 0
- }
- }
- Layer: 0 {
- Version: 100
- LayerElement: {
- Type: "LayerElementNormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementBinormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementTangent"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementMaterial"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementSmoothing"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementUV"
- TypedIndex: 0
- }
- }
- }
- Geometry: 2399509366496, "Geometry::", "Mesh" {
- Vertices: *24 {
- a: 92.77734375,80.7670745849609,6.4730224609375,-92.77783203125,80.7670745849609,6.4730224609375,92.77734375,85.6461715698242,6.4730224609375,-92.77783203125,85.6461715698242,6.4730224609375,-92.77783203125,80.7670745849609,45.472412109375,92.77734375,80.7670745849609,45.472412109375,-92.77783203125,85.6461715698242,45.472412109375,92.77734375,85.6461715698242,45.472412109375
- }
- PolygonVertexIndex: *20 {
- a: 0,5,4,-2,4,5,7,-7,2,0,1,-4,6,7,2,-4,4,6,3,-2
- }
- Edges: *12 {
- a: 2,15,8,10,0,7,13,5,3,11,6,1
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByVertice"
- ReferenceInformationType: "Direct"
- Normals: *24 {
- a: 0,-0.992264807224274,-0.124139294028282,-0.0260823164135218,-0.991927266120911,-0.124097064137459,0,0.992264807224274,-0.124139294028282,-0.0260823164135218,0.991927266120911,-0.124097064137459,-0.0260823164135218,-0.991927266120911,0.124097064137459,0,-0.992264807224274,0.124139294028282,-0.0260823164135218,0.991927266120911,0.124097064137459,0,0.992264807224274,0.124139294028282
- }
- NormalsW: *8 {
- a: 1,1,1,1,1,1,1,1
- }
- }
- LayerElementBinormal: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *60 {
- a: -5.01415627240931e-007,-0.124139294028282,0.992264807224274,-5.01415627240931e-007,0.124139294028282,0.992264807224274,-5.01517149587016e-007,0.124139301478863,0.992264807224274,-5.01517149587016e-007,-0.124139279127121,0.992264807224274,0,0.124139294028282,0.992264807224274,-1.71568395046506e-008,0.124139294028282,0.992264807224274,-3.43136790093013e-008,0.124139294028282,-0.992264807224274,-1.69966352103756e-008,0.124139294028282,-0.992264807224274,6.1765661030222e-008,-0.124139294028282,-0.992264807224274,6.1765661030222e-008,-0.124139294028282,0.992264807224274,6.17001134628481e-008,-0.124139294028282,0.992264807224274,6.1932944106502e-008,-0.124139294028282,-0.992264807224274,0,0.124139294028282,-0.992264807224274,1.25353594171429e-007,0.124139294028282,-0.992264807224274,2.50707188342858e-007,-0.124139294028282,-0.992264807224274,1.25495702718581e-007,-0.124139286577702,-0.992264807224274,-0.999097943305969,0.0300275217741728,0.0300275199115276,0.999454319477081,0.0233579874038696,0.0233579874038696,0.999097943305969,0.0300275217741728,0.0300275199115276,-0.999454319477081,0.0233579874038696,0.0233579874038696
- }
- BinormalsW: *20 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementTangent: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *60 {
- a: 1,-6.2245376852843e-008,4.97537030241801e-007,1,6.2245376852843e-008,4.97537030241801e-007,0.999659895896912,-0.0258805062621832,0.00323833851143718,0.999659895896912,-0.0258806310594082,-0.00323734316043556,0.999659895896912,-0.0258805695921183,0.00323784095235169,1,2.12983630731856e-009,1.7024127885179e-008,1,4.25967261463711e-009,-3.40482557703581e-008,0.999659895896912,0.0258805714547634,0.0032378239557147,1,7.66753949221766e-009,6.12878920946969e-008,1,7.66753949221766e-009,-6.12878920946969e-008,0.999659895896912,-0.0258805621415377,-0.00323790218681097,0.999659895896912,0.0258805770426989,-0.00323777948506176,0.999659895896912,0.0258805695921183,0.00323784095235169,1,-1.55613069097171e-008,1.24383959132501e-007,1,3.11226138194343e-008,2.48767918265003e-007,0.999659895896912,0.0258805844932795,-0.00323771638795733,-0.0335114449262619,-0.12320201843977,-0.991815626621246,0.0202707666903734,0.124638512730598,-0.99199515581131,0.0335114449262619,-0.12320201843977,-0.991815626621246,-0.0202707666903734,0.124638512730598,-0.99199515581131
- }
- TangentsW: *20 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *32 {
- a: 2.14890146255493,2.3026237487793,2.14890241622925,2.50095200538635,1.14989805221558,2.50095248222351,1.14989757537842,2.30262422561646,1.14989757537842,2.19360113143921,2.14890146255493,2.19360113143921,2.14890098571777,2.21628141403198,1.14989757537842,2.21628165245056,2.14890217781067,2.07953834533691,2.14890217781067,2.10473823547363,1.14989757537842,2.10473775863647,1.14989757537842,2.07953786849976,1.14989757537842,1.79486680030823,2.14890217781067,1.79486680030823,2.14890122413635,1.99319553375244,1.14989650249481,1.99319529533386
- }
- UVIndex: *20 {
- a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,4,12,11,3
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *12 {
- a: 1,1,0,1,0,1,0,0,1,1,1,1
- }
- }
- LayerElementMaterial: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "AllSame"
- ReferenceInformationType: "IndexToDirect"
- Materials: *1 {
- a: 0
- }
- }
- Layer: 0 {
- Version: 100
- LayerElement: {
- Type: "LayerElementNormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementBinormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementTangent"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementMaterial"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementSmoothing"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementUV"
- TypedIndex: 0
- }
- }
- }
- Geometry: 2399509368544, "Geometry::", "Mesh" {
- Vertices: *24 {
- a: 92.77734375,41.3804321289063,2.26873779296875,-92.77783203125,41.3804321289063,2.26873779296875,92.77734375,46.2595291137695,2.26873779296875,-92.77783203125,46.2595291137695,2.26873779296875,-92.77783203125,41.3804321289063,45.2454833984375,92.77734375,41.3804321289063,45.2454833984375,-92.77783203125,46.2595291137695,45.2454833984375,92.77734375,46.2595291137695,45.2454833984375
- }
- PolygonVertexIndex: *24 {
- a: 0,5,4,-2,6,4,5,-8,2,7,5,-1,2,0,1,-4,7,2,3,-7,6,3,1,-5
- }
- Edges: *12 {
- a: 2,18,11,14,0,4,8,6,7,1,3,15
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByVertice"
- ReferenceInformationType: "Direct"
- Normals: *24 {
- a: 0.0261178445070982,-0.993278324604034,-0.112765684723854,-0.0261178445070982,-0.993278324604034,-0.112765684723854,0.0261178445070982,0.993278324604034,-0.112765684723854,-0.0261178445070982,0.993278324604034,-0.112765684723854,-0.0261178445070982,-0.993278324604034,0.112765684723854,0.0261178445070982,-0.993278324604034,0.112765684723854,-0.0261178445070982,0.993278324604034,0.112765684723854,0.0261178445070982,0.993278324604034,0.112765684723854
- }
- NormalsW: *8 {
- a: 1,1,1,1,1,1,1,1
- }
- }
- LayerElementBinormal: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *72 {
- a: 2.50525800993273e-007,-0.112804174423218,0.993617355823517,1.25262900496637e-007,0.112804181873798,0.993617355823517,0,0.112804181873798,0.993617355823517,1.25262900496637e-007,-0.112804181873798,0.993617355823517,-1.583248554482e-008,0.112804181873798,-0.993617355823517,-1.55996549011661e-008,0.112804181873798,0.993617355823517,-1.583248554482e-008,0.112804181873798,0.993617355823517,-1.55996549011661e-008,0.112804181873798,-0.993617355823517,-0.999654471874237,0.0262854993343353,-2.81725078821182e-008,-0.999654471874237,0.0262855049222708,-2.11875885725021e-008,0.999654471874237,0.0262855011969805,-1.39698386192322e-008,0.999654471874237,0.0262855049222708,-2.11875885725021e-008,0,-0.112804181873798,-0.993617355823517,0,-0.112804181873798,0.993617355823517,0,-0.112804181873798,0.993617355823517,0,-0.112804181873798,-0.993617355823517,1.25262900496637e-007,0.112804174423218,-0.993617355823517,1.25262900496637e-007,-0.112804181873798,-0.993617355823517,1.25262900496637e-007,-0.112804174423218,-0.993617355823517,1.25262900496637e-007,0.112804181873798,-0.993617355823517,0.999654471874237,0.0262855030596256,0,0.999654471874237,0.0262855011969805,-7.21774995326996e-009,-0.999654471874237,0.0262855030596256,-1.4202669262886e-008,-0.999654471874237,0.0262855011969805,-7.21774995326996e-009
- }
- BinormalsW: *24 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementTangent: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *72 {
- a: 0.99965888261795,0.0259511694312096,0.00294595258310437,0.99965888261795,0.0259511284530163,-0.00294632627628744,0.99965888261795,-0.0259511414915323,0.00294620171189308,0.99965888261795,-0.0259511284530163,-0.00294632627628744,0.99965888261795,0.0259511433541775,0.00294618611223996,0.99965888261795,-0.0259511396288872,0.00294621707871556,0.99965888261795,0.0259511433541775,-0.00294618611223996,0.99965888261795,-0.0259511396288872,-0.00294621707871556,-0.00296407449059188,-0.112726725637913,-0.993621587753296,0.00296412408351898,0.112726725637913,-0.993621587753296,0.00296408869326115,-0.112726725637913,-0.993621587753296,-0.00296412408351898,0.112726725637913,-0.993621587753296,0.99965888261795,-0.0259511414915323,0.00294620171189308,0.99965888261795,0.0259511414915323,0.00294620171189308,0.99965888261795,-0.0259511414915323,-0.00294620171189308,0.99965888261795,0.0259511414915323,-0.00294620171189308,0.99965888261795,-0.0259511563926935,-0.00294607714749873,0.99965888261795,-0.0259511265903711,0.00294632627628744,0.99965888261795,0.0259511563926935,-0.00294607714749873,0.99965888261795,0.0259511265903711,0.00294632627628744,0.00296410289593041,-0.112726725637913,0.993621587753296,-0.00296409567818046,0.112726725637913,0.993621587753296,-0.00296411709859967,-0.112726725637913,0.993621587753296,0.00296409567818046,0.112726725637913,0.993621587753296
- }
- TangentsW: *24 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *48 {
- a: 2.09082269668579,1.48461198806763,2.09082269668579,1.70348405838013,1.09181773662567,1.70348405838013,1.09181761741638,1.48461174964905,1.09181773662567,1.39827156066895,1.09181773662567,1.37558925151825,2.09082269668579,1.37558913230896,2.09082269668579,1.39827144145966,-0.0406189560890198,1.84522449970245,-0.259490609169006,1.84522426128387,-0.259490609169006,1.82002353668213,-0.0406189560890198,1.82002365589142,2.09082269668579,1.26152384281158,2.09082269668579,1.28672575950623,1.09181761741638,1.28672575950623,1.09181773662567,1.26152384281158,2.07196187973022,0.956308543682098,2.07196187973022,1.17518055438995,1.07295775413513,1.17518043518066,1.07295751571655,0.956308424472809,-0.0431376956403255,1.7336790561676,-0.262010753154755,1.7336790561676,-0.26201069355011,1.70847856998444,-0.0431380905210972,1.70847845077515
- }
- UVIndex: *24 {
- a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *12 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementMaterial: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "AllSame"
- ReferenceInformationType: "IndexToDirect"
- Materials: *1 {
- a: 0
- }
- }
- Layer: 0 {
- Version: 100
- LayerElement: {
- Type: "LayerElementNormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementBinormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementTangent"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementMaterial"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementSmoothing"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementUV"
- TypedIndex: 0
- }
- }
- }
- Geometry: 2399509375200, "Geometry::", "Mesh" {
- Vertices: *24 {
- a: -104.1552734375,12.3962554931641,-1.58984375,104.1552734375,12.3962554931641,-1.58984375,104.1552734375,12.3962593078613,53.9151611328125,-104.1552734375,12.3962593078613,53.9151611328125,-104.1552734375,0,-1.58984375,104.1552734375,0,-1.58984375,104.1552734375,3.814697265625e-006,53.9151611328125,-104.1552734375,3.814697265625e-006,53.9151611328125
- }
- PolygonVertexIndex: *24 {
- a: 4,5,6,-8,2,1,0,-4,0,1,5,-5,1,2,6,-6,2,3,7,-7,3,0,4,-8
- }
- Edges: *12 {
- a: 5,4,7,6,11,9,0,13,1,17,2,3
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByVertice"
- ReferenceInformationType: "Direct"
- Normals: *24 {
- a: -0.0579800345003605,0.974314570426941,-0.217599391937256,0.0579800345003605,0.974314570426941,-0.217599391937256,0.0579800270497799,0.974314570426941,0.217599257826805,-0.0579800270497799,0.974314570426941,0.217599257826805,-0.0579800270497799,-0.974314570426941,-0.217599257826805,0.0579800270497799,-0.974314570426941,-0.217599257826805,0.0579800345003605,-0.974314570426941,0.217599391937256,-0.0579800345003605,-0.974314570426941,0.217599391937256
- }
- NormalsW: *8 {
- a: 1,1,1,1,1,1,1,1
- }
- }
- LayerElementBinormal: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *72 {
- a: 2.77534098813703e-007,-0.217965945601463,0.975956380367279,2.19792099187544e-007,-0.217965915799141,0.975956380367279,1.62050113772239e-007,0.217966079711914,0.975956380367279,2.19792099187544e-007,0.217966049909592,0.975956380367279,5.86733150953478e-008,0.217965930700302,-0.975956380367279,2.98023188349816e-008,-0.217966064810753,-0.975956380367279,0,-0.217966064810753,-0.975956380367279,2.98023188349816e-008,0.217965930700302,-0.975956380367279,5.68106699461168e-008,-0.217966064810753,-0.975956380367279,2.88709962603662e-008,-0.217966064810753,-0.975956380367279,0,-0.217965930700302,0.975956380367279,2.88709962603662e-008,-0.217965930700302,0.975956380367279,-0.99823409318924,0.0594034194946289,-1.20140612125397e-007,-0.99823409318924,0.0594034753739834,-1.49011611938477e-007,0.99823409318924,0.059403408318758,-1.76951289176941e-007,0.99823409318924,0.0594034753739834,-1.49011611938477e-007,2.79396736857507e-008,0.217965930700302,-0.975956380367279,7.45057970874541e-009,0.217965930700302,-0.975956380367279,-1.39698368428753e-008,0.217966064810753,0.975956380367279,7.45057970874541e-009,0.217966064810753,0.975956380367279,0.99823409318924,0.0594034045934677,1.69500708580017e-007,0.99823409318924,0.0594034865498543,1.69500708580017e-007,-0.99823409318924,0.0594034045934677,1.69500708580017e-007,-0.99823409318924,0.0594034865498543,1.69500708580017e-007
- }
- BinormalsW: *24 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementTangent: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *72 {
- a: 0.998317837715149,-0.0565859228372574,-0.0126379430294037,0.998317837715149,0.0565860345959663,0.0126374578103423,0.998317837715149,0.0565859563648701,-0.0126378405839205,0.998317837715149,-0.0565860420465469,0.0126374671235681,0.998317837715149,-0.0565859973430634,-0.0126376142725348,0.998317837715149,-0.0565859861671925,0.0126377111300826,0.998317837715149,0.0565859936177731,-0.0126376822590828,0.998317837715149,0.0565859787166119,0.0126377018168569,0.998317837715149,0.056586004793644,-0.0126376263797283,0.998317837715149,-0.0565859861671925,0.01263771019876,0.998317837715149,0.0565859861671925,0.012637672945857,0.998317837715149,-0.0565859787166119,-0.0126377008855343,-0.0129260318353772,-0.21721513569355,-0.976038157939911,0.012926297262311,0.217214986681938,-0.976038217544556,0.012925973162055,-0.21721513569355,-0.976038157939911,-0.012926297262311,0.217214986681938,-0.976038217544556,0.998317837715149,-0.0565859898924828,-0.0126376450061798,0.998317837715149,0.0565859824419022,0.0126376794651151,0.998317837715149,-0.0565859898924828,0.0126376962289214,0.998317837715149,0.0565859898924828,-0.0126376887783408,0.0129259712994099,-0.217215001583099,0.976038217544556,-0.0129263279959559,0.217215120792389,0.976038157939911,-0.0129259712994099,-0.217215001583099,0.976038217544556,0.0129263279959559,0.217215120792389,0.976038157939911
- }
- TangentsW: *24 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *48 {
- a: 2.14993095397949,0.0944275557994843,3.22587466239929,0.0944278612732887,3.22587442398071,0.38111612200737,2.14993095397949,0.381115943193436,0.623422682285309,0.369385719299316,0.623422682285309,0.630614280700684,-0.356969505548477,0.630614280700684,-0.3569695353508,0.369385659694672,2.14993119239807,0.840611219406128,3.22587561607361,0.840611457824707,3.22587561607361,0.895262718200684,2.14993119239807,0.895262718200684,0.704903364181519,2.89283514022827,0.418213963508606,2.89283466339111,0.418213963508606,2.83818078041077,0.704903364181519,2.8381814956665,3.22587513923645,1.03993403911591,2.14993119239807,1.03993391990662,2.14993119239807,0.98527991771698,3.22587561607361,0.985279858112335,0.704903602600098,2.74246144294739,0.418214559555054,2.74246072769165,0.418214559555054,2.68780755996704,0.704903602600098,2.68780827522278
- }
- UVIndex: *24 {
- a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *12 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementMaterial: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "AllSame"
- ReferenceInformationType: "IndexToDirect"
- Materials: *1 {
- a: 0
- }
- }
- Layer: 0 {
- Version: 100
- LayerElement: {
- Type: "LayerElementNormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementBinormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementTangent"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementMaterial"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementSmoothing"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementUV"
- TypedIndex: 0
- }
- }
- }
- Model: 2399878883920, "Model::SM_Cupboard_01", "Null" {
- Version: 232
- Properties70: {
- P: "RotationActive", "bool", "", "",1
- P: "InheritType", "enum", "", "",1
- P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
- P: "DefaultAttributeIndex", "int", "Integer", "",0
- }
- Shading: Y
- Culling: "CullingOff"
- }
- Model: 2399878886240, "Model::LOD_Group_SM_Cupboard_01", "LodGroup" {
- Version: 232
- Properties70: {
- P: "RotationActive", "bool", "", "",1
- P: "InheritType", "enum", "", "",1
- P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
- P: "DefaultAttributeIndex", "int", "Integer", "",0
- }
- Shading: Y
- Culling: "CullingOff"
- }
- Model: 2399878890880, "Model::SM_Cupboard_01_LOD0", "Mesh" {
- Version: 232
- Properties70: {
- P: "RotationActive", "bool", "", "",1
- P: "InheritType", "enum", "", "",1
- P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
- P: "DefaultAttributeIndex", "int", "Integer", "",0
- P: "currentUVSet", "KString", "", "U", "map1"
- }
- Shading: T
- Culling: "CullingOff"
- }
- Model: 2399878895520, "Model::SM_Cupboard_01_LOD1", "Mesh" {
- Version: 232
- Properties70: {
- P: "RotationActive", "bool", "", "",1
- P: "InheritType", "enum", "", "",1
- P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
- P: "DefaultAttributeIndex", "int", "Integer", "",0
- P: "currentUVSet", "KString", "", "U", "map1"
- }
- Shading: T
- Culling: "CullingOff"
- }
- Model: 2399878900160, "Model::UCX_SM_Cupboard_01_LOD0_010", "Mesh" {
- Version: 232
- Properties70: {
- P: "RotationActive", "bool", "", "",1
- P: "InheritType", "enum", "", "",1
- P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
- P: "DefaultAttributeIndex", "int", "Integer", "",0
- P: "currentUVSet", "KString", "", "U", "map1"
- }
- Shading: T
- Culling: "CullingOff"
- }
- Model: 2399878904800, "Model::UCX_SM_Cupboard_01_LOD0_01", "Mesh" {
- Version: 232
- Properties70: {
- P: "RotationActive", "bool", "", "",1
- P: "InheritType", "enum", "", "",1
- P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
- P: "DefaultAttributeIndex", "int", "Integer", "",0
- P: "currentUVSet", "KString", "", "U", "map1"
- }
- Shading: T
- Culling: "CullingOff"
- }
- Model: 2399878907120, "Model::UCX_SM_Cupboard_01_LOD0_02", "Mesh" {
- Version: 232
- Properties70: {
- P: "RotationActive", "bool", "", "",1
- P: "InheritType", "enum", "", "",1
- P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
- P: "DefaultAttributeIndex", "int", "Integer", "",0
- P: "currentUVSet", "KString", "", "U", "map1"
- }
- Shading: T
- Culling: "CullingOff"
- }
- Model: 2399944305760, "Model::UCX_SM_Cupboard_01_LOD0_03", "Mesh" {
- Version: 232
- Properties70: {
- P: "RotationActive", "bool", "", "",1
- P: "InheritType", "enum", "", "",1
- P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
- P: "DefaultAttributeIndex", "int", "Integer", "",0
- P: "currentUVSet", "KString", "", "U", "map1"
- }
- Shading: T
- Culling: "CullingOff"
- }
- Model: 2399944331280, "Model::UCX_SM_Cupboard_01_LOD0_04", "Mesh" {
- Version: 232
- Properties70: {
- P: "RotationActive", "bool", "", "",1
- P: "InheritType", "enum", "", "",1
- P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
- P: "DefaultAttributeIndex", "int", "Integer", "",0
- P: "currentUVSet", "KString", "", "U", "map1"
- }
- Shading: T
- Culling: "CullingOff"
- }
- Model: 2399944301120, "Model::UCX_SM_Cupboard_01_LOD0_05", "Mesh" {
- Version: 232
- Properties70: {
- P: "RotationActive", "bool", "", "",1
- P: "InheritType", "enum", "", "",1
- P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
- P: "DefaultAttributeIndex", "int", "Integer", "",0
- P: "currentUVSet", "KString", "", "U", "map1"
- }
- Shading: T
- Culling: "CullingOff"
- }
- Model: 2399944303440, "Model::UCX_SM_Cupboard_01_LOD0_06", "Mesh" {
- Version: 232
- Properties70: {
- P: "RotationActive", "bool", "", "",1
- P: "InheritType", "enum", "", "",1
- P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
- P: "DefaultAttributeIndex", "int", "Integer", "",0
- P: "currentUVSet", "KString", "", "U", "map1"
- }
- Shading: T
- Culling: "CullingOff"
- }
- Model: 2399944361440, "Model::UCX_SM_Cupboard_01_LOD0_07", "Mesh" {
- Version: 232
- Properties70: {
- P: "RotationActive", "bool", "", "",1
- P: "InheritType", "enum", "", "",1
- P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
- P: "DefaultAttributeIndex", "int", "Integer", "",0
- P: "currentUVSet", "KString", "", "U", "map1"
- }
- Shading: T
- Culling: "CullingOff"
- }
- Model: 2399944366080, "Model::UCX_SM_Cupboard_01_LOD0_08", "Mesh" {
- Version: 232
- Properties70: {
- P: "RotationActive", "bool", "", "",1
- P: "InheritType", "enum", "", "",1
- P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
- P: "DefaultAttributeIndex", "int", "Integer", "",0
- P: "currentUVSet", "KString", "", "U", "map1"
- }
- Shading: T
- Culling: "CullingOff"
- }
- Material: 2400478209632, "Material::MI_Wood_01", "" {
- Version: 102
- ShadingModel: "phong"
- MultiLayer: 0
- Properties70: {
- P: "AmbientColor", "Color", "", "A",0,0,0
- P: "DiffuseColor", "Color", "", "A",1,1,1
- P: "DiffuseFactor", "Number", "", "A",0.800000011920929
- P: "TransparencyFactor", "Number", "", "A",1
- P: "SpecularColor", "Color", "", "A",0,0,0
- P: "ReflectionFactor", "Number", "", "A",0.5
- P: "Emissive", "Vector3D", "Vector", "",0,0,0
- P: "Ambient", "Vector3D", "Vector", "",0,0,0
- P: "Diffuse", "Vector3D", "Vector", "",0.800000011920929,0.800000011920929,0.800000011920929
- P: "Specular", "Vector3D", "Vector", "",0,0,0
- P: "Shininess", "double", "Number", "",20
- P: "Opacity", "double", "Number", "",1
- P: "Reflectivity", "double", "Number", "",0
- }
- }
- Material: 2400478219232, "Material::M_Collision_01", "" {
- Version: 102
- ShadingModel: "phong"
- MultiLayer: 0
- Properties70: {
- P: "AmbientColor", "Color", "", "A",0,0,0
- P: "DiffuseColor", "Color", "", "A",0.5,0.5,0.5
- P: "DiffuseFactor", "Number", "", "A",0.800000011920929
- P: "TransparencyFactor", "Number", "", "A",1
- P: "SpecularColor", "Color", "", "A",0,0,0
- P: "ReflectionFactor", "Number", "", "A",0.5
- P: "Emissive", "Vector3D", "Vector", "",0,0,0
- P: "Ambient", "Vector3D", "Vector", "",0,0,0
- P: "Diffuse", "Vector3D", "Vector", "",0.400000005960464,0.400000005960464,0.400000005960464
- P: "Specular", "Vector3D", "Vector", "",0,0,0
- P: "Shininess", "double", "Number", "",20
- P: "Opacity", "double", "Number", "",1
- P: "Reflectivity", "double", "Number", "",0
- }
- }
- Video: 2400171447232, "Video::file93", "Clip" {
- Type: "Clip"
- Properties70: {
- P: "Path", "KString", "XRefUrl", "", "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Wood_01_BC.png"
- }
- UseMipMap: 0
- Filename: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Wood_01_BC.png"
- RelativeFilename: "..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Wood_01_BC.png"
- }
- Video: 2400171444832, "Video::file94", "Clip" {
- Type: "Clip"
- Properties70: {
- P: "Path", "KString", "XRefUrl", "", "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Wood_01_N.png"
- }
- UseMipMap: 0
- Filename: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Wood_01_N.png"
- RelativeFilename: "..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Wood_01_N.png"
- }
- Texture: 2400478210592, "Texture::file93", "" {
- Type: "TextureVideoClip"
- Version: 202
- TextureName: "Texture::file93"
- Properties70: {
- P: "CurrentTextureBlendMode", "enum", "", "",0
- P: "UVSet", "KString", "", "", "map1"
- P: "UseMaterial", "bool", "", "",1
- }
- Media: "Video::file93"
- FileName: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Wood_01_BC.png"
- RelativeFilename: "..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Wood_01_BC.png"
- ModelUVTranslation: 0,0
- ModelUVScaling: 1,1
- Texture_Alpha_Source: "None"
- Cropping: 0,0,0,0
- }
- Texture: 2400478207232, "Texture::file94", "" {
- Type: "TextureVideoClip"
- Version: 202
- TextureName: "Texture::file94"
- Properties70: {
- P: "CurrentTextureBlendMode", "enum", "", "",0
- P: "UVSet", "KString", "", "", "map1"
- P: "UseMaterial", "bool", "", "",1
- }
- Media: "Video::file94"
- FileName: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Wood_01_N.png"
- RelativeFilename: "..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Wood_01_N.png"
- ModelUVTranslation: 0,0
- ModelUVScaling: 1,1
- Texture_Alpha_Source: "None"
- Cropping: 0,0,0,0
- }
- AnimationStack: 2401354203152, "AnimStack::Take 001", "" {
- Properties70: {
- P: "LocalStart", "KTime", "Time", "",1539538600
- P: "LocalStop", "KTime", "Time", "",46186158000
- P: "ReferenceStart", "KTime", "Time", "",1539538600
- P: "ReferenceStop", "KTime", "Time", "",46186158000
- }
- }
- AnimationLayer: 2399884969408, "AnimLayer::BaseLayer", "" {
- }
- }
- ; Object connections
- ;------------------------------------------------------------------
- Connections: {
-
- ;Model::SM_Cupboard_01, Model::RootNode
- C: "OO",2399878883920,0
-
- ;AnimLayer::BaseLayer, AnimStack::Take 001
- C: "OO",2399884969408,2401354203152
-
- ;NodeAttribute::, Model::SM_Cupboard_01
- C: "OO",2399515771808,2399878883920
-
- ;Model::LOD_Group_SM_Cupboard_01, Model::SM_Cupboard_01
- C: "OO",2399878886240,2399878883920
-
- ;Model::UCX_SM_Cupboard_01_LOD0_010, Model::SM_Cupboard_01
- C: "OO",2399878900160,2399878883920
-
- ;Model::UCX_SM_Cupboard_01_LOD0_01, Model::SM_Cupboard_01
- C: "OO",2399878904800,2399878883920
-
- ;Model::UCX_SM_Cupboard_01_LOD0_02, Model::SM_Cupboard_01
- C: "OO",2399878907120,2399878883920
-
- ;Model::UCX_SM_Cupboard_01_LOD0_03, Model::SM_Cupboard_01
- C: "OO",2399944305760,2399878883920
-
- ;Model::UCX_SM_Cupboard_01_LOD0_04, Model::SM_Cupboard_01
- C: "OO",2399944331280,2399878883920
-
- ;Model::UCX_SM_Cupboard_01_LOD0_05, Model::SM_Cupboard_01
- C: "OO",2399944301120,2399878883920
-
- ;Model::UCX_SM_Cupboard_01_LOD0_06, Model::SM_Cupboard_01
- C: "OO",2399944303440,2399878883920
-
- ;Model::UCX_SM_Cupboard_01_LOD0_07, Model::SM_Cupboard_01
- C: "OO",2399944361440,2399878883920
-
- ;Model::UCX_SM_Cupboard_01_LOD0_08, Model::SM_Cupboard_01
- C: "OO",2399944366080,2399878883920
-
- ;NodeAttribute::, Model::LOD_Group_SM_Cupboard_01
- C: "OO",2399503639568,2399878886240
-
- ;Model::SM_Cupboard_01_LOD0, Model::LOD_Group_SM_Cupboard_01
- C: "OO",2399878890880,2399878886240
-
- ;Model::SM_Cupboard_01_LOD1, Model::LOD_Group_SM_Cupboard_01
- C: "OO",2399878895520,2399878886240
-
- ;Texture::file93, Material::MI_Wood_01
- C: "OP",2400478210592,2400478209632, "DiffuseColor"
-
- ;Texture::file94, Material::MI_Wood_01
- C: "OP",2400478207232,2400478209632, "NormalMap"
-
- ;Video::file93, Texture::file93
- C: "OO",2400171447232,2400478210592
-
- ;Video::file94, Texture::file94
- C: "OO",2400171444832,2400478207232
-
- ;Geometry::, Model::SM_Cupboard_01_LOD0
- C: "OO",2399509356768,2399878890880
-
- ;Material::MI_Wood_01, Model::SM_Cupboard_01_LOD0
- C: "OO",2400478209632,2399878890880
-
- ;Geometry::, Model::SM_Cupboard_01_LOD1
- C: "OO",2399509365984,2399878895520
-
- ;Material::MI_Wood_01, Model::SM_Cupboard_01_LOD1
- C: "OO",2400478209632,2399878895520
-
- ;Geometry::, Model::UCX_SM_Cupboard_01_LOD0_010
- C: "OO",2399509389024,2399878900160
-
- ;Material::M_Collision_01, Model::UCX_SM_Cupboard_01_LOD0_010
- C: "OO",2400478219232,2399878900160
-
- ;Geometry::, Model::UCX_SM_Cupboard_01_LOD0_01
- C: "OO",2399509375712,2399878904800
-
- ;Material::M_Collision_01, Model::UCX_SM_Cupboard_01_LOD0_01
- C: "OO",2400478219232,2399878904800
-
- ;Geometry::, Model::UCX_SM_Cupboard_01_LOD0_02
- C: "OO",2399509364448,2399878907120
-
- ;Material::M_Collision_01, Model::UCX_SM_Cupboard_01_LOD0_02
- C: "OO",2400478219232,2399878907120
-
- ;Geometry::, Model::UCX_SM_Cupboard_01_LOD0_03
- C: "OO",2399509376224,2399944305760
-
- ;Material::M_Collision_01, Model::UCX_SM_Cupboard_01_LOD0_03
- C: "OO",2400478219232,2399944305760
-
- ;Geometry::, Model::UCX_SM_Cupboard_01_LOD0_04
- C: "OO",2399509379808,2399944331280
-
- ;Material::M_Collision_01, Model::UCX_SM_Cupboard_01_LOD0_04
- C: "OO",2400478219232,2399944331280
-
- ;Geometry::, Model::UCX_SM_Cupboard_01_LOD0_05
- C: "OO",2399509377248,2399944301120
-
- ;Material::M_Collision_01, Model::UCX_SM_Cupboard_01_LOD0_05
- C: "OO",2400478219232,2399944301120
-
- ;Geometry::, Model::UCX_SM_Cupboard_01_LOD0_06
- C: "OO",2399509366496,2399944303440
-
- ;Material::M_Collision_01, Model::UCX_SM_Cupboard_01_LOD0_06
- C: "OO",2400478219232,2399944303440
-
- ;Geometry::, Model::UCX_SM_Cupboard_01_LOD0_07
- C: "OO",2399509368544,2399944361440
-
- ;Material::M_Collision_01, Model::UCX_SM_Cupboard_01_LOD0_07
- C: "OO",2400478219232,2399944361440
-
- ;Geometry::, Model::UCX_SM_Cupboard_01_LOD0_08
- C: "OO",2399509375200,2399944366080
-
- ;Material::M_Collision_01, Model::UCX_SM_Cupboard_01_LOD0_08
- C: "OO",2400478219232,2399944366080
- }
- ;Takes section
- ;----------------------------------------------------
- Takes: {
- Current: "Take 001"
- Take: "Take 001" {
- FileName: "Take_001.tak"
- LocalTime: 1539538600,46186158000
- ReferenceTime: 1539538600,46186158000
- }
- }
|