| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070 |
- ; 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: 9
- Day: 28
- Hour: 18
- Minute: 11
- Second: 15
- Millisecond: 20
- }
- 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_Flying_Buttress_01.fbx"
- P: "SrcDocumentUrl", "KString", "Url", "", "A:\Lordenfel\Unity\Lordenfel\Assets\Lordenfel\Source\SM_Flying_Buttress_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", "", "", "28/09/2020 15:11:15.019"
- P: "Original|FileName", "KString", "", "", "A:\Lordenfel\Unity\Lordenfel\Assets\Lordenfel\Source\SM_Flying_Buttress_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", "", "", "28/09/2020 15:11:15.019"
- P: "Original|ApplicationActiveProject", "KString", "", "", "A:\Lordenfel\Unity\UPDATE FBX 01"
- P: "Original|ApplicationNativeFile", "KString", "", "", "A:\Lordenfel\Maya\Lordenfel_08.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: 2330976296800, "", "Scene" {
- Properties70: {
- P: "SourceObject", "object", "", ""
- P: "ActiveAnimStackName", "KString", "", "", "Take 001"
- }
- RootNode: 0
- }
- }
- ; Document References
- ;------------------------------------------------------------------
- References: {
- }
- ; Object definitions
- ;------------------------------------------------------------------
- Definitions: {
- Version: 100
- Count: 37
- 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: 9
- 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: 7
- 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: 4
- 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: 6
- 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: 6
- 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: 2328201245856, "NodeAttribute::", "Null" {
- Properties70: {
- P: "Look", "enum", "", "",0
- }
- TypeFlags: "Null"
- }
- NodeAttribute: 2332447569232, "NodeAttribute::", "LodGroup" {
- Properties70: {
- P: "WorldSpace", "bool", "", "",1
- P: "Thresholds|Level0", "Distance", "", "",100, "cm"
- P: "Thresholds|Level1", "Distance", "", "",100, "cm"
- P: "DisplayLevels|Level0", "enum", "", "",1
- P: "DisplayLevels|Level1", "enum", "", "",1
- P: "DisplayLevels|Level2", "enum", "", "",1
- }
- }
- Geometry: 2333008477872, "Geometry::", "Mesh" {
- Vertices: *1116 {
- a: 45.193359375,-205.057983398438,429.7578125,45.193359375,-449.595947265625,429.7578125,45.193359375,123.257202148438,-273.626953125,45.193359375,-214.93798828125,261.133056640625,45.193359375,166.272705078125,-486.17724609375,45.193359375,44.6884765625,-72.9925537109375,45.193359375,-69.4801025390625,107.573486328125,-45.1953125,-449.595947265625,429.7578125,-45.1953125,-214.93798828125,261.133056640625,-45.1953125,-69.4801025390625,107.573486328125,-45.1953125,44.6884765625,-72.9925537109375,-45.1953125,123.257202148438,-273.626953125,-45.1953125,166.272705078125,-486.17724609375,45.193359375,428.780029296875,-486.17724609375,-45.1953125,-205.057983398438,429.7578125,-45.1953125,428.780029296875,-486.17724609375,55.126953125,433.5615234375,-485.050903320313,55.126953125,-200.276611328125,430.884033203125,-0.00390625,536.446411132813,-485.050903320313,-0.00390625,-97.39111328125,430.8837890625,-55.126953125,433.561401367188,-485.051025390625,-55.126953125,-200.276733398438,430.8837890625,31.896484375,-545.170043945313,408.561279296875,31.302734375,-225.10888671875,195.484619140625,41.6640625,-218.029174804688,202.864990234375,42.220703125,-541.092651367188,417.940185546875,51.21875,-518.290771484375,470.375244140625,50.693359375,-178.443481445313,244.1240234375,-0.38671875,-178.443481445313,244.1240234375,-0.38671875,-518.290771484375,470.375244140625,-0.38671875,-545.170043945313,408.561279296875,-0.38671875,-225.10888671875,195.484619140625,51.86328125,-179.590087890625,242.92919921875,52.384765625,-518.951354980469,468.8564453125,52.384765625,-529.239013671875,445.201416015625,51.86328125,-197.449584960938,224.316162109375,42.220703125,-533.148315429688,436.21142578125,41.6640625,-204.236450195313,217.2421875,-0.38671875,-372.361206054688,314.030517578125,31.302734375,-372.361206054688,314.030517578125,41.6640625,-366.6630859375,322.52294921875,41.6640625,-355.561401367188,339.06689453125,51.86328125,-350.0986328125,347.20703125,51.86328125,-335.723266601563,368.625244140625,50.693359375,-334.80029296875,370.00048828125,
- -0.38671875,-334.80029296875,370.00048828125,-0.38671875,-301.09033203125,261.90087890625,31.025390625,-301.09033203125,261.90087890625,41.40234375,-294.7236328125,269.904052734375,41.40234375,-282.319580078125,285.495361328125,51.62109375,-276.215942382813,293.166748046875,51.62109375,-260.154418945313,313.3515625,50.447265625,-259.123046875,314.6474609375,-0.38671875,-259.123046875,314.6474609375,-0.38671875,-463.613891601563,368.994873046875,31.623046875,-463.613891601563,368.994873046875,41.962890625,-458.771606445313,378.0029296875,41.962890625,-449.33740234375,395.55126953125,52.146484375,-444.695068359375,404.185546875,52.146484375,-432.478271484375,426.904296875,50.9765625,-431.693969726563,428.363037109375,-0.38671875,-431.693969726563,428.363037109375,-0.38671875,-503.979370117188,389.625244140625,31.7578125,-503.979370117188,389.625244140625,42.08984375,-499.515563964844,398.82666015625,42.08984375,-490.81884765625,416.751953125,52.265625,-486.539306640625,425.571533203125,52.265625,-475.27734375,448.778564453125,51.095703125,-474.554443359375,450.268798828125,-0.38671875,-474.554443359375,450.268798828125,-0.38671875,-382.5322265625,400.36474609375,50.833984375,-382.5322265625,400.36474609375,52.00390625,-383.386840820313,398.946044921875,52.00390625,-396.698974609375,376.85107421875,41.8125,-401.757446289063,368.453857421875,41.8125,-412.03759765625,351.387451171875,31.462890625,-417.314208984375,342.626708984375,-0.38671875,-417.314208984375,342.626708984375,-0.38671875,-336.196655273438,288.6865234375,31.162109375,-336.196655273438,288.6865234375,41.53125,-330.1591796875,296.94140625,41.53125,-318.396728515625,313.02197265625,51.7421875,-312.608764648438,320.934326171875,51.7421875,-297.3779296875,341.7529296875,50.5703125,-296.39990234375,343.08935546875,-0.38671875,-296.39990234375,343.08935546875,-0.38671875,-217.965209960938,280.31884765625,50.306640625,-217.965209960938,280.31884765625,51.48046875,-219.055419921875,279.07177734375,51.48046875,-236.034057617188,259.65234375,41.25390625,-242.486206054688,252.271728515625,
- 41.25390625,-255.598754882813,237.271240234375,30.8671875,-262.3291015625,229.5712890625,-0.38671875,-262.3291015625,229.5712890625,31.302734375,0.9564208984375,-115.27197265625,41.6640625,10.15771484375,-110.80810546875,50.693359375,61.604248046875,-85.8563232421875,-0.38671875,61.604248046875,-85.8563232421875,-0.38671875,0.9564208984375,-115.27197265625,51.86328125,60.114013671875,-86.5789794921875,51.86328125,36.9041748046875,-97.834716796875,41.6640625,28.0836181640625,-102.11279296875,-0.38671875,-95.933349609375,46.927490234375,31.302734375,-95.933349609375,46.927490234375,41.6640625,-87.6416015625,52.913818359375,41.6640625,-71.4873046875,64.5751953125,51.86328125,-63.5386962890625,70.31298828125,51.86328125,-42.6221923828125,85.4091796875,50.693359375,-41.2791748046875,86.37841796875,-0.38671875,-41.2791748046875,86.37841796875,-0.38671875,-47.218017578125,-26.659912109375,31.025390625,-47.218017578125,-26.659912109375,41.40234375,-38.46875,-21.3642578125,41.40234375,-21.423828125,-11.04833984375,51.62109375,-13.036865234375,-5.972900390625,51.62109375,9.03271484375,7.381103515625,50.447265625,10.4498291015625,8.238525390625,-0.38671875,10.4498291015625,8.238525390625,-0.38671875,-162.394409179688,130.1044921875,31.623046875,-162.394409179688,130.1044921875,41.962890625,-154.726196289063,136.871337890625,41.962890625,-139.787109375,150.053466796875,52.146484375,-132.43603515625,156.53955078125,52.146484375,-113.092651367188,173.604736328125,50.9765625,-111.850708007813,174.700439453125,-0.38671875,-111.850708007813,174.700439453125,-0.38671875,-193.071044921875,163.4453125,31.7578125,-193.071044921875,163.4453125,42.08984375,-185.690673828125,170.52490234375,42.08984375,-171.312255859375,184.316650390625,52.265625,-164.2373046875,191.1025390625,52.265625,-145.619750976563,208.95703125,51.095703125,-144.42431640625,210.103271484375,-0.38671875,-144.42431640625,210.103271484375,-0.38671875,-75.484375,131.400146484375,50.833984375,-75.484375,131.400146484375,52.00390625,-76.778564453125,130.366455078125,52.00390625,-96.932373046875,114.2666015625,
- 41.8125,-104.591430664063,108.1474609375,41.8125,-120.15673828125,95.710693359375,31.462890625,-128.146240234375,89.32666015625,-0.38671875,-128.146240234375,89.32666015625,-0.38671875,-70.8294677734375,10.6259765625,31.162109375,-70.8294677734375,10.6259765625,41.53125,-62.302001953125,16.271484375,41.53125,-45.6888427734375,27.269287109375,51.7421875,-37.5142822265625,32.680419921875,51.7421875,-16.0037841796875,46.917236328125,50.5703125,-14.62255859375,47.831298828125,-0.38671875,-14.62255859375,47.831298828125,-0.38671875,37.117431640625,-38.21826171875,50.306640625,37.117431640625,-38.21826171875,51.48046875,35.662353515625,-39.009033203125,51.48046875,12.9981689453125,-51.327392578125,41.25390625,4.38525390625,-56.009033203125,41.25390625,-13.1190185546875,-65.52490234375,30.8671875,-22.1038818359375,-70.409912109375,-0.38671875,-22.1038818359375,-70.409912109375,30.708984375,105.031005859375,-488.57958984375,41.10546875,115.209716796875,-488.57958984375,50.166015625,172.118774414063,-488.57958984375,-0.38671875,172.118774414063,-488.57958984375,-0.38671875,105.031005859375,-488.57958984375,51.34375,170.470458984375,-488.57958984375,51.34375,144.796508789063,-488.57958984375,41.10546875,135.039428710938,-488.57958984375,-0.38671875,70.4908447265625,-299.329345703125,31.302734375,70.4908447265625,-299.329345703125,41.6640625,80.344970703125,-296.59375,41.6640625,99.542724609375,-291.265014648438,51.86328125,108.989013671875,-288.643310546875,51.86328125,133.84521484375,-281.74658203125,50.693359375,135.441040039063,-281.303955078125,-0.38671875,135.441040039063,-281.303955078125,-0.38671875,90.6209716796875,-385.203369140625,31.025390625,90.6209716796875,-385.203369140625,41.40234375,100.664184570313,-383.274169921875,41.40234375,120.230346679688,-379.5166015625,51.62109375,129.857666015625,-377.668212890625,51.62109375,155.1904296875,-372.805541992188,50.447265625,156.817016601563,-372.493408203125,-0.38671875,156.817016601563,-372.493408203125,-0.38671875,37.054931640625,-198.310302734375,31.623046875,37.054931640625,-198.310302734375,
- 41.962890625,46.59521484375,-194.626220703125,41.962890625,65.1815185546875,-187.449584960938,52.146484375,74.326904296875,-183.918701171875,52.146484375,98.391357421875,-174.62939453125,50.9765625,99.9365234375,-174.032958984375,-0.38671875,99.9365234375,-174.032958984375,-0.38671875,19.8695068359375,-156.41748046875,31.7578125,19.8695068359375,-156.41748046875,42.08984375,29.2484130859375,-152.33984375,42.08984375,47.5201416015625,-144.397094726563,52.265625,56.510986328125,-140.4892578125,52.265625,80.1685791015625,-130.207763671875,51.095703125,81.6876220703125,-129.547607421875,-0.38671875,81.6876220703125,-129.547607421875,-0.38671875,119.000244140625,-227.236572265625,50.833984375,119.000244140625,-227.236572265625,52.00390625,117.427856445313,-227.756713867188,52.00390625,92.9383544921875,-235.859497070313,41.8125,83.63134765625,-238.939208984375,41.8125,64.716796875,-245.199462890625,31.462890625,55.0079345703125,-248.4130859375,-0.38671875,55.0079345703125,-248.4130859375,-0.38671875,81.4259033203125,-342.063842773438,31.162109375,81.4259033203125,-342.063842773438,41.53125,91.3829345703125,-339.7294921875,41.53125,110.78076171875,-335.1826171875,51.7421875,120.325317382813,-332.94580078125,51.7421875,145.4404296875,-327.061279296875,50.5703125,147.052978515625,-326.68359375,-0.38671875,147.052978515625,-326.68359375,-0.38671875,165.69482421875,-425.290649414063,50.306640625,165.69482421875,-425.290649414063,51.48046875,164.0556640625,-425.527221679688,51.48046875,138.52490234375,-429.2119140625,41.25390625,128.822265625,-430.61279296875,41.25390625,109.103271484375,-433.460693359375,30.8671875,98.9814453125,-434.9228515625,-0.38671875,98.9814453125,-434.9228515625,-32.669921875,-545.170043945313,408.561279296875,-32.076171875,-225.10888671875,195.484619140625,-42.4375,-218.029174804688,202.864990234375,-42.994140625,-541.092651367188,417.940185546875,-51.9921875,-518.290771484375,470.375244140625,-51.466796875,-178.443481445313,244.1240234375,-52.63671875,-179.590087890625,242.92919921875,-53.158203125,-518.951354980469,468.8564453125,
- -53.158203125,-529.239013671875,445.201416015625,-52.63671875,-197.449584960938,224.316162109375,-42.994140625,-533.148315429688,436.21142578125,-42.4375,-204.236450195313,217.2421875,-32.076171875,-372.361206054688,314.030517578125,-42.4375,-366.6630859375,322.52294921875,-42.4375,-355.561401367188,339.06689453125,-52.63671875,-350.0986328125,347.20703125,-52.63671875,-335.723266601563,368.625244140625,-51.466796875,-334.80029296875,370.00048828125,-31.798828125,-301.09033203125,261.90087890625,-42.17578125,-294.7236328125,269.904052734375,-42.17578125,-282.319580078125,285.495361328125,-52.39453125,-276.215942382813,293.166748046875,-52.39453125,-260.154418945313,313.3515625,-51.220703125,-259.123046875,314.6474609375,-32.396484375,-463.613891601563,368.994873046875,-42.736328125,-458.771606445313,378.0029296875,-42.736328125,-449.33740234375,395.55126953125,-52.919921875,-444.695068359375,404.185546875,-52.919921875,-432.478271484375,426.904296875,-51.75,-431.693969726563,428.363037109375,-32.53125,-503.979370117188,389.625244140625,-42.86328125,-499.515563964844,398.82666015625,-42.86328125,-490.81884765625,416.751953125,-53.0390625,-486.539306640625,425.571533203125,-53.0390625,-475.27734375,448.778564453125,-51.869140625,-474.554443359375,450.268798828125,-51.607421875,-382.5322265625,400.36474609375,-52.77734375,-383.386840820313,398.946044921875,-52.77734375,-396.698974609375,376.85107421875,-42.5859375,-401.757446289063,368.453857421875,-42.5859375,-412.03759765625,351.387451171875,-32.236328125,-417.314208984375,342.626708984375,-31.935546875,-336.196655273438,288.6865234375,-42.3046875,-330.1591796875,296.94140625,-42.3046875,-318.396728515625,313.02197265625,-52.515625,-312.608764648438,320.934326171875,-52.515625,-297.3779296875,341.7529296875,-51.34375,-296.39990234375,343.08935546875,-51.080078125,-217.965209960938,280.31884765625,-52.25390625,-219.055419921875,279.07177734375,-52.25390625,-236.034057617188,259.65234375,-42.02734375,-242.486206054688,252.271728515625,-42.02734375,-255.598754882813,237.271240234375,
- -31.640625,-262.3291015625,229.5712890625,-32.076171875,0.9564208984375,-115.27197265625,-42.4375,10.15771484375,-110.80810546875,-51.466796875,61.604248046875,-85.8563232421875,-52.63671875,60.114013671875,-86.5789794921875,-52.63671875,36.9041748046875,-97.834716796875,-42.4375,28.0836181640625,-102.11279296875,-32.076171875,-95.933349609375,46.927490234375,-42.4375,-87.6416015625,52.913818359375,-42.4375,-71.4873046875,64.5751953125,-52.63671875,-63.5386962890625,70.31298828125,-52.63671875,-42.6221923828125,85.4091796875,-51.466796875,-41.2791748046875,86.37841796875,-31.798828125,-47.218017578125,-26.659912109375,-42.17578125,-38.46875,-21.3642578125,-42.17578125,-21.423828125,-11.04833984375,-52.39453125,-13.036865234375,-5.972900390625,-52.39453125,9.03271484375,7.381103515625,-51.220703125,10.4498291015625,8.238525390625,-32.396484375,-162.394409179688,130.1044921875,-42.736328125,-154.726196289063,136.871337890625,-42.736328125,-139.787109375,150.053466796875,-52.919921875,-132.43603515625,156.53955078125,-52.919921875,-113.092651367188,173.604736328125,-51.75,-111.850708007813,174.700439453125,-32.53125,-193.071044921875,163.4453125,-42.86328125,-185.690673828125,170.52490234375,-42.86328125,-171.312255859375,184.316650390625,-53.0390625,-164.2373046875,191.1025390625,-53.0390625,-145.619750976563,208.95703125,-51.869140625,-144.42431640625,210.103271484375,-51.607421875,-75.484375,131.400146484375,-52.77734375,-76.778564453125,130.366455078125,-52.77734375,-96.932373046875,114.2666015625,-42.5859375,-104.591430664063,108.1474609375,-42.5859375,-120.15673828125,95.710693359375,-32.236328125,-128.146240234375,89.32666015625,-31.935546875,-70.8294677734375,10.6259765625,-42.3046875,-62.302001953125,16.271484375,-42.3046875,-45.6888427734375,27.269287109375,-52.515625,-37.5142822265625,32.680419921875,-52.515625,-16.0037841796875,46.917236328125,-51.34375,-14.62255859375,47.831298828125,-51.080078125,37.117431640625,-38.21826171875,-52.25390625,35.662353515625,-39.009033203125,-52.25390625,12.9981689453125,-51.327392578125,
- -42.02734375,4.38525390625,-56.009033203125,-42.02734375,-13.1190185546875,-65.52490234375,-31.640625,-22.1038818359375,-70.409912109375,-31.482421875,105.031005859375,-488.57958984375,-41.87890625,115.209716796875,-488.57958984375,-50.939453125,172.118774414063,-488.57958984375,-52.1171875,170.470458984375,-488.57958984375,-52.1171875,144.796508789063,-488.57958984375,-41.87890625,135.039428710938,-488.57958984375,-32.076171875,70.4908447265625,-299.329345703125,-42.4375,80.344970703125,-296.59375,-42.4375,99.542724609375,-291.265014648438,-52.63671875,108.989013671875,-288.643310546875,-52.63671875,133.84521484375,-281.74658203125,-51.466796875,135.441040039063,-281.303955078125,-31.798828125,90.6209716796875,-385.203369140625,-42.17578125,100.664184570313,-383.274169921875,-42.17578125,120.230346679688,-379.5166015625,-52.39453125,129.857666015625,-377.668212890625,-52.39453125,155.1904296875,-372.805541992188,-51.220703125,156.817016601563,-372.493408203125,-32.396484375,37.054931640625,-198.310302734375,-42.736328125,46.59521484375,-194.626220703125,-42.736328125,65.1815185546875,-187.449584960938,-52.919921875,74.326904296875,-183.918701171875,-52.919921875,98.391357421875,-174.62939453125,-51.75,99.9365234375,-174.032958984375,-32.53125,19.8695068359375,-156.41748046875,-42.86328125,29.2484130859375,-152.33984375,-42.86328125,47.5201416015625,-144.397094726563,-53.0390625,56.510986328125,-140.4892578125,-53.0390625,80.1685791015625,-130.207763671875,-51.869140625,81.6876220703125,-129.547607421875,-51.607421875,119.000244140625,-227.236572265625,-52.77734375,117.427856445313,-227.756713867188,-52.77734375,92.9383544921875,-235.859497070313,-42.5859375,83.63134765625,-238.939208984375,-42.5859375,64.716796875,-245.199462890625,-32.236328125,55.0079345703125,-248.4130859375,-31.935546875,81.4259033203125,-342.063842773438,-42.3046875,91.3829345703125,-339.7294921875,-42.3046875,110.78076171875,-335.1826171875,-52.515625,120.325317382813,-332.94580078125,-52.515625,145.4404296875,-327.061279296875,-51.34375,147.052978515625,-326.68359375,
- -51.080078125,165.69482421875,-425.290649414063,-52.25390625,164.0556640625,-425.527221679688,-52.25390625,138.52490234375,-429.2119140625,-42.02734375,128.822265625,-430.61279296875,-42.02734375,109.103271484375,-433.460693359375,-31.640625,98.9814453125,-434.9228515625
- }
- PolygonVertexIndex: *1422 {
- a: 1,3,6,5,2,4,13,-1,7,14,15,12,11,10,9,-9,17,16,18,-20,19,18,20,-22,0,13,16,-18,15,14,21,-21,4,12,15,20,18,16,-14,7,1,0,17,19,21,-15,25,22,63,-65,68,69,29,-27,62,63,22,-31,33,34,66,-68,65,66,34,-37,64,65,36,-26,67,68,26,-34,29,30,22,25,36,34,33,-27,78,79,39,-39,40,39,79,-81,80,81,41,-41,81,82,42,-42,43,42,82,-84,83,84,44,-44,84,85,45,-45,23,92,93,-32,91,92,23,-25,37,90,91,-25,35,89,90,-38,88,89,35,-33,27,87,88,-33,28,86,87,-28,38,39,76,-78,75,76,39,-41,40,41,74,-76,41,42,73,-75,72,73,42,-44,43,44,71,-73,44,45,70,-72,54,55,63,-63,64,63,55,-57,56,57,65,-65,57,58,66,-66,67,66,58,-60,59,60,68,-68,60,61,69,-69,71,70,61,-61,72,71,60,-60,59,58,73,-73,74,73,58,-58,75,74,57,-57,56,55,76,-76,77,76,55,-55,47,79,78,-47,80,79,47,-49,49,81,80,-49,50,82,81,-50,83,82,50,-52,52,84,83,-52,53,85,84,-53,87,86,53,-53,88,87,52,-52,51,50,89,-89,90,89,50,-50,91,90,49,-49,48,47,92,-92,93,92,47,-47,24,23,127,-129,132,133,28,-28,126,127,23,-32,32,35,130,-132,129,130,35,-38,128,129,37,-25,131,132,27,-33,142,143,103,-103,104,103,143,-145,144,145,105,-105,145,146,106,-106,107,106,146,-148,147,148,108,-108,148,149,109,-109,94,156,157,-99,155,156,94,-96,101,154,155,-96,100,153,154,-102,152,153,100,-100,96,151,152,-100,97,150,151,-97,102,103,140,-142,139,140,103,-105,104,105,138,-140,105,106,137,-139,136,137,106,-108,107,108,135,-137,108,109,134,-136,118,119,127,-127,128,127,119,-121,120,121,129,-129,121,122,130,-130,131,130,122,-124,123,124,132,-132,124,125,133,-133,135,134,125,-125,136,135,124,-124,123,122,137,-137,138,137,122,-122,139,138,121,-121,120,119,140,-140,141,140,119,-119,111,143,142,-111,144,143,111,-113,113,145,144,-113,114,146,145,-114,147,146,114,-116,116,148,147,-116,117,149,148,-117,151,150,117,-117,152,151,116,-116,115,114,153,-153,154,153,114,-114,155,154,113,-113,112,111,156,-156,157,156,111,-111,95,94,191,-193,196,197,97,-97,190,191,94,-99,99,100,194,-196,193,194,100,-102,192,193,101,-96,195,196,96,-100,159,158,162,161,160,163,164,-166,206,207,167,-167,168,167,207,-209,208,209,169,-169,209,210,170,-170,171,170,
- 210,-212,211,212,172,-172,212,213,173,-173,158,220,221,-163,219,220,158,-160,165,218,219,-160,164,217,218,-166,216,217,164,-164,160,215,216,-164,161,214,215,-161,166,167,204,-206,203,204,167,-169,168,169,202,-204,169,170,201,-203,200,201,170,-172,171,172,199,-201,172,173,198,-200,182,183,191,-191,192,191,183,-185,184,185,193,-193,185,186,194,-194,195,194,186,-188,187,188,196,-196,188,189,197,-197,199,198,189,-189,200,199,188,-188,187,186,201,-201,202,201,186,-186,203,202,185,-185,184,183,204,-204,205,204,183,-183,175,207,206,-175,208,207,175,-177,177,209,208,-177,178,210,209,-178,211,210,178,-180,180,212,211,-180,181,213,212,-181,215,214,181,-181,216,215,180,-180,179,178,217,-217,218,217,178,-178,219,218,177,-177,176,175,220,-220,221,220,175,-175,225,253,252,-223,257,226,29,-70,62,30,222,-253,229,256,255,-231,254,232,230,-256,253,225,232,-255,256,229,226,-258,29,226,229,230,232,225,222,-31,78,38,234,-265,235,265,264,-235,265,235,236,-267,266,236,237,-268,238,268,267,-238,268,238,239,-270,269,239,45,-86,223,31,93,-276,274,224,223,-276,233,224,274,-274,231,233,273,-273,271,228,231,-273,227,228,271,-271,28,227,270,-87,38,77,263,-235,262,235,234,-264,235,262,261,-237,236,261,260,-238,259,238,237,-261,238,259,258,-240,239,258,70,-46,54,62,252,-247,253,247,246,-253,247,253,254,-249,248,254,255,-250,256,250,249,-256,250,256,257,-252,251,257,69,-62,258,251,61,-71,259,250,251,-259,250,259,260,-250,261,248,249,-261,262,247,248,-262,247,262,263,-247,77,54,246,-264,240,46,78,-265,265,241,240,-265,242,241,265,-267,243,242,266,-268,268,244,243,-268,245,244,268,-270,53,245,269,-86,270,245,53,-87,271,244,245,-271,244,271,272,-244,273,242,243,-273,274,241,242,-274,241,274,275,-241,93,46,240,-276,224,301,300,-224,305,227,28,-134,126,31,223,-301,228,304,303,-232,302,233,231,-304,301,224,233,-303,304,228,227,-306,142,102,282,-313,283,313,312,-283,313,283,284,-315,314,284,285,-316,286,316,315,-286,316,286,287,-318,317,287,109,-150,276,98,157,-324,322,277,276,-324,281,277,322,-322,280,281,321,-321,319,279,280,-321,278,279,319,-319,97,278,
- 318,-151,102,141,311,-283,310,283,282,-312,283,310,309,-285,284,309,308,-286,307,286,285,-309,286,307,306,-288,287,306,134,-110,118,126,300,-295,301,295,294,-301,295,301,302,-297,296,302,303,-298,304,298,297,-304,298,304,305,-300,299,305,133,-126,306,299,125,-135,307,298,299,-307,298,307,308,-298,309,296,297,-309,310,295,296,-310,295,310,311,-295,141,118,294,-312,288,110,142,-313,313,289,288,-313,290,289,313,-315,291,290,314,-316,316,292,291,-316,293,292,316,-318,117,293,317,-150,318,293,117,-151,319,292,293,-319,292,319,320,-292,321,290,291,-321,322,289,290,-322,289,322,323,-289,157,110,288,-324,277,349,348,-277,353,278,97,-198,190,98,276,-349,279,352,351,-281,350,281,280,-352,349,277,281,-351,352,279,278,-354,325,329,328,327,326,161,162,-325,206,166,330,-361,331,361,360,-331,361,331,332,-363,362,332,333,-364,334,364,363,-334,364,334,335,-366,365,335,173,-214,324,162,221,-372,370,325,324,-372,329,325,370,-370,328,329,369,-369,367,327,328,-369,326,327,367,-367,161,326,366,-215,166,205,359,-331,358,331,330,-360,331,358,357,-333,332,357,356,-334,355,334,333,-357,334,355,354,-336,335,354,198,-174,182,190,348,-343,349,343,342,-349,343,349,350,-345,344,350,351,-346,352,346,345,-352,346,352,353,-348,347,353,197,-190,354,347,189,-199,355,346,347,-355,346,355,356,-346,357,344,345,-357,358,343,344,-358,343,358,359,-343,205,182,342,-360,336,174,206,-361,361,337,336,-361,338,337,361,-363,339,338,362,-364,364,340,339,-364,341,340,364,-366,181,341,365,-214,366,341,181,-215,367,340,341,-367,340,367,368,-340,369,338,339,-369,370,337,338,-370,337,370,371,-337,221,174,336,-372
- }
- Edges: *717 {
- a: 7,3,0,4,2,1,15,14,13,12,11,6,5,8,9,10,25,27,16,17,18,19,31,21,29,22,23,32,39,116,117,46,53,137,52,113,56,129,58,128,125,64,121,68,72,133,74,57,134,47,65,59,85,83,145,91,95,157,103,163,84,86,92,96,98,104,108,277,271,225,229,228,265,233,259,237,241,240,253,245,246,249,221,215,166,173,172,209,174,203,178,185,184,197,186,191,190,169,167,49,175,179,61,187,51,54,48,66,62,60,70,50,195,159,201,151,147,213,139,141,164,160,154,152,148,142,140,224,222,89,230,234,101,242,107,82,88,90,94,100,102,106,251,130,257,122,118,269,110,112,135,131,126,123,119,114,111,340,341,285,361,337,353,352,349,345,357,289,358,279,297,291,309,307,369,315,319,381,327,387,308,310,316,320,322,328,332,501,495,449,453,452,489,457,483,461,465,464,477,469,470,473,445,439,390,397,396,433,398,427,402,409,408,421,410,415,414,393,391,281,399,403,293,411,283,286,280,298,294,292,302,282,419,383,425,375,371,437,363,365,388,384,378,376,372,366,364,448,446,313,454,458,325,466,331,306,312,314,318,324,326,330,475,354,481,346,342,493,334,336,359,355,350,347,343,338,335,530,573,509,533,531,585,535,536,537,534,532,513,590,503,521,515,541,539,601,547,551,613,559,619,540,542,548,552,554,560,564,733,727,681,685,684,721,689,715,693,697,696,709,701,702,705,677,671,622,629,628,665,630,659,634,641,640,653,642,647,646,625,623,505,631,635,517,643,507,510,504,522,518,516,526,506,651,615,657,607,603,669,595,597,620,616,610,608,604,598,596,680,678,545,686,690,557,698,563,538,544,546,550,556,558,562,707,586,713,578,574,725,566,568,591,587,582,579,575,570,567,803,802,737,738,822,739,798,743,814,749,815,810,751,806,755,759,818,736,750,748,772,830,780,784,842,792,771,777,779,783,789,791,795,960,910,914,915,950,918,948,922,926,927,938,930,934,904,857,858,859,894,865,892,869,870,871,882,877,881,856,734,864,868,746,876,745,735,757,753,747,761,741,848,886,840,836,898,828,851,847,845,839,835,833,827,913,774,921,925,786,933,773,775,781,785,787,793,797,821,942,813,809,954,801,824,820,817,812,808,805,800,1027,1026,970,1046,1022,1038,1039,1034,1030,1042,968,982,980,996,1054,1004,
- 1008,1066,1016,995,1001,1003,1007,1013,1015,1019,1184,1134,1138,1139,1174,1142,1172,1146,1150,1151,1162,1154,1158,1128,1081,1082,1083,1118,1089,1116,1093,1094,1095,1106,1101,1105,1080,966,1088,1092,978,1100,977,967,989,985,979,993,973,1072,1110,1064,1060,1122,1052,1075,1071,1069,1063,1059,1057,1051,1137,998,1145,1149,1010,1157,997,999,1005,1009,1011,1017,1021,1045,1166,1037,1033,1178,1025,1048,1044,1041,1036,1032,1029,1024,1225,1258,1194,1222,1224,1270,1220,1219,1218,1221,1192,1206,1204,1228,1286,1236,1240,1298,1248,1227,1233,1235,1239,1245,1247,1251,1416,1366,1370,1371,1406,1374,1404,1378,1382,1383,1394,1386,1390,1360,1313,1314,1315,1350,1321,1348,1325,1326,1327,1338,1333,1337,1312,1190,1320,1324,1202,1332,1201,1191,1213,1209,1203,1217,1197,1304,1342,1296,1292,1354,1284,1307,1303,1301,1295,1291,1289,1283,1369,1230,1377,1381,1242,1389,1229,1231,1237,1241,1243,1249,1253,1277,1398,1269,1265,1410,1257,1280,1276,1273,1268,1264,1261,1256
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Normals: *4266 {
- a: 1,-2.89471913106354e-008,0,0.999999940395355,-2.89471877579217e-008,0,1,-2.89471895342786e-008,0,0.999999940395355,-2.89471877579217e-008,0,1,-2.89471895342786e-008,0,1,-2.89471895342786e-008,0,1,-2.89471913106354e-008,0,1,-2.89471895342786e-008,0,-1,-1.08551985178451e-008,0,-1,-1.08551967414883e-008,0,-1,-1.08551985178451e-008,0,-1,-1.08551976296667e-008,0,-1,-1.08551967414883e-008,0,-0.999999940395355,-1.08551976296667e-008,0,-1,-1.08551985178451e-008,0,-0.999999940395355,-1.08551967414883e-008,0,0.837814688682556,0.448941946029663,0.310673177242279,0.837814629077911,0.448941916227341,0.310673177242279,0.837814629077911,0.448941946029663,0.310673177242279,0.837814629077911,0.448941916227341,0.310673177242279,-0.837850570678711,0.448896497488022,0.310641705989838,-0.837850630283356,0.448896497488022,0.31064173579216,-0.837850689888,0.448896497488022,0.310641765594482,-0.837850689888,0.448896497488022,0.310641765594482,0.418151199817657,-0.74696409702301,-0.516908347606659,0.418151199817657,-0.74696409702301,-0.516908288002014,0.41815122961998,-0.74696409702301,-0.516908288002014,0.418151170015335,-0.74696409702301,-0.516908347606659,-0.418203502893448,-0.74694436788559,-0.516894578933716,-0.418203473091125,-0.7469442486763,-0.516894578933716,-0.418203502893448,-0.74694436788559,-0.516894578933716,-0.418203502893448,-0.74694436788559,-0.516894638538361,0,0.00378165976144373,-0.999992847442627,0,0.00378165976144373,-0.999992847442627,0,0.00378165952861309,-0.999992787837982,0,0.00378165976144373,-0.999992787837982,0,0.00378165976144373,-0.999992847442627,0,0.00378165999427438,-0.999992847442627,0,0.00378165999427438,-0.999992907047272,-2.76498553830606e-007,-0.0039980337023735,0.999991953372955,-2.76498553830606e-007,-0.0039980337023735,0.999991953372955,-2.76498525408897e-007,-0.0039980337023735,0.999991953372955,-2.76498553830606e-007,-0.00399803416803479,0.999991953372955,-2.76498553830606e-007,-0.00399803416803479,0.999991953372955,-2.76498610674025e-007,-0.00399803509935737,0.999992072582245,
- -2.76498525408897e-007,-0.00399803416803479,0.999991953372955,0.948434233665466,-0.129914820194244,-0.28912752866745,0.236589640378952,-0.405198097229004,-0.883085370063782,0.236405909061432,-0.423447400331497,-0.874530971050262,0.948334991931915,-0.136057585477829,-0.286616593599319,0.031086228787899,0.436299949884415,0.89926415681839,0,0.436469197273254,0.899719178676605,0,0.417695373296738,0.908587098121643,0.0311260856688023,0.41756409406662,0.90811425447464,0,-0.436448305845261,-0.899729311466217,0.236405909061432,-0.423447400331497,-0.874530971050262,0.236589640378952,-0.405198097229004,-0.883085370063782,0,-0.417692959308624,-0.908588230609894,0.999031364917755,0.020626587793231,0.0388707965612412,0.963530898094177,-0.10953576862812,-0.244151964783669,0.963457942008972,-0.114703416824341,-0.242057874798775,0.999028205871582,0.0214588847011328,0.0384970717132092,0.943700671195984,-0.142067074775696,-0.29874050617218,0.963457942008972,-0.114703416824341,-0.242057874798775,0.963530898094177,-0.10953576862812,-0.244151964783669,0.943642199039459,-0.135855972766876,-0.301799148321152,0.948334991931915,-0.136057585477829,-0.286616593599319,0.943700671195984,-0.142067074775696,-0.29874050617218,0.943642199039459,-0.135855972766876,-0.301799148321152,0.948434233665466,-0.129914820194244,-0.28912752866745,0.999028205871582,0.0214588847011328,0.0384970717132092,0.031086228787899,0.436299949884415,0.89926415681839,0.0311260856688023,0.41756409406662,0.90811425447464,0.999031364917755,0.020626587793231,0.0388707965612412,3.39388677161878e-008,-0.91704785823822,0.398777097463608,3.39388677161878e-008,-0.91704785823822,0.398777097463608,-2.07229677471332e-005,-0.917047917842865,0.398777157068253,-2.07229677471332e-005,-0.91704785823822,0.398777157068253,-2.07229641091544e-005,-0.917047798633575,0.398777097463608,-2.07229641091544e-005,-0.917047798633575,0.398777097463608,-2.07229677471332e-005,-0.91704785823822,0.398777157068253,-2.07229659281438e-005,-0.91704785823822,0.398777097463608,0,-0.59032815694809,-0.807163298130035,
- 0.239320695400238,-0.572579026222229,-0.784142076969147,0.238701984286308,-0.537066102027893,-0.809062123298645,0,-0.553673803806305,-0.832733631134033,0.948192477226257,-0.173634976148605,-0.266048848628998,0.238701984286308,-0.537066102027893,-0.809062123298645,0.239320695400238,-0.572579026222229,-0.784142076969147,0.947953522205353,-0.185706809163094,-0.258644670248032,0.947953522205353,-0.185706809163094,-0.258644670248032,0.943384230136871,-0.193651229143143,-0.269305378198624,0.943318963050842,-0.18158133327961,-0.277808427810669,0.948192477226257,-0.173634976148605,-0.266048848628998,0.943384230136871,-0.193651229143143,-0.269305378198624,0.96318906545639,-0.15663093328476,-0.218480303883553,0.963378548622131,-0.146387040615082,-0.224660649895668,0.943318963050842,-0.18158133327961,-0.277808427810669,0.99902206659317,0.0265709813684225,0.035342562943697,0.963378548622131,-0.146387040615082,-0.224660649895668,0.96318906545639,-0.15663093328476,-0.218480303883553,0.999024331569672,0.0281354933977127,0.0340426564216614,0.999024331569672,0.0281354933977127,0.0340426564216614,0.0314058065414429,0.590096652507782,0.80672150850296,0.031284935772419,0.553465068340302,0.83228462934494,0.99902206659317,0.0265709813684225,0.035342562943697,0.0314058065414429,0.590096652507782,0.80672150850296,0,0.590347409248352,0.807149231433868,0,0.553697764873505,0.832717776298523,0.031284935772419,0.553465068340302,0.83228462934494,0.238752096891403,-0.672265529632568,-0.700754284858704,0.239213615655899,-0.639538407325745,-0.730593860149384,0,-0.658164143562317,-0.752874493598938,0,-0.690674483776093,-0.723165690898895,0.947949528694153,-0.211402997374535,-0.238118752837181,0.239213615655899,-0.639538407325745,-0.730593860149384,0.238752096891403,-0.672265529632568,-0.700754284858704,0.948123812675476,-0.225439012050629,-0.224139675498009,0.943323969841003,-0.234843641519547,-0.234496042132378,0.943293809890747,-0.220230966806412,-0.248384922742844,0.947949528694153,-0.211402997374535,-0.238118752837181,0.948123812675476,-0.225439012050629,-0.224139675498009,
- 0.963322699069977,-0.190764263272285,-0.188728258013725,0.963205695152283,-0.178563192486763,-0.200873121619225,0.943293809890747,-0.220230966806412,-0.248384922742844,0.943323969841003,-0.234843641519547,-0.234496042132378,0.99900895357132,0.0275334939360619,0.0349713899195194,0.963205695152283,-0.178563192486763,-0.200873121619225,0.963322699069977,-0.190764263272285,-0.188728258013725,0.99899423122406,0.0248479191213846,0.0373247861862183,0.031302198767662,0.690187394618988,0.722953259944916,0.0312881283462048,0.657797336578369,0.752544820308685,0.99900895357132,0.0275334939360619,0.0349713899195194,0.99899423122406,0.0248479191213846,0.0373247861862183,0,0.690626740455627,0.723211407661438,0,0.658149421215057,0.752887368202209,0.0312881283462048,0.657797336578369,0.752544820308685,0.031302198767662,0.690187394618988,0.722953259944916,0,-0.553673803806305,-0.832733631134033,0.238701984286308,-0.537066102027893,-0.809062123298645,0.238148614764214,-0.500470519065857,-0.832354843616486,0,-0.515910685062408,-0.856642305850983,0.948420107364655,-0.16128471493721,-0.272922217845917,0.238148614764214,-0.500470519065857,-0.832354843616486,0.238701984286308,-0.537066102027893,-0.809062123298645,0.948192477226257,-0.173634976148605,-0.266048848628998,0.948192477226257,-0.173634976148605,-0.266048848628998,0.943318963050842,-0.18158133327961,-0.277808427810669,0.943260490894318,-0.169139310717583,-0.285747498273849,0.948420107364655,-0.16128471493721,-0.272922217845917,0.943318963050842,-0.18158133327961,-0.277808427810669,0.963378548622131,-0.146387040615082,-0.224660649895668,0.963542759418488,-0.135922402143478,-0.230457499623299,0.943260490894318,-0.169139310717583,-0.285747498273849,0.999018847942352,0.0249794106930494,0.0365701094269753,0.963542759418488,-0.135922402143478,-0.230457499623299,0.963378548622131,-0.146387040615082,-0.224660649895668,0.99902206659317,0.0265709813684225,0.035342562943697,0.99902206659317,0.0265709813684225,0.035342562943697,0.031284935772419,0.553465068340302,0.83228462934494,0.0311826523393393,0.51572185754776,0.856188416481018,
- 0.999018847942352,0.0249794106930494,0.0365701094269753,0.031284935772419,0.553465068340302,0.83228462934494,0,0.553697764873505,0.832717776298523,0,0.515937387943268,0.856626272201538,0.0311826523393393,0.51572185754776,0.856188416481018,0,-0.476668149232864,-0.879083275794983,0.237339183688164,-0.462441325187683,-0.854293942451477,0.236405909061432,-0.423447400331497,-0.874530971050262,0,-0.436448305845261,-0.899729311466217,0.948334991931915,-0.136057585477829,-0.286616593599319,0.236405909061432,-0.423447400331497,-0.874530971050262,0.237339183688164,-0.462441325187683,-0.854293942451477,0.948398053646088,-0.148804739117622,-0.279996573925018,0.948398053646088,-0.148804739117622,-0.279996573925018,0.943452775478363,-0.155787259340286,-0.292621076107025,0.943700671195984,-0.142067074775696,-0.29874050617218,0.948334991931915,-0.136057585477829,-0.286616593599319,0.943452775478363,-0.155787259340286,-0.292621076107025,0.963507473468781,-0.125423774123192,-0.236478701233864,0.963457942008972,-0.114703416824341,-0.242057874798775,0.943700671195984,-0.142067074775696,-0.29874050617218,0.999028205871582,0.0214588847011328,0.0384970717132092,0.963457942008972,-0.114703416824341,-0.242057874798775,0.963507473468781,-0.125423774123192,-0.236478701233864,0.999022662639618,0.0232582055032253,0.037588357925415,0.999022662639618,0.0232582055032253,0.037588357925415,0.0311391353607178,0.476498484611511,0.878623604774475,0.031086228787899,0.436299949884415,0.89926415681839,0.999028205871582,0.0214588847011328,0.0384970717132092,0.0311391353607178,0.476498484611511,0.878623604774475,0,0.476691365242004,0.879070699214935,0,0.436469197273254,0.899719178676605,0.031086228787899,0.436299949884415,0.89926415681839,0.0311826523393393,0.51572185754776,0.856188416481018,0,0.515937387943268,0.856626272201538,0,0.476691365242004,0.879070699214935,0.0311391353607178,0.476498484611511,0.878623604774475,0.999018847942352,0.0249794106930494,0.0365701094269753,0.0311826523393393,0.51572185754776,0.856188416481018,0.0311391353607178,0.476498484611511,0.878623604774475,
- 0.999022662639618,0.0232582055032253,0.037588357925415,0.999022662639618,0.0232582055032253,0.037588357925415,0.963507473468781,-0.125423774123192,-0.236478701233864,0.963542759418488,-0.135922402143478,-0.230457499623299,0.999018847942352,0.0249794106930494,0.0365701094269753,0.943260490894318,-0.169139310717583,-0.285747498273849,0.963542759418488,-0.135922402143478,-0.230457499623299,0.963507473468781,-0.125423774123192,-0.236478701233864,0.943452775478363,-0.155787259340286,-0.292621076107025,0.948420107364655,-0.16128471493721,-0.272922217845917,0.943260490894318,-0.169139310717583,-0.285747498273849,0.943452775478363,-0.155787259340286,-0.292621076107025,0.948398053646088,-0.148804739117622,-0.279996573925018,0.948398053646088,-0.148804739117622,-0.279996573925018,0.237339183688164,-0.462441325187683,-0.854293942451477,0.238148614764214,-0.500470519065857,-0.832354843616486,0.948420107364655,-0.16128471493721,-0.272922217845917,0,-0.515910685062408,-0.856642305850983,0.238148614764214,-0.500470519065857,-0.832354843616486,0.237339183688164,-0.462441325187683,-0.854293942451477,0,-0.476668149232864,-0.879083275794983,0.240231513977051,-0.605926692485809,-0.758381009101868,0.239320695400238,-0.572579026222229,-0.784142076969147,0,-0.59032815694809,-0.807163298130035,0,-0.624792039394379,-0.780791163444519,0.947953522205353,-0.185706809163094,-0.258644670248032,0.239320695400238,-0.572579026222229,-0.784142076969147,0.240231513977051,-0.605926692485809,-0.758381009101868,0.947987020015717,-0.196712344884872,-0.250249564647675,0.943169116973877,-0.205557137727737,-0.26110965013504,0.943384230136871,-0.193651229143143,-0.269305378198624,0.947953522205353,-0.185706809163094,-0.258644670248032,0.947987020015717,-0.196712344884872,-0.250249564647675,0.96321576833725,-0.165888667106628,-0.211415156722069,0.96318906545639,-0.15663093328476,-0.218480303883553,0.943384230136871,-0.193651229143143,-0.269305378198624,0.943169116973877,-0.205557137727737,-0.26110965013504,0.999024331569672,0.0281354933977127,0.0340426564216614,
- 0.96318906545639,-0.15663093328476,-0.218480303883553,0.96321576833725,-0.165888667106628,-0.211415156722069,0.999018669128418,0.0296821072697639,0.0328748151659966,0.0314668491482735,0.624539256095886,0.780359148979187,0.0314058065414429,0.590096652507782,0.80672150850296,0.999024331569672,0.0281354933977127,0.0340426564216614,0.999018669128418,0.0296821072697639,0.0328748151659966,0,0.624811232089996,0.780775845050812,0,0.590347409248352,0.807149231433868,0.0314058065414429,0.590096652507782,0.80672150850296,0.0314668491482735,0.624539256095886,0.780359148979187,0.0312881283462048,0.657797336578369,0.752544820308685,0,0.658149421215057,0.752887368202209,0,0.624811232089996,0.780775845050812,0.0314668491482735,0.624539256095886,0.780359148979187,0.99900895357132,0.0275334939360619,0.0349713899195194,0.0312881283462048,0.657797336578369,0.752544820308685,0.0314668491482735,0.624539256095886,0.780359148979187,0.999018669128418,0.0296821072697639,0.0328748151659966,0.999018669128418,0.0296821072697639,0.0328748151659966,0.96321576833725,-0.165888667106628,-0.211415156722069,0.963205695152283,-0.178563192486763,-0.200873121619225,0.99900895357132,0.0275334939360619,0.0349713899195194,0.943293809890747,-0.220230966806412,-0.248384922742844,0.963205695152283,-0.178563192486763,-0.200873121619225,0.96321576833725,-0.165888667106628,-0.211415156722069,0.943169116973877,-0.205557137727737,-0.26110965013504,0.947949528694153,-0.211402997374535,-0.238118752837181,0.943293809890747,-0.220230966806412,-0.248384922742844,0.943169116973877,-0.205557137727737,-0.26110965013504,0.947987020015717,-0.196712344884872,-0.250249564647675,0.947987020015717,-0.196712344884872,-0.250249564647675,0.240231513977051,-0.605926692485809,-0.758381009101868,0.239213615655899,-0.639538407325745,-0.730593860149384,0.947949528694153,-0.211402997374535,-0.238118752837181,0,-0.658164143562317,-0.752874493598938,0.239213615655899,-0.639538407325745,-0.730593860149384,0.240231513977051,-0.605926692485809,-0.758381009101868,0,-0.624792039394379,-0.780791163444519,
- 0.948123812675476,-0.225439012050629,-0.224139675498009,0.238752096891403,-0.672265529632568,-0.700754284858704,0.238329485058784,-0.701475143432617,-0.671663403511047,0.948389649391174,-0.230997204780579,-0.217249527573586,0.0313289538025856,0.721294224262238,0.691919803619385,0,0.721686840057373,0.69221967458725,0,0.690626740455627,0.723211407661438,0.031302198767662,0.690187394618988,0.722953259944916,0,-0.721701443195343,-0.692204594612122,0.238329485058784,-0.701475143432617,-0.671663403511047,0.238752096891403,-0.672265529632568,-0.700754284858704,0,-0.690674483776093,-0.723165690898895,0.99899423122406,0.0248479191213846,0.0373247861862183,0.963322699069977,-0.190764263272285,-0.188728258013725,0.963499307632446,-0.19519966840744,-0.183210521936417,0.99903392791748,0.0295834392309189,0.0324974097311497,0.943387985229492,-0.241439327597618,-0.227434173226357,0.963499307632446,-0.19519966840744,-0.183210521936417,0.963322699069977,-0.190764263272285,-0.188728258013725,0.943323969841003,-0.234843641519547,-0.234496042132378,0.948389649391174,-0.230997204780579,-0.217249527573586,0.943387985229492,-0.241439327597618,-0.227434173226357,0.943323969841003,-0.234843641519547,-0.234496042132378,0.948123812675476,-0.225439012050629,-0.224139675498009,0.99903392791748,0.0295834392309189,0.0324974097311497,0.0313289538025856,0.721294224262238,0.691919803619385,0.031302198767662,0.690187394618988,0.722953259944916,0.99899423122406,0.0248479191213846,0.0373247861862183,0,-0.833814859390259,-0.552044093608856,0.239320784807205,-0.809177339076996,-0.536616742610931,0.238699153065681,-0.784522652626038,-0.572317183017731,0,-0.808314561843872,-0.588750839233398,0.948192894458771,-0.255190253257751,-0.18923045694828,0.238699153065681,-0.784522652626038,-0.572317183017731,0.239320784807205,-0.809177339076996,-0.536616742610931,0.947953939437866,-0.263941586017609,-0.178096160292625,0.947953939437866,-0.263941586017609,-0.178096160292625,0.943383514881134,-0.275095045566559,-0.18533818423748,0.943319082260132,-0.266725569963455,-0.197500392794609,
- 0.948192894458771,-0.255190253257751,-0.18923045694828,0.943383514881134,-0.275095045566559,-0.18533818423748,0.963189423084259,-0.222730875015259,-0.150522604584694,0.963378608226776,-0.215270847082138,-0.159875139594078,0.943319082260132,-0.266725569963455,-0.197500392794609,0.999021947383881,0.037188395857811,0.0239202752709389,0.963378608226776,-0.215270847082138,-0.159875139594078,0.963189423084259,-0.222730875015259,-0.150522604584694,0.999024271965027,0.0382042042911053,0.0221577882766724,0.999024271965027,0.0382042042911053,0.0221577882766724,0.0314082838594913,0.833442807197571,0.551712453365326,0.0312860757112503,0.807961881160736,0.588403642177582,0.999021947383881,0.037188395857811,0.0239202752709389,0.0314082838594913,0.833442807197571,0.551712453365326,0,0.833826541900635,0.552026689052582,0,0.808330357074738,0.588729083538055,0.0312860757112503,0.807961881160736,0.588403642177582,0.238752856850624,-0.873716294765472,-0.423812329769135,0.239217162132263,-0.853381395339966,-0.463157773017883,0,-0.878583550453186,-0.477588623762131,0,-0.898759841918945,-0.438441216945648,0.947950303554535,-0.280914664268494,-0.149924159049988,0.239217162132263,-0.853381395339966,-0.463157773017883,0.238752856850624,-0.873716294765472,-0.423812329769135,0.94812399148941,-0.289227843284607,-0.131940096616745,0.943323254585266,-0.30164510011673,-0.138389006257057,0.94329309463501,-0.292761206626892,-0.156489610671997,0.947950303554535,-0.280914664268494,-0.149924159049988,0.94812399148941,-0.289227843284607,-0.131940096616745,0.963323354721069,-0.244415491819382,-0.110767059028149,0.963205754756927,-0.237189576029778,-0.126395463943481,0.94329309463501,-0.292761206626892,-0.156489610671997,0.943323254585266,-0.30164510011673,-0.138389006257057,0.99900883436203,0.0379611738026142,0.023240277543664,0.963205754756927,-0.237189576029778,-0.126395463943481,0.963323354721069,-0.244415491819382,-0.110767059028149,0.99899423122406,0.0362575948238373,0.0263819508254528,0.0313029810786247,0.898229122161865,0.438411384820938,0.0312862545251846,0.878126502037048,0.477404445409775,
- 0.99900883436203,0.0379611738026142,0.023240277543664,0.99899423122406,0.0362575948238373,0.0263819508254528,0,0.898730754852295,0.438500910997391,0,0.878575503826141,0.477603375911713,0.0312862545251846,0.878126502037048,0.477404445409775,0.0313029810786247,0.898229122161865,0.438411384820938,0,-0.808314561843872,-0.588750839233398,0.238699153065681,-0.784522652626038,-0.572317183017731,0.238145783543587,-0.758288443088531,-0.606864988803864,0,-0.781199336051941,-0.624281644821167,0.948420166969299,-0.245995089411736,-0.199964061379433,0.238145783543587,-0.758288443088531,-0.606864988803864,0.238699153065681,-0.784522652626038,-0.572317183017731,0.948192894458771,-0.255190253257751,-0.18923045694828,0.948192894458771,-0.255190253257751,-0.18923045694828,0.943319082260132,-0.266725569963455,-0.197500392794609,0.943260610103607,-0.25781324505806,-0.209264874458313,0.948420166969299,-0.245995089411736,-0.199964061379433,0.943319082260132,-0.266725569963455,-0.197500392794609,0.963378608226776,-0.215270847082138,-0.159875139594078,0.963543236255646,-0.207467511296272,-0.168942809104919,0.943260610103607,-0.25781324505806,-0.209264874458313,0.999018847942352,0.0361221544444561,0.025624068453908,0.963543236255646,-0.207467511296272,-0.168942809104919,0.963378608226776,-0.215270847082138,-0.159875139594078,0.999021947383881,0.037188395857811,0.0239202752709389,0.999021947383881,0.037188395857811,0.0239202752709389,0.0312860757112503,0.807961881160736,0.588403642177582,0.0311831925064325,0.780864834785461,0.623921096324921,0.999018847942352,0.0361221544444561,0.025624068453908,0.0312860757112503,0.807961881160736,0.588403642177582,0,0.808330357074738,0.588729083538055,0,0.781219005584717,0.624257028102875,0.0311831925064325,0.780864834785461,0.623921096324921,0,-0.752185463905334,-0.658951461315155,0.237337231636047,-0.730238318443298,-0.640642702579498,0.238329485058784,-0.701475143432617,-0.671663403511047,0,-0.721701443195343,-0.692204594612122,0.948389649391174,-0.230997204780579,-0.217249527573586,0.238329485058784,-0.701475143432617,-0.671663403511047,
- 0.237337231636047,-0.730238318443298,-0.640642702579498,0.948398470878601,-0.236745998263359,-0.210930451750755,0.948398470878601,-0.236745998263359,-0.210930451750755,0.943453192710876,-0.247676447033882,-0.220346108078957,0.943387985229492,-0.241439327597618,-0.227434173226357,0.948389649391174,-0.230997204780579,-0.217249527573586,0.943453192710876,-0.247676447033882,-0.220346108078957,0.963508188724518,-0.199711158871651,-0.178234219551086,0.963499307632446,-0.19519966840744,-0.183210521936417,0.943387985229492,-0.241439327597618,-0.227434173226357,0.99903392791748,0.0295834392309189,0.0324974097311497,0.963499307632446,-0.19519966840744,-0.183210521936417,0.963508188724518,-0.199711158871651,-0.178234219551086,0.999022543430328,0.0348615273833275,0.027176633477211,0.999022543430328,0.0348615273833275,0.027176633477211,0.0311388354748487,0.751867830753326,0.658578097820282,0.0313289538025856,0.721294224262238,0.691919803619385,0.99903392791748,0.0295834392309189,0.0324974097311497,0.0311388354748487,0.751867830753326,0.658578097820282,0,0.752203941345215,0.658930420875549,0,0.721686840057373,0.69221967458725,0.0313289538025856,0.721294224262238,0.691919803619385,0.0311831925064325,0.780864834785461,0.623921096324921,0,0.781219005584717,0.624257028102875,0,0.752203941345215,0.658930420875549,0.0311388354748487,0.751867830753326,0.658578097820282,0.999018847942352,0.0361221544444561,0.025624068453908,0.0311831925064325,0.780864834785461,0.623921096324921,0.0311388354748487,0.751867830753326,0.658578097820282,0.999022543430328,0.0348615273833275,0.027176633477211,0.999022543430328,0.0348615273833275,0.027176633477211,0.963508188724518,-0.199711158871651,-0.178234219551086,0.963543236255646,-0.207467511296272,-0.168942809104919,0.999018847942352,0.0361221544444561,0.025624068453908,0.943260610103607,-0.25781324505806,-0.209264874458313,0.963543236255646,-0.207467511296272,-0.168942809104919,0.963508188724518,-0.199711158871651,-0.178234219551086,0.943453192710876,-0.247676447033882,-0.220346108078957,0.948420166969299,-0.245995089411736,-0.199964061379433,
- 0.943260610103607,-0.25781324505806,-0.209264874458313,0.943453192710876,-0.247676447033882,-0.220346108078957,0.948398470878601,-0.236745998263359,-0.210930451750755,0.948398470878601,-0.236745998263359,-0.210930451750755,0.237337231636047,-0.730238318443298,-0.640642702579498,0.238145783543587,-0.758288443088531,-0.606864988803864,0.948420166969299,-0.245995089411736,-0.199964061379433,0,-0.781199336051941,-0.624281644821167,0.238145783543587,-0.758288443088531,-0.606864988803864,0.237337231636047,-0.730238318443298,-0.640642702579498,0,-0.752185463905334,-0.658951461315155,0.240235790610313,-0.831507802009583,-0.500880658626556,0.239320784807205,-0.809177339076996,-0.536616742610931,0,-0.833814859390259,-0.552044093608856,0,-0.856980979442596,-0.515348136425018,0.947953939437866,-0.263941586017609,-0.178096160292625,0.239320784807205,-0.809177339076996,-0.536616742610931,0.240235790610313,-0.831507802009583,-0.500880658626556,0.947988569736481,-0.271345883607864,-0.166401028633118,0.943167865276337,-0.283417463302612,-0.173519194126129,0.943383514881134,-0.275095045566559,-0.18533818423748,0.947953939437866,-0.263941586017609,-0.178096160292625,0.947988569736481,-0.271345883607864,-0.166401028633118,0.963216006755829,-0.228961199522018,-0.140682980418205,0.963189423084259,-0.222730875015259,-0.150522604584694,0.943383514881134,-0.275095045566559,-0.18533818423748,0.943167865276337,-0.283417463302612,-0.173519194126129,0.999024271965027,0.0382042042911053,0.0221577882766724,0.963189423084259,-0.222730875015259,-0.150522604584694,0.963216006755829,-0.228961199522018,-0.140682980418205,0.999018609523773,0.0392494350671768,0.0205256454646587,0.0314668864011765,0.856594026088715,0.515030682086945,0.0314082838594913,0.833442807197571,0.551712453365326,0.999024271965027,0.0382042042911053,0.0221577882766724,0.999018609523773,0.0392494350671768,0.0205256454646587,0,0.856993675231934,0.515326976776123,0,0.833826541900635,0.552026689052582,0.0314082838594913,0.833442807197571,0.551712453365326,0.0314668864011765,0.856594026088715,0.515030682086945,
- 0.0312862545251846,0.878126502037048,0.477404445409775,0,0.878575503826141,0.477603375911713,0,0.856993675231934,0.515326976776123,0.0314668864011765,0.856594026088715,0.515030682086945,0.99900883436203,0.0379611738026142,0.023240277543664,0.0312862545251846,0.878126502037048,0.477404445409775,0.0314668864011765,0.856594026088715,0.515030682086945,0.999018609523773,0.0392494350671768,0.0205256454646587,0.999018609523773,0.0392494350671768,0.0205256454646587,0.963216006755829,-0.228961199522018,-0.140682980418205,0.963205754756927,-0.237189576029778,-0.126395463943481,0.99900883436203,0.0379611738026142,0.023240277543664,0.94329309463501,-0.292761206626892,-0.156489610671997,0.963205754756927,-0.237189576029778,-0.126395463943481,0.963216006755829,-0.228961199522018,-0.140682980418205,0.943167865276337,-0.283417463302612,-0.173519194126129,0.947950303554535,-0.280914664268494,-0.149924159049988,0.94329309463501,-0.292761206626892,-0.156489610671997,0.943167865276337,-0.283417463302612,-0.173519194126129,0.947988569736481,-0.271345883607864,-0.166401028633118,0.947988569736481,-0.271345883607864,-0.166401028633118,0.240235790610313,-0.831507802009583,-0.500880658626556,0.239217162132263,-0.853381395339966,-0.463157773017883,0.947950303554535,-0.280914664268494,-0.149924159049988,0,-0.878583550453186,-0.477588623762131,0.239217162132263,-0.853381395339966,-0.463157773017883,0.240235790610313,-0.831507802009583,-0.500880658626556,0,-0.856980979442596,-0.515348136425018,0.94812399148941,-0.289227843284607,-0.131940096616745,0.238752856850624,-0.873716294765472,-0.423812329769135,0.238329887390137,-0.891012489795685,-0.386387854814529,0.948390424251556,-0.292046219110489,-0.123549930751324,0.0313314646482468,0.916629672050476,0.398507744073868,0,0.917101979255676,0.398652642965317,0,0.898730754852295,0.438500910997391,0.0313029810786247,0.898229122161865,0.438411384820938,0,-0.917111456394196,-0.398630857467651,0.238329887390137,-0.891012489795685,-0.386387854814529,0.238752856850624,-0.873716294765472,-0.423812329769135,
- 0,-0.898759841918945,-0.438441216945648,0.99899423122406,0.0362575948238373,0.0263819508254528,0.963323354721069,-0.244415491819382,-0.110767059028149,0.963499665260315,-0.246659621596336,-0.104055054485798,0.99903392791748,0.0390242300927639,0.0202086791396141,0.943387746810913,-0.305376648902893,-0.129477798938751,0.963499665260315,-0.246659621596336,-0.104055054485798,0.963323354721069,-0.244415491819382,-0.110767059028149,0.943323254585266,-0.30164510011673,-0.138389006257057,0.948390424251556,-0.292046219110489,-0.123549930751324,0.943387746810913,-0.305376648902893,-0.129477798938751,0.943323254585266,-0.30164510011673,-0.138389006257057,0.94812399148941,-0.289227843284607,-0.131940096616745,0.99903392791748,0.0390242300927639,0.0202086791396141,0.0313314646482468,0.916629672050476,0.398507744073868,0.0313029810786247,0.898229122161865,0.438411384820938,0.99899423122406,0.0362575948238373,0.0263819508254528,3.19198932174913e-007,0,-1,3.19198875331494e-007,0,-1,-2.42243206695142e-014,0,-1,-2.42243206695142e-014,0,-1,3.19198903753204e-007,0,-1,3.19198903753204e-007,0,-1,3.19198903753204e-007,0,-1,3.19198903753204e-007,0,-1,0,-0.973597526550293,-0.228271216154099,0.239319905638695,-0.945136904716492,-0.222355797886848,0.238699585199356,-0.934408187866211,-0.264393240213394,0,-0.962425589561462,-0.271545588970184,0.94819313287735,-0.305008560419083,-0.0888790339231491,0.238699585199356,-0.934408187866211,-0.264393240213394,0.239319905638695,-0.945136904716492,-0.222355797886848,0.947954595088959,-0.309349149465561,-0.0753992944955826,0.947954595088959,-0.309349149465561,-0.0753992944955826,0.943382978439331,-0.32232666015625,-0.0783200114965439,0.943318963050842,-0.318698704242706,-0.0926308184862137,0.94819313287735,-0.305008560419083,-0.0888790339231491,0.943382978439331,-0.32232666015625,-0.0783200114965439,0.963189840316772,-0.261130213737488,-0.0638459846377373,0.963379442691803,-0.257379233837128,-0.0752059742808342,0.943318963050842,-0.318698704242706,-0.0926308184862137,0.999021947383881,0.0431801602244377,0.00952222943305969,
- 0.963379442691803,-0.257379233837128,-0.0752059742808342,0.963189840316772,-0.261130213737488,-0.0638459846377373,0.999024212360382,0.0435208603739738,0.00751664116978645,0.999024212360382,0.0435208603739738,0.00751664116978645,0.0314062461256981,0.973133742809296,0.228088617324829,0.0312832966446877,0.961974382400513,0.2713423371315,0.999021947383881,0.0431801602244377,0.00952222943305969,0.0314062461256981,0.973133742809296,0.228088617324829,0,0.973602473735809,0.228250071406364,0,0.96243280172348,0.271519720554352,0.0312832966446877,0.961974382400513,0.2713423371315,0.247655227780342,-0.962698519229889,-0.108988516032696,0.24151736497879,-0.961019456386566,-0.134577348828316,0,-0.990414559841156,-0.138127222657204,0,-0.993704199790955,-0.112035691738129,0.948909819126129,-0.312173306941986,-0.0460202135145664,0.24151736497879,-0.961019456386566,-0.134577348828316,0.247655227780342,-0.962698519229889,-0.108988516032696,0.954603374004364,-0.295743376016617,-0.0356130935251713,0.93406867980957,-0.354828834533691,-0.0401526093482971,0.941300630569458,-0.334182590246201,-0.0476978532969952,0.948909819126129,-0.312173306941986,-0.0460202135145664,0.954603374004364,-0.295743376016617,-0.0356130935251713,0.968258440494537,-0.248305052518845,-0.0286388006061316,0.964186906814575,-0.262497961521149,-0.0379286594688892,0.941300630569458,-0.334182590246201,-0.0476978532969952,0.93406867980957,-0.354828834533691,-0.0401526093482971,0.99896764755249,0.0452889129519463,0.00352663244120777,0.964186906814575,-0.262497961521149,-0.0379286594688892,0.968258440494537,-0.248305052518845,-0.0286388006061316,0.998775601387024,0.0493926517665386,0.00279135117307305,0.030036672949791,0.994445621967316,0.100874811410904,0.0312561579048634,0.990936815738678,0.13064181804657,0.99896764755249,0.0452889129519463,0.00352663244120777,0.998775601387024,0.0493926517665386,0.00279135117307305,0,0.994888126850128,0.100983157753944,0,0.991418242454529,0.130728051066399,0.0312561579048634,0.990936815738678,0.13064181804657,0.030036672949791,0.994445621967316,0.100874811410904,
- 0,-0.962425589561462,-0.271545588970184,0.238699585199356,-0.934408187866211,-0.264393240213394,0.238145783543587,-0.921798169612885,-0.305900037288666,0,-0.949330270290375,-0.314280033111572,0.948420822620392,-0.30010986328125,-0.102136798202991,0.238145783543587,-0.921798169612885,-0.305900037288666,0.238699585199356,-0.934408187866211,-0.264393240213394,0.94819313287735,-0.305008560419083,-0.0888790339231491,0.94819313287735,-0.305008560419083,-0.0888790339231491,0.943318963050842,-0.318698704242706,-0.0926308184862137,0.943260431289673,-0.314424604177475,-0.10675735771656,0.948420822620392,-0.30010986328125,-0.102136798202991,0.943318963050842,-0.318698704242706,-0.0926308184862137,0.963379442691803,-0.257379233837128,-0.0752059742808342,0.963543832302094,-0.25320965051651,-0.086418405175209,0.943260431289673,-0.314424604177475,-0.10675735771656,0.999018728733063,0.0427716262638569,0.0114901987835765,0.963543832302094,-0.25320965051651,-0.086418405175209,0.963379442691803,-0.257379233837128,-0.0752059742808342,0.999021947383881,0.0431801602244377,0.00952222943305969,0.999021947383881,0.0431801602244377,0.00952222943305969,0.0312832966446877,0.961974382400513,0.2713423371315,0.0311815179884434,0.948892295360565,0.314056038856506,0.999018728733063,0.0427716262638569,0.0114901987835765,0.0312832966446877,0.961974382400513,0.2713423371315,0,0.96243280172348,0.271519720554352,0,0.94934093952179,0.314248085021973,0.0311815179884434,0.948892295360565,0.314056038856506,0,-0.934156477451324,-0.356863617897034,0.237336978316307,-0.907218337059021,-0.347312450408936,0.238329887390137,-0.891012489795685,-0.386387854814529,0,-0.917111456394196,-0.398630857467651,0.948390424251556,-0.292046219110489,-0.123549930751324,0.238329887390137,-0.891012489795685,-0.386387854814529,0.237336978316307,-0.907218337059021,-0.347312450408936,0.94839882850647,-0.295243799686432,-0.115631677210331,0.94839882850647,-0.295243799686432,-0.115631677210331,0.943452775478363,-0.308765351772308,-0.120668649673462,0.943387746810913,-0.305376648902893,-0.129477798938751,
- 0.948390424251556,-0.292046219110489,-0.123549930751324,0.943452775478363,-0.308765351772308,-0.120668649673462,0.963508546352386,-0.249161705374718,-0.0978247597813606,0.963499665260315,-0.246659621596336,-0.104055054485798,0.943387746810913,-0.305376648902893,-0.129477798938751,0.99903392791748,0.0390242300927639,0.0202086791396141,0.963499665260315,-0.246659621596336,-0.104055054485798,0.963508546352386,-0.249161705374718,-0.0978247597813606,0.999022543430328,0.0421280562877655,0.0133838523179293,0.999022543430328,0.0421280562877655,0.0133838523179293,0.0311394035816193,0.933728635311127,0.356624692678452,0.0313314646482468,0.916629672050476,0.398507744073868,0.99903392791748,0.0390242300927639,0.0202086791396141,0.0311394035816193,0.933728635311127,0.356624692678452,0,0.934166073799133,0.356838494539261,0,0.917101979255676,0.398652642965317,0.0313314646482468,0.916629672050476,0.398507744073868,0.0311815179884434,0.948892295360565,0.314056038856506,0,0.94934093952179,0.314248085021973,0,0.934166073799133,0.356838494539261,0.0311394035816193,0.933728635311127,0.356624692678452,0.999018728733063,0.0427716262638569,0.0114901987835765,0.0311815179884434,0.948892295360565,0.314056038856506,0.0311394035816193,0.933728635311127,0.356624692678452,0.999022543430328,0.0421280562877655,0.0133838523179293,0.999022543430328,0.0421280562877655,0.0133838523179293,0.963508546352386,-0.249161705374718,-0.0978247597813606,0.963543832302094,-0.25320965051651,-0.086418405175209,0.999018728733063,0.0427716262638569,0.0114901987835765,0.943260431289673,-0.314424604177475,-0.10675735771656,0.963543832302094,-0.25320965051651,-0.086418405175209,0.963508546352386,-0.249161705374718,-0.0978247597813606,0.943452775478363,-0.308765351772308,-0.120668649673462,0.948420822620392,-0.30010986328125,-0.102136798202991,0.943260431289673,-0.314424604177475,-0.10675735771656,0.943452775478363,-0.308765351772308,-0.120668649673462,0.94839882850647,-0.295243799686432,-0.115631677210331,0.94839882850647,-0.295243799686432,-0.115631677210331,0.237336978316307,-0.907218337059021,-0.347312450408936,
- 0.238145783543587,-0.921798169612885,-0.305900037288666,0.948420822620392,-0.30010986328125,-0.102136798202991,0,-0.949330270290375,-0.314280033111572,0.238145783543587,-0.921798169612885,-0.305900037288666,0.237336978316307,-0.907218337059021,-0.347312450408936,0,-0.934156477451324,-0.356863617897034,0.240233525633812,-0.953674018383026,-0.181090012192726,0.239319905638695,-0.945136904716492,-0.222355797886848,0,-0.973597526550293,-0.228271216154099,0,-0.982584714889526,-0.185815066099167,0.947954595088959,-0.309349149465561,-0.0753992944955826,0.239319905638695,-0.945136904716492,-0.222355797886848,0.240233525633812,-0.953674018383026,-0.181090012192726,0.94798868894577,-0.312235027551651,-0.061861477792263,0.943167865276337,-0.326027512550354,-0.0643463730812073,0.943382978439331,-0.32232666015625,-0.0783200114965439,0.947954595088959,-0.309349149465561,-0.0753992944955826,0.94798868894577,-0.312235027551651,-0.061861477792263,0.963216423988342,-0.263557255268097,-0.0524553060531616,0.963189840316772,-0.261130213737488,-0.0638459846377373,0.943382978439331,-0.32232666015625,-0.0783200114965439,0.943167865276337,-0.326027512550354,-0.0643463730812073,0.999024212360382,0.0435208603739738,0.00751664116978645,0.963189840316772,-0.261130213737488,-0.0638459846377373,0.963216423988342,-0.263557255268097,-0.0524553060531616,0.999018549919128,0.0439344197511673,0.00562306586652994,0.0314663946628571,0.982112050056458,0.185649707913399,0.0314062461256981,0.973133742809296,0.228088617324829,0.999024212360382,0.0435208603739738,0.00751664116978645,0.999018549919128,0.0439344197511673,0.00562306586652994,0,0.982589721679688,0.185788884758949,0,0.973602473735809,0.228250071406364,0.0314062461256981,0.973133742809296,0.228088617324829,0.0314663946628571,0.982112050056458,0.185649707913399,0.0312561579048634,0.990936815738678,0.13064181804657,0,0.991418242454529,0.130728051066399,0,0.982589721679688,0.185788884758949,0.0314663946628571,0.982112050056458,0.185649707913399,0.99896764755249,0.0452889129519463,0.00352663244120777,
- 0.0312561579048634,0.990936815738678,0.13064181804657,0.0314663946628571,0.982112050056458,0.185649707913399,0.999018549919128,0.0439344197511673,0.00562306586652994,0.999018549919128,0.0439344197511673,0.00562306586652994,0.963216423988342,-0.263557255268097,-0.0524553060531616,0.964186906814575,-0.262497961521149,-0.0379286594688892,0.99896764755249,0.0452889129519463,0.00352663244120777,0.941300630569458,-0.334182590246201,-0.0476978532969952,0.964186906814575,-0.262497961521149,-0.0379286594688892,0.963216423988342,-0.263557255268097,-0.0524553060531616,0.943167865276337,-0.326027512550354,-0.0643463730812073,0.948909819126129,-0.312173306941986,-0.0460202135145664,0.941300630569458,-0.334182590246201,-0.0476978532969952,0.943167865276337,-0.326027512550354,-0.0643463730812073,0.94798868894577,-0.312235027551651,-0.061861477792263,0.94798868894577,-0.312235027551651,-0.061861477792263,0.240233525633812,-0.953674018383026,-0.181090012192726,0.24151736497879,-0.961019456386566,-0.134577348828316,0.948909819126129,-0.312173306941986,-0.0460202135145664,0,-0.990414559841156,-0.138127222657204,0.24151736497879,-0.961019456386566,-0.134577348828316,0.240233525633812,-0.953674018383026,-0.181090012192726,0,-0.982584714889526,-0.185815066099167,-0.948434293270111,-0.129914671182632,-0.289127051830292,-0.948335111141205,-0.136057525873184,-0.286616444587708,-0.236406177282333,-0.423447400331497,-0.874530971050262,-0.236590042710304,-0.405198097229004,-0.883085370063782,-0.0310863126069307,0.436300069093704,0.8992640376091,-0.0311261396855116,0.417564332485199,0.908114075660706,0,0.417695373296738,0.908587098121643,0,0.436469197273254,0.899719178676605,0,-0.436448305845261,-0.899729311466217,0,-0.417692959308624,-0.908588230609894,-0.236590042710304,-0.405198097229004,-0.883085370063782,-0.236406177282333,-0.423447400331497,-0.874530971050262,-0.999031364917755,0.0206264425069094,0.0388708189129829,-0.999028265476227,0.0214586816728115,0.0384970046579838,-0.963457882404327,-0.114703543484211,-0.242057785391808,-0.963530957698822,-0.109535805881023,-0.244151592254639,
- -0.943700730800629,-0.142067030072212,-0.298740386962891,-0.943642318248749,-0.135855779051781,-0.301798731088638,-0.963530957698822,-0.109535805881023,-0.244151592254639,-0.963457882404327,-0.114703543484211,-0.242057785391808,-0.948335111141205,-0.136057525873184,-0.286616444587708,-0.948434293270111,-0.129914671182632,-0.289127051830292,-0.943642318248749,-0.135855779051781,-0.301798731088638,-0.943700730800629,-0.142067030072212,-0.298740386962891,-0.999028265476227,0.0214586816728115,0.0384970046579838,-0.999031364917755,0.0206264425069094,0.0388708189129829,-0.0311261396855116,0.417564332485199,0.908114075660706,-0.0310863126069307,0.436300069093704,0.8992640376091,3.39388677161878e-008,-0.91704785823822,0.398777097463608,2.07908469747053e-005,-0.917047917842865,0.398777097463608,2.07908451557159e-005,-0.91704785823822,0.39877712726593,2.07908451557159e-005,-0.917047917842865,0.398777097463608,2.07908451557159e-005,-0.917047917842865,0.398777097463608,2.07908469747053e-005,-0.91704785823822,0.398777097463608,2.07908469747053e-005,-0.917047917842865,0.39877712726593,3.39388677161878e-008,-0.91704785823822,0.398777097463608,0,-0.59032815694809,-0.807163298130035,0,-0.553673803806305,-0.832733631134033,-0.238701999187469,-0.537066102027893,-0.809062063694,-0.239320695400238,-0.572579085826874,-0.784142017364502,-0.948192477226257,-0.173634961247444,-0.266048789024353,-0.947953522205353,-0.185706824064255,-0.258644670248032,-0.239320695400238,-0.572579085826874,-0.784142017364502,-0.238701999187469,-0.537066102027893,-0.809062063694,-0.947953522205353,-0.185706824064255,-0.258644670248032,-0.948192477226257,-0.173634961247444,-0.266048789024353,-0.943319082260132,-0.181581258773804,-0.277808368206024,-0.943384289741516,-0.19365106523037,-0.269305288791656,-0.943384289741516,-0.19365106523037,-0.269305288791656,-0.943319082260132,-0.181581258773804,-0.277808368206024,-0.963378548622131,-0.146387085318565,-0.224660649895668,-0.963189005851746,-0.156630903482437,-0.218480303883553,-0.999021947383881,0.0265709180384874,0.0353426225483418,
- -0.999024212360382,0.0281354449689388,0.0340426824986935,-0.963189005851746,-0.156630903482437,-0.218480303883553,-0.963378548622131,-0.146387085318565,-0.224660649895668,-0.999024212360382,0.0281354449689388,0.0340426824986935,-0.999021947383881,0.0265709180384874,0.0353426225483418,-0.0312848798930645,0.553465187549591,0.832284569740295,-0.0314058065414429,0.590096712112427,0.80672150850296,-0.0314058065414429,0.590096712112427,0.80672150850296,-0.0312848798930645,0.553465187549591,0.832284569740295,0,0.553697764873505,0.832717776298523,0,0.590347409248352,0.807149231433868,-0.238752096891403,-0.672265529632568,-0.700754165649414,0,-0.690674483776093,-0.723165690898895,0,-0.658164143562317,-0.752874493598938,-0.239213615655899,-0.639538407325745,-0.730593800544739,-0.947949528694153,-0.211403012275696,-0.238118723034859,-0.948123753070831,-0.225438922643662,-0.224139586091042,-0.238752096891403,-0.672265529632568,-0.700754165649414,-0.239213615655899,-0.639538407325745,-0.730593800544739,-0.943323969841003,-0.23484368622303,-0.234496057033539,-0.948123753070831,-0.225438922643662,-0.224139586091042,-0.947949528694153,-0.211403012275696,-0.238118723034859,-0.943293809890747,-0.220231011509895,-0.248384982347488,-0.963322699069977,-0.190764307975769,-0.188728287816048,-0.943323969841003,-0.23484368622303,-0.234496057033539,-0.943293809890747,-0.220231011509895,-0.248384982347488,-0.963205754756927,-0.178563222289085,-0.200873121619225,-0.99900895357132,0.0275335125625134,0.0349714085459709,-0.998994171619415,0.0248478930443525,0.0373248010873795,-0.963322699069977,-0.190764307975769,-0.188728287816048,-0.963205754756927,-0.178563222289085,-0.200873121619225,-0.0313021317124367,0.690187513828278,0.722953379154205,-0.998994171619415,0.0248478930443525,0.0373248010873795,-0.99900895357132,0.0275335125625134,0.0349714085459709,-0.0312881357967854,0.657797336578369,0.752544820308685,0,0.690626740455627,0.723211407661438,-0.0313021317124367,0.690187513828278,0.722953379154205,-0.0312881357967854,0.657797336578369,0.752544820308685,
- 0,0.658149421215057,0.752887368202209,0,-0.553673803806305,-0.832733631134033,0,-0.515910685062408,-0.856642305850983,-0.238148659467697,-0.500470399856567,-0.832354784011841,-0.238701999187469,-0.537066102027893,-0.809062063694,-0.948420166969299,-0.161284774541855,-0.272922188043594,-0.948192477226257,-0.173634961247444,-0.266048789024353,-0.238701999187469,-0.537066102027893,-0.809062063694,-0.238148659467697,-0.500470399856567,-0.832354784011841,-0.948192477226257,-0.173634961247444,-0.266048789024353,-0.948420166969299,-0.161284774541855,-0.272922188043594,-0.943260431289673,-0.16913928091526,-0.285747349262238,-0.943319082260132,-0.181581258773804,-0.277808368206024,-0.943319082260132,-0.181581258773804,-0.277808368206024,-0.943260431289673,-0.16913928091526,-0.285747349262238,-0.963542699813843,-0.135922312736511,-0.230457350611687,-0.963378548622131,-0.146387085318565,-0.224660649895668,-0.999018847942352,0.0249795448035002,0.0365703217685223,-0.999021947383881,0.0265709180384874,0.0353426225483418,-0.963378548622131,-0.146387085318565,-0.224660649895668,-0.963542699813843,-0.135922312736511,-0.230457350611687,-0.999021947383881,0.0265709180384874,0.0353426225483418,-0.999018847942352,0.0249795448035002,0.0365703217685223,-0.0311826169490814,0.515721797943115,0.856188416481018,-0.0312848798930645,0.553465187549591,0.832284569740295,-0.0312848798930645,0.553465187549591,0.832284569740295,-0.0311826169490814,0.515721797943115,0.856188416481018,0,0.515937387943268,0.856626272201538,0,0.553697764873505,0.832717776298523,0,-0.476668149232864,-0.879083275794983,0,-0.436448305845261,-0.899729311466217,-0.236406177282333,-0.423447400331497,-0.874530971050262,-0.237339273095131,-0.462441265583038,-0.854293942451477,-0.948335111141205,-0.136057525873184,-0.286616444587708,-0.948398113250732,-0.148804858326912,-0.279996573925018,-0.237339273095131,-0.462441265583038,-0.854293942451477,-0.236406177282333,-0.423447400331497,-0.874530971050262,-0.948398113250732,-0.148804858326912,-0.279996573925018,-0.948335111141205,-0.136057525873184,-0.286616444587708,
- -0.943700730800629,-0.142067030072212,-0.298740386962891,-0.943452835083008,-0.155787333846092,-0.292621105909348,-0.943452835083008,-0.155787333846092,-0.292621105909348,-0.943700730800629,-0.142067030072212,-0.298740386962891,-0.963457882404327,-0.114703543484211,-0.242057785391808,-0.963507533073425,-0.125423818826675,-0.236478731036186,-0.999028265476227,0.0214586816728115,0.0384970046579838,-0.999022662639618,0.0232581440359354,0.0375884436070919,-0.963507533073425,-0.125423818826675,-0.236478731036186,-0.963457882404327,-0.114703543484211,-0.242057785391808,-0.999022662639618,0.0232581440359354,0.0375884436070919,-0.999028265476227,0.0214586816728115,0.0384970046579838,-0.0310863126069307,0.436300069093704,0.8992640376091,-0.0311392489820719,0.476498544216156,0.87862366437912,-0.0311392489820719,0.476498544216156,0.87862366437912,-0.0310863126069307,0.436300069093704,0.8992640376091,0,0.436469197273254,0.899719178676605,0,0.476691365242004,0.879070699214935,-0.0311826169490814,0.515721797943115,0.856188416481018,-0.0311392489820719,0.476498544216156,0.87862366437912,0,0.476691365242004,0.879070699214935,0,0.515937387943268,0.856626272201538,-0.999018847942352,0.0249795448035002,0.0365703217685223,-0.999022662639618,0.0232581440359354,0.0375884436070919,-0.0311392489820719,0.476498544216156,0.87862366437912,-0.0311826169490814,0.515721797943115,0.856188416481018,-0.999022662639618,0.0232581440359354,0.0375884436070919,-0.999018847942352,0.0249795448035002,0.0365703217685223,-0.963542699813843,-0.135922312736511,-0.230457350611687,-0.963507533073425,-0.125423818826675,-0.236478731036186,-0.943260431289673,-0.16913928091526,-0.285747349262238,-0.943452835083008,-0.155787333846092,-0.292621105909348,-0.963507533073425,-0.125423818826675,-0.236478731036186,-0.963542699813843,-0.135922312736511,-0.230457350611687,-0.948420166969299,-0.161284774541855,-0.272922188043594,-0.948398113250732,-0.148804858326912,-0.279996573925018,-0.943452835083008,-0.155787333846092,-0.292621105909348,-0.943260431289673,-0.16913928091526,-0.285747349262238,
- -0.948398113250732,-0.148804858326912,-0.279996573925018,-0.948420166969299,-0.161284774541855,-0.272922188043594,-0.238148659467697,-0.500470399856567,-0.832354784011841,-0.237339273095131,-0.462441265583038,-0.854293942451477,0,-0.515910685062408,-0.856642305850983,0,-0.476668149232864,-0.879083275794983,-0.237339273095131,-0.462441265583038,-0.854293942451477,-0.238148659467697,-0.500470399856567,-0.832354784011841,-0.240231513977051,-0.605926692485809,-0.758381009101868,0,-0.624792039394379,-0.780791163444519,0,-0.59032815694809,-0.807163298130035,-0.239320695400238,-0.572579085826874,-0.784142017364502,-0.947953522205353,-0.185706824064255,-0.258644670248032,-0.947987020015717,-0.196712285280228,-0.250249564647675,-0.240231513977051,-0.605926692485809,-0.758381009101868,-0.239320695400238,-0.572579085826874,-0.784142017364502,-0.943169116973877,-0.205557033419609,-0.26110965013504,-0.947987020015717,-0.196712285280228,-0.250249564647675,-0.947953522205353,-0.185706824064255,-0.258644670248032,-0.943384289741516,-0.19365106523037,-0.269305288791656,-0.963215827941895,-0.1658885627985,-0.211415186524391,-0.943169116973877,-0.205557033419609,-0.26110965013504,-0.943384289741516,-0.19365106523037,-0.269305288791656,-0.963189005851746,-0.156630903482437,-0.218480303883553,-0.999024212360382,0.0281354449689388,0.0340426824986935,-0.999018669128418,0.0296822637319565,0.0328748412430286,-0.963215827941895,-0.1658885627985,-0.211415186524391,-0.963189005851746,-0.156630903482437,-0.218480303883553,-0.0314668565988541,0.624539256095886,0.780359148979187,-0.999018669128418,0.0296822637319565,0.0328748412430286,-0.999024212360382,0.0281354449689388,0.0340426824986935,-0.0314058065414429,0.590096712112427,0.80672150850296,0,0.624811232089996,0.780775845050812,-0.0314668565988541,0.624539256095886,0.780359148979187,-0.0314058065414429,0.590096712112427,0.80672150850296,0,0.590347409248352,0.807149231433868,-0.0312881357967854,0.657797336578369,0.752544820308685,-0.0314668565988541,0.624539256095886,0.780359148979187,0,0.624811232089996,0.780775845050812,
- 0,0.658149421215057,0.752887368202209,-0.99900895357132,0.0275335125625134,0.0349714085459709,-0.999018669128418,0.0296822637319565,0.0328748412430286,-0.0314668565988541,0.624539256095886,0.780359148979187,-0.0312881357967854,0.657797336578369,0.752544820308685,-0.999018669128418,0.0296822637319565,0.0328748412430286,-0.99900895357132,0.0275335125625134,0.0349714085459709,-0.963205754756927,-0.178563222289085,-0.200873121619225,-0.963215827941895,-0.1658885627985,-0.211415186524391,-0.943293809890747,-0.220231011509895,-0.248384982347488,-0.943169116973877,-0.205557033419609,-0.26110965013504,-0.963215827941895,-0.1658885627985,-0.211415186524391,-0.963205754756927,-0.178563222289085,-0.200873121619225,-0.947949528694153,-0.211403012275696,-0.238118723034859,-0.947987020015717,-0.196712285280228,-0.250249564647675,-0.943169116973877,-0.205557033419609,-0.26110965013504,-0.943293809890747,-0.220231011509895,-0.248384982347488,-0.947987020015717,-0.196712285280228,-0.250249564647675,-0.947949528694153,-0.211403012275696,-0.238118723034859,-0.239213615655899,-0.639538407325745,-0.730593800544739,-0.240231513977051,-0.605926692485809,-0.758381009101868,0,-0.658164143562317,-0.752874493598938,0,-0.624792039394379,-0.780791163444519,-0.240231513977051,-0.605926692485809,-0.758381009101868,-0.239213615655899,-0.639538407325745,-0.730593800544739,-0.948123753070831,-0.225438922643662,-0.224139586091042,-0.948389649391174,-0.230997070670128,-0.217249482870102,-0.238329499959946,-0.701475143432617,-0.671663403511047,-0.238752096891403,-0.672265529632568,-0.700754165649414,-0.0313289016485214,0.721294343471527,0.691919922828674,-0.0313021317124367,0.690187513828278,0.722953379154205,0,0.690626740455627,0.723211407661438,0,0.721686840057373,0.69221967458725,0,-0.721701443195343,-0.692204594612122,0,-0.690674483776093,-0.723165690898895,-0.238752096891403,-0.672265529632568,-0.700754165649414,-0.238329499959946,-0.701475143432617,-0.671663403511047,-0.998994171619415,0.0248478930443525,0.0373248010873795,-0.999033868312836,0.0295833852142096,0.0324973948299885,
- -0.963499307632446,-0.195199638605118,-0.1832105666399,-0.963322699069977,-0.190764307975769,-0.188728287816048,-0.943387985229492,-0.241439193487167,-0.227434173226357,-0.943323969841003,-0.23484368622303,-0.234496057033539,-0.963322699069977,-0.190764307975769,-0.188728287816048,-0.963499307632446,-0.195199638605118,-0.1832105666399,-0.948389649391174,-0.230997070670128,-0.217249482870102,-0.948123753070831,-0.225438922643662,-0.224139586091042,-0.943323969841003,-0.23484368622303,-0.234496057033539,-0.943387985229492,-0.241439193487167,-0.227434173226357,-0.999033868312836,0.0295833852142096,0.0324973948299885,-0.998994171619415,0.0248478930443525,0.0373248010873795,-0.0313021317124367,0.690187513828278,0.722953379154205,-0.0313289016485214,0.721294343471527,0.691919922828674,0,-0.833814859390259,-0.552044093608856,0,-0.808314561843872,-0.588750839233398,-0.238699182868004,-0.784522593021393,-0.572317242622375,-0.239320814609528,-0.809177339076996,-0.536616742610931,-0.948192894458771,-0.255190342664719,-0.189230471849442,-0.947953939437866,-0.263941645622253,-0.178096160292625,-0.239320814609528,-0.809177339076996,-0.536616742610931,-0.238699182868004,-0.784522593021393,-0.572317242622375,-0.947953939437866,-0.263941645622253,-0.178096160292625,-0.948192894458771,-0.255190342664719,-0.189230471849442,-0.943319141864777,-0.266725689172745,-0.19750040769577,-0.943383455276489,-0.275095194578171,-0.18533818423748,-0.943383455276489,-0.275095194578171,-0.18533818423748,-0.943319141864777,-0.266725689172745,-0.19750040769577,-0.963378667831421,-0.215270787477493,-0.1598751693964,-0.963189423084259,-0.222730919718742,-0.150522619485855,-0.999021887779236,0.037188433110714,0.0239202696830034,-0.999024271965027,0.0382042489945889,0.0221578031778336,-0.963189423084259,-0.222730919718742,-0.150522619485855,-0.963378667831421,-0.215270787477493,-0.1598751693964,-0.999024271965027,0.0382042489945889,0.0221578031778336,-0.999021887779236,0.037188433110714,0.0239202696830034,-0.0312860943377018,0.807961940765381,0.588403642177582,
- -0.0314083062112331,0.833442807197571,0.551712453365326,-0.0314083062112331,0.833442807197571,0.551712453365326,-0.0312860943377018,0.807961940765381,0.588403642177582,0,0.808330357074738,0.588729083538055,0,0.833826541900635,0.552026689052582,-0.238752812147141,-0.873716294765472,-0.423812329769135,0,-0.898759841918945,-0.438441216945648,0,-0.878583550453186,-0.477588623762131,-0.239217132329941,-0.853381395339966,-0.463157773017883,-0.947950303554535,-0.280914694070816,-0.149924159049988,-0.948123931884766,-0.289227932691574,-0.131940081715584,-0.238752812147141,-0.873716294765472,-0.423812329769135,-0.239217132329941,-0.853381395339966,-0.463157773017883,-0.943323254585266,-0.301645219326019,-0.138389006257057,-0.948123931884766,-0.289227932691574,-0.131940081715584,-0.947950303554535,-0.280914694070816,-0.149924159049988,-0.94329309463501,-0.292761206626892,-0.156489640474319,-0.963323354721069,-0.244415536522865,-0.110767059028149,-0.943323254585266,-0.301645219326019,-0.138389006257057,-0.94329309463501,-0.292761206626892,-0.156489640474319,-0.963205754756927,-0.237189531326294,-0.126395463943481,-0.999008893966675,0.0379612371325493,0.0232402924448252,-0.99899423122406,0.0362575836479664,0.0263819508254528,-0.963323354721069,-0.244415536522865,-0.110767059028149,-0.963205754756927,-0.237189531326294,-0.126395463943481,-0.0313029922544956,0.89822906255722,0.438411325216293,-0.99899423122406,0.0362575836479664,0.0263819508254528,-0.999008893966675,0.0379612371325493,0.0232402924448252,-0.0312862768769264,0.878126561641693,0.477404445409775,0,0.898730754852295,0.438500910997391,-0.0313029922544956,0.89822906255722,0.438411325216293,-0.0312862768769264,0.878126561641693,0.477404445409775,0,0.878575503826141,0.477603375911713,0,-0.808314561843872,-0.588750839233398,0,-0.781199336051941,-0.624281644821167,-0.23814582824707,-0.758288443088531,-0.606865048408508,-0.238699182868004,-0.784522593021393,-0.572317242622375,-0.948420107364655,-0.245995119214058,-0.199964061379433,-0.948192894458771,-0.255190342664719,-0.189230471849442,
- -0.238699182868004,-0.784522593021393,-0.572317242622375,-0.23814582824707,-0.758288443088531,-0.606865048408508,-0.948192894458771,-0.255190342664719,-0.189230471849442,-0.948420107364655,-0.245995119214058,-0.199964061379433,-0.943260610103607,-0.257813334465027,-0.209264874458313,-0.943319141864777,-0.266725689172745,-0.19750040769577,-0.943319141864777,-0.266725689172745,-0.19750040769577,-0.943260610103607,-0.257813334465027,-0.209264874458313,-0.963543295860291,-0.207467451691628,-0.168942779302597,-0.963378667831421,-0.215270787477493,-0.1598751693964,-0.999018847942352,0.0361220985651016,0.0256240610033274,-0.999021887779236,0.037188433110714,0.0239202696830034,-0.963378667831421,-0.215270787477493,-0.1598751693964,-0.963543295860291,-0.207467451691628,-0.168942779302597,-0.999021887779236,0.037188433110714,0.0239202696830034,-0.999018847942352,0.0361220985651016,0.0256240610033274,-0.0311831776052713,0.780864834785461,0.623921096324921,-0.0312860943377018,0.807961940765381,0.588403642177582,-0.0312860943377018,0.807961940765381,0.588403642177582,-0.0311831776052713,0.780864834785461,0.623921096324921,0,0.781219005584717,0.624257028102875,0,0.808330357074738,0.588729083538055,0,-0.752185463905334,-0.658951461315155,0,-0.721701443195343,-0.692204594612122,-0.238329499959946,-0.701475143432617,-0.671663403511047,-0.237337231636047,-0.730238318443298,-0.640642702579498,-0.948389649391174,-0.230997070670128,-0.217249482870102,-0.948398530483246,-0.236745953559875,-0.210930451750755,-0.237337231636047,-0.730238318443298,-0.640642702579498,-0.238329499959946,-0.701475143432617,-0.671663403511047,-0.948398530483246,-0.236745953559875,-0.210930451750755,-0.948389649391174,-0.230997070670128,-0.217249482870102,-0.943387985229492,-0.241439193487167,-0.227434173226357,-0.943453252315521,-0.247676387429237,-0.220346078276634,-0.943453252315521,-0.247676387429237,-0.220346078276634,-0.943387985229492,-0.241439193487167,-0.227434173226357,-0.963499307632446,-0.195199638605118,-0.1832105666399,-0.963508188724518,-0.199711203575134,-0.178234204649925,
- -0.999033868312836,0.0295833852142096,0.0324973948299885,-0.999022543430328,0.0348613746464252,0.0271766185760498,-0.963508188724518,-0.199711203575134,-0.178234204649925,-0.963499307632446,-0.195199638605118,-0.1832105666399,-0.999022543430328,0.0348613746464252,0.0271766185760498,-0.999033868312836,0.0295833852142096,0.0324973948299885,-0.0313289016485214,0.721294343471527,0.691919922828674,-0.0311387982219458,0.751867890357971,0.658578157424927,-0.0311387982219458,0.751867890357971,0.658578157424927,-0.0313289016485214,0.721294343471527,0.691919922828674,0,0.721686840057373,0.69221967458725,0,0.752203941345215,0.658930420875549,-0.0311831776052713,0.780864834785461,0.623921096324921,-0.0311387982219458,0.751867890357971,0.658578157424927,0,0.752203941345215,0.658930420875549,0,0.781219005584717,0.624257028102875,-0.999018847942352,0.0361220985651016,0.0256240610033274,-0.999022543430328,0.0348613746464252,0.0271766185760498,-0.0311387982219458,0.751867890357971,0.658578157424927,-0.0311831776052713,0.780864834785461,0.623921096324921,-0.999022543430328,0.0348613746464252,0.0271766185760498,-0.999018847942352,0.0361220985651016,0.0256240610033274,-0.963543295860291,-0.207467451691628,-0.168942779302597,-0.963508188724518,-0.199711203575134,-0.178234204649925,-0.943260610103607,-0.257813334465027,-0.209264874458313,-0.943453252315521,-0.247676387429237,-0.220346078276634,-0.963508188724518,-0.199711203575134,-0.178234204649925,-0.963543295860291,-0.207467451691628,-0.168942779302597,-0.948420107364655,-0.245995119214058,-0.199964061379433,-0.948398530483246,-0.236745953559875,-0.210930451750755,-0.943453252315521,-0.247676387429237,-0.220346078276634,-0.943260610103607,-0.257813334465027,-0.209264874458313,-0.948398530483246,-0.236745953559875,-0.210930451750755,-0.948420107364655,-0.245995119214058,-0.199964061379433,-0.23814582824707,-0.758288443088531,-0.606865048408508,-0.237337231636047,-0.730238318443298,-0.640642702579498,0,-0.781199336051941,-0.624281644821167,0,-0.752185463905334,-0.658951461315155,-0.237337231636047,-0.730238318443298,-0.640642702579498,
- -0.23814582824707,-0.758288443088531,-0.606865048408508,-0.240235790610313,-0.831507802009583,-0.500880658626556,0,-0.856980979442596,-0.515348136425018,0,-0.833814859390259,-0.552044093608856,-0.239320814609528,-0.809177339076996,-0.536616742610931,-0.947953939437866,-0.263941645622253,-0.178096160292625,-0.947988569736481,-0.271345883607864,-0.166401043534279,-0.240235790610313,-0.831507802009583,-0.500880658626556,-0.239320814609528,-0.809177339076996,-0.536616742610931,-0.943167865276337,-0.283417493104935,-0.173519194126129,-0.947988569736481,-0.271345883607864,-0.166401043534279,-0.947953939437866,-0.263941645622253,-0.178096160292625,-0.943383455276489,-0.275095194578171,-0.18533818423748,-0.963216006755829,-0.228961125016212,-0.140682965517044,-0.943167865276337,-0.283417493104935,-0.173519194126129,-0.943383455276489,-0.275095194578171,-0.18533818423748,-0.963189423084259,-0.222730919718742,-0.150522619485855,-0.999024271965027,0.0382042489945889,0.0221578031778336,-0.999018609523773,0.0392494350671768,0.020525649189949,-0.963216006755829,-0.228961125016212,-0.140682965517044,-0.963189423084259,-0.222730919718742,-0.150522619485855,-0.0314669050276279,0.85659396648407,0.515030682086945,-0.999018609523773,0.0392494350671768,0.020525649189949,-0.999024271965027,0.0382042489945889,0.0221578031778336,-0.0314083062112331,0.833442807197571,0.551712453365326,0,0.856993675231934,0.515326976776123,-0.0314669050276279,0.85659396648407,0.515030682086945,-0.0314083062112331,0.833442807197571,0.551712453365326,0,0.833826541900635,0.552026689052582,-0.0312862768769264,0.878126561641693,0.477404445409775,-0.0314669050276279,0.85659396648407,0.515030682086945,0,0.856993675231934,0.515326976776123,0,0.878575503826141,0.477603375911713,-0.999008893966675,0.0379612371325493,0.0232402924448252,-0.999018609523773,0.0392494350671768,0.020525649189949,-0.0314669050276279,0.85659396648407,0.515030682086945,-0.0312862768769264,0.878126561641693,0.477404445409775,-0.999018609523773,0.0392494350671768,0.020525649189949,-0.999008893966675,0.0379612371325493,0.0232402924448252,
- -0.963205754756927,-0.237189531326294,-0.126395463943481,-0.963216006755829,-0.228961125016212,-0.140682965517044,-0.94329309463501,-0.292761206626892,-0.156489640474319,-0.943167865276337,-0.283417493104935,-0.173519194126129,-0.963216006755829,-0.228961125016212,-0.140682965517044,-0.963205754756927,-0.237189531326294,-0.126395463943481,-0.947950303554535,-0.280914694070816,-0.149924159049988,-0.947988569736481,-0.271345883607864,-0.166401043534279,-0.943167865276337,-0.283417493104935,-0.173519194126129,-0.94329309463501,-0.292761206626892,-0.156489640474319,-0.947988569736481,-0.271345883607864,-0.166401043534279,-0.947950303554535,-0.280914694070816,-0.149924159049988,-0.239217132329941,-0.853381395339966,-0.463157773017883,-0.240235790610313,-0.831507802009583,-0.500880658626556,0,-0.878583550453186,-0.477588623762131,0,-0.856980979442596,-0.515348136425018,-0.240235790610313,-0.831507802009583,-0.500880658626556,-0.239217132329941,-0.853381395339966,-0.463157773017883,-0.948123931884766,-0.289227932691574,-0.131940081715584,-0.948390424251556,-0.292046278715134,-0.123549930751324,-0.238329872488976,-0.891012489795685,-0.386387944221497,-0.238752812147141,-0.873716294765472,-0.423812329769135,-0.0313314720988274,0.916629672050476,0.398507684469223,-0.0313029922544956,0.89822906255722,0.438411325216293,0,0.898730754852295,0.438500910997391,0,0.917101979255676,0.398652642965317,0,-0.917111456394196,-0.398630857467651,0,-0.898759841918945,-0.438441216945648,-0.238752812147141,-0.873716294765472,-0.423812329769135,-0.238329872488976,-0.891012489795685,-0.386387944221497,-0.99899423122406,0.0362575836479664,0.0263819508254528,-0.99903392791748,0.0390242896974087,0.0202086716890335,-0.963499665260315,-0.246659561991692,-0.104055032134056,-0.963323354721069,-0.244415536522865,-0.110767059028149,-0.943387746810913,-0.305376708507538,-0.129477769136429,-0.943323254585266,-0.301645219326019,-0.138389006257057,-0.963323354721069,-0.244415536522865,-0.110767059028149,-0.963499665260315,-0.246659561991692,-0.104055032134056,
- -0.948390424251556,-0.292046278715134,-0.123549930751324,-0.948123931884766,-0.289227932691574,-0.131940081715584,-0.943323254585266,-0.301645219326019,-0.138389006257057,-0.943387746810913,-0.305376708507538,-0.129477769136429,-0.99903392791748,0.0390242896974087,0.0202086716890335,-0.99899423122406,0.0362575836479664,0.0263819508254528,-0.0313029922544956,0.89822906255722,0.438411325216293,-0.0313314720988274,0.916629672050476,0.398507684469223,-3.19198932174913e-007,0,-1,-3.19198960596623e-007,0,-1,-3.19198960596623e-007,0,-1,-3.19198903753204e-007,0,-1,-3.19198960596623e-007,0,-1,-2.42243206695142e-014,0,-1,-2.42243206695142e-014,0,-1,-3.19198932174913e-007,0,-1,0,-0.973597526550293,-0.228271216154099,0,-0.962425589561462,-0.271545588970184,-0.238699600100517,-0.934408187866211,-0.264393270015717,-0.239319905638695,-0.945136904716492,-0.222355827689171,-0.948193192481995,-0.305008471012115,-0.0888790413737297,-0.947954595088959,-0.309349119663239,-0.0753992944955826,-0.239319905638695,-0.945136904716492,-0.222355827689171,-0.238699600100517,-0.934408187866211,-0.264393270015717,-0.947954595088959,-0.309349119663239,-0.0753992944955826,-0.948193192481995,-0.305008471012115,-0.0888790413737297,-0.943319082260132,-0.318698644638062,-0.0926308482885361,-0.943382978439331,-0.32232677936554,-0.0783200263977051,-0.943382978439331,-0.32232677936554,-0.0783200263977051,-0.943319082260132,-0.318698644638062,-0.0926308482885361,-0.963379442691803,-0.257379293441772,-0.0752059817314148,-0.963189840316772,-0.261130303144455,-0.0638459846377373,-0.999021947383881,0.0431802347302437,0.00952223036438227,-0.999024152755737,0.0435209460556507,0.00751664955168962,-0.963189840316772,-0.261130303144455,-0.0638459846377373,-0.963379442691803,-0.257379293441772,-0.0752059817314148,-0.999024152755737,0.0435209460556507,0.00751664955168962,-0.999021947383881,0.0431802347302437,0.00952223036438227,-0.0312833115458488,0.961974382400513,0.271342366933823,-0.0314062759280205,0.973133742809296,0.228088587522507,-0.0314062759280205,0.973133742809296,0.228088587522507,
- -0.0312833115458488,0.961974382400513,0.271342366933823,0,0.96243280172348,0.271519720554352,0,0.973602473735809,0.228250071406364,-0.247655242681503,-0.962698459625244,-0.108988501131535,0,-0.993704199790955,-0.112035691738129,0,-0.990414559841156,-0.138127222657204,-0.241517290472984,-0.961019396781921,-0.134577348828316,-0.948909819126129,-0.312173426151276,-0.0460202433168888,-0.954603374004364,-0.295743405818939,-0.035613089799881,-0.247655242681503,-0.962698459625244,-0.108988501131535,-0.241517290472984,-0.961019396781921,-0.134577348828316,-0.934068620204926,-0.354828834533691,-0.0401526093482971,-0.954603374004364,-0.295743405818939,-0.035613089799881,-0.948909819126129,-0.312173426151276,-0.0460202433168888,-0.941300570964813,-0.334182590246201,-0.0476978532969952,-0.968258500099182,-0.248305216431618,-0.0286388043314219,-0.934068620204926,-0.354828834533691,-0.0401526093482971,-0.941300570964813,-0.334182590246201,-0.0476978532969952,-0.96418684720993,-0.262497961521149,-0.0379286669194698,-0.99896764755249,0.0452888756990433,0.00352664547972381,-0.998775601387024,0.0493925586342812,0.00279135489836335,-0.968258500099182,-0.248305216431618,-0.0286388043314219,-0.96418684720993,-0.262497961521149,-0.0379286669194698,-0.0300367008894682,0.994445562362671,0.100874811410904,-0.998775601387024,0.0493925586342812,0.00279135489836335,-0.99896764755249,0.0452888756990433,0.00352664547972381,-0.0312561765313149,0.990936815738678,0.130641862750053,0,0.994888126850128,0.100983157753944,-0.0300367008894682,0.994445562362671,0.100874811410904,-0.0312561765313149,0.990936815738678,0.130641862750053,0,0.991418242454529,0.130728051066399,0,-0.962425589561462,-0.271545588970184,0,-0.949330270290375,-0.314280033111572,-0.238145783543587,-0.92179811000824,-0.305900007486343,-0.238699600100517,-0.934408187866211,-0.264393270015717,-0.948420882225037,-0.300109773874283,-0.102136790752411,-0.948193192481995,-0.305008471012115,-0.0888790413737297,-0.238699600100517,-0.934408187866211,-0.264393270015717,-0.238145783543587,-0.92179811000824,-0.305900007486343,
- -0.948193192481995,-0.305008471012115,-0.0888790413737297,-0.948420882225037,-0.300109773874283,-0.102136790752411,-0.943260431289673,-0.314424425363541,-0.106757372617722,-0.943319082260132,-0.318698644638062,-0.0926308482885361,-0.943319082260132,-0.318698644638062,-0.0926308482885361,-0.943260431289673,-0.314424425363541,-0.106757372617722,-0.963543832302094,-0.253209739923477,-0.086418442428112,-0.963379442691803,-0.257379293441772,-0.0752059817314148,-0.999018728733063,0.0427716113626957,0.0114901987835765,-0.999021947383881,0.0431802347302437,0.00952223036438227,-0.963379442691803,-0.257379293441772,-0.0752059817314148,-0.963543832302094,-0.253209739923477,-0.086418442428112,-0.999021947383881,0.0431802347302437,0.00952223036438227,-0.999018728733063,0.0427716113626957,0.0114901987835765,-0.031181525439024,0.948892295360565,0.314056098461151,-0.0312833115458488,0.961974382400513,0.271342366933823,-0.0312833115458488,0.961974382400513,0.271342366933823,-0.031181525439024,0.948892295360565,0.314056098461151,0,0.94934093952179,0.314248085021973,0,0.96243280172348,0.271519720554352,0,-0.934156477451324,-0.356863617897034,0,-0.917111456394196,-0.398630857467651,-0.238329872488976,-0.891012489795685,-0.386387944221497,-0.237337023019791,-0.907218456268311,-0.34731251001358,-0.948390424251556,-0.292046278715134,-0.123549930751324,-0.948398888111115,-0.295243799686432,-0.11563166230917,-0.237337023019791,-0.907218456268311,-0.34731251001358,-0.238329872488976,-0.891012489795685,-0.386387944221497,-0.948398888111115,-0.295243799686432,-0.11563166230917,-0.948390424251556,-0.292046278715134,-0.123549930751324,-0.943387746810913,-0.305376708507538,-0.129477769136429,-0.943452656269073,-0.308765321969986,-0.120668634772301,-0.943452656269073,-0.308765321969986,-0.120668634772301,-0.943387746810913,-0.305376708507538,-0.129477769136429,-0.963499665260315,-0.246659561991692,-0.104055032134056,-0.963508665561676,-0.249161660671234,-0.0978247597813606,-0.99903392791748,0.0390242896974087,0.0202086716890335,-0.999022543430328,0.0421281531453133,0.0133838588371873,
- -0.963508665561676,-0.249161660671234,-0.0978247597813606,-0.963499665260315,-0.246659561991692,-0.104055032134056,-0.999022543430328,0.0421281531453133,0.0133838588371873,-0.99903392791748,0.0390242896974087,0.0202086716890335,-0.0313314720988274,0.916629672050476,0.398507684469223,-0.0311394184827805,0.933728575706482,0.356624722480774,-0.0311394184827805,0.933728575706482,0.356624722480774,-0.0313314720988274,0.916629672050476,0.398507684469223,0,0.917101979255676,0.398652642965317,0,0.934166073799133,0.356838494539261,-0.031181525439024,0.948892295360565,0.314056098461151,-0.0311394184827805,0.933728575706482,0.356624722480774,0,0.934166073799133,0.356838494539261,0,0.94934093952179,0.314248085021973,-0.999018728733063,0.0427716113626957,0.0114901987835765,-0.999022543430328,0.0421281531453133,0.0133838588371873,-0.0311394184827805,0.933728575706482,0.356624722480774,-0.031181525439024,0.948892295360565,0.314056098461151,-0.999022543430328,0.0421281531453133,0.0133838588371873,-0.999018728733063,0.0427716113626957,0.0114901987835765,-0.963543832302094,-0.253209739923477,-0.086418442428112,-0.963508665561676,-0.249161660671234,-0.0978247597813606,-0.943260431289673,-0.314424425363541,-0.106757372617722,-0.943452656269073,-0.308765321969986,-0.120668634772301,-0.963508665561676,-0.249161660671234,-0.0978247597813606,-0.963543832302094,-0.253209739923477,-0.086418442428112,-0.948420882225037,-0.300109773874283,-0.102136790752411,-0.948398888111115,-0.295243799686432,-0.11563166230917,-0.943452656269073,-0.308765321969986,-0.120668634772301,-0.943260431289673,-0.314424425363541,-0.106757372617722,-0.948398888111115,-0.295243799686432,-0.11563166230917,-0.948420882225037,-0.300109773874283,-0.102136790752411,-0.238145783543587,-0.92179811000824,-0.305900007486343,-0.237337023019791,-0.907218456268311,-0.34731251001358,0,-0.949330270290375,-0.314280033111572,0,-0.934156477451324,-0.356863617897034,-0.237337023019791,-0.907218456268311,-0.34731251001358,-0.238145783543587,-0.92179811000824,-0.305900007486343,-0.240233466029167,-0.953674077987671,-0.181090041995049,
- 0,-0.982584714889526,-0.185815066099167,0,-0.973597526550293,-0.228271216154099,-0.239319905638695,-0.945136904716492,-0.222355827689171,-0.947954595088959,-0.309349119663239,-0.0753992944955826,-0.947988569736481,-0.312235146760941,-0.0618614964187145,-0.240233466029167,-0.953674077987671,-0.181090041995049,-0.239319905638695,-0.945136904716492,-0.222355827689171,-0.943167805671692,-0.326027542352676,-0.0643463581800461,-0.947988569736481,-0.312235146760941,-0.0618614964187145,-0.947954595088959,-0.309349119663239,-0.0753992944955826,-0.943382978439331,-0.32232677936554,-0.0783200263977051,-0.963216423988342,-0.263557255268097,-0.0524553060531616,-0.943167805671692,-0.326027542352676,-0.0643463581800461,-0.943382978439331,-0.32232677936554,-0.0783200263977051,-0.963189840316772,-0.261130303144455,-0.0638459846377373,-0.999024152755737,0.0435209460556507,0.00751664955168962,-0.999018549919128,0.0439344979822636,0.0056230858899653,-0.963216423988342,-0.263557255268097,-0.0524553060531616,-0.963189840316772,-0.261130303144455,-0.0638459846377373,-0.031466405838728,0.982112050056458,0.185649752616882,-0.999018549919128,0.0439344979822636,0.0056230858899653,-0.999024152755737,0.0435209460556507,0.00751664955168962,-0.0314062759280205,0.973133742809296,0.228088587522507,0,0.982589721679688,0.185788884758949,-0.031466405838728,0.982112050056458,0.185649752616882,-0.0314062759280205,0.973133742809296,0.228088587522507,0,0.973602473735809,0.228250071406364,-0.0312561765313149,0.990936815738678,0.130641862750053,-0.031466405838728,0.982112050056458,0.185649752616882,0,0.982589721679688,0.185788884758949,0,0.991418242454529,0.130728051066399,-0.99896764755249,0.0452888756990433,0.00352664547972381,-0.999018549919128,0.0439344979822636,0.0056230858899653,-0.031466405838728,0.982112050056458,0.185649752616882,-0.0312561765313149,0.990936815738678,0.130641862750053,-0.999018549919128,0.0439344979822636,0.0056230858899653,-0.99896764755249,0.0452888756990433,0.00352664547972381,-0.96418684720993,-0.262497961521149,-0.0379286669194698,
- -0.963216423988342,-0.263557255268097,-0.0524553060531616,-0.941300570964813,-0.334182590246201,-0.0476978532969952,-0.943167805671692,-0.326027542352676,-0.0643463581800461,-0.963216423988342,-0.263557255268097,-0.0524553060531616,-0.96418684720993,-0.262497961521149,-0.0379286669194698,-0.948909819126129,-0.312173426151276,-0.0460202433168888,-0.947988569736481,-0.312235146760941,-0.0618614964187145,-0.943167805671692,-0.326027542352676,-0.0643463581800461,-0.941300570964813,-0.334182590246201,-0.0476978532969952,-0.947988569736481,-0.312235146760941,-0.0618614964187145,-0.948909819126129,-0.312173426151276,-0.0460202433168888,-0.241517290472984,-0.961019396781921,-0.134577348828316,-0.240233466029167,-0.953674077987671,-0.181090041995049,0,-0.990414559841156,-0.138127222657204,0,-0.982584714889526,-0.185815066099167,-0.240233466029167,-0.953674077987671,-0.181090041995049,-0.241517290472984,-0.961019396781921,-0.134577348828316
- }
- NormalsW: *1422 {
- 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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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: *4266 {
- a: 2.89471913106354e-008,1,4.02154171297298e-007,2.89471913106354e-008,1,3.57223910896209e-007,2.89471895342786e-008,1,9.01215116755338e-006,2.89471913106354e-008,1,1.07061696326127e-005,2.89471895342786e-008,1,-1.52931988850469e-006,2.89471895342786e-008,1,5.61659635422984e-006,2.89471913106354e-008,1,5.91637945035473e-006,2.89471895342786e-008,1,-8.82989240835741e-007,-1.08551985178451e-008,1,4.02154171297298e-007,-1.08551967414883e-008,1,-8.82989240835741e-007,-1.08551985178451e-008,1,5.91637945035473e-006,-1.08551976296667e-008,1,5.61659635422984e-006,-1.08551967414883e-008,1,-1.52931988850469e-006,-1.08551985178451e-008,1,1.07061696326127e-005,-1.08551985178451e-008,1,9.01215116755338e-006,-1.08551976296667e-008,1,3.57223910896209e-007,-0.545954823493958,0.688939988613129,0.47675484418869,-0.545954823493958,0.688939809799194,0.476754933595657,-0.545954883098602,0.688939809799194,0.47675496339798,-0.545954823493958,0.688939809799194,0.476754933595657,0.545899629592896,0.688969910144806,0.476774781942368,0.545899569988251,0.688969910144806,0.476774752140045,0.545899569988251,0.688969910144806,0.476774781942368,0.545899569988251,0.688969850540161,0.476774781942368,0.908377408981323,0.3438481092453,0.237947285175323,0.908377528190613,0.343848168849945,0.237947255373001,0.908377528190613,0.343848258256912,0.237947180867195,0.908377528190613,0.343848139047623,0.237947210669518,-0.908353447914124,0.343891650438309,0.237976342439651,-0.908353388309479,0.343891620635986,0.237976312637329,-0.908353447914124,0.343891650438309,0.237976342439651,-0.908353447914124,0.343891590833664,0.237976357340813,0,0.999992847442627,0.00378165976144373,0,0.999992847442627,0.00378165976144373,-3.70451203934863e-007,0.999992907047272,0.00378165999427438,-1.11135352653946e-006,0.999992907047272,0.00378166022710502,-1.11135352653946e-006,0.999992847442627,0.00378165976144373,-7.40902351026307e-007,0.999992847442627,0.00378165999427438,0,0.999992907047272,0.00378165999427438,-0,0.999992072582245,0.00399803416803479,-0,0.999992072582245,0.00399803416803479,
- -3.72006240922929e-007,0.999992072582245,0.00399803416803479,-1.11601866592537e-006,0.999992072582245,0.00399803463369608,-1.11601866592537e-006,0.999992072582245,0.00399803463369608,-7.44012481845857e-007,0.999992072582245,0.00399803509935737,-1.11022315697405e-016,0.999992072582245,0.00399803463369608,0.316960960626602,0.397006779909134,0.861348509788513,0.971605062484741,0.101483471691608,0.213740140199661,0.971651911735535,0.105056010186672,0.21179187297821,0.317257970571518,0.414779782295227,0.852821886539459,-0.99951446056366,0.0116358594968915,0.0289063099771738,-1,-0.000125246151583269,6.07590591243934e-005,-0.999999761581421,-0.000699014810379595,0.0003213508753106,-0.999512195587158,0.0106597784906626,0.0293572749942541,0.999999940395355,-0.000375262432498857,0.000182035480975173,0.971651911735535,0.105056010186672,0.21179187297821,0.971605062484741,0.101483471691608,0.213740140199661,0.999999940395355,0.000430796906584874,-0.000198044421267696,-0.0439329370856285,0.417170137166977,0.907765984535217,0.267585039138794,0.403087586164474,0.875167846679688,0.267847627401352,0.421179890632629,0.866524815559387,-0.0440025925636292,0.435957431793213,0.898890912532806,0.330789089202881,0.412763357162476,0.848648905754089,0.267847627401352,0.421179890632629,0.866524815559387,0.267585039138794,0.403087586164474,0.875167846679688,0.330955922603607,0.395001649856567,0.85699588060379,0.317257970571518,0.414779782295227,0.852821886539459,0.330789089202881,0.412763357162476,0.848648905754089,0.330955922603607,0.395001649856567,0.85699588060379,0.316960960626602,0.397006779909134,0.861348509788513,-0.0440025925636292,0.435957431793213,0.898890912532806,-0.99951446056366,0.0116358594968915,0.0289063099771738,-0.999512195587158,0.0106597784906626,0.0293572749942541,-0.0439329370856285,0.417170137166977,0.907765984535217,3.08235456714101e-007,0.398777157068253,0.91704797744751,0.000296999263809994,0.398777097463608,0.91704785823822,8.62778051669011e-007,0.398777157068253,0.917047917842865,2.4962359930214e-006,0.398777157068253,0.91704785823822,
- -5.22856862517074e-005,0.398777157068253,0.917047917842865,-0.000744308228604496,0.398777067661285,0.917047679424286,0.000942699611186981,0.398776978254318,0.917047500610352,0.00163281103596091,0.398776590824127,0.917046785354614,1,-0.000360228354111314,0.000263457128312439,0.97093802690506,0.143003836274147,0.191909834742546,0.971089065074921,0.134376600384712,0.197304725646973,1,-0.00031302249408327,0.000208124620257877,0.317677170038223,0.527447819709778,0.787959516048431,0.971089065074921,0.134376600384712,0.197304725646973,0.97093802690506,0.143003836274147,0.191909834742546,0.318403989076614,0.557280004024506,0.766849458217621,0.318403989076614,0.557280004024506,0.766849458217621,0.331680834293365,0.559884071350098,0.759287536144257,0.331869691610336,0.52474707365036,0.783902525901794,0.317677170038223,0.527447819709778,0.787959516048431,0.331680834293365,0.559884071350098,0.759287536144257,0.268811911344528,0.569200932979584,0.777013778686523,0.268126338720322,0.535709857940674,0.800701797008514,0.331869691610336,0.52474707365036,0.783902525901794,-0.0441478714346886,0.55483478307724,0.830788314342499,0.268126338720322,0.535709857940674,0.800701797008514,0.268811911344528,0.569200932979584,0.777013778686523,-0.0440762303769588,0.586440324783325,0.808792293071747,-0.0440762303769588,0.586440324783325,0.808792293071747,-0.999504446983337,0.0168055798858404,0.0266180168837309,-0.999508261680603,0.0155617753043771,0.0272222440689802,-0.0441478714346886,0.55483478307724,0.830788314342499,-0.999504446983337,0.0168055798858404,0.0266180168837309,-1,-9.61305195232853e-005,7.03096811776049e-005,-1,-0.0001228827459272,8.1708247307688e-005,-0.999508261680603,0.0155617753043771,0.0272222440689802,0.970988810062408,0.155348241329193,0.181790322065353,0.970963597297668,0.155553862452507,0.18174946308136,0.999997615814209,-0.00164354685693979,0.00143679138273001,0.999985337257385,-0.00391625938937068,0.00374030508100986,0.318410098552704,0.62321811914444,0.714292883872986,0.970963597297668,0.155553862452507,0.18174946308136,
- 0.970988810062408,0.155348241329193,0.181790322065353,0.317550927400589,0.638517916202545,0.701039493083954,0.331541568040848,0.635270595550537,0.697503745555878,0.331949502229691,0.620144307613373,0.710795700550079,0.318410098552704,0.62321811914444,0.714292883872986,0.317550927400589,0.638517916202545,0.701039493083954,0.268017321825027,0.649201154708862,0.7118319272995,0.26876100897789,0.63567066192627,0.723664581775665,0.331949502229691,0.620144307613373,0.710795700550079,0.331541568040848,0.635270595550537,0.697503745555878,-0.0444607958197594,0.654038369655609,0.755153715610504,0.26876100897789,0.63567066192627,0.723664581775665,0.268017321825027,0.649201154708862,0.7118319272995,-0.0443064495921135,0.674962341785431,0.736520767211914,-0.999488353729248,0.0263806022703648,0.0180905535817146,-0.999508380889893,0.022103376686573,0.0222354922443628,-0.0444607958197594,0.654038369655609,0.755153715610504,-0.0443064495921135,0.674962341785431,0.736520767211914,-0.999991297721863,0.00302279414609075,-0.00288660055957735,-0.999999403953552,0.000838444451801479,-0.000732940621674061,-0.999508380889893,0.022103376686573,0.0222354922443628,-0.999488353729248,0.0263806022703648,0.0180905535817146,1,-0.00031302249408327,0.000208124620257877,0.971089065074921,0.134376600384712,0.197304725646973,0.971226274967194,0.124651126563549,0.202932640910149,1,-0.000328243273543194,0.000197683708393015,0.317003756761551,0.490144908428192,0.811952412128448,0.971226274967194,0.124651126563549,0.202932640910149,0.971089065074921,0.134376600384712,0.197304725646973,0.317677170038223,0.527447819709778,0.787959516048431,0.317677170038223,0.527447819709778,0.787959516048431,0.331869691610336,0.52474707365036,0.783902525901794,0.332042694091797,0.487492352724075,0.807526350021362,0.317003756761551,0.490144908428192,0.811952412128448,0.331869691610336,0.52474707365036,0.783902525901794,0.268126338720322,0.535709857940674,0.800701797008514,0.267542332410812,0.497768133878708,0.825013875961304,0.332042694091797,0.487492352724075,0.807526350021362,
- -0.0442146398127079,0.515355229377747,0.855835258960724,0.267542332410812,0.497768133878708,0.825013875961304,0.268126338720322,0.535709857940674,0.800701797008514,-0.0441478714346886,0.55483478307724,0.830788314342499,-0.0441478714346886,0.55483478307724,0.830788314342499,-0.999508261680603,0.0155617753043771,0.0272222440689802,-0.999511420726776,0.0142152793705463,0.0278400033712387,-0.0442146398127079,0.515355229377747,0.855835258960724,-0.999508261680603,0.0155617753043771,0.0272222440689802,-1,-0.0001228827459272,8.1708247307688e-005,-1,-0.000126795639516786,7.6367738074623e-005,-0.999511420726776,0.0142152793705463,0.0278400033712387,1,-0.000347189168678597,0.000188257501577027,0.971425235271454,0.114577062427998,0.207858324050903,0.971651911735535,0.105056010186672,0.21179187297821,0.999999940395355,-0.000375262432498857,0.000182035480975173,0.317257970571518,0.414779782295227,0.852821886539459,0.971651911735535,0.105056010186672,0.21179187297821,0.971425235271454,0.114577062427998,0.207858324050903,0.31707376241684,0.451408803462982,0.834082961082459,0.31707376241684,0.451408803462982,0.834082961082459,0.331499844789505,0.449069410562515,0.829725563526154,0.330789089202881,0.412763357162476,0.848648905754089,0.317257970571518,0.414779782295227,0.852821886539459,0.331499844789505,0.449069410562515,0.829725563526154,0.267673045396805,0.458401381969452,0.847478270530701,0.267847627401352,0.421179890632629,0.866524815559387,0.330789089202881,0.412763357162476,0.848648905754089,-0.0440025925636292,0.435957431793213,0.898890912532806,0.267847627401352,0.421179890632629,0.866524815559387,0.267673045396805,0.458401381969452,0.847478270530701,-0.0441250205039978,0.474538654088974,0.879128038883209,-0.0441250205039978,0.474538654088974,0.879128038883209,-0.999512612819672,0.0128989703953266,0.0284281224012375,-0.99951446056366,0.0116358594968915,0.0289063099771738,-0.0440025925636292,0.435957431793213,0.898890912532806,-0.999512612819672,0.0128989703953266,0.0284281224012375,-1,-0.000137818118673749,7.4734263762366e-005,
- -1,-0.000125246151583269,6.07590591243934e-005,-0.99951446056366,0.0116358594968915,0.0289063099771738,-0.999511420726776,0.0142152793705463,0.0278400033712387,-1,-0.000126795639516786,7.6367738074623e-005,-1,-0.000137818118673749,7.4734263762366e-005,-0.999512612819672,0.0128989703953266,0.0284281224012375,-0.0442146398127079,0.515355229377747,0.855835258960724,-0.999511420726776,0.0142152793705463,0.0278400033712387,-0.999512612819672,0.0128989703953266,0.0284281224012375,-0.0441250205039978,0.474538654088974,0.879128038883209,-0.0441250205039978,0.474538654088974,0.879128038883209,0.267673045396805,0.458401381969452,0.847478270530701,0.267542332410812,0.497768133878708,0.825013875961304,-0.0442146398127079,0.515355229377747,0.855835258960724,0.332042694091797,0.487492352724075,0.807526350021362,0.267542332410812,0.497768133878708,0.825013875961304,0.267673045396805,0.458401381969452,0.847478270530701,0.331499844789505,0.449069410562515,0.829725563526154,0.317003756761551,0.490144908428192,0.811952412128448,0.332042694091797,0.487492352724075,0.807526350021362,0.331499844789505,0.449069410562515,0.829725563526154,0.31707376241684,0.451408803462982,0.834082961082459,0.31707376241684,0.451408803462982,0.834082961082459,0.971425235271454,0.114577062427998,0.207858324050903,0.971226274967194,0.124651126563549,0.202932640910149,0.317003756761551,0.490144908428192,0.811952412128448,1,-0.000328243273543194,0.000197683708393015,0.971226274967194,0.124651126563549,0.202932640910149,0.971425235271454,0.114577062427998,0.207858324050903,1,-0.000347189168678597,0.000188257501577027,0.97071373462677,0.151485025882721,0.186459332704544,0.97093802690506,0.143003836274147,0.191909834742546,1,-0.000360228354111314,0.000263457128312439,1,-0.000329583999700844,0.00026373437140137,0.318403989076614,0.557280004024506,0.766849458217621,0.97093802690506,0.143003836274147,0.191909834742546,0.97071373462677,0.151485025882721,0.186459332704544,0.318305224180222,0.589660942554474,0.742281496524811,0.332292348146439,0.592157483100891,0.734119474887848,
- 0.331680834293365,0.559884071350098,0.759287536144257,0.318403989076614,0.557280004024506,0.766849458217621,0.318305224180222,0.589660942554474,0.742281496524811,0.268719434738159,0.601308763027191,0.752474427223206,0.268811911344528,0.569200932979584,0.777013778686523,0.331680834293365,0.559884071350098,0.759287536144257,0.332292348146439,0.592157483100891,0.734119474887848,-0.0440762303769588,0.586440324783325,0.808792293071747,0.268811911344528,0.569200932979584,0.777013778686523,0.268719434738159,0.601308763027191,0.752474427223206,-0.0442011132836342,0.620592057704926,0.782886803150177,-0.999502778053284,0.0180701650679111,0.0258415304124355,-0.999504446983337,0.0168055798858404,0.0266180168837309,-0.0440762303769588,0.586440324783325,0.808792293071747,-0.0442011132836342,0.620592057704926,0.782886803150177,-1,-9.49517561821267e-005,7.59845788707025e-005,-1,-9.61305195232853e-005,7.03096811776049e-005,-0.999504446983337,0.0168055798858404,0.0266180168837309,-0.999502778053284,0.0180701650679111,0.0258415304124355,-0.999508380889893,0.022103376686573,0.0222354922443628,-0.999999403953552,0.000838444451801479,-0.000732940621674061,-1,-9.49517561821267e-005,7.59845788707025e-005,-0.999502778053284,0.0180701650679111,0.0258415304124355,-0.0444607958197594,0.654038369655609,0.755153715610504,-0.999508380889893,0.022103376686573,0.0222354922443628,-0.999502778053284,0.0180701650679111,0.0258415304124355,-0.0442011132836342,0.620592057704926,0.782886803150177,-0.0442011132836342,0.620592057704926,0.782886803150177,0.268719434738159,0.601308763027191,0.752474427223206,0.26876100897789,0.63567066192627,0.723664581775665,-0.0444607958197594,0.654038369655609,0.755153715610504,0.331949502229691,0.620144307613373,0.710795700550079,0.26876100897789,0.63567066192627,0.723664581775665,0.268719434738159,0.601308763027191,0.752474427223206,0.332292348146439,0.592157483100891,0.734119474887848,0.318410098552704,0.62321811914444,0.714292883872986,0.331949502229691,0.620144307613373,0.710795700550079,0.332292348146439,0.592157483100891,0.734119474887848,
- 0.318305224180222,0.589660942554474,0.742281496524811,0.318305224180222,0.589660942554474,0.742281496524811,0.97071373462677,0.151485025882721,0.186459332704544,0.970963597297668,0.155553862452507,0.18174946308136,0.318410098552704,0.62321811914444,0.714292883872986,0.999997615814209,-0.00164354685693979,0.00143679138273001,0.970963597297668,0.155553862452507,0.18174946308136,0.97071373462677,0.151485025882721,0.186459332704544,1,-0.000329583999700844,0.00026373437140137,0.31789630651474,0.668336808681488,0.672508716583252,0.971078276634216,0.163686156272888,0.173821851611137,0.971178293228149,0.169693797826767,0.167382135987282,0.31710159778595,0.686719596385956,0.654112279415131,-0.999501705169678,0.0252930037677288,0.0188889596611261,-0.999998092651367,0.00136946479324251,-0.0014277616282925,-0.999999523162842,0.00075008167186752,-0.000716286362148821,-0.999487996101379,0.0264107901602983,0.0180617161095142,0.999996066093445,-0.00194778537843376,0.00203078612685204,0.971178293228149,0.169693797826767,0.167382135987282,0.971078276634216,0.163686156272888,0.173821851611137,0.999997854232788,-0.00152360775973648,0.00145515333861113,-0.0439612008631229,0.70668363571167,0.706162631511688,0.268338143825531,0.679554998874664,0.682788133621216,0.267704218626022,0.697753489017487,0.664435565471649,-0.0438452549278736,0.721054792404175,0.691489398479462,0.331664979457855,0.677971541881561,0.656012952327728,0.267704218626022,0.697753489017487,0.664435565471649,0.268338143825531,0.679554998874664,0.682788133621216,0.331871122121811,0.6649209856987,0.66913503408432,0.31710159778595,0.686719596385956,0.654112279415131,0.331664979457855,0.677971541881561,0.656012952327728,0.331871122121811,0.6649209856987,0.66913503408432,0.31789630651474,0.668336808681488,0.672508716583252,-0.0438452549278736,0.721054792404175,0.691489398479462,-0.999501705169678,0.0252930037677288,0.0188889596611261,-0.999487996101379,0.0264107901602983,0.0180617161095142,-0.0439612008631229,0.70668363571167,0.706162631511688,0.999999940395355,-0.000246509735006839,0.000372331647668034,
- 0.970937967300415,0.200730562210083,0.130333259701729,0.971089720726013,0.194510221481323,0.138385891914368,1,-0.000221432070247829,0.000304011045955122,0.317675799131393,0.768177270889282,0.555865108966827,0.971089720726013,0.194510221481323,0.138385891914368,0.970937967300415,0.200730562210083,0.130333259701729,0.318402916193008,0.788825333118439,0.52571314573288,0.318402916193008,0.788825333118439,0.52571314573288,0.331682831048965,0.788642048835754,0.517716288566589,0.331869155168533,0.764235377311707,0.552998483181,0.317675799131393,0.768177270889282,0.555865108966827,0.331682831048965,0.788642048835754,0.517716288566589,0.268810421228409,0.803534150123596,0.531106233596802,0.268126338720322,0.780349493026733,0.564945220947266,0.331869155168533,0.764235377311707,0.552998483181,-0.0441482812166214,0.808727979660034,0.586523652076721,0.268126338720322,0.780349493026733,0.564945220947266,0.268810421228409,0.803534150123596,0.531106233596802,-0.0440763756632805,0.830732882022858,0.554923593997955,-0.0440763756632805,0.830732882022858,0.554923593997955,-0.999504327774048,0.0250020269304514,0.0191312618553638,-0.999508261680603,0.0240441337227821,0.0201289523392916,-0.0441482812166214,0.808727979660034,0.586523652076721,-0.999504327774048,0.0250020269304514,0.0191312618553638,-1,-6.57776254229248e-005,9.93559369817376e-005,-1,-8.6925268988125e-005,0.000119349184387829,-0.999508261680603,0.0240441337227821,0.0201289523392916,0.970988512039185,0.208791941404343,0.116564236581326,0.970962643623352,0.208974391222,0.116452939808369,0.999997615814209,-0.00104317511431873,0.00191905011888593,0.999985337257385,-0.00237568700686097,0.0048699164763093,0.318407773971558,0.832419633865356,0.453535079956055,0.970962643623352,0.208974391222,0.116452939808369,0.970988512039185,0.208791941404343,0.116564236581326,0.317550122737885,0.842166483402252,0.435795545578003,0.331543385982513,0.837891280651093,0.433609396219254,0.331951588392258,0.828322112560272,0.451321184635162,0.318407773971558,0.832419633865356,0.453535079956055,0.317550122737885,0.842166483402252,0.435795545578003,
- 0.268014967441559,0.85592919588089,0.442213892936707,0.268760770559311,0.847350418567657,0.458000987768173,0.331951588392258,0.828322112560272,0.451321184635162,0.331543385982513,0.837891280651093,0.433609396219254,-0.0444615259766579,0.875507712364197,0.481154441833496,0.268760770559311,0.847350418567657,0.458000987768173,0.268014967441559,0.85592919588089,0.442213892936707,-0.0443064868450165,0.888662219047546,0.456417053937912,-0.999488234519959,0.0310223270207644,0.00780500564724207,-0.999508500099182,0.0284464545547962,0.013178120367229,-0.0444615259766579,0.875507712364197,0.481154441833496,-0.0443064868450165,0.888662219047546,0.456417053937912,-0.999991357326508,0.00183376634959131,-0.00375840091146529,-0.999999403953552,0.000532158766873181,-0.000978932832367718,-0.999508500099182,0.0284464545547962,0.013178120367229,-0.999488234519959,0.0310223270207644,0.00780500564724207,1,-0.000221432070247829,0.000304011045955122,0.971089720726013,0.194510221481323,0.138385891914368,0.971227049827576,0.187343135476112,0.147040069103241,0.999999940395355,-0.000239343062276021,0.000299503677524626,0.317003577947617,0.741522490978241,0.591314733028412,0.971227049827576,0.187343135476112,0.147040069103241,0.971089720726013,0.194510221481323,0.138385891914368,0.317675799131393,0.768177270889282,0.555865108966827,0.317675799131393,0.768177270889282,0.555865108966827,0.331869155168533,0.764235377311707,0.552998483181,0.332042306661606,0.737499058246613,0.588084280490875,0.317003577947617,0.741522490978241,0.591314733028412,0.331869155168533,0.764235377311707,0.552998483181,0.268126338720322,0.780349493026733,0.564945220947266,0.267540276050568,0.753206491470337,0.600917816162109,0.332042306661606,0.737499058246613,0.588084280490875,-0.0442152321338654,0.780398190021515,0.623717784881592,0.267540276050568,0.753206491470337,0.600917816162109,0.268126338720322,0.780349493026733,0.564945220947266,-0.0441482812166214,0.808727979660034,0.586523652076721,-0.0441482812166214,0.808727979660034,0.586523652076721,-0.999508261680603,0.0240441337227821,0.0201289523392916,
- -0.999511361122131,0.0229953452944756,0.0211752746254206,-0.0442152321338654,0.780398190021515,0.623717784881592,-0.999508261680603,0.0240441337227821,0.0201289523392916,-1,-8.6925268988125e-005,0.000119349184387829,-1,-9.24503037822433e-005,0.000115695824206341,-0.999511361122131,0.0229953452944756,0.0211752746254206,0.999999940395355,-0.000260397151578218,0.000297240359941497,0.971425771713257,0.17960599064827,0.155157193541527,0.971178293228149,0.169693797826767,0.167382135987282,0.999996066093445,-0.00194778537843376,0.00203078612685204,0.31710159778595,0.686719596385956,0.654112279415131,0.971178293228149,0.169693797826767,0.167382135987282,0.971425771713257,0.17960599064827,0.155157193541527,0.317072749137878,0.712876915931702,0.625516951084137,0.317072749137878,0.712876915931702,0.625516951084137,0.331498771905899,0.709170043468475,0.622243046760559,0.331664979457855,0.677971541881561,0.656012952327728,0.31710159778595,0.686719596385956,0.654112279415131,0.331498771905899,0.709170043468475,0.622243046760559,0.267670571804047,0.72408527135849,0.635651648044586,0.267704218626022,0.697753489017487,0.664435565471649,0.331664979457855,0.677971541881561,0.656012952327728,-0.0438452549278736,0.721054792404175,0.691489398479462,0.267704218626022,0.697753489017487,0.664435565471649,0.267670571804047,0.72408527135849,0.635651648044586,-0.0441257022321224,0.750205814838409,0.659730434417725,-0.0441257022321224,0.750205814838409,0.659730434417725,-0.999512672424316,0.0219643134623766,0.0221832450479269,-0.999501705169678,0.0252930037677288,0.0188889596611261,-0.0438452549278736,0.721054792404175,0.691489398479462,-0.999512672424316,0.0219643134623766,0.0221832450479269,-1,-0.000103356716863345,0.000117987161502242,-0.999998092651367,0.00136946479324251,-0.0014277616282925,-0.999501705169678,0.0252930037677288,0.0188889596611261,-0.999511361122131,0.0229953452944756,0.0211752746254206,-1,-9.24503037822433e-005,0.000115695824206341,-1,-0.000103356716863345,0.000117987161502242,-0.999512672424316,0.0219643134623766,0.0221832450479269,
- -0.0442152321338654,0.780398190021515,0.623717784881592,-0.999511361122131,0.0229953452944756,0.0211752746254206,-0.999512672424316,0.0219643134623766,0.0221832450479269,-0.0441257022321224,0.750205814838409,0.659730434417725,-0.0441257022321224,0.750205814838409,0.659730434417725,0.267670571804047,0.72408527135849,0.635651648044586,0.267540276050568,0.753206491470337,0.600917816162109,-0.0442152321338654,0.780398190021515,0.623717784881592,0.332042306661606,0.737499058246613,0.588084280490875,0.267540276050568,0.753206491470337,0.600917816162109,0.267670571804047,0.72408527135849,0.635651648044586,0.331498771905899,0.709170043468475,0.622243046760559,0.317003577947617,0.741522490978241,0.591314733028412,0.332042306661606,0.737499058246613,0.588084280490875,0.331498771905899,0.709170043468475,0.622243046760559,0.317072749137878,0.712876915931702,0.625516951084137,0.317072749137878,0.712876915931702,0.625516951084137,0.971425771713257,0.17960599064827,0.155157193541527,0.971227049827576,0.187343135476112,0.147040069103241,0.317003577947617,0.741522490978241,0.591314733028412,0.999999940395355,-0.000239343062276021,0.000299503677524626,0.971227049827576,0.187343135476112,0.147040069103241,0.971425771713257,0.17960599064827,0.155157193541527,0.999999940395355,-0.000260397151578218,0.000297240359941497,0.970712721347809,0.206796303391457,0.122279025614262,0.970937967300415,0.200730562210083,0.130333259701729,0.999999940395355,-0.000246509735006839,0.000372331647668034,1,-0.000217658423935063,0.000361947779310867,0.318402916193008,0.788825333118439,0.52571314573288,0.970937967300415,0.200730562210083,0.130333259701729,0.970712721347809,0.206796303391457,0.122279025614262,0.318300902843475,0.810666382312775,0.491431027650833,0.332295894622803,0.810172617435455,0.482907682657242,0.331682831048965,0.788642048835754,0.517716288566589,0.318402916193008,0.788825333118439,0.52571314573288,0.318300902843475,0.810666382312775,0.491431027650833,0.268718510866165,0.825127184391022,0.496946156024933,0.268810421228409,0.803534150123596,0.531106233596802,
- 0.331682831048965,0.788642048835754,0.517716288566589,0.332295894622803,0.810172617435455,0.482907682657242,-0.0440763756632805,0.830732882022858,0.554923593997955,0.268810421228409,0.803534150123596,0.531106233596802,0.268718510866165,0.825127184391022,0.496946156024933,-0.0442014634609222,0.853767991065979,0.518774151802063,-0.999502778053284,0.0259165596216917,0.0179625600576401,-0.999504327774048,0.0250020269304514,0.0191312618553638,-0.0440763756632805,0.830732882022858,0.554923593997955,-0.0442014634609222,0.853767991065979,0.518774151802063,-1,-6.27040935796686e-005,0.000104277503851336,-1,-6.57776254229248e-005,9.93559369817376e-005,-0.999504327774048,0.0250020269304514,0.0191312618553638,-0.999502778053284,0.0259165596216917,0.0179625600576401,-0.999508500099182,0.0284464545547962,0.013178120367229,-0.999999403953552,0.000532158766873181,-0.000978932832367718,-1,-6.27040935796686e-005,0.000104277503851336,-0.999502778053284,0.0259165596216917,0.0179625600576401,-0.0444615259766579,0.875507712364197,0.481154441833496,-0.999508500099182,0.0284464545547962,0.013178120367229,-0.999502778053284,0.0259165596216917,0.0179625600576401,-0.0442014634609222,0.853767991065979,0.518774151802063,-0.0442014634609222,0.853767991065979,0.518774151802063,0.268718510866165,0.825127184391022,0.496946156024933,0.268760770559311,0.847350418567657,0.458000987768173,-0.0444615259766579,0.875507712364197,0.481154441833496,0.331951588392258,0.828322112560272,0.451321184635162,0.268760770559311,0.847350418567657,0.458000987768173,0.268718510866165,0.825127184391022,0.496946156024933,0.332295894622803,0.810172617435455,0.482907682657242,0.318407773971558,0.832419633865356,0.453535079956055,0.331951588392258,0.828322112560272,0.451321184635162,0.332295894622803,0.810172617435455,0.482907682657242,0.318300902843475,0.810666382312775,0.491431027650833,0.318300902843475,0.810666382312775,0.491431027650833,0.970712721347809,0.206796303391457,0.122279025614262,0.970962643623352,0.208974391222,0.116452939808369,0.318407773971558,0.832419633865356,0.453535079956055,
- 0.999997615814209,-0.00104317511431873,0.00191905011888593,0.970962643623352,0.208974391222,0.116452939808369,0.970712721347809,0.206796303391457,0.122279025614262,1,-0.000217658423935063,0.000361947779310867,0.31789568066597,0.860226809978485,0.398688167333603,0.971077978610992,0.213845938444138,0.106195464730263,0.97117817401886,0.217245355248451,0.0980684161186218,0.317099243402481,0.871081948280334,0.375052690505981,-0.999501526355743,0.0302802994847298,0.00893339049071074,-0.999998092651367,0.00078909849980846,-0.00181532418355346,-0.999999523162842,0.000455033412436023,-0.00093261495931074,-0.999487996101379,0.0310403667390347,0.00776803307235241,0.99999612569809,-0.00112232577521354,0.00258208252489567,0.97117817401886,0.217245355248451,0.0980684161186218,0.971077978610992,0.213845938444138,0.106195464730263,0.999997794628143,-0.000924247549846768,0.00189461337868124,-0.0439610853791237,0.907871067523956,0.416938424110413,0.268336087465286,0.87431675195694,0.404432892799377,0.267703115940094,0.885013163089752,0.380902618169785,-0.0438453741371632,0.916255652904511,0.39818748831749,0.331665247678757,0.863536596298218,0.379872292280197,0.267703115940094,0.885013163089752,0.380902618169785,0.268336087465286,0.87431675195694,0.404432892799377,0.331873148679733,0.855852961540222,0.396706372499466,0.317099243402481,0.871081948280334,0.375052690505981,0.331665247678757,0.863536596298218,0.379872292280197,0.331873148679733,0.855852961540222,0.396706372499466,0.31789568066597,0.860226809978485,0.398688167333603,-0.0438453741371632,0.916255652904511,0.39818748831749,-0.999501526355743,0.0302802994847298,0.00893339049071074,-0.999487996101379,0.0310403667390347,0.00776803307235241,-0.0439610853791237,0.907871067523956,0.416938424110413,-0.00076397939119488,0.999999761581421,-2.43861403292911e-010,-0.000186438774107955,1,-5.95110488665895e-011,6.82645768392831e-005,1,-1.65366298127148e-018,-0.000417051429394633,1,1.01027869550287e-017,0.00409625796601176,0.999991655349731,1.3075210913982e-009,0.00827708374708891,0.999965727329254,2.64203614541714e-009,
- 0.00255052815191448,0.999996840953827,8.14125822312661e-010,-0.000813869410194457,0.999999642372131,-2.59786220313529e-010,1,-0.000101989979157224,0.00043499656021595,0.970938146114349,0.233490794897079,0.052546750754118,0.971089541912079,0.230453908443451,0.062258243560791,1,-0.000102186568256002,0.000362174760084599,0.317674964666367,0.913368463516235,0.254638522863388,0.971089541912079,0.230453908443451,0.062258243560791,0.970938146114349,0.233490794897079,0.052546750754118,0.318400621414185,0.922266602516174,0.219192430377007,0.318400621414185,0.922266602516174,0.219192430377007,0.331684291362762,0.919317245483398,0.211757853627205,0.331869721412659,0.908676445484161,0.253317445516586,0.317674964666367,0.913368463516235,0.254638522863388,0.331684291362762,0.919317245483398,0.211757853627205,0.268808960914612,0.93793249130249,0.219145223498344,0.268123358488083,0.927936732769012,0.258927524089813,0.331869721412659,0.908676445484161,0.253317445516586,-0.0441486909985542,0.962039947509766,0.269313871860504,0.268123358488083,0.927936732769012,0.258927524089813,0.268808960914612,0.93793249130249,0.219145223498344,-0.0440767072141171,0.971707403659821,0.232039108872414,-0.0440767072141171,0.971707403659821,0.232039108872414,-0.999504446983337,0.0300861708819866,0.00926313549280167,-0.999508321285248,0.029533464461565,0.0105308974161744,-0.0441486909985542,0.962039947509766,0.269313871860504,-0.999504446983337,0.0300861708819866,0.00926313549280167,-1,-2.72125871561002e-005,0.000116075498226564,-1,-4.01105025957804e-005,0.000142176271765493,-0.999508321285248,0.029533464461565,0.0105308974161744,0.96884673833847,0.246285006403923,0.0260738246142864,0.970396459102631,0.239257603883743,0.0329653918743134,0.99999988079071,-5.95589081058279e-005,0.000427055638283491,0.999997973442078,-0.000226577772991732,0.00200963905081153,0.315536975860596,0.939910113811493,0.130405217409134,0.970396459102631,0.239257603883743,0.0329653918743134,0.96884673833847,0.246285006403923,0.0260738246142864,0.297862112522125,0.949007272720337,0.103264585137367,
- 0.357085198163986,0.928887844085693,0.0982728451490402,0.337565004825592,0.932564795017242,0.127956390380859,0.315536975860596,0.939910113811493,0.130405217409134,0.297862112522125,0.949007272720337,0.103264585137367,0.249935835599899,0.963091492652893,0.0999342054128647,0.265216141939163,0.955349385738373,0.13026162981987,0.337565004825592,0.932564795017242,0.127956390380859,0.357085198163986,0.928887844085693,0.0982728451490402,-0.0453523211181164,0.989916622638702,0.134194895625114,0.265216141939163,0.955349385738373,0.13026162981987,0.249935835599899,0.963091492652893,0.0999342054128647,-0.0494216345250607,0.993648231029511,0.101097695529461,-0.999548196792603,0.0297672394663095,0.00417549116536975,-0.999509215354919,0.0307103004306555,0.00619137240573764,-0.0453523211181164,0.989916622638702,0.134194895625114,-0.0494216345250607,0.993648231029511,0.101097695529461,-0.999999642372131,9.43470440688543e-005,-0.000929508998524398,-1,-6.01522242504871e-006,4.56183770438656e-005,-0.999509215354919,0.0307103004306555,0.00619137240573764,-0.999548196792603,0.0297672394663095,0.00417549116536975,1,-0.000102186568256002,0.000362174760084599,0.971089541912079,0.230453908443451,0.062258243560791,0.971226990222931,0.226736307144165,0.0728620439767838,1,-0.000120558965136297,0.000364166538929567,0.317001432180405,0.900677740573883,0.29713574051857,0.971226990222931,0.226736307144165,0.0728620439767838,0.971089541912079,0.230453908443451,0.062258243560791,0.317674964666367,0.913368463516235,0.254638522863388,0.317674964666367,0.913368463516235,0.254638522863388,0.331869721412659,0.908676445484161,0.253317445516586,0.332043021917343,0.89578241109848,0.295502126216888,0.317001432180405,0.900677740573883,0.29713574051857,0.331869721412659,0.908676445484161,0.253317445516586,0.268123358488083,0.927936732769012,0.258927524089813,0.267538070678711,0.914968729019165,0.302085697650909,0.332043021917343,0.89578241109848,0.295502126216888,-0.0442155338823795,0.948383212089539,0.314029008150101,0.267538070678711,0.914968729019165,0.302085697650909,
- 0.268123358488083,0.927936732769012,0.258927524089813,-0.0441486909985542,0.962039947509766,0.269313871860504,-0.0441486909985542,0.962039947509766,0.269313871860504,-0.999508321285248,0.029533464461565,0.0105308974161744,-0.999511361122131,0.0289141554385424,0.0118764201179147,-0.0442155338823795,0.948383212089539,0.314029008150101,-0.999508321285248,0.029533464461565,0.0105308974161744,-1,-4.01105025957804e-005,0.000142176271765493,-1,-4.65635166619904e-005,0.000140668023959734,-0.999511361122131,0.0289141554385424,0.0118764201179147,1,-0.000141101831104606,0.000369360146578401,0.971425831317902,0.222297966480255,0.0831599310040474,0.97117817401886,0.217245355248451,0.0980684161186218,0.99999612569809,-0.00112232577521354,0.00258208252489567,0.317099243402481,0.871081948280334,0.375052690505981,0.97117817401886,0.217245355248451,0.0980684161186218,0.971425831317902,0.222297966480255,0.0831599310040474,0.317071586847305,0.885686635971069,0.339153170585632,0.317071586847305,0.885686635971069,0.339153170585632,0.331500113010406,0.881072521209717,0.337370604276657,0.331665247678757,0.863536596298218,0.379872292280197,0.317099243402481,0.871081948280334,0.375052690505981,0.331500113010406,0.881072521209717,0.337370604276657,0.267669200897217,0.89971536397934,0.344768881797791,0.267703115940094,0.885013163089752,0.380902618169785,0.331665247678757,0.863536596298218,0.379872292280197,-0.0438453741371632,0.916255652904511,0.39818748831749,0.267703115940094,0.885013163089752,0.380902618169785,0.267669200897217,0.89971536397934,0.344768881797791,-0.0441256873309612,0.93256950378418,0.358283430337906,-0.0441256873309612,0.93256950378418,0.358283430337906,-0.999512612819672,0.0282992105931044,0.0131803639233112,-0.999501526355743,0.0302802994847298,0.00893339049071074,-0.0438453741371632,0.916255652904511,0.39818748831749,-0.999512612819672,0.0282992105931044,0.0131803639233112,-1,-5.60018888791092e-005,0.000146607111673802,-0.999998092651367,0.00078909849980846,-0.00181532418355346,-0.999501526355743,0.0302802994847298,0.00893339049071074,
- -0.999511361122131,0.0289141554385424,0.0118764201179147,-1,-4.65635166619904e-005,0.000140668023959734,-1,-5.60018888791092e-005,0.000146607111673802,-0.999512612819672,0.0282992105931044,0.0131803639233112,-0.0442155338823795,0.948383212089539,0.314029008150101,-0.999511361122131,0.0289141554385424,0.0118764201179147,-0.999512612819672,0.0282992105931044,0.0131803639233112,-0.0441256873309612,0.93256950378418,0.358283430337906,-0.0441256873309612,0.93256950378418,0.358283430337906,0.267669200897217,0.89971536397934,0.344768881797791,0.267538070678711,0.914968729019165,0.302085697650909,-0.0442155338823795,0.948383212089539,0.314029008150101,0.332043021917343,0.89578241109848,0.295502126216888,0.267538070678711,0.914968729019165,0.302085697650909,0.267669200897217,0.89971536397934,0.344768881797791,0.331500113010406,0.881072521209717,0.337370604276657,0.317001432180405,0.900677740573883,0.29713574051857,0.332043021917343,0.89578241109848,0.295502126216888,0.331500113010406,0.881072521209717,0.337370604276657,0.317071586847305,0.885686635971069,0.339153170585632,0.317071586847305,0.885686635971069,0.339153170585632,0.971425831317902,0.222297966480255,0.0831599310040474,0.971226990222931,0.226736307144165,0.0728620439767838,0.317001432180405,0.900677740573883,0.29713574051857,1,-0.000120558965136297,0.000364166538929567,0.971226990222931,0.226736307144165,0.0728620439767838,0.971425831317902,0.222297966480255,0.0831599310040474,1,-0.000141101831104606,0.000369360146578401,0.970713317394257,0.236381933093071,0.042887955904007,0.970938146114349,0.233490794897079,0.052546750754118,1,-0.000101989979157224,0.00043499656021595,1,-7.85229276516475e-005,0.000415226997574791,0.318400621414185,0.922266602516174,0.219192430377007,0.970938146114349,0.233490794897079,0.052546750754118,0.970713317394257,0.236381933093071,0.042887955904007,0.318300426006317,0.930848479270935,0.179460659623146,0.332295924425125,0.927426517009735,0.171637862920761,0.331684291362762,0.919317245483398,0.211757853627205,0.318400621414185,0.922266602516174,0.219192430377007,
- 0.318300426006317,0.930848479270935,0.179460659623146,0.268716782331467,0.946324646472931,0.179613724350929,0.268808960914612,0.93793249130249,0.219145223498344,0.331684291362762,0.919317245483398,0.211757853627205,0.332295924425125,0.927426517009735,0.171637862920761,-0.0440767072141171,0.971707403659821,0.232039108872414,0.268808960914612,0.93793249130249,0.219145223498344,0.268716782331467,0.946324646472931,0.179613724350929,-0.0442017316818237,0.980761289596558,0.190141066908836,-0.999502778053284,0.0305397119373083,0.00784989353269339,-0.999504446983337,0.0300861708819866,0.00926313549280167,-0.0440767072141171,0.971707403659821,0.232039108872414,-0.0442017316818237,0.980761289596558,0.190141066908836,-1,-2.26181327889208e-005,0.000119621501653455,-1,-2.72125871561002e-005,0.000116075498226564,-0.999504446983337,0.0300861708819866,0.00926313549280167,-0.999502778053284,0.0305397119373083,0.00784989353269339,-0.999509215354919,0.0307103004306555,0.00619137240573764,-1,-6.01522242504871e-006,4.56183770438656e-005,-1,-2.26181327889208e-005,0.000119621501653455,-0.999502778053284,0.0305397119373083,0.00784989353269339,-0.0453523211181164,0.989916622638702,0.134194895625114,-0.999509215354919,0.0307103004306555,0.00619137240573764,-0.999502778053284,0.0305397119373083,0.00784989353269339,-0.0442017316818237,0.980761289596558,0.190141066908836,-0.0442017316818237,0.980761289596558,0.190141066908836,0.268716782331467,0.946324646472931,0.179613724350929,0.265216141939163,0.955349385738373,0.13026162981987,-0.0453523211181164,0.989916622638702,0.134194895625114,0.337565004825592,0.932564795017242,0.127956390380859,0.265216141939163,0.955349385738373,0.13026162981987,0.268716782331467,0.946324646472931,0.179613724350929,0.332295924425125,0.927426517009735,0.171637862920761,0.315536975860596,0.939910113811493,0.130405217409134,0.337565004825592,0.932564795017242,0.127956390380859,0.332295924425125,0.927426517009735,0.171637862920761,0.318300426006317,0.930848479270935,0.179460659623146,0.318300426006317,0.930848479270935,0.179460659623146,
- 0.970713317394257,0.236381933093071,0.042887955904007,0.970396459102631,0.239257603883743,0.0329653918743134,0.315536975860596,0.939910113811493,0.130405217409134,0.99999988079071,-5.95589081058279e-005,0.000427055638283491,0.970396459102631,0.239257603883743,0.0329653918743134,0.970713317394257,0.236381933093071,0.042887955904007,1,-7.85229276516475e-005,0.000415226997574791,-0.316960513591766,0.397006869316101,0.861348688602448,-0.317257791757584,0.414779812097549,0.852821886539459,-0.971651911735535,0.105056121945381,0.21179211139679,-0.971604943275452,0.101483628153801,0.213740468025208,0.999514400959015,0.0116358930245042,0.0289063882082701,0.999512255191803,0.0106598017737269,0.0293573308736086,0.999999761581421,-0.000699014810379595,0.0003213508753106,1,-0.0001252461806871,6.07590700383298e-005,-0.999999940395355,-0.000375262432498857,0.000182035480975173,-0.999999940395355,0.000430796906584874,-0.000198044421267696,-0.971604943275452,0.101483628153801,0.213740468025208,-0.971651911735535,0.105056121945381,0.21179211139679,0.0439328998327255,0.417170166969299,0.907765984535217,0.0440024398267269,0.435957461595535,0.898890972137451,-0.26784759759903,0.421179860830307,0.866524755954742,-0.267584681510925,0.403087556362152,0.875167846679688,-0.330788940191269,0.412763386964798,0.848648965358734,-0.330955445766449,0.395001709461212,0.85699599981308,-0.267584681510925,0.403087556362152,0.875167846679688,-0.26784759759903,0.421179860830307,0.866524755954742,-0.317257791757584,0.414779812097549,0.852821886539459,-0.316960513591766,0.397006869316101,0.861348688602448,-0.330955445766449,0.395001709461212,0.85699599981308,-0.330788940191269,0.412763386964798,0.848648965358734,0.0440024398267269,0.435957461595535,0.898890972137451,0.0439328998327255,0.417170166969299,0.907765984535217,0.999512255191803,0.0106598017737269,0.0293573308736086,0.999514400959015,0.0116358930245042,0.0289063882082701,-3.08235456714101e-007,0.398777157068253,0.91704797744751,-0.00163281091954559,0.398776531219482,0.917046725749969,-0.000942699611186981,0.398776948451996,0.917047500610352,
- 0.000744308228604496,0.398777008056641,0.917047679424286,5.22856898896862e-005,0.398777097463608,0.917047917842865,-2.49623531090037e-006,0.398777157068253,0.91704797744751,-8.62778506416362e-007,0.39877712726593,0.917047917842865,-0.000296999263809994,0.398777097463608,0.91704785823822,-1,-0.000360228266799822,0.000263457099208608,-1,-0.00031302249408327,0.000208124620257877,-0.971089005470276,0.134376600384712,0.197304725646973,-0.970937967300415,0.143003836274147,0.191909819841385,-0.317677110433578,0.527447819709778,0.787959396839142,-0.318403989076614,0.557279944419861,0.766849339008331,-0.970937967300415,0.143003836274147,0.191909819841385,-0.971089005470276,0.134376600384712,0.197304725646973,-0.318403989076614,0.557279944419861,0.766849339008331,-0.317677110433578,0.527447819709778,0.787959396839142,-0.331869602203369,0.52474707365036,0.783902525901794,-0.331680685281754,0.559884190559387,0.759287655353546,-0.331680685281754,0.559884190559387,0.759287655353546,-0.331869602203369,0.52474707365036,0.783902525901794,-0.268126338720322,0.535709857940674,0.800701797008514,-0.268811911344528,0.569200992584229,0.777013838291168,0.0441478900611401,0.554834842681885,0.830788433551788,0.0440762266516685,0.586440324783325,0.808792352676392,-0.268811911344528,0.569200992584229,0.777013838291168,-0.268126338720322,0.535709857940674,0.800701797008514,0.0440762266516685,0.586440324783325,0.808792352676392,0.0441478900611401,0.554834842681885,0.830788433551788,0.999508261680603,0.015561742708087,0.0272221937775612,0.999504446983337,0.0168055798858404,0.0266180150210857,0.999504446983337,0.0168055798858404,0.0266180150210857,0.999508261680603,0.015561742708087,0.0272221937775612,1,-0.0001228827459272,8.1708247307688e-005,1,-9.61305195232853e-005,7.03096811776049e-005,-0.970988810062408,0.155348241329193,0.181790351867676,-0.999985337257385,-0.00391625938937068,0.00374030508100986,-0.999997615814209,-0.00164354685693979,0.00143679138273001,-0.970963537693024,0.155553847551346,0.181749448180199,-0.318410098552704,0.62321811914444,0.714292883872986,
- -0.317550837993622,0.63851797580719,0.701039493083954,-0.970988810062408,0.155348241329193,0.181790351867676,-0.970963537693024,0.155553847551346,0.181749448180199,-0.331541627645493,0.635270595550537,0.697503745555878,-0.317550837993622,0.63851797580719,0.701039493083954,-0.318410098552704,0.62321811914444,0.714292883872986,-0.331949591636658,0.620144307613373,0.710795700550079,-0.26801735162735,0.649201095104218,0.711831867694855,-0.331541627645493,0.635270595550537,0.697503745555878,-0.331949591636658,0.620144307613373,0.710795700550079,-0.26876100897789,0.63567066192627,0.723664581775665,0.0444608256220818,0.654038369655609,0.755153715610504,0.0443064495921135,0.674962341785431,0.736520767211914,-0.26801735162735,0.649201095104218,0.711831867694855,-0.26876100897789,0.63567066192627,0.723664581775665,0.999488353729248,0.0263805538415909,0.0180904995650053,0.0443064495921135,0.674962341785431,0.736520767211914,0.0444608256220818,0.654038369655609,0.755153715610504,0.999508380889893,0.0221033804118633,0.0222354978322983,0.999991297721863,0.00302279414609075,-0.00288660055957735,0.999488353729248,0.0263805538415909,0.0180904995650053,0.999508380889893,0.0221033804118633,0.0222354978322983,0.999999403953552,0.000838444451801479,-0.000732940621674061,-1,-0.00031302249408327,0.000208124620257877,-1,-0.000328243273543194,0.000197683708393015,-0.971226334571838,0.124651148915291,0.202932745218277,-0.971089005470276,0.134376600384712,0.197304725646973,-0.317003726959229,0.49014487862587,0.811952412128448,-0.317677110433578,0.527447819709778,0.787959396839142,-0.971089005470276,0.134376600384712,0.197304725646973,-0.971226334571838,0.124651148915291,0.202932745218277,-0.317677110433578,0.527447819709778,0.787959396839142,-0.317003726959229,0.49014487862587,0.811952412128448,-0.33204260468483,0.487492442131042,0.807526409626007,-0.331869602203369,0.52474707365036,0.783902525901794,-0.331869602203369,0.52474707365036,0.783902525901794,-0.33204260468483,0.487492442131042,0.807526409626007,-0.267542213201523,0.497768223285675,0.825014054775238,
- -0.268126338720322,0.535709857940674,0.800701797008514,0.0442148931324482,0.515355229377747,0.855835258960724,0.0441478900611401,0.554834842681885,0.830788433551788,-0.268126338720322,0.535709857940674,0.800701797008514,-0.267542213201523,0.497768223285675,0.825014054775238,0.0441478900611401,0.554834842681885,0.830788433551788,0.0442148931324482,0.515355229377747,0.855835258960724,0.999511420726776,0.0142152607440948,0.0278399735689163,0.999508261680603,0.015561742708087,0.0272221937775612,0.999508261680603,0.015561742708087,0.0272221937775612,0.999511420726776,0.0142152607440948,0.0278399735689163,1,-0.000126795639516786,7.6367738074623e-005,1,-0.0001228827459272,8.1708247307688e-005,-1,-0.000347189168678597,0.000188257501577027,-0.999999940395355,-0.000375262432498857,0.000182035480975173,-0.971651911735535,0.105056121945381,0.21179211139679,-0.971425294876099,0.114577122032642,0.20785841345787,-0.317257791757584,0.414779812097549,0.852821886539459,-0.317073792219162,0.451408803462982,0.834082961082459,-0.971425294876099,0.114577122032642,0.20785841345787,-0.971651911735535,0.105056121945381,0.21179211139679,-0.317073792219162,0.451408803462982,0.834082961082459,-0.317257791757584,0.414779812097549,0.852821886539459,-0.330788940191269,0.412763386964798,0.848648965358734,-0.33149990439415,0.449069410562515,0.829725623130798,-0.33149990439415,0.449069410562515,0.829725623130798,-0.330788940191269,0.412763386964798,0.848648965358734,-0.26784759759903,0.421179860830307,0.866524755954742,-0.26767310500145,0.458401411771774,0.847478270530701,0.0440024398267269,0.435957461595535,0.898890972137451,0.0441250652074814,0.474538654088974,0.879128038883209,-0.26767310500145,0.458401411771774,0.847478270530701,-0.26784759759903,0.421179860830307,0.866524755954742,0.0441250652074814,0.474538654088974,0.879128038883209,0.0440024398267269,0.435957461595535,0.898890972137451,0.999514400959015,0.0116358930245042,0.0289063882082701,0.999512672424316,0.0128990244120359,0.0284282211214304,0.999512672424316,0.0128990244120359,0.0284282211214304,
- 0.999514400959015,0.0116358930245042,0.0289063882082701,1,-0.0001252461806871,6.07590700383298e-005,1,-0.000137818118673749,7.4734263762366e-005,0.999511420726776,0.0142152607440948,0.0278399735689163,0.999512672424316,0.0128990244120359,0.0284282211214304,1,-0.000137818118673749,7.4734263762366e-005,1,-0.000126795639516786,7.6367738074623e-005,0.0442148931324482,0.515355229377747,0.855835258960724,0.0441250652074814,0.474538654088974,0.879128038883209,0.999512672424316,0.0128990244120359,0.0284282211214304,0.999511420726776,0.0142152607440948,0.0278399735689163,0.0441250652074814,0.474538654088974,0.879128038883209,0.0442148931324482,0.515355229377747,0.855835258960724,-0.267542213201523,0.497768223285675,0.825014054775238,-0.26767310500145,0.458401411771774,0.847478270530701,-0.33204260468483,0.487492442131042,0.807526409626007,-0.33149990439415,0.449069410562515,0.829725623130798,-0.26767310500145,0.458401411771774,0.847478270530701,-0.267542213201523,0.497768223285675,0.825014054775238,-0.317003726959229,0.49014487862587,0.811952412128448,-0.317073792219162,0.451408803462982,0.834082961082459,-0.33149990439415,0.449069410562515,0.829725623130798,-0.33204260468483,0.487492442131042,0.807526409626007,-0.317073792219162,0.451408803462982,0.834082961082459,-0.317003726959229,0.49014487862587,0.811952412128448,-0.971226334571838,0.124651148915291,0.202932745218277,-0.971425294876099,0.114577122032642,0.20785841345787,-1,-0.000328243273543194,0.000197683708393015,-1,-0.000347189168678597,0.000188257501577027,-0.971425294876099,0.114577122032642,0.20785841345787,-0.971226334571838,0.124651148915291,0.202932745218277,-0.97071373462677,0.151485025882721,0.186459332704544,-1,-0.000329583999700844,0.00026373437140137,-1,-0.000360228266799822,0.000263457099208608,-0.970937967300415,0.143003836274147,0.191909819841385,-0.318403989076614,0.557279944419861,0.766849339008331,-0.318305164575577,0.589660882949829,0.742281496524811,-0.97071373462677,0.151485025882721,0.186459332704544,-0.970937967300415,0.143003836274147,0.191909819841385,
- -0.332292228937149,0.592157483100891,0.734119474887848,-0.318305164575577,0.589660882949829,0.742281496524811,-0.318403989076614,0.557279944419861,0.766849339008331,-0.331680685281754,0.559884190559387,0.759287655353546,-0.268719375133514,0.601308763027191,0.752474308013916,-0.332292228937149,0.592157483100891,0.734119474887848,-0.331680685281754,0.559884190559387,0.759287655353546,-0.268811911344528,0.569200992584229,0.777013838291168,0.0440762266516685,0.586440324783325,0.808792352676392,0.0442012324929237,0.620592057704926,0.782886803150177,-0.268719375133514,0.601308763027191,0.752474308013916,-0.268811911344528,0.569200992584229,0.777013838291168,0.999502778053284,0.0180701687932014,0.025841536000371,0.0442012324929237,0.620592057704926,0.782886803150177,0.0440762266516685,0.586440324783325,0.808792352676392,0.999504446983337,0.0168055798858404,0.0266180150210857,1,-9.49517707340419e-005,7.59845934226178e-005,0.999502778053284,0.0180701687932014,0.025841536000371,0.999504446983337,0.0168055798858404,0.0266180150210857,1,-9.61305195232853e-005,7.03096811776049e-005,0.999508380889893,0.0221033804118633,0.0222354978322983,0.999502778053284,0.0180701687932014,0.025841536000371,1,-9.49517707340419e-005,7.59845934226178e-005,0.999999403953552,0.000838444451801479,-0.000732940621674061,0.0444608256220818,0.654038369655609,0.755153715610504,0.0442012324929237,0.620592057704926,0.782886803150177,0.999502778053284,0.0180701687932014,0.025841536000371,0.999508380889893,0.0221033804118633,0.0222354978322983,0.0442012324929237,0.620592057704926,0.782886803150177,0.0444608256220818,0.654038369655609,0.755153715610504,-0.26876100897789,0.63567066192627,0.723664581775665,-0.268719375133514,0.601308763027191,0.752474308013916,-0.331949591636658,0.620144307613373,0.710795700550079,-0.332292228937149,0.592157483100891,0.734119474887848,-0.268719375133514,0.601308763027191,0.752474308013916,-0.26876100897789,0.63567066192627,0.723664581775665,-0.318410098552704,0.62321811914444,0.714292883872986,-0.318305164575577,0.589660882949829,0.742281496524811,
- -0.332292228937149,0.592157483100891,0.734119474887848,-0.331949591636658,0.620144307613373,0.710795700550079,-0.318305164575577,0.589660882949829,0.742281496524811,-0.318410098552704,0.62321811914444,0.714292883872986,-0.970963537693024,0.155553847551346,0.181749448180199,-0.97071373462677,0.151485025882721,0.186459332704544,-0.999997615814209,-0.00164354685693979,0.00143679138273001,-1,-0.000329583999700844,0.00026373437140137,-0.97071373462677,0.151485025882721,0.186459332704544,-0.970963537693024,0.155553847551346,0.181749448180199,-0.31789618730545,0.668336749076843,0.672508716583252,-0.31710147857666,0.686719596385956,0.654112279415131,-0.971178293228149,0.169693812727928,0.167382135987282,-0.971078157424927,0.163686171174049,0.173821836709976,0.999501705169678,0.0252929646521807,0.018888920545578,0.999487996101379,0.0264107398688793,0.0180616658180952,0.999999523162842,0.00075008167186752,-0.000716286362148821,0.999998092651367,0.00136946479324251,-0.0014277616282925,-0.999996066093445,-0.00194778537843376,0.00203078612685204,-0.999997854232788,-0.00152360775973648,0.00145515333861113,-0.971078157424927,0.163686171174049,0.173821836709976,-0.971178293228149,0.169693812727928,0.167382135987282,0.0439611971378326,0.706683695316315,0.706162631511688,0.04384521022439,0.72105485200882,0.691489398479462,-0.267704248428345,0.697753489017487,0.664435565471649,-0.268338203430176,0.679554998874664,0.682788133621216,-0.33166491985321,0.677971541881561,0.656013011932373,-0.331871181726456,0.6649209856987,0.66913503408432,-0.268338203430176,0.679554998874664,0.682788133621216,-0.267704248428345,0.697753489017487,0.664435565471649,-0.31710147857666,0.686719596385956,0.654112279415131,-0.31789618730545,0.668336749076843,0.672508716583252,-0.331871181726456,0.6649209856987,0.66913503408432,-0.33166491985321,0.677971541881561,0.656013011932373,0.04384521022439,0.72105485200882,0.691489398479462,0.0439611971378326,0.706683695316315,0.706162631511688,0.999487996101379,0.0264107398688793,0.0180616658180952,0.999501705169678,0.0252929646521807,0.018888920545578,
- -0.999999940395355,-0.000246509705903009,0.000372331589460373,-1,-0.000221432070247829,0.000304011045955122,-0.971089720726013,0.194510236382484,0.138385906815529,-0.970937967300415,0.200730592012405,0.13033327460289,-0.317675858736038,0.768177151679993,0.555865108966827,-0.318402945995331,0.788825333118439,0.525713086128235,-0.970937967300415,0.200730592012405,0.13033327460289,-0.971089720726013,0.194510236382484,0.138385906815529,-0.318402945995331,0.788825333118439,0.525713086128235,-0.317675858736038,0.768177151679993,0.555865108966827,-0.3318692445755,0.764235198497772,0.552998483181,-0.331682980060577,0.788642048835754,0.517716288566589,-0.331682980060577,0.788642048835754,0.517716288566589,-0.3318692445755,0.764235198497772,0.552998483181,-0.268126308917999,0.780349433422089,0.564945161342621,-0.268810480833054,0.803534150123596,0.531106233596802,0.0441483110189438,0.808728039264679,0.586523652076721,0.0440764203667641,0.830732882022858,0.554923593997955,-0.268810480833054,0.803534150123596,0.531106233596802,-0.268126308917999,0.780349433422089,0.564945161342621,0.0440764203667641,0.830732882022858,0.554923593997955,0.0441483110189438,0.808728039264679,0.586523652076721,0.999508261680603,0.0240441467612982,0.0201289635151625,0.999504327774048,0.0250020455569029,0.0191312748938799,0.999504327774048,0.0250020455569029,0.0191312748938799,0.999508261680603,0.0240441467612982,0.0201289635151625,1,-8.6925268988125e-005,0.000119349184387829,1,-6.57776254229248e-005,9.93559369817376e-005,-0.970988512039185,0.20879191160202,0.116564214229584,-0.999985337257385,-0.00237568700686097,0.0048699164763093,-0.999997615814209,-0.00104317511431873,0.00191905011888593,-0.970962643623352,0.208974361419678,0.116452924907207,-0.318407773971558,0.832419633865356,0.453535079956055,-0.317550212144852,0.842166423797607,0.435795485973358,-0.970988512039185,0.20879191160202,0.116564214229584,-0.970962643623352,0.208974361419678,0.116452924907207,-0.331543505191803,0.837891280651093,0.433609336614609,-0.317550212144852,0.842166423797607,0.435795485973358,
- -0.318407773971558,0.832419633865356,0.453535079956055,-0.331951588392258,0.828322112560272,0.451321184635162,-0.268015027046204,0.85592919588089,0.442213892936707,-0.331543505191803,0.837891280651093,0.433609336614609,-0.331951588392258,0.828322112560272,0.451321184635162,-0.268760770559311,0.847350537776947,0.458001047372818,0.0444615893065929,0.875507712364197,0.481154471635818,0.0443064793944359,0.888662219047546,0.456417053937912,-0.268015027046204,0.85592919588089,0.442213892936707,-0.268760770559311,0.847350537776947,0.458001047372818,0.999488234519959,0.0310223381966352,0.00780501309782267,0.0443064793944359,0.888662219047546,0.456417053937912,0.0444615893065929,0.875507712364197,0.481154471635818,0.999508500099182,0.0284464694559574,0.0131781315430999,0.999991357326508,0.00183376634959131,-0.00375840091146529,0.999488234519959,0.0310223381966352,0.00780501309782267,0.999508500099182,0.0284464694559574,0.0131781315430999,0.999999403953552,0.000532158766873181,-0.000978932832367718,-1,-0.000221432070247829,0.000304011045955122,-0.999999940395355,-0.000239343062276021,0.000299503677524626,-0.971226930618286,0.187343150377274,0.147040098905563,-0.971089720726013,0.194510236382484,0.138385906815529,-0.317003607749939,0.741522610187531,0.591314673423767,-0.317675858736038,0.768177151679993,0.555865108966827,-0.971089720726013,0.194510236382484,0.138385906815529,-0.971226930618286,0.187343150377274,0.147040098905563,-0.317675858736038,0.768177151679993,0.555865108966827,-0.317003607749939,0.741522610187531,0.591314673423767,-0.332042366266251,0.737499058246613,0.588084280490875,-0.3318692445755,0.764235198497772,0.552998483181,-0.3318692445755,0.764235198497772,0.552998483181,-0.332042366266251,0.737499058246613,0.588084280490875,-0.267540216445923,0.753206551074982,0.600917816162109,-0.268126308917999,0.780349433422089,0.564945161342621,0.0442151837050915,0.780398190021515,0.623717784881592,0.0441483110189438,0.808728039264679,0.586523652076721,-0.268126308917999,0.780349433422089,0.564945161342621,-0.267540216445923,0.753206551074982,0.600917816162109,
- 0.0441483110189438,0.808728039264679,0.586523652076721,0.0442151837050915,0.780398190021515,0.623717784881592,0.999511361122131,0.0229953322559595,0.0211752653121948,0.999508261680603,0.0240441467612982,0.0201289635151625,0.999508261680603,0.0240441467612982,0.0201289635151625,0.999511361122131,0.0229953322559595,0.0211752653121948,1,-9.24503037822433e-005,0.000115695824206341,1,-8.6925268988125e-005,0.000119349184387829,-0.999999940395355,-0.000260397151578218,0.000297240359941497,-0.999996066093445,-0.00194778537843376,0.00203078612685204,-0.971178293228149,0.169693812727928,0.167382135987282,-0.971425771713257,0.17960599064827,0.155157193541527,-0.31710147857666,0.686719596385956,0.654112279415131,-0.317072689533234,0.712876856327057,0.625516951084137,-0.971425771713257,0.17960599064827,0.155157193541527,-0.971178293228149,0.169693812727928,0.167382135987282,-0.317072689533234,0.712876856327057,0.625516951084137,-0.31710147857666,0.686719596385956,0.654112279415131,-0.33166491985321,0.677971541881561,0.656013011932373,-0.331498712301254,0.70917010307312,0.622243106365204,-0.331498712301254,0.70917010307312,0.622243106365204,-0.33166491985321,0.677971541881561,0.656013011932373,-0.267704248428345,0.697753489017487,0.664435565471649,-0.267670601606369,0.72408527135849,0.635651707649231,0.04384521022439,0.72105485200882,0.691489398479462,0.0441255755722523,0.750205814838409,0.659730434417725,-0.267670601606369,0.72408527135849,0.635651707649231,-0.267704248428345,0.697753489017487,0.664435565471649,0.0441255755722523,0.750205814838409,0.659730434417725,0.04384521022439,0.72105485200882,0.691489398479462,0.999501705169678,0.0252929646521807,0.018888920545578,0.999512672424316,0.0219642855226994,0.0221832189708948,0.999512672424316,0.0219642855226994,0.0221832189708948,0.999501705169678,0.0252929646521807,0.018888920545578,0.999998092651367,0.00136946479324251,-0.0014277616282925,1,-0.000103356745967176,0.00011798719788203,0.999511361122131,0.0229953322559595,0.0211752653121948,0.999512672424316,0.0219642855226994,0.0221832189708948,
- 1,-0.000103356745967176,0.00011798719788203,1,-9.24503037822433e-005,0.000115695824206341,0.0442151837050915,0.780398190021515,0.623717784881592,0.0441255755722523,0.750205814838409,0.659730434417725,0.999512672424316,0.0219642855226994,0.0221832189708948,0.999511361122131,0.0229953322559595,0.0211752653121948,0.0441255755722523,0.750205814838409,0.659730434417725,0.0442151837050915,0.780398190021515,0.623717784881592,-0.267540216445923,0.753206551074982,0.600917816162109,-0.267670601606369,0.72408527135849,0.635651707649231,-0.332042366266251,0.737499058246613,0.588084280490875,-0.331498712301254,0.70917010307312,0.622243106365204,-0.267670601606369,0.72408527135849,0.635651707649231,-0.267540216445923,0.753206551074982,0.600917816162109,-0.317003607749939,0.741522610187531,0.591314673423767,-0.317072689533234,0.712876856327057,0.625516951084137,-0.331498712301254,0.70917010307312,0.622243106365204,-0.332042366266251,0.737499058246613,0.588084280490875,-0.317072689533234,0.712876856327057,0.625516951084137,-0.317003607749939,0.741522610187531,0.591314673423767,-0.971226930618286,0.187343150377274,0.147040098905563,-0.971425771713257,0.17960599064827,0.155157193541527,-0.999999940395355,-0.000239343062276021,0.000299503677524626,-0.999999940395355,-0.000260397151578218,0.000297240359941497,-0.971425771713257,0.17960599064827,0.155157193541527,-0.971226930618286,0.187343150377274,0.147040098905563,-0.970712721347809,0.206796303391457,0.122279025614262,-1,-0.000217658423935063,0.000361947779310867,-0.999999940395355,-0.000246509705903009,0.000372331589460373,-0.970937967300415,0.200730592012405,0.13033327460289,-0.318402945995331,0.788825333118439,0.525713086128235,-0.318300932645798,0.810666382312775,0.491431027650833,-0.970712721347809,0.206796303391457,0.122279025614262,-0.970937967300415,0.200730592012405,0.13033327460289,-0.332295924425125,0.810172617435455,0.482907682657242,-0.318300932645798,0.810666382312775,0.491431027650833,-0.318402945995331,0.788825333118439,0.525713086128235,-0.331682980060577,0.788642048835754,0.517716288566589,
- -0.26871845126152,0.825127184391022,0.496946156024933,-0.332295924425125,0.810172617435455,0.482907682657242,-0.331682980060577,0.788642048835754,0.517716288566589,-0.268810480833054,0.803534150123596,0.531106233596802,0.0440764203667641,0.830732882022858,0.554923593997955,0.0442014671862125,0.853767991065979,0.518774151802063,-0.26871845126152,0.825127184391022,0.496946156024933,-0.268810480833054,0.803534150123596,0.531106233596802,0.999502778053284,0.025916576385498,0.017962571233511,0.0442014671862125,0.853767991065979,0.518774151802063,0.0440764203667641,0.830732882022858,0.554923593997955,0.999504327774048,0.0250020455569029,0.0191312748938799,1,-6.27040935796686e-005,0.000104277503851336,0.999502778053284,0.025916576385498,0.017962571233511,0.999504327774048,0.0250020455569029,0.0191312748938799,1,-6.57776254229248e-005,9.93559369817376e-005,0.999508500099182,0.0284464694559574,0.0131781315430999,0.999502778053284,0.025916576385498,0.017962571233511,1,-6.27040935796686e-005,0.000104277503851336,0.999999403953552,0.000532158766873181,-0.000978932832367718,0.0444615893065929,0.875507712364197,0.481154471635818,0.0442014671862125,0.853767991065979,0.518774151802063,0.999502778053284,0.025916576385498,0.017962571233511,0.999508500099182,0.0284464694559574,0.0131781315430999,0.0442014671862125,0.853767991065979,0.518774151802063,0.0444615893065929,0.875507712364197,0.481154471635818,-0.268760770559311,0.847350537776947,0.458001047372818,-0.26871845126152,0.825127184391022,0.496946156024933,-0.331951588392258,0.828322112560272,0.451321184635162,-0.332295924425125,0.810172617435455,0.482907682657242,-0.26871845126152,0.825127184391022,0.496946156024933,-0.268760770559311,0.847350537776947,0.458001047372818,-0.318407773971558,0.832419633865356,0.453535079956055,-0.318300932645798,0.810666382312775,0.491431027650833,-0.332295924425125,0.810172617435455,0.482907682657242,-0.331951588392258,0.828322112560272,0.451321184635162,-0.318300932645798,0.810666382312775,0.491431027650833,-0.318407773971558,0.832419633865356,0.453535079956055,
- -0.970962643623352,0.208974361419678,0.116452924907207,-0.970712721347809,0.206796303391457,0.122279025614262,-0.999997615814209,-0.00104317511431873,0.00191905011888593,-1,-0.000217658423935063,0.000361947779310867,-0.970712721347809,0.206796303391457,0.122279025614262,-0.970962643623352,0.208974361419678,0.116452924907207,-0.317895710468292,0.86022675037384,0.398688137531281,-0.317099273204803,0.871081829071045,0.375052630901337,-0.971178233623505,0.21724534034729,0.0980684161186218,-0.971078038215637,0.213845923542976,0.106195457279682,0.999501585960388,0.0302803106606007,0.00893339421600103,0.999488055706024,0.0310403779149055,0.00776804098859429,0.999999523162842,0.000455033412436023,-0.00093261495931074,0.999998092651367,0.00078909849980846,-0.00181532418355346,-0.99999612569809,-0.00112232577521354,0.00258208252489567,-0.999997794628143,-0.000924247549846768,0.00189461337868124,-0.971078038215637,0.213845923542976,0.106195457279682,-0.971178233623505,0.21724534034729,0.0980684161186218,0.0439610742032528,0.907871067523956,0.416938424110413,0.0438454262912273,0.916255652904511,0.398187458515167,-0.267703056335449,0.885013163089752,0.380902618169785,-0.268336117267609,0.874316811561584,0.404432952404022,-0.331665247678757,0.863536417484283,0.379872262477875,-0.3318732380867,0.855852961540222,0.396706312894821,-0.268336117267609,0.874316811561584,0.404432952404022,-0.267703056335449,0.885013163089752,0.380902618169785,-0.317099273204803,0.871081829071045,0.375052630901337,-0.317895710468292,0.86022675037384,0.398688137531281,-0.3318732380867,0.855852961540222,0.396706312894821,-0.331665247678757,0.863536417484283,0.379872262477875,0.0438454262912273,0.916255652904511,0.398187458515167,0.0439610742032528,0.907871067523956,0.416938424110413,0.999488055706024,0.0310403779149055,0.00776804098859429,0.999501585960388,0.0302803106606007,0.00893339421600103,-6.21866784058511e-005,1,1.98499220532833e-011,-8.04712108219974e-005,1,2.56863263298213e-011,0.000625447544734925,0.99999988079071,-1.99642205545025e-010,-0.000936723139602691,0.999999582767487,2.99000990633402e-010,
- -0.00157226028386503,0.999998807907104,5.01863828272775e-010,8.47051633172669e-005,1,-2.05192511380951e-018,-0.000336332828737795,1,8.14743455734925e-018,-6.83162434143014e-005,1,2.18064715590272e-011,-1,-0.000101989979157224,0.00043499656021595,-1,-0.000102186568256002,0.000362174760084599,-0.971089601516724,0.230453923344612,0.0622582361102104,-0.970938146114349,0.233490794897079,0.0525467582046986,-0.317674845457077,0.913368463516235,0.254638493061066,-0.318400621414185,0.922266721725464,0.219192460179329,-0.970938146114349,0.233490794897079,0.0525467582046986,-0.971089601516724,0.230453923344612,0.0622582361102104,-0.318400621414185,0.922266721725464,0.219192460179329,-0.317674845457077,0.913368463516235,0.254638493061066,-0.331869632005692,0.908676445484161,0.253317415714264,-0.331684410572052,0.919317185878754,0.211757808923721,-0.331684410572052,0.919317185878754,0.211757808923721,-0.331869632005692,0.908676445484161,0.253317415714264,-0.268123418092728,0.927936732769012,0.258927524089813,-0.268809020519257,0.937932372093201,0.219145193696022,0.0441487617790699,0.962039947509766,0.269313871860504,0.0440767891705036,0.971707344055176,0.232039093971252,-0.268809020519257,0.937932372093201,0.219145193696022,-0.268123418092728,0.927936732769012,0.258927524089813,0.0440767891705036,0.971707344055176,0.232039093971252,0.0441487617790699,0.962039947509766,0.269313871860504,0.999508321285248,0.0295334793627262,0.0105309011414647,0.999504387378693,0.0300861988216639,0.00926314294338226,0.999504387378693,0.0300861988216639,0.00926314294338226,0.999508321285248,0.0295334793627262,0.0105309011414647,1,-4.01105025957804e-005,0.000142176271765493,1,-2.72125871561002e-005,0.000116075498226564,-0.968846678733826,0.246285021305084,0.0260738264769316,-0.999997973442078,-0.000226577772991732,0.00200963905081153,-0.99999988079071,-5.95589081058279e-005,0.000427055638283491,-0.970396399497986,0.239257529377937,0.0329653806984425,-0.315537065267563,0.939910054206848,0.130405202507973,-0.297862142324448,0.949007272720337,0.103264585137367,
- -0.968846678733826,0.246285021305084,0.0260738264769316,-0.970396399497986,0.239257529377937,0.0329653806984425,-0.357085227966309,0.928887903690338,0.0982728525996208,-0.297862142324448,0.949007272720337,0.103264585137367,-0.315537065267563,0.939910054206848,0.130405202507973,-0.337565034627914,0.932564795017242,0.127956420183182,-0.249935999512672,0.963091552257538,0.0999342128634453,-0.357085227966309,0.928887903690338,0.0982728525996208,-0.337565034627914,0.932564795017242,0.127956420183182,-0.265216141939163,0.955349326133728,0.130261614918709,0.0453522838652134,0.989916622638702,0.134194895625114,0.0494215413928032,0.993648231029511,0.101097695529461,-0.249935999512672,0.963091552257538,0.0999342128634453,-0.265216141939163,0.955349326133728,0.130261614918709,0.999548196792603,0.0297672674059868,0.00417549395933747,0.0494215413928032,0.993648231029511,0.101097695529461,0.0453522838652134,0.989916622638702,0.134194895625114,0.999509215354919,0.030710319057107,0.00619137473404408,0.999999642372131,9.43470440688543e-005,-0.000929508998524398,0.999548196792603,0.0297672674059868,0.00417549395933747,0.999509215354919,0.030710319057107,0.00619137473404408,1,-6.01522242504871e-006,4.56183770438656e-005,-1,-0.000102186568256002,0.000362174760084599,-1,-0.000120558965136297,0.000364166538929567,-0.971226930618286,0.226736307144165,0.0728620439767838,-0.971089601516724,0.230453923344612,0.0622582361102104,-0.317001342773438,0.900677800178528,0.297135770320892,-0.317674845457077,0.913368463516235,0.254638493061066,-0.971089601516724,0.230453923344612,0.0622582361102104,-0.971226930618286,0.226736307144165,0.0728620439767838,-0.317674845457077,0.913368463516235,0.254638493061066,-0.317001342773438,0.900677800178528,0.297135770320892,-0.332042872905731,0.89578241109848,0.295502096414566,-0.331869632005692,0.908676445484161,0.253317415714264,-0.331869632005692,0.908676445484161,0.253317415714264,-0.332042872905731,0.89578241109848,0.295502096414566,-0.267538160085678,0.914968609809875,0.302085667848587,-0.268123418092728,0.927936732769012,0.258927524089813,
- 0.0442155189812183,0.948383212089539,0.314029008150101,0.0441487617790699,0.962039947509766,0.269313871860504,-0.268123418092728,0.927936732769012,0.258927524089813,-0.267538160085678,0.914968609809875,0.302085667848587,0.0441487617790699,0.962039947509766,0.269313871860504,0.0442155189812183,0.948383212089539,0.314029008150101,0.999511420726776,0.0289141647517681,0.0118764219805598,0.999508321285248,0.0295334793627262,0.0105309011414647,0.999508321285248,0.0295334793627262,0.0105309011414647,0.999511420726776,0.0289141647517681,0.0118764219805598,1,-4.65635166619904e-005,0.000140668023959734,1,-4.01105025957804e-005,0.000142176271765493,-1,-0.000141101831104606,0.000369360146578401,-0.99999612569809,-0.00112232577521354,0.00258208252489567,-0.971178233623505,0.21724534034729,0.0980684161186218,-0.971425831317902,0.222297981381416,0.0831599459052086,-0.317099273204803,0.871081829071045,0.375052630901337,-0.317071586847305,0.885686695575714,0.339153200387955,-0.971425831317902,0.222297981381416,0.0831599459052086,-0.971178233623505,0.21724534034729,0.0980684161186218,-0.317071586847305,0.885686695575714,0.339153200387955,-0.317099273204803,0.871081829071045,0.375052630901337,-0.331665247678757,0.863536417484283,0.379872262477875,-0.331500113010406,0.881072521209717,0.337370604276657,-0.331500113010406,0.881072521209717,0.337370604276657,-0.331665247678757,0.863536417484283,0.379872262477875,-0.267703056335449,0.885013163089752,0.380902618169785,-0.26766911149025,0.89971536397934,0.344768881797791,0.0438454262912273,0.916255652904511,0.398187458515167,0.0441257767379284,0.93256950378418,0.358283430337906,-0.26766911149025,0.89971536397934,0.344768881797791,-0.267703056335449,0.885013163089752,0.380902618169785,0.0441257767379284,0.93256950378418,0.358283430337906,0.0438454262912273,0.916255652904511,0.398187458515167,0.999501585960388,0.0302803106606007,0.00893339421600103,0.999512672424316,0.0282992292195559,0.0131803695112467,0.999512672424316,0.0282992292195559,0.0131803695112467,0.999501585960388,0.0302803106606007,0.00893339421600103,
- 0.999998092651367,0.00078909849980846,-0.00181532418355346,1,-5.60019034310244e-005,0.000146607155329548,0.999511420726776,0.0289141647517681,0.0118764219805598,0.999512672424316,0.0282992292195559,0.0131803695112467,1,-5.60019034310244e-005,0.000146607155329548,1,-4.65635166619904e-005,0.000140668023959734,0.0442155189812183,0.948383212089539,0.314029008150101,0.0441257767379284,0.93256950378418,0.358283430337906,0.999512672424316,0.0282992292195559,0.0131803695112467,0.999511420726776,0.0289141647517681,0.0118764219805598,0.0441257767379284,0.93256950378418,0.358283430337906,0.0442155189812183,0.948383212089539,0.314029008150101,-0.267538160085678,0.914968609809875,0.302085667848587,-0.26766911149025,0.89971536397934,0.344768881797791,-0.332042872905731,0.89578241109848,0.295502096414566,-0.331500113010406,0.881072521209717,0.337370604276657,-0.26766911149025,0.89971536397934,0.344768881797791,-0.267538160085678,0.914968609809875,0.302085667848587,-0.317001342773438,0.900677800178528,0.297135770320892,-0.317071586847305,0.885686695575714,0.339153200387955,-0.331500113010406,0.881072521209717,0.337370604276657,-0.332042872905731,0.89578241109848,0.295502096414566,-0.317071586847305,0.885686695575714,0.339153200387955,-0.317001342773438,0.900677800178528,0.297135770320892,-0.971226930618286,0.226736307144165,0.0728620439767838,-0.971425831317902,0.222297981381416,0.0831599459052086,-1,-0.000120558965136297,0.000364166538929567,-1,-0.000141101831104606,0.000369360146578401,-0.971425831317902,0.222297981381416,0.0831599459052086,-0.971226930618286,0.226736307144165,0.0728620439767838,-0.970713317394257,0.236381858587265,0.0428879410028458,-1,-7.85229276516475e-005,0.000415226997574791,-1,-0.000101989979157224,0.00043499656021595,-0.970938146114349,0.233490794897079,0.0525467582046986,-0.318400621414185,0.922266721725464,0.219192460179329,-0.318300575017929,0.93084841966629,0.179460644721985,-0.970713317394257,0.236381858587265,0.0428879410028458,-0.970938146114349,0.233490794897079,0.0525467582046986,-0.33229598402977,0.92742657661438,0.1716378480196,
- -0.318300575017929,0.93084841966629,0.179460644721985,-0.318400621414185,0.922266721725464,0.219192460179329,-0.331684410572052,0.919317185878754,0.211757808923721,-0.268716782331467,0.946324646472931,0.17961373925209,-0.33229598402977,0.92742657661438,0.1716378480196,-0.331684410572052,0.919317185878754,0.211757808923721,-0.268809020519257,0.937932372093201,0.219145193696022,0.0440767891705036,0.971707344055176,0.232039093971252,0.0442018136382103,0.980761289596558,0.190141066908836,-0.268716782331467,0.946324646472931,0.17961373925209,-0.268809020519257,0.937932372093201,0.219145193696022,0.999502778053284,0.0305397231131792,0.00784989539533854,0.0442018136382103,0.980761289596558,0.190141066908836,0.0440767891705036,0.971707344055176,0.232039093971252,0.999504387378693,0.0300861988216639,0.00926314294338226,1,-2.26181327889208e-005,0.000119621501653455,0.999502778053284,0.0305397231131792,0.00784989539533854,0.999504387378693,0.0300861988216639,0.00926314294338226,1,-2.72125871561002e-005,0.000116075498226564,0.999509215354919,0.030710319057107,0.00619137473404408,0.999502778053284,0.0305397231131792,0.00784989539533854,1,-2.26181327889208e-005,0.000119621501653455,1,-6.01522242504871e-006,4.56183770438656e-005,0.0453522838652134,0.989916622638702,0.134194895625114,0.0442018136382103,0.980761289596558,0.190141066908836,0.999502778053284,0.0305397231131792,0.00784989539533854,0.999509215354919,0.030710319057107,0.00619137473404408,0.0442018136382103,0.980761289596558,0.190141066908836,0.0453522838652134,0.989916622638702,0.134194895625114,-0.265216141939163,0.955349326133728,0.130261614918709,-0.268716782331467,0.946324646472931,0.17961373925209,-0.337565034627914,0.932564795017242,0.127956420183182,-0.33229598402977,0.92742657661438,0.1716378480196,-0.268716782331467,0.946324646472931,0.17961373925209,-0.265216141939163,0.955349326133728,0.130261614918709,-0.315537065267563,0.939910054206848,0.130405202507973,-0.318300575017929,0.93084841966629,0.179460644721985,-0.33229598402977,0.92742657661438,0.1716378480196,
- -0.337565034627914,0.932564795017242,0.127956420183182,-0.318300575017929,0.93084841966629,0.179460644721985,-0.315537065267563,0.939910054206848,0.130405202507973,-0.970396399497986,0.239257529377937,0.0329653806984425,-0.970713317394257,0.236381858587265,0.0428879410028458,-0.99999988079071,-5.95589081058279e-005,0.000427055638283491,-1,-7.85229276516475e-005,0.000415226997574791,-0.970713317394257,0.236381858587265,0.0428879410028458,-0.970396399497986,0.239257529377937,0.0329653806984425
- }
- BinormalsW: *1422 {
- 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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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: *4266 {
- a: 1.16412337330062e-014,4.02154171297298e-007,-1,1.03406273479914e-014,3.57223910896209e-007,-1,2.60876444144881e-013,9.01215116755338e-006,-1,3.09913471838522e-013,1.07061696326127e-005,-1,-4.42695061381518e-014,-1.52931988850469e-006,-1,1.62584680961364e-013,5.61659635422984e-006,-1,1.71262567387302e-013,5.91637945035473e-006,-1,-2.55600577460163e-014,-8.82989240835741e-007,-1,-4.36546339103116e-015,4.02154171297298e-007,-1,9.58502313706377e-015,-8.82989240835741e-007,-1,-6.42234746286996e-014,5.91637945035473e-006,-1,-6.09692621367751e-014,5.61659635422984e-006,-1,1.66010664958728e-014,-1.52931988850469e-006,-1,-1.16217582432632e-013,1.07061696326127e-005,-1,-9.7828686883121e-014,9.01215116755338e-006,-1,-3.87773546725503e-015,3.57223910896209e-007,-1,-8.18456769025033e-008,0.569045662879944,-0.822305917739868,-1.27582907794022e-007,0.569045782089233,-0.822305858135223,-2.01736980898204e-007,0.569045841693878,-0.822305917739868,-1.27582907794022e-007,0.569045782089233,-0.822305858135223,2.47676126718943e-007,-0.569045186042786,0.822306275367737,2.84156016050474e-007,-0.56904524564743,0.822306334972382,2.88741887288779e-007,-0.56904524564743,0.822306215763092,2.72794892453021e-007,-0.56904524564743,0.822306215763092,1.20210088994099e-007,0.569045841693878,-0.822305798530579,6.47278710630417e-008,0.569045782089233,-0.822305858135223,-1.12492957171639e-008,0.569045782089233,-0.822305977344513,4.42329373129269e-008,0.569045841693878,-0.822305917739868,-6.34354421436001e-007,-0.56904548406601,0.822306156158447,-7.0352757575165e-007,-0.56904548406601,0.822306036949158,-6.34354421436001e-007,-0.56904548406601,0.822306156158447,-6.14047678482166e-007,-0.56904548406601,0.822306036949158,-1,-0,0,-1,-0,0,-1,-3.70448532294176e-007,-1.40096578782334e-009,-1,-1.11134556846082e-006,-4.20289714142541e-009,-1,-1.11134556846082e-006,-4.20276569101929e-009,-1,-7.40897064588353e-007,-2.80184386802773e-009,-1,-0,0,-1,1.1054505089092e-009,-2.76496336937271e-007,-1,1.1054505089092e-009,-2.76496336937271e-007,-1,-3.70897794255143e-007,-2.77983701835183e-007,
- -1,-1.11490430754202e-006,-2.80958460052716e-007,-1,-1.11490430754202e-006,-2.80958460052716e-007,-1,-7.42901079320291e-007,-2.79470839359419e-007,-1,1.1054506199315e-009,-2.76496336937271e-007,-0.00288366689346731,0.90857458114624,-0.417712777853012,-0.00301147531718016,0.908578872680664,-0.417702436447144,-0.0021920136641711,0.899808526039124,-0.436279326677322,-0.00284988759085536,0.899692237377167,-0.436515539884567,-0.00214811158366501,0.899726033210754,-0.436449825763702,-0.000139205832965672,0.899719178676605,-0.436469197273254,-0.000769342586863786,0.908586859703064,-0.417695254087448,-0.00257824757136405,0.908584952354431,-0.41769215464592,0.000417083705542609,0.899729311466217,-0.436448246240616,-0.0021920136641711,0.899808526039124,-0.436279326677322,-0.00301147531718016,0.908578872680664,-0.417702436447144,-0.000474138767458498,0.908588230609894,-0.417692929506302,-0.00250838231295347,0.908594369888306,-0.417672216892242,-0.00255244201980531,0.908582627773285,-0.417697429656982,-0.00255655008368194,0.899694740772247,-0.43651208281517,-0.00250611361116171,0.899711489677429,-0.436478078365326,-0.00274406862445176,0.899690687656403,-0.436519324779511,-0.00255655008368194,0.899694740772247,-0.43651208281517,-0.00255244201980531,0.908582627773285,-0.417697429656982,-0.00278313644230366,0.908579587936401,-0.417702496051788,-0.00284988759085536,0.899692237377167,-0.436515539884567,-0.00274406862445176,0.899690687656403,-0.436519324779511,-0.00278313644230366,0.908579587936401,-0.417702496051788,-0.00288366689346731,0.90857458114624,-0.417712777853012,-0.00250611361116171,0.899711489677429,-0.436478078365326,-0.00214811158366501,0.899726033210754,-0.436449825763702,-0.00257824757136405,0.908584952354431,-0.41769215464592,-0.00250838231295347,0.908594369888306,-0.417672216892242,1,-9.17936731070768e-008,-2.96200710181438e-007,0.99999988079071,-0.000118405398097821,-0.000272376055363566,1,-1.93480100278975e-005,7.47263720768387e-006,1,-1.99993955902755e-005,5.97467806073837e-006,1,1.84637519851094e-006,5.62123241252266e-005,
- 0.999999761581421,0.000277809129329398,0.00069083011476323,0.999999642372131,-0.000394931033952162,-0.000856236787512898,0.999998688697815,-0.000670131528750062,-0.00148910190910101,0.000446289195679128,0.807163178920746,-0.590328097343445,-0.00225178711116314,0.807281315326691,-0.590162456035614,-0.00275333551689982,0.832768261432648,-0.553614914417267,0.000375897478079423,0.832733571529388,-0.55367374420166,-0.00350954872556031,0.831654787063599,-0.555281817913055,-0.00275333551689982,0.832768261432648,-0.553614914417267,-0.00225178711116314,0.807281315326691,-0.590162456035614,-0.00172833516262472,0.809291064739227,-0.587405264377594,-0.00172833516262472,0.809291064739227,-0.587405264377594,-0.00374282454140484,0.805623412132263,-0.592416286468506,-0.00343709206208587,0.831666231155396,-0.555265128612518,-0.00350954872556031,0.831654787063599,-0.555281817913055,-0.00374282454140484,0.805623412132263,-0.592416286468506,-0.0026548036839813,0.807141304016113,-0.590352416038513,-0.00314056337811053,0.831616401672363,-0.55534166097641,-0.00343709206208587,0.831666231155396,-0.555265128612518,-0.00246557826176286,0.831536114215851,-0.555465221405029,-0.00314056337811053,0.831616401672363,-0.55534166097641,-0.0026548036839813,0.807141304016113,-0.590352416038513,-0.00279178563505411,0.809503674507141,-0.587108254432678,-0.00279178563505411,0.809503674507141,-0.587108254432678,-0.00214977888390422,0.807157635688782,-0.590331971645355,-0.00211473414674401,0.832727015018463,-0.553679764270782,-0.00246557826176286,0.831536114215851,-0.555465221405029,-0.00214977888390422,0.807157635688782,-0.590331971645355,-0.00011909880413441,0.807149231433868,-0.590347409248352,-0.000147568323882297,0.832717776298523,-0.553697764873505,-0.00211473414674401,0.832727015018463,-0.553679764270782,0.0133504262194037,0.723827362060547,-0.689851999282837,0.00258906953968108,0.752856910228729,-0.658179044723511,0.00218302896246314,0.752872705459595,-0.658162534236908,0.00541543774306774,0.72315514087677,-0.690664410591125,0.00260372692719102,0.752932965755463,-0.658092141151428,
- 0.00258906953968108,0.752856910228729,-0.658179044723511,0.0133504262194037,0.723827362060547,-0.689851999282837,0.0149244433268905,0.735847949981689,-0.676982402801514,0.014835873618722,0.735717177391052,-0.677126407623291,0.0025047012604773,0.75294041633606,-0.658083915710449,0.00260372692719102,0.752932965755463,-0.658092141151428,0.0149244433268905,0.735847949981689,-0.676982402801514,0.0132694877684116,0.736306250095367,-0.676518321037292,0.00153067812789232,0.751024603843689,-0.660272359848022,0.0025047012604773,0.75294041633606,-0.658083915710449,0.014835873618722,0.735717177391052,-0.677126407623291,0.00208061118610203,0.755960166454315,-0.654614329338074,0.00153067812789232,0.751024603843689,-0.660272359848022,0.0132694877684116,0.736306250095367,-0.676518321037292,0.00689181592315435,0.737433731555939,-0.675384402275085,0.00658607203513384,0.723149657249451,-0.690659999847412,0.00200733309611678,0.752870559692383,-0.658165514469147,0.00208061118610203,0.755960166454315,-0.654614329338074,0.00689181592315435,0.737433731555939,-0.675384402275085,0.00417968258261681,0.723205089569092,-0.690620720386505,0.00111363863106817,0.752886891365051,-0.658149003982544,0.00200733309611678,0.752870559692383,-0.658165514469147,0.00658607203513384,0.723149657249451,-0.690659999847412,0.000375897478079423,0.832733571529388,-0.55367374420166,-0.00275333551689982,0.832768261432648,-0.553614914417267,-0.0021921549923718,0.856732904911041,-0.515755593776703,0.000383174221497029,0.856642365455627,-0.515910625457764,-0.00281591177918017,0.856589257717133,-0.51599109172821,-0.0021921549923718,0.856732904911041,-0.515755593776703,-0.00275333551689982,0.832768261432648,-0.553614914417267,-0.00350954872556031,0.831654787063599,-0.555281817913055,-0.00350954872556031,0.831654787063599,-0.555281817913055,-0.00343709206208587,0.831666231155396,-0.555265128612518,-0.00271524954587221,0.856588006019592,-0.515993714332581,-0.00281591177918017,0.856589257717133,-0.51599109172821,-0.00343709206208587,0.831666231155396,-0.555265128612518,-0.00314056337811053,0.831616401672363,-0.55534166097641,
- -0.00257651670835912,0.856593191623688,-0.51598584651947,-0.00271524954587221,0.856588006019592,-0.515993714332581,-0.00253166374750435,0.856612503528595,-0.51595401763916,-0.00257651670835912,0.856593191623688,-0.51598584651947,-0.00314056337811053,0.831616401672363,-0.55534166097641,-0.00246557826176286,0.831536114215851,-0.555465221405029,-0.00246557826176286,0.831536114215851,-0.555465221405029,-0.00211473414674401,0.832727015018463,-0.553679764270782,-0.00218674098141491,0.856638133525848,-0.515913128852844,-0.00253166374750435,0.856612503528595,-0.51595401763916,-0.00211473414674401,0.832727015018463,-0.553679764270782,-0.000147568323882297,0.832717776298523,-0.553697764873505,-0.000148017454193905,0.856626331806183,-0.515937447547913,-0.00218674098141491,0.856638133525848,-0.515913128852844,0.000394944567233324,0.879083335399628,-0.476668149232864,-0.00176021654624492,0.879215598106384,-0.476420789957047,-0.0021920136641711,0.899808526039124,-0.436279326677322,0.000417083705542609,0.899729311466217,-0.436448246240616,-0.00284988759085536,0.899692237377167,-0.436515539884567,-0.0021920136641711,0.899808526039124,-0.436279326677322,-0.00176021654624492,0.879215598106384,-0.476420789957047,-0.00227742525748909,0.879822313785553,-0.475297331809998,-0.00227742525748909,0.879822313785553,-0.475297331809998,-0.00214648013934493,0.879810690879822,-0.47531920671463,-0.00274406862445176,0.899690687656403,-0.436519324779511,-0.00284988759085536,0.899692237377167,-0.436515539884567,-0.00214648013934493,0.879810690879822,-0.47531920671463,-0.00210825051181018,0.879850625991821,-0.475245743989944,-0.00255655008368194,0.899694740772247,-0.43651208281517,-0.00274406862445176,0.899690687656403,-0.436519324779511,-0.00250611361116171,0.899711489677429,-0.436478078365326,-0.00255655008368194,0.899694740772247,-0.43651208281517,-0.00210825051181018,0.879850625991821,-0.475245743989944,-0.00260980916209519,0.879927337169647,-0.475101083517075,-0.00260980916209519,0.879927337169647,-0.475101083517075,-0.00221261684782803,0.879080712795258,-0.47666797041893,
- -0.00214811158366501,0.899726033210754,-0.436449825763702,-0.00250611361116171,0.899711489677429,-0.436478078365326,-0.00221261684782803,0.879080712795258,-0.47666797041893,-0.000156777052325197,0.87907075881958,-0.476691395044327,-0.000139205832965672,0.899719178676605,-0.436469197273254,-0.00214811158366501,0.899726033210754,-0.436449825763702,-0.00218674098141491,0.856638133525848,-0.515913128852844,-0.000148017454193905,0.856626331806183,-0.515937447547913,-0.000156777052325197,0.87907075881958,-0.476691395044327,-0.00221261684782803,0.879080712795258,-0.47666797041893,-0.00253166374750435,0.856612503528595,-0.51595401763916,-0.00218674098141491,0.856638133525848,-0.515913128852844,-0.00221261684782803,0.879080712795258,-0.47666797041893,-0.00260980916209519,0.879927337169647,-0.475101083517075,-0.00260980916209519,0.879927337169647,-0.475101083517075,-0.00210825051181018,0.879850625991821,-0.475245743989944,-0.00257651670835912,0.856593191623688,-0.51598584651947,-0.00253166374750435,0.856612503528595,-0.51595401763916,-0.00271524954587221,0.856588006019592,-0.515993714332581,-0.00257651670835912,0.856593191623688,-0.51598584651947,-0.00210825051181018,0.879850625991821,-0.475245743989944,-0.00214648013934493,0.879810690879822,-0.47531920671463,-0.00281591177918017,0.856589257717133,-0.51599109172821,-0.00271524954587221,0.856588006019592,-0.515993714332581,-0.00214648013934493,0.879810690879822,-0.47531920671463,-0.00227742525748909,0.879822313785553,-0.475297331809998,-0.00227742525748909,0.879822313785553,-0.475297331809998,-0.00176021654624492,0.879215598106384,-0.476420789957047,-0.0021921549923718,0.856732904911041,-0.515755593776703,-0.00281591177918017,0.856589257717133,-0.51599109172821,0.000383174221497029,0.856642365455627,-0.515910625457764,-0.0021921549923718,0.856732904911041,-0.515755593776703,-0.00176021654624492,0.879215598106384,-0.476420789957047,0.000394944567233324,0.879083335399628,-0.476668149232864,-0.00190269167069346,0.780964255332947,-0.62457275390625,-0.00225178711116314,0.807281315326691,-0.590162456035614,
- 0.000446289195679128,0.807163178920746,-0.590328097343445,0.000422115379478782,0.780791103839874,-0.624791979789734,-0.00172833516262472,0.809291064739227,-0.587405264377594,-0.00225178711116314,0.807281315326691,-0.590162456035614,-0.00190269167069346,0.780964255332947,-0.62457275390625,-0.00154642935376614,0.783328950405121,-0.621605396270752,-0.00371453142724931,0.779163479804993,-0.626809656620026,-0.00374282454140484,0.805623412132263,-0.592416286468506,-0.00172833516262472,0.809291064739227,-0.587405264377594,-0.00154642935376614,0.783328950405121,-0.621605396270752,-0.00229879934340715,0.781606554985046,-0.623767554759979,-0.0026548036839813,0.807141304016113,-0.590352416038513,-0.00374282454140484,0.805623412132263,-0.592416286468506,-0.00371453142724931,0.779163479804993,-0.626809656620026,-0.00279178563505411,0.809503674507141,-0.587108254432678,-0.0026548036839813,0.807141304016113,-0.590352416038513,-0.00229879934340715,0.781606554985046,-0.623767554759979,-0.00283588003367186,0.783571600914001,-0.621294975280762,-0.00203783321194351,0.780784249305725,-0.624797403812408,-0.00214977888390422,0.807157635688782,-0.590331971645355,-0.00279178563505411,0.809503674507141,-0.587108254432678,-0.00283588003367186,0.783571600914001,-0.621294975280762,-0.000121612058137544,0.780775904655457,-0.624811232089996,-0.00011909880413441,0.807149231433868,-0.590347409248352,-0.00214977888390422,0.807157635688782,-0.590331971645355,-0.00203783321194351,0.780784249305725,-0.624797403812408,0.00200733309611678,0.752870559692383,-0.658165514469147,0.00111363863106817,0.752886891365051,-0.658149003982544,-0.000121612058137544,0.780775904655457,-0.624811232089996,-0.00203783321194351,0.780784249305725,-0.624797403812408,0.00208061118610203,0.755960166454315,-0.654614329338074,0.00200733309611678,0.752870559692383,-0.658165514469147,-0.00203783321194351,0.780784249305725,-0.624797403812408,-0.00283588003367186,0.783571600914001,-0.621294975280762,-0.00283588003367186,0.783571600914001,-0.621294975280762,-0.00229879934340715,0.781606554985046,-0.623767554759979,
- 0.00153067812789232,0.751024603843689,-0.660272359848022,0.00208061118610203,0.755960166454315,-0.654614329338074,0.0025047012604773,0.75294041633606,-0.658083915710449,0.00153067812789232,0.751024603843689,-0.660272359848022,-0.00229879934340715,0.781606554985046,-0.623767554759979,-0.00371453142724931,0.779163479804993,-0.626809656620026,0.00260372692719102,0.752932965755463,-0.658092141151428,0.0025047012604773,0.75294041633606,-0.658083915710449,-0.00371453142724931,0.779163479804993,-0.626809656620026,-0.00154642935376614,0.783328950405121,-0.621605396270752,-0.00154642935376614,0.783328950405121,-0.621605396270752,-0.00190269167069346,0.780964255332947,-0.62457275390625,0.00258906953968108,0.752856910228729,-0.658179044723511,0.00260372692719102,0.752932965755463,-0.658092141151428,0.00218302896246314,0.752872705459595,-0.658162534236908,0.00258906953968108,0.752856910228729,-0.658179044723511,-0.00190269167069346,0.780964255332947,-0.62457275390625,0.000422115379478782,0.780791103839874,-0.624791979789734,0.00180893403012306,0.708874642848969,-0.705332159996033,0.00215064221993089,0.721987545490265,-0.691902697086334,0.00343728484585881,0.692197024822235,-0.721700429916382,0.00190860661678016,0.689243495464325,-0.724527359008789,0.00387623254209757,0.692166745662689,-0.721727132797241,0.00197836733423173,0.692218363285065,-0.721685469150543,0.00103715411387384,0.723210990428925,-0.690626382827759,0.00662779901176691,0.7231485247612,-0.690660774707794,0.00281388685107231,0.692201793193817,-0.721698462963104,0.00343728484585881,0.692197024822235,-0.721700429916382,0.00215064221993089,0.721987545490265,-0.691902697086334,0.00210685818456113,0.723164141178131,-0.690672993659973,0.00883014593273401,0.707093238830566,-0.707065284252167,0.00200034701265395,0.708388328552246,-0.705820083618164,0.00186182640027255,0.689229488372803,-0.724540829658508,0.00297577958554029,0.692246198654175,-0.721655309200287,0.00419345684349537,0.694306671619415,-0.719667136669159,0.00186182640027255,0.689229488372803,-0.724540829658508,
- 0.00200034701265395,0.708388328552246,-0.705820083618164,0.0012207746040076,0.70903354883194,-0.70517373085022,0.00190860661678016,0.689243495464325,-0.724527359008789,0.00419345684349537,0.694306671619415,-0.719667136669159,0.0012207746040076,0.70903354883194,-0.70517373085022,0.00180893403012306,0.708874642848969,-0.705332159996033,0.00297577958554029,0.692246198654175,-0.721655309200287,0.00387623254209757,0.692166745662689,-0.721727132797241,0.00662779901176691,0.7231485247612,-0.690660774707794,0.00883014593273401,0.707093238830566,-0.707065284252167,0.000446539896074682,0.552044034004211,-0.833814799785614,-0.00225265161134303,0.552212953567505,-0.833699941635132,-0.00275467429310083,0.588803887367249,-0.808271288871765,0.000376104842871428,0.588750720024109,-0.808314502239227,-0.00351115595549345,0.587181270122528,-0.809447884559631,-0.00275467429310083,0.588803887367249,-0.808271288871765,-0.00225265161134303,0.552212953567505,-0.833699941635132,-0.00172920315526426,0.555058121681213,-0.831809759140015,-0.00172920315526426,0.555058121681213,-0.831809759140015,-0.00374429509975016,0.549878537654877,-0.835236310958862,-0.00343793607316911,0.587198317050934,-0.809435784816742,-0.00351115595549345,0.587181270122528,-0.809447884559631,-0.00374429509975016,0.549878537654877,-0.835236310958862,-0.00265628425404429,0.5520179271698,-0.833827912807465,-0.00314224907197058,0.587122857570648,-0.809491753578186,-0.00343793607316911,0.587198317050934,-0.809435784816742,-0.00246687792241573,0.587006032466888,-0.809578776359558,-0.00314224907197058,0.587122857570648,-0.809491753578186,-0.00265628425404429,0.5520179271698,-0.833827912807465,-0.00279320869594812,0.55535876750946,-0.831606149673462,-0.00279320869594812,0.55535876750946,-0.831606149673462,-0.00215088180266321,0.552039861679077,-0.833814918994904,-0.00211576977744699,0.588744044303894,-0.808316826820374,-0.00246687792241573,0.587006032466888,-0.809578776359558,-0.00215088180266321,0.552039861679077,-0.833814918994904,-0.000119156618893612,0.552026629447937,-0.83382648229599,
- -0.000147648999700323,0.5887291431427,-0.808330357074738,-0.00211576977744699,0.588744044303894,-0.808316826820374,0.0133554665371776,0.439346969127655,-0.898218154907227,0.00259067141450942,0.477566450834274,-0.87859183549881,0.00218425481580198,0.477587550878525,-0.878581583499908,0.0054184845648706,0.438434809446335,-0.89874666929245,0.00260485126636922,0.477665692567825,-0.878537774085999,0.00259067141450942,0.477566450834274,-0.87859183549881,0.0133554665371776,0.439346969127655,-0.898218154907227,0.0149286715313792,0.455085724592209,-0.89032244682312,0.0148412054404616,0.454915821552277,-0.890410840511322,0.00250551686622202,0.477675080299377,-0.878532946109772,0.00260485126636922,0.477665692567825,-0.878537774085999,0.0149286715313792,0.455085724592209,-0.89032244682312,0.0132751688361168,0.455682188272476,-0.890043556690216,0.00153180642519146,0.475119322538376,-0.87992000579834,0.00250551686622202,0.477675080299377,-0.878532946109772,0.0148412054404616,0.454915821552277,-0.890410840511322,0.00208185333758593,0.481710880994797,-0.876327753067017,0.00153180642519146,0.475119322538376,-0.87992000579834,0.0132751688361168,0.455682188272476,-0.890043556690216,0.00689605623483658,0.45712685585022,-0.889374792575836,0.00658985693007708,0.438431322574615,-0.898740530014038,0.00200840621255338,0.477582097053528,-0.878584921360016,0.00208185333758593,0.481710880994797,-0.876327753067017,0.00689605623483658,0.45712685585022,-0.889374792575836,0.00418189819902182,0.43849703669548,-0.898722887039185,0.00111422734335065,0.477603107690811,-0.878575026988983,0.00200840621255338,0.477582097053528,-0.878584921360016,0.00658985693007708,0.438431322574615,-0.898740530014038,0.000376104842871428,0.588750720024109,-0.808314502239227,-0.00275467429310083,0.588803887367249,-0.808271288871765,-0.00219318480230868,0.624420583248138,-0.781085193157196,0.000383389560738578,0.624281585216522,-0.781199336051941,-0.0028173248283565,0.624204099178314,-0.781256198883057,-0.00219318480230868,0.624420583248138,-0.781085193157196,-0.00275467429310083,0.588803887367249,-0.808271288871765,
- -0.00351115595549345,0.587181270122528,-0.809447884559631,-0.00351115595549345,0.587181270122528,-0.809447884559631,-0.00343793607316911,0.587198317050934,-0.809435784816742,-0.00271674152463675,0.624201536178589,-0.781258702278137,-0.0028173248283565,0.624204099178314,-0.781256198883057,-0.00343793607316911,0.587198317050934,-0.809435784816742,-0.00314224907197058,0.587122857570648,-0.809491753578186,-0.00257789180614054,0.62420928478241,-0.781252920627594,-0.00271674152463675,0.624201536178589,-0.781258702278137,-0.00253305491060019,0.624238729476929,-0.781229496002197,-0.00257789180614054,0.62420928478241,-0.781252920627594,-0.00314224907197058,0.587122857570648,-0.809491753578186,-0.00246687792241573,0.587006032466888,-0.809578776359558,-0.00246687792241573,0.587006032466888,-0.809578776359558,-0.00211576977744699,0.588744044303894,-0.808316826820374,-0.00218774797394872,0.624276459217072,-0.781200349330902,-0.00253305491060019,0.624238729476929,-0.781229496002197,-0.00211576977744699,0.588744044303894,-0.808316826820374,-0.000147648999700323,0.5887291431427,-0.808330357074738,-0.000148096514749341,0.624257028102875,-0.781218945980072,-0.00218774797394872,0.624276459217072,-0.781200349330902,0.000395168957766145,0.65895140171051,-0.752185463905334,-0.00176151760388166,0.659161329269409,-0.751999497413635,0.00343728484585881,0.692197024822235,-0.721700429916382,0.00281388685107231,0.692201793193817,-0.721698462963104,0.00190860661678016,0.689243495464325,-0.724527359008789,0.00343728484585881,0.692197024822235,-0.721700429916382,-0.00176151760388166,0.659161329269409,-0.751999497413635,-0.00227881059981883,0.660119593143463,-0.751157104969025,-0.00227881059981883,0.660119593143463,-0.751157104969025,-0.00214791879989207,0.660101592540741,-0.751173198223114,0.00419345684349537,0.694306671619415,-0.719667136669159,0.00190860661678016,0.689243495464325,-0.724527359008789,-0.00214791879989207,0.660101592540741,-0.751173198223114,-0.00211003585718572,0.660163700580597,-0.751118898391724,0.00186182640027255,0.689229488372803,-0.724540829658508,
- 0.00419345684349537,0.694306671619415,-0.719667136669159,0.00297577958554029,0.692246198654175,-0.721655309200287,0.00186182640027255,0.689229488372803,-0.724540829658508,-0.00211003585718572,0.660163700580597,-0.751118898391724,-0.00261114304885268,0.660284757614136,-0.751010775566101,-0.00261114304885268,0.660284757614136,-0.751010775566101,-0.00221365178003907,0.658947944641113,-0.752185344696045,0.00387623254209757,0.692166745662689,-0.721727132797241,0.00297577958554029,0.692246198654175,-0.721655309200287,-0.00221365178003907,0.658947944641113,-0.752185344696045,-0.000156855283421464,0.658930420875549,-0.752203941345215,0.00197836733423173,0.692218363285065,-0.721685469150543,0.00387623254209757,0.692166745662689,-0.721727132797241,-0.00218774797394872,0.624276459217072,-0.781200349330902,-0.000148096514749341,0.624257028102875,-0.781218945980072,-0.000156855283421464,0.658930420875549,-0.752203941345215,-0.00221365178003907,0.658947944641113,-0.752185344696045,-0.00253305491060019,0.624238729476929,-0.781229496002197,-0.00218774797394872,0.624276459217072,-0.781200349330902,-0.00221365178003907,0.658947944641113,-0.752185344696045,-0.00261114304885268,0.660284757614136,-0.751010775566101,-0.00261114304885268,0.660284757614136,-0.751010775566101,-0.00211003585718572,0.660163700580597,-0.751118898391724,-0.00257789180614054,0.62420928478241,-0.781252920627594,-0.00253305491060019,0.624238729476929,-0.781229496002197,-0.00271674152463675,0.624201536178589,-0.781258702278137,-0.00257789180614054,0.62420928478241,-0.781252920627594,-0.00211003585718572,0.660163700580597,-0.751118898391724,-0.00214791879989207,0.660101592540741,-0.751173198223114,-0.0028173248283565,0.624204099178314,-0.781256198883057,-0.00271674152463675,0.624201536178589,-0.781258702278137,-0.00214791879989207,0.660101592540741,-0.751173198223114,-0.00227881059981883,0.660119593143463,-0.751157104969025,-0.00227881059981883,0.660119593143463,-0.751157104969025,-0.00176151760388166,0.659161329269409,-0.751999497413635,-0.00219318480230868,0.624420583248138,-0.781085193157196,
- -0.0028173248283565,0.624204099178314,-0.781256198883057,0.000383389560738578,0.624281585216522,-0.781199336051941,-0.00219318480230868,0.624420583248138,-0.781085193157196,-0.00176151760388166,0.659161329269409,-0.751999497413635,0.000395168957766145,0.65895140171051,-0.752185463905334,-0.00190429168287665,0.515586972236633,-0.856835067272186,-0.00225265161134303,0.552212953567505,-0.833699941635132,0.000446539896074682,0.552044034004211,-0.833814799785614,0.000422352139139548,0.515348017215729,-0.856980800628662,-0.00172920315526426,0.555058121681213,-0.831809759140015,-0.00225265161134303,0.552212953567505,-0.833699941635132,-0.00190429168287665,0.515586972236633,-0.856835067272186,-0.001547941705212,0.518836557865143,-0.854872047901154,-0.00371602573432028,0.513122737407684,-0.858307242393494,-0.00374429509975016,0.549878537654877,-0.835236310958862,-0.00172920315526426,0.555058121681213,-0.831809759140015,-0.001547941705212,0.518836557865143,-0.854872047901154,-0.00229996046982706,0.516470611095428,-0.856301784515381,-0.00265628425404429,0.5520179271698,-0.833827912807465,-0.00374429509975016,0.549878537654877,-0.835236310958862,-0.00371602573432028,0.513122737407684,-0.858307242393494,-0.00279320869594812,0.55535876750946,-0.831606149673462,-0.00265628425404429,0.5520179271698,-0.833827912807465,-0.00229996046982706,0.516470611095428,-0.856301784515381,-0.00283745303750038,0.519172251224518,-0.854664862155914,-0.00203879922628403,0.515339732170105,-0.856983542442322,-0.00215088180266321,0.552039861679077,-0.833814918994904,-0.00279320869594812,0.55535876750946,-0.831606149673462,-0.00283745303750038,0.519172251224518,-0.854664862155914,-0.000121678262075875,0.515326976776123,-0.856993675231934,-0.000119156618893612,0.552026629447937,-0.83382648229599,-0.00215088180266321,0.552039861679077,-0.833814918994904,-0.00203879922628403,0.515339732170105,-0.856983542442322,0.00200840621255338,0.477582097053528,-0.878584921360016,0.00111422734335065,0.477603107690811,-0.878575026988983,-0.000121678262075875,0.515326976776123,-0.856993675231934,
- -0.00203879922628403,0.515339732170105,-0.856983542442322,0.00208185333758593,0.481710880994797,-0.876327753067017,0.00200840621255338,0.477582097053528,-0.878584921360016,-0.00203879922628403,0.515339732170105,-0.856983542442322,-0.00283745303750038,0.519172251224518,-0.854664862155914,-0.00283745303750038,0.519172251224518,-0.854664862155914,-0.00229996046982706,0.516470611095428,-0.856301784515381,0.00153180642519146,0.475119322538376,-0.87992000579834,0.00208185333758593,0.481710880994797,-0.876327753067017,0.00250551686622202,0.477675080299377,-0.878532946109772,0.00153180642519146,0.475119322538376,-0.87992000579834,-0.00229996046982706,0.516470611095428,-0.856301784515381,-0.00371602573432028,0.513122737407684,-0.858307242393494,0.00260485126636922,0.477665692567825,-0.878537774085999,0.00250551686622202,0.477675080299377,-0.878532946109772,-0.00371602573432028,0.513122737407684,-0.858307242393494,-0.001547941705212,0.518836557865143,-0.854872047901154,-0.001547941705212,0.518836557865143,-0.854872047901154,-0.00190429168287665,0.515586972236633,-0.856835067272186,0.00259067141450942,0.477566450834274,-0.87859183549881,0.00260485126636922,0.477665692567825,-0.878537774085999,0.00218425481580198,0.477587550878525,-0.878581583499908,0.00259067141450942,0.477566450834274,-0.87859183549881,-0.00190429168287665,0.515586972236633,-0.856835067272186,0.000422352139139548,0.515348017215729,-0.856980800628662,0.00181331567000598,0.419948995113373,-0.907545924186707,0.00215415447019041,0.436909288167953,-0.899502992630005,0.0034392171073705,0.398624062538147,-0.917107939720154,0.00191059778444469,0.394873917102814,-0.918733298778534,0.00387832312844694,0.398588985204697,-0.917121469974518,0.00197941367514431,0.398651868104935,-0.917100250720978,0.00103770231362432,0.438500672578812,-0.898730278015137,0.00663097482174635,0.438430041074753,-0.898740828037262,0.00281545124016702,0.398629307746887,-0.917107939720154,0.0034392171073705,0.398624062538147,-0.917107939720154,0.00215415447019041,0.436909288167953,-0.899502992630005,
- 0.00210803071968257,0.438440263271332,-0.898757874965668,0.00883422326296568,0.417678833007813,-0.908551812171936,0.00200417311862111,0.419322431087494,-0.907835185527802,0.00186320126522332,0.394855380058289,-0.918741405010223,0.00297735817730427,0.398688852787018,-0.917081475257874,0.00419532647356391,0.401310175657272,-0.915932655334473,0.00186320126522332,0.394855380058289,-0.918741405010223,0.00200417311862111,0.419322431087494,-0.907835185527802,0.00122388196177781,0.420149922370911,-0.907453894615173,0.00191059778444469,0.394873917102814,-0.918733298778534,0.00419532647356391,0.401310175657272,-0.915932655334473,0.00122388196177781,0.420149922370911,-0.907453894615173,0.00181331567000598,0.419948995113373,-0.907545924186707,0.00297735817730427,0.398688852787018,-0.917081475257874,0.00387832312844694,0.398588985204697,-0.917121469974518,0.00663097482174635,0.438430041074753,-0.898740828037262,0.00883422326296568,0.417678833007813,-0.908551812171936,-0.999999761581421,-0.00076397939119488,-3.19198846909785e-007,-1,-0.000186438774107955,-3.19198903753204e-007,-1,6.82645768392831e-005,2.42243206695142e-014,-0.99999988079071,-0.000417051371186972,2.42243172813824e-014,-0.999991655349731,0.00409625796601176,-3.19196232112517e-007,-0.999965846538544,0.00827708467841148,-3.19187989816783e-007,-0.999996721744537,0.00255052791908383,-3.19197852149955e-007,-0.999999761581421,-0.000813869526609778,-3.19198790066366e-007,0.000446792895672843,0.228271186351776,-0.973597407341003,-0.00225415639579296,0.228469207882881,-0.973548471927643,-0.00275584682822227,0.27161055803299,-0.962403357028961,0.000376314535969868,0.271545559167862,-0.962425470352173,-0.00351238949224353,0.269681125879288,-0.962943255901337,-0.00275584682822227,0.27161055803299,-0.962403357028961,-0.00225415639579296,0.228469207882881,-0.973548471927643,-0.00173125660512596,0.231791689991951,-0.972763955593109,-0.00173125660512596,0.231791689991951,-0.972763955593109,-0.00374573701992631,0.225746288895607,-0.974178969860077,-0.00343951513059437,0.269700467586517,-0.962938070297241,
- -0.00351238949224353,0.269681125879288,-0.962943255901337,-0.00374573701992631,0.225746288895607,-0.974178969860077,-0.00265778158791363,0.228240802884102,-0.973601102828979,-0.00314381346106529,0.269609928131104,-0.962964475154877,-0.00343951513059437,0.269700467586517,-0.962938070297241,-0.00246825022622943,0.269470870494843,-0.963005423545837,-0.00314381346106529,0.269609928131104,-0.962964475154877,-0.00265778158791363,0.228240802884102,-0.973601102828979,-0.00279456563293934,0.232143983244896,-0.972677409648895,-0.00279456563293934,0.232143983244896,-0.972677409648895,-0.0021519570145756,0.228266462683678,-0.973596274852753,-0.00211677327752113,0.271538376808167,-0.962425291538239,-0.00246825022622943,0.269470870494843,-0.963005423545837,-0.0021519570145756,0.228266462683678,-0.973596274852753,-0.000119222670036834,0.228250086307526,-0.973602533340454,-0.00014772592112422,0.271519750356674,-0.96243292093277,-0.00211677327752113,0.271538376808167,-0.962425291538239,-0.00174100464209914,0.112050481140614,-0.993701040744781,-0.000518271757755429,0.138555064797401,-0.990354537963867,0.000431188818765804,0.138127207756042,-0.990414381027222,0.00202237139455974,0.11203546077013,-0.993702173233032,-0.00254583591595292,0.138263866305351,-0.99039214849472,-0.000518271757755429,0.138555064797401,-0.990354537963867,-0.00174100464209914,0.112050481140614,-0.993701040744781,-0.00325726671144366,0.109184496104717,-0.994016170501709,-0.00242723268456757,0.106131486594677,-0.994349122047424,-0.0017205347539857,0.136546567082405,-0.990632176399231,-0.00254583591595292,0.138263866305351,-0.99039214849472,-0.00325726671144366,0.109184496104717,-0.994016170501709,-0.00276761781424284,0.103919997811317,-0.994581818580627,-0.0020417096093297,0.135655835270882,-0.990753948688507,-0.0017205347539857,0.136546567082405,-0.990632176399231,-0.00242723268456757,0.106131486594677,-0.994349122047424,-0.00258646905422211,0.13421630859375,-0.990948617458344,-0.0020417096093297,0.135655835270882,-0.990753948688507,-0.00276761781424284,0.103919997811317,-0.994581818580627,
- -0.00221986183896661,0.101111851632595,-0.994872570037842,-0.00114953424781561,0.100954644382,-0.994890332221985,-0.00212320918217301,0.130771204829216,-0.991410255432129,-0.00258646905422211,0.13421630859375,-0.990948617458344,-0.00221986183896661,0.101111851632595,-0.994872570037842,0.000934284820687026,0.100983113050461,-0.994887709617615,-4.6013250539545e-005,0.130728051066399,-0.991418242454529,-0.00212320918217301,0.130771204829216,-0.991410255432129,-0.00114953424781561,0.100954644382,-0.994890332221985,0.000376314535969868,0.271545559167862,-0.962425470352173,-0.00275584682822227,0.27161055803299,-0.962403357028961,-0.00219454918988049,0.314450144767761,-0.949271440505981,0.000383603590307757,0.314280062913895,-0.949330270290375,-0.0028189760632813,0.314187258481979,-0.949356853961945,-0.00219454918988049,0.314450144767761,-0.949271440505981,-0.00275584682822227,0.27161055803299,-0.962403357028961,-0.00351238949224353,0.269681125879288,-0.962943255901337,-0.00351238949224353,0.269681125879288,-0.962943255901337,-0.00343951513059437,0.269700467586517,-0.962938070297241,-0.00271822023205459,0.314183443784714,-0.949358403682709,-0.0028189760632813,0.314187258481979,-0.949356853961945,-0.00343951513059437,0.269700467586517,-0.962938070297241,-0.00314381346106529,0.269609928131104,-0.962964475154877,-0.00257911998778582,0.3141930103302,-0.949355602264404,-0.00271822023205459,0.314183443784714,-0.949358403682709,-0.00253442116081715,0.314228922128677,-0.949343800544739,-0.00257911998778582,0.3141930103302,-0.949355602264404,-0.00314381346106529,0.269609928131104,-0.962964475154877,-0.00246825022622943,0.269470870494843,-0.963005423545837,-0.00246825022622943,0.269470870494843,-0.963005423545837,-0.00211677327752113,0.271538376808167,-0.962425291538239,-0.00218877871520817,0.314272850751877,-0.949330151081085,-0.00253442116081715,0.314228922128677,-0.949343800544739,-0.00211677327752113,0.271538376808167,-0.962425291538239,-0.00014772592112422,0.271519750356674,-0.96243292093277,-0.000148174411151558,0.314248085021973,-0.94934093952179,
- -0.00218877871520817,0.314272850751877,-0.949330151081085,0.000395394250517711,0.356863617897034,-0.93415641784668,-0.00176262413151562,0.35712519288063,-0.934054851531982,0.0034392171073705,0.398624062538147,-0.917107939720154,0.00281545124016702,0.398629307746887,-0.917107939720154,0.00191059778444469,0.394873917102814,-0.918733298778534,0.0034392171073705,0.398624062538147,-0.917107939720154,-0.00176262413151562,0.35712519288063,-0.934054851531982,-0.00228055147454143,0.358316004276276,-0.933597564697266,-0.00228055147454143,0.358316004276276,-0.933597564697266,-0.00214947550557554,0.358294874429703,-0.933605968952179,0.00419532647356391,0.401310175657272,-0.915932655334473,0.00191059778444469,0.394873917102814,-0.918733298778534,-0.00214947550557554,0.358294874429703,-0.933605968952179,-0.0021112309768796,0.358372420072556,-0.933576285839081,0.00186320126522332,0.394855380058289,-0.918741405010223,0.00419532647356391,0.401310175657272,-0.915932655334473,0.00297735817730427,0.398688852787018,-0.917081475257874,0.00186320126522332,0.394855380058289,-0.918741405010223,-0.0021112309768796,0.358372420072556,-0.933576285839081,-0.0026124119758606,0.358523786067963,-0.93351686000824,-0.0026124119758606,0.358523786067963,-0.93351686000824,-0.00221468484960496,0.35686132311821,-0.934154748916626,0.00387832312844694,0.398588985204697,-0.917121469974518,0.00297735817730427,0.398688852787018,-0.917081475257874,-0.00221468484960496,0.35686132311821,-0.934154748916626,-0.000156939015141688,0.356838464736938,-0.934166014194489,0.00197941367514431,0.398651868104935,-0.917100250720978,0.00387832312844694,0.398588985204697,-0.917121469974518,-0.00218877871520817,0.314272850751877,-0.949330151081085,-0.000148174411151558,0.314248085021973,-0.94934093952179,-0.000156939015141688,0.356838464736938,-0.934166014194489,-0.00221468484960496,0.35686132311821,-0.934154748916626,-0.00253442116081715,0.314228922128677,-0.949343800544739,-0.00218877871520817,0.314272850751877,-0.949330151081085,-0.00221468484960496,0.35686132311821,-0.934154748916626,
- -0.0026124119758606,0.358523786067963,-0.93351686000824,-0.0026124119758606,0.358523786067963,-0.93351686000824,-0.0021112309768796,0.358372420072556,-0.933576285839081,-0.00257911998778582,0.3141930103302,-0.949355602264404,-0.00253442116081715,0.314228922128677,-0.949343800544739,-0.00271822023205459,0.314183443784714,-0.949358403682709,-0.00257911998778582,0.3141930103302,-0.949355602264404,-0.0021112309768796,0.358372420072556,-0.933576285839081,-0.00214947550557554,0.358294874429703,-0.933605968952179,-0.0028189760632813,0.314187258481979,-0.949356853961945,-0.00271822023205459,0.314183443784714,-0.949358403682709,-0.00214947550557554,0.358294874429703,-0.933605968952179,-0.00228055147454143,0.358316004276276,-0.933597564697266,-0.00228055147454143,0.358316004276276,-0.933597564697266,-0.00176262413151562,0.35712519288063,-0.934054851531982,-0.00219454918988049,0.314450144767761,-0.949271440505981,-0.0028189760632813,0.314187258481979,-0.949356853961945,0.000383603590307757,0.314280062913895,-0.949330270290375,-0.00219454918988049,0.314450144767761,-0.949271440505981,-0.00176262413151562,0.35712519288063,-0.934054851531982,0.000395394250517711,0.356863617897034,-0.93415641784668,-0.00190527876839042,0.186089619994164,-0.982530951499939,-0.00225415639579296,0.228469207882881,-0.973548471927643,0.000446792895672843,0.228271186351776,-0.973597407341003,0.000422586395870894,0.185815051198006,-0.982584655284882,-0.00173125660512596,0.231791689991951,-0.972763955593109,-0.00225415639579296,0.228469207882881,-0.973548471927643,-0.00190527876839042,0.186089619994164,-0.982530951499939,-0.00154975638724864,0.189817175269127,-0.98181813955307,-0.0037178685888648,0.183265343308449,-0.983056485652924,-0.00374573701992631,0.225746288895607,-0.974178969860077,-0.00173125660512596,0.231791689991951,-0.972763955593109,-0.00154975638724864,0.189817175269127,-0.98181813955307,-0.00230125011876225,0.187102511525154,-0.982337713241577,-0.00265778158791363,0.228240802884102,-0.973601102828979,-0.00374573701992631,0.225746288895607,-0.974178969860077,
- -0.0037178685888648,0.183265343308449,-0.983056485652924,-0.00279456563293934,0.232143983244896,-0.972677409648895,-0.00265778158791363,0.228240802884102,-0.973601102828979,-0.00230125011876225,0.187102511525154,-0.982337713241577,-0.00283885141834617,0.190202996134758,-0.981740653514862,-0.00203978619538248,0.185804411768913,-0.982584655284882,-0.0021519570145756,0.228266462683678,-0.973596274852753,-0.00279456563293934,0.232143983244896,-0.972677409648895,-0.00283885141834617,0.190202996134758,-0.981740653514862,-0.000121741046314128,0.185788884758949,-0.982589662075043,-0.000119222670036834,0.228250086307526,-0.973602533340454,-0.0021519570145756,0.228266462683678,-0.973596274852753,-0.00203978619538248,0.185804411768913,-0.982584655284882,-0.00212320918217301,0.130771204829216,-0.991410255432129,-4.6013250539545e-005,0.130728051066399,-0.991418242454529,-0.000121741046314128,0.185788884758949,-0.982589662075043,-0.00203978619538248,0.185804411768913,-0.982584655284882,-0.00258646905422211,0.13421630859375,-0.990948617458344,-0.00212320918217301,0.130771204829216,-0.991410255432129,-0.00203978619538248,0.185804411768913,-0.982584655284882,-0.00283885141834617,0.190202996134758,-0.981740653514862,-0.00283885141834617,0.190202996134758,-0.981740653514862,-0.00230125011876225,0.187102511525154,-0.982337713241577,-0.0020417096093297,0.135655835270882,-0.990753948688507,-0.00258646905422211,0.13421630859375,-0.990948617458344,-0.0017205347539857,0.136546567082405,-0.990632176399231,-0.0020417096093297,0.135655835270882,-0.990753948688507,-0.00230125011876225,0.187102511525154,-0.982337713241577,-0.0037178685888648,0.183265343308449,-0.983056485652924,-0.00254583591595292,0.138263866305351,-0.99039214849472,-0.0017205347539857,0.136546567082405,-0.990632176399231,-0.0037178685888648,0.183265343308449,-0.983056485652924,-0.00154975638724864,0.189817175269127,-0.98181813955307,-0.00154975638724864,0.189817175269127,-0.98181813955307,-0.00190527876839042,0.186089619994164,-0.982530951499939,-0.000518271757755429,0.138555064797401,-0.990354537963867,
- -0.00254583591595292,0.138263866305351,-0.99039214849472,0.000431188818765804,0.138127207756042,-0.990414381027222,-0.000518271757755429,0.138555064797401,-0.990354537963867,-0.00190527876839042,0.186089619994164,-0.982530951499939,0.000422586395870894,0.185815051198006,-0.982584655284882,0.00288360635749996,0.90857458114624,-0.417712807655334,0.00284987641498446,0.899692237377167,-0.43651556968689,0.0021920136641711,0.899808526039124,-0.436279326677322,0.00301147531718016,0.908578872680664,-0.417702436447144,0.00214811693876982,0.899726033210754,-0.436449885368347,0.00257825665175915,0.908584833145142,-0.417692422866821,0.000769342586863786,0.908586859703064,-0.417695254087448,0.000139205862069502,0.899719178676605,-0.436469197273254,-0.000417083705542609,0.899729311466217,-0.436448246240616,0.000474138767458498,0.908588230609894,-0.417692929506302,0.00301147531718016,0.908578872680664,-0.417702436447144,0.0021920136641711,0.899808526039124,-0.436279326677322,0.00250824145041406,0.908594369888306,-0.417672216892242,0.00250596017576754,0.899711489677429,-0.436478078365326,0.00255640293471515,0.899694740772247,-0.436512142419815,0.00255225971341133,0.908582627773285,-0.41769751906395,0.00274405744858086,0.899690687656403,-0.436519324779511,0.00278313783928752,0.908579587936401,-0.417702496051788,0.00255225971341133,0.908582627773285,-0.41769751906395,0.00255640293471515,0.899694740772247,-0.436512142419815,0.00284987641498446,0.899692237377167,-0.43651556968689,0.00288360635749996,0.90857458114624,-0.417712807655334,0.00278313783928752,0.908579587936401,-0.417702496051788,0.00274405744858086,0.899690687656403,-0.436519324779511,0.00250596017576754,0.899711489677429,-0.436478078365326,0.00250824145041406,0.908594369888306,-0.417672216892242,0.00257825665175915,0.908584833145142,-0.417692422866821,0.00214811693876982,0.899726033210754,-0.436449885368347,-1,-1.54040805000477e-007,-2.69132613084366e-007,-0.999998688697815,-0.000670193694531918,-0.00148907490074635,-0.999999642372131,-0.000394993257941678,-0.000856209779158235,
- -0.999999761581421,0.000277746847132221,0.000690857181325555,-1,1.78413938556332e-006,5.62393943255302e-005,-1,-2.00616432266543e-005,6.00174644205254e-006,-1,-1.94102594832657e-005,7.49970513425069e-006,-0.99999988079071,-0.000118467607535422,-0.000272348988801241,-0.000446289166575298,0.807163238525391,-0.59032815694809,-0.000375897478079423,0.832733571529388,-0.55367374420166,0.00275332760065794,0.832768261432648,-0.553614914417267,0.00225176708772779,0.807281196117401,-0.590162575244904,0.00350952986627817,0.831654906272888,-0.555281937122345,0.0017283238703385,0.809291064739227,-0.587405264377594,0.00225176708772779,0.807281196117401,-0.590162575244904,0.00275332760065794,0.832768261432648,-0.553614914417267,0.0017283238703385,0.809291064739227,-0.587405264377594,0.00350952986627817,0.831654906272888,-0.555281937122345,0.00343711860477924,0.831666231155396,-0.555265128612518,0.00374289928004146,0.805623412132263,-0.592416286468506,0.00374289928004146,0.805623412132263,-0.592416286468506,0.00343711860477924,0.831666231155396,-0.555265128612518,0.00314052728936076,0.831616401672363,-0.55534166097641,0.00265482719987631,0.807141304016113,-0.590352416038513,0.00246549281291664,0.831536114215851,-0.555465221405029,0.00279173138551414,0.809503674507141,-0.587108254432678,0.00265482719987631,0.807141304016113,-0.590352416038513,0.00314052728936076,0.831616401672363,-0.55534166097641,0.00279173138551414,0.809503674507141,-0.587108254432678,0.00246549281291664,0.831536114215851,-0.555465221405029,0.00211473810486495,0.832726955413818,-0.553679883480072,0.00214978051371872,0.807157635688782,-0.59033203125,0.00214978051371872,0.807157635688782,-0.59033203125,0.00211473810486495,0.832726955413818,-0.553679883480072,0.000147568323882297,0.832717776298523,-0.553697764873505,0.00011909880413441,0.807149231433868,-0.590347409248352,-0.0133504420518875,0.723827302455902,-0.689851999282837,-0.00541543774306774,0.72315514087677,-0.690664410591125,-0.00218302896246314,0.752872705459595,-0.658162534236908,-0.00258907908573747,0.752856910228729,-0.658179104328156,
- -0.00260375603102148,0.752932965755463,-0.658092141151428,-0.0149244386702776,0.735847949981689,-0.676982402801514,-0.0133504420518875,0.723827302455902,-0.689851999282837,-0.00258907908573747,0.752856910228729,-0.658179104328156,-0.0148358941078186,0.735717177391052,-0.677126407623291,-0.0149244386702776,0.735847949981689,-0.676982402801514,-0.00260375603102148,0.752932965755463,-0.658092141151428,-0.0025046959053725,0.75294041633606,-0.658083915710449,-0.0132695008069277,0.736306250095367,-0.676518321037292,-0.0148358941078186,0.735717177391052,-0.677126407623291,-0.0025046959053725,0.75294041633606,-0.658083915710449,-0.00153069919906557,0.751024603843689,-0.660272359848022,-0.00208060909062624,0.755960166454315,-0.654614329338074,-0.00689184572547674,0.737433731555939,-0.675384402275085,-0.0132695008069277,0.736306250095367,-0.676518321037292,-0.00153069919906557,0.751024603843689,-0.660272359848022,-0.00658607296645641,0.723149597644806,-0.690659999847412,-0.00689184572547674,0.737433731555939,-0.675384402275085,-0.00208060909062624,0.755960166454315,-0.654614329338074,-0.00200733309611678,0.752870559692383,-0.658165514469147,-0.00417968258261681,0.723205089569092,-0.690620720386505,-0.00658607296645641,0.723149597644806,-0.690659999847412,-0.00200733309611678,0.752870559692383,-0.658165514469147,-0.00111363863106817,0.752886891365051,-0.658149003982544,-0.000375897478079423,0.832733571529388,-0.55367374420166,-0.000383174221497029,0.856642365455627,-0.515910625457764,0.00219217222183943,0.856733024120331,-0.515755474567413,0.00275332760065794,0.832768261432648,-0.553614914417267,0.00281584891490638,0.856589257717133,-0.51599109172821,0.00350952986627817,0.831654906272888,-0.555281937122345,0.00275332760065794,0.832768261432648,-0.553614914417267,0.00219217222183943,0.856733024120331,-0.515755474567413,0.00350952986627817,0.831654906272888,-0.555281937122345,0.00281584891490638,0.856589257717133,-0.51599109172821,0.00271520111709833,0.856588006019592,-0.515993773937225,0.00343711860477924,0.831666231155396,-0.555265128612518,
- 0.00343711860477924,0.831666231155396,-0.555265128612518,0.00271520111709833,0.856588006019592,-0.515993773937225,0.00257651600986719,0.856593191623688,-0.51598584651947,0.00314052728936076,0.831616401672363,-0.55534166097641,0.00253166886977851,0.856612503528595,-0.51595401763916,0.00246549281291664,0.831536114215851,-0.555465221405029,0.00314052728936076,0.831616401672363,-0.55534166097641,0.00257651600986719,0.856593191623688,-0.51598584651947,0.00246549281291664,0.831536114215851,-0.555465221405029,0.00253166886977851,0.856612503528595,-0.51595401763916,0.00218673888593912,0.856638193130493,-0.515913069248199,0.00211473810486495,0.832726955413818,-0.553679883480072,0.00211473810486495,0.832726955413818,-0.553679883480072,0.00218673888593912,0.856638193130493,-0.515913069248199,0.000148017454193905,0.856626331806183,-0.515937447547913,0.000147568323882297,0.832717776298523,-0.553697764873505,-0.000394944567233324,0.879083335399628,-0.476668149232864,-0.000417083705542609,0.899729311466217,-0.436448246240616,0.0021920136641711,0.899808526039124,-0.436279326677322,0.00176022876985371,0.879215598106384,-0.476420760154724,0.00284987641498446,0.899692237377167,-0.43651556968689,0.00227732537314296,0.879822313785553,-0.475297391414642,0.00176022876985371,0.879215598106384,-0.476420760154724,0.0021920136641711,0.899808526039124,-0.436279326677322,0.00227732537314296,0.879822313785553,-0.475297391414642,0.00284987641498446,0.899692237377167,-0.43651556968689,0.00274405744858086,0.899690687656403,-0.436519324779511,0.00214643147774041,0.879810690879822,-0.47531920671463,0.00214643147774041,0.879810690879822,-0.47531920671463,0.00274405744858086,0.899690687656403,-0.436519324779511,0.00255640293471515,0.899694740772247,-0.436512142419815,0.0021082260645926,0.879850625991821,-0.475245743989944,0.00250596017576754,0.899711489677429,-0.436478078365326,0.00260971440002322,0.879927337169647,-0.475101083517075,0.0021082260645926,0.879850625991821,-0.475245743989944,0.00255640293471515,0.899694740772247,-0.436512142419815,0.00260971440002322,0.879927337169647,-0.475101083517075,
- 0.00250596017576754,0.899711489677429,-0.436478078365326,0.00214811693876982,0.899726033210754,-0.436449885368347,0.00221261847764254,0.879080653190613,-0.47666797041893,0.00221261847764254,0.879080653190613,-0.47666797041893,0.00214811693876982,0.899726033210754,-0.436449885368347,0.000139205862069502,0.899719178676605,-0.436469197273254,0.000156777052325197,0.87907075881958,-0.476691395044327,0.00218673888593912,0.856638193130493,-0.515913069248199,0.00221261847764254,0.879080653190613,-0.47666797041893,0.000156777052325197,0.87907075881958,-0.476691395044327,0.000148017454193905,0.856626331806183,-0.515937447547913,0.00253166886977851,0.856612503528595,-0.51595401763916,0.00260971440002322,0.879927337169647,-0.475101083517075,0.00221261847764254,0.879080653190613,-0.47666797041893,0.00218673888593912,0.856638193130493,-0.515913069248199,0.00260971440002322,0.879927337169647,-0.475101083517075,0.00253166886977851,0.856612503528595,-0.51595401763916,0.00257651600986719,0.856593191623688,-0.51598584651947,0.0021082260645926,0.879850625991821,-0.475245743989944,0.00271520111709833,0.856588006019592,-0.515993773937225,0.00214643147774041,0.879810690879822,-0.47531920671463,0.0021082260645926,0.879850625991821,-0.475245743989944,0.00257651600986719,0.856593191623688,-0.51598584651947,0.00281584891490638,0.856589257717133,-0.51599109172821,0.00227732537314296,0.879822313785553,-0.475297391414642,0.00214643147774041,0.879810690879822,-0.47531920671463,0.00271520111709833,0.856588006019592,-0.515993773937225,0.00227732537314296,0.879822313785553,-0.475297391414642,0.00281584891490638,0.856589257717133,-0.51599109172821,0.00219217222183943,0.856733024120331,-0.515755474567413,0.00176022876985371,0.879215598106384,-0.476420760154724,-0.000383174221497029,0.856642365455627,-0.515910625457764,-0.000394944567233324,0.879083335399628,-0.476668149232864,0.00176022876985371,0.879215598106384,-0.476420760154724,0.00219217222183943,0.856733024120331,-0.515755474567413,0.00190269167069346,0.780964255332947,-0.62457275390625,-0.000422115379478782,0.780791103839874,-0.624791979789734,
- -0.000446289166575298,0.807163238525391,-0.59032815694809,0.00225176708772779,0.807281196117401,-0.590162575244904,0.0017283238703385,0.809291064739227,-0.587405264377594,0.00154647370800376,0.783329010009766,-0.621605396270752,0.00190269167069346,0.780964255332947,-0.62457275390625,0.00225176708772779,0.807281196117401,-0.590162575244904,0.00371460872702301,0.779163599014282,-0.62680971622467,0.00154647370800376,0.783329010009766,-0.621605396270752,0.0017283238703385,0.809291064739227,-0.587405264377594,0.00374289928004146,0.805623412132263,-0.592416286468506,0.00229889550246298,0.781606554985046,-0.623767554759979,0.00371460872702301,0.779163599014282,-0.62680971622467,0.00374289928004146,0.805623412132263,-0.592416286468506,0.00265482719987631,0.807141304016113,-0.590352416038513,0.00279173138551414,0.809503674507141,-0.587108254432678,0.00283598620444536,0.783571600914001,-0.621294975280762,0.00229889550246298,0.781606554985046,-0.623767554759979,0.00265482719987631,0.807141304016113,-0.590352416038513,0.00203783321194351,0.780784249305725,-0.624797403812408,0.00283598620444536,0.783571600914001,-0.621294975280762,0.00279173138551414,0.809503674507141,-0.587108254432678,0.00214978051371872,0.807157635688782,-0.59033203125,0.000121612094517332,0.780775904655457,-0.624811291694641,0.00203783321194351,0.780784249305725,-0.624797403812408,0.00214978051371872,0.807157635688782,-0.59033203125,0.00011909880413441,0.807149231433868,-0.590347409248352,-0.00200733309611678,0.752870559692383,-0.658165514469147,0.00203783321194351,0.780784249305725,-0.624797403812408,0.000121612094517332,0.780775904655457,-0.624811291694641,-0.00111363863106817,0.752886891365051,-0.658149003982544,-0.00208060909062624,0.755960166454315,-0.654614329338074,0.00283598620444536,0.783571600914001,-0.621294975280762,0.00203783321194351,0.780784249305725,-0.624797403812408,-0.00200733309611678,0.752870559692383,-0.658165514469147,0.00283598620444536,0.783571600914001,-0.621294975280762,-0.00208060909062624,0.755960166454315,-0.654614329338074,-0.00153069919906557,0.751024603843689,-0.660272359848022,
- 0.00229889550246298,0.781606554985046,-0.623767554759979,-0.0025046959053725,0.75294041633606,-0.658083915710449,0.00371460872702301,0.779163599014282,-0.62680971622467,0.00229889550246298,0.781606554985046,-0.623767554759979,-0.00153069919906557,0.751024603843689,-0.660272359848022,-0.00260375603102148,0.752932965755463,-0.658092141151428,0.00154647370800376,0.783329010009766,-0.621605396270752,0.00371460872702301,0.779163599014282,-0.62680971622467,-0.0025046959053725,0.75294041633606,-0.658083915710449,0.00154647370800376,0.783329010009766,-0.621605396270752,-0.00260375603102148,0.752932965755463,-0.658092141151428,-0.00258907908573747,0.752856910228729,-0.658179104328156,0.00190269167069346,0.780964255332947,-0.62457275390625,-0.00218302896246314,0.752872705459595,-0.658162534236908,-0.000422115379478782,0.780791103839874,-0.624791979789734,0.00190269167069346,0.780964255332947,-0.62457275390625,-0.00258907908573747,0.752856910228729,-0.658179104328156,-0.00180893496144563,0.708874642848969,-0.705332159996033,-0.00190854980610311,0.68924355506897,-0.724527359008789,-0.00343728438019753,0.692197024822235,-0.721700429916382,-0.0021506620105356,0.721987426280975,-0.691902816295624,-0.00387623277492821,0.692166745662689,-0.721727132797241,-0.00662779714912176,0.7231485247612,-0.690660774707794,-0.00103715411387384,0.723210990428925,-0.690626382827759,-0.00197836733423173,0.692218363285065,-0.721685469150543,-0.00281388685107231,0.692201793193817,-0.721698462963104,-0.00210685818456113,0.723164141178131,-0.690672993659973,-0.0021506620105356,0.721987426280975,-0.691902816295624,-0.00343728438019753,0.692197024822235,-0.721700429916382,-0.0088301757350564,0.707093238830566,-0.707065284252167,-0.00297580659389496,0.692246198654175,-0.721655309200287,-0.00186177564319223,0.689229488372803,-0.724540829658508,-0.00200035725720227,0.708388328552246,-0.705820083618164,-0.00419336883351207,0.694306671619415,-0.719667077064514,-0.00122079439461231,0.70903354883194,-0.70517373085022,-0.00200035725720227,0.708388328552246,-0.705820083618164,
- -0.00186177564319223,0.689229488372803,-0.724540829658508,-0.00190854980610311,0.68924355506897,-0.724527359008789,-0.00180893496144563,0.708874642848969,-0.705332159996033,-0.00122079439461231,0.70903354883194,-0.70517373085022,-0.00419336883351207,0.694306671619415,-0.719667077064514,-0.00297580659389496,0.692246198654175,-0.721655309200287,-0.0088301757350564,0.707093238830566,-0.707065284252167,-0.00662779714912176,0.7231485247612,-0.690660774707794,-0.00387623277492821,0.692166745662689,-0.721727132797241,-0.000446539808763191,0.552044034004211,-0.833814799785614,-0.000376104842871428,0.588750720024109,-0.808314502239227,0.0027546938508749,0.588803946971893,-0.80827122926712,0.00225265137851238,0.552212953567505,-0.833699941635132,0.0035111173056066,0.587181270122528,-0.809447884559631,0.00172917207237333,0.555058062076569,-0.831809759140015,0.00225265137851238,0.552212953567505,-0.833699941635132,0.0027546938508749,0.588803946971893,-0.80827122926712,0.00172917207237333,0.555058062076569,-0.831809759140015,0.0035111173056066,0.587181270122528,-0.809447884559631,0.00343788135796785,0.587198317050934,-0.809435784816742,0.00374421779997647,0.549878537654877,-0.835236310958862,0.00374421779997647,0.549878537654877,-0.835236310958862,0.00343788135796785,0.587198317050934,-0.809435784816742,0.00314230634830892,0.587122857570648,-0.809491753578186,0.0026562730781734,0.5520179271698,-0.833827912807465,0.00246690446510911,0.587006032466888,-0.809578776359558,0.00279322080314159,0.55535876750946,-0.831606149673462,0.0026562730781734,0.5520179271698,-0.833827912807465,0.00314230634830892,0.587122857570648,-0.809491753578186,0.00279322080314159,0.55535876750946,-0.831606149673462,0.00246690446510911,0.587006032466888,-0.809578776359558,0.0021157709416002,0.588744044303894,-0.808316826820374,0.00215088180266321,0.552039861679077,-0.833814918994904,0.00215088180266321,0.552039861679077,-0.833814918994904,0.0021157709416002,0.588744044303894,-0.808316826820374,0.000147648999700323,0.5887291431427,-0.808330357074738,0.000119156618893612,0.552026629447937,-0.83382648229599,
- -0.013355465605855,0.439346969127655,-0.898218154907227,-0.0054184845648706,0.438434809446335,-0.89874666929245,-0.00218425481580198,0.477587550878525,-0.878581583499908,-0.00259067118167877,0.477566450834274,-0.87859183549881,-0.0026048650033772,0.477665692567825,-0.878537774085999,-0.0149287236854434,0.455085694789886,-0.89032244682312,-0.013355465605855,0.439346969127655,-0.898218154907227,-0.00259067118167877,0.477566450834274,-0.87859183549881,-0.0148412548005581,0.454915761947632,-0.890410840511322,-0.0149287236854434,0.455085694789886,-0.89032244682312,-0.0026048650033772,0.477665692567825,-0.878537774085999,-0.0025054921861738,0.477675080299377,-0.878532946109772,-0.0132751893252134,0.455682188272476,-0.890043556690216,-0.0148412548005581,0.454915761947632,-0.890410840511322,-0.0025054921861738,0.477675080299377,-0.878532946109772,-0.00153178605251014,0.475119322538376,-0.87992000579834,-0.0020818361081183,0.481710880994797,-0.876327753067017,-0.00689606089144945,0.45712685585022,-0.889374792575836,-0.0132751893252134,0.455682188272476,-0.890043556690216,-0.00153178605251014,0.475119322538376,-0.87992000579834,-0.0065898559987545,0.438431322574615,-0.898740530014038,-0.00689606089144945,0.45712685585022,-0.889374792575836,-0.0020818361081183,0.481710880994797,-0.876327753067017,-0.00200840528123081,0.477582097053528,-0.878584861755371,-0.00418189819902182,0.43849703669548,-0.898722887039185,-0.0065898559987545,0.438431322574615,-0.898740530014038,-0.00200840528123081,0.477582097053528,-0.878584861755371,-0.00111422734335065,0.477603107690811,-0.878575026988983,-0.000376104842871428,0.588750720024109,-0.808314502239227,-0.000383389560738578,0.624281585216522,-0.781199336051941,0.00219319597817957,0.624420642852783,-0.781085193157196,0.0027546938508749,0.588803946971893,-0.80827122926712,0.00281730759888887,0.624204099178314,-0.781256318092346,0.0035111173056066,0.587181270122528,-0.809447884559631,0.0027546938508749,0.588803946971893,-0.80827122926712,0.00219319597817957,0.624420642852783,-0.781085193157196,
- 0.0035111173056066,0.587181270122528,-0.809447884559631,0.00281730759888887,0.624204099178314,-0.781256318092346,0.00271668843924999,0.624201536178589,-0.781258702278137,0.00343788135796785,0.587198317050934,-0.809435784816742,0.00343788135796785,0.587198317050934,-0.809435784816742,0.00271668843924999,0.624201536178589,-0.781258702278137,0.00257790554314852,0.62420928478241,-0.781252920627594,0.00314230634830892,0.587122857570648,-0.809491753578186,0.00253302557393909,0.624238729476929,-0.781229496002197,0.00246690446510911,0.587006032466888,-0.809578776359558,0.00314230634830892,0.587122857570648,-0.809491753578186,0.00257790554314852,0.62420928478241,-0.781252920627594,0.00246690446510911,0.587006032466888,-0.809578776359558,0.00253302557393909,0.624238729476929,-0.781229496002197,0.00218774797394872,0.624276459217072,-0.781200349330902,0.0021157709416002,0.588744044303894,-0.808316826820374,0.0021157709416002,0.588744044303894,-0.808316826820374,0.00218774797394872,0.624276459217072,-0.781200349330902,0.000148096514749341,0.624257028102875,-0.781218945980072,0.000147648999700323,0.5887291431427,-0.808330357074738,-0.000395168957766145,0.65895140171051,-0.752185463905334,-0.00281388685107231,0.692201793193817,-0.721698462963104,-0.00343728438019753,0.692197024822235,-0.721700429916382,0.00176151760388166,0.659161329269409,-0.751999497413635,-0.00190854980610311,0.68924355506897,-0.724527359008789,0.00227883853949606,0.660119593143463,-0.751156985759735,0.00176151760388166,0.659161329269409,-0.751999497413635,-0.00343728438019753,0.692197024822235,-0.721700429916382,0.00227883853949606,0.660119593143463,-0.751156985759735,-0.00190854980610311,0.68924355506897,-0.724527359008789,-0.00419336883351207,0.694306671619415,-0.719667077064514,0.00214793463237584,0.660101592540741,-0.751173198223114,0.00214793463237584,0.660101592540741,-0.751173198223114,-0.00419336883351207,0.694306671619415,-0.719667077064514,-0.00186177564319223,0.689229488372803,-0.724540829658508,0.00210999650880694,0.660163700580597,-0.751118898391724,
- -0.00297580659389496,0.692246198654175,-0.721655309200287,0.00261105364188552,0.660284757614136,-0.751010775566101,0.00210999650880694,0.660163700580597,-0.751118898391724,-0.00186177564319223,0.689229488372803,-0.724540829658508,0.00261105364188552,0.660284757614136,-0.751010775566101,-0.00297580659389496,0.692246198654175,-0.721655309200287,-0.00387623277492821,0.692166745662689,-0.721727132797241,0.00221365154720843,0.658947885036469,-0.752185344696045,0.00221365154720843,0.658947885036469,-0.752185344696045,-0.00387623277492821,0.692166745662689,-0.721727132797241,-0.00197836733423173,0.692218363285065,-0.721685469150543,0.00015685532707721,0.658930420875549,-0.752203941345215,0.00218774797394872,0.624276459217072,-0.781200349330902,0.00221365154720843,0.658947885036469,-0.752185344696045,0.00015685532707721,0.658930420875549,-0.752203941345215,0.000148096514749341,0.624257028102875,-0.781218945980072,0.00253302557393909,0.624238729476929,-0.781229496002197,0.00261105364188552,0.660284757614136,-0.751010775566101,0.00221365154720843,0.658947885036469,-0.752185344696045,0.00218774797394872,0.624276459217072,-0.781200349330902,0.00261105364188552,0.660284757614136,-0.751010775566101,0.00253302557393909,0.624238729476929,-0.781229496002197,0.00257790554314852,0.62420928478241,-0.781252920627594,0.00210999650880694,0.660163700580597,-0.751118898391724,0.00271668843924999,0.624201536178589,-0.781258702278137,0.00214793463237584,0.660101592540741,-0.751173198223114,0.00210999650880694,0.660163700580597,-0.751118898391724,0.00257790554314852,0.62420928478241,-0.781252920627594,0.00281730759888887,0.624204099178314,-0.781256318092346,0.00227883853949606,0.660119593143463,-0.751156985759735,0.00214793463237584,0.660101592540741,-0.751173198223114,0.00271668843924999,0.624201536178589,-0.781258702278137,0.00227883853949606,0.660119593143463,-0.751156985759735,0.00281730759888887,0.624204099178314,-0.781256318092346,0.00219319597817957,0.624420642852783,-0.781085193157196,0.00176151760388166,0.659161329269409,-0.751999497413635,
- -0.000383389560738578,0.624281585216522,-0.781199336051941,-0.000395168957766145,0.65895140171051,-0.752185463905334,0.00176151760388166,0.659161329269409,-0.751999497413635,0.00219319597817957,0.624420642852783,-0.781085193157196,0.00190429168287665,0.515586972236633,-0.856835067272186,-0.000422352139139548,0.515348017215729,-0.856980800628662,-0.000446539808763191,0.552044034004211,-0.833814799785614,0.00225265137851238,0.552212953567505,-0.833699941635132,0.00172917207237333,0.555058062076569,-0.831809759140015,0.00154795369599015,0.518836557865143,-0.854872047901154,0.00190429168287665,0.515586972236633,-0.856835067272186,0.00225265137851238,0.552212953567505,-0.833699941635132,0.00371601129882038,0.513122737407684,-0.858307242393494,0.00154795369599015,0.518836557865143,-0.854872047901154,0.00172917207237333,0.555058062076569,-0.831809759140015,0.00374421779997647,0.549878537654877,-0.835236310958862,0.00229998538270593,0.516470611095428,-0.856301784515381,0.00371601129882038,0.513122737407684,-0.858307242393494,0.00374421779997647,0.549878537654877,-0.835236310958862,0.0026562730781734,0.5520179271698,-0.833827912807465,0.00279322080314159,0.55535876750946,-0.831606149673462,0.00283744931221008,0.519172251224518,-0.854664862155914,0.00229998538270593,0.516470611095428,-0.856301784515381,0.0026562730781734,0.5520179271698,-0.833827912807465,0.0020387985277921,0.515339851379395,-0.856983542442322,0.00283744931221008,0.519172251224518,-0.854664862155914,0.00279322080314159,0.55535876750946,-0.831606149673462,0.00215088180266321,0.552039861679077,-0.833814918994904,0.000121678262075875,0.515326917171478,-0.856993675231934,0.0020387985277921,0.515339851379395,-0.856983542442322,0.00215088180266321,0.552039861679077,-0.833814918994904,0.000119156618893612,0.552026629447937,-0.83382648229599,-0.00200840528123081,0.477582097053528,-0.878584861755371,0.0020387985277921,0.515339851379395,-0.856983542442322,0.000121678262075875,0.515326917171478,-0.856993675231934,-0.00111422734335065,0.477603107690811,-0.878575026988983,
- -0.0020818361081183,0.481710880994797,-0.876327753067017,0.00283744931221008,0.519172251224518,-0.854664862155914,0.0020387985277921,0.515339851379395,-0.856983542442322,-0.00200840528123081,0.477582097053528,-0.878584861755371,0.00283744931221008,0.519172251224518,-0.854664862155914,-0.0020818361081183,0.481710880994797,-0.876327753067017,-0.00153178605251014,0.475119322538376,-0.87992000579834,0.00229998538270593,0.516470611095428,-0.856301784515381,-0.0025054921861738,0.477675080299377,-0.878532946109772,0.00371601129882038,0.513122737407684,-0.858307242393494,0.00229998538270593,0.516470611095428,-0.856301784515381,-0.00153178605251014,0.475119322538376,-0.87992000579834,-0.0026048650033772,0.477665692567825,-0.878537774085999,0.00154795369599015,0.518836557865143,-0.854872047901154,0.00371601129882038,0.513122737407684,-0.858307242393494,-0.0025054921861738,0.477675080299377,-0.878532946109772,0.00154795369599015,0.518836557865143,-0.854872047901154,-0.0026048650033772,0.477665692567825,-0.878537774085999,-0.00259067118167877,0.477566450834274,-0.87859183549881,0.00190429168287665,0.515586972236633,-0.856835067272186,-0.00218425481580198,0.477587550878525,-0.878581583499908,-0.000422352139139548,0.515348017215729,-0.856980800628662,0.00190429168287665,0.515586972236633,-0.856835067272186,-0.00259067118167877,0.477566450834274,-0.87859183549881,-0.00181336503010243,0.41994896531105,-0.907545924186707,-0.00191062001977116,0.394873917102814,-0.918733298778534,-0.00343919754959643,0.398624151945114,-0.917107939720154,-0.00215415540151298,0.436909288167953,-0.89950293302536,-0.00387832126580179,0.398588925600052,-0.917121469974518,-0.00663097389042377,0.438430041074753,-0.898740828037262,-0.00103770231362432,0.438500672578812,-0.898730278015137,-0.00197941367514431,0.398651897907257,-0.917100250720978,-0.00281545124016702,0.398629307746887,-0.917107939720154,-0.00210803071968257,0.438440263271332,-0.898757874965668,-0.00215415540151298,0.436909288167953,-0.89950293302536,-0.00343919754959643,0.398624151945114,-0.917107939720154,
- -0.00883422791957855,0.417678833007813,-0.908551812171936,-0.00297732790932059,0.398688822984695,-0.917081475257874,-0.00186319835484028,0.394855380058289,-0.918741405010223,-0.00200419104658067,0.419322431087494,-0.907835185527802,-0.00419537536799908,0.401310175657272,-0.915932655334473,-0.00122392899356782,0.420149862766266,-0.907453894615173,-0.00200419104658067,0.419322431087494,-0.907835185527802,-0.00186319835484028,0.394855380058289,-0.918741405010223,-0.00191062001977116,0.394873917102814,-0.918733298778534,-0.00181336503010243,0.41994896531105,-0.907545924186707,-0.00122392899356782,0.420149862766266,-0.907453894615173,-0.00419537536799908,0.401310175657272,-0.915932655334473,-0.00297732790932059,0.398688822984695,-0.917081475257874,-0.00883422791957855,0.417678833007813,-0.908551812171936,-0.00663097389042377,0.438430041074753,-0.898740828037262,-0.00387832126580179,0.398588925600052,-0.917121469974518,1,6.21866784058511e-005,-3.19198932174913e-007,1,8.04712108219974e-005,-3.19198960596623e-007,0.99999988079071,-0.000625447544734925,-3.19198932174913e-007,0.999999582767487,0.000936723139602691,-3.19198733222947e-007,0.999998807907104,0.00157226028386503,-3.191985911144e-007,1,-8.47051633172669e-005,-2.42243206695142e-014,0.99999988079071,0.000336332799633965,-2.42243172813824e-014,1,6.83162434143014e-005,-3.19198932174913e-007,-0.000446792895672843,0.228271186351776,-0.973597407341003,-0.000376314535969868,0.271545559167862,-0.962425470352173,0.00275585381314158,0.27161055803299,-0.962403357028961,0.00225416384637356,0.228469267487526,-0.973548471927643,0.00351241882890463,0.269681125879288,-0.962943255901337,0.00173126335721463,0.231791689991951,-0.972763955593109,0.00225416384637356,0.228469267487526,-0.973548471927643,0.00275585381314158,0.27161055803299,-0.962403357028961,0.00173126335721463,0.231791689991951,-0.972763955593109,0.00351241882890463,0.269681125879288,-0.962943255901337,0.00343955704011023,0.269700467586517,-0.962938070297241,0.00374572491273284,0.225746244192123,-0.974178910255432,0.00374572491273284,0.225746244192123,-0.974178910255432,
- 0.00343955704011023,0.269700467586517,-0.962938070297241,0.00314380438067019,0.269609928131104,-0.962964475154877,0.00265776179730892,0.228240802884102,-0.973601102828979,0.00246826931834221,0.269470870494843,-0.963005423545837,0.00279457750730217,0.232143983244896,-0.972677409648895,0.00265776179730892,0.228240802884102,-0.973601102828979,0.00314380438067019,0.269609928131104,-0.962964475154877,0.00279457750730217,0.232143983244896,-0.972677409648895,0.00246826931834221,0.269470870494843,-0.963005423545837,0.0021167725790292,0.271538406610489,-0.962425291538239,0.00215195817872882,0.228266462683678,-0.973596334457397,0.00215195817872882,0.228266462683678,-0.973596334457397,0.0021167725790292,0.271538406610489,-0.962425291538239,0.00014772592112422,0.271519750356674,-0.96243292093277,0.000119222670036834,0.228250086307526,-0.973602533340454,0.00174100254662335,0.112050473690033,-0.993701040744781,-0.00202237139455974,0.11203546077013,-0.993702173233032,-0.000431188818765804,0.138127207756042,-0.990414381027222,0.000518274202477187,0.138555079698563,-0.990354537963867,0.00254584802314639,0.138263866305351,-0.990392088890076,0.00325726019218564,0.109184496104717,-0.994016170501709,0.00174100254662335,0.112050473690033,-0.993701040744781,0.000518274202477187,0.138555079698563,-0.990354537963867,0.00242723268456757,0.106131486594677,-0.994349122047424,0.00325726019218564,0.109184496104717,-0.994016170501709,0.00254584802314639,0.138263866305351,-0.990392088890076,0.00172053487040102,0.136546596884727,-0.990632295608521,0.0027676047757268,0.103919997811317,-0.994581818580627,0.00242723268456757,0.106131486594677,-0.994349122047424,0.00172053487040102,0.136546596884727,-0.990632295608521,0.00204171682707965,0.135655835270882,-0.990753948688507,0.00258645135909319,0.13421630859375,-0.990948617458344,0.00221984880045056,0.101111851632595,-0.994872570037842,0.0027676047757268,0.103919997811317,-0.994581818580627,0.00204171682707965,0.135655835270882,-0.990753948688507,0.00114953401498497,0.100954651832581,-0.994890332221985,
- 0.00221984880045056,0.101111851632595,-0.994872570037842,0.00258645135909319,0.13421630859375,-0.990948617458344,0.00212320778518915,0.130771234631538,-0.991410255432129,-0.000934284820687026,0.100983113050461,-0.994887709617615,0.00114953401498497,0.100954651832581,-0.994890332221985,0.00212320778518915,0.130771234631538,-0.991410255432129,4.6013250539545e-005,0.130728051066399,-0.991418242454529,-0.000376314535969868,0.271545559167862,-0.962425470352173,-0.000383603590307757,0.314280062913895,-0.949330270290375,0.0021945470944047,0.314450144767761,-0.949271440505981,0.00275585381314158,0.27161055803299,-0.962403357028961,0.00281899562105536,0.314187258481979,-0.949356853961945,0.00351241882890463,0.269681125879288,-0.962943255901337,0.00275585381314158,0.27161055803299,-0.962403357028961,0.0021945470944047,0.314450144767761,-0.949271440505981,0.00351241882890463,0.269681125879288,-0.962943255901337,0.00281899562105536,0.314187258481979,-0.949356853961945,0.00271828658878803,0.314183443784714,-0.949358403682709,0.00343955704011023,0.269700467586517,-0.962938070297241,0.00343955704011023,0.269700467586517,-0.962938070297241,0.00271828658878803,0.314183443784714,-0.949358403682709,0.00257912697270513,0.3141930103302,-0.949355602264404,0.00314380438067019,0.269609928131104,-0.962964475154877,0.00253441603854299,0.314228922128677,-0.949343800544739,0.00246826931834221,0.269470870494843,-0.963005423545837,0.00314380438067019,0.269609928131104,-0.962964475154877,0.00257912697270513,0.3141930103302,-0.949355602264404,0.00246826931834221,0.269470870494843,-0.963005423545837,0.00253441603854299,0.314228922128677,-0.949343800544739,0.00218877708539367,0.314272910356522,-0.949330151081085,0.0021167725790292,0.271538406610489,-0.962425291538239,0.0021167725790292,0.271538406610489,-0.962425291538239,0.00218877708539367,0.314272910356522,-0.949330151081085,0.000148174411151558,0.314248085021973,-0.94934093952179,0.00014772592112422,0.271519750356674,-0.96243292093277,-0.000395394250517711,0.356863617897034,-0.93415641784668,-0.00281545124016702,0.398629307746887,-0.917107939720154,
- -0.00343919754959643,0.398624151945114,-0.917107939720154,0.00176262727472931,0.357125222682953,-0.934054851531982,-0.00191062001977116,0.394873917102814,-0.918733298778534,0.00228053797036409,0.358316004276276,-0.933597564697266,0.00176262727472931,0.357125222682953,-0.934054851531982,-0.00343919754959643,0.398624151945114,-0.917107939720154,0.00228053797036409,0.358316004276276,-0.933597564697266,-0.00191062001977116,0.394873917102814,-0.918733298778534,-0.00419537536799908,0.401310175657272,-0.915932655334473,0.00214947271160781,0.358294874429703,-0.933605968952179,0.00214947271160781,0.358294874429703,-0.933605968952179,-0.00419537536799908,0.401310175657272,-0.915932655334473,-0.00186319835484028,0.394855380058289,-0.918741405010223,0.00211124611087143,0.358372420072556,-0.933576285839081,-0.00297732790932059,0.398688822984695,-0.917081475257874,0.00261244061402977,0.358523786067963,-0.93351686000824,0.00211124611087143,0.358372420072556,-0.933576285839081,-0.00186319835484028,0.394855380058289,-0.918741405010223,0.00261244061402977,0.358523786067963,-0.93351686000824,-0.00297732790932059,0.398688822984695,-0.917081475257874,-0.00387832126580179,0.398588925600052,-0.917121469974518,0.00221468321979046,0.35686132311821,-0.934154748916626,0.00221468321979046,0.35686132311821,-0.934154748916626,-0.00387832126580179,0.398588925600052,-0.917121469974518,-0.00197941367514431,0.398651897907257,-0.917100250720978,0.000156939073349349,0.356838554143906,-0.934166133403778,0.00218877708539367,0.314272910356522,-0.949330151081085,0.00221468321979046,0.35686132311821,-0.934154748916626,0.000156939073349349,0.356838554143906,-0.934166133403778,0.000148174411151558,0.314248085021973,-0.94934093952179,0.00253441603854299,0.314228922128677,-0.949343800544739,0.00261244061402977,0.358523786067963,-0.93351686000824,0.00221468321979046,0.35686132311821,-0.934154748916626,0.00218877708539367,0.314272910356522,-0.949330151081085,0.00261244061402977,0.358523786067963,-0.93351686000824,0.00253441603854299,0.314228922128677,-0.949343800544739,
- 0.00257912697270513,0.3141930103302,-0.949355602264404,0.00211124611087143,0.358372420072556,-0.933576285839081,0.00271828658878803,0.314183443784714,-0.949358403682709,0.00214947271160781,0.358294874429703,-0.933605968952179,0.00211124611087143,0.358372420072556,-0.933576285839081,0.00257912697270513,0.3141930103302,-0.949355602264404,0.00281899562105536,0.314187258481979,-0.949356853961945,0.00228053797036409,0.358316004276276,-0.933597564697266,0.00214947271160781,0.358294874429703,-0.933605968952179,0.00271828658878803,0.314183443784714,-0.949358403682709,0.00228053797036409,0.358316004276276,-0.933597564697266,0.00281899562105536,0.314187258481979,-0.949356853961945,0.0021945470944047,0.314450144767761,-0.949271440505981,0.00176262727472931,0.357125222682953,-0.934054851531982,-0.000383603590307757,0.314280062913895,-0.949330270290375,-0.000395394250517711,0.356863617897034,-0.93415641784668,0.00176262727472931,0.357125222682953,-0.934054851531982,0.0021945470944047,0.314450144767761,-0.949271440505981,0.00190528342500329,0.186089619994164,-0.982530891895294,-0.000422586395870894,0.185815051198006,-0.982584655284882,-0.000446792895672843,0.228271186351776,-0.973597407341003,0.00225416384637356,0.228469267487526,-0.973548471927643,0.00173126335721463,0.231791689991951,-0.972763955593109,0.00154975266195834,0.189817175269127,-0.981818199157715,0.00190528342500329,0.186089619994164,-0.982530891895294,0.00225416384637356,0.228469267487526,-0.973548471927643,0.0037178504280746,0.183265328407288,-0.983056485652924,0.00154975266195834,0.189817175269127,-0.981818199157715,0.00173126335721463,0.231791689991951,-0.972763955593109,0.00374572491273284,0.225746244192123,-0.974178910255432,0.0023012503515929,0.187102526426315,-0.982337713241577,0.0037178504280746,0.183265328407288,-0.983056485652924,0.00374572491273284,0.225746244192123,-0.974178910255432,0.00265776179730892,0.228240802884102,-0.973601102828979,0.00279457750730217,0.232143983244896,-0.972677409648895,0.00283884676173329,0.190202996134758,-0.981740653514862,
- 0.0023012503515929,0.187102526426315,-0.982337713241577,0.00265776179730892,0.228240802884102,-0.973601102828979,0.00203978479839861,0.185804441571236,-0.982584655284882,0.00283884676173329,0.190202996134758,-0.981740653514862,0.00279457750730217,0.232143983244896,-0.972677409648895,0.00215195817872882,0.228266462683678,-0.973596334457397,0.000121741046314128,0.185788884758949,-0.982589662075043,0.00203978479839861,0.185804441571236,-0.982584655284882,0.00215195817872882,0.228266462683678,-0.973596334457397,0.000119222670036834,0.228250086307526,-0.973602533340454,0.00212320778518915,0.130771234631538,-0.991410255432129,0.00203978479839861,0.185804441571236,-0.982584655284882,0.000121741046314128,0.185788884758949,-0.982589662075043,4.6013250539545e-005,0.130728051066399,-0.991418242454529,0.00258645135909319,0.13421630859375,-0.990948617458344,0.00283884676173329,0.190202996134758,-0.981740653514862,0.00203978479839861,0.185804441571236,-0.982584655284882,0.00212320778518915,0.130771234631538,-0.991410255432129,0.00283884676173329,0.190202996134758,-0.981740653514862,0.00258645135909319,0.13421630859375,-0.990948617458344,0.00204171682707965,0.135655835270882,-0.990753948688507,0.0023012503515929,0.187102526426315,-0.982337713241577,0.00172053487040102,0.136546596884727,-0.990632295608521,0.0037178504280746,0.183265328407288,-0.983056485652924,0.0023012503515929,0.187102526426315,-0.982337713241577,0.00204171682707965,0.135655835270882,-0.990753948688507,0.00254584802314639,0.138263866305351,-0.990392088890076,0.00154975266195834,0.189817175269127,-0.981818199157715,0.0037178504280746,0.183265328407288,-0.983056485652924,0.00172053487040102,0.136546596884727,-0.990632295608521,0.00154975266195834,0.189817175269127,-0.981818199157715,0.00254584802314639,0.138263866305351,-0.990392088890076,0.000518274202477187,0.138555079698563,-0.990354537963867,0.00190528342500329,0.186089619994164,-0.982530891895294,-0.000431188818765804,0.138127207756042,-0.990414381027222,-0.000422586395870894,0.185815051198006,-0.982584655284882,
- 0.00190528342500329,0.186089619994164,-0.982530891895294,0.000518274202477187,0.138555079698563,-0.990354537963867
- }
- TangentsW: *1422 {
- 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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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: *1012 {
- a: -0.337994575500488,-0.303633093833923,-0.0294423699378967,0.125748366117477,0.251541197299957,0.391910284757614,0.581944465637207,0.600814998149872,0.949070572853088,0.744583427906036,1.33799719810486,0.823291897773743,1.33799719810486,1.30363321304321,-0.337994575500488,0.143827110528946,-0.337994575500488,-0.303633093833923,-0.337994575500488,0.143827110528946,1.33799719810486,1.30363321304321,1.33799719810486,0.823291897773743,0.949070572853088,0.744583427906036,0.581944465637207,0.600814998149872,0.251541197299957,0.391910284757614,-0.0294423699378967,0.125748366117477,0.833125710487366,0.0474843084812164,2.89700937271118,0.0474843084812164,3.01393890380859,0.24493208527565,2.81885027885437,0.454250782728195,1.02182006835938,0.272012978792191,2.92677402496338,0.272011667490005,0.829800128936768,0.0272220373153687,2.89368367195129,0.0272215604782104,1.02488970756531,0.253315657377243,2.92984390258789,0.253314346075058,0.913895606994629,0.454251557588577,0.950053870677948,0.244933158159256,0.388320177793503,0.648081302642822,0.57830685377121,0.648081302642822,0.57830685377121,1.19983494281769,0.599183440208435,1.20988953113556,0.48332154750824,1.44297957420349,0.367442518472672,1.20988953113556,0.388320177793503,1.19983494281769,0.57830685377121,-0.646398603916168,0.388320177793503,-0.646398603916168,0.388320177793503,-0.132409572601318,0.367442518472672,-0.122360706329346,0.48332154750824,0.110734969377518,0.599183440208435,-0.122360706329346,0.57830685377121,-0.132409572601318,4.09949570894241e-005,0.752212524414063,4.24627214670181e-005,0.720145583152771,0.117306038737297,0.720147550106049,0.117304749786854,0.752216100692749,0.117295749485493,0.869794547557831,0.11726900190115,0.9955233335495,8.34465026855469e-007,0.995400667190552,3.08044254779816e-005,0.869797587394714,0.117308095097542,0.643519163131714,4.47928905487061e-005,0.643749237060547,3.14591452479362e-005,0.865592241287231,3.65478917956352e-005,0.819283008575439,0.117300808429718,0.819286406040192,0.117296315729618,0.865589737892151,
- 0.117302797734737,0.787984609603882,3.87988984584808e-005,0.787981033325195,0.392148464918137,0.14081683754921,0.392128884792328,0.0145279243588448,0.47276908159256,0.0145279765129089,0.500188589096069,0.0336773991584778,0.500188589096069,0.0709830522537231,0.52779632806778,0.0893397331237793,0.52779632806778,0.137728631496429,0.524687826633453,0.140816867351532,0.624514520168304,0.642507374286652,0.624513626098633,0.720152378082275,0.510254144668579,0.720154225826263,0.510255336761475,0.642748355865479,0.510253429412842,0.752228200435638,0.624513030052185,0.752224743366241,0.624512195587158,0.787993133068085,0.510252356529236,0.787996590137482,0.624511361122131,0.819294571876526,0.510251224040985,0.819297909736633,0.510248720645905,0.865581333637238,0.624509453773499,0.865584015846252,0.624509215354919,0.869787573814392,0.510248482227325,0.869784355163574,0.624496579170227,0.99606466293335,0.510232508182526,0.995934307575226,0.999999940395355,0.720146417617798,0.869386494159698,0.720148503780365,0.869386851787567,0.641990900039673,1,0.641715466976166,0.869386315345764,0.752217292785645,0.999999940395355,0.752213358879089,0.999999940395355,0.787981867790222,0.86938601732254,0.787985801696777,0.999999940395355,0.819283723831177,0.869385719299316,0.819287478923798,0.869385004043579,0.865589737892151,0.999999940395355,0.865592837333679,0.999999940395355,0.869798302650452,0.869385004043579,0.869794547557831,0.999997913837433,0.996492862701416,0.869379281997681,0.996343910694122,0.372411876916885,0.720151901245117,0.372413367033005,0.64301872253418,0.372410953044891,0.752223968505859,0.372409582138062,0.787992358207703,0.372408151626587,0.819293856620789,0.372404932975769,0.865584254264832,0.3724045753479,0.869787931442261,0.37238484621048,0.995790123939514,0.234571397304535,0.643289148807526,0.234569609165192,0.720149517059326,0.234568506479263,0.752219676971436,0.234566792845726,0.787988185882568,0.234565064311028,0.819289803504944,0.234561175107956,0.86558723449707,0.234560698270798,0.869791507720947,0.234537169337273,
- 0.995645999908447,0.738773047924042,0.720150589942932,0.738773703575134,0.642266392707825,0.738772690296173,0.752221286296844,0.738772094249725,0.787989675998688,0.738771438598633,0.819291234016418,0.738770127296448,0.865586698055267,0.738770008087158,0.86979079246521,0.738760590553284,0.996194958686829,4.09949570894241e-005,0.752212524414063,4.24627214670181e-005,0.720145583152771,0.117306038737297,0.720147550106049,0.117304749786854,0.752216100692749,0.117295749485493,0.869794547557831,0.11726900190115,0.9955233335495,8.34465026855469e-007,0.995400667190552,3.08044254779816e-005,0.869797587394714,0.117308095097542,0.643519163131714,4.47928905487061e-005,0.643749237060547,3.14591452479362e-005,0.865592241287231,3.65478917956352e-005,0.819283008575439,0.117300808429718,0.819286406040192,0.117296315729618,0.865589737892151,0.117302797734737,0.787984609603882,3.87988984584808e-005,0.787981033325195,0.624514520168304,0.642507374286652,0.624513626098633,0.720152378082275,0.510254144668579,0.720154225826263,0.510255336761475,0.642748355865479,0.510253429412842,0.752228200435638,0.624513030052185,0.752224743366241,0.624512195587158,0.787993133068085,0.510252356529236,0.787996590137482,0.624511361122131,0.819294571876526,0.510251224040985,0.819297909736633,0.510248720645905,0.865581333637238,0.624509453773499,0.865584015846252,0.624509215354919,0.869787573814392,0.510248482227325,0.869784355163574,0.624496579170227,0.99606466293335,0.510232508182526,0.995934307575226,0.999999940395355,0.720146417617798,0.869386494159698,0.720148503780365,0.869386851787567,0.641990900039673,1,0.641715466976166,0.869386315345764,0.752217292785645,0.999999940395355,0.752213358879089,0.999999940395355,0.787981867790222,0.86938601732254,0.787985801696777,0.999999940395355,0.819283723831177,0.869385719299316,0.819287478923798,0.869385004043579,0.865589737892151,0.999999940395355,0.865592837333679,0.999999940395355,0.869798302650452,0.869385004043579,0.869794547557831,0.999997913837433,0.996492862701416,0.869379281997681,0.996343910694122,0.372411876916885,
- 0.720151901245117,0.372413367033005,0.64301872253418,0.372410953044891,0.752223968505859,0.372409582138062,0.787992358207703,0.372408151626587,0.819293856620789,0.372404932975769,0.865584254264832,0.3724045753479,0.869787931442261,0.37238484621048,0.995790123939514,0.234571397304535,0.643289148807526,0.234569609165192,0.720149517059326,0.234568506479263,0.752219676971436,0.234566792845726,0.787988185882568,0.234565064311028,0.819289803504944,0.234561175107956,0.86558723449707,0.234560698270798,0.869791507720947,0.234537169337273,0.995645999908447,0.738773047924042,0.720150589942932,0.738773703575134,0.642266392707825,0.738772690296173,0.752221286296844,0.738772094249725,0.787989675998688,0.738771438598633,0.819291234016418,0.738770127296448,0.865586698055267,0.738770008087158,0.86979079246521,0.738760590553284,0.996194958686829,4.09949570894241e-005,0.752212524414063,4.24627214670181e-005,0.720145583152771,0.117306038737297,0.720147550106049,0.117304749786854,0.752216100692749,0.117295749485493,0.869794547557831,0.11726900190115,0.9955233335495,8.34465026855469e-007,0.995400667190552,3.08044254779816e-005,0.869797587394714,0.117308095097542,0.643519163131714,4.47928905487061e-005,0.643749237060547,3.14591452479362e-005,0.865592241287231,3.65478917956352e-005,0.819283008575439,0.117300808429718,0.819286406040192,0.117296315729618,0.865589737892151,0.117302797734737,0.787984609603882,3.87988984584808e-005,0.787981033325195,0.603904485702515,0.0336130112409592,0.631324052810669,0.0144635140895844,0.716286540031433,0.0144595177844167,0.717000007629395,0.140760347247124,0.579405009746552,0.140752285718918,0.57629656791687,0.137664005160332,0.57629656791687,0.0892751589417458,0.603904485702515,0.070918470621109,0.624514520168304,0.642507374286652,0.624513626098633,0.720152378082275,0.510254144668579,0.720154225826263,0.510255336761475,0.642748355865479,0.510253429412842,0.752228200435638,0.624513030052185,0.752224743366241,0.624512195587158,0.787993133068085,0.510252356529236,0.787996590137482,0.624511361122131,0.819294571876526,
- 0.510251224040985,0.819297909736633,0.510248720645905,0.865581333637238,0.624509453773499,0.865584015846252,0.624509215354919,0.869787573814392,0.510248482227325,0.869784355163574,0.624496579170227,0.99606466293335,0.510232508182526,0.995934307575226,0.999999940395355,0.720146417617798,0.869386494159698,0.720148503780365,0.869386851787567,0.641990900039673,1,0.641715466976166,0.869386315345764,0.752217292785645,0.999999940395355,0.752213358879089,0.999999940395355,0.787981867790222,0.86938601732254,0.787985801696777,0.999999940395355,0.819283723831177,0.869385719299316,0.819287478923798,0.869385004043579,0.865589737892151,0.999999940395355,0.865592837333679,0.999999940395355,0.869798302650452,0.869385004043579,0.869794547557831,0.999997913837433,0.996492862701416,0.869379281997681,0.996343910694122,0.372411876916885,0.720151901245117,0.372413367033005,0.64301872253418,0.372410953044891,0.752223968505859,0.372409582138062,0.787992358207703,0.372408151626587,0.819293856620789,0.372404932975769,0.865584254264832,0.3724045753479,0.869787931442261,0.37238484621048,0.995790123939514,0.234571397304535,0.643289148807526,0.234569609165192,0.720149517059326,0.234568506479263,0.752219676971436,0.234566792845726,0.787988185882568,0.234565064311028,0.819289803504944,0.234561175107956,0.86558723449707,0.234560698270798,0.869791507720947,0.234537169337273,0.995645999908447,0.738773047924042,0.720150589942932,0.738773703575134,0.642266392707825,0.738772690296173,0.752221286296844,0.738772094249725,0.787989675998688,0.738771438598633,0.819291234016418,0.738770127296448,0.865586698055267,0.738770008087158,0.86979079246521,0.738760590553284,0.996194958686829,4.09949570894241e-005,0.752212524414063,0.117304749786854,0.752216100692749,0.117306038737297,0.720147550106049,4.24627214670181e-005,0.720145583152771,0.117295749485493,0.869794547557831,3.08044254779816e-005,0.869797587394714,8.34465026855469e-007,0.995400667190552,0.11726900190115,0.9955233335495,0.117308095097542,0.643519163131714,4.47928905487061e-005,0.643749237060547,3.14591452479362e-005,
- 0.865592241287231,0.117296315729618,0.865589737892151,0.117300808429718,0.819286406040192,3.65478917956352e-005,0.819283008575439,0.117302797734737,0.787984609603882,3.87988984584808e-005,0.787981033325195,0.392148464918137,0.14081683754921,0.524687826633453,0.140816867351532,0.52779632806778,0.137728631496429,0.52779632806778,0.0893397331237793,0.500188589096069,0.0709830522537231,0.500188589096069,0.0336773991584778,0.47276908159256,0.0145279765129089,0.392128884792328,0.0145279243588448,0.624514520168304,0.642507374286652,0.510255336761475,0.642748355865479,0.510254144668579,0.720154225826263,0.624513626098633,0.720152378082275,0.510253429412842,0.752228200435638,0.624513030052185,0.752224743366241,0.510252356529236,0.787996590137482,0.624512195587158,0.787993133068085,0.510251224040985,0.819297909736633,0.624511361122131,0.819294571876526,0.510248720645905,0.865581333637238,0.624509453773499,0.865584015846252,0.510248482227325,0.869784355163574,0.624509215354919,0.869787573814392,0.510232508182526,0.995934307575226,0.624496579170227,0.99606466293335,0.999999940395355,0.720146417617798,1,0.641715466976166,0.869386851787567,0.641990900039673,0.869386494159698,0.720148503780365,0.869386315345764,0.752217292785645,0.999999940395355,0.752213358879089,0.999999940395355,0.787981867790222,0.86938601732254,0.787985801696777,0.999999940395355,0.819283723831177,0.869385719299316,0.819287478923798,0.869385004043579,0.865589737892151,0.999999940395355,0.865592837333679,0.999999940395355,0.869798302650452,0.869385004043579,0.869794547557831,0.999997913837433,0.996492862701416,0.869379281997681,0.996343910694122,0.372413367033005,0.64301872253418,0.372411876916885,0.720151901245117,0.372410953044891,0.752223968505859,0.372409582138062,0.787992358207703,0.372408151626587,0.819293856620789,0.372404932975769,0.865584254264832,0.3724045753479,0.869787931442261,0.37238484621048,0.995790123939514,0.234571397304535,0.643289148807526,0.234569609165192,0.720149517059326,0.234568506479263,0.752219676971436,0.234566792845726,0.787988185882568,
- 0.234565064311028,0.819289803504944,0.234561175107956,0.86558723449707,0.234560698270798,0.869791507720947,0.234537169337273,0.995645999908447,0.738773047924042,0.720150589942932,0.738773703575134,0.642266392707825,0.738772690296173,0.752221286296844,0.738772094249725,0.787989675998688,0.738771438598633,0.819291234016418,0.738770127296448,0.865586698055267,0.738770008087158,0.86979079246521,0.738760590553284,0.996194958686829,4.09949570894241e-005,0.752212524414063,0.117304749786854,0.752216100692749,0.117306038737297,0.720147550106049,4.24627214670181e-005,0.720145583152771,0.117295749485493,0.869794547557831,3.08044254779816e-005,0.869797587394714,8.34465026855469e-007,0.995400667190552,0.11726900190115,0.9955233335495,0.117308095097542,0.643519163131714,4.47928905487061e-005,0.643749237060547,3.14591452479362e-005,0.865592241287231,0.117296315729618,0.865589737892151,0.117300808429718,0.819286406040192,3.65478917956352e-005,0.819283008575439,0.117302797734737,0.787984609603882,3.87988984584808e-005,0.787981033325195,0.624514520168304,0.642507374286652,0.510255336761475,0.642748355865479,0.510254144668579,0.720154225826263,0.624513626098633,0.720152378082275,0.510253429412842,0.752228200435638,0.624513030052185,0.752224743366241,0.510252356529236,0.787996590137482,0.624512195587158,0.787993133068085,0.510251224040985,0.819297909736633,0.624511361122131,0.819294571876526,0.510248720645905,0.865581333637238,0.624509453773499,0.865584015846252,0.510248482227325,0.869784355163574,0.624509215354919,0.869787573814392,0.510232508182526,0.995934307575226,0.624496579170227,0.99606466293335,0.999999940395355,0.720146417617798,1,0.641715466976166,0.869386851787567,0.641990900039673,0.869386494159698,0.720148503780365,0.869386315345764,0.752217292785645,0.999999940395355,0.752213358879089,0.999999940395355,0.787981867790222,0.86938601732254,0.787985801696777,0.999999940395355,0.819283723831177,0.869385719299316,0.819287478923798,0.869385004043579,0.865589737892151,0.999999940395355,0.865592837333679,0.999999940395355,0.869798302650452,
- 0.869385004043579,0.869794547557831,0.999997913837433,0.996492862701416,0.869379281997681,0.996343910694122,0.372413367033005,0.64301872253418,0.372411876916885,0.720151901245117,0.372410953044891,0.752223968505859,0.372409582138062,0.787992358207703,0.372408151626587,0.819293856620789,0.372404932975769,0.865584254264832,0.3724045753479,0.869787931442261,0.37238484621048,0.995790123939514,0.234571397304535,0.643289148807526,0.234569609165192,0.720149517059326,0.234568506479263,0.752219676971436,0.234566792845726,0.787988185882568,0.234565064311028,0.819289803504944,0.234561175107956,0.86558723449707,0.234560698270798,0.869791507720947,0.234537169337273,0.995645999908447,0.738773047924042,0.720150589942932,0.738773703575134,0.642266392707825,0.738772690296173,0.752221286296844,0.738772094249725,0.787989675998688,0.738771438598633,0.819291234016418,0.738770127296448,0.865586698055267,0.738770008087158,0.86979079246521,0.738760590553284,0.996194958686829,4.09949570894241e-005,0.752212524414063,0.117304749786854,0.752216100692749,0.117306038737297,0.720147550106049,4.24627214670181e-005,0.720145583152771,0.117295749485493,0.869794547557831,3.08044254779816e-005,0.869797587394714,8.34465026855469e-007,0.995400667190552,0.11726900190115,0.9955233335495,0.117308095097542,0.643519163131714,4.47928905487061e-005,0.643749237060547,3.14591452479362e-005,0.865592241287231,0.117296315729618,0.865589737892151,0.117300808429718,0.819286406040192,3.65478917956352e-005,0.819283008575439,0.117302797734737,0.787984609603882,3.87988984584808e-005,0.787981033325195,0.603904485702515,0.0336130112409592,0.603904485702515,0.070918470621109,0.57629656791687,0.0892751589417458,0.57629656791687,0.137664005160332,0.579405009746552,0.140752285718918,0.717000007629395,0.140760347247124,0.716286540031433,0.0144595177844167,0.631324052810669,0.0144635140895844,0.624514520168304,0.642507374286652,0.510255336761475,0.642748355865479,0.510254144668579,0.720154225826263,0.624513626098633,0.720152378082275,0.510253429412842,0.752228200435638,0.624513030052185,
- 0.752224743366241,0.510252356529236,0.787996590137482,0.624512195587158,0.787993133068085,0.510251224040985,0.819297909736633,0.624511361122131,0.819294571876526,0.510248720645905,0.865581333637238,0.624509453773499,0.865584015846252,0.510248482227325,0.869784355163574,0.624509215354919,0.869787573814392,0.510232508182526,0.995934307575226,0.624496579170227,0.99606466293335,0.999999940395355,0.720146417617798,1,0.641715466976166,0.869386851787567,0.641990900039673,0.869386494159698,0.720148503780365,0.869386315345764,0.752217292785645,0.999999940395355,0.752213358879089,0.999999940395355,0.787981867790222,0.86938601732254,0.787985801696777,0.999999940395355,0.819283723831177,0.869385719299316,0.819287478923798,0.869385004043579,0.865589737892151,0.999999940395355,0.865592837333679,0.999999940395355,0.869798302650452,0.869385004043579,0.869794547557831,0.999997913837433,0.996492862701416,0.869379281997681,0.996343910694122,0.372413367033005,0.64301872253418,0.372411876916885,0.720151901245117,0.372410953044891,0.752223968505859,0.372409582138062,0.787992358207703,0.372408151626587,0.819293856620789,0.372404932975769,0.865584254264832,0.3724045753479,0.869787931442261,0.37238484621048,0.995790123939514,0.234571397304535,0.643289148807526,0.234569609165192,0.720149517059326,0.234568506479263,0.752219676971436,0.234566792845726,0.787988185882568,0.234565064311028,0.819289803504944,0.234561175107956,0.86558723449707,0.234560698270798,0.869791507720947,0.234537169337273,0.995645999908447,0.738773047924042,0.720150589942932,0.738773703575134,0.642266392707825,0.738772690296173,0.752221286296844,0.738772094249725,0.787989675998688,0.738771438598633,0.819291234016418,0.738770127296448,0.865586698055267,0.738770008087158,0.86979079246521,0.738760590553284,0.996194958686829
- }
- UVIndex: *1422 {
- a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,27,19,26,20,21,22,23,17,16,24,25,21,20,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,44,43,51,52,53,54,55,56,54,53,57,45,56,57,42,55,46,49,52,58,59,60,61,62,63,64,65,66,67,68,69,70,68,67,71,71,72,73,70,72,74,75,73,76,75,74,77,77,78,79,76,78,80,81,79,82,83,84,85,86,83,82,87,88,89,86,87,90,91,89,88,92,91,90,93,94,95,92,93,96,97,95,94,69,68,98,99,100,98,68,70,70,73,101,100,73,75,102,101,103,102,75,76,76,79,104,103,79,81,105,104,106,107,44,50,45,44,107,108,108,109,56,45,109,110,54,56,55,54,110,111,111,112,46,55,112,113,47,46,104,105,113,112,103,104,112,111,111,110,102,103,101,102,110,109,100,101,109,108,108,107,98,100,99,98,107,106,114,67,66,115,71,67,114,116,117,72,71,116,118,74,72,117,77,74,118,119,120,78,77,119,121,80,78,120,95,97,121,120,92,95,120,119,119,118,91,92,89,91,118,117,86,89,117,116,116,114,83,86,84,83,114,115,122,123,124,125,126,127,128,129,130,124,123,131,132,133,134,135,136,134,133,137,125,136,137,122,135,126,129,132,138,139,140,141,142,140,139,143,143,144,145,142,144,146,147,145,148,147,146,149,149,150,151,148,150,152,153,151,154,155,156,157,158,155,154,159,160,161,158,159,162,163,161,160,164,163,162,165,166,167,164,165,168,169,167,166,141,140,170,171,172,170,140,142,142,145,173,172,145,147,174,173,175,174,147,148,148,151,176,175,151,153,177,176,178,179,124,130,125,124,179,180,180,181,136,125,181,182,134,136,135,134,182,183,183,184,126,135,184,185,127,126,176,177,185,184,175,176,184,183,183,182,174,175,173,174,182,181,172,173,181,180,180,179,170,172,171,170,179,178,186,139,138,187,143,139,186,188,189,144,143,188,190,146,144,189,149,146,190,191,192,150,149,191,193,152,150,192,167,169,193,192,164,167,192,191,191,190,163,164,161,163,190,189,158,161,189,188,188,186,155,158,156,155,186,187,194,195,196,197,198,199,200,201,202,196,195,203,204,205,206,207,208,206,205,209,197,208,209,194,207,198,201,204,210,211,212,213,214,215,216,217,218,219,220,221,222,220,219,223,223,224,225,222,224,226,227,225,228,227,226,229,229,
- 230,231,228,230,232,233,231,234,235,236,237,238,235,234,239,240,241,238,239,242,243,241,240,244,243,242,245,246,247,244,245,248,249,247,246,221,220,250,251,252,250,220,222,222,225,253,252,225,227,254,253,255,254,227,228,228,231,256,255,231,233,257,256,258,259,196,202,197,196,259,260,260,261,208,197,261,262,206,208,207,206,262,263,263,264,198,207,264,265,199,198,256,257,265,264,255,256,264,263,263,262,254,255,253,254,262,261,252,253,261,260,260,259,250,252,251,250,259,258,266,219,218,267,223,219,266,268,269,224,223,268,270,226,224,269,229,226,270,271,272,230,229,271,273,232,230,272,247,249,273,272,244,247,272,271,271,270,243,244,241,243,270,269,238,241,269,268,268,266,235,238,236,235,266,267,274,275,276,277,278,279,280,281,282,283,277,276,284,285,286,287,288,289,287,286,275,274,289,288,285,284,279,278,290,291,292,293,294,295,296,297,298,299,300,301,302,303,301,300,303,302,304,305,305,304,306,307,308,309,307,306,309,308,310,311,311,310,312,313,314,315,316,317,318,319,314,317,320,319,318,321,322,320,321,323,324,325,322,323,326,325,324,327,328,326,327,329,299,330,331,300,332,302,300,331,302,332,333,304,304,333,334,306,335,308,306,334,308,335,336,310,310,336,337,312,338,282,276,339,275,340,339,276,340,275,288,341,341,288,286,342,285,343,342,286,343,285,278,344,344,278,281,345,336,344,345,337,335,343,344,336,343,335,334,342,333,341,342,334,332,340,341,333,340,332,331,339,330,338,339,331,346,347,298,301,303,348,346,301,349,348,303,305,350,349,305,307,309,351,350,307,352,351,309,311,353,352,311,313,327,352,353,329,324,351,352,327,351,324,323,350,321,349,350,323,318,348,349,321,348,318,317,346,316,347,346,317,354,355,356,357,358,359,360,361,362,363,357,356,364,365,366,367,368,369,367,366,355,354,369,368,365,364,359,358,370,371,372,373,374,375,373,372,375,374,376,377,377,376,378,379,380,381,379,378,381,380,382,383,383,382,384,385,386,387,388,389,390,391,386,389,392,391,390,393,394,392,393,395,396,397,394,395,398,397,396,399,400,398,399,401,371,402,403,372,404,374,372,403,374,404,405,376,376,405,406,378,407,380,378,406,380,407,
- 408,382,382,408,409,384,410,362,356,411,355,412,411,356,412,355,368,413,413,368,366,414,365,415,414,366,415,365,358,416,416,358,361,417,408,416,417,409,407,415,416,408,415,407,406,414,405,413,414,406,404,412,413,405,412,404,403,411,402,410,411,403,418,419,370,373,375,420,418,373,421,420,375,377,422,421,377,379,381,423,422,379,424,423,381,383,425,424,383,385,399,424,425,401,396,423,424,399,423,396,395,422,393,421,422,395,390,420,421,393,420,390,389,418,388,419,418,389,426,427,428,429,430,431,432,433,434,435,429,428,436,437,438,439,440,441,439,438,427,426,441,440,437,436,431,430,442,443,444,445,446,447,448,449,450,451,452,453,454,455,453,452,455,454,456,457,457,456,458,459,460,461,459,458,461,460,462,463,463,462,464,465,466,467,468,469,470,471,466,469,472,471,470,473,474,472,473,475,476,477,474,475,478,477,476,479,480,478,479,481,451,482,483,452,484,454,452,483,454,484,485,456,456,485,486,458,487,460,458,486,460,487,488,462,462,488,489,464,490,434,428,491,427,492,491,428,492,427,440,493,493,440,438,494,437,495,494,438,495,437,430,496,496,430,433,497,488,496,497,489,487,495,496,488,495,487,486,494,485,493,494,486,484,492,493,485,492,484,483,491,482,490,491,483,498,499,450,453,455,500,498,453,501,500,455,457,502,501,457,459,461,503,502,459,504,503,461,463,505,504,463,465,479,504,505,481,476,503,504,479,503,476,475,502,473,501,502,475,470,500,501,473,500,470,469,498,468,499,498,469
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *717 {
- 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,1,1,0,1,1,0,1,0,1,0,1,1,0,1,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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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,1,0,0,1,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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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,1,0,1,0,1,0,1,1,0,1,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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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,1,0,0,1,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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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: "ByPolygon"
- ReferenceInformationType: "IndexToDirect"
- Materials: *348 {
- a: 0,0,1,1,1,1,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2
- }
- }
- 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: 2333008479920, "Geometry::", "Mesh" {
- Vertices: *570 {
- a: 45.193359375,123.257202148438,-273.626953125,45.193359375,166.272705078125,-486.17724609375,45.193359375,428.780029296875,-486.17724609375,45.193359375,44.6884765625,-72.992431640625,45.193359375,-205.057983398438,429.757934570313,45.193359375,-69.4801025390625,107.573608398438,45.193359375,-214.93798828125,261.133056640625,45.193359375,-449.595947265625,429.7578125,-45.1953125,428.780029296875,-486.17724609375,-45.1953125,166.272705078125,-486.17724609375,-45.1953125,123.257202148438,-273.626953125,-45.1953125,44.6884765625,-72.992431640625,-45.1953125,-205.057983398438,429.757934570313,-45.1953125,-69.4801025390625,107.573608398438,-45.1953125,-214.93798828125,261.133056640625,-45.1953125,-449.595947265625,429.7578125,-0.00390625,536.446411132813,-485.050903320313,-55.126953125,433.561401367188,-485.051025390625,55.126953125,433.5615234375,-485.050903320313,-0.00390625,-97.39111328125,430.8837890625,55.126953125,-200.276611328125,430.884033203125,-55.126953125,-200.276733398438,430.883911132813,51.21875,-518.290771484375,470.375244140625,52.384765625,-529.239013671875,445.201416015625,52.384765625,-518.951354980469,468.856506347656,41.9706153869629,-532.659240722656,436.921325683594,-0.38671875,-518.290771484375,470.375244140625,-0.38671875,-545.170043945313,408.561401367188,31.896484375,-545.170043945313,408.561401367188,41.9328994750977,-540.528747558594,419.072570800781,51.34375,144.796508789063,-488.57958984375,50.166015625,172.118774414063,-488.57958984375,51.34375,170.470458984375,-488.57958984375,41.10546875,135.039428710938,-488.57958984375,-0.38671875,172.118774414063,-488.57958984375,-0.38671875,105.031005859375,-488.57958984375,30.708984375,105.031005859375,-488.57958984375,41.10546875,115.209716796875,-488.57958984375,-53.158203125,-529.239013671875,445.201416015625,-51.9921875,-518.290771484375,470.375244140625,-53.158203125,-518.951354980469,468.856506347656,-42.7440643310547,-532.659240722656,436.921569824219,-32.669921875,-545.170043945313,408.561401367188,-42.7063407897949,-540.528747558594,419.072570800781,
- -50.939453125,172.118774414063,-488.57958984375,-52.1171875,144.796508789063,-488.57958984375,-52.1171875,170.470458984375,-488.57958984375,-41.87890625,135.039428710938,-488.57958984375,-31.482421875,105.031005859375,-488.57958984375,-41.87890625,115.209716796875,-488.57958984375,-0.37545707821846,93.2366943359375,-394.440185546875,30.9867248535156,92.23779296875,-388.646606445313,-0.386721044778824,64.2677001953125,-275.890258789063,31.90016746521,52.6104278564453,-237.910217285156,-0.386722564697266,29.7967681884766,-178.937118530273,41.3330039978027,105.345855712891,-406.94189453125,31.302734375,0.9564208984375,-115.271850585938,-0.38671875,0.9564208984375,-115.271850585938,41.8900604248047,66.9179534912109,-245.337066650391,41.6640625,10.15771484375,-110.80810546875,41.9523277282715,29.2872085571289,-101.537986755371,41.3508758544922,123.926544189453,-395.031829833984,41.7449188232422,92.2082824707031,-263.619232177734,51.585880279541,131.359191894531,-380.320007324219,52.2001037597656,90.2735137939453,-223.768356323242,51.86328125,36.9041748046875,-97.8345947265625,51.86328125,60.114013671875,-86.578857421875,51.5467567443848,160.355102539063,-398.466186523438,51.8188018798828,138.469497680664,-297.910400390625,52.2581024169922,90.4812088012695,-153.997436523438,50.693359375,61.604248046875,-85.856201171875,52.00390625,117.427856445313,-227.756713867188,51.1105690002441,93.582649230957,-157.150024414063,-0.386712461709976,92.1338806152344,-153.397369384766,-0.38671875,61.604248046875,-85.856201171875,50.833984375,119.000244140625,-227.236572265625,-0.386715352535248,127.756759643555,-253.799758911133,50.6760673522949,141.411193847656,-302.472473144531,-0.386709570884705,160.842269897461,-388.14892578125,50.2832450866699,163.148574829102,-406.280151367188,-31.8063106536865,91.8271484375,-387.109741210938,-32.6715545654297,52.5823059082031,-237.839569091797,-42.1064414978027,105.345825195313,-406.941772460938,-32.076171875,0.9564208984375,-115.271850585938,-42.6631774902344,66.9152221679688,-245.332946777344,-42.4375,10.15771484375,-110.80810546875,
- -42.7258033752441,29.2873229980469,-101.538116455078,-42.1243133544922,123.926544189453,-395.031829833984,-42.5183563232422,92.2082824707031,-263.619110107422,-52.359317779541,131.359176635742,-380.319885253906,-52.9735412597656,90.2735290527344,-223.768463134766,-52.63671875,36.9041748046875,-97.8345947265625,-52.63671875,60.114013671875,-86.578857421875,-52.3201942443848,160.355102539063,-398.466186523438,-52.5922393798828,138.469497680664,-297.910400390625,-53.0315399169922,90.481201171875,-153.997314453125,-51.466796875,61.604248046875,-85.856201171875,-52.77734375,117.427856445313,-227.756713867188,-51.8840103149414,93.582649230957,-157.150024414063,-51.607421875,119.000244140625,-227.236572265625,-51.4495048522949,141.411193847656,-302.472473144531,-51.0566825866699,163.148574829102,-406.280151367188,31.302734375,-225.10888671875,195.484619140625,-0.38671875,-225.10888671875,195.484619140625,-0.386719256639481,-175.970840454102,145.802352905273,31.9077777862549,-134.444839477539,98.8090667724609,-0.386719077825546,-110.003402709961,66.8755035400391,41.9999389648438,-118.776847839355,97.2268142700195,41.6640625,-218.029174804688,202.865112304688,41.6640625,-204.236450195313,217.242309570313,30.8806037902832,-45.8790054321289,-27.0860366821289,-0.386719435453415,-46.9822082519531,-25.9865989685059,41.2865715026855,-28.0441017150879,-38.3448791503906,41.2952919006348,-42.246696472168,23.877571105957,42.0050849914551,-134.726303100586,145.274673461914,51.8281517028809,-195.220642089844,226.672424316406,51.5662422180176,-23.9924201965332,14.4672966003418,52.2305526733398,-122.150726318359,146.183013916016,51.86328125,-179.590087890625,242.92919921875,52.2739486694336,-127.713592529297,190.272003173828,50.693359375,-178.443481445313,244.124145507813,52.00390625,-76.778564453125,130.366455078125,51.4653282165527,19.9802989959717,-10.4266834259033,51.1068115234375,-123.676979064941,188.335968017578,-0.386717915534973,-126.375579833984,191.392974853516,-0.38671875,-178.443481445313,244.124145507813,50.833984375,-75.484375,131.400146484375,
- -0.386718273162842,-58.2470893859863,109.777816772461,51.8241920471191,-32.6027488708496,71.7500305175781,50.6737022399902,-28.307788848877,68.5611114501953,-0.386717587709427,11.667552947998,7.52814865112305,50.3284111022949,25.1815433502197,-16.1905269622803,-32.076171875,-225.10888671875,195.484619140625,-32.6812171936035,-134.444854736328,98.8090515136719,-42.7733764648438,-118.776863098145,97.2267990112305,-42.4375,-218.029174804688,202.865112304688,-42.4375,-204.236450195313,217.242309570313,-31.6540412902832,-45.8790130615234,-27.0860404968262,-42.0600090026855,-28.0441055297852,-38.3448829650879,-42.0687255859375,-42.2468719482422,23.8776397705078,-42.7785224914551,-134.726287841797,145.274688720703,-52.6016082763672,-195.220581054688,226.672485351563,-52.3396797180176,-23.9924983978271,14.4672183990479,-53.0039901733398,-122.15064239502,146.182861328125,-52.63671875,-179.590087890625,242.92919921875,-53.0473861694336,-127.713592529297,190.272003173828,-51.466796875,-178.443481445313,244.124145507813,-52.77734375,-76.778564453125,130.366455078125,-51.8802490234375,-123.676979064941,188.335968017578,-51.607421875,-75.484375,131.400146484375,-52.5976295471191,-32.6027488708496,71.7500305175781,-51.4471397399902,-28.307788848877,68.5611114501953,-52.2387657165527,19.980297088623,-10.426685333252,-51.1018486022949,25.1815433502197,-16.1905269622803,31.6897830963135,-483.078216552734,379.535797119141,-0.386719793081284,-478.435302734375,377.180908203125,31.4041023254395,-398.935638427734,331.772613525391,-0.386719465255737,-391.96240234375,327.50048828125,41.7115783691406,-379.68505859375,332.325439453125,30.8801765441895,-299.662658691406,261.946716308594,-0.386720389127731,-301.012176513672,262.539581298828,41.2865715026855,-279.043640136719,257.591125488281,41.3431243896484,-338.417938232422,328.901153564453,51.9471588134766,-383.06787109375,371.0751953125,52.2121315002441,-455.02587890625,439.011962890625,52.00390625,-383.386840820313,398.946166992188,51.1913375854492,-448.807098388672,437.817901611328,-0.386716932058334,-446.620635986328,436.540740966797,
- 51.8223114013672,-321.586242675781,359.293395996094,50.833984375,-382.5322265625,400.36474609375,-0.386717587709427,-358.007263183594,385.502990722656,51.4598770141602,-243.690063476563,300.431762695313,50.6740379333496,-316.44775390625,357.792236328125,-0.386715859174728,-257.617980957031,314.309020996094,50.3298454284668,-236.824295043945,296.849792480469,-32.4632225036621,-483.078216552734,379.535797119141,-42.4850158691406,-379.684875488281,332.325378417969,-32.1775398254395,-398.935516357422,331.772491455078,-31.6536140441895,-299.662475585938,261.946411132813,-42.0600090026855,-279.043609619141,257.591156005859,-42.1165618896484,-338.41796875,328.901123046875,-52.7205963134766,-383.068115234375,371.0751953125,-52.9855690002441,-455.02587890625,439.011962890625,-52.77734375,-383.386840820313,398.946166992188,-51.9647750854492,-448.807037353516,437.817718505859,-52.5957489013672,-321.586242675781,359.293395996094,-51.607421875,-382.5322265625,400.36474609375,-52.2333145141602,-243.690063476563,300.431762695313,-51.4474754333496,-316.44775390625,357.792236328125,-51.1032829284668,-236.824295043945,296.849792480469
- }
- PolygonVertexIndex: *1086 {
- a: 0,1,-3,2,3,-1,4,3,-3,3,4,-6,5,4,-7,7,6,-5,8,9,-11,11,8,-11,12,8,-12,12,11,-14,12,13,-15,15,12,-15,8,1,-10,1,8,-3,16,2,-9,16,8,-18,2,16,-19,4,15,-8,15,4,-13,19,12,-5,19,4,-21,12,19,-22,18,19,-21,19,18,-17,17,21,-20,19,16,-18,18,20,-5,4,2,-19,12,17,-9,17,12,-22,22,23,-25,23,22,-26,25,22,-27,27,25,-27,28,25,-28,25,28,-30,30,31,-33,33,31,-31,31,33,-35,33,35,-35,33,36,-36,36,33,-38,38,39,-41,41,39,-39,39,41,-27,41,27,-27,27,41,-43,42,41,-44,44,45,-47,45,44,-48,47,44,-35,35,47,-35,48,47,-36,47,48,-50,36,50,-36,50,36,-52,51,52,-51,37,51,-37,52,51,-54,53,54,-53,51,37,-56,56,54,-54,56,57,-55,58,53,-52,58,56,-54,51,55,-59,56,58,-60,59,58,-61,37,61,-56,55,61,-59,61,37,-34,30,61,-34,58,62,-61,58,61,-63,61,30,-64,63,62,-62,60,62,-65,62,63,-65,64,65,-61,64,66,-66,30,67,-64,67,30,-33,63,68,-65,68,63,-68,66,64,-70,66,69,-71,71,64,-69,69,64,-72,72,70,-70,69,71,-73,70,73,-75,73,70,-73,75,72,-72,73,72,-76,71,68,-76,73,75,-77,77,75,-69,76,75,-78,67,77,-69,76,77,-79,77,67,-80,79,78,-78,32,79,-68,79,32,-32,31,78,-80,78,31,-35,50,48,-36,50,80,-49,52,80,-51,80,49,-49,80,52,-82,54,81,-53,49,80,-83,54,83,-82,83,54,-58,81,84,-81,83,84,-82,82,80,-85,84,83,-86,86,84,-86,87,49,-83,87,82,-85,49,87,-48,87,45,-48,84,86,-89,84,88,-88,89,45,-88,88,89,-88,90,88,-87,89,88,-91,86,91,-91,90,91,-93,45,89,-94,93,46,-46,89,90,-95,94,93,-90,90,92,-96,96,95,-93,97,94,-91,95,97,-91,95,96,-99,98,97,-96,73,96,-75,96,73,-99,97,98,-100,73,99,-99,99,94,-98,99,73,-77,94,99,-101,76,100,-100,100,93,-95,100,76,-79,93,100,-102,78,101,-101,101,46,-94,46,101,-45,78,44,-102,44,78,-35,102,103,-105,102,104,-106,105,104,-107,107,102,-106,102,107,-109,107,109,-109,106,110,-106,107,105,-111,110,106,-112,57,110,-112,110,57,-57,59,110,-57,110,59,-113,110,112,-108,59,113,-113,112,113,-108,113,59,-61,114,109,-108,113,114,-108,114,115,-110,60,116,-114,117,115,-115,114,113,-118,116,117,-114,117,118,-116,116,60,-66,118,117,-120,119,120,-119,116,121,-118,119,117,-122,65,122,-117,122,65,-67,123,120,-120,119,121,-124,120,124,-126,124,120,-124,124,123,-127,126,123,-122,
- 124,126,-128,121,116,-129,121,128,-127,128,116,-123,127,126,-130,129,126,-129,122,129,-129,127,129,-131,129,122,-132,131,130,-130,66,131,-123,131,74,-131,131,66,-71,74,131,-71,132,104,-104,104,132,-134,104,133,-107,132,134,-134,134,132,-136,134,135,-137,137,106,-134,133,134,-138,106,137,-112,137,57,-112,57,137,-84,137,85,-84,85,137,-139,138,137,-135,139,85,-139,139,138,-135,85,139,-87,134,136,-141,134,140,-140,140,136,-142,142,86,-140,141,143,-141,139,140,-144,139,143,-143,144,143,-142,86,142,-92,143,144,-146,145,144,-147,143,145,-148,142,143,-148,146,148,-146,147,145,-149,124,146,-126,146,124,-149,124,149,-149,148,149,-148,149,124,-128,142,147,-151,150,147,-150,127,151,-150,149,151,-151,151,127,-131,142,150,-153,151,152,-151,91,142,-153,91,152,-93,130,153,-152,152,151,-154,153,92,-153,153,130,-75,92,153,-97,153,74,-97,27,154,-29,154,27,-156,29,28,-155,155,156,-155,156,155,-158,154,158,-30,158,154,-157,158,25,-30,157,159,-157,158,156,-160,159,157,-161,103,159,-161,159,103,-103,108,159,-103,159,161,-159,159,108,-162,161,162,-159,108,162,-162,162,25,-159,162,108,-110,109,115,-163,162,163,-26,163,162,-116,23,25,-164,163,24,-24,164,24,-164,164,22,-25,165,164,-164,22,164,-167,165,166,-165,166,26,-23,167,26,-167,168,165,-164,115,168,-164,169,166,-166,169,167,-167,168,169,-166,170,167,-170,168,115,-172,171,115,-119,172,169,-169,172,170,-170,171,172,-169,173,170,-173,118,174,-172,172,171,-175,174,173,-173,174,118,-121,125,173,-175,120,125,-175,175,27,-43,42,43,-176,27,175,-156,176,175,-44,177,155,-176,175,176,-178,155,177,-158,176,43,-42,178,157,-178,177,176,-179,157,178,-161,178,103,-161,103,178,-133,178,135,-133,179,178,-177,135,178,-180,180,179,-177,180,135,-180,41,180,-177,135,180,-137,141,136,-181,180,41,-182,180,181,-142,38,181,-42,40,181,-39,181,40,-183,182,40,-40,181,182,-184,39,184,-183,183,182,-185,184,39,-27,167,184,-27,181,183,-186,185,141,-182,184,186,-184,186,184,-168,185,183,-187,170,186,-168,141,185,-188,141,187,-145,186,188,-186,188,186,-171,188,187,-186,173,188,-171,189,144,-188,187,188,-190,173,189,-189,
- 144,189,-147,125,189,-174,146,189,-126
- }
- Edges: *549 {
- a: 0,1,2,3,4,6,8,10,11,13,14,15,17,18,19,20,21,23,24,26,28,29,31,32,33,35,36,37,40,42,44,46,47,49,50,51,52,55,57,59,61,62,64,65,66,68,71,72,74,80,84,90,91,92,94,95,97,98,99,101,102,104,106,107,108,109,110,111,113,115,116,117,118,120,121,124,125,126,127,128,129,131,133,134,135,139,140,142,143,144,145,146,148,149,151,152,153,156,158,160,161,162,163,166,167,168,169,171,175,176,177,178,181,182,183,185,186,187,189,191,192,196,199,200,202,203,204,205,208,212,213,216,217,220,223,224,225,229,230,232,234,235,237,238,240,241,245,246,247,251,253,254,256,257,258,260,263,264,266,268,270,271,272,275,276,278,281,283,286,287,288,290,293,294,298,299,301,302,303,306,311,312,317,318,321,322,324,327,331,332,333,337,338,339,340,344,345,346,348,353,355,356,357,359,360,362,365,367,369,373,374,376,378,380,381,384,386,389,390,391,394,395,397,398,399,403,404,405,409,410,411,413,414,416,417,421,422,423,426,427,430,433,434,435,438,443,445,446,447,450,455,457,458,459,462,466,468,474,475,476,478,479,481,482,483,485,487,488,489,490,492,493,497,499,500,501,503,506,507,511,512,514,516,517,520,524,525,527,528,531,532,534,535,537,539,541,543,546,547,551,553,554,555,556,558,559,563,564,565,569,570,572,574,576,577,578,581,583,584,587,589,590,592,593,595,599,601,602,605,606,610,611,613,614,615,618,621,622,626,630,632,634,635,637,639,640,643,644,646,647,648,650,652,655,657,661,663,667,668,671,672,674,677,679,682,683,685,688,689,690,692,693,694,698,700,702,704,706,709,710,712,713,715,716,719,720,721,725,726,727,730,732,733,736,740,742,743,746,747,748,751,755,757,758,759,764,766,768,769,773,774,779,781,786,787,790,791,794,795,796,799,800,801,802,806,807,810,811,815,817,818,819,821,824,825,828,829,832,834,835,837,840,845,847,849,850,854,857,858,861,863,864,867,869,871,872,873,876,879,881,882,884,885,888,890,891,894,897,899,901,902,905,906,908,909,912,915,917,918,919,923,924,929,930,932,936,938,940,943,945,947,948,950,952,955,959,960,962,964,967,969,973,975,978,980,983,984,986,987,990,994,998,1000,1001,1003,1005,1008,1012,1013,1016,1018,1019,
- 1020,1021,1025,1028,1029,1033,1034,1035,1038,1039,1043,1046,1047,1051,1052,1054,1056,1057,1061,1062,1065,1068,1070,1072,1074,1078,1080
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Normals: *3258 {
- a: 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,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,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,-0.00787377171218395,0.999969005584717,0,-0.00787377171218395,0.999969005584717,0,-0.00787377171218395,0.999969005584717,0,-0.00787377171218395,0.999969005584717,0,-0.00787377171218395,0.999969005584717,0,-0.00787377171218395,0.999969005584717,0,-0.00787377171218395,0.999969005584717,0,-0.00787377171218395,0.999969005584717,0,-0.00787377171218395,0.999969005584717,0,-0.00787377171218395,0.999969005584717,0,-0.00787377171218395,0.999969005584717,0,-0.00787377171218395,0.999969005584717,0,-0.00787377171218395,0.999969005584717,0,-0.00787377171218395,0.999969005584717,0,-0.00787377171218395,0.999969005584717,0.837846517562866,0.450540095567703,0.308264285326004,0.837846517562866,0.450540095567703,0.308264285326004,0.837846517562866,0.450540095567703,0.308264285326004,0.837846517562866,0.450540095567703,0.308264285326004,0.837846517562866,0.450540095567703,0.308264285326004,0.837846517562866,0.450540095567703,0.308264285326004,-0.837846517562866,0.450540095567703,0.308264285326004,-0.837846517562866,0.450540095567703,0.308264285326004,-0.837846517562866,0.450540095567703,0.308264285326004,-0.837846517562866,0.450540095567703,0.308264285326004,-0.837846517562866,0.450540095567703,0.308264285326004,-0.837846517562866,0.450540095567703,0.308264285326004,0.416535973548889,-0.746621012687683,-0.518705129623413,0.416535973548889,-0.746621012687683,-0.518705129623413,0.416535973548889,-0.746621012687683,-0.518705129623413,
- 0.416535973548889,-0.746621012687683,-0.518705129623413,0.416535973548889,-0.746621012687683,-0.518705129623413,0.416535973548889,-0.746621012687683,-0.518705129623413,-0.416535973548889,-0.746621012687683,-0.518705129623413,-0.416535973548889,-0.746621012687683,-0.518705129623413,-0.416535973548889,-0.746621012687683,-0.518705129623413,-0.416535973548889,-0.746621012687683,-0.518705129623413,-0.416535973548889,-0.746621012687683,-0.518705129623413,-0.416535973548889,-0.746621012687683,-0.518705129623413,0,-0.915431380271912,0.402474135160446,0,-0.915431380271912,0.402474135160446,0,-0.915431380271912,0.402474135160446,0,-0.915431380271912,0.402474135160446,0,-0.915431380271912,0.402474135160446,0,-0.915431380271912,0.402474135160446,0,-0.915431380271912,0.402474135160446,0,-0.915431380271912,0.402474135160446,0,-0.915431380271912,0.402474135160446,0,-0.915431380271912,0.402474135160446,0,-0.915431380271912,0.402474135160446,0,-0.915431380271912,0.402474135160446,0,-0.915431380271912,0.402474135160446,0,-0.915431380271912,0.402474135160446,0,-0.915431380271912,0.402474135160446,0,-0.915431380271912,0.402474135160446,0,-0.915431380271912,0.402474135160446,0,-0.915431380271912,0.402474135160446,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,-0.915431380271912,0.402474135160446,0,-0.915431380271912,0.402474135160446,0,-0.915431380271912,0.402474135160446,0,-0.915431380271912,0.402474135160446,0,-0.915431380271912,0.402474135160446,0,-0.915431380271912,0.402474135160446,0,-0.915431380271912,0.402474135160446,0,-0.915431380271912,0.402474135160446,0,-0.915431380271912,0.402474135160446,
- 0,-0.915431380271912,0.402474135160446,0,-0.915431380271912,0.402474135160446,0,-0.915431380271912,0.402474135160446,0,-0.915431380271912,0.402474135160446,0,-0.915431380271912,0.402474135160446,0,-0.915431380271912,0.402474135160446,0,-0.915431380271912,0.402474135160446,0,-0.915431380271912,0.402474135160446,0,-0.915431380271912,0.402474135160446,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0.244763121008873,-0.963261306285858,-0.110538177192211,0,-0.984862864017487,-0.173335865139961,0,-0.993883728981018,-0.110431522130966,0,-0.984862864017487,-0.173335865139961,0.244763121008873,-0.963261306285858,-0.110538177192211,0.236985757946968,-0.955842554569244,-0.17378956079483,0.236985757946968,-0.955842554569244,-0.17378956079483,0,-0.956290185451508,-0.29241931438446,0,-0.984862864017487,-0.173335865139961,0.953317582607269,-0.299389004707336,-0.0393932871520519,0.236985757946968,-0.955842554569244,-0.17378956079483,0.244763121008873,-0.963261306285858,-0.110538177192211,0,-0.956290185451508,-0.29241931438446,0.236985757946968,-0.955842554569244,-0.17378956079483,0.243184015154839,-0.917823493480682,-0.313785821199417,0.243184015154839,-0.917823493480682,-0.313785821199417,0,-0.926295399665833,-0.376798123121262,0,-0.956290185451508,-0.29241931438446,0.236985757946968,-0.955842554569244,-0.17378956079483,0.953317582607269,-0.299389004707336,-0.0393932871520519,0.947233974933624,-0.315744638442993,-0.0552553124725819,0.236161917448044,-0.873799085617065,-0.425091445446014,0,-0.926295399665833,-0.376798123121262,0.243184015154839,-0.917823493480682,-0.313785821199417,0.236161917448044,-0.873799085617065,-0.425091445446014,
- 0,-0.897554337978363,-0.440903872251511,0,-0.926295399665833,-0.376798123121262,0.948298156261444,-0.300294399261475,-0.102732293307781,0.243184015154839,-0.917823493480682,-0.313785821199417,0.236985757946968,-0.955842554569244,-0.17378956079483,0.948298156261444,-0.300294399261475,-0.102732293307781,0.236161917448044,-0.873799085617065,-0.425091445446014,0.243184015154839,-0.917823493480682,-0.313785821199417,0.236985757946968,-0.955842554569244,-0.17378956079483,0.947233974933624,-0.315744638442993,-0.0552553124725819,0.948298156261444,-0.300294399261475,-0.102732293307781,0.236161917448044,-0.873799085617065,-0.425091445446014,0.948298156261444,-0.300294399261475,-0.102732293307781,0.946968495845795,-0.291981935501099,-0.134153857827187,0.946968495845795,-0.291981935501099,-0.134153857827187,0.948298156261444,-0.300294399261475,-0.102732293307781,0.943741619586945,-0.298851490020752,-0.141561225056648,0.953317582607269,-0.299389004707336,-0.0393932871520519,0.942431092262268,-0.329850852489471,-0.0549751482903957,0.947233974933624,-0.315744638442993,-0.0552553124725819,0.947233974933624,-0.315744638442993,-0.0552553124725819,0.942431092262268,-0.329850852489471,-0.0549751482903957,0.948298156261444,-0.300294399261475,-0.102732293307781,0.942431092262268,-0.329850852489471,-0.0549751482903957,0.953317582607269,-0.299389004707336,-0.0393932871520519,0.934635043144226,-0.353433430194855,-0.0392703823745251,0.967305243015289,-0.251656651496887,-0.0314570814371109,0.942431092262268,-0.329850852489471,-0.0549751482903957,0.934635043144226,-0.353433430194855,-0.0392703823745251,0.948298156261444,-0.300294399261475,-0.102732293307781,0.943712413311005,-0.314570784568787,-0.10223550349474,0.943741619586945,-0.298851490020752,-0.141561225056648,0.948298156261444,-0.300294399261475,-0.102732293307781,0.942431092262268,-0.329850852489471,-0.0549751482903957,0.943712413311005,-0.314570784568787,-0.10223550349474,0.942431092262268,-0.329850852489471,-0.0549751482903957,0.967305243015289,-0.251656651496887,-0.0314570814371109,
- 0.962212145328522,-0.268157482147217,-0.0473219081759453,0.962212145328522,-0.268157482147217,-0.0473219081759453,0.943712413311005,-0.314570784568787,-0.10223550349474,0.942431092262268,-0.329850852489471,-0.0549751482903957,0.943741619586945,-0.298851490020752,-0.141561225056648,0.943712413311005,-0.314570784568787,-0.10223550349474,0.96362179517746,-0.252753257751465,-0.086883932352066,0.943712413311005,-0.314570784568787,-0.10223550349474,0.962212145328522,-0.268157482147217,-0.0473219081759453,0.96362179517746,-0.252753257751465,-0.086883932352066,0.96362179517746,-0.252753257751465,-0.086883932352066,0.963261306285858,-0.244763121008873,-0.110538177192211,0.943741619586945,-0.298851490020752,-0.141561225056648,0.96362179517746,-0.252753257751465,-0.086883932352066,0.99894767999649,0.0393286496400833,0.0235971882939339,0.963261306285858,-0.244763121008873,-0.110538177192211,0.967305243015289,-0.251656651496887,-0.0314570814371109,0.999225914478302,0.0393396019935608,8.73514638256818e-018,0.962212145328522,-0.268157482147217,-0.0473219081759453,0.999225914478302,0.0393396019935608,8.73514638256818e-018,0.967305243015289,-0.251656651496887,-0.0314570814371109,0.998885869979858,0.047191459685564,1.04786090217166e-017,0.962212145328522,-0.268157482147217,-0.0473219081759453,0.998854994773865,0.047189999371767,0.00786499958485365,0.96362179517746,-0.252753257751465,-0.086883932352066,0.998854994773865,0.047189999371767,0.00786499958485365,0.962212145328522,-0.268157482147217,-0.0473219081759453,0.999225914478302,0.0393396019935608,8.73514638256818e-018,0.99894767999649,0.0393286496400833,0.0235971882939339,0.96362179517746,-0.252753257751465,-0.086883932352066,0.999102234840393,0.0393347330391407,0.0157338920980692,0.99894767999649,0.0393286496400833,0.0235971882939339,0.999102234840393,0.0393347330391407,0.0157338920980692,0.0314775295555592,0.897109568119049,0.440685391426086,0.999194979667664,0.0393383838236332,0.00786767713725567,0.96362179517746,-0.252753257751465,-0.086883932352066,0.998854994773865,0.047189999371767,0.00786499958485365,
- 0.999102234840393,0.0393347330391407,0.0157338920980692,0.96362179517746,-0.252753257751465,-0.086883932352066,0.999194979667664,0.0393383838236332,0.00786767713725567,0.031476553529501,0.928558349609375,0.369849503040314,0.0314775295555592,0.897109568119049,0.440685391426086,0.999102234840393,0.0393347330391407,0.0157338920980692,0.999102234840393,0.0393347330391407,0.0157338920980692,0.999194979667664,0.0393383838236332,0.00786767713725567,0.031476553529501,0.928558349609375,0.369849503040314,0.0314775295555592,0.897109568119049,0.440685391426086,0,0.926295399665833,0.376798123121262,0,0.897554337978363,0.440903872251511,0,0.926295399665833,0.376798123121262,0.0314775295555592,0.897109568119049,0.440685391426086,0.031476553529501,0.928558349609375,0.369849503040314,0.0313718244433403,0.948997735977173,0.313718259334564,0.031476553529501,0.928558349609375,0.369849503040314,0.999194979667664,0.0393383838236332,0.00786767713725567,0,0.926295399665833,0.376798123121262,0.031476553529501,0.928558349609375,0.369849503040314,0.0313718244433403,0.948997735977173,0.313718259334564,0.999194979667664,0.0393383838236332,0.00786767713725567,0.998854994773865,0.047189999371767,0.00786499958485365,0.0313718244433403,0.948997735977173,0.313718259334564,0,0.926295399665833,0.376798123121262,0.0313718244433403,0.948997735977173,0.313718259334564,0,0.956290185451508,0.29241931438446,0.0314570814371109,0.967305243015289,0.251656651496887,0.0313718244433403,0.948997735977173,0.313718259334564,0.998854994773865,0.047189999371767,0.00786499958485365,0,0.956290185451508,0.29241931438446,0.0313718244433403,0.948997735977173,0.313718259334564,0.0314570814371109,0.967305243015289,0.251656651496887,0.999225914478302,0.0393396019935608,8.73514638256818e-018,0.0314570814371109,0.967305243015289,0.251656651496887,0.998854994773865,0.047189999371767,0.00786499958485365,0,0.956290185451508,0.29241931438446,0.0314570814371109,0.967305243015289,0.251656651496887,0,0.986179888248444,0.165678218007088,0.0314570814371109,0.967305243015289,0.251656651496887,
- 0.999225914478302,0.0393396019935608,8.73514638256818e-018,0.0392087511718273,0.988060593605042,0.148993268609047,0.0392087511718273,0.988060593605042,0.148993268609047,0,0.986179888248444,0.165678218007088,0.0314570814371109,0.967305243015289,0.251656651496887,0.998885869979858,0.047191459685564,1.04786090217166e-017,0.0392087511718273,0.988060593605042,0.148993268609047,0.999225914478302,0.0393396019935608,8.73514638256818e-018,0.0392087511718273,0.988060593605042,0.148993268609047,0.998885869979858,0.047191459685564,1.04786090217166e-017,0.0315626710653305,0.99422413110733,0.102578677237034,0.0315626710653305,0.99422413110733,0.102578677237034,0,0.986179888248444,0.165678218007088,0.0392087511718273,0.988060593605042,0.148993268609047,0,0.986179888248444,0.165678218007088,0.0315626710653305,0.99422413110733,0.102578677237034,0,0.994719624519348,0.102629795670509,0,-0.984862864017487,-0.173335865139961,-0.244763121008873,-0.963261306285858,-0.110538177192211,0,-0.993883728981018,-0.110431522130966,0,-0.984862864017487,-0.173335865139961,-0.236653715372086,-0.954503297805786,-0.181434512138367,-0.244763121008873,-0.963261306285858,-0.110538177192211,0,-0.956290185451508,-0.29241931438446,-0.236653715372086,-0.954503297805786,-0.181434512138367,0,-0.984862864017487,-0.173335865139961,-0.236653715372086,-0.954503297805786,-0.181434512138367,-0.953317582607269,-0.299389004707336,-0.0393932871520519,-0.244763121008873,-0.963261306285858,-0.110538177192211,-0.236653715372086,-0.954503297805786,-0.181434512138367,0,-0.956290185451508,-0.29241931438446,-0.243184015154839,-0.917823493480682,-0.313785821199417,0,-0.926295399665833,-0.376798123121262,-0.243184015154839,-0.917823493480682,-0.313785821199417,0,-0.956290185451508,-0.29241931438446,-0.953317582607269,-0.299389004707336,-0.0393932871520519,-0.236653715372086,-0.954503297805786,-0.181434512138367,-0.947233974933624,-0.315744638442993,-0.0552553124725819,0,-0.926295399665833,-0.376798123121262,-0.236161917448044,-0.873799085617065,-0.425091445446014,-0.243184015154839,-0.917823493480682,-0.313785821199417,
- -0.236161917448044,-0.873799085617065,-0.425091445446014,0,-0.926295399665833,-0.376798123121262,0,-0.897554337978363,-0.440903872251511,-0.243184015154839,-0.917823493480682,-0.313785821199417,-0.948298156261444,-0.300294399261475,-0.102732293307781,-0.236653715372086,-0.954503297805786,-0.181434512138367,-0.236161917448044,-0.873799085617065,-0.425091445446014,-0.948298156261444,-0.300294399261475,-0.102732293307781,-0.243184015154839,-0.917823493480682,-0.313785821199417,-0.947233974933624,-0.315744638442993,-0.0552553124725819,-0.236653715372086,-0.954503297805786,-0.181434512138367,-0.948298156261444,-0.300294399261475,-0.102732293307781,-0.948298156261444,-0.300294399261475,-0.102732293307781,-0.236161917448044,-0.873799085617065,-0.425091445446014,-0.946968495845795,-0.291981935501099,-0.134153857827187,-0.943741619586945,-0.298851490020752,-0.141561225056648,-0.948298156261444,-0.300294399261475,-0.102732293307781,-0.946968495845795,-0.291981935501099,-0.134153857827187,-0.942431092262268,-0.329850852489471,-0.0549751482903957,-0.953317582607269,-0.299389004707336,-0.0393932871520519,-0.947233974933624,-0.315744638442993,-0.0552553124725819,-0.942431092262268,-0.329850852489471,-0.0549751482903957,-0.947233974933624,-0.315744638442993,-0.0552553124725819,-0.948298156261444,-0.300294399261475,-0.102732293307781,-0.953317582607269,-0.299389004707336,-0.0393932871520519,-0.942431092262268,-0.329850852489471,-0.0549751482903957,-0.934635043144226,-0.353433430194855,-0.0392703823745251,-0.942431092262268,-0.329850852489471,-0.0549751482903957,-0.967305243015289,-0.251656651496887,-0.0314570814371109,-0.934635043144226,-0.353433430194855,-0.0392703823745251,-0.948298156261444,-0.300294399261475,-0.102732293307781,-0.943741619586945,-0.298851490020752,-0.141561225056648,-0.943712413311005,-0.314570784568787,-0.10223550349474,-0.948298156261444,-0.300294399261475,-0.102732293307781,-0.943712413311005,-0.314570784568787,-0.10223550349474,-0.942431092262268,-0.329850852489471,-0.0549751482903957,-0.962212145328522,-0.268157482147217,-0.0473219081759453,
- -0.967305243015289,-0.251656651496887,-0.0314570814371109,-0.942431092262268,-0.329850852489471,-0.0549751482903957,-0.943712413311005,-0.314570784568787,-0.10223550349474,-0.962212145328522,-0.268157482147217,-0.0473219081759453,-0.942431092262268,-0.329850852489471,-0.0549751482903957,-0.96362179517746,-0.252753257751465,-0.086883932352066,-0.943712413311005,-0.314570784568787,-0.10223550349474,-0.943741619586945,-0.298851490020752,-0.141561225056648,-0.962212145328522,-0.268157482147217,-0.0473219081759453,-0.943712413311005,-0.314570784568787,-0.10223550349474,-0.96362179517746,-0.252753257751465,-0.086883932352066,-0.943741619586945,-0.298851490020752,-0.141561225056648,-0.963261306285858,-0.244763121008873,-0.110538177192211,-0.96362179517746,-0.252753257751465,-0.086883932352066,-0.96362179517746,-0.252753257751465,-0.086883932352066,-0.963261306285858,-0.244763121008873,-0.110538177192211,-0.99894767999649,0.0393286496400833,0.0235971882939339,-0.967305243015289,-0.251656651496887,-0.0314570814371109,-0.962212145328522,-0.268157482147217,-0.0473219081759453,-0.999225914478302,0.0393396019935608,8.73514638256818e-018,-0.999225914478302,0.0393396019935608,8.73514638256818e-018,-0.998885869979858,0.047191459685564,1.04786090217166e-017,-0.967305243015289,-0.251656651496887,-0.0314570814371109,-0.962212145328522,-0.268157482147217,-0.0473219081759453,-0.96362179517746,-0.252753257751465,-0.086883932352066,-0.998854994773865,0.047189999371767,0.00786499958485365,-0.998854994773865,0.047189999371767,0.00786499958485365,-0.999225914478302,0.0393396019935608,8.73514638256818e-018,-0.962212145328522,-0.268157482147217,-0.0473219081759453,-0.96362179517746,-0.252753257751465,-0.086883932352066,-0.99894767999649,0.0393286496400833,0.0235971882939339,-0.999102234840393,0.0393347330391407,0.0157338920980692,-0.0314775295555592,0.897109568119049,0.440685391426086,-0.999102234840393,0.0393347330391407,0.0157338920980692,-0.99894767999649,0.0393286496400833,0.0235971882939339,-0.999194979667664,0.0393383838236332,0.00786767713725567,
- -0.998854994773865,0.047189999371767,0.00786499958485365,-0.96362179517746,-0.252753257751465,-0.086883932352066,-0.999102234840393,0.0393347330391407,0.0157338920980692,-0.999194979667664,0.0393383838236332,0.00786767713725567,-0.96362179517746,-0.252753257751465,-0.086883932352066,-0.999102234840393,0.0393347330391407,0.0157338920980692,-0.0314775295555592,0.897109568119049,0.440685391426086,-0.031476553529501,0.928558349609375,0.369849503040314,-0.031476553529501,0.928558349609375,0.369849503040314,-0.999194979667664,0.0393383838236332,0.00786767713725567,-0.999102234840393,0.0393347330391407,0.0157338920980692,0,0.926295399665833,0.376798123121262,-0.0314775295555592,0.897109568119049,0.440685391426086,0,0.897554337978363,0.440903872251511,-0.0314775295555592,0.897109568119049,0.440685391426086,0,0.926295399665833,0.376798123121262,-0.031476553529501,0.928558349609375,0.369849503040314,-0.999194979667664,0.0393383838236332,0.00786767713725567,-0.031476553529501,0.928558349609375,0.369849503040314,-0.0313718244433403,0.948997735977173,0.313718259334564,0,0.926295399665833,0.376798123121262,-0.0313718244433403,0.948997735977173,0.313718259334564,-0.031476553529501,0.928558349609375,0.369849503040314,-0.0313718244433403,0.948997735977173,0.313718259334564,-0.998854994773865,0.047189999371767,0.00786499958485365,-0.999194979667664,0.0393383838236332,0.00786767713725567,-0.0313718244433403,0.948997735977173,0.313718259334564,0,0.926295399665833,0.376798123121262,0,0.956290185451508,0.29241931438446,-0.998854994773865,0.047189999371767,0.00786499958485365,-0.0313718244433403,0.948997735977173,0.313718259334564,-0.0314570814371109,0.967305243015289,0.251656651496887,0,0.956290185451508,0.29241931438446,-0.0314570814371109,0.967305243015289,0.251656651496887,-0.0313718244433403,0.948997735977173,0.313718259334564,-0.0314570814371109,0.967305243015289,0.251656651496887,-0.999225914478302,0.0393396019935608,8.73514638256818e-018,-0.998854994773865,0.047189999371767,0.00786499958485365,-0.0314570814371109,0.967305243015289,0.251656651496887,
- 0,0.956290185451508,0.29241931438446,0,0.986179888248444,0.165678218007088,-0.999225914478302,0.0393396019935608,8.73514638256818e-018,-0.0314570814371109,0.967305243015289,0.251656651496887,-0.0392087511718273,0.988060593605042,0.148993268609047,0,0.986179888248444,0.165678218007088,-0.0392087511718273,0.988060593605042,0.148993268609047,-0.0314570814371109,0.967305243015289,0.251656651496887,-0.0392087511718273,0.988060593605042,0.148993268609047,-0.998885869979858,0.047191459685564,1.04786090217166e-017,-0.999225914478302,0.0393396019935608,8.73514638256818e-018,-0.998885869979858,0.047191459685564,1.04786090217166e-017,-0.0392087511718273,0.988060593605042,0.148993268609047,-0.0315626710653305,0.99422413110733,0.102578677237034,0,0.986179888248444,0.165678218007088,-0.0315626710653305,0.99422413110733,0.102578677237034,-0.0392087511718273,0.988060593605042,0.148993268609047,-0.0315626710653305,0.99422413110733,0.102578677237034,0,0.986179888248444,0.165678218007088,0,0.994719624519348,0.102629795670509,0.23683063685894,-0.671020090579987,-0.702597558498383,0,-0.691222667694092,-0.722641825675964,0,-0.737805485725403,-0.675013482570648,0.23683063685894,-0.671020090579987,-0.702597558498383,0,-0.737805485725403,-0.675013482570648,0.244542166590691,-0.749403417110443,-0.615299642086029,0.244542166590691,-0.749403417110443,-0.615299642086029,0,-0.737805485725403,-0.675013482570648,0,-0.795250952243805,-0.606280446052551,0.947588264942169,-0.244793638586998,-0.20531077682972,0.23683063685894,-0.671020090579987,-0.702597558498383,0.244542166590691,-0.749403417110443,-0.615299642086029,0.23683063685894,-0.671020090579987,-0.702597558498383,0.947588264942169,-0.244793638586998,-0.20531077682972,0.947943031787872,-0.229086220264435,-0.221186697483063,0.947588264942169,-0.244793638586998,-0.20531077682972,0.942809045314789,-0.235702261328697,-0.235702261328697,0.947943031787872,-0.229086220264435,-0.221186697483063,0,-0.795250952243805,-0.606280446052551,0.242862895131111,-0.830434441566467,-0.501394331455231,0.244542166590691,-0.749403417110443,-0.615299642086029,
- 0.947588264942169,-0.244793638586998,-0.20531077682972,0.244542166590691,-0.749403417110443,-0.615299642086029,0.242862895131111,-0.830434441566467,-0.501394331455231,0.242862895131111,-0.830434441566467,-0.501394331455231,0,-0.795250952243805,-0.606280446052551,0,-0.855408608913422,-0.517953813076019,0,-0.897554337978363,-0.440903872251511,0.242862895131111,-0.830434441566467,-0.501394331455231,0,-0.855408608913422,-0.517953813076019,0.242862895131111,-0.830434441566467,-0.501394331455231,0,-0.897554337978363,-0.440903872251511,0.236161917448044,-0.873799085617065,-0.425091445446014,0.946968495845795,-0.291981935501099,-0.134153857827187,0.242862895131111,-0.830434441566467,-0.501394331455231,0.236161917448044,-0.873799085617065,-0.425091445446014,0.242862895131111,-0.830434441566467,-0.501394331455231,0.946968495845795,-0.291981935501099,-0.134153857827187,0.947943031787872,-0.276483356952667,-0.157990500330925,0.242862895131111,-0.830434441566467,-0.501394331455231,0.947943031787872,-0.276483356952667,-0.157990500330925,0.947588264942169,-0.244793638586998,-0.20531077682972,0.946968495845795,-0.291981935501099,-0.134153857827187,0.942779958248138,-0.274977475404739,-0.188555985689163,0.947943031787872,-0.276483356952667,-0.157990500330925,0.947943031787872,-0.276483356952667,-0.157990500330925,0.942779958248138,-0.274977475404739,-0.188555985689163,0.947588264942169,-0.244793638586998,-0.20531077682972,0.942779958248138,-0.274977475404739,-0.188555985689163,0.946968495845795,-0.291981935501099,-0.134153857827187,0.944764852523804,-0.299175530672073,-0.133841678500175,0.942576348781586,-0.251353681087494,-0.219934478402138,0.942809045314789,-0.235702261328697,-0.235702261328697,0.947588264942169,-0.244793638586998,-0.20531077682972,0.942779958248138,-0.274977475404739,-0.188555985689163,0.942576348781586,-0.251353681087494,-0.219934478402138,0.947588264942169,-0.244793638586998,-0.20531077682972,0.942576348781586,-0.251353681087494,-0.219934478402138,0.969466149806976,-0.173400446772575,-0.173400446772575,0.942809045314789,-0.235702261328697,-0.235702261328697,
- 0.944764852523804,-0.299175530672073,-0.133841678500175,0.961913108825684,-0.228651478886604,-0.149806141853333,0.942779958248138,-0.274977475404739,-0.188555985689163,0.964705765247345,-0.197685599327087,-0.173963338136673,0.969466149806976,-0.173400446772575,-0.173400446772575,0.942576348781586,-0.251353681087494,-0.219934478402138,0.942576348781586,-0.251353681087494,-0.219934478402138,0.942779958248138,-0.274977475404739,-0.188555985689163,0.964705765247345,-0.197685599327087,-0.173963338136673,0.961913108825684,-0.228651478886604,-0.149806141853333,0.964705765247345,-0.197685599327087,-0.173963338136673,0.942779958248138,-0.274977475404739,-0.188555985689163,0.964705765247345,-0.197685599327087,-0.173963338136673,0.99894767999649,0.0235971882939339,0.0393286496400833,0.969466149806976,-0.173400446772575,-0.173400446772575,0.961913108825684,-0.228651478886604,-0.149806141853333,0.944764852523804,-0.299175530672073,-0.133841678500175,0.963261306285858,-0.244763121008873,-0.110538177192211,0.99894767999649,0.0235971882939339,0.0393286496400833,0.964705765247345,-0.197685599327087,-0.173963338136673,0.999009490013123,0.0314648635685444,0.0314648635685444,0.999009490013123,0.0314648635685444,0.0314648635685444,0.0314037129282951,0.690881729125977,0.722285449504852,0.99894767999649,0.0235971882939339,0.0393286496400833,0.961913108825684,-0.228651478886604,-0.149806141853333,0.99894767999649,0.0393286496400833,0.0235971882939339,0.964705765247345,-0.197685599327087,-0.173963338136673,0.999009490013123,0.0314648635685444,0.0314648635685444,0.964705765247345,-0.197685599327087,-0.173963338136673,0.99894767999649,0.0393286496400833,0.0235971882939339,0.963261306285858,-0.244763121008873,-0.110538177192211,0.999102234840393,0.0393347330391407,0.0157338920980692,0.961913108825684,-0.228651478886604,-0.149806141853333,0.999102234840393,0.0393347330391407,0.0157338920980692,0.963261306285858,-0.244763121008873,-0.110538177192211,0.99894767999649,0.0393286496400833,0.0235971882939339,0.0315469577908516,0.741353511810303,0.670372843742371,
- 0.0314037129282951,0.690881729125977,0.722285449504852,0.999009490013123,0.0314648635685444,0.0314648635685444,0.999009490013123,0.0314648635685444,0.0314648635685444,0.99894767999649,0.0393286496400833,0.0235971882939339,0.0315469577908516,0.741353511810303,0.670372843742371,0.0314037129282951,0.690881729125977,0.722285449504852,0,0.737805485725403,0.675013482570648,0,0.691222667694092,0.722641825675964,0,0.737805485725403,0.675013482570648,0.0314037129282951,0.690881729125977,0.722285449504852,0.0315469577908516,0.741353511810303,0.670372843742371,0,0.737805485725403,0.675013482570648,0.0315469577908516,0.741353511810303,0.670372843742371,0.0315656140446663,0.781248986721039,0.623420894145966,0.0315656140446663,0.781248986721039,0.623420894145966,0.0315469577908516,0.741353511810303,0.670372843742371,0.99894767999649,0.0393286496400833,0.0235971882939339,0,0.737805485725403,0.675013482570648,0.0315656140446663,0.781248986721039,0.623420894145966,0,0.795250952243805,0.606280446052551,0.99894767999649,0.0393286496400833,0.0235971882939339,0.961913108825684,-0.228651478886604,-0.149806141853333,0.999102234840393,0.0393347330391407,0.0157338920980692,0.99894767999649,0.0393286496400833,0.0235971882939339,0.999102234840393,0.0393347330391407,0.0157338920980692,0.0315656140446663,0.781248986721039,0.623420894145966,0.999102234840393,0.0393347330391407,0.0157338920980692,0.961913108825684,-0.228651478886604,-0.149806141853333,0.999102234840393,0.0393347330391407,0.0157338920980692,0,0.795250952243805,0.606280446052551,0.0315656140446663,0.781248986721039,0.623420894145966,0.0314648672938347,0.818086445331573,0.574233829975128,0.0314648672938347,0.818086445331573,0.574233829975128,0.0315656140446663,0.781248986721039,0.623420894145966,0.999102234840393,0.0393347330391407,0.0157338920980692,0.999102234840393,0.0393347330391407,0.0157338920980692,0.0314648672938347,0.818086445331573,0.574233829975128,0.999102234840393,0.0393347330391407,0.0157338920980692,0,0.795250952243805,0.606280446052551,0.0314648672938347,0.818086445331573,0.574233829975128,
- 0,0.858880341053009,0.512176334857941,0.0314648672938347,0.818086445331573,0.574233829975128,0.999102234840393,0.0393347330391407,0.0157338920980692,0.031539112329483,0.867325603961945,0.496740996837616,0.031539112329483,0.867325603961945,0.496740996837616,0,0.858880341053009,0.512176334857941,0.0314648672938347,0.818086445331573,0.574233829975128,0.99894767999649,0.0393286496400833,0.0235971882939339,0.031539112329483,0.867325603961945,0.496740996837616,0.999102234840393,0.0393347330391407,0.0157338920980692,0.031539112329483,0.867325603961945,0.496740996837616,0,0.897554337978363,0.440903872251511,0,0.858880341053009,0.512176334857941,0.031539112329483,0.867325603961945,0.496740996837616,0.99894767999649,0.0393286496400833,0.0235971882939339,0.0314775295555592,0.897109568119049,0.440685391426086,0,0.897554337978363,0.440903872251511,0.031539112329483,0.867325603961945,0.496740996837616,0.0314775295555592,0.897109568119049,0.440685391426086,-0.23683063685894,-0.671020090579987,-0.702597558498383,0,-0.737805485725403,-0.675013482570648,0,-0.691222667694092,-0.722641825675964,0,-0.737805485725403,-0.675013482570648,-0.23683063685894,-0.671020090579987,-0.702597558498383,-0.244542166590691,-0.749403417110443,-0.615299642086029,0,-0.737805485725403,-0.675013482570648,-0.244542166590691,-0.749403417110443,-0.615299642086029,0,-0.795250952243805,-0.606280446052551,-0.23683063685894,-0.671020090579987,-0.702597558498383,-0.947588264942169,-0.244793638586998,-0.20531077682972,-0.244542166590691,-0.749403417110443,-0.615299642086029,-0.947588264942169,-0.244793638586998,-0.20531077682972,-0.23683063685894,-0.671020090579987,-0.702597558498383,-0.947943031787872,-0.229086220264435,-0.221186697483063,-0.947588264942169,-0.244793638586998,-0.20531077682972,-0.947943031787872,-0.229086220264435,-0.221186697483063,-0.942809045314789,-0.235702261328697,-0.235702261328697,-0.242862895131111,-0.830434441566467,-0.501394331455231,0,-0.795250952243805,-0.606280446052551,-0.244542166590691,-0.749403417110443,-0.615299642086029,-0.244542166590691,-0.749403417110443,-0.615299642086029,
- -0.947588264942169,-0.244793638586998,-0.20531077682972,-0.242862895131111,-0.830434441566467,-0.501394331455231,0,-0.795250952243805,-0.606280446052551,-0.242862895131111,-0.830434441566467,-0.501394331455231,0,-0.855408608913422,-0.517953813076019,-0.242862895131111,-0.830434441566467,-0.501394331455231,0,-0.897554337978363,-0.440903872251511,0,-0.855408608913422,-0.517953813076019,0,-0.897554337978363,-0.440903872251511,-0.242862895131111,-0.830434441566467,-0.501394331455231,-0.236161917448044,-0.873799085617065,-0.425091445446014,-0.242862895131111,-0.830434441566467,-0.501394331455231,-0.946968495845795,-0.291981935501099,-0.134153857827187,-0.236161917448044,-0.873799085617065,-0.425091445446014,-0.946968495845795,-0.291981935501099,-0.134153857827187,-0.242862895131111,-0.830434441566467,-0.501394331455231,-0.947943031787872,-0.276483356952667,-0.157990500330925,-0.947943031787872,-0.276483356952667,-0.157990500330925,-0.242862895131111,-0.830434441566467,-0.501394331455231,-0.947588264942169,-0.244793638586998,-0.20531077682972,-0.942779958248138,-0.274977475404739,-0.188555985689163,-0.946968495845795,-0.291981935501099,-0.134153857827187,-0.947943031787872,-0.276483356952667,-0.157990500330925,-0.942779958248138,-0.274977475404739,-0.188555985689163,-0.947943031787872,-0.276483356952667,-0.157990500330925,-0.947588264942169,-0.244793638586998,-0.20531077682972,-0.946968495845795,-0.291981935501099,-0.134153857827187,-0.942779958248138,-0.274977475404739,-0.188555985689163,-0.944764852523804,-0.299175530672073,-0.133841678500175,-0.947588264942169,-0.244793638586998,-0.20531077682972,-0.942809045314789,-0.235702261328697,-0.235702261328697,-0.942576348781586,-0.251353681087494,-0.219934478402138,-0.947588264942169,-0.244793638586998,-0.20531077682972,-0.942576348781586,-0.251353681087494,-0.219934478402138,-0.942779958248138,-0.274977475404739,-0.188555985689163,-0.942576348781586,-0.251353681087494,-0.219934478402138,-0.942809045314789,-0.235702261328697,-0.235702261328697,-0.969466149806976,-0.173400446772575,-0.173400446772575,
- -0.961913108825684,-0.228651478886604,-0.149806141853333,-0.944764852523804,-0.299175530672073,-0.133841678500175,-0.942779958248138,-0.274977475404739,-0.188555985689163,-0.969466149806976,-0.173400446772575,-0.173400446772575,-0.964705765247345,-0.197685599327087,-0.173963338136673,-0.942576348781586,-0.251353681087494,-0.219934478402138,-0.942779958248138,-0.274977475404739,-0.188555985689163,-0.942576348781586,-0.251353681087494,-0.219934478402138,-0.964705765247345,-0.197685599327087,-0.173963338136673,-0.942779958248138,-0.274977475404739,-0.188555985689163,-0.964705765247345,-0.197685599327087,-0.173963338136673,-0.961913108825684,-0.228651478886604,-0.149806141853333,-0.99894767999649,0.0235971882939339,0.0393286496400833,-0.964705765247345,-0.197685599327087,-0.173963338136673,-0.969466149806976,-0.173400446772575,-0.173400446772575,-0.944764852523804,-0.299175530672073,-0.133841678500175,-0.961913108825684,-0.228651478886604,-0.149806141853333,-0.963261306285858,-0.244763121008873,-0.110538177192211,-0.964705765247345,-0.197685599327087,-0.173963338136673,-0.99894767999649,0.0235971882939339,0.0393286496400833,-0.999009490013123,0.0314648635685444,0.0314648635685444,-0.999009490013123,0.0314648635685444,0.0314648635685444,-0.99894767999649,0.0235971882939339,0.0393286496400833,-0.0314037129282951,0.690881729125977,0.722285449504852,-0.964705765247345,-0.197685599327087,-0.173963338136673,-0.999009490013123,0.0314648635685444,0.0314648635685444,-0.99894767999649,0.0393286496400833,0.0235971882939339,-0.961913108825684,-0.228651478886604,-0.149806141853333,-0.964705765247345,-0.197685599327087,-0.173963338136673,-0.99894767999649,0.0393286496400833,0.0235971882939339,-0.0314037129282951,0.690881729125977,0.722285449504852,-0.0315469577908516,0.741353511810303,0.670372843742371,-0.999009490013123,0.0314648635685444,0.0314648635685444,-0.99894767999649,0.0393286496400833,0.0235971882939339,-0.999009490013123,0.0314648635685444,0.0314648635685444,-0.0315469577908516,0.741353511810303,0.670372843742371,0,0.737805485725403,0.675013482570648,
- -0.0314037129282951,0.690881729125977,0.722285449504852,0,0.691222667694092,0.722641825675964,-0.0314037129282951,0.690881729125977,0.722285449504852,0,0.737805485725403,0.675013482570648,-0.0315469577908516,0.741353511810303,0.670372843742371,0,0.737805485725403,0.675013482570648,-0.0315656140446663,0.781248986721039,0.623420894145966,-0.0315469577908516,0.741353511810303,0.670372843742371,-0.0315469577908516,0.741353511810303,0.670372843742371,-0.0315656140446663,0.781248986721039,0.623420894145966,-0.99894767999649,0.0393286496400833,0.0235971882939339,-0.0315656140446663,0.781248986721039,0.623420894145966,0,0.737805485725403,0.675013482570648,0,0.795250952243805,0.606280446052551,-0.961913108825684,-0.228651478886604,-0.149806141853333,-0.99894767999649,0.0393286496400833,0.0235971882939339,-0.999102234840393,0.0393347330391407,0.0157338920980692,-0.999102234840393,0.0393347330391407,0.0157338920980692,-0.99894767999649,0.0393286496400833,0.0235971882939339,-0.0315656140446663,0.781248986721039,0.623420894145966,0,0.795250952243805,0.606280446052551,-0.0314648672938347,0.818086445331573,0.574233829975128,-0.0315656140446663,0.781248986721039,0.623420894145966,-0.0315656140446663,0.781248986721039,0.623420894145966,-0.0314648672938347,0.818086445331573,0.574233829975128,-0.999102234840393,0.0393347330391407,0.0157338920980692,-0.0314648672938347,0.818086445331573,0.574233829975128,0,0.795250952243805,0.606280446052551,0,0.858880341053009,0.512176334857941,-0.961913108825684,-0.228651478886604,-0.149806141853333,-0.999102234840393,0.0393347330391407,0.0157338920980692,-0.999102234840393,0.0393347330391407,0.0157338920980692,-0.0314648672938347,0.818086445331573,0.574233829975128,-0.999102234840393,0.0393347330391407,0.0157338920980692,-0.999102234840393,0.0393347330391407,0.0157338920980692,-0.963261306285858,-0.244763121008873,-0.110538177192211,-0.961913108825684,-0.228651478886604,-0.149806141853333,-0.999102234840393,0.0393347330391407,0.0157338920980692,-0.963261306285858,-0.244763121008873,-0.110538177192211,
- -0.999102234840393,0.0393347330391407,0.0157338920980692,-0.99894767999649,0.0393286496400833,0.0235971882939339,0,0.858880341053009,0.512176334857941,-0.031539112329483,0.867325603961945,0.496740996837616,-0.0314648672938347,0.818086445331573,0.574233829975128,-0.999102234840393,0.0393347330391407,0.0157338920980692,-0.0314648672938347,0.818086445331573,0.574233829975128,-0.031539112329483,0.867325603961945,0.496740996837616,-0.031539112329483,0.867325603961945,0.496740996837616,-0.99894767999649,0.0393286496400833,0.0235971882939339,-0.999102234840393,0.0393347330391407,0.0157338920980692,-0.031539112329483,0.867325603961945,0.496740996837616,0,0.858880341053009,0.512176334857941,0,0.897554337978363,0.440903872251511,-0.99894767999649,0.0393286496400833,0.0235971882939339,-0.031539112329483,0.867325603961945,0.496740996837616,-0.0314775295555592,0.897109568119049,0.440685391426086,-0.031539112329483,0.867325603961945,0.496740996837616,0,0.897554337978363,0.440903872251511,-0.0314775295555592,0.897109568119049,0.440685391426086,0,-0.418557375669479,-0.908190488815308,0.23616923391819,-0.440849214792252,-0.865953862667084,0.236838012933731,-0.402624607086182,-0.8841952085495,0.23616923391819,-0.440849214792252,-0.865953862667084,0,-0.418557375669479,-0.908190488815308,0,-0.456636339426041,-0.889653563499451,0.942518174648285,-0.133523404598236,-0.306318402290344,0.236838012933731,-0.402624607086182,-0.8841952085495,0.23616923391819,-0.440849214792252,-0.865953862667084,0,-0.456636339426041,-0.889653563499451,0.236066848039627,-0.511478126049042,-0.826233983039856,0.23616923391819,-0.440849214792252,-0.865953862667084,0.236066848039627,-0.511478126049042,-0.826233983039856,0,-0.456636339426041,-0.889653563499451,0,-0.5363649725914,-0.8439861536026,0.23616923391819,-0.440849214792252,-0.865953862667084,0.947499692440033,-0.173708274960518,-0.268458217382431,0.942518174648285,-0.133523404598236,-0.306318402290344,0.947499692440033,-0.173708274960518,-0.268458217382431,0.23616923391819,-0.440849214792252,-0.865953862667084,
- 0.236066848039627,-0.511478126049042,-0.826233983039856,0.947499692440033,-0.173708274960518,-0.268458217382431,0.942518174648285,-0.133523404598236,-0.306318402290344,0.942518174648285,-0.133523404598236,-0.306318402290344,0,-0.5363649725914,-0.8439861536026,0.244268715381622,-0.606731951236725,-0.756445050239563,0.236066848039627,-0.511478126049042,-0.826233983039856,0.947499692440033,-0.173708274960518,-0.268458217382431,0.236066848039627,-0.511478126049042,-0.826233983039856,0.244268715381622,-0.606731951236725,-0.756445050239563,0.244268715381622,-0.606731951236725,-0.756445050239563,0,-0.5363649725914,-0.8439861536026,0,-0.623731732368469,-0.781638503074646,0,-0.691222667694092,-0.722641825675964,0.244268715381622,-0.606731951236725,-0.756445050239563,0,-0.623731732368469,-0.781638503074646,0.244268715381622,-0.606731951236725,-0.756445050239563,0,-0.691222667694092,-0.722641825675964,0.23683063685894,-0.671020090579987,-0.702597558498383,0.947943031787872,-0.229086220264435,-0.221186697483063,0.244268715381622,-0.606731951236725,-0.756445050239563,0.23683063685894,-0.671020090579987,-0.702597558498383,0.244268715381622,-0.606731951236725,-0.756445050239563,0.947588264942169,-0.20531077682972,-0.244793638586998,0.947499692440033,-0.173708274960518,-0.268458217382431,0.244268715381622,-0.606731951236725,-0.756445050239563,0.947943031787872,-0.229086220264435,-0.221186697483063,0.947588264942169,-0.20531077682972,-0.244793638586998,0.947588264942169,-0.20531077682972,-0.244793638586998,0.942779958248138,-0.188555985689163,-0.274977475404739,0.947499692440033,-0.173708274960518,-0.268458217382431,0.947943031787872,-0.229086220264435,-0.221186697483063,0.942779958248138,-0.188555985689163,-0.274977475404739,0.947588264942169,-0.20531077682972,-0.244793638586998,0.942779958248138,-0.188555985689163,-0.274977475404739,0.942518174648285,-0.133523404598236,-0.306318402290344,0.947499692440033,-0.173708274960518,-0.268458217382431,0.942779958248138,-0.188555985689163,-0.274977475404739,0.947943031787872,-0.229086220264435,-0.221186697483063,
- 0.942809045314789,-0.235702261328697,-0.235702261328697,0.942809045314789,-0.235702261328697,-0.235702261328697,0.961942911148071,-0.189234673976898,-0.197119444608688,0.942779958248138,-0.188555985689163,-0.274977475404739,0.942779958248138,-0.188555985689163,-0.274977475404739,0.964073002338409,-0.134338036179543,-0.229164883494377,0.942518174648285,-0.133523404598236,-0.306318402290344,0.964073002338409,-0.134338036179543,-0.229164883494377,0.942779958248138,-0.188555985689163,-0.274977475404739,0.961942911148071,-0.189234673976898,-0.197119444608688,0.963261306285858,-0.110538177192211,-0.244763121008873,0.942518174648285,-0.133523404598236,-0.306318402290344,0.964073002338409,-0.134338036179543,-0.229164883494377,0.964073002338409,-0.134338036179543,-0.229164883494377,0.99894767999649,0.0235971882939339,0.0393286496400833,0.963261306285858,-0.110538177192211,-0.244763121008873,0.999225914478302,0.0236037615686655,0.0314716808497906,0.99894767999649,0.0235971882939339,0.0393286496400833,0.964073002338409,-0.134338036179543,-0.229164883494377,0.999225914478302,0.0236037615686655,0.0314716808497906,0.0315734818577766,0.418348640203476,0.907737612724304,0.99894767999649,0.0235971882939339,0.0393286496400833,0.99894767999649,0.0235971882939339,0.0393286496400833,0.999225914478302,0.0236037615686655,0.0314716808497906,0.964073002338409,-0.134338036179543,-0.229164883494377,0.0315734818577766,0.418348640203476,0.907737612724304,0.999225914478302,0.0236037615686655,0.0314716808497906,0.031476553529501,0.456410020589828,0.889212667942047,0.99894767999649,0.0235971882939339,0.0393286496400833,0.031476553529501,0.456410020589828,0.889212667942047,0.999225914478302,0.0236037615686655,0.0314716808497906,0.031476553529501,0.456410020589828,0.889212667942047,0,0.418557375669479,0.908190488815308,0.0315734818577766,0.418348640203476,0.907737612724304,0,0.462834060192108,0.886444926261902,0,0.418557375669479,0.908190488815308,0.031476553529501,0.456410020589828,0.889212667942047,0.999009490013123,0.0314648635685444,0.0314648635685444,
- 0.99894767999649,0.0235971882939339,0.0393286496400833,0.964073002338409,-0.134338036179543,-0.229164883494377,0.961942911148071,-0.189234673976898,-0.197119444608688,0.999009490013123,0.0314648635685444,0.0314648635685444,0.964073002338409,-0.134338036179543,-0.229164883494377,0.0315028987824917,0.511922121047974,0.858454048633575,0.031476553529501,0.456410020589828,0.889212667942047,0.99894767999649,0.0235971882939339,0.0393286496400833,0.0315028987824917,0.511922121047974,0.858454048633575,0,0.462834060192108,0.886444926261902,0.031476553529501,0.456410020589828,0.889212667942047,0.999009490013123,0.0314648635685444,0.0314648635685444,0.0315028987824917,0.511922121047974,0.858454048633575,0.99894767999649,0.0235971882939339,0.0393286496400833,0,0.5363649725914,0.8439861536026,0,0.462834060192108,0.886444926261902,0.0315028987824917,0.511922121047974,0.858454048633575,0.999009490013123,0.0314648635685444,0.0314648635685444,0.961942911148071,-0.189234673976898,-0.197119444608688,0.999009490013123,0.0314648635685444,0.0314648635685444,0.999009490013123,0.0314648635685444,0.0314648635685444,0.961942911148071,-0.189234673976898,-0.197119444608688,0.99894767999649,0.0235971882939339,0.0393286496400833,0.0316069796681404,0.568925559520721,0.821781396865845,0.0315028987824917,0.511922121047974,0.858454048633575,0.999009490013123,0.0314648635685444,0.0314648635685444,0.0316069796681404,0.568925559520721,0.821781396865845,0,0.5363649725914,0.8439861536026,0.0315028987824917,0.511922121047974,0.858454048633575,0.999009490013123,0.0314648635685444,0.0314648635685444,0.0316069796681404,0.568925559520721,0.821781396865845,0.999009490013123,0.0314648635685444,0.0314648635685444,0,0.623731732368469,0.781638503074646,0,0.5363649725914,0.8439861536026,0.0316069796681404,0.568925559520721,0.821781396865845,0.99894767999649,0.0235971882939339,0.0393286496400833,0.031476553529501,0.645269334316254,0.763306438922882,0.999009490013123,0.0314648635685444,0.0314648635685444,0.0316069796681404,0.568925559520721,0.821781396865845,0.999009490013123,0.0314648635685444,0.0314648635685444,
- 0.031476553529501,0.645269334316254,0.763306438922882,0.031476553529501,0.645269334316254,0.763306438922882,0,0.623731732368469,0.781638503074646,0.0316069796681404,0.568925559520721,0.821781396865845,0.031476553529501,0.645269334316254,0.763306438922882,0.99894767999649,0.0235971882939339,0.0393286496400833,0.0314037129282951,0.690881729125977,0.722285449504852,0,0.691222667694092,0.722641825675964,0,0.623731732368469,0.781638503074646,0.031476553529501,0.645269334316254,0.763306438922882,0.0314037129282951,0.690881729125977,0.722285449504852,0,0.691222667694092,0.722641825675964,0.031476553529501,0.645269334316254,0.763306438922882,-0.23616923391819,-0.440849214792252,-0.865953862667084,0,-0.418557375669479,-0.908190488815308,-0.236838012933731,-0.402624607086182,-0.8841952085495,-0.236838012933731,-0.402624607086182,-0.8841952085495,-0.942518174648285,-0.133523404598236,-0.306318402290344,-0.23616923391819,-0.440849214792252,-0.865953862667084,0,-0.418557375669479,-0.908190488815308,-0.23616923391819,-0.440849214792252,-0.865953862667084,0,-0.456636339426041,-0.889653563499451,-0.947499692440033,-0.173708274960518,-0.268458217382431,-0.23616923391819,-0.440849214792252,-0.865953862667084,-0.942518174648285,-0.133523404598236,-0.306318402290344,-0.236066848039627,-0.511478126049042,-0.826233983039856,0,-0.456636339426041,-0.889653563499451,-0.23616923391819,-0.440849214792252,-0.865953862667084,-0.23616923391819,-0.440849214792252,-0.865953862667084,-0.947499692440033,-0.173708274960518,-0.268458217382431,-0.236066848039627,-0.511478126049042,-0.826233983039856,0,-0.456636339426041,-0.889653563499451,-0.236066848039627,-0.511478126049042,-0.826233983039856,0,-0.5363649725914,-0.8439861536026,-0.947499692440033,-0.173708274960518,-0.268458217382431,-0.942518174648285,-0.133523404598236,-0.306318402290344,-0.942518174648285,-0.133523404598236,-0.306318402290344,-0.244268715381622,-0.606731951236725,-0.756445050239563,0,-0.5363649725914,-0.8439861536026,-0.236066848039627,-0.511478126049042,-0.826233983039856,-0.236066848039627,-0.511478126049042,-0.826233983039856,
- -0.947499692440033,-0.173708274960518,-0.268458217382431,-0.244268715381622,-0.606731951236725,-0.756445050239563,0,-0.5363649725914,-0.8439861536026,-0.244268715381622,-0.606731951236725,-0.756445050239563,0,-0.623731732368469,-0.781638503074646,-0.244268715381622,-0.606731951236725,-0.756445050239563,0,-0.691222667694092,-0.722641825675964,0,-0.623731732368469,-0.781638503074646,0,-0.691222667694092,-0.722641825675964,-0.244268715381622,-0.606731951236725,-0.756445050239563,-0.23683063685894,-0.671020090579987,-0.702597558498383,-0.244268715381622,-0.606731951236725,-0.756445050239563,-0.947943031787872,-0.229086220264435,-0.221186697483063,-0.23683063685894,-0.671020090579987,-0.702597558498383,-0.947588264942169,-0.20531077682972,-0.244793638586998,-0.244268715381622,-0.606731951236725,-0.756445050239563,-0.947499692440033,-0.173708274960518,-0.268458217382431,-0.947943031787872,-0.229086220264435,-0.221186697483063,-0.244268715381622,-0.606731951236725,-0.756445050239563,-0.947588264942169,-0.20531077682972,-0.244793638586998,-0.942779958248138,-0.188555985689163,-0.274977475404739,-0.947588264942169,-0.20531077682972,-0.244793638586998,-0.947499692440033,-0.173708274960518,-0.268458217382431,-0.942779958248138,-0.188555985689163,-0.274977475404739,-0.947943031787872,-0.229086220264435,-0.221186697483063,-0.947588264942169,-0.20531077682972,-0.244793638586998,-0.942518174648285,-0.133523404598236,-0.306318402290344,-0.942779958248138,-0.188555985689163,-0.274977475404739,-0.947499692440033,-0.173708274960518,-0.268458217382431,-0.947943031787872,-0.229086220264435,-0.221186697483063,-0.942779958248138,-0.188555985689163,-0.274977475404739,-0.942809045314789,-0.235702261328697,-0.235702261328697,-0.961942911148071,-0.189234673976898,-0.197119444608688,-0.942809045314789,-0.235702261328697,-0.235702261328697,-0.942779958248138,-0.188555985689163,-0.274977475404739,-0.942779958248138,-0.188555985689163,-0.274977475404739,-0.942518174648285,-0.133523404598236,-0.306318402290344,-0.964073002338409,-0.134338036179543,-0.229164883494377,
- -0.942779958248138,-0.188555985689163,-0.274977475404739,-0.964073002338409,-0.134338036179543,-0.229164883494377,-0.961942911148071,-0.189234673976898,-0.197119444608688,-0.963261306285858,-0.110538177192211,-0.244763121008873,-0.964073002338409,-0.134338036179543,-0.229164883494377,-0.942518174648285,-0.133523404598236,-0.306318402290344,-0.99894767999649,0.0235971882939339,0.0393286496400833,-0.964073002338409,-0.134338036179543,-0.229164883494377,-0.963261306285858,-0.110538177192211,-0.244763121008873,-0.964073002338409,-0.134338036179543,-0.229164883494377,-0.99894767999649,0.0235971882939339,0.0393286496400833,-0.999225914478302,0.0236037615686655,0.0314716808497906,-0.999225914478302,0.0236037615686655,0.0314716808497906,-0.99894767999649,0.0235971882939339,0.0393286496400833,-0.0315734818577766,0.418348640203476,0.907737612724304,-0.964073002338409,-0.134338036179543,-0.229164883494377,-0.999225914478302,0.0236037615686655,0.0314716808497906,-0.99894767999649,0.0235971882939339,0.0393286496400833,-0.0315734818577766,0.418348640203476,0.907737612724304,-0.031476553529501,0.456410020589828,0.889212667942047,-0.999225914478302,0.0236037615686655,0.0314716808497906,-0.99894767999649,0.0235971882939339,0.0393286496400833,-0.999225914478302,0.0236037615686655,0.0314716808497906,-0.031476553529501,0.456410020589828,0.889212667942047,-0.031476553529501,0.456410020589828,0.889212667942047,-0.0315734818577766,0.418348640203476,0.907737612724304,0,0.418557375669479,0.908190488815308,0,0.462834060192108,0.886444926261902,-0.031476553529501,0.456410020589828,0.889212667942047,0,0.418557375669479,0.908190488815308,-0.964073002338409,-0.134338036179543,-0.229164883494377,-0.99894767999649,0.0235971882939339,0.0393286496400833,-0.999009490013123,0.0314648635685444,0.0314648635685444,-0.999009490013123,0.0314648635685444,0.0314648635685444,-0.961942911148071,-0.189234673976898,-0.197119444608688,-0.964073002338409,-0.134338036179543,-0.229164883494377,-0.031476553529501,0.456410020589828,0.889212667942047,-0.0315028987824917,0.511922121047974,0.858454048633575,
- -0.99894767999649,0.0235971882939339,0.0393286496400833,-0.0315028987824917,0.511922121047974,0.858454048633575,-0.031476553529501,0.456410020589828,0.889212667942047,0,0.462834060192108,0.886444926261902,-0.999009490013123,0.0314648635685444,0.0314648635685444,-0.99894767999649,0.0235971882939339,0.0393286496400833,-0.0315028987824917,0.511922121047974,0.858454048633575,0,0.5363649725914,0.8439861536026,-0.0315028987824917,0.511922121047974,0.858454048633575,0,0.462834060192108,0.886444926261902,-0.961942911148071,-0.189234673976898,-0.197119444608688,-0.999009490013123,0.0314648635685444,0.0314648635685444,-0.999009490013123,0.0314648635685444,0.0314648635685444,-0.961942911148071,-0.189234673976898,-0.197119444608688,-0.999009490013123,0.0314648635685444,0.0314648635685444,-0.99894767999649,0.0235971882939339,0.0393286496400833,-0.0315028987824917,0.511922121047974,0.858454048633575,-0.0316069796681404,0.568925559520721,0.821781396865845,-0.999009490013123,0.0314648635685444,0.0314648635685444,-0.0316069796681404,0.568925559520721,0.821781396865845,-0.0315028987824917,0.511922121047974,0.858454048633575,0,0.5363649725914,0.8439861536026,-0.0316069796681404,0.568925559520721,0.821781396865845,-0.999009490013123,0.0314648635685444,0.0314648635685444,-0.999009490013123,0.0314648635685444,0.0314648635685444,0,0.623731732368469,0.781638503074646,-0.0316069796681404,0.568925559520721,0.821781396865845,0,0.5363649725914,0.8439861536026,-0.031476553529501,0.645269334316254,0.763306438922882,-0.99894767999649,0.0235971882939339,0.0393286496400833,-0.999009490013123,0.0314648635685444,0.0314648635685444,-0.999009490013123,0.0314648635685444,0.0314648635685444,-0.0316069796681404,0.568925559520721,0.821781396865845,-0.031476553529501,0.645269334316254,0.763306438922882,0,0.623731732368469,0.781638503074646,-0.031476553529501,0.645269334316254,0.763306438922882,-0.0316069796681404,0.568925559520721,0.821781396865845,-0.99894767999649,0.0235971882939339,0.0393286496400833,-0.031476553529501,0.645269334316254,0.763306438922882,
- -0.0314037129282951,0.690881729125977,0.722285449504852,0,0.691222667694092,0.722641825675964,-0.031476553529501,0.645269334316254,0.763306438922882,0,0.623731732368469,0.781638503074646,-0.0314037129282951,0.690881729125977,0.722285449504852,-0.031476553529501,0.645269334316254,0.763306438922882,0,0.691222667694092,0.722641825675964
- }
- NormalsW: *1086 {
- 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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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: "UVmap_0"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *3258 {
- a: 0,1,-0.000164183744345792,0,1,-0.000164183744345792,0,1,-0.000164183744345792,0,0.999999940395355,-0.000326684501487762,0,0.999999940395355,-0.000326684501487762,0,0.999999940395355,-0.000326684501487762,-0,1,0.000200366921490058,-0,1,0.000200366921490058,-0,1,0.000200366921490058,0,0.999999642372131,-0.000828020158223808,0,0.999999642372131,-0.000828020158223808,0,0.999999642372131,-0.000828020158223808,0,1,-2.72681609203573e-005,0,1,-2.72681609203573e-005,0,1,-2.72681609203573e-005,-0,1,4.99067173223011e-005,-0,1,4.99067173223011e-005,-0,1,4.99067173223011e-005,-0,1,-0.000164183744345792,-0,1,-0.000164183744345792,-0,1,-0.000164183744345792,-0,0.999999940395355,-0.000326684501487762,-0,0.999999940395355,-0.000326684501487762,-0,0.999999940395355,-0.000326684501487762,0,1,0.000200366921490058,0,1,0.000200366921490058,0,1,0.000200366921490058,-0,0.999999642372131,-0.000828020158223808,-0,0.999999642372131,-0.000828020158223808,-0,0.999999642372131,-0.000828020158223808,-0,1,-2.72681609203573e-005,-0,1,-2.72681609203573e-005,-0,1,-2.72681609203573e-005,0,1,4.99067173223011e-005,0,1,4.99067173223011e-005,0,1,4.99067173223011e-005,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0.0294199902564287,0.999567151069641,2.21948493155298e-016,0.0294199902564287,0.999567151069641,2.21948493155298e-016,0.0294199902564287,0.999567151069641,2.21948493155298e-016,-0.0294248573482037,0.999566972255707,2.21948453450628e-016,-0.0294248573482037,0.999566972255707,2.21948453450628e-016,-0.0294248573482037,0.999566972255707,2.21948453450628e-016,0,0.999969005584717,0.00787377171218395,0,0.999969005584717,0.00787377171218395,0,0.999969005584717,0.00787377171218395,0,0.999969005584717,0.00787377171218395,0,0.999969005584717,0.00787377171218395,0,0.999969005584717,0.00787377171218395,0,0.999969005584717,0.00787377171218395,0,0.999969005584717,0.00787377171218395,
- 0,0.999969005584717,0.00787377171218395,-0.0388730689883232,0.99921327829361,0.00786782149225473,-0.0388730689883232,0.99921327829361,0.00786782149225473,-0.0388730689883232,0.99921327829361,0.00786782149225473,0.0388698540627956,0.999213397502899,0.00786782242357731,0.0388698540627956,0.999213397502899,0.00786782242357731,0.0388698540627956,0.999213397502899,0.00786782242357731,-0.545900583267212,0.688969016075134,0.476774960756302,-0.545900583267212,0.688969016075134,0.476774960756302,-0.545900583267212,0.688969016075134,0.476774960756302,-0.545900523662567,0.688969135284424,0.476774752140045,-0.545900523662567,0.688969135284424,0.476774752140045,-0.545900523662567,0.688969135284424,0.476774752140045,0.545900583267212,0.688969016075134,0.476774960756302,0.545900583267212,0.688969016075134,0.476774960756302,0.545900583267212,0.688969016075134,0.476774960756302,0.545900523662567,0.688969135284424,0.476774752140045,0.545900523662567,0.688969135284424,0.476774752140045,0.545900523662567,0.688969135284424,0.476774752140045,0.909119009971619,0.342520475387573,0.237028330564499,0.909119009971619,0.342520475387573,0.237028330564499,0.909119009971619,0.342520475387573,0.237028330564499,0.909119009971619,0.342520534992218,0.237028241157532,0.909119009971619,0.342520534992218,0.237028241157532,0.909119009971619,0.342520534992218,0.237028241157532,-0.909119009971619,0.342520534992218,0.237028241157532,-0.909119009971619,0.342520534992218,0.237028241157532,-0.909119009971619,0.342520534992218,0.237028241157532,-0.909119009971619,0.342520475387573,0.237028330564499,-0.909119009971619,0.342520475387573,0.237028330564499,-0.909119009971619,0.342520475387573,0.237028330564499,0.0926180481910706,0.400744199752808,0.911496579647064,0.0926180481910706,0.400744199752808,0.911496579647064,0.0926180481910706,0.400744199752808,0.911496579647064,-0.0140209067612886,0.402434587478638,0.915341377258301,-0.0140209067612886,0.402434587478638,0.915341377258301,-0.0140209067612886,0.402434587478638,0.915341377258301,0,0.402474135160446,0.915431380271912,
- 0,0.402474135160446,0.915431380271912,0,0.402474135160446,0.915431380271912,-0.000641785212792456,0.402474075555801,0.915431201457977,-0.000641785212792456,0.402474075555801,0.915431201457977,-0.000641785212792456,0.402474075555801,0.915431201457977,0,0.402474135160446,0.915431380271912,0,0.402474135160446,0.915431380271912,0,0.402474135160446,0.915431380271912,-0.00463272118940949,0.4024698138237,0.915421545505524,-0.00463272118940949,0.4024698138237,0.915421545505524,-0.00463272118940949,0.4024698138237,0.915421545505524,-0.140405133366585,0.990094125270844,2.19845058884359e-016,-0.140405133366585,0.990094125270844,2.19845058884359e-016,-0.140405133366585,0.990094125270844,2.19845058884359e-016,-0.0206599738448858,0.999786555767059,2.21997210784654e-016,-0.0206599738448858,0.999786555767059,2.21997210784654e-016,-0.0206599738448858,0.999786555767059,2.21997210784654e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0.000930503068957478,0.999999582767487,2.22044512280803e-016,0.000930503068957478,0.999999582767487,2.22044512280803e-016,0.000930503068957478,0.999999582767487,2.22044512280803e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,-0.0129927778616548,0.999915599822998,2.22025864321073e-016,-0.0129927778616548,0.999915599822998,2.22025864321073e-016,-0.0129927778616548,0.999915599822998,2.22025864321073e-016,-0.0926180481910706,0.400744199752808,0.911496579647064,-0.0926180481910706,0.400744199752808,0.911496579647064,-0.0926180481910706,0.400744199752808,0.911496579647064,0.0140002118423581,0.402434706687927,0.915341675281525,0.0140002118423581,0.402434706687927,0.915341675281525,0.0140002118423581,0.402434706687927,0.915341675281525,0,0.402474135160446,0.915431380271912,0,0.402474135160446,0.915431380271912,0,0.402474135160446,0.915431380271912,0.000647061504423618,0.402474075555801,0.915431261062622,0.000647061504423618,0.402474075555801,0.915431261062622,0.000647061504423618,0.402474075555801,0.915431261062622,0,0.402474135160446,0.915431380271912,
- 0,0.402474135160446,0.915431380271912,0,0.402474135160446,0.915431380271912,0.00461962912231684,0.402469843626022,0.915421605110168,0.00461962912231684,0.402469843626022,0.915421605110168,0.00461962912231684,0.402469843626022,0.915421605110168,0.140405133366585,0.990094125270844,2.19845058884359e-016,0.140405133366585,0.990094125270844,2.19845058884359e-016,0.140405133366585,0.990094125270844,2.19845058884359e-016,0.0206599738448858,0.999786555767059,2.21997210784654e-016,0.0206599738448858,0.999786555767059,2.21997210784654e-016,0.0206599738448858,0.999786555767059,2.21997210784654e-016,-0,1,2.22044604925031e-016,-0,1,2.22044604925031e-016,-0,1,2.22044604925031e-016,-0.000930503068957478,0.999999582767487,2.22044512280803e-016,-0.000930503068957478,0.999999582767487,2.22044512280803e-016,-0.000930503068957478,0.999999582767487,2.22044512280803e-016,-0,1,2.22044604925031e-016,-0,1,2.22044604925031e-016,-0,1,2.22044604925031e-016,0.0129927778616548,0.999915599822998,2.22025864321073e-016,0.0129927778616548,0.999915599822998,2.22025864321073e-016,0.0129927778616548,0.999915599822998,2.22025864321073e-016,0.969573497772217,0.242662593722343,0.0322815626859665,0.999998152256012,-0.000333799631334841,0.00189658883027732,0.999998152256012,-0.000212421757169068,0.00191179581452161,0.999996185302734,0.000478370930068195,-0.00271801673807204,0.969582796096802,0.243107244372368,0.0284273531287909,0.971401810646057,0.235844761133194,0.0274925716221333,0.971391081809998,0.230298042297363,0.0579849444329739,0.999998569488525,-0.000499098852742463,0.00163218809757382,0.99999862909317,-0.000296000711387023,0.0016818221192807,0.301966965198517,0.945706784725189,0.120228171348572,0.971401810646057,0.235844761133194,0.0274925716221333,0.969582796096802,0.243107244372368,0.0284273531287909,0.999992370605469,0.00114953063894063,-0.00375927588902414,0.971411228179932,0.230547621846199,0.0566397681832314,0.969756782054901,0.23699826002121,0.058341633528471,0.969968557357788,0.228521555662155,0.0833001285791397,0.999998152256012,-0.000741460709832609,0.00182275753468275,
- 0.999998033046722,-0.000575429003220052,0.00188180839177221,0.971384882926941,0.236039310693741,0.0263994969427586,0.30195352435112,0.946465253829956,0.114138625562191,0.320134818553925,0.940562903881073,0.113380573689938,0.971659004688263,0.21699683368206,0.0937614962458611,0.999997556209564,-0.000832977355457842,0.00204773596487939,0.969804406166077,0.223907545208931,0.0966688543558121,0.971707224845886,0.213966533541679,0.100017249584198,0.999995827674866,-0.00127794698346406,0.00260153505951166,0.999995827674866,-0.00109243579208851,0.00268557155504823,0.316635996103287,0.91730409860611,0.24144347012043,0.969757080078125,0.236993581056595,0.0583555698394775,0.971411228179932,0.230547338724136,0.0566412732005119,0.316718071699142,0.874462366104126,0.367430597543716,0.971659898757935,0.216957479715347,0.0938429310917854,0.969803094863892,0.223882958292961,0.0967397689819336,0.971461772918701,0.231311529874802,0.0525071695446968,0.320027112960815,0.921776235103607,0.218886271119118,0.316052973270416,0.92307060956955,0.219205662608147,0.971638441085815,0.21779365837574,0.092112198472023,0.316706925630569,0.874256134033203,0.36793065071106,0.321175783872604,0.87286913394928,0.367349475622177,0.321169257164001,0.873126089572906,0.366743981838226,0.316720575094223,0.874509274959564,0.36731681227684,0.330389589071274,0.870190799236298,0.365528017282486,0.301954060792923,0.946444153785706,0.114312902092934,0.334099262952805,0.935749053955078,0.112921997904778,0.320137500762939,0.940542280673981,0.113544121384621,0.320018887519836,0.921674847602844,0.219325125217438,0.333705604076386,0.917081415653229,0.218179374933243,0.316066116094589,0.922961413860321,0.219646468758583,0.334040373563766,0.936236441135406,0.108988024294376,0.301939338445663,0.946921765804291,0.110326133668423,0.355604290962219,0.928374826908112,0.108008936047554,0.253607839345932,0.960746884346008,0.112465679645538,0.334045082330704,0.93619966506958,0.109289824962616,0.355603814125061,0.928342461585999,0.1082878485322,0.317223638296127,0.886611580848694,0.336584448814392,
- 0.330419570207596,0.882394969463348,0.33496567606926,0.329751551151276,0.882613122463226,0.335049390792847,0.316193997859955,0.92185765504837,0.224053233861923,0.333604663610458,0.916058719158173,0.222585424780846,0.329919576644897,0.917315244674683,0.222903192043304,0.334138840436935,0.935385048389435,0.115784525871277,0.253614991903305,0.959958374500275,0.118993498384953,0.271968156099319,0.955001771450043,0.118342272937298,0.271796256303787,0.935238659381866,0.226837977766991,0.329907864332199,0.917435467243195,0.2224250882864,0.333615869283676,0.916169583797455,0.222111940383911,0.329738676548004,0.882800281047821,0.334568560123444,0.330427438020706,0.882576763629913,0.334478795528412,0.26714563369751,0.900963604450226,0.341903209686279,0.330251038074493,0.913362085819244,0.238126382231712,0.271481394767761,0.931245863437653,0.24306184053421,0.266557455062866,0.932571232318878,0.243430018424988,0.266654133796692,0.887137830257416,0.376672387123108,0.268501967191696,0.886663496494293,0.376476377248764,0.330440282821655,0.868693649768829,0.369026571512222,0.266654133796692,0.887137830257416,0.376672387123108,-0.0454188771545887,0.919825315475464,0.389690369367599,0.268501967191696,0.886663496494293,0.376476377248764,0.253615021705627,0.959931373596191,0.119211070239544,-0.0390369221568108,0.991537868976593,0.123809404671192,0.271970987319946,0.954975008964539,0.118551574647427,-0.039100531488657,0.99315357208252,0.110077798366547,0.253589659929276,0.96149617433548,0.105912439525127,-0.0469047799706459,0.9928178191185,0.110058195888996,0.27148500084877,0.931288063526154,0.242895975708961,-0.0476424060761929,0.966214776039124,0.253296971321106,0.266554087400436,0.932615756988525,0.243263125419617,-0.047775324434042,0.975307047367096,0.21562397480011,0.272078186273575,0.939767599105835,0.206906586885452,-0.0384136475622654,0.975706696510315,0.215686962008476,-0.0455604009330273,0.910074770450592,0.411932319402695,0.266134053468704,0.877478063106537,0.399005144834518,-0.0423228368163109,0.91019731760025,0.412006884813309,
- -0.0455563962459564,0.910386443138123,0.411243438720703,-0.0423242561519146,0.910510063171387,0.411315083503723,-0.999489665031433,0.0306539498269558,0.00898943562060595,-0.0399502068758011,0.957818746566772,0.284582644701004,0.267039269208908,0.923991799354553,0.273732244968414,-0.0474763214588165,0.957497656345367,0.284506976604462,-0.0423435233533382,0.938946962356567,0.341446310281754,0.267235159873962,0.90595018863678,0.328389376401901,-0.039659395813942,0.939053475856781,0.341475814580917,-0.999496519565582,0.0307221915572882,0.00793121941387653,-0.999483823776245,0.0310920421034098,0.00809718947857618,-0.0423294194042683,0.91169273853302,0.408686429262161,-0.0423439592123032,0.938835442066193,0.341752946376801,-0.0396574065089226,0.938941240310669,0.341784447431564,-0.999503374099731,0.0286842714995146,0.0130482790991664,-0.999501705169678,0.0293075107038021,0.0117312669754028,-0.999999046325684,0.000521218520589173,-0.00128132896497846,-0.999999046325684,0.000609763897955418,-0.00124130514450371,-0.999985814094543,0.00201311963610351,-0.00494891917333007,-0.999483823776245,0.0310920421034098,0.00809718947857618,-0.999496519565582,0.0307221915572882,0.00793121941387653,-0.999497294425964,0.0283397324383259,0.0142220370471478,-0.999500870704651,0.0282322019338608,0.0141830537468195,-0.0396637171506882,0.939297914505005,0.340802401304245,-0.999993205070496,-0.00139890529680997,0.00343897589482367,-0.999500870704651,0.0282322019338608,0.0141830537468195,-0.999497294425964,0.0283397324383259,0.0142220370471478,-0.0399476401507854,0.957619667053223,0.285252213478088,-0.0474722497165203,0.957301616668701,0.285166591405869,-0.99950784444809,0.0297165773808956,0.0100581403821707,-0.999999821186066,0.000225277748540975,-0.000553807825781405,-0.999507784843445,0.0297603197395802,0.00992581248283386,-0.999999821186066,0.000174820554093458,-0.000571710465010256,-0.999498724937439,0.0295378640294075,0.0114011848345399,-0.999506592750549,0.0292963776737452,0.0113291088491678,-0.0474679209291935,0.957093298435211,0.285865753889084,
- -0.999996602535248,-0.000772918981965631,0.00252765393815935,-0.99950635433197,0.0292498972266912,0.0114696966484189,-0.999498128890991,0.0295005943626165,0.0115443542599678,-0.0384147018194199,0.975733399391174,0.215565741062164,-0.999499917030334,0.0296307988464832,0.0110441111028194,-0.0477755926549435,0.975330233573914,0.215518936514854,-0.999999403953552,0.000344664294971153,-0.00112714536953717,-0.99950385093689,0.0308429673314095,0.00638532964512706,-0.999999344348907,0.000195531407371163,-0.00116387743037194,-0.999503910541534,0.030051002278924,0.00942945294082165,-0.0385093092918396,0.978136479854584,0.204367637634277,-0.99921703338623,0.0379800386726856,0.0110842203721404,-0.999218583106995,0.0380232818424702,0.0107978535816073,-0.999996185302734,-0.000460749259218574,0.00274255522526801,-0.999504327774048,0.0301250219345093,0.00914498697966337,-0.0469030179083347,0.992780447006226,0.110396109521389,-0.999231040477753,0.0387729965150356,0.00582932867109776,-0.039099033921957,0.993115484714508,0.11042146384716,-0.999231040477753,0.0387357920408249,0.00607604440301657,-0.0469109043478966,0.992947459220886,0.108880184590817,-0.9994997382164,0.0311885233968496,0.00524960644543171,-0.999499380588531,0.0311712771654129,0.00541666941717267,-0.999997973442078,-0.000333306554239243,0.0019839673768729,-0.999230980873108,0.0387113802134991,0.00623792875558138,-0.999999344348907,0.000183770840521902,-0.00109387410338968,-0.999501407146454,0.0314804501831532,0.00242071831598878,-0.999999403953552,0.000113672089355532,-0.0011017449432984,-0.999999403953552,-0.00019780034199357,0.00112386560067534,-0.9695765376091,0.242749989032745,0.0315267778933048,-0.999999344348907,-0.000125875187222846,0.00113287672866136,-0.999995052814484,0.000549206044524908,-0.00312048895284534,-0.971454977989197,0.235618099570274,0.0275591667741537,-0.969582736492157,0.24309453368187,0.0285380203276873,-0.999997317790985,-0.000680559547618032,0.00222561368718743,-0.971491396427155,0.229750961065292,0.058472890406847,-0.99999725818634,-0.000403619953431189,0.00229329522699118,
- -0.971454977989197,0.235618099570274,0.0275591667741537,-0.301968723535538,0.945470631122589,0.122066363692284,-0.969582736492157,0.24309453368187,0.0285380203276873,-0.971514046192169,0.230075538158417,0.0567949041724205,-0.99999338388443,0.00106927542947233,-0.00349681987427175,-0.969762325286865,0.23691201210022,0.0585981868207455,-0.999998152256012,-0.000741405761800706,0.00182262249290943,-0.969968616962433,0.228521630167961,0.0832999646663666,-0.999998033046722,-0.000575386337004602,0.00188166880980134,-0.30195352435112,0.946464121341705,0.114147908985615,-0.971434414386749,0.235837981104851,0.026375537738204,-0.320134967565537,0.940561771392822,0.113389760255814,-0.999997615814209,-0.000827670854050666,0.00203469092957675,-0.971658825874329,0.217001602053642,0.093751572072506,-0.969804584980011,0.223911121487617,0.0966585502028465,-0.971707224845886,0.213966488838196,0.100017346441746,-0.999995827674866,-0.00109247700311244,0.00268567260354757,-0.999995827674866,-0.00127799506299198,0.00260163308121264,-0.969762623310089,0.236907377839088,0.0586119890213013,-0.316638588905334,0.917272686958313,0.241559341549873,-0.971514105796814,0.23007544875145,0.0567953549325466,-0.97165983915329,0.216962367296219,0.0938328355550766,-0.316717952489853,0.874460220336914,0.367435872554779,-0.969803273677826,0.223886609077454,0.0967292636632919,-0.320026874542236,0.921773552894592,0.218898147344589,-0.971560001373291,0.230919316411018,0.0524157397449017,-0.316053330898285,0.923067688941956,0.219217509031296,-0.316707074642181,0.874258697032928,0.367924481630325,-0.97163850069046,0.217795252799988,0.0921089574694633,-0.32117572426796,0.87287175655365,0.367343336343765,-0.330389499664307,0.870193421840668,0.365521848201752,-0.316720724105835,0.87451183795929,0.367310613393784,-0.321169197559357,0.873128712177277,0.366737812757492,-0.334099262952805,0.935749053955078,0.112922184169292,-0.301954030990601,0.946444034576416,0.114313073456287,-0.320137500762939,0.940542221069336,0.113544300198555,-0.333705395460129,0.917079091072083,0.218189433217049,
- -0.320018708705902,0.921672463417053,0.219335198402405,-0.316066414117813,0.92295891046524,0.219656512141228,-0.301939338445663,0.946921765804291,0.110326133668423,-0.334040373563766,0.936236441135406,0.108988024294376,-0.355604290962219,0.928374826908112,0.108008936047554,-0.334045082330704,0.93619966506958,0.109289824962616,-0.253607839345932,0.960746884346008,0.112465679645538,-0.355603814125061,0.928342461585999,0.1082878485322,-0.31722366809845,0.886611878871918,0.336583822965622,-0.329751551151276,0.88261342048645,0.335048794746399,-0.330419600009918,0.882395207881927,0.334965020418167,-0.316193997859955,0.92185765504837,0.224053248763084,-0.329919576644897,0.917315244674683,0.222903206944466,-0.333604723215103,0.916058778762817,0.222585469484329,-0.271968156099319,0.955001771450043,0.118342272937298,-0.253614991903305,0.959958374500275,0.118993498384953,-0.334138840436935,0.935385048389435,0.115784525871277,-0.329907864332199,0.917435646057129,0.222424924373627,-0.271796256303787,0.935238718986511,0.226837784051895,-0.333615899085999,0.9161696434021,0.222111731767654,-0.267145663499832,0.900963664054871,0.34190309047699,-0.330427408218384,0.882576763629913,0.334478676319122,-0.329738676548004,0.882800281047821,0.334568411111832,-0.271481394767761,0.931245803833008,0.243062004446983,-0.330251008272171,0.913361966609955,0.238126561045647,-0.266557455062866,0.932571172714233,0.243430182337761,-0.330440253019333,0.868693709373474,0.36902642250061,-0.268501967191696,0.886663675308228,0.376476168632507,-0.266654163599014,0.887137889862061,0.376672208309174,-0.266654163599014,0.887137889862061,0.376672208309174,-0.268501967191696,0.886663675308228,0.376476168632507,0.0454188771545887,0.919825434684753,0.389690190553665,-0.253615021705627,0.959931373596191,0.119211070239544,-0.271970987319946,0.954975008964539,0.118551574647427,0.0390369221568108,0.991537868976593,0.123809404671192,0.039100531488657,0.99315357208252,0.110077798366547,0.0469047799706459,0.9928178191185,0.110058195888996,-0.253589659929276,0.96149617433548,0.105912439525127,
- -0.271484971046448,0.931288003921509,0.242896124720573,-0.266554057598114,0.932615637779236,0.243263244628906,0.0476424023509026,0.966214716434479,0.25329715013504,0.047775324434042,0.975307047367096,0.21562397480011,0.0384136475622654,0.975706696510315,0.215686962008476,-0.272078186273575,0.939767599105835,0.206906571984291,-0.266134023666382,0.877477824687958,0.399005681276321,0.0455604009330273,0.910074532032013,0.411932855844498,0.0423228368163109,0.910197079181671,0.412007421255112,0.999489665031433,0.0306539442390203,0.00898944586515427,0.0423242561519146,0.910509824752808,0.411315619945526,0.045556403696537,0.910386204719543,0.411243975162506,0.0399502068758011,0.957818746566772,0.284582614898682,0.0474763214588165,0.957497656345367,0.284506976604462,-0.267039269208908,0.923991799354553,0.273732244968414,0.0423435270786285,0.938947141170502,0.34144589304924,0.0396593995392323,0.93905371427536,0.341475427150726,-0.267235189676285,0.905950427055359,0.328389018774033,0.0423294194042683,0.91169273853302,0.408686429262161,0.999483823776245,0.0310920644551516,0.00809714570641518,0.999496519565582,0.0307222101837397,0.00793117471039295,0.999503374099731,0.02868427708745,0.0130482660606503,0.0396574102342129,0.938941419124603,0.341784060001373,0.0423439592123032,0.938835561275482,0.34175255894661,0.999999046325684,0.000521154550369829,-0.00128117168787867,0.999501705169678,0.0293074361979961,0.0117314197123051,0.999999046325684,0.000609689042903483,-0.00124115264043212,0.999483823776245,0.0310920644551516,0.00809714570641518,0.999985814094543,0.00201313802972436,-0.00494896434247494,0.999496519565582,0.0307222101837397,0.00793117471039295,0.0396637171506882,0.939297914505005,0.340802401304245,0.999500870704651,0.0282321833074093,0.0141831012442708,0.999497294425964,0.0283397156745195,0.0142220854759216,0.999993205070496,-0.00139892462175339,0.00343902339227498,0.999497294425964,0.0283397156745195,0.0142220854759216,0.999500870704651,0.0282321833074093,0.0141831012442708,0.99950784444809,0.0297165773808956,0.0100581403821707,
- 0.0474722497165203,0.957301616668701,0.285166591405869,0.0399476401507854,0.957619667053223,0.285252213478088,0.999507784843445,0.0297603365033865,0.00992576126009226,0.999999821186066,0.000225298252189532,-0.000553858233615756,0.999999821186066,0.000174836473888718,-0.000571762502659112,0.0474679209291935,0.957093298435211,0.285865753889084,0.999506592750549,0.0292963776737452,0.0113291088491678,0.999498724937439,0.0295378640294075,0.0114011848345399,0.999996602535248,-0.000772919040173292,0.00252765417098999,0.999498128890991,0.0295005943626165,0.0115443542599678,0.99950635433197,0.0292498972266912,0.0114696966484189,0.999499917030334,0.0296307988464832,0.0110441111028194,0.0384147018194199,0.975733399391174,0.215565741062164,0.0477755926549435,0.975330233573914,0.215518936514854,0.99950385093689,0.0308429468423128,0.00638541020452976,0.999999403953552,0.0003446398768574,-0.00112706562504172,0.999999344348907,0.000195517568499781,-0.00116379500832409,0.0385093092918396,0.978136479854584,0.204367637634277,0.999503910541534,0.030051002278924,0.00942945294082165,0.99921703338623,0.0379800386726856,0.0110842203721404,0.999996185302734,-0.000460749201010913,0.00274255475960672,0.999218583106995,0.0380232818424702,0.0107978535816073,0.999504327774048,0.0301250219345093,0.0091449860483408,0.999231040477753,0.0387729965150356,0.00582932867109776,0.0469030179083347,0.992780447006226,0.110396109521389,0.039099033921957,0.993115484714508,0.11042146384716,0.0469109043478966,0.992947459220886,0.108880184590817,0.999231040477753,0.0387357920408249,0.00607604440301657,0.9994997382164,0.0311885233968496,0.00524960644543171,0.999997973442078,-0.000333306554239243,0.0019839673768729,0.999499380588531,0.0311712771654129,0.00541666941717267,0.999230980873108,0.0387113802134991,0.00623792922124267,0.999501407146454,0.0314804688096046,0.0024205376394093,0.999999344348907,0.000183800992090255,-0.00109405361581594,0.999999403953552,0.000113690737634897,-0.00110192561987787,0.971543431282043,0.166414543986321,0.168551325798035,0.999995827674866,-0.00209483481012285,0.00200375518761575,
- 0.999995887279511,-0.00195749616250396,0.00213958905078471,0.971494257450104,0.171376869082451,0.163795441389084,0.99999737739563,-0.00153680110815912,0.00167975947260857,0.969474971294403,0.177307605743408,0.169352576136589,0.969634056091309,0.187026038765907,0.157579272985458,0.999999523162842,-0.000665811297949404,0.0007277472759597,0.999999523162842,-0.000598018988966942,0.000784414471127093,0.31906720995903,0.691858172416687,0.647710084915161,0.971494793891907,0.171337708830833,0.163833037018776,0.969474315643311,0.177283748984337,0.169381380081177,0.971489727497101,0.171686768531799,0.16349795460701,0.319037795066834,0.690666854381561,0.648994743824005,0.318413764238358,0.690820634365082,0.649137616157532,0.319041341543198,0.690807580947876,0.648843288421631,0.333188414573669,0.687225103378296,0.645528614521027,0.318412870168686,0.690962672233582,0.64898681640625,0.999988913536072,0.00285863759927452,-0.00374964135698974,0.969986200332642,0.201485946774483,0.136125937104225,0.969386100769043,0.203432500362396,0.13749848306179,0.318463116884232,0.775273144245148,0.545465648174286,0.969387114048004,0.203405931591988,0.137531250715256,0.969985723495483,0.201466500759125,0.136157929897308,0.969944894313812,0.199896410107613,0.138738632202148,0.999996542930603,-0.00159073108807206,0.00208654347807169,0.999996662139893,-0.00135874608531594,0.00224398984573781,0.999998152256012,-0.000853363599162549,0.00173720449674875,0.970008432865143,0.213258221745491,0.116638891398907,0.999998092651367,-0.00100317678879946,0.00165676174219698,0.970019102096558,0.21268193423748,0.117598541080952,0.999991059303284,-0.00186487555038184,0.00379635393619537,0.971638023853302,0.206888005137444,0.114529147744179,0.320825725793839,0.835847854614258,0.445453971624374,0.970019102096558,0.21268193423748,0.117598541080952,0.971638023853302,0.206888005137444,0.114529147744179,0.970003962516785,0.21348163485527,0.116266719996929,0.320895135402679,0.837708115577698,0.44189527630806,0.318277090787888,0.838494122028351,0.442297846078873,0.970027804374695,0.203644990921021,0.132570222020149,
- 0.317732632160187,0.788164854049683,0.527107417583466,0.31780743598938,0.788144111633301,0.527093291282654,0.320896446704865,0.837743997573853,0.441826432943344,0.331432431936264,0.834503173828125,0.440178275108337,0.318276256322861,0.838531911373138,0.442226856946945,0.317716181278229,0.787741124629974,0.527750313282013,0.333398073911667,0.783297896385193,0.524681031703949,0.317832618951797,0.78770911693573,0.527728140354156,0.332110226154327,0.824488461017609,0.458172202110291,0.32048425078392,0.82802414894104,0.460071623325348,0.326654314994812,0.826165080070496,0.459073185920715,0.333590686321259,0.676288425922394,0.656773328781128,0.333301603794098,0.676362633705139,0.656843781471252,0.318733960390091,0.680005669593811,0.660303771495819,0.33304288983345,0.749935448169708,0.571558654308319,0.333312690258026,0.749860525131226,0.571499645709991,0.319182574748993,0.753694355487823,0.574514865875244,0.33359706401825,0.676559805870056,0.656490564346313,0.245197713375092,0.696041226387024,0.674836874008179,0.333299785852432,0.676636219024658,0.656562864780426,0.326598256826401,0.825175821781158,0.460888624191284,0.272727966308594,0.839874505996704,0.469286918640137,0.332169085741043,0.823487639427185,0.459925919771194,0.263174593448639,0.701076447963715,0.66274505853653,0.24513179063797,0.704775631427765,0.665733993053436,0.333753168582916,0.684020042419434,0.648633539676666,0.333311289548874,0.7499018907547,0.571446239948273,0.333043962717056,0.749976396560669,0.571504294872284,0.262726038694382,0.76728355884552,0.585022151470184,0.272911220788956,0.772053480148315,0.573979794979095,0.262500196695328,0.774347841739655,0.575742185115814,0.333202362060547,0.756816625595093,0.562320828437805,0.263102740049362,0.696133673191071,0.667963325977325,-0.0442450307309628,0.721670389175415,0.690821528434753,0.245175778865814,0.699582576751709,0.671172976493835,0.272503674030304,0.845331490039825,0.459517568349838,0.326872676610947,0.830244779586792,0.451495349407196,0.267889231443405,0.846475601196289,0.460124433040619,-0.0444110631942749,0.711838185787201,0.700938045978546,
- 0.262921124696732,0.686278998851776,0.678154647350311,-0.0444967150688171,0.71183580160141,0.700935065746307,-0.0444967150688171,0.71183580160141,0.700935065746307,-0.999485850334167,0.026394858956337,0.0182086490094662,-0.0444110631942749,0.711838185787201,0.700938045978546,0.272911220788956,0.772053480148315,0.573979794979095,-0.0456350967288017,0.800887048244476,0.597074031829834,0.262500196695328,0.774347841739655,0.575742185115814,-0.0443538501858711,0.760994791984558,0.647240102291107,0.263290822505951,0.735548138618469,0.624217092990875,-0.0452477224171162,0.760962307453156,0.647216439247131,0.267885863780975,0.846392393112183,0.460279375314713,-0.0420765168964863,0.878077507019043,0.476665019989014,0.272507429122925,0.845247447490692,0.459669917821884,-0.042138334363699,0.884334087371826,0.464949011802673,0.268097341060638,0.852052509784698,0.449589133262634,-0.0457919389009476,0.884199619293213,0.464859217405319,-0.999494314193726,0.026079323142767,0.0181943625211716,-0.999487161636353,0.0262424144893885,0.018354520201683,-0.0444960407912731,0.713068962097168,0.699680507183075,-0.0443538501858711,0.760994791984558,0.647240102291107,-0.0452477224171162,0.760962307453156,0.647216439247131,-0.999499261379242,0.0217416733503342,0.0229915250092745,-0.999504208564758,0.023353872820735,0.021118214353919,-0.999999046325684,0.000933870556764305,-0.00102074234746397,-0.999999046325684,0.000999445794150233,-0.000955991738010198,-0.999986052513123,0.00357206747867167,-0.00390435312874615,-0.999487161636353,0.0262424144893885,0.018354520201683,-0.999494314193726,0.026079323142767,0.0181943625211716,-0.999993324279785,-0.00247068936005235,0.00270052114501596,-0.999498844146729,0.0216387752443552,0.0231053028255701,-0.999491333961487,0.021822115406394,0.0232604518532753,-0.999491333961487,0.021822115406394,0.0232604518532753,-0.999498844146729,0.0216387752443552,0.0231053028255701,-0.0452641658484936,0.762390315532684,0.645532488822937,-0.99999988079071,0.000404428225010633,-0.000442049466073513,-0.999501705169678,0.0246114302426577,0.019765505567193,
- -0.99999988079071,0.000363227998604998,-0.000476441899081692,-0.0455953329801559,0.795881688594818,0.603732943534851,0.272768318653107,0.766964375972748,0.580829739570618,-0.0408500507473946,0.796052157878876,0.603847801685333,-0.0456004105508327,0.796501934528351,0.602914035320282,-0.0408616438508034,0.796676397323608,0.6030233502388,-0.999497175216675,0.0228007435798645,0.0220343638211489,-0.0416229106485844,0.842198491096497,0.537558674812317,0.273333996534348,0.811449766159058,0.516563415527344,-0.0416229106485844,0.842198491096497,0.537558674812317,-0.999996483325958,-0.0016192466719076,0.00212394702248275,-0.999500274658203,0.0235884338617325,0.0210474189370871,-0.999498128890991,0.0236409194767475,0.0210868157446384,-0.999498963356018,0.0237692426890135,0.020904041826725,-0.999500513076782,0.0237277410924435,0.0208728555589914,-0.0408984459936619,0.79866886138916,0.600379407405853,-0.0416212826967239,0.842087686061859,0.537732362747192,-0.999503552913666,0.0247940383851528,0.0194443091750145,-0.0416212826967239,0.842087686061859,0.537732362747192,-0.999999463558197,0.000635461648926139,-0.000833527592476457,-0.999503910541534,0.0265760999172926,0.0169055052101612,-0.999999463558197,0.000537147687282413,-0.000900755345355719,-0.999503135681152,0.0246597286313772,0.0196356326341629,-0.0416614674031734,0.844849348068237,0.533379793167114,-0.999491095542908,0.0249825939536095,0.0198393538594246,-0.999491095542908,0.0249825939536095,0.0198393538594246,-0.999994158744812,-0.00176517979707569,0.00296007073484361,-0.999503135681152,0.0246597286313772,0.0196356326341629,-0.0457922890782356,0.88413667678833,0.464978992938995,-0.999483704566956,0.0304197538644075,0.0103454254567623,-0.0421377345919609,0.884270489215851,0.465070098638535,-0.999499917030334,0.028505627065897,0.0136885810643435,-0.999999165534973,0.000605383771471679,-0.0012323884293437,-0.999999165534973,0.000703591969795525,-0.00117986963596195,-0.999482750892639,0.0304983612149954,0.0102081103250384,-0.0457836613059044,0.885647654533386,0.462095469236374,
- -0.999495267868042,0.0301459170877934,0.010024044662714,-0.999986112117767,0.00232373108156025,-0.00473045231774449,-0.999481558799744,0.0305888000875711,0.0100501291453838,-0.999494433403015,0.0302262287586927,0.00986049417406321,-0.971543431282043,0.166414543986321,0.168551340699196,-0.999995887279511,-0.00195750617422163,0.00213959976099432,-0.999995827674866,-0.00209484528750181,0.00200376519933343,-0.99999737739563,-0.00153681077063084,0.00167977006640285,-0.971494257450104,0.171376898884773,0.163795426487923,-0.969474971294403,0.177307620644569,0.169352546334267,-0.999999523162842,-0.000665808911435306,0.00072774471482262,-0.969634056091309,0.187026038765907,0.157579258084297,-0.999999523162842,-0.000598016835283488,0.000784411677159369,-0.971494793891907,0.171337723731995,0.163833022117615,-0.319067239761353,0.691858291625977,0.647710025310516,-0.969474315643311,0.177283763885498,0.169381365180016,-0.319037795066834,0.690666973590851,0.64899468421936,-0.971489727497101,0.171686798334122,0.163497939705849,-0.318413734436035,0.690820753574371,0.649137496948242,-0.319041341543198,0.690807700157166,0.648843169212341,-0.318412870168686,0.690962791442871,0.64898669719696,-0.333188414573669,0.687225162982941,0.645528554916382,-0.969986200332642,0.201485946774483,0.136125937104225,-0.999988913536072,0.00285864528268576,-0.00374965136870742,-0.969386100769043,0.203432500362396,0.13749848306179,-0.969387114048004,0.203405931591988,0.137531250715256,-0.318463116884232,0.775273084640503,0.545465767383575,-0.969985723495483,0.201466500759125,0.13615794479847,-0.999996542930603,-0.00159073492977768,0.00208654836751521,-0.969944894313812,0.199896410107613,0.138738632202148,-0.999996662139893,-0.00135874934494495,0.00224399520084262,-0.970008432865143,0.213258236646652,0.116638876497746,-0.999998152256012,-0.000853357545565814,0.00173719227313995,-0.999998092651367,-0.00100316968746483,0.00165675010066479,-0.999991059303284,-0.00186487555038184,0.00379635393619537,-0.970019102096558,0.212681919336319,0.117598555982113,-0.971638023853302,0.206887990236282,0.11452916264534,
- -0.970019102096558,0.212681919336319,0.117598555982113,-0.320825725793839,0.835847854614258,0.445454031229019,-0.971638023853302,0.206887990236282,0.11452916264534,-0.320895135402679,0.837708115577698,0.441895335912704,-0.970003962516785,0.213481619954109,0.11626673489809,-0.318277060985565,0.838494122028351,0.442297905683517,-0.317732632160187,0.788164794445038,0.52710747718811,-0.970027804374695,0.203644976019859,0.13257023692131,-0.31780743598938,0.788144052028656,0.527093350887299,-0.331432431936264,0.834503173828125,0.440178334712982,-0.320896446704865,0.837743937969208,0.441826492547989,-0.318276256322861,0.838531851768494,0.44222691655159,-0.333398073911667,0.783297896385193,0.524681091308594,-0.317716181278229,0.787741124629974,0.527750372886658,-0.317832589149475,0.78770899772644,0.527728140354156,-0.320484220981598,0.828023672103882,0.460072576999664,-0.332110226154327,0.824487864971161,0.458173096179962,-0.32665428519249,0.826164543628693,0.459074139595032,-0.318733960390091,0.680005490779877,0.660303950309753,-0.333301603794098,0.67636251449585,0.656843900680542,-0.333590686321259,0.676288366317749,0.656773447990417,-0.319182574748993,0.753694772720337,0.574514269828796,-0.333312690258026,0.749861001968384,0.571499109268188,-0.333042919635773,0.749935925006866,0.571558058261871,-0.33359706401825,0.676559627056122,0.656490743160248,-0.33329975605011,0.676636040210724,0.656562983989716,-0.24519769847393,0.696040987968445,0.674837052822113,-0.272728025913239,0.839874029159546,0.469287991523743,-0.326598227024078,0.825175344944,0.460889577865601,-0.332169115543365,0.823487043380737,0.459926933050156,-0.245131820440292,0.704776525497437,0.665733098983765,-0.263174623250961,0.701077282428741,0.662744104862213,-0.333753168582916,0.684020936489105,0.648632645606995,-0.333043962717056,0.749976873397827,0.571503698825836,-0.333311259746552,0.749902307987213,0.571445643901825,-0.262726008892059,0.767283976078033,0.585021555423737,-0.333202362060547,0.756816983222961,0.562320411205292,-0.262500196695328,0.774348199367523,0.575741767883301,
- -0.272911250591278,0.772053837776184,0.573979496955872,0.0442450121045113,0.721671283245087,0.690820574760437,-0.263102740049362,0.696134507656097,0.667962372303009,-0.245175778865814,0.699583470821381,0.671171963214874,-0.326872617006302,0.830244362354279,0.451496005058289,-0.272503674030304,0.845331072807312,0.459518253803253,-0.267889231443405,0.84647524356842,0.460125178098679,-0.262921124696732,0.686278998851776,0.678154647350311,0.0444110631942749,0.711838185787201,0.700938045978546,0.0444967150688171,0.71183580160141,0.700935065746307,0.0444967150688171,0.71183580160141,0.700935065746307,0.0444110631942749,0.711838185787201,0.700938045978546,0.999485850334167,0.026394858956337,0.0182086490094662,-0.263290822505951,0.735548138618469,0.624217092990875,0.0443538501858711,0.760994791984558,0.647240102291107,0.0452477224171162,0.760962307453156,0.647216439247131,-0.272911250591278,0.772053837776184,0.573979496955872,-0.262500196695328,0.774348199367523,0.575741767883301,0.045635100454092,0.8008873462677,0.597073614597321,0.999487161636353,0.0262424144893885,0.018354520201683,0.999494314193726,0.026079323142767,0.0181943625211716,0.0444960407912731,0.713068962097168,0.699680507183075,0.0452477224171162,0.760962307453156,0.647216439247131,0.0443538501858711,0.760994791984558,0.647240102291107,0.999499261379242,0.0217416733503342,0.0229915250092745,0.999999046325684,0.000933855306357145,-0.00102072570007294,0.999504208564758,0.0233538560569286,0.0211182311177254,0.999999046325684,0.000999429612420499,-0.000955976196564734,0.999487161636353,0.0262424144893885,0.018354520201683,0.999986052513123,0.00357206747867167,-0.00390435312874615,0.999494314193726,0.026079323142767,0.0181943625211716,0.999993324279785,-0.00247068936005235,0.00270052114501596,0.999491333961487,0.021822115406394,0.0232604518532753,0.999498844146729,0.0216387752443552,0.0231053028255701,0.999498844146729,0.0216387752443552,0.0231053028255701,0.999491333961487,0.021822115406394,0.0232604518532753,0.0452641658484936,0.762390315532684,0.645532488822937,
- 0.999501705169678,0.0246114358305931,0.0197654981166124,0.99999988079071,0.000404432765208185,-0.000442054442828521,0.99999988079071,0.000363232073141262,-0.000476447254186496,-0.272768288850784,0.766964316368103,0.580829739570618,0.0455953329801559,0.795881688594818,0.603732943534851,0.0408500507473946,0.796052157878876,0.603847801685333,0.0408616438508034,0.796676397323608,0.6030233502388,0.0456004105508327,0.796501934528351,0.602914035320282,0.999497175216675,0.0228007435798645,0.0220343638211489,0.999996483325958,-0.0016192466719076,0.00212394702248275,0.999498128890991,0.0236409194767475,0.0210868157446384,0.999500274658203,0.0235884338617325,0.0210474189370871,0.999500513076782,0.0237277410924435,0.0208728555589914,0.999498963356018,0.0237692426890135,0.020904041826725,0.0408984459936619,0.79866886138916,0.600379407405853,0.999503910541534,0.026576092466712,0.016905514523387,0.999999463558197,0.000635454955045134,-0.000833518803119659,0.999999463558197,0.000537142041139305,-0.00090074585750699,-0.273333996534348,0.811449766159058,0.516563415527344,0.0416229106485844,0.842198491096497,0.537558615207672,0.0416229106485844,0.842198491096497,0.537558615207672,0.999503552913666,0.0247940383851528,0.0194443091750145,0.0416212826967239,0.842087686061859,0.537732303142548,0.0416212826967239,0.842087686061859,0.537732303142548,-0.267885833978653,0.846391975879669,0.46028009057045,-0.272507458925247,0.845247089862823,0.459670603275299,0.0420765094459057,0.87807708978653,0.476665765047073,-0.268097341060638,0.852052509784698,0.449589163064957,0.0421383380889893,0.884334087371826,0.464949041604996,0.0457919351756573,0.884199619293213,0.464859247207642,0.999994158744812,-0.00176517979707569,0.00296007073484361,0.999491095542908,0.0249825939536095,0.0198393538594246,0.999503135681152,0.0246597286313772,0.0196356326341629,0.0416614674031734,0.844849348068237,0.533379793167114,0.999503135681152,0.0246597286313772,0.0196356326341629,0.999491095542908,0.0249825939536095,0.0198393538594246,0.999483704566956,0.0304197538644075,0.0103454273194075,
- 0.0457922853529453,0.884136617183685,0.464979022741318,0.0421377345919609,0.884270489215851,0.465070128440857,0.999499917030334,0.0285056382417679,0.0136885615065694,0.999999165534973,0.000703603203874081,-0.00117988849524409,0.999999165534973,0.000605393433943391,-0.00123240810353309,0.0457836613059044,0.885647654533386,0.462095469236374,0.999482750892639,0.0304983612149954,0.0102081103250384,0.999495267868042,0.0301459170877934,0.010024044662714,0.999481558799744,0.0305888000875711,0.0100501291453838,0.999986112117767,0.00232373108156025,-0.00473045231774449,0.999494433403015,0.0302262287586927,0.00986049417406321,0.999995529651642,0.00273888348601758,-0.00126226805150509,0.971699714660645,0.102680534124374,0.212735295295715,0.971535563468933,0.102965727448463,0.213346570730209,0.971674799919128,0.0993407741189003,0.214428752660751,0.999999046325684,-0.00125837430823594,0.000579946441575885,0.999999046325684,-0.00123339460697025,0.000633069779723883,0.334044367074966,0.400064140558243,0.853441834449768,0.971535563468933,0.102965727448463,0.213346570730209,0.971699714660645,0.102680534124374,0.212735295295715,0.999995708465576,0.00262915808707476,-0.0013494793092832,0.971718668937683,0.119059443473816,0.203930452466011,0.971622109413147,0.119255304336548,0.20427605509758,0.971681237220764,0.11515524238348,0.206336632370949,0.999995470046997,-0.00268897716887295,0.00138018291909248,0.999995470046997,-0.00255064642988145,0.00162097136490047,0.971657752990723,0.116554692387581,0.20566064119339,0.318933606147766,0.453202098608017,0.832399725914001,0.33301630616188,0.45094233751297,0.828100919723511,0.319290101528168,0.46863716840744,0.823670446872711,0.971622109413147,0.119255304336548,0.20427605509758,0.971718668937683,0.119059443473816,0.203930452466011,0.318978726863861,0.454946279525757,0.831430375576019,0.332962393760681,0.452648490667343,0.827191412448883,0.332962393760681,0.452648490667343,0.827191412448883,0.999990701675415,0.00364724709652364,-0.00231787632219493,0.969646573066711,0.14407317340374,0.197556376457214,
- 0.971578240394592,0.139596313238144,0.191177025437355,0.319525539875031,0.546280682086945,0.77426153421402,0.971578240394592,0.139596313238144,0.191177025437355,0.969646573066711,0.14407317340374,0.197556376457214,0.969593465328217,0.140845879912376,0.200127780437469,0.999998450279236,-0.00148232490755618,0.000942038139328361,0.999998450279236,-0.00137276365421712,0.00109543767757714,0.999998152256012,-0.00139968027360737,0.00133882474619895,0.969661593437195,0.160428509116173,0.184442847967148,0.999998211860657,-0.001514658681117,0.00120866694487631,0.969671607017517,0.159555554389954,0.185146272182465,0.999991059303284,-0.00305918813683093,0.00292617990635335,0.97147810459137,0.1547030210495,0.179714471101761,0.31760761141777,0.629978954792023,0.708697378635406,0.969671607017517,0.159555554389954,0.185146272182465,0.97147810459137,0.1547030210495,0.179714471101761,0.969689011573792,0.147999748587608,0.194420605897903,0.319004774093628,0.565613865852356,0.76047146320343,0.319146692752838,0.565585792064667,0.760432898998261,0.969657421112061,0.160770028829575,0.184167563915253,0.31769722700119,0.632946074008942,0.706008315086365,0.319338083267212,0.632573127746582,0.70560222864151,0.319000750780106,0.5654296875,0.760610222816467,0.333198964595795,0.562550783157349,0.756647348403931,0.319151222705841,0.565399885177612,0.760569214820862,0.317694395780563,0.632849454879761,0.706096231937408,0.33092674612999,0.62977135181427,0.7027627825737,0.319339394569397,0.632474303245544,0.705690205097198,0.332242429256439,0.462167382240295,0.822202146053314,0.332639932632446,0.46209979057312,0.822079360485077,0.319200485944748,0.464333772659302,0.826138734817505,0.331999510526657,0.606834948062897,0.722168743610382,0.316890448331833,0.610192835330963,0.726116538047791,0.332223176956177,0.606783866882324,0.722108781337738,0.33221909403801,0.606670200824738,0.722206175327301,0.272692918777466,0.618755221366882,0.736736476421356,0.33200415968895,0.606718599796295,0.722264409065247,0.332253605127335,0.46251517534256,0.822001993656158,
- 0.265597075223923,0.472435981035233,0.840394258499146,0.332627147436142,0.462452501058578,0.821886301040649,0.263726562261581,0.587334394454956,0.765170991420746,0.332990735769272,0.574112236499786,0.748005628585815,0.271711945533752,0.58598005771637,0.763413488864899,0.268297880887985,0.436780363321304,0.858626306056976,0.333624988794327,0.42762416601181,0.840138137340546,0.265198349952698,0.437160074710846,0.859395802021027,0.265203028917313,0.437434792518616,0.859254419803619,-0.045751366764307,0.452442049980164,0.890619516372681,0.268294185400009,0.437054574489594,0.858487963676453,-0.0384634584188461,0.418284714221954,0.90750128030777,-0.0455953553318977,0.418143302202225,0.907236099243164,0.264462947845459,0.404359400272369,0.875530004501343,-0.0384802371263504,0.420137971639633,0.906643986701965,-0.999492347240448,0.00934365298599005,0.0304587464779615,-0.0456053279340267,0.419983834028244,0.906385004520416,-0.0458474084734917,0.490222305059433,0.870390832424164,-0.0390053689479828,0.490380048751831,0.870635390281677,0.265603989362717,0.473797529935837,0.839625179767609,-0.999500632286072,0.0120267048478127,0.0292224939912558,-0.0385005846619606,0.422407358884811,0.905588030815125,-0.999501049518585,0.0120210852473974,0.029210451990366,-0.0458469875156879,0.489930689334869,0.87055504322052,-0.999504566192627,0.0144142275676131,0.0279822405427694,-0.0390036031603813,0.490080177783966,0.870804369449615,-0.999498546123505,0.0113002769649029,0.0295803360641003,-0.999997317790985,-0.00210633990354836,0.000970748020336032,-0.999499201774597,0.0112913735210896,0.0295613389462233,-0.999999642372131,0.000855988299008459,-0.000446931924670935,-0.999999642372131,0.000876317906659096,-0.000403868267312646,-0.999504506587982,0.0143032371997833,0.0280392076820135,-0.0434510074555874,0.537295520305634,0.842274010181427,-0.0458475053310394,0.537232935428619,0.84218692779541,0.265455394983292,0.519149005413055,0.812414705753326,0.271683007478714,0.58519583940506,0.764025092124939,-0.0441120341420174,0.607343554496765,0.793213665485382,
- 0.263758420944214,0.586531281471252,0.765775799751282,-0.999495506286621,0.0126539617776871,0.0291327927261591,-0.999502420425415,0.0125453192740679,0.0289414264261723,-0.0458511412143707,0.492960244417191,0.868842840194702,-0.999497771263123,0.0131619814783335,0.0288299284875393,-0.999996364116669,-0.00241830572485924,0.00126265513245016,-0.999503433704376,0.0130721731111407,0.0286710411310196,-0.0434561409056187,0.537746548652649,0.841985881328583,-0.999499559402466,0.0136718656867743,0.0285259336233139,-0.0458468347787857,0.537681221961975,0.841900825500488,-0.999999582767487,0.000769362377468497,-0.000488940509967506,-0.999999582767487,0.000807990611065179,-0.00042187116923742,-0.999503612518311,0.0165063720196486,0.0268357787281275,-0.0440778732299805,0.602794528007507,0.796678066253662,0.271548390388489,0.581633329391479,0.766788184642792,-0.0440778732299805,0.602794528007507,0.796678066253662,-0.0444365553557873,0.668272316455841,0.742588400840759,0.273106455802917,0.642402470111847,0.716053009033203,-0.0450205206871033,0.668256938457489,0.742567121982574,-0.99949437379837,0.0151188932359219,0.0279751680791378,-0.999502778053284,0.0149737745523453,0.0277496818453074,-0.0434875003993511,0.540524661540985,0.840203583240509,-0.999493539333344,0.0149348452687263,0.028102558106184,-0.999996483325958,-0.00224947789683938,0.00142957456409931,-0.999502420425415,0.0147813931107521,0.0278643928468227,-0.0440763160586357,0.602591454982758,0.796831727027893,-0.999498307704926,0.0162895601242781,0.0271648615598679,-0.0440763160586357,0.602591454982758,0.796831727027893,-0.999999523162842,0.000805139483418316,-0.000642484985291958,-0.999999463558197,0.000869082694407552,-0.000552314217202365,-0.999499499797821,0.0191294830292463,0.0251988060772419,-0.0450213029980659,0.668190777301788,0.74262660741806,-0.999484002590179,0.0252116527408361,0.01990289054811,-0.0444363467395306,0.668205916881561,0.742648184299469,-0.999498605728149,0.0164081212133169,0.0270827896893024,-0.0441100746393204,0.607077598571777,0.793417394161224,
- -0.999492287635803,0.0165301728993654,0.0272422172129154,-0.999492287635803,0.0165301728993654,0.0272422172129154,-0.999994158744812,-0.00268365652300417,0.00214150361716747,-0.999498605728149,0.0164081212133169,0.0270827896893024,-0.999485909938812,0.0249762125313282,0.0201020017266274,-0.0449976474046707,0.670183539390564,0.74083012342453,-0.999498128890991,0.0247164443135262,0.0198146216571331,-0.999999046325684,0.000993244699202478,-0.000950060202740133,-0.999999165534973,0.00107500073499978,-0.000857828883454204,-0.999502301216125,0.0219337902963161,0.0226746220141649,-0.999497354030609,0.0248480588197708,0.0196886956691742,-0.999986231327057,0.00379319069907069,-0.00362826976925135,-0.999484777450562,0.0251151360571384,0.0199845172464848,-0.971699714660645,0.102680511772633,0.212735310196877,-0.999995529651642,0.00273885810747743,-0.00126225640997291,-0.971535563468933,0.102965705096722,0.213346570730209,-0.971535563468933,0.102965705096722,0.213346570730209,-0.334044367074966,0.400064140558243,0.853441834449768,-0.971699714660645,0.102680511772633,0.212735310196877,-0.999999046325684,-0.00125840003602207,0.00057995825773105,-0.971674799919128,0.0993407517671585,0.214428752660751,-0.999999046325684,-0.00123341975267977,0.000633082701824605,-0.318933606147766,0.453201949596405,0.832399785518646,-0.971657752990723,0.116554662585258,0.20566064119339,-0.33301630616188,0.450942188501358,0.828100979328156,-0.971718788146973,0.119059577584267,0.203930407762527,-0.999995708465576,0.0026291711255908,-0.00134948606137186,-0.971622109413147,0.119255408644676,0.204275995492935,-0.971622109413147,0.119255408644676,0.204275995492935,-0.319290101528168,0.468637585639954,0.823670268058777,-0.971718788146973,0.119059577584267,0.203930407762527,-0.999995470046997,-0.00268897111527622,0.00138017977587879,-0.971681237220764,0.115155249834061,0.206336632370949,-0.999995470046997,-0.00255064060911536,0.00162096775602549,-0.318978756666183,0.45494619011879,0.831430375576019,-0.332962393760681,0.452648311853409,0.827191352844238,-0.332962393760681,0.452648311853409,0.827191352844238,
- -0.969646573066711,0.144073337316513,0.197556212544441,-0.999990701675415,0.00364724267274141,-0.00231787352822721,-0.971578240394592,0.139596506953239,0.191176906228065,-0.971578240394592,0.139596506953239,0.191176906228065,-0.319525510072708,0.546281397342682,0.774260997772217,-0.969646573066711,0.144073337316513,0.197556212544441,-0.999998450279236,-0.00148233864456415,0.000942046870477498,-0.969593465328217,0.140845865011215,0.200127795338631,-0.999998450279236,-0.00137277645990252,0.00109544780571014,-0.969661593437195,0.160428524017334,0.184442818164825,-0.999998152256012,-0.00139965664129704,0.00133880216162652,-0.999998211860657,-0.00151463318616152,0.00120864657219499,-0.999991059303284,-0.00305919907987118,0.00292619038373232,-0.969671547412872,0.159555330872536,0.185146436095238,-0.97147810459137,0.154702827334404,0.179714649915695,-0.969671547412872,0.159555330872536,0.185146436095238,-0.317607581615448,0.629978179931641,0.708698093891144,-0.97147810459137,0.154702827334404,0.179714649915695,-0.319004774093628,0.565613985061646,0.760471403598785,-0.969689011573792,0.14799976348877,0.194420576095581,-0.319146692752838,0.565585851669312,0.760432839393616,-0.31769722700119,0.632946491241455,0.706008017063141,-0.969657421112061,0.160770148038864,0.184167489409447,-0.31933805346489,0.632573485374451,0.705601871013641,-0.333198934793472,0.562550842761993,0.756647229194641,-0.319000750780106,0.56542980670929,0.760610163211823,-0.319151222705841,0.565400004386902,0.760569095611572,-0.330926716327667,0.629771769046783,0.702762424945831,-0.317694425582886,0.632849812507629,0.706095933914185,-0.319339424371719,0.632474660873413,0.705689907073975,-0.332639902830124,0.462100744247437,0.822078824043274,-0.332242459058762,0.462168365716934,0.822201669216156,-0.31920051574707,0.464334726333618,0.826138257980347,-0.316890418529511,0.610192656517029,0.72611665725708,-0.331999540328979,0.606834709644318,0.722168922424316,-0.332223176956177,0.60678368806839,0.722108960151672,-0.272692918777466,0.618755042552948,0.736736595630646,
- -0.33221909403801,0.606670022010803,0.722206354141235,-0.33200415968895,0.606718480587006,0.722264468669891,-0.332253634929657,0.462516099214554,0.822001457214355,-0.332627058029175,0.462453365325928,0.821885704994202,-0.265597105026245,0.472436964511871,0.840393781661987,-0.332990735769272,0.574111521244049,0.748006165027618,-0.263726592063904,0.587333679199219,0.765171527862549,-0.27171191573143,0.585979282855988,0.763414025306702,-0.268297880887985,0.43678092956543,0.858626067638397,-0.265198320150375,0.437160611152649,0.859395384788513,-0.333624929189682,0.427624702453613,0.840137779712677,0.0457513704895973,0.452442646026611,0.890619218349457,-0.265203028917313,0.437435388565063,0.859254121780396,-0.268294185400009,0.437055140733719,0.858487665653229,-0.264462947845459,0.404359400272369,0.875530004501343,0.0455953553318977,0.418143302202225,0.907236099243164,0.0384634584188461,0.418284714221954,0.90750128030777,0.0384802371263504,0.420137971639633,0.906643986701965,0.0456053279340267,0.419983834028244,0.906385004520416,0.999492347240448,0.00934365298599005,0.0304587464779615,-0.265603989362717,0.473797529935837,0.839625179767609,0.0390053689479828,0.490380048751831,0.870635390281677,0.0458474084734917,0.490222305059433,0.870390772819519,0.999500632286072,0.0120267635211349,0.0292224679142237,0.999501049518585,0.0120211420580745,0.0292104221880436,0.0385005995631218,0.422409147024155,0.905587255954742,0.0458469875156879,0.489930540323257,0.87055516242981,0.0390036031603813,0.490080028772354,0.87080442905426,0.999504566192627,0.0144142229110003,0.0279822424054146,0.999498546123505,0.0113003319129348,0.029580308124423,0.999499201774597,0.011291429400444,0.0295613147318363,0.999997317790985,-0.00210633617825806,0.000970746274106205,0.999999642372131,0.000855947670061141,-0.000446910707978532,0.999504506587982,0.01430319622159,0.0280392281711102,0.999999642372131,0.000876276288181543,-0.000403849087888375,-0.265455394983292,0.519149005413055,0.812414705753326,0.0458475053310394,0.537232935428619,0.84218692779541,0.0434510074555874,0.537295520305634,0.842274010181427,
- 0.0441120304167271,0.607342779636383,0.79321426153183,-0.271682947874069,0.585195064544678,0.764025568962097,-0.263758480548859,0.586530566215515,0.765776336193085,0.999502420425415,0.0125452671200037,0.0289414525032043,0.999495506286621,0.0126539096236229,0.0291328225284815,0.0458511412143707,0.492958754301071,0.868843674659729,0.999497771263123,0.0131619311869144,0.0288299582898617,0.999503433704376,0.0130721218883991,0.0286710672080517,0.999996364116669,-0.00241830991581082,0.00126265734434128,0.0434561409056187,0.537746548652649,0.841985881328583,0.0458468347787857,0.537681221961975,0.841900825500488,0.999499559402466,0.0136718656867743,0.0285259336233139,0.999999582767487,0.000769373262301087,-0.000488947436679155,0.999503612518311,0.0165063831955194,0.026835773140192,0.999999582767487,0.000808002019766718,-0.000421877135522664,-0.271548390388489,0.581633329391479,0.766788184642792,0.0440778732299805,0.602794528007507,0.796678066253662,0.0440778732299805,0.602794528007507,0.796678066253662,-0.273106455802917,0.642402470111847,0.716053009033203,0.0444365553557873,0.668272316455841,0.742588400840759,0.0450205206871033,0.668256938457489,0.742567121982574,0.999502778053284,0.0149737745523453,0.0277496818453074,0.99949437379837,0.0151188932359219,0.0279751680791378,0.0434875003993511,0.540524661540985,0.840203583240509,0.999493539333344,0.0149348452687263,0.028102558106184,0.999502420425415,0.0147813931107521,0.0278643928468227,0.999996483325958,-0.00224947789683938,0.00142957456409931,0.999498307704926,0.0162895601242781,0.0271648615598679,0.0440763160586357,0.602591454982758,0.796831727027893,0.0440763160586357,0.602591454982758,0.796831727027893,0.999999523162842,0.000805117539130151,-0.000642467522993684,0.999499499797821,0.0191294606775045,0.0251988209784031,0.999999463558197,0.000869059062097222,-0.000552299141418189,0.999484002590179,0.0252116527408361,0.01990289054811,0.0450213029980659,0.668190777301788,0.74262660741806,0.0444363467395306,0.668205916881561,0.742648184299469,0.0441100746393204,0.607077598571777,0.793417394161224,
- 0.999498605728149,0.0164081212133169,0.0270827896893024,0.999492287635803,0.0165301728993654,0.0272422172129154,0.999994158744812,-0.00268365652300417,0.00214150361716747,0.999492287635803,0.0165301728993654,0.0272422172129154,0.999498605728149,0.0164081212133169,0.0270827896893024,0.0449976474046707,0.670183539390564,0.74083012342453,0.999485909938812,0.0249762125313282,0.0201020017266274,0.999498128890991,0.0247164443135262,0.0198146216571331,0.999999046325684,0.000993284163996577,-0.000950098037719727,0.999502301216125,0.0219338331371546,0.0226745866239071,0.999999165534973,0.00107504357583821,-0.000857863109558821,0.999497354030609,0.0248480588197708,0.0196886956691742,0.999484777450562,0.0251151360571384,0.0199845172464848,0.999986231327057,0.00379319069907069,-0.00362826976925135
- }
- BinormalsW: *1086 {
- 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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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: 1 {
- Version: 102
- Name: "LightMapUV"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *3258 {
- a: 0,0.99999988079071,-0.00050602457486093,0,0.99999988079071,-0.00050602457486093,0,0.99999988079071,-0.00050602457486093,-0,0.999999821186066,0.000557855877559632,-0,0.999999821186066,0.000557855877559632,-0,0.999999821186066,0.000557855877559632,0,1,-9.86769591690972e-005,0,1,-9.86769591690972e-005,0,1,-9.86769591690972e-005,0,0.999997198581696,-0.00237733544781804,0,0.999997198581696,-0.00237733544781804,0,0.999997198581696,-0.00237733544781804,-0,0.999999940395355,0.000383891339879483,-0,0.999999940395355,0.000383891339879483,-0,0.999999940395355,0.000383891339879483,-0,0.99999988079071,0.00047507110866718,-0,0.99999988079071,0.00047507110866718,-0,0.99999988079071,0.00047507110866718,-0,-0.999999940395355,-0.000310543749947101,-0,-0.999999940395355,-0.000310543749947101,-0,-0.999999940395355,-0.000310543749947101,-0,-0.999999582767487,0.000903155654668808,-0,-0.999999582767487,0.000903155654668808,-0,-0.999999582767487,0.000903155654668808,-0,-1,6.88472355250269e-005,-0,-1,6.88472355250269e-005,-0,-1,6.88472355250269e-005,-0,-0.999989569187164,-0.0045653716661036,-0,-0.999989569187164,-0.0045653716661036,-0,-0.999989569187164,-0.0045653716661036,-0,-0.99999988079071,-0.000515120336785913,-0,-0.99999988079071,-0.000515120336785913,-0,-0.99999988079071,-0.000515120336785913,-0,-0.99999988079071,-0.000477663677884266,-0,-0.99999988079071,-0.000477663677884266,-0,-0.99999988079071,-0.000477663677884266,-1,0,-0,-1,0,-0,-1,0,-0,-1,0,-0,-1,0,-0,-1,0,-0,-1,-2.72107918135589e-005,-6.04200951793896e-021,-1,-2.72107918135589e-005,-6.04200951793896e-021,-1,-2.72107918135589e-005,-6.04200951793896e-021,-0.999999284744263,0.00121032912284136,2.68747051910569e-019,-0.999999284744263,0.00121032912284136,2.68747051910569e-019,-0.999999284744263,0.00121032912284136,2.68747051910569e-019,-0.999999284744263,-0.00118715362623334,-2.636010579223e-019,-0.999999284744263,-0.00118715362623334,-2.636010579223e-019,-0.999999284744263,-0.00118715362623334,-2.636010579223e-019,-1,-0,-0,-1,-0,-0,-1,-0,-0,-1,-0,0,-1,-0,0,
- -1,-0,0,-1,-2.72084271273343e-005,-2.14239591400656e-007,-1,-2.72084271273343e-005,-2.14239591400656e-007,-1,-2.72084271273343e-005,-2.14239591400656e-007,-0.999921560287476,0.0125320665538311,9.86776867648587e-005,-0.999921560287476,0.0125320665538311,9.86776867648587e-005,-0.999921560287476,0.0125320665538311,9.86776867648587e-005,-0.999921798706055,-0.0125064216554165,-9.84757571131922e-005,-0.999921798706055,-0.0125064216554165,-9.84757571131922e-005,-0.999921798706055,-0.0125064216554165,-9.84757571131922e-005,-0.0275096707046032,0.59881204366684,-0.800416946411133,-0.0275096707046032,0.59881204366684,-0.800416946411133,-0.0275096707046032,0.59881204366684,-0.800416946411133,-0.0270215421915054,0.598219037055969,-0.800876975059509,-0.0270215421915054,0.598219037055969,-0.800876975059509,-0.0270215421915054,0.598219037055969,-0.800876975059509,0.545900583267212,0.688969016075134,0.476774960756302,0.545900583267212,0.688969016075134,0.476774960756302,0.545900583267212,0.688969016075134,0.476774960756302,0.545900523662567,0.688969135284424,0.476774752140045,0.545900523662567,0.688969135284424,0.476774752140045,0.545900523662567,0.688969135284424,0.476774752140045,-0.0356779657304287,0.556693375110626,-0.829951524734497,-0.0356779657304287,0.556693375110626,-0.829951524734497,-0.0356779657304287,0.556693375110626,-0.829951524734497,5.40763066965155e-005,0.570578157901764,-0.821243286132813,5.40763066965155e-005,0.570578157901764,-0.821243286132813,5.40763066965155e-005,0.570578157901764,-0.821243286132813,-0.909119009971619,0.342520534992218,0.237028241157532,-0.909119009971619,0.342520534992218,0.237028241157532,-0.909119009971619,0.342520534992218,0.237028241157532,-0.909119009971619,0.342520475387573,0.237028330564499,-0.909119009971619,0.342520475387573,0.237028330564499,-0.909119009971619,0.342520475387573,0.237028330564499,0.0135743897408247,0.402437061071396,0.915347039699554,0.0135743897408247,0.402437061071396,0.915347039699554,0.0135743897408247,0.402437061071396,0.915347039699554,-0.00289528560824692,0.402472466230392,0.915427565574646,
- -0.00289528560824692,0.402472466230392,0.915427565574646,-0.00289528560824692,0.402472466230392,0.915427565574646,0,0.402474135160446,0.915431380271912,0,0.402474135160446,0.915431380271912,0,0.402474135160446,0.915431380271912,0.00013222501729615,0.402474135160446,0.915431380271912,0.00013222501729615,0.402474135160446,0.915431380271912,0.00013222501729615,0.402474135160446,0.915431380271912,0,0.402474135160446,0.915431380271912,0,0.402474135160446,0.915431380271912,0,0.402474135160446,0.915431380271912,0.00246083876118064,0.402472913265228,0.915428578853607,0.00246083876118064,0.402472913265228,0.915428578853607,0.00246083876118064,0.402472913265228,0.915428578853607,-1,0,-0,-1,0,-0,-1,0,-0,-0.999998450279236,-0.00175327365286648,-3.89304955576205e-019,-0.999998450279236,-0.00175327365286648,-3.89304955576205e-019,-0.999998450279236,-0.00175327365286648,-3.89304955576205e-019,-0.99999862909317,0.00167120643891394,3.71082373476815e-019,-0.99999862909317,0.00167120643891394,3.71082373476815e-019,-0.99999862909317,0.00167120643891394,3.71082373476815e-019,-0.999992609024048,0.00383971445262432,8.525878786579e-019,-0.999992609024048,0.00383971445262432,8.525878786579e-019,-0.999992609024048,0.00383971445262432,8.525878786579e-019,-0.999935507774353,0.0113567225635052,2.52169897485669e-018,-0.999935507774353,0.0113567225635052,2.52169897485669e-018,-0.999935507774353,0.0113567225635052,2.52169897485669e-018,-1,0,-0,-1,0,-0,-1,0,-0,-0.0135743897408247,0.402437061071396,0.915347039699554,-0.0135743897408247,0.402437061071396,0.915347039699554,-0.0135743897408247,0.402437061071396,0.915347039699554,0.00287458207458258,0.402472466230392,0.915427625179291,0.00287458207458258,0.402472466230392,0.915427625179291,0.00287458207458258,0.402472466230392,0.915427625179291,0,0.402474135160446,0.915431380271912,0,0.402474135160446,0.915431380271912,0,0.402474135160446,0.915431380271912,-0.000126948594697751,0.402474135160446,0.915431380271912,-0.000126948594697751,0.402474135160446,0.915431380271912,-0.000126948594697751,0.402474135160446,0.915431380271912,
- 0,0.402474135160446,0.915431380271912,0,0.402474135160446,0.915431380271912,0,0.402474135160446,0.915431380271912,-0.00247401325032115,0.402472913265228,0.915428578853607,-0.00247401325032115,0.402472913265228,0.915428578853607,-0.00247401325032115,0.402472913265228,0.915428578853607,-0.00636723544448614,0.999979734420776,2.22040105062499e-016,-0.00636723544448614,0.999979734420776,2.22040105062499e-016,-0.00636723544448614,0.999979734420776,2.22040105062499e-016,0.0015716963680461,0.99999874830246,2.22044326992345e-016,0.0015716963680461,0.99999874830246,2.22044326992345e-016,0.0015716963680461,0.99999874830246,2.22044326992345e-016,-0,1,2.22044604925031e-016,-0,1,2.22044604925031e-016,-0,1,2.22044604925031e-016,0.000592464173678309,0.999999821186066,2.22044565220362e-016,0.000592464173678309,0.999999821186066,2.22044565220362e-016,0.000592464173678309,0.999999821186066,2.22044565220362e-016,-0,1,2.22044604925031e-016,-0,1,2.22044604925031e-016,-0,1,2.22044604925031e-016,0.00473690452054143,0.999988794326782,2.22042116765749e-016,0.00473690452054143,0.999988794326782,2.22042116765749e-016,0.00473690452054143,0.999988794326782,2.22042116765749e-016,0.969572007656097,0.242624148726463,0.0326133482158184,0.999997437000275,-0.000393582828110084,0.00223626615479589,0.999997437000275,-0.00025046628434211,0.00225419667549431,0.999993801116943,0.000610677117947489,-0.00346975610591471,0.969582974910736,0.243191406130791,0.0276943519711494,0.971390664577484,0.235974475741386,0.0267639961093664,0.971386849880219,0.230248391628265,0.0582522712647915,0.999998033046722,-0.000580697320401669,0.00189903716091067,0.999998033046722,-0.000344394444255158,0.0019567864947021,0.301965892314911,0.945801913738251,0.119479939341545,0.971390664577484,0.235974371433258,0.026764590293169,0.969582974910736,0.243191868066788,0.0276903286576271,0.999994397163391,0.0009788628667593,-0.00320114614441991,0.971403241157532,0.230445325374603,0.05719143897295,0.969768285751343,0.236819967627525,0.058872077614069,0.969966948032379,0.228414118289948,0.0836130976676941,
- 0.99999737739563,-0.000868407427333295,0.00213483488187194,0.99999737739563,-0.000673950358759612,0.0022039997857064,0.971389949321747,0.235982835292816,0.0267170257866383,0.301954537630081,0.946423947811127,0.114478014409542,0.320140421390533,0.940519750118256,0.113722935318947,0.971657991409302,0.217036738991737,0.0936789065599442,0.999997735023499,-0.000796938198618591,0.00195913971401751,0.969806134700775,0.223937571048737,0.0965823382139206,0.97170490026474,0.2142363935709,0.0994612649083138,0.999997437000275,-0.000997496070340276,0.00203061709180474,0.999997437000275,-0.000852696190122515,0.00209621153771877,0.316649943590164,0.917135238647461,0.242066085338593,0.969768702983856,0.236813887953758,0.0588901415467262,0.971403121948242,0.230444923043251,0.057193536311388,0.316720008850098,0.874498188495636,0.367343693971634,0.971659004688263,0.216995805501938,0.0937636643648148,0.969804644584656,0.223911955952644,0.0966561287641525,0.971461474895477,0.231306239962578,0.0525359585881233,0.320026606321335,0.921770095825195,0.218913018703461,0.316053777933121,0.923064053058624,0.219232231378555,0.971635699272156,0.217892214655876,0.0919080823659897,0.316711783409119,0.87434583902359,0.367713272571564,0.321173489093781,0.872961282730103,0.367132484912872,0.321165889501572,0.873255848884583,0.366437941789627,0.316727370023727,0.874636054039001,0.367008984088898,0.330384969711304,0.870320618152618,0.365223169326782,0.301955372095108,0.946390211582184,0.114754267036915,0.334105491638184,0.935694098472595,0.113358154892921,0.320144563913345,0.94048684835434,0.113982491195202,0.320018023252487,0.92166393995285,0.219372406601906,0.333704590797424,0.917070686817169,0.218226447701454,0.316067516803741,0.9229496717453,0.219693601131439,0.334044992923737,0.936200499534607,0.109282828867435,0.301940619945526,0.946886539459229,0.110624432563782,0.355603784322739,0.928340971469879,0.108301468193531,0.253608256578445,0.960721433162689,0.112682104110718,0.334048599004745,0.936171770095825,0.109516672790051,0.355603367090225,0.928315877914429,0.1085175126791,
- 0.317221373319626,0.886532008647919,0.336796194314957,0.330416202545166,0.8823162317276,0.335176587104797,0.329757124185562,0.88253128528595,0.335259169340134,0.316189825534821,0.921895086765289,0.223905086517334,0.333608210086823,0.916093468666077,0.222437605261803,0.329915970563889,0.917352318763733,0.222755759954453,0.334141999483109,0.935354471206665,0.116022191941738,0.253615021705627,0.959930300712585,0.119219586253166,0.271971255540848,0.954972565174103,0.118571043014526,0.271798223257065,0.935266256332397,0.226721823215485,0.329904943704605,0.917465448379517,0.222305789589882,0.333618730306625,0.916197717189789,0.221991956233978,0.329744547605515,0.882715106010437,0.334787428379059,0.330423891544342,0.882494509220123,0.334698975086212,0.267143785953522,0.9008828997612,0.342117249965668,0.330248147249222,0.913401544094086,0.237978518009186,0.27148449420929,0.931282043457031,0.242919489741325,0.266554594039917,0.932608902454376,0.243288591504097,0.266654133796692,0.887137830257416,0.376672387123108,0.268501967191696,0.886663496494293,0.376476377248764,0.330440282821655,0.868693649768829,0.369026571512222,0.266654133796692,0.887137830257416,0.376672387123108,-0.0454188771545887,0.919825315475464,0.389690369367599,0.268501967191696,0.886663496494293,0.376476377248764,0.253615081310272,0.959888160228729,0.119558542966843,-0.0390351600944996,0.991493105888367,0.124168284237385,0.271975666284561,0.95493084192276,0.11889711022377,-0.0390991158783436,0.993117570877075,0.110402539372444,0.253590762615204,0.961461246013641,0.106226816773415,-0.0469030812382698,0.992781817913055,0.110382825136185,0.271490126848221,0.931348204612732,0.242659449577332,-0.0476435050368309,0.966278910636902,0.253051787614822,0.266549319028854,0.932678699493408,0.243027001619339,-0.0477770455181599,0.975455939769745,0.214949354529381,0.272085458040237,0.939908564090729,0.206255897879601,-0.0384195037186146,0.97585541009903,0.215012043714523,-0.0455622747540474,0.909927666187286,0.412256926298141,0.266125530004501,0.877337217330933,0.399320483207703,
- -0.0423221625387669,0.910050272941589,0.412331610918045,-0.0455577485263348,0.910281419754028,0.411475658416748,-0.0423237830400467,0.910405397415161,0.411546856164932,-0.99949061870575,0.0305735319852829,0.00915321335196495,-0.0399480313062668,0.957649886608124,0.285150647163391,0.267045557498932,0.923827886581421,0.274278491735458,-0.047472819685936,0.957328915596008,0.285074889659882,-0.0423431508243084,0.939041197299957,0.341187238693237,0.267236322164536,0.90604043006897,0.328139781951904,-0.0396610610187054,0.939147651195526,0.341216653585434,-0.999496519565582,0.0307221915572882,0.00793121941387653,-0.999483823776245,0.0310920421034098,0.00809718947857618,-0.0423294194042683,0.91169273853302,0.408686429262161,-0.0423436462879181,0.938915848731995,0.341531962156296,-0.0396588295698166,0.939021527767181,0.341563791036606,-0.999503612518311,0.0287395250052214,0.0129095865413547,-0.999501824378967,0.0292742215096951,0.0117990346625447,-0.999999165534973,0.000492748920805752,-0.001211341121234,-0.999999165534973,0.000576457823626697,-0.00117350346408784,-0.999985814094543,0.00201311963610351,-0.00494891917333007,-0.999483823776245,0.0310920421034098,0.00809718947857618,-0.999496519565582,0.0307221915572882,0.00793121941387653,-0.999497294425964,0.0283397324383259,0.0142220370471478,-0.999500870704651,0.0282322019338608,0.0141830537468195,-0.0396637171506882,0.939297914505005,0.340802401304245,-0.999993205070496,-0.00139890529680997,0.00343897589482367,-0.999500870704651,0.0282322019338608,0.0141830537468195,-0.999497294425964,0.0283397324383259,0.0142220370471478,-0.0399461388587952,0.957503378391266,0.28564241528511,-0.047469824552536,0.957184910774231,0.285558700561523,-0.999507665634155,0.0296247713267803,0.0103358263149858,-0.99999988079071,0.000239995628362522,-0.000589989242143929,-0.999507784843445,0.0297725573182106,0.0098887886852026,-0.999999821186066,0.000186241974006407,-0.000609061564318836,-0.999499082565308,0.0295652449131012,0.011295978911221,-0.999506771564484,0.029330488294363,0.0112259462475777,
- -0.0474687814712524,0.957134604454041,0.285727292299271,-0.999996960163116,-0.000732294342014939,0.0023948005400598,-0.999506592750549,0.0292935259640217,0.0113377366214991,-0.999498605728149,0.0295356102287769,0.0114098293706775,-0.0384204350411892,0.975879073143005,0.214904949069023,-0.99950122833252,0.029734943062067,0.0106439553201199,-0.047777283936739,0.975476682186127,0.214854791760445,-0.999999284744263,0.000346611312124878,-0.00113351258914918,-0.99950385093689,0.0308446381241083,0.00637890491634607,-0.999999344348907,0.000196635985048488,-0.00117045233491808,-0.9995037317276,0.0300203990191221,0.00954706128686666,-0.0385084003210068,0.978113353252411,0.204478144645691,-0.999216437339783,0.0379617586731911,0.0112052652984858,-0.999217510223389,0.037992812693119,0.0109996199607849,-0.999995648860931,-0.00049451767699793,0.00294355791993439,-0.999504029750824,0.0300736557692289,0.00934239011257887,-0.0469018630683422,0.992756128311157,0.110614538192749,-0.999231040477753,0.0387509353458881,0.00597564410418272,-0.0390980839729309,0.993091344833374,0.110638879239559,-0.999231040477753,0.0387488640844822,0.0059893736615777,-0.0469115152955055,0.992960393428802,0.108761444687843,-0.999499976634979,0.0311974342912436,0.0051633408293128,-0.999499678611755,0.0311846677213907,0.00528697483241558,-0.999998271465302,-0.000311653653625399,0.00185508118011057,-0.999230980873108,0.0387308336794376,0.00610893545672297,-0.999999463558197,0.00017163110896945,-0.00102161383256316,-0.999501466751099,0.0314729437232018,0.00249346275813878,-0.999999463558197,0.000106163002783433,-0.00102896452881396,-0,0.173335865139961,-0.984862864017487,-1.86264514923096e-009,0.114005908370018,-0.993480086326599,-0,0.110431522130966,-0.993883728981018,0.0218648668378592,0.17329441010952,-0.984627306461334,0.0217360481619835,0.181491106748581,-0.983152329921722,0.0228272695094347,0.108249321579933,-0.993861675262451,0.0106303701177239,0.29240283370018,-0.956236243247986,0.00932112336158752,0.184499979019165,-0.982788324356079,0.00918064452707767,0.173328548669815,-0.984821259975433,
- 0.146433278918266,0.14956621825695,-0.977848291397095,0.0312553234398365,0.0319240316748619,-0.999001502990723,0.0892335176467896,0.0911426767706871,-0.99183189868927,-0.000528465956449509,0.18686543405056,-0.982385396957397,-0.00604894245043397,0.292414009571075,-0.956272780895233,-0.0077938511967659,0.325335651636124,-0.945566475391388,0.00899976678192616,0.376782864332199,-0.926257908344269,0.00586609542369843,0.322099655866623,-0.946687638759613,0.00418273732066154,0.292416781187058,-0.956281900405884,-0.0461954474449158,0.273511648178101,-0.960758805274963,-0.112607277929783,0.212426155805588,-0.9706671833992,-0.0377575606107712,0.281087070703506,-0.958939254283905,0.00801369827240705,0.37678599357605,-0.92626565694809,0.00419189035892487,0.436545521020889,-0.899672448635101,0.0114766880869865,0.320751905441284,-0.947093725204468,-0,0.437465727329254,-0.899235129356384,-0,0.376798123121262,-0.926295399665833,-0,0.440903872251511,-0.897554337978363,0.00460316240787506,0.322401493787766,-0.946591854095459,0.00136359792668372,0.319829791784287,-0.947474122047424,-0.124945268034935,0.215086385607719,-0.968569338321686,0.0986812263727188,0.413637608289719,-0.905077993869781,-0.000867091119289398,0.326137781143188,-0.945321917533875,-0.00298874080181122,0.324204653501511,-0.945982217788696,-0.00252407393418252,0.179722219705582,-0.983714163303375,0.00280938274227083,0.18606598675251,-0.982533276081085,0.0346803292632103,0.223707109689713,-0.974039256572723,-0.0304576233029366,0.408298373222351,-0.91234028339386,0.000879161176271737,0.437273442745209,-0.899328291416168,-0.00529785454273224,0.431630671024323,-0.902034878730774,0.00774426013231277,0.407995045185089,-0.912951350212097,-0.030110627412796,0.407351344823837,-0.912775039672852,0.00355574488639832,0.407952606678009,-0.912996232509613,-0.00477217836305499,0.177648559212685,-0.984082400798798,-0.015125235542655,0.177633047103882,-0.983980655670166,-0.00181112089194357,0.17764949798584,-0.984092235565186,-0.0141769889742136,0.203662127256393,-0.978938579559326,
- -0.0107826134189963,0.203669384121895,-0.978980302810669,0.0415345504879951,0.203484520316124,-0.978196799755096,0.0412870831787586,-9.31322574615479e-010,-0.999147415161133,0.0582343451678753,-1.86264492718635e-009,-0.9983029961586,0.0419797711074352,-0,-0.999118506908417,0.0425830185413361,0.0446831323206425,-0.99809330701828,0.0255288481712341,0.0267878845334053,-0.999315142631531,0.030052188783884,0.031534306704998,-0.999050796031952,0.00758763402700424,0.302144706249237,-0.953231930732727,0.0473472326993942,0.301558375358582,-0.952271461486816,0.00253999978303909,0.302184909582138,-0.953245937824249,0.0112791284918785,0.29159677028656,-0.956474840641022,0.00641340762376785,0.291625827550888,-0.956510961055756,-0.0462897568941116,0.291498243808746,-0.955450654029846,0.0333694480359554,0.0563542805612087,-0.99785304069519,0.0212883464992046,0.0430288054049015,-0.998847007751465,0.0370444171130657,0.0604065209627151,-0.997486233711243,0.0381558313965797,0.203490749001503,-0.978333115577698,0.00133441761136055,0.16913965344429,-0.985591232776642,-0.000937875360250473,0.167005598545074,-0.985955595970154,-0.00276025384664536,0.334473788738251,-0.942400991916656,-0.00790960248559713,0.330459594726563,-0.943786978721619,0.0268952324986458,0.357300281524658,-0.933602273464203,-0.0341895669698715,0.291385173797607,-0.955994665622711,-0.00591979175806046,0.325099319219589,-0.94566136598587,-0.00152618438005447,0.330278187990189,-0.943882465362549,-0.0223304778337479,0.484703630208969,-0.874393343925476,-0.0227019786834717,0.484321802854538,-0.874595403671265,-0.0420040301978588,0.464257329702377,-0.884703874588013,-0.0333069674670696,0.436109334230423,-0.899277091026306,-0.00762294139713049,0.436338752508163,-0.899750173091888,-0.00407533347606659,0.436347812414169,-0.899768888950348,-0.0322339236736298,0.245021834969521,-0.968981564044952,-0.0206382498145103,0.245103791356087,-0.969277143478394,0.00965205952525139,0.245162293314934,-0.969434022903442,-8.74191437434009e-018,2.58493941422821e-026,-1,-1.04902962565914e-017,5.16987882845642e-026,-1,
- 0.032503142952919,9.31322574615479e-010,-0.999471664428711,-0.0215485971421003,0.248226553201675,-0.968462347984314,0.02223901450634,0.248126178979874,-0.968472480773926,0.00409968011081219,0.248225495219231,-0.968693614006042,0.00123610987793654,0.189801275730133,-0.981821775436401,0.00747250951826572,0.189801752567291,-0.981793999671936,-0.00460754707455635,0.18979412317276,-0.981813192367554,0.00400917232036591,0.311373502016068,-0.950279176235199,-0.0101973600685596,0.311167269945145,-0.950300455093384,-0.00271029211580753,0.311283826828003,-0.950313150882721,-0.00689533818513155,0.440698534250259,-0.897628784179688,0.00292124412953854,0.434471845626831,-0.900680720806122,-0.00394877744838595,0.438836067914963,-0.898558437824249,0.00498270802199841,0.316290676593781,-0.948649346828461,0.00747228879481554,0.316270083189011,-0.948639810085297,0.00256805843673646,0.316308706998825,-0.948652803897858,-0.00235239486210048,0.319308340549469,-0.947647929191589,0.00510742794722319,0.319259434938431,-0.947653651237488,0.00169792771339417,0.319283962249756,-0.947657585144043,0.00275602214969695,0.43095138669014,-0.902371048927307,-0.0113289905712008,0.440555304288864,-0.897653996944427,0.0863255187869072,0.371175765991211,-0.924541234970093,0.06109419465065,0.371128380298615,-0.926569581031799,0.00860803015530109,0.401782900094986,-0.915694534778595,0.00158185511827469,0.405768871307373,-0.913974344730377,-0,0.376798123121262,-0.926295399665833,-0,0.440903931856155,-0.897554397583008,-0,0.440903872251511,-0.897554337978363,-0.00342617370188236,0.440804451704025,-0.897596716880798,-0.00313460384495556,0.376796275377274,-0.92629086971283,-0.00310296751558781,0.369940280914307,-0.929050385951996,0.00475501175969839,0.310865730047226,-0.950442016124725,-0.0804378837347031,0.366479277610779,-0.926942706108093,0.000267313764197752,0.3138807117939,-0.949462354183197,-0.00264158681966364,0.376796841621399,-0.926292240619659,-0.0027500856667757,0.313789635896683,-0.949488639831543,-0.00265409611165524,0.369953900575638,-0.929046332836151,
- 0.000267313764197752,0.3138807117939,-0.949462354183197,0.00712343864142895,0.309270709753037,-0.950947344303131,0.00475501175969839,0.310865730047226,-0.950442016124725,0.000808491255156696,0.313896745443344,-0.949456751346588,0.00163159985095263,0.376797616481781,-0.926294207572937,0.000530771969351918,0.292419284582138,-0.956290066242218,-0.00531962374225259,0.0538239926099777,-0.998536288738251,-0.331986755132675,0.286159515380859,-0.898831188678741,-0.259319096803665,0.235261037945747,-0.936699450016022,0.000949708395637572,0.292419195175171,-0.956289827823639,0.00161587237380445,0.251830160617828,-0.967770099639893,0.000593120232224464,0.313890367746353,-0.949459075927734,-0.287570685148239,0.232376053929329,-0.929141819477081,0.00260969530791044,0.0662862658500671,-0.997797250747681,-0.00452531035989523,0.0704649165272713,-0.997504055500031,0.0106707541272044,0.25209191441536,-0.967644453048706,0.0119838807731867,0.292398303747177,-0.956221520900726,0.00784118287265301,0.165673121809959,-0.986149549484253,-0.0116407731547952,-0.29567563533783,-0.955217480659485,-0.481936007738113,0.205900132656097,-0.851670682430267,-0.41215181350708,0.119841493666172,-0.903199315071106,0.0208712853491306,0.165642127394676,-0.985965073108673,0.0213137865066528,0.14990097284317,-0.988471329212189,0.0183170177042484,0.252296894788742,-0.967476546764374,0.369197428226471,0.152881726622581,-0.916690051555634,0.0185653381049633,0.3929663002491,-0.919365465641022,0.0155401797965169,0.394720584154129,-0.918669760227203,-1.01477458756821e-017,7.25064504188866e-018,-1,-0.194164678454399,0.138732194900513,-0.971109449863434,-0.136302947998047,0.0973895266652107,-0.985868632793427,-0.0316343382000923,0.165595293045044,-0.985686302185059,-0.0321048498153687,0.101568378508091,-0.994310438632965,-0.031778909265995,0.147799462080002,-0.988506674766541,-0,0.10262980312109,-0.994719684123993,0,0.165678218007088,-0.986179888248444,0,0.102629795670509,-0.994719624519348,0.971528887748718,0.16844879090786,0.166603580117226,1,5.24144772029445e-009,-5.01355890136779e-009,
- 1,4.89781637469378e-009,-5.3534274790934e-009,0.971466422080994,0.173099920153618,0.16214045882225,1,0.000144886304042302,-0.000158364113303833,0.969514727592468,0.178828313946724,0.167516231536865,0.969606697559357,0.18384176492691,0.161446675658226,0.99998152256012,-0.00411023804917932,0.00449258647859097,0.999981462955475,-0.00369182741269469,0.00484252674505115,0.319109857082367,0.69365668296814,0.64576256275177,0.971465826034546,0.173134341835976,0.162107393145561,0.969515979290009,0.178881034255028,0.1674525141716,0.97149658203125,0.171213492751122,0.163952276110649,0.319026082754135,0.690203070640564,0.64949369430542,0.318416446447372,0.690353393554688,0.64963310956955,0.319026082754135,0.690203070640564,0.64949369430542,0.333196967840195,0.686617732048035,0.646170139312744,0.318416446447372,0.690353393554688,0.64963310956955,0.999996542930603,0.00160888931713998,-0.00211036112159491,0.969960570335388,0.200458541512489,0.137815237045288,0.969427943229675,0.202186837792397,0.139032274484634,0.318526715040207,0.773803651332855,0.547511339187622,0.969433665275574,0.202006071805954,0.139254659414291,0.969956636428833,0.200314119458199,0.138052433729172,0.96997994184494,0.201222032308578,0.136560037732124,1,1.93492977196286e-009,-2.53802467931052e-009,1,1.65274349761546e-009,-2.72953104563101e-009,1,-2.98415181454459e-009,6.0748810426503e-009,0.969987750053406,0.21422815322876,0.115022420883179,1,-3.50804740811839e-009,5.79359360486364e-009,0.970019102096558,0.21268193423748,0.117598541080952,0.999991059303284,-0.00186487555038184,0.00379635393619537,0.971638023853302,0.206888005137444,0.114529147744179,0.320825725793839,0.835847854614258,0.445453971624374,0.970019102096558,0.21268193423748,0.117598541080952,0.971638023853302,0.206888005137444,0.114529147744179,0.970015645027161,0.212874323129654,0.117278218269348,0.320874184370041,0.837133049964905,0.442998945713043,0.318289488554001,0.837909758090973,0.443394929170609,0.970036387443542,0.204241454601288,0.131586447358131,0.317755222320557,0.788754940032959,0.526210308074951,
- 0.317772030830383,0.788750231266022,0.526207089424133,0.320874184370041,0.837133049964905,0.442998945713043,0.331480026245117,0.83387291431427,0.441335439682007,0.318289488554001,0.837909758090973,0.443394929170609,0.317755222320557,0.788754940032959,0.526210308074951,0.33339124917984,0.784318327903748,0.52315878868103,0.317772030830383,0.788750231266022,0.526207089424133,0.332135826349258,0.824056029319763,0.458930820226669,0.320463716983795,0.827604115009308,0.460840940475464,0.326630741357803,0.825747072696686,0.459841459989548,0.333454132080078,0.670906186103821,0.662339210510254,0.333327233791351,0.670938491821289,0.662370443344116,0.318552821874619,0.674604058265686,0.665908098220825,0.33307009935379,0.750991940498352,0.570153892040253,0.333274811506271,0.750934898853302,0.570109307765961,0.319157212972641,0.754770934581757,0.573114037513733,0.333503097295761,0.672751903533936,0.660439729690552,0.245213717222214,0.692342638969421,0.678625047206879,0.333320707082748,0.672799050807953,0.660483717918396,0.32657915353775,0.824843108654022,0.461497604846954,0.272740423679352,0.839541494846344,0.469875186681747,0.332189053297043,0.823142170906067,0.460529714822769,0.263149321079254,0.699233293533325,0.664699375629425,0.245148926973343,0.702945113182068,0.667660236358643,0.333716630935669,0.682102680206299,0.650668263435364,0.333274811506271,0.750934898853302,0.570109307765961,0.33307009935379,0.750991940498352,0.570153892040253,0.26269668340683,0.768275618553162,0.583731949329376,0.272911220788956,0.772053480148315,0.573979794979095,0.262500196695328,0.774347841739655,0.575742185115814,0.333202362060547,0.756816625595093,0.562320828437805,0.263057231903076,0.693391084671021,0.670827627182007,-0.0442942380905151,0.718824684619904,0.693778812885284,0.245193466544151,0.696814656257629,0.674039781093597,0.272495895624161,0.845505118370056,0.459202647209167,0.326881557703018,0.830419957637787,0.451166421175003,0.26789602637291,0.846645057201386,0.459808588027954,-0.0444110631942749,0.711838185787201,0.700938045978546,0.262921124696732,0.686278998851776,0.678154647350311,
- -0.0444967150688171,0.71183580160141,0.700935065746307,-0.0444967150688171,0.71183580160141,0.700935065746307,-0.999485850334167,0.026394858956337,0.0182086490094662,-0.0444110631942749,0.711838185787201,0.700938045978546,0.272911220788956,0.772053480148315,0.573979794979095,-0.0456350967288017,0.800887048244476,0.597074031829834,0.262500196695328,0.774347841739655,0.575742185115814,-0.0443538501858711,0.760994791984558,0.647240102291107,0.263290822505951,0.735548138618469,0.624217092990875,-0.0452477224171162,0.760962307453156,0.647216439247131,0.26789602637291,0.846645057201386,0.459808588027954,-0.0420792512595654,0.87834221124649,0.476176768541336,0.272495895624161,0.845505118370056,0.459202647209167,-0.0421754643321037,0.888423800468445,0.457082599401474,0.268223106861115,0.85597687959671,0.441995471715927,-0.0457672476768494,0.888290822505951,0.456995487213135,-0.999494314193726,0.026079323142767,0.0181943625211716,-0.999487161636353,0.0262424144893885,0.018354520201683,-0.0444960407912731,0.713068962097168,0.699680507183075,-0.0443538501858711,0.760994791984558,0.647240102291107,-0.0452477224171162,0.760962307453156,0.647216439247131,-0.999499261379242,0.0217416733503342,0.0229915250092745,-0.99950647354126,0.0223549790680408,0.0220737773925066,-1,7.60649410125325e-009,-8.31407565016207e-009,-1,8.14061262843779e-009,-7.78667352818729e-009,-0.999986052513123,0.00357206747867167,-0.00390435312874615,-0.999487161636353,0.0262424144893885,0.018354520201683,-0.999494314193726,0.026079323142767,0.0181943625211716,-0.999993324279785,-0.00247068936005235,0.00270052114501596,-0.999498844146729,0.0216387752443552,0.0231053028255701,-0.999491333961487,0.021822115406394,0.0232604518532753,-0.999491333961487,0.021822115406394,0.0232604518532753,-0.999498844146729,0.0216387752443552,0.0231053028255701,-0.0452641658484936,0.762390315532684,0.645532488822937,-1,-2.2730235471613e-009,2.48446796469182e-009,-0.999501466751099,0.0242383442819119,0.0202330313622952,-1,-2.04146322069221e-009,2.67776334439418e-009,-0.0455445386469364,0.789926946163177,0.61150723695755,
- 0.27258688211441,0.761264860630035,0.588364064693451,-0.0407381169497967,0.790098130702972,0.611625254154205,-0.0455508977174759,0.790649116039276,0.610572874546051,-0.0407522693276405,0.790843784809113,0.610659897327423,-0.999452829360962,0.0184975024312735,0.0274247899651527,-0.0416127219796181,0.841506063938141,0.538642704486847,0.273338079452515,0.810782432556152,0.517608046531677,-0.0416127219796181,0.841506063938141,0.538642704486847,-0.999997973442078,-0.00123672501649708,0.00162219768390059,-0.99950110912323,0.0239821467548609,0.0205540712922812,-0.999500274658203,0.024003628641367,0.0205701943486929,-0.999500274658203,0.024003628641367,0.0205701943486929,-0.99950110912323,0.0239821467548609,0.0205540712922812,-0.0409043841063976,0.798991501331329,0.599949479103088,-0.0416127219796181,0.841506063938141,0.538642704486847,-0.999502182006836,0.0244134608656168,0.019986430183053,-0.0416127219796181,0.841506063938141,0.538642704486847,-1,3.35950045560196e-009,-4.4066172932844e-009,-0.999504804611206,0.0259755440056324,0.0177611354738474,-1,2.83973378145674e-009,-4.76201522658926e-009,-0.999503135681152,0.0246597286313772,0.0196356326341629,-0.0416614674031734,0.844849348068237,0.533379793167114,-0.999491095542908,0.0249825939536095,0.0198393538594246,-0.999491095542908,0.0249825939536095,0.0198393538594246,-0.999994158744812,-0.00176517979707569,0.00296007073484361,-0.999503135681152,0.0246597286313772,0.0196356326341629,-0.0457725897431374,0.887459337711334,0.458607494831085,-0.999445974826813,0.032658614218235,0.00643390882760286,-0.042168065905571,0.887584865093231,0.458710163831711,-0.999480307102203,0.0306805968284607,0.00988977029919624,-0.999983429908752,0.00253759208135307,-0.00516581255942583,-0.999983429908752,0.0029492371249944,-0.00494564371183515,-0.999485433101654,0.0302775260061026,0.0105938678607345,-0.0457853376865387,0.885360360145569,0.462645471096039,-0.999497056007385,0.0299501717090607,0.01042265817523,-0.999989330768585,0.00204746448434889,-0.0041680526919663,-0.999485433101654,0.0302775260061026,0.0105938678607345,
- -0.999497056007385,0.0299501717090607,0.01042265817523,-0.971548914909363,0.162077128887177,0.172695636749268,-0.999958872795105,-0.00612675677984953,0.00669668847694993,-0.999958872795105,-0.00655661104246974,0.00627154158428311,-0.999989628791809,-0.0030817030929029,0.00336837349459529,-0.971514999866486,0.169793039560318,0.165315106511116,-0.969433665275574,0.175909861922264,0.171038538217545,-1,1.17458132109505e-009,-1.28384480824195e-009,-0.9696364402771,0.187640979886055,0.156831234693527,-1,1.05498154656658e-009,-1.38380684688855e-009,-0.971514999866486,0.169793039560318,0.165315106511116,-0.31902876496315,0.690308690071106,0.649380147457123,-0.969433665275574,0.175909861922264,0.171038538217545,-0.319026082754135,0.690203130245209,0.649493634700775,-0.97149658203125,0.171213507652283,0.163952246308327,-0.31841641664505,0.690353512763977,0.64963299036026,-0.319026082754135,0.690203130245209,0.649493634700775,-0.31841641664505,0.690353512763977,0.64963299036026,-0.333196967840195,0.686617791652679,0.646170079708099,-0.970007061958313,0.202463656663895,0.134516730904579,-0.999977707862854,0.00404867623001337,-0.00531060108914971,-0.969342827796936,0.204617843031883,0.136037603020668,-0.969342827796936,0.204617843031883,0.136037603020668,-0.318406403064728,0.776541888713837,0.543691039085388,-0.970007061958313,0.202463656663895,0.134516730904579,-1,-1.93492977196286e-009,2.53802467931052e-009,-0.96997994184494,0.201222032308578,0.136560037732124,-1,-1.65274349761546e-009,2.72953104563101e-009,-0.97004097700119,0.211192712187767,0.120075657963753,-0.999981701374054,-0.00266827875748277,0.00543185323476791,-0.999981641769409,-0.00313669512979686,0.00518029974773526,-0.999991059303284,-0.00186487555038184,0.00379635393619537,-0.970019102096558,0.212681919336319,0.117598555982113,-0.971638023853302,0.206887990236282,0.11452916264534,-0.970019102096558,0.212681919336319,0.117598555982113,-0.320825725793839,0.835847854614258,0.445454031229019,-0.971638023853302,0.206887990236282,0.11452916264534,-0.320874184370041,0.837133049964905,0.442998975515366,
- -0.970015645027161,0.212874323129654,0.117278225719929,-0.318289488554001,0.837909817695618,0.443395048379898,-0.317755222320557,0.788754880428314,0.526210367679596,-0.970036387443542,0.204241439700127,0.131586462259293,-0.317772030830383,0.788750231266022,0.526207149028778,-0.331480026245117,0.83387291431427,0.441335499286652,-0.320874184370041,0.837133049964905,0.442998975515366,-0.318289488554001,0.837909817695618,0.443395048379898,-0.33339124917984,0.784318268299103,0.52315890789032,-0.317755222320557,0.788754880428314,0.526210367679596,-0.317772030830383,0.788750231266022,0.526207149028778,-0.320463716983795,0.82760363817215,0.460841923952103,-0.332135856151581,0.82405549287796,0.458931744098663,-0.326630741357803,0.825746536254883,0.459842413663864,-0.318765431642532,0.681003153324127,0.659259736537933,-0.333294630050659,0.677364468574524,0.655814051628113,-0.333613812923431,0.677282512187958,0.65573638677597,-0.319157183170319,0.754771411418915,0.57311338186264,-0.333274811506271,0.75093537569046,0.570108652114868,-0.33307009935379,0.75099241733551,0.570153295993805,-0.333613812923431,0.677282512187958,0.65573638677597,-0.333294630050659,0.677364468574524,0.655814051628113,-0.245193853974342,0.696743130683899,0.67411345243454,-0.272740453481674,0.839540958404541,0.469876140356064,-0.326579093933105,0.824842572212219,0.461498528718948,-0.332189053297043,0.823141515254974,0.460530668497086,-0.245148926973343,0.70294600725174,0.667659342288971,-0.263149321079254,0.699234187602997,0.664698421955109,-0.333716630935669,0.68210357427597,0.650667309761047,-0.33307009935379,0.75099241733551,0.570153295993805,-0.333274811506271,0.75093537569046,0.570108652114868,-0.262696653604507,0.76827609539032,0.583731412887573,-0.333202362060547,0.756816983222961,0.562320411205292,-0.262500196695328,0.774348199367523,0.575741767883301,-0.272911250591278,0.772053837776184,0.573979496955872,0.0443082563579082,0.718003928661346,0.694627344608307,-0.263043403625488,0.692600190639496,0.671649634838104,-0.245197832584381,0.696016371250153,0.674862444400787,
- -0.326881557703018,0.830419540405273,0.45116713643074,-0.272495895624161,0.845504701137543,0.459203332662582,-0.267895996570587,0.846644639968872,0.459809273481369,-0.262921124696732,0.686278998851776,0.678154647350311,0.0444110631942749,0.711838185787201,0.700938045978546,0.0444967150688171,0.71183580160141,0.700935065746307,0.0444967150688171,0.71183580160141,0.700935065746307,0.0444110631942749,0.711838185787201,0.700938045978546,0.999485850334167,0.026394858956337,0.0182086490094662,-0.263290822505951,0.735548138618469,0.624217092990875,0.0443538501858711,0.760994791984558,0.647240102291107,0.0452477224171162,0.760962307453156,0.647216439247131,-0.272911250591278,0.772053837776184,0.573979496955872,-0.262500196695328,0.774348199367523,0.575741767883301,0.045635100454092,0.8008873462677,0.597073614597321,0.999487161636353,0.0262424144893885,0.018354520201683,0.999494314193726,0.026079323142767,0.0181943625211716,0.0444960407912731,0.713068962097168,0.699680507183075,0.0452477224171162,0.760962307453156,0.647216439247131,0.0443538501858711,0.760994791984558,0.647240102291107,0.999499261379242,0.0217416733503342,0.0229915250092745,1,-7.60649410125325e-009,8.31407565016207e-009,0.99950647354126,0.0223549623042345,0.0220737922936678,1,-8.14061262843779e-009,7.78667352818729e-009,0.999487161636353,0.0262424144893885,0.018354520201683,0.999986052513123,0.00357206747867167,-0.00390435312874615,0.999494314193726,0.026079323142767,0.0181943625211716,0.999993324279785,-0.00247068936005235,0.00270052114501596,0.999491333961487,0.021822115406394,0.0232604518532753,0.999498844146729,0.0216387752443552,0.0231053028255701,0.999498844146729,0.0216387752443552,0.0231053028255701,0.999491333961487,0.021822115406394,0.0232604518532753,0.0452641658484936,0.762390315532684,0.645532488822937,0.999501466751099,0.0242383498698473,0.0202330276370049,1,2.2730235471613e-009,-2.48446796469182e-009,1,2.04146322069221e-009,-2.67776334439418e-009,-0.272819340229034,0.768708765506744,0.578495025634766,0.0456101223826408,0.797703385353088,0.601322829723358,
- 0.040883794426918,0.797873735427856,0.601436734199524,0.040883794426918,0.797873735427856,0.601436734199524,0.0456101223826408,0.797703385353088,0.601322829723358,0.999500513076782,0.0236909799277782,0.0209189262241125,0.999997973442078,-0.00123672501649708,0.00162219768390059,0.999500274658203,0.024003628641367,0.0205701943486929,0.99950110912323,0.0239821467548609,0.0205540712922812,0.99950110912323,0.0239821467548609,0.0205540712922812,0.999500274658203,0.024003628641367,0.0205701943486929,0.0409043841063976,0.798991501331329,0.599949479103088,0.999504804611206,0.025975538417697,0.017761142924428,1,-3.35950045560196e-009,4.4066172932844e-009,1,-2.83973378145674e-009,4.76201522658926e-009,-0.273338109254837,0.810782551765442,0.517608046531677,0.0416127219796181,0.841506063938141,0.538642704486847,0.0416127219796181,0.841506063938141,0.538642704486847,0.999502182006836,0.0244134608656168,0.019986430183053,0.0416127219796181,0.841506063938141,0.538642704486847,0.0416127219796181,0.841506063938141,0.538642704486847,-0.267895996570587,0.846644639968872,0.459809273481369,-0.272495895624161,0.845504701137543,0.459203332662582,0.0420792475342751,0.878341853618622,0.476177513599396,-0.268085181713104,0.851699948310852,0.450263857841492,0.0421348661184311,0.883966505527496,0.46564781665802,0.0457939654588699,0.883831977844238,0.465557783842087,0.999994158744812,-0.00176517979707569,0.00296007073484361,0.999491095542908,0.0249825939536095,0.0198393538594246,0.999503135681152,0.0246597286313772,0.0196356326341629,0.0416614674031734,0.844849348068237,0.533379793167114,0.999503135681152,0.0246597286313772,0.0196356326341629,0.999491095542908,0.0249825939536095,0.0198393538594246,0.999486148357391,0.0302159916609526,0.0107013555243611,0.0457939654588699,0.883831977844238,0.465557783842087,0.0421348661184311,0.883966505527496,0.46564781665802,0.999502122402191,0.0278240721672773,0.0148787368088961,1,5.62756996558278e-009,-9.43700229072419e-009,1,4.84205919804026e-009,-9.85704939893139e-009,0.0457853376865387,0.885360360145569,0.462645471096039,
- 0.999485433101654,0.0302775260061026,0.0105938678607345,0.999497056007385,0.0299501717090607,0.01042265817523,0.999485433101654,0.0302775260061026,0.0105938678607345,0.999989330768585,0.00204746448434889,-0.0041680526919663,0.999497056007385,0.0299501717090607,0.01042265817523,0.999980688095093,-0.00564861530438066,0.00260327477008104,0.971616864204407,0.0946706235408783,0.216790482401848,0.971542596817017,0.0948002338409424,0.217066660523415,0.971685290336609,0.100543648004532,0.213819220662117,1,1.28462955828468e-008,-5.92046678349334e-009,1,1.25912826831609e-008,-6.4627823093133e-009,0.334118127822876,0.390165716409683,0.857983648777008,0.971540212631226,0.0942495167255402,0.217316806316376,0.971608519554138,0.0941327810287476,0.217061996459961,0.999954104423523,0.00852370820939541,-0.00437500048428774,0.971736788749695,0.124525375664234,0.200551941990852,0.971517086029053,0.124969363212585,0.201338455080986,0.971707582473755,0.117658562958241,0.204794511198998,1,-2.92773028043314e-009,1.50272883026048e-009,1,-2.77711187379737e-009,1.76489323155948e-009,0.971630811691284,0.118653334677219,0.204584896564484,0.31898108124733,0.45503756403923,0.831379652023315,0.332957118749619,0.452813684940338,0.827103078365326,0.319393128156662,0.474116504192352,0.820488691329956,0.971522033214569,0.124742902815342,0.201455071568489,0.97173684835434,0.124304749071598,0.200688540935516,0.319052755832672,0.457916706800461,0.829769670963287,0.332864910364151,0.45563217997551,0.825590848922729,0.332864910364151,0.45563217997551,0.825590848922729,0.999999642372131,-0.000693048816174269,0.000440442177932709,0.969580590724945,0.140186294913292,0.2006526440382,0.971653580665588,0.135372668504715,0.193813174962997,0.319588124752045,0.541722416877747,0.777431905269623,0.971653878688812,0.135353803634644,0.193824961781502,0.969579577445984,0.140137076377869,0.200691804289818,0.969533026218414,0.138004660606384,0.202387154102325,0.999984979629517,-0.00463504390791059,0.00294563523493707,0.999984920024872,-0.00429247599095106,0.00342530920170248,
- 1,-1.17044747227624e-008,1.11955857917678e-008,0.969642043113709,0.161896124482155,0.183259382843971,1,-1.26659838173282e-008,1.01071995217694e-008,0.969605088233948,0.164165899157524,0.181426897644997,0.999998331069946,0.0013527802657336,-0.0012939638691023,0.971531569957733,0.159000962972641,0.175627708435059,0.317743986845016,0.634561538696289,0.704535603523254,0.969604015350342,0.1642175167799,0.181385174393654,0.971531748771667,0.159019947052002,0.175609648227692,0.969654560089111,0.144665643572807,0.197083711624146,0.318930625915527,0.562376379966736,0.76289975643158,0.319223999977112,0.562317609786987,0.762820422649384,0.969577133655548,0.165609627962112,0.180259898304939,0.317832708358765,0.637773334980011,0.701589345932007,0.319265842437744,0.63745105266571,0.701231420040131,0.318872600793839,0.55998307466507,0.764682412147522,0.333272576332092,0.557093560695648,0.760641932487488,0.319277584552765,0.559903800487518,0.764571487903595,0.317807644605637,0.636843740940094,0.702444553375244,0.330702513456345,0.633828401565552,0.69921201467514,0.319280952215195,0.636505961418152,0.702082574367523,0.332240432500839,0.462105572223663,0.822237610816956,0.332642167806625,0.462037295103073,0.822113573551178,0.31919914484024,0.464271634817123,0.826174318790436,0.332013696432114,0.606477558612823,0.72246241569519,0.316875815391541,0.609839916229248,0.72641932964325,0.332210570573807,0.606432676315308,0.722409605979919,0.332205474376678,0.606291592121124,0.722530364990234,0.272684395313263,0.618383765220642,0.737051367759705,0.33201938867569,0.606333494186401,0.722580671310425,0.332248508930206,0.462357044219971,0.82209300994873,0.265596240758896,0.472280442714691,0.840481877326965,0.332632899284363,0.462292462587357,0.821973860263824,0.263754606246948,0.586628615856171,0.765702545642853,0.333006471395493,0.573360025882721,0.748575329780579,0.271686017513275,0.585277795791626,0.763961136341095,0.268303781747818,0.43634158372879,0.858847677707672,0.333634555339813,0.427165508270264,0.840367555618286,0.265190780162811,0.43672376871109,0.859619796276093,
- 0.265190780162811,0.43672376871109,0.859619796276093,-0.0457486808300018,0.451703578233719,0.890994369983673,0.268303781747818,0.43634158372879,0.858847677707672,-0.0385026037693024,0.422633707523346,0.905482351779938,-0.0456186234951019,0.42249122262001,0.905218303203583,0.264575660228729,0.408544510602951,0.873550832271576,-0.0385026037693024,0.422633707523346,0.905482351779938,-0.999498903751373,0.0111354822292924,0.0296331755816936,-0.0456186234951019,0.42249122262001,0.905218303203583,-0.0458432659506798,0.487505733966827,0.871915519237518,-0.0389892309904099,0.487662941217422,0.872160971164703,0.265590131282806,0.471177995204926,0.841102421283722,-0.999501526355743,0.0130724050104618,0.0287405978888273,-0.0385144390165806,0.423966348171234,0.904858648777008,-0.999503493309021,0.0130460876971483,0.0286844335496426,-0.0458432659506798,0.487505733966827,0.871915519237518,-0.999503493309021,0.0131169483065605,0.0286480616778135,-0.0389892309904099,0.487662941217422,0.872160971164703,-0.999503493309021,0.0130460876971483,0.0286844335496426,-1,-0.000324451917549595,0.000149530038470402,-0.999501526355743,0.0130724050104618,0.0287405978888273,-1,2.03494998629594e-008,-1.06249595788199e-008,-1,2.08328021500392e-008,-9.60120427606626e-009,-0.999503970146179,0.0134449237957597,0.0284797362983227,-0.0434751026332378,0.539422154426575,0.840912461280823,-0.0458441898226738,0.539360105991364,0.840826451778412,0.26543065905571,0.521204948425293,0.81110543012619,0.271625429391861,0.583655714988709,0.765222609043121,-0.0441000908613205,0.605732858181,0.794445037841797,0.263819605112076,0.58496767282486,0.766949832439423,-0.999488949775696,0.0114723220467567,0.0298371985554695,-0.999498724937439,0.0113210799172521,0.0295696649700403,-0.0458489134907722,0.491287261247635,0.869790017604828,-0.999488949775696,0.0114723220467567,0.0298371985554695,-0.999989032745361,-0.00416345149278641,0.00217383750714362,-0.999498724937439,0.0113210799172521,0.0295696649700403,-0.0434751026332378,0.539422154426575,0.840912461280823,-0.999502658843994,0.0148972235620022,0.0277953296899796,
- -0.0458441898226738,0.539360105991364,0.840826451778412,-0.999981641769409,0.00511528924107552,-0.00325083755888045,-0.999981641769409,0.00537208886817098,-0.00280489586293697,-0.999488174915314,0.0209211390465498,0.0242025554180145,-0.044073011726141,0.602160692214966,0.797157526016235,0.271525174379349,0.581031620502472,0.767252445220947,-0.044073011726141,0.602160692214966,0.797157526016235,-0.0444333218038082,0.667256891727448,0.74350118637085,0.273094534873962,0.64142507314682,0.716933250427246,-0.0450324416160584,0.667241036891937,0.743479371070862,-0.999495625495911,0.0154536161571741,0.027743486687541,-0.999503254890442,0.0153233194723725,0.0275412574410439,-0.0434925705194473,0.540977299213409,0.839911818504334,-0.999495625495911,0.0154536161571741,0.027743486687541,-0.999998033046722,-0.00171726767439395,0.00109134754166007,-0.999503254890442,0.0153233194723725,0.0275412574410439,-0.044073011726141,0.602160692214966,0.797157526016235,-0.999497592449188,0.0160183310508728,0.0273526068776846,-0.044073011726141,0.602160692214966,0.797157526016235,-1,1.09957243310532e-008,-8.77436523438746e-009,-1,1.18690293149371e-008,-7.54293338900425e-009,-0.999500393867493,0.0182850807905197,0.0257834270596504,-0.0450324416160584,0.667241036891937,0.743479371070862,-0.999488830566406,0.024604881182313,0.0204160343855619,-0.0444333218038082,0.667256891727448,0.74350118637085,-0.999498605728149,0.0164081212133169,0.0270827896893024,-0.0441100746393204,0.607077598571777,0.793417394161224,-0.999492287635803,0.0165301728993654,0.0272422172129154,-0.999492287635803,0.0165301728993654,0.0272422172129154,-0.999994158744812,-0.00268365652300417,0.00214150361716747,-0.999498605728149,0.0164081212133169,0.0270827896893024,-0.999488592147827,0.0246371570974588,0.0203887391835451,-0.0450031422078609,0.669723629951477,0.741245567798615,-0.999499917030334,0.0243957974016666,0.020121406763792,-1,-1.97585094952046e-008,1.88994455641023e-008,-1,-2.13849098429364e-008,1.70647265207435e-008,-0.999504327774048,0.0208856165409088,0.0235607922077179,
- -0.999499917030334,0.0243957974016666,0.020121406763792,-0.999989330768585,0.00334065384231508,-0.0031954082660377,-0.999488592147827,0.0246371570974588,0.0203887391835451,-0.971699714660645,0.102680511772633,0.212735310196877,-0.999995529651642,0.00273885810747743,-0.00126225640997291,-0.971535563468933,0.102965705096722,0.213346570730209,-0.971535563468933,0.102965705096722,0.213346570730209,-0.334044367074966,0.400064140558243,0.853441834449768,-0.971699714660645,0.102680511772633,0.212735310196877,-1,-1.28462955828468e-008,5.92046678349334e-009,-0.971685290336609,0.100543610751629,0.213819235563278,-1,-1.25912826831609e-008,6.4627823093133e-009,-0.318920135498047,0.452690839767456,0.832683026790619,-0.971664249897003,0.11597054451704,0.205959796905518,-0.333032488822937,0.450421065092087,0.828378081321716,-0.971718788146973,0.119059577584267,0.203930407762527,-0.999995708465576,0.0026291711255908,-0.00134948606137186,-0.971622109413147,0.119255408644676,0.204275995492935,-0.971622109413147,0.119255408644676,0.204275995492935,-0.319290101528168,0.468637585639954,0.823670268058777,-0.971718788146973,0.119059577584267,0.203930407762527,-0.999980330467224,-0.00557581940665841,0.00286192516796291,-0.971643626689911,0.112466715276241,0.20799021422863,-0.999980449676514,-0.00528899114578962,0.00336122792214155,-0.31896123290062,0.454264521598816,0.831809818744659,-0.332984179258347,0.451963692903519,0.827556967735291,-0.332984179258347,0.451963692903519,0.827556967735291,-0.969646573066711,0.144073337316513,0.197556212544441,-0.999990701675415,0.00364724267274141,-0.00231787352822721,-0.971578240394592,0.139596506953239,0.191176906228065,-0.971578240394592,0.139596506953239,0.191176906228065,-0.319525510072708,0.546281397342682,0.774260997772217,-0.969646573066711,0.144073337316513,0.197556212544441,-1,-6.9866556984266e-009,4.44011716282944e-009,-0.969617486000061,0.142181172966957,0.199064522981644,-1,-6.4702483371093e-009,5.16312770315608e-009,-0.969642043113709,0.161896154284477,0.183259353041649,-1,1.17044747227624e-008,-1.11955857917678e-008,
- -1,1.26659838173282e-008,-1.01071995217694e-008,-0.999991059303284,-0.00305919907987118,0.00292619038373232,-0.969671547412872,0.159555330872536,0.185146436095238,-0.97147810459137,0.154702827334404,0.179714649915695,-0.969671547412872,0.159555330872536,0.185146436095238,-0.317607581615448,0.629978179931641,0.708698093891144,-0.97147810459137,0.154702827334404,0.179714649915695,-0.319011092185974,0.565898895263672,0.760256826877594,-0.969691157341003,0.148293480277061,0.194185703992844,-0.31913959980011,0.565873503684998,0.760221779346466,-0.317669987678528,0.632027566432953,0.706842958927155,-0.96966826915741,0.159851357340813,0.184907957911491,-0.319350242614746,0.631644785404205,0.706427872180939,-0.333191841840744,0.563020944595337,0.756300628185272,-0.319011092185974,0.565898895263672,0.760256826877594,-0.31913959980011,0.565873503684998,0.760221779346466,-0.330971568822861,0.62893670797348,0.703488826751709,-0.317669987678528,0.632027566432953,0.706842958927155,-0.319350242614746,0.631644785404205,0.706427872180939,-0.3325434923172,0.464717596769333,0.820641577243805,-0.33232444524765,0.464754998683929,0.820709049701691,-0.319255650043488,0.466939479112625,0.824647426605225,-0.316869616508484,0.609691262245178,0.726546883583069,-0.332019656896591,0.606326937675476,0.722586095333099,-0.332205235958099,0.60628467798233,0.722536325454712,-0.272684425115585,0.618383646011353,0.737051546573639,-0.332205474376678,0.606291353702545,0.722530484199524,-0.332019418478012,0.606333374977112,0.722580850124359,-0.332352995872498,0.465677678585052,0.820174217224121,-0.332508265972137,0.465651780366898,0.820125997066498,-0.265611946582794,0.475546300411224,0.83863353729248,-0.332975804805756,0.57481187582016,0.747474670410156,-0.263700306415558,0.587990820407867,0.764675736427307,-0.271735846996307,0.586633265018463,0.762903094291687,-0.268303722143173,0.436342090368271,0.858847260475159,-0.265190809965134,0.436724364757538,0.859619498252869,-0.333634555339813,0.427166163921356,0.840367317199707,0.0457486845552921,0.451704174280167,0.890994071960449,
- -0.265190809965134,0.436724364757538,0.859619498252869,-0.268303722143173,0.436342090368271,0.858847260475159,-0.264194220304489,0.395095229148865,0.879830241203308,0.0455403290688992,0.408517807722092,0.911613583564758,0.0383739732205868,0.408656865358353,0.911881148815155,0.0384025797247887,0.411689937114716,0.910514533519745,0.0455578714609146,0.411496132612228,0.910272181034088,0.999441862106323,0.00329477991908789,0.0332447290420532,-0.265624761581421,0.479099810123444,0.836604416370392,0.0390369445085526,0.495878875255585,0.867513835430145,0.0458544529974461,0.495720028877258,0.867271065711975,0.999501526355743,0.0130724580958486,0.0287405736744404,0.999503374099731,0.0130461379885674,0.0286844037473202,0.0385144501924515,0.423967987298965,0.904857873916626,0.04585350304842,0.494889497756958,0.867745280265808,0.0390321277081966,0.495023250579834,0.868002593517303,0.999499917030334,0.0170743651688099,0.0266166944056749,0.999503374099731,0.0130461379885674,0.0286844037473202,0.999501526355743,0.0130724580958486,0.0287405736744404,1,-0.000324451335472986,0.000149529776535928,1,-2.03494998629594e-008,1.06249595788199e-008,0.999503970146179,0.0134448828175664,0.0284797567874193,1,-2.08328021500392e-008,9.60120427606626e-009,-0.265521645545959,0.512809157371521,0.816409826278687,0.0458558723330498,0.530672252178192,0.846335768699646,0.0433751977980137,0.530736267566681,0.846426367759705,0.044123038649559,0.608846664428711,0.79205995798111,-0.271735846996307,0.586633265018463,0.762903094291687,-0.263700306415558,0.587990820407867,0.764675736427307,0.999498724937439,0.0113210249692202,0.0295696947723627,0.999488949775696,0.0114722680300474,0.0298372320830822,0.0458489172160625,0.491285800933838,0.869790971279144,0.999488949775696,0.0114722680300474,0.0298372320830822,0.999498724937439,0.0113210249692202,0.0295696947723627,0.999989032745361,-0.00416345940902829,0.00217384146526456,0.0433620288968086,0.529615998268127,0.847128510475159,0.0458570346236229,0.529534816741943,0.847047805786133,0.999455988407135,0.00774948950856924,0.0320560224354267,
- 1,5.41642997120562e-009,-3.44221673387324e-009,0.999503552913666,0.0157247837632895,0.0273018628358841,1,5.68838398606886e-009,-2.97004110194621e-009,-0.271525174379349,0.581031620502472,0.767252445220947,0.044073011726141,0.602160692214966,0.797157526016235,0.044073011726141,0.602160692214966,0.797157526016235,-0.273160547018051,0.647446393966675,0.711474895477295,0.0444519817829132,0.673511207103729,0.737839162349701,0.0449574626982212,0.673497676849365,0.7378209233284,0.999503254890442,0.0153233194723725,0.0275412574410439,0.999495625495911,0.0154536161571741,0.027743486687541,0.0434925705194473,0.540977299213409,0.839911818504334,0.999495625495911,0.0154536161571741,0.027743486687541,0.999503254890442,0.0153233194723725,0.0275412574410439,0.999998033046722,-0.00171726767439395,0.00109134754166007,0.999497592449188,0.0160183310508728,0.0273526068776846,0.044073011726141,0.602160692214966,0.797157526016235,0.044073011726141,0.602160692214966,0.797157526016235,1,-1.09957243310532e-008,8.77436523438746e-009,0.999500393867493,0.0182850584387779,0.0257834419608116,1,-1.18690293149371e-008,7.54293338900425e-009,0.999449491500854,0.0283365976065397,0.0172597598284483,0.0449627861380577,0.673063695430756,0.738216638565063,0.0444507747888565,0.673075556755066,0.738236725330353,0.0441100746393204,0.607077598571777,0.793417394161224,0.999498605728149,0.0164081212133169,0.0270827896893024,0.999492287635803,0.0165301728993654,0.0272422172129154,0.999994158744812,-0.00268365652300417,0.00214150361716747,0.999492287635803,0.0165301728993654,0.0272422172129154,0.999498605728149,0.0164081212133169,0.0270827896893024,0.0450031422078609,0.669723629951477,0.741245567798615,0.999488592147827,0.0246371570974588,0.0203887391835451,0.999499917030334,0.0243957974016666,0.020121406763792,0.999983429908752,0.00416351482272148,-0.0039824927225709,0.999483525753021,0.0252790320664644,0.019845912232995,0.999983429908752,0.00450619636103511,-0.00359585369005799,0.999499917030334,0.0243957974016666,0.020121406763792,0.999488592147827,0.0246371570974588,0.0203887391835451,
- 0.999989330768585,0.00334065384231508,-0.0031954082660377
- }
- BinormalsW: *1086 {
- 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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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: "UVmap_0"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *3258 {
- a: 0,-0.000164183744345792,-1,0,-0.000164183744345792,-1,0,-0.000164183744345792,-1,0,-0.000326684501487762,-0.999999940395355,0,-0.000326684501487762,-0.999999940395355,0,-0.000326684501487762,-0.999999940395355,-0,0.000200366921490058,-1,-0,0.000200366921490058,-1,-0,0.000200366921490058,-1,0,-0.000828020158223808,-0.999999642372131,0,-0.000828020158223808,-0.999999642372131,0,-0.000828020158223808,-0.999999642372131,0,-2.72681609203573e-005,-1,0,-2.72681609203573e-005,-1,0,-2.72681609203573e-005,-1,-0,4.99067173223011e-005,-1,-0,4.99067173223011e-005,-1,-0,4.99067173223011e-005,-1,0,-0.000164183744345792,-1,0,-0.000164183744345792,-1,0,-0.000164183744345792,-1,0,-0.000326684501487762,-0.999999940395355,0,-0.000326684501487762,-0.999999940395355,0,-0.000326684501487762,-0.999999940395355,0,0.000200366921490058,-1,0,0.000200366921490058,-1,0,0.000200366921490058,-1,0,-0.000828020158223808,-0.999999642372131,0,-0.000828020158223808,-0.999999642372131,0,-0.000828020158223808,-0.999999642372131,0,-2.72681609203573e-005,-1,0,-2.72681609203573e-005,-1,0,-2.72681609203573e-005,-1,0,4.99067173223011e-005,-1,0,4.99067173223011e-005,-1,0,4.99067173223011e-005,-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,-0.999567151069641,0.0294199902564287,0,-0.999567151069641,0.0294199902564287,0,-0.999567151069641,0.0294199902564287,0,-0.999567091464996,-0.029424861073494,0,-0.999567091464996,-0.029424861073494,0,-0.999567091464996,-0.029424861073494,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.999244153499603,-0.0388718582689762,-0.000306076864944771,-0.999244153499603,-0.0388718582689762,-0.000306076864944771,-0.999244153499603,-0.0388718582689762,-0.000306076864944771,-0.999244272708893,0.0388686433434486,0.000306051544612274,-0.999244272708893,0.0388686433434486,0.000306051544612274,-0.999244272708893,0.0388686433434486,0.000306051544612274,-0.00242169131524861,0.567745864391327,-0.823200345039368,-0.00242169131524861,0.567745864391327,-0.823200345039368,-0.00242169131524861,0.567745864391327,-0.823200345039368,
- -0.00242154230363667,0.567745685577393,-0.823200464248657,-0.00242154230363667,0.567745685577393,-0.823200464248657,-0.00242154230363667,0.567745685577393,-0.823200464248657,-0.00242169131524861,-0.567745864391327,0.823200345039368,-0.00242169131524861,-0.567745864391327,0.823200345039368,-0.00242169131524861,-0.567745864391327,0.823200345039368,-0.00242154230363667,-0.567745685577393,0.823200464248657,-0.00242154230363667,-0.567745685577393,0.823200464248657,-0.00242154230363667,-0.567745685577393,0.823200464248657,-0.000696787028573453,0.570295512676239,-0.821439445018768,-0.000696787028573453,0.570295512676239,-0.821439445018768,-0.000696787028573453,0.570295512676239,-0.821439445018768,-0.000696868286468089,0.570295393466949,-0.821439385414124,-0.000696868286468089,0.570295393466949,-0.821439385414124,-0.000696868286468089,0.570295393466949,-0.821439385414124,-0.000696868286468089,-0.570295393466949,0.821439385414124,-0.000696868286468089,-0.570295393466949,0.821439385414124,-0.000696868286468089,-0.570295393466949,0.821439385414124,-0.000696787028573453,-0.570295512676239,0.821439445018768,-0.000696787028573453,-0.570295512676239,0.821439445018768,-0.000696787028573453,-0.570295512676239,0.821439445018768,0.995701730251312,-0.0372763685882092,-0.0847854688763618,0.995701730251312,-0.0372763685882092,-0.0847854688763618,0.995701730251312,-0.0372763685882092,-0.0847854688763618,0.999901711940765,0.00564305298030376,0.0128351775929332,0.999901711940765,0.00564305298030376,0.0128351775929332,0.999901711940765,0.00564305298030376,0.0128351775929332,1,0,-0,1,0,-0,1,0,-0,0.999999821186066,0.000258301792200655,0.000587510352488607,0.999999821186066,0.000258301792200655,0.000587510352488607,0.999999821186066,0.000258301792200655,0.000587510352488607,1,0,-0,1,0,-0,1,0,-0,0.99998927116394,0.00186455028597265,0.0042409379966557,0.99998927116394,0.00186455028597265,0.0042409379966557,0.99998927116394,0.00186455028597265,0.0042409379966557,-0.990094244480133,-0.140405148267746,-3.11762056765521e-017,-0.990094244480133,-0.140405148267746,-3.11762056765521e-017,
- -0.990094244480133,-0.140405148267746,-3.11762056765521e-017,-0.999786555767059,-0.0206599738448858,-4.58743573014915e-018,-0.999786555767059,-0.0206599738448858,-4.58743573014915e-018,-0.999786555767059,-0.0206599738448858,-4.58743573014915e-018,-1,0,0,-1,0,0,-1,0,0,-0.999999582767487,0.000930503068957478,2.06613186328192e-019,-0.999999582767487,0.000930503068957478,2.06613186328192e-019,-0.999999582767487,0.000930503068957478,2.06613186328192e-019,-1,-0,0,-1,-0,0,-1,-0,0,-0.999915599822998,-0.0129927778616548,-2.88497622716982e-018,-0.999915599822998,-0.0129927778616548,-2.88497622716982e-018,-0.999915599822998,-0.0129927778616548,-2.88497622716982e-018,-0.995701730251312,-0.0372763685882092,-0.0847854688763618,-0.995701730251312,-0.0372763685882092,-0.0847854688763618,-0.995701730251312,-0.0372763685882092,-0.0847854688763618,-0.999902009963989,0.0056347232311964,0.0128162326291204,-0.999902009963989,0.0056347232311964,0.0128162326291204,-0.999902009963989,0.0056347232311964,0.0128162326291204,-1,0,0,-1,0,0,-1,0,0,-0.99999988079071,0.00026042535318993,0.000592340424191207,-0.99999988079071,0.00026042535318993,0.000592340424191207,-0.99999988079071,0.00026042535318993,0.000592340424191207,-1,0,0,-1,0,0,-1,0,0,-0.999989330768585,0.00185928109567612,0.00422895327210426,-0.999989330768585,0.00185928109567612,0.00422895327210426,-0.999989330768585,0.00185928109567612,0.00422895327210426,0.990094244480133,-0.140405148267746,-3.11762056765521e-017,0.990094244480133,-0.140405148267746,-3.11762056765521e-017,0.990094244480133,-0.140405148267746,-3.11762056765521e-017,0.999786555767059,-0.0206599738448858,-4.58743573014915e-018,0.999786555767059,-0.0206599738448858,-4.58743573014915e-018,0.999786555767059,-0.0206599738448858,-4.58743573014915e-018,1,0,0,1,0,0,1,0,0,0.999999582767487,0.000930503068957478,2.06613186328192e-019,0.999999582767487,0.000930503068957478,2.06613186328192e-019,0.999999582767487,0.000930503068957478,2.06613186328192e-019,1,0,0,1,0,0,1,0,0,0.999915599822998,-0.0129927778616548,-2.88497622716982e-018,
- 0.999915599822998,-0.0129927778616548,-2.88497622716982e-018,0.999915599822998,-0.0129927778616548,-2.88497622716982e-018,0.00427209911867976,0.11507623642683,-0.993347585201263,0.00192573922686279,0.173335537314415,-0.984860956668854,0.00192356086336076,0.11043132096529,-0.99388188123703,-0.00275979237630963,0.173335194587708,-0.984859049320221,0.000510339043103158,0.114133894443512,-0.99346536397934,-0.0147087899968028,0.175334841012955,-0.984399080276489,0.0154010830447078,0.182559221982956,-0.983074247837067,0.00170679169241339,0.292418897151947,-0.956288814544678,0.00170767155941576,0.17333559691906,-0.984861433506012,-0.00125950644724071,0.126511082053185,-0.991964399814606,-0.0147087899968028,0.175334841012955,-0.984399080276489,0.000510339043103158,0.114133894443512,-0.99346536397934,-0.00393110327422619,0.292417049407959,-0.956282794475555,0.0140719311311841,0.182243958115578,-0.983152747154236,-0.0208193715661764,0.318483680486679,-0.947699785232544,0.00474799191579223,0.324619650840759,-0.9458327293396,0.00196779263205826,0.376797407865524,-0.926293611526489,0.00196782173588872,0.292418777942657,-0.956288456916809,-0.0157874077558517,0.175072848796844,-0.984428882598877,-0.00311252847313881,0.120705299079418,-0.992683529853821,-0.0161717887967825,0.125087097287178,-0.992014050483704,-0.0103147812187672,0.435186862945557,-0.900281190872192,0.00221067271195352,0.376797199249268,-0.926293134689331,0.0184659361839294,0.32781919836998,-0.944559991359711,-0.00356036191806197,0.436684668064117,-0.899607598781586,0.00289847073145211,0.440902024507523,-0.897550582885742,0.00289926026016474,0.376796543598175,-0.926291525363922,-0.0217326283454895,0.261489152908325,-0.9649618268013,-0.0208051148802042,0.318487137556076,-0.947698831558228,0.0140734184533358,0.182244285941124,-0.983152568340302,0.0205018129199743,0.380970925092697,-0.924359798431396,-0.0102269034832716,0.435206443071365,-0.900272607803345,0.0185387227684259,0.327836006879807,-0.944552719593048,0.0099890623241663,0.181273370981216,-0.983382105827332,
- 0.0181791298091412,0.225019708275795,-0.974184632301331,-0.0290029402822256,0.240341186523438,-0.970255196094513,-0.0120946643874049,0.434788584709167,-0.900451362133026,0.0206731762737036,0.381443977355957,-0.924160778522491,-0.00983935687690973,0.390955328941345,-0.920357048511505,-0.0100506171584129,0.390381067991257,-0.92059850692749,0.0204628333449364,0.38086324930191,-0.924404919147491,-0.0139466831460595,0.391734331846237,-0.919972658157349,-0.00305952038615942,0.12087144702673,-0.992663443088531,-0.0141955241560936,0.124788351356983,-0.992081820964813,-0.0161190088838339,0.1252421438694,-0.991995275020599,0.0183233078569174,0.225434958934784,-0.974085927009583,0.0215499699115753,0.223964527249336,-0.974359035491943,-0.0288593340665102,0.240760520100594,-0.970155417919159,-0.0155199440196157,0.121077612042427,-0.992521703243256,-0.00427193101495504,0.117070220410824,-0.993114471435547,0.00171633018180728,0.114913634955883,-0.993373990058899,-0.00191955815535039,0.116766393184662,-0.993157565593719,-0.0154183711856604,0.121362283825874,-0.992488503456116,0.00181618519127369,0.115174315869808,-0.993343651294708,0.00999077782034874,0.351771503686905,-0.936032593250275,0.0151583170518279,0.349891871213913,-0.936667442321777,-0.0248137842863798,0.362880051136017,-0.931505441665649,-0.0274226255714893,0.244952619075775,-0.969147264957428,0.0230595339089632,0.228111401200294,-0.973362028598785,-0.0236633494496346,0.244086012244225,-0.969464838504791,-0.0132313081994653,0.127488255500793,-0.991751849651337,-0.000251982681220397,0.123081013560295,-0.992396593093872,-0.0134581411257386,0.12674044072628,-0.991844713687897,0.0165710244327784,0.231128171086311,-0.97278219461441,-0.0238260459154844,0.243633612990379,-0.969574630260468,0.0228972565382719,0.22766575217247,-0.973470091819763,-0.0249839760363102,0.362424463033676,-0.931678235530853,0.0149865876883268,0.349433213472366,-0.936841428279877,0.00813789572566748,0.352676063776016,-0.935710072517395,-0.0184704214334488,0.258486181497574,-0.965838372707367,0.021110525354743,0.246724098920822,-0.968855917453766,
- -0.0194977298378944,0.257734000682831,-0.966019153594971,0.0181271564215422,0.386137694120407,-0.922263026237488,-0.00586264301091433,0.392324894666672,-0.919808149337769,-0.0126891937106848,0.395043253898621,-0.918574869632721,0.0181271564215422,0.386137694120407,-0.922263026237488,0.00637929607182741,0.390352010726929,-0.92064356803894,-0.00586264301091433,0.392324894666672,-0.919808149337769,-0.00019637898367364,0.123291477560997,-0.99237048625946,-0.00487061310559511,0.123713575303555,-0.992306113243103,-0.0134007474407554,0.126941949129105,-0.991819620132446,-0.00433041667565703,0.10999258607626,-0.99392294883728,-0.00359229417517781,0.110426843166351,-0.993877768516541,-0.00519380671903491,0.109935574233532,-0.993925154209137,0.0210640430450439,0.246564641594887,-0.96889740228653,-0.00435380544513464,0.253381639719009,-0.967356622219086,-0.0195437800139189,0.257572919130325,-0.966061294078827,-0.00250450544990599,0.215752825140953,-0.976444780826569,0.0110119543969631,0.211963295936584,-0.977215588092804,-0.0084850387647748,0.215519994497299,-0.976462543010712,0.00527446437627077,0.412573903799057,-0.910908877849579,0.0246110968291759,0.407612770795822,-0.912823140621185,-0.0018852346111089,0.412302881479263,-0.911044895648956,0.00530891073867679,0.411885678768158,-0.911220073699951,-0.00185310130473226,0.411611765623093,-0.911357522010803,0.00544423935934901,0.440743446350098,-0.897616624832153,-0.00365921179763973,0.28466784954071,-0.958619236946106,-0.0110933259129524,0.286975771188736,-0.957873702049255,-0.0058951647952199,0.284554600715637,-0.958641707897186,0.0013425910146907,0.341805994510651,-0.939769566059113,0.00428896164521575,0.339661598205566,-0.940537929534912,-0.00604493683204055,0.341512948274612,-0.939857661724091,0.00399798667058349,0.369912922382355,-0.929057836532593,0.00643774261698127,0.440712749958038,-0.897625088691711,-0.00173109560273588,0.408985495567322,-0.91253924369812,0.00132877402938902,0.342112362384796,-0.939658105373383,-0.00605796137824655,0.341821312904358,-0.939745426177979,
- -0.00150722486432642,0.370076566934586,-0.92900013923645,0.00239116046577692,0.440835028886795,-0.897584974765778,0.00138328340835869,0.376797825098038,-0.92629462480545,0.00138298620004207,0.440903514623642,-0.897553563117981,0.00534270005300641,0.376792758703232,-0.926282167434692,0.00643774261698127,0.440712749958038,-0.897625088691711,0.00399798667058349,0.369912922382355,-0.929057836532593,-0.00460598804056644,0.314006686210632,-0.949409604072571,-0.00272812624461949,0.370111286640167,-0.928983390331268,-0.0060165231116116,0.340840101242065,-0.94010204076767,-0.00371261197142303,0.376795530319214,-0.926289021968842,-0.00272812624461949,0.370111286640167,-0.928983390331268,-0.00460598804056644,0.314006686210632,-0.949409604072571,-0.00368711957708001,0.285336881875992,-0.958420217037201,-0.00592783652245998,0.285213470458984,-0.95844578742981,-0.00022251988411881,0.313879370689392,-0.949462831020355,0.000597873935475945,0.376798123121262,-0.926295340061188,-8.3219085354358e-005,0.31387522816658,-0.94946426153183,0.000597842095885426,0.292419284582138,-0.956290125846863,-0.00359502644278109,0.251889109611511,-0.967749416828156,-0.00156049069482833,0.313918858766556,-0.949448525905609,-0.00596246682107449,0.28591176867485,-0.958237409591675,-0.00264318683184683,0.292418301105499,-0.9562868475914,-0.00170848949346691,0.313923209905624,-0.949446856975555,-0.00374289276078343,0.251893490552902,-0.967747747898102,-0.00848027039319277,0.215398877859116,-0.976489305496216,-0.00322623876854777,0.251878201961517,-0.96775358915329,-0.00249936571344733,0.21564793586731,-0.976468086242676,0.0011786645045504,0.292419105768204,-0.956289529800415,0.00158527470193803,0.251732677221298,-0.967795610427856,0.0011801877990365,0.165678098797798,-0.986179172992706,-0.00155862420797348,0.25182843208313,-0.967770636081696,-0.00803974084556103,0.204209432005882,-0.978894233703613,-0.00529311131685972,0.149311199784279,-0.988776087760925,-0.00500372191891074,0.149300202727318,-0.988779366016388,-0.00278098881244659,0.165677577257156,-0.986176073551178,
- -0.00126483046915382,0.251819580793381,-0.967773377895355,-0.00520975282415748,0.110273100435734,-0.993887662887573,1.71858591784257e-005,0.14910726249218,-0.988821029663086,-0.00434393621981144,0.110335983335972,-0.993884861469269,-0.00023212748055812,0.149116933345795,-0.988819539546967,-0.00513821467757225,0.108758874237537,-0.994054973125458,-0.00202000746503472,0.102693043649197,-0.9947110414505,-0.00218787463381886,0.102698273956776,-0.994710147380829,-0.00201177061535418,0.165677890181541,-0.986177980899811,-0.000395716400817037,0.149123266339302,-0.988818526268005,0.00110920355655253,0.165678128600121,-0.986179351806641,0.000822485948447138,0.102603927254677,-0.994721949100494,0.00110759341623634,0.102629728615284,-0.9947190284729,-0.0011411391897127,0.173335745930672,-0.984862148761749,-0.003535385010764,0.114891804754734,-0.993371725082397,-0.00113984837662429,0.11043144762516,-0.993883073329926,0.00316845020279288,0.173334985971451,-0.984857857227325,0.0164439380168915,0.182777419686317,-0.983016788959503,-0.000618344056420028,0.114160962402821,-0.993462085723877,-0.00232734135352075,0.292418539524078,-0.956287622451782,-0.0141278179362416,0.190099880099297,-0.981663107872009,-0.00232854299247265,0.173335373401642,-0.984860122203827,0.0164439380168915,0.182777419686317,-0.983016788959503,0.000699869822710752,0.128263548016548,-0.991739869117737,-0.000618344056420028,0.114160962402821,-0.993462085723877,-0.0124672818928957,0.189706906676292,-0.981761634349823,0.00365665089339018,0.292417347431183,-0.956283807754517,0.0205568373203278,0.318547815084457,-0.947683870792389,-0.00196764688007534,0.376797407865524,-0.926293611526489,-0.00474781449884176,0.324619591236115,-0.9458327293396,-0.00196767575107515,0.292418777942657,-0.956288456916809,0.00310970423743129,0.120714150369167,-0.992682456970215,0.0176136139780283,0.182493597269058,-0.983049273490906,0.0161688234657049,0.125095784664154,-0.992012917995453,-0.00219658971764147,0.37679722905159,-0.926293194293976,0.0103254858404398,0.435184419155121,-0.900282144546509,
- -0.0184553507715464,0.327816754579544,-0.944561064243317,0.00356025900691748,0.43668469786644,-0.899607598781586,-0.00289936945773661,0.376796543598175,-0.926291525363922,-0.00289857992902398,0.440902024507523,-0.897550582885742,0.0205427184700966,0.318551272153854,-0.947683036327362,0.0216946080327034,0.261599272489548,-0.96493273973465,-0.0124677242711186,0.189707010984421,-0.981761574745178,0.0102377962321043,0.43520399928093,-0.900273680686951,-0.0205036178231239,0.380975931882858,-0.924357712268829,-0.0185279510915279,0.327833533287048,-0.944553911685944,-0.0181830320507288,0.225030943751335,-0.974181950092316,-0.0081342626363039,0.188678920269012,-0.98200523853302,0.0289990790188313,0.2403524518013,-0.970252513885498,-0.0206710640341043,0.381438136100769,-0.924163222312927,0.0120981754735112,0.434787839651108,-0.90045177936554,0.00984149891883135,0.390949547290802,-0.92035961151123,0.0139488959684968,0.391728520393372,-0.919975101947784,-0.0204607136547565,0.380857408046722,-0.924407362937927,0.0100527675822377,0.390375226736069,-0.920600950717926,0.0141954645514488,0.124788522720337,-0.992081820964813,0.00305946543812752,0.120871618390083,-0.992663443088531,0.0161189530044794,0.125242322683334,-0.991995334625244,-0.0215534120798111,0.223973974585533,-0.974356770515442,-0.0183266159147024,0.225444510579109,-0.974083721637726,0.0288560669869184,0.240770071744919,-0.970153152942657,0.00427193101495504,0.117070220410824,-0.993114471435547,0.0155199440196157,0.121077612042427,-0.992521703243256,-0.00171633018180728,0.114913634955883,-0.993373990058899,0.0154183711856604,0.121362283825874,-0.992488503456116,0.00191955815535039,0.116766393184662,-0.993157565593719,-0.00181618519127369,0.115174315869808,-0.993343651294708,-0.00999056827276945,0.351770907640457,-0.936032831668854,0.0248140022158623,0.362879484891891,-0.931505620479584,-0.0151580981910229,0.349891275167465,-0.936667680740356,0.027422621846199,0.244952633976936,-0.969147264957428,0.0236633438616991,0.244086027145386,-0.969464838504791,-0.0230595394968987,0.228111416101456,-0.973362028598785,
- 0.0134581411257386,0.12674044072628,-0.991844713687897,0.000251982390182093,0.123081013560295,-0.992396593093872,0.0132313072681427,0.127488255500793,-0.991751849651337,0.0238261111080647,0.243633434176445,-0.969574689865112,-0.0165709685534239,0.231127977371216,-0.972782254219055,-0.0228971913456917,0.227665573358536,-0.973470151424408,-0.00813786312937737,0.352675944566727,-0.93571013212204,-0.0149865448474884,0.349433124065399,-0.936841547489166,0.0249840244650841,0.362424373626709,-0.931678354740143,-0.0211105700582266,0.246724262833595,-0.968855857849121,0.0184703655540943,0.258486360311508,-0.965838313102722,0.0194976851344109,0.257734179496765,-0.966019213199615,0.0126892570406199,0.395043104887009,-0.918574929237366,0.00586269423365593,0.392324656248093,-0.919808149337769,-0.0181271061301231,0.386137574911118,-0.922263205051422,-0.0181271061301231,0.386137574911118,-0.922263205051422,0.00586269423365593,0.392324656248093,-0.919808149337769,-0.00637930538505316,0.390351831912994,-0.92064368724823,0.000196378750842996,0.123291477560997,-0.99237048625946,0.0134007474407554,0.126941949129105,-0.991819620132446,0.00487061310559511,0.123713575303555,-0.992306113243103,0.00433041667565703,0.10999258607626,-0.99392294883728,0.00519380671903491,0.109935574233532,-0.993925154209137,0.00359229417517781,0.110426843166351,-0.993877768516541,-0.0210640914738178,0.246564820408821,-0.968897461891174,0.0195437334477901,0.257573038339615,-0.966061174869537,0.00435381382703781,0.253381818532944,-0.967356562614441,0.00250450544990599,0.215752825140953,-0.976444780826569,0.0084850387647748,0.215519994497299,-0.976462543010712,-0.0110119534656405,0.211963281035423,-0.977215588092804,-0.0246112551540136,0.407613337039948,-0.912823021411896,-0.00527443736791611,0.41257444024086,-0.910908639431,0.00188525987323374,0.412303417921066,-0.911044657230377,-0.00544422771781683,0.440743446350098,-0.897616624832153,0.00185312598478049,0.411612302064896,-0.911357283592224,-0.00530888419598341,0.411886215209961,-0.911219835281372,0.00365921156480908,0.284667819738388,-0.958619236946106,
- 0.00589516432955861,0.284554600715637,-0.958641707897186,0.011093326844275,0.286975771188736,-0.957873702049255,-0.00134260975755751,0.341805577278137,-0.939769744873047,0.00604491913691163,0.341512531042099,-0.93985778093338,-0.00428884848952293,0.339661210775375,-0.940538048744202,0.00173109548632056,0.408985495567322,-0.91253924369812,-0.00643779151141644,0.440712749958038,-0.897625088691711,-0.00399803509935737,0.369912922382355,-0.929057836532593,0.0015072108944878,0.370076566934586,-0.92900013923645,0.0060579446144402,0.341820925474167,-0.939745604991913,-0.00132879184093326,0.342112004756927,-0.939658343791962,-0.00138311367481947,0.376797825098038,-0.92629462480545,-0.0023909907322377,0.440835028886795,-0.897584974765778,-0.00138281635008752,0.440903514623642,-0.897553563117981,-0.00643779151141644,0.440712749958038,-0.897625088691711,-0.00534274894744158,0.376792758703232,-0.926282167434692,-0.00399803509935737,0.369912922382355,-0.929057836532593,0.0060165231116116,0.340840101242065,-0.94010204076767,0.00272817746736109,0.370111286640167,-0.928983390331268,0.00460603926330805,0.314006686210632,-0.949409604072571,0.00371266319416463,0.376795530319214,-0.926289021968842,0.00460603926330805,0.314006686210632,-0.949409604072571,0.00272817746736109,0.370111286640167,-0.928983390331268,0.00022251988411881,0.313879370689392,-0.949462831020355,0.00592783652245998,0.285213470458984,-0.95844578742981,0.00368711957708001,0.285336881875992,-0.958420217037201,8.31647630548105e-005,0.31387522816658,-0.94946426153183,-0.0005979283596389,0.376798123121262,-0.926295340061188,-0.00059789652004838,0.292419284582138,-0.956290125846863,0.00596246682107449,0.28591176867485,-0.958237409591675,0.00156049069482833,0.313918858766556,-0.949448525905609,0.00359502644278109,0.251889109611511,-0.967749416828156,0.00264318706467748,0.292418301105499,-0.9562868475914,0.00374289276078343,0.251893490552902,-0.967747747898102,0.00170848949346691,0.313923209905624,-0.949446856975555,0.00322623876854777,0.251878201961517,-0.96775358915329,0.00848027039319277,0.215398877859116,-0.976489305496216,
- 0.00249936571344733,0.21564793586731,-0.976468086242676,-0.00158519146498293,0.251732677221298,-0.967795610427856,-0.00117858103476465,0.292419105768204,-0.956289529800415,-0.00118010421283543,0.165678098797798,-0.986179172992706,0.00803974084556103,0.204209432005882,-0.978894233703613,0.00155862420797348,0.25182843208313,-0.967770636081696,0.00529311131685972,0.149311199784279,-0.988776087760925,0.00278098834678531,0.165677577257156,-0.986176073551178,0.00500372191891074,0.149300202727318,-0.988779366016388,0.00126483011990786,0.251819580793381,-0.967773377895355,-1.71858591784257e-005,0.14910726249218,-0.988821029663086,0.00520975282415748,0.110273100435734,-0.993887662887573,0.00434393621981144,0.110335983335972,-0.993884861469269,0.00513821467757225,0.108758874237537,-0.994054973125458,0.00023212748055812,0.149116933345795,-0.988819539546967,0.00202000746503472,0.102693043649197,-0.9947110414505,0.00201177061535418,0.165677890181541,-0.986177980899811,0.00218787486664951,0.102698273956776,-0.994710147380829,0.00039571663364768,0.149123266339302,-0.988818526268005,-0.000822667439933866,0.102603919804096,-0.994721949100494,-0.00110938551370054,0.165678128600121,-0.986179351806641,-0.00110777514055371,0.102629728615284,-0.9947190284729,-0.00382113177329302,0.722522139549255,-0.69133722782135,0.00289885583333671,0.722638785839081,-0.691219747066498,0.00289993640035391,0.675010621547699,-0.73780232667923,-0.0104989390820265,0.721361219882965,-0.692479431629181,0.00227669719606638,0.675011694431305,-0.737803518772125,0.0178160853683949,0.6379314661026,-0.769887030124664,0.00301339570432901,0.635150253772736,-0.772382855415344,0.000986367464065552,0.67501312494278,-0.737805068492889,0.000986373517662287,0.606280148029327,-0.795250535011292,0.0165093839168549,0.679270446300507,-0.733702301979065,-0.0104461815208197,0.72137051820755,-0.692470550537109,0.017852358520031,0.63793808221817,-0.769880712032318,-0.0109162945300341,0.721287548542023,-0.692549705505371,0.0170684400945902,0.680481731891632,-0.732566237449646,-0.00409186165779829,0.685774326324463,-0.727802813053131,
- 0.0170024745166302,0.68033891916275,-0.732700407505035,-0.00982794538140297,0.687143504619598,-0.726455271244049,-0.00415782677009702,0.685631155967712,-0.7279372215271,-0.00471504172310233,0.606273710727692,-0.795242071151733,0.0120197543874383,0.519405484199524,-0.854443371295929,-0.0221301112323999,0.630087077617645,-0.776209056377411,-0.0256454106420279,0.58226078748703,-0.812597513198853,-0.0220891926437616,0.630095660686493,-0.776203274726868,0.0120560759678483,0.51941305398941,-0.854438245296478,0.0149864181876183,0.520019292831421,-0.854023039340973,0.00262375501915812,0.606278359889984,-0.795248210430145,0.0026232956442982,0.517952024936676,-0.855405628681183,0.00193548668175936,0.440903037786484,-0.897552669048309,-0.0100655136629939,0.514683961868286,-0.85732090473175,0.00193680764641613,0.517952859401703,-0.855406999588013,-0.00897963065654039,0.514922380447388,-0.857189774513245,0.00422966480255127,0.440899938344955,-0.897546291351318,0.0121291419491172,0.440082430839539,-0.897875487804413,0.0179322976619005,0.464870870113373,-0.88519686460495,-0.00897963065654039,0.514922380447388,-0.857189774513245,0.0121291419491172,0.440082430839539,-0.897875487804413,-0.0104865897446871,0.514591336250305,-0.85737144947052,0.0166436620056629,0.461510211229324,-0.88697874546051,-0.0101861022412777,0.469557970762253,-0.882843017578125,0.00798443239182234,0.518562793731689,-0.855002284049988,0.0212138798087835,0.549866557121277,-0.834983110427856,-0.0327854044735432,0.564716696739197,-0.824633359909058,0.0166187565773726,0.461445182561874,-0.887013077735901,-0.0363114774227142,0.477484881877899,-0.877889454364777,-0.0102117024362087,0.469490468502045,-0.882878482341766,0.0214585550129414,0.55047333240509,-0.834576904773712,-0.00342004955746233,0.55752295255661,-0.830154478549957,-0.0325406715273857,0.565323412418365,-0.824227213859558,-0.0294752065092325,0.494576930999756,-0.868634045124054,0.0232499670237303,0.478667497634888,-0.877688348293304,0.0267681423574686,0.477436125278473,-0.878258645534515,0.0163432378321886,0.692427039146423,-0.72130274772644,
- -0.00460063712671399,0.697838187217712,-0.716240763664246,0.0220256708562374,0.691135585308075,-0.722389400005341,0.01576092466712,0.601651251316071,-0.798603415489197,-0.0212716236710548,0.61198902130127,-0.790580153465271,-0.0141039937734604,0.609935164451599,-0.792325794696808,0.0162125024944544,0.692161977291107,-0.721560060977936,-0.00367682659998536,0.696748912334442,-0.717305719852448,-0.00473133800551295,0.697572886943817,-0.716498196125031,0.0274436715990305,0.479143768548965,-0.877307295799255,-0.0185152031481266,0.492269545793533,-0.87024587392807,-0.0288042519241571,0.496241480112076,-0.867706716060638,0.00905355624854565,0.685136675834656,-0.728358268737793,-0.00676982756704092,0.687912583351135,-0.725762069225311,0.0125968335196376,0.684790432453156,-0.728631198406219,-0.0212941560894251,0.61193835735321,-0.790618777275085,0.0157382767647505,0.601600229740143,-0.79864227771759,-0.0178287494927645,0.610078930854797,-0.792140007019043,0.0155829852446914,0.593002438545227,-0.80504983663559,-0.0208922047168016,0.601087212562561,-0.798910439014435,0.0119232535362244,0.592972159385681,-0.805134832859039,0.010945008136332,0.690158307552338,-0.723575711250305,0.0120808761566877,0.691834568977356,-0.721954941749573,-0.00492624379694462,0.693193018436432,-0.720735192298889,-0.0215664803981781,0.482838660478592,-0.875443756580353,0.0239550080150366,0.470306038856506,-0.8821781873703,0.0190536268055439,0.472832053899765,-0.880946576595306,0.0114554669708014,0.701947033405304,-0.712137043476105,0.014674024656415,0.699958324432373,-0.714033007621765,0.000342991086654365,0.701640844345093,-0.712530791759491,0.000342991086654365,0.701640844345093,-0.712530791759491,0.00648459745571017,0.722485840320587,-0.691355347633362,0.0114554669708014,0.701947033405304,-0.712137043476105,0.0155829852446914,0.593002438545227,-0.80504983663559,-0.00458343233913183,0.597522556781769,-0.801838994026184,-0.0208922047168016,0.601087212562561,-0.798910439014435,0.00357927847653627,0.647994518280029,-0.7616366147995,-0.00455968454480171,0.647988736629486,-0.761636316776276,
- -0.00749757699668407,0.647603034973145,-0.761941015720367,0.0191007442772388,0.472980916500092,-0.880865633487701,-0.00493391556665301,0.476899087429047,-0.878944218158722,-0.0215190593153238,0.482985764741898,-0.875363767147064,-0.00437462842091918,0.465194582939148,-0.885197639465332,0.0158585105091333,0.462706804275513,-0.886369526386261,0.00258234050124884,0.465450644493103,-0.885070204734802,0.0039944164454937,0.670607805252075,-0.7418013215065,0.00627371203154325,0.722491383552551,-0.691351473331451,0.000421268166974187,0.700387477874756,-0.713762700557709,0.00357927847653627,0.647994518280029,-0.7616366147995,-0.00749757699668407,0.647603034973145,-0.761941015720367,-0.00246982066892087,0.670762479305267,-0.741668164730072,0.0022779731079936,0.722590506076813,-0.691272556781769,0.00138348445761949,0.675012826919556,-0.737804770469666,0.0013830445241183,0.722641110420227,-0.691222012042999,0.00529184611514211,0.675004005432129,-0.737795114517212,0.00627371203154325,0.722491383552551,-0.691351473331451,0.0039944164454937,0.670607805252075,-0.7418013215065,-0.00366020738147199,0.675008893013,-0.737800478935242,-0.00262314965948462,0.670765817165375,-0.74166464805603,-0.00456784199923277,0.623838007450104,-0.78154045343399,-0.00456784199923277,0.623838007450104,-0.78154045343399,-0.00262314965948462,0.670765817165375,-0.74166464805603,-0.00739765400066972,0.645921289920807,-0.763368189334869,0.000599140941631049,0.675013303756714,-0.737805306911469,-9.84997459454462e-005,0.623734176158905,-0.781636536121368,0.000599108869209886,0.606280326843262,-0.795250773429871,-0.0049634319730103,0.604173541069031,-0.796837329864502,0.0179116018116474,0.599570035934448,-0.800121963024139,-0.0112271923571825,0.603948414325714,-0.796944320201874,-0.00491658970713615,0.603355646133423,-0.797457218170166,-0.0111849429085851,0.603124856948853,-0.797568380832672,-0.00299986242316663,0.623802959918976,-0.781575858592987,-0.00789366569370031,0.537730932235718,-0.843079566955566,-0.00344716641120613,0.537836194038391,-0.843042314052582,
- -0.00789366569370031,0.537730932235718,-0.843079566955566,-0.00267078867182136,0.606278300285339,-0.795248210430145,-0.00173775211442262,0.623773694038391,-0.781603097915649,-0.00367542332969606,0.574609160423279,-0.818419814109802,-0.00345220929011703,0.574603855609894,-0.81842440366745,-0.00151452713180333,0.623768448829651,-0.781607866287231,-0.0110495937988162,0.6004838347435,-0.799560546875,-0.00790224131196737,0.537904441356659,-0.842968821525574,-0.00166955101303756,0.574560523033142,-0.818460404872894,-0.00790224131196737,0.537904441356659,-0.842968821525574,0.00104813149664551,0.606280088424683,-0.795250475406647,0.00143072917126119,0.574480831623077,-0.818516790866852,0.00104875536635518,0.512176036834717,-0.858879864215851,-0.00190319400280714,0.574566304683685,-0.818455815315247,-0.00768758449703455,0.533556461334229,-0.845729649066925,-0.00479730032384396,0.497113913297653,-0.867672145366669,-0.00479730032384396,0.497113913297653,-0.867672145366669,-0.00344642926938832,0.512173295021057,-0.858875215053558,-0.00190319400280714,0.574566304683685,-0.818455815315247,0.00257614254951477,0.465570241212845,-0.885007202625275,0.0061378856189549,0.496810793876648,-0.867837190628052,-0.00438039284199476,0.46531555056572,-0.885134041309357,0.00228745792992413,0.4969242811203,-0.867790877819061,0.00137305143289268,0.440903455018997,-0.897553503513336,0.00137372978497297,0.512175858020782,-0.858879506587982,0.00629603024572134,0.496805965900421,-0.867838799953461,0.00272520259022713,0.46268954873085,-0.886516213417053,0.0042921993881464,0.440778464078903,-0.897605657577515,0.00527038006111979,0.440897732973099,-0.897541880607605,0.00647797528654337,0.496800422668457,-0.867840647697449,0.00447431486099958,0.440773040056229,-0.897607564926147,0.00382111826911569,0.722522139549255,-0.69133722782135,-0.00289995106868446,0.675010621547699,-0.73780232667923,-0.00289887050166726,0.722638785839081,-0.691219747066498,-0.00227671163156629,0.675011694431305,-0.737803518772125,0.0104989632964134,0.721361219882965,-0.692479431629181,
- -0.0178160611540079,0.6379314661026,-0.769887030124664,-0.000986363971605897,0.67501312494278,-0.737805068492889,-0.00301339221186936,0.635150253772736,-0.772382855415344,-0.000986370025202632,0.606280148029327,-0.795250535011292,0.010446204803884,0.72137051820755,-0.692470550537109,-0.0165093373507261,0.679270386695862,-0.733702421188354,-0.0178523324429989,0.63793808221817,-0.769880712032318,-0.0170683972537518,0.680481672286987,-0.732566356658936,0.0109163280576468,0.721287548542023,-0.692549705505371,0.00409190589562058,0.685774207115173,-0.727802872657776,-0.0170024298131466,0.680338799953461,-0.732700526714325,0.00415787193924189,0.685631096363068,-0.727937400341034,0.00982799287885427,0.687143445014954,-0.726455390453339,-0.0120197618380189,0.519405484199524,-0.854443371295929,0.00471505429595709,0.606273710727692,-0.795242071151733,0.0221301037818193,0.630087077617645,-0.776209056377411,0.022089185193181,0.630095660686493,-0.776203274726868,0.0256453864276409,0.582260847091675,-0.812597453594208,-0.0120560834184289,0.51941305398941,-0.854438245296478,-0.0026237613055855,0.606278359889984,-0.795248210430145,-0.0149864247068763,0.520019292831421,-0.854023039340973,-0.00262330193072557,0.517952024936676,-0.855405628681183,0.0100655257701874,0.514683961868286,-0.85732090473175,-0.0019354730611667,0.440903037786484,-0.897552669048309,-0.00193679402582347,0.517952859401703,-0.855406999588013,-0.00422966480255127,0.440899938344955,-0.897546291351318,0.00897961016744375,0.514922380447388,-0.857189774513245,-0.0121291624382138,0.440082430839539,-0.897875487804413,0.00897961016744375,0.514922380447388,-0.857189774513245,-0.0179323237389326,0.464870929718018,-0.88519686460495,-0.0121291624382138,0.440082430839539,-0.897875487804413,-0.0166436806321144,0.461510270833969,-0.88697874546051,0.0104865748435259,0.514591336250305,-0.85737144947052,0.0101860826835036,0.469557970762253,-0.882842898368835,-0.0212139096111059,0.549866616725922,-0.834983050823212,-0.00798445474356413,0.518562793731689,-0.855002284049988,0.0327853746712208,0.564716756343842,-0.824633300304413,
- 0.0363114476203918,0.477484852075577,-0.877889335155487,-0.0166187789291143,0.461445242166519,-0.887013018131256,0.0102116810157895,0.469490528106689,-0.882878482341766,0.0034200216177851,0.557523012161255,-0.830154478549957,-0.0214585829526186,0.550473392009735,-0.834576904773712,0.0325406454503536,0.56532347202301,-0.824227213859558,-0.0232503190636635,0.478668421506882,-0.877687871456146,0.029474837705493,0.494577765464783,-0.868633449077606,-0.0267685018479824,0.477437019348145,-0.878258109092712,-0.0220257379114628,0.691135764122009,-0.722389280796051,0.00460056774318218,0.697838306427002,-0.716240584850311,-0.0163433067500591,0.692427217960358,-0.721302628517151,0.0141042321920395,0.609934568405151,-0.792326211929321,0.0212718732655048,0.611988484859467,-0.790580570697784,-0.0157606769353151,0.601650655269623,-0.79860383272171,-0.0162125714123249,0.692162096500397,-0.721559941768646,0.00473126862198114,0.697573006153107,-0.716498076915741,0.00367677374742925,0.696749031543732,-0.717305541038513,0.018514895811677,0.49227049946785,-0.870245337486267,-0.0274440385401249,0.479144692420959,-0.877306759357452,0.028803875669837,0.496242344379425,-0.867706120014191,0.00677014142274857,0.687911629676819,-0.725762844085693,-0.00905321910977364,0.685135781764984,-0.72835910320282,-0.0125964116305113,0.684789597988129,-0.728632032871246,-0.0157380271703005,0.60159969329834,-0.798642814159393,0.0212944056838751,0.611937761306763,-0.790619194507599,0.0178289525210857,0.610078394412994,-0.792140483856201,-0.0119230877608061,0.592971742153168,-0.805135011672974,0.0208923351019621,0.601086795330048,-0.798910617828369,-0.0155828483402729,0.593002080917358,-0.805050134658813,-0.0120809357613325,0.691833674907684,-0.721955895423889,-0.0109446607530117,0.690157353878021,-0.723576545715332,0.00492656789720058,0.693192064762115,-0.720736086368561,-0.0239552687853575,0.470306754112244,-0.882177948951721,0.0215662643313408,0.482839316129684,-0.875443339347839,-0.0190538428723812,0.472832769155502,-0.880946278572083,-0.014674024656415,0.699958324432373,-0.714033007621765,
- -0.0114554669708014,0.701947033405304,-0.712137043476105,-0.000342991086654365,0.701640844345093,-0.712530791759491,-0.000342991086654365,0.701640844345093,-0.712530791759491,-0.0114554669708014,0.701947033405304,-0.712137043476105,-0.00648459745571017,0.722485840320587,-0.691355347633362,0.00455968454480171,0.647988736629486,-0.761636316776276,-0.00357927847653627,0.647994518280029,-0.7616366147995,0.00749757699668407,0.647603034973145,-0.761941015720367,-0.0155828483402729,0.593002080917358,-0.805050134658813,0.0208923351019621,0.601086795330048,-0.798910617828369,0.00458340859040618,0.597522139549255,-0.801839292049408,-0.00627371203154325,0.722491383552551,-0.691351473331451,-0.0039944164454937,0.670607805252075,-0.7418013215065,-0.000421268166974187,0.700387477874756,-0.713762700557709,0.00749757699668407,0.647603034973145,-0.761941015720367,-0.00357927847653627,0.647994518280029,-0.7616366147995,0.00246982066892087,0.670762479305267,-0.741668164730072,-0.00138346187304705,0.675012826919556,-0.737804770469666,-0.00227795052342117,0.722590506076813,-0.691272556781769,-0.00138302205596119,0.722641110420227,-0.691222012042999,-0.00627371203154325,0.722491383552551,-0.691351473331451,-0.00529184611514211,0.675004005432129,-0.737795114517212,-0.0039944164454937,0.670607805252075,-0.7418013215065,0.00366020738147199,0.675008893013,-0.737800478935242,0.00456784199923277,0.623838007450104,-0.78154045343399,0.00262314965948462,0.670765817165375,-0.74166464805603,0.00262314965948462,0.670765817165375,-0.74166464805603,0.00456784199923277,0.623838007450104,-0.78154045343399,0.00739765400066972,0.645921289920807,-0.763368189334869,9.84930229606107e-005,0.623734176158905,-0.781636655330658,-0.000599147693719715,0.675013303756714,-0.737805306911469,-0.000599115621298552,0.606280326843262,-0.795250773429871,-0.0179116036742926,0.599570035934448,-0.80012184381485,0.00496343290433288,0.604173541069031,-0.796837329864502,0.0112271932885051,0.603948414325714,-0.796944320201874,0.0111849429085851,0.603124856948853,-0.797568380832672,
- 0.00491658970713615,0.603355646133423,-0.797457218170166,0.00299986242316663,0.623802959918976,-0.781575858592987,0.00267078867182136,0.606278300285339,-0.795248210430145,0.00367542332969606,0.574609160423279,-0.818419814109802,0.00173775223083794,0.623773694038391,-0.781603097915649,0.00151452713180333,0.623768448829651,-0.781607866287231,0.00345220929011703,0.574603855609894,-0.81842440366745,0.0110495937988162,0.6004838347435,-0.799560546875,-0.00143071811180562,0.574480831623077,-0.818516790866852,-0.00104812043718994,0.606280088424683,-0.795250475406647,-0.00104874430689961,0.512176036834717,-0.858879864215851,0.00344717502593994,0.537836194038391,-0.843042314052582,0.00789366476237774,0.537730872631073,-0.843079566955566,0.00789366476237774,0.537730872631073,-0.843079566955566,0.00166955019813031,0.574560523033142,-0.818460404872894,0.0079022403806448,0.537904381752014,-0.842968821525574,0.0079022403806448,0.537904381752014,-0.842968821525574,-0.019100958481431,0.472981601953506,-0.880865216255188,0.0215188413858414,0.48298642039299,-0.875363409519196,0.00493395049124956,0.476899832487106,-0.878943800926209,-0.0158585179597139,0.462706834077835,-0.886369526386261,0.00437462981790304,0.46519461274147,-0.885197639465332,-0.00258233910426497,0.465450614690781,-0.885070085525513,0.00344642926938832,0.512173295021057,-0.858875215053558,0.00479730032384396,0.497113913297653,-0.867672145366669,0.00190319400280714,0.574566304683685,-0.818455815315247,0.00768758449703455,0.533556461334229,-0.845729649066925,0.00190319400280714,0.574566304683685,-0.818455815315247,0.00479730032384396,0.497113913297653,-0.867672145366669,-0.00613788468763232,0.496810793876648,-0.867837190628052,-0.0025761416181922,0.465570330619812,-0.885007262229919,0.00438039423897862,0.465315580368042,-0.885134041309357,-0.00228748004883528,0.4969242811203,-0.867790877819061,-0.00137375178746879,0.512175858020782,-0.858879506587982,-0.00137307343538851,0.440903455018997,-0.897553503513336,-0.00272520259022713,0.46268954873085,-0.886516213417053,-0.00629603024572134,0.496805965900421,-0.867838799953461,
- -0.0042921993881464,0.440778464078903,-0.897605657577515,-0.00647797528654337,0.496800422668457,-0.867840647697449,-0.00527038006111979,0.440897732973099,-0.897541880607605,-0.00447431486099958,0.440773040056229,-0.897607564926147,-0.00301575870253146,0.908186256885529,-0.418555408716202,0.00486758258193731,0.891688764095306,-0.452623099088669,-0.00514323217794299,0.909555673599243,-0.415550321340561,0.0085062189027667,0.892066895961761,-0.451823264360428,0.00138558424077928,0.908189535140991,-0.418556928634644,0.00138637644704431,0.889652609825134,-0.456635862588882,-0.00859254412353039,0.906708538532257,-0.421670526266098,-0.00514323217794299,0.909555673599243,-0.415550321340561,0.00486758258193731,0.891688764095306,-0.452623099088669,-0.00295526045374572,0.889649569988251,-0.456634283065796,0.00593500304967165,0.851008236408234,-0.525118827819824,-0.0132146496325731,0.889623582363129,-0.456503242254257,0.0103914989158511,0.85154527425766,-0.524178028106689,0.00302249984815717,0.889649510383606,-0.456634253263474,0.00302214245311916,0.84398227930069,-0.536362528800964,-0.0102656595408916,0.88998144865036,-0.455881178379059,0.0229288898408413,0.874318778514862,-0.48481023311615,-0.0275610834360123,0.882509231567383,-0.469486832618713,0.0172688830643892,0.866143643856049,-0.499496936798096,-0.0132146496325731,0.889623582363129,-0.456503242254257,0.00593500304967165,0.851008236408234,-0.525118827819824,0.0222922749817371,0.873412489891052,-0.48647066950798,-0.0282051451504231,0.881635367870331,-0.471087664365768,-0.0282051451504231,0.881635367870331,-0.471087664365768,-0.00432145362719893,0.84397828578949,-0.536359965801239,0.0108803194016218,0.781741261482239,-0.623508155345917,-0.0175563525408506,0.847881495952606,-0.529895067214966,-0.0121579095721245,0.819391787052155,-0.573104977607727,-0.0175563525408506,0.847881495952606,-0.529895067214966,0.0108803194016218,0.781741261482239,-0.623508155345917,0.0148817431181669,0.782329082489014,-0.622687518596649,0.00175633793696761,0.843984842300415,-0.536364138126373,0.00175626412965357,0.78163731098175,-0.623730778694153,
- 0.00193689356092364,0.722640514373779,-0.691221415996552,-0.00944797974079847,0.778549313545227,-0.627512335777283,0.00193779915571213,0.781637012958527,-0.623730540275574,-0.00836083758622408,0.778728663921356,-0.627305150032043,0.00423333887010813,0.722635328769684,-0.691216468811035,0.0118980435654521,0.725120007991791,-0.688519716262817,0.023009842261672,0.742055296897888,-0.669943630695343,-0.00836083758622408,0.778728663921356,-0.627305150032043,0.0118980435654521,0.725120007991791,-0.688519716262817,0.00600751489400864,0.781007409095764,-0.624493062496185,0.0176743138581514,0.798704206943512,-0.601464211940765,-0.0197426620870829,0.806187450885773,-0.591330707073212,-0.00987334735691547,0.778478860855103,-0.627593159675598,0.0217375177890062,0.739526033401489,-0.672776877880096,-0.00998213328421116,0.746792316436768,-0.664982378482819,0.0177478790283203,0.798834621906281,-0.601288795471191,-0.0120184225961566,0.80497419834137,-0.593188285827637,-0.0196690913289785,0.806317806243896,-0.591155409812927,0.0217790380120277,0.739608764648438,-0.672684609889984,-0.0406628139317036,0.753548145294189,-0.656134068965912,-0.0099398847669363,0.746876001358032,-0.6648890376091,0.0279455129057169,0.86651486158371,-0.498368412256241,-0.0317828357219696,0.876718580722809,-0.479952722787857,0.0188529286533594,0.868458271026611,-0.49540388584137,-0.0306966863572598,0.772138595581055,-0.634712278842926,0.0313767455518246,0.758409023284912,-0.651023268699646,0.0271823368966579,0.759116411209106,-0.650387108325958,0.0272320955991745,0.759207308292389,-0.650278925895691,0.0174473933875561,0.762451469898224,-0.646810173988342,-0.0306466855108738,0.77223002910614,-0.634603500366211,0.0278121419250965,0.866329252719879,-0.498698443174362,0.00463118078187108,0.871066927909851,-0.49114254117012,-0.0319166518747807,0.87653249502182,-0.480283349752426,-0.0318048521876335,0.798117518424988,-0.601661741733551,-0.0168270114809275,0.796769678592682,-0.60404896736145,0.0289562288671732,0.787919819355011,-0.615096628665924,-0.0119967302307487,0.892750918865204,-0.450390756130219,
- -0.018811047077179,0.894040882587433,-0.447590261697769,0.0152678024023771,0.889294326305389,-0.457080394029617,0.0151858553290367,0.889159202575684,-0.457345932722092,-0.00322218029759824,0.891481578350067,-0.453045517206192,-0.0120791476219893,0.892616748809814,-0.45065450668335,-0.00825631897896528,0.908009231090546,-0.418868809938431,-0.00496320845559239,0.908074557781219,-0.418779194355011,0.0249520130455494,0.904680490493774,-0.425359398126602,-0.00817776098847389,0.907153308391571,-0.420721083879471,-0.00426078960299492,0.908238470554352,-0.418431282043457,-0.00487073929980397,0.907224774360657,-0.420618027448654,-0.00125899503473192,0.871277987957001,-0.490788280963898,-0.00511718681082129,0.871188998222351,-0.49092110991478,0.0042158355936408,0.870327055454254,-0.492456138134003,-0.00130809983238578,0.90820699930191,-0.418519496917725,-0.00808141473680735,0.90609872341156,-0.422989130020142,-0.00264264200814068,0.889688372612,-0.456560641527176,-0.00127433787565678,0.871441960334778,-0.490496963262558,4.5938570110593e-005,0.889652907848358,-0.456637620925903,-0.00513061136007309,0.87135773897171,-0.490621417760849,-0.00345241371542215,0.889697909355164,-0.456536889076233,-0.00231927167624235,0.908188045024872,-0.418556243181229,-0.00211734184995294,0.90821635723114,-0.418495625257492,0.000965641695074737,0.886444509029388,-0.462833851575851,0.000964905368164182,0.908189952373505,-0.4185571372509,-7.87553435657173e-005,0.889654636383057,-0.456634074449539,-0.00959610473364592,0.842806875705719,-0.538130521774292,0.00125540432054549,0.843103766441345,-0.537749469280243,-0.00983251631259918,0.844060301780701,-0.536158323287964,0.0292265452444553,0.78850245475769,-0.614336788654327,-0.0058483793400228,0.793815970420837,-0.608129918575287,-0.0315395705401897,0.798707902431488,-0.600891768932343,-0.00405087508261204,0.858938694000244,-0.512062430381775,-0.00205369899049401,0.889681160449982,-0.456577777862549,-0.00111478893086314,0.869731783866882,-0.493523418903351,-0.00345972180366516,0.858931124210358,-0.512079656124115,
- -0.00272809434682131,0.886441648006439,-0.46283233165741,-0.00146180763840675,0.88967353105545,-0.456594824790955,-0.00957285240292549,0.842519342899323,-0.538581252098084,-0.00286638806574047,0.858923077583313,-0.512096643447876,0.00127978494856507,0.842817962169647,-0.53819727897644,0.000911581737454981,0.843985795974731,-0.536364734172821,0.000911495531909168,0.886444568634033,-0.462833881378174,0.000432132335845381,0.85887336730957,-0.512188017368317,-0.00610052095726132,0.797275841236115,-0.603584289550781,0.0304516758769751,0.791133940219879,-0.610884428024292,-0.00610052095726132,0.797275841236115,-0.603584289550781,-0.00233834539540112,0.743251025676727,-0.669008553028107,0.00887204054743052,0.742636740207672,-0.669635713100433,0.00875914376229048,0.743556261062622,-0.668615996837616,-0.00349136185832322,0.822250008583069,-0.569115698337555,-0.00135137804318219,0.858901381492615,-0.51213926076889,-0.00942935328930616,0.840739607810974,-0.541357576847076,-0.00371508440002799,0.822253406047821,-0.569109439849854,-0.00266530178487301,0.843983173370361,-0.536363065242767,-0.00157525297254324,0.858904659748077,-0.512133061885834,-0.00611174572259188,0.797429323196411,-0.603381395339966,-0.00206832611002028,0.822227656841278,-0.569154977798462,-0.00611174572259188,0.797429323196411,-0.603381395339966,0.00103006616700441,0.781638085842133,-0.623731374740601,0.00102973589673638,0.843985795974731,-0.536364734172821,0.00138401007279754,0.822166502475739,-0.569245398044586,0.00875513907521963,0.743615746498108,-0.668549954891205,0.00640149181708694,0.763539016246796,-0.645729959011078,-0.00234231818467379,0.743310809135437,-0.668942213058472,-0.00192420149687678,0.822225332260132,-0.569158852100372,-0.00586315849795938,0.794019401073456,-0.607864141464233,-0.00496097933501005,0.763776302337646,-0.645461976528168,-0.00496097933501005,0.763776302337646,-0.645461976528168,-0.00343337305821478,0.781633913516998,-0.623728036880493,-0.00192420149687678,0.822225332260132,-0.569158852100372,0.00609330181032419,0.763546884059906,-0.645723819732666,
- 0.00887590367347002,0.741820216178894,-0.670540034770966,0.00416276650503278,0.722545206546783,-0.691311180591583,0.0013744633179158,0.722641170024872,-0.691222012042999,0.00137531687505543,0.781637728214264,-0.623731136322021,0.00211096578277648,0.763640224933624,-0.645638585090637,0.00434483122080565,0.722540676593781,-0.69131475687027,0.00524906069040298,0.722631871700287,-0.691213130950928,0.00627514906227589,0.763542234897614,-0.645727396011353,-0.0048676086589694,0.891688764095306,-0.452623099088669,0.00301573076285422,0.908186256885529,-0.418555408716202,0.00514320563524961,0.909555673599243,-0.415550321340561,0.00514320563524961,0.909555673599243,-0.415550321340561,0.00859254132956266,0.906708538532257,-0.421670526266098,-0.0048676086589694,0.891688764095306,-0.452623099088669,-0.00138561252970248,0.908189535140991,-0.418556928634644,-0.00850624591112137,0.892066895961761,-0.451823264360428,-0.00138640473596752,0.889652609825134,-0.456635862588882,-0.0229289419949055,0.874318838119507,-0.484810084104538,0.0102656334638596,0.88998144865036,-0.455881148576736,0.0275610294193029,0.882509291172028,-0.469486683607101,-0.0059348801150918,0.851008176803589,-0.525118887424469,0.00295527512207627,0.889649569988251,-0.456634283065796,0.013214772567153,0.889623582363129,-0.45650327205658,0.013214772567153,0.889623582363129,-0.45650327205658,-0.0172687359154224,0.866143345832825,-0.499497264623642,-0.0059348801150918,0.851008176803589,-0.525118887424469,-0.0030224930960685,0.889649510383606,-0.456634253263474,-0.0103914914652705,0.85154527425766,-0.524178028106689,-0.00302213570103049,0.84398227930069,-0.536362528800964,-0.0222923122346401,0.873412609100342,-0.486470639705658,0.0282051078975201,0.881635427474976,-0.471087545156479,0.0282051078975201,0.881635427474976,-0.471087545156479,-0.0108800996094942,0.781741142272949,-0.623508155345917,0.00432144850492477,0.84397828578949,-0.536359965801239,0.0175565648823977,0.847881436347961,-0.529895126819611,0.0175565648823977,0.847881436347961,-0.529895126819611,0.0121581954881549,0.819391250610352,-0.573105692863464,
- -0.0108800996094942,0.781741142272949,-0.623508155345917,-0.00175635423511267,0.843984842300415,-0.536364138126373,-0.014881756156683,0.782329082489014,-0.622687518596649,-0.00175628042779863,0.78163731098175,-0.623730778694153,0.00944801233708858,0.778549313545227,-0.627512335777283,-0.0019368608482182,0.722640514373779,-0.691221415996552,-0.00193776655942202,0.781637012958527,-0.623730540275574,-0.00423335377126932,0.722635328769684,-0.691216468811035,0.00836057309061289,0.778728723526001,-0.627305090427399,-0.0118983015418053,0.725120067596436,-0.688519656658173,0.00836057309061289,0.778728723526001,-0.627305090427399,-0.0230101626366377,0.742055952548981,-0.669942915439606,-0.0118983015418053,0.725120067596436,-0.688519656658173,-0.0176742728799582,0.798704147338867,-0.60146427154541,-0.0060074795037508,0.781007409095764,-0.624493062496185,0.0197427030652761,0.806187391281128,-0.591330826282501,-0.0217373538762331,0.739525735378265,-0.672777235507965,0.0098734749481082,0.778478860855103,-0.627593219280243,0.00998229719698429,0.746791958808899,-0.664982795715332,0.012018465436995,0.804974019527435,-0.593188345432281,-0.0177478343248367,0.798834562301636,-0.601288914680481,0.019669134169817,0.806317746639252,-0.591155529022217,0.0406629741191864,0.753547728061676,-0.656134366989136,-0.0217788834124804,0.739608466625214,-0.672684967517853,0.00994004029780626,0.746875703334808,-0.664889395236969,0.0317831970751286,0.876717984676361,-0.479953557252884,-0.0279451515525579,0.866514325141907,-0.498369306325912,-0.0188525766134262,0.868457674980164,-0.495404750108719,-0.0313768200576305,0.758409142494202,-0.651023089885712,0.0306966099888086,0.772138774394989,-0.634712100028992,-0.0271824132651091,0.759116590023041,-0.650386929512024,-0.0174474492669106,0.762451589107513,-0.646809995174408,-0.0272321626543999,0.759207427501678,-0.650278806686401,0.0306466165930033,0.77223014831543,-0.634603381156921,-0.0278117880225182,0.866328775882721,-0.498699307441711,0.031917005777359,0.876532018184662,-0.480284214019775,-0.00463089207187295,0.871066391468048,-0.491143435239792,
- 0.0168266911059618,0.79677015542984,-0.604048192501068,0.0318045988678932,0.798118114471436,-0.601661026477814,-0.0289564915001392,0.787920415401459,-0.615095913410187,0.011996902525425,0.892750680446625,-0.450391322374344,-0.0152676338329911,0.889294147491455,-0.457081019878387,0.018811259418726,0.894040703773499,-0.447590857744217,0.00322214933112264,0.891481280326843,-0.45304611325264,-0.0151856830343604,0.88915890455246,-0.457346498966217,0.0120793217793107,0.892616450786591,-0.450655043125153,-0.0249520167708397,0.904680490493774,-0.425359398126602,0.00496320892125368,0.908074557781219,-0.418779194355011,0.00825631897896528,0.908009231090546,-0.418868809938431,0.00817776098847389,0.907153308391571,-0.420721083879471,0.00487073929980397,0.907224774360657,-0.420618027448654,0.00426078960299492,0.908238470554352,-0.418431282043457,-0.00421583186835051,0.870327055454254,-0.492456138134003,0.00511718587949872,0.871188998222351,-0.49092110991478,0.00125899433623999,0.871277928352356,-0.490788280963898,0.00130803510546684,0.90820699930191,-0.418519496917725,0.00264257728122175,0.889688372612,-0.456560641527176,0.0080813392996788,0.906097888946533,-0.422990918159485,0.00127434602472931,0.871442079544067,-0.490496814250946,0.00513061787933111,0.871357798576355,-0.490621268749237,-4.59327784483321e-005,0.889652907848358,-0.456637620925903,0.00345235201530159,0.889697909355164,-0.456536889076233,0.00211728038266301,0.90821635723114,-0.418495625257492,0.00231926748529077,0.908188045024872,-0.418556243181229,-0.000965595885645598,0.886444509029388,-0.462833851575851,7.88010511314496e-005,0.889654636383057,-0.456634074449539,-0.000964859558735043,0.908189952373505,-0.4185571372509,0.00983251258730888,0.844060301780701,-0.536158323287964,-0.00125540362205356,0.843103766441345,-0.537749469280243,0.00959610566496849,0.842806875705719,-0.538130521774292,0.00584842311218381,0.793816566467285,-0.608129143714905,-0.029226815328002,0.788503110408783,-0.614336133003235,0.0315393097698689,0.798708498477936,-0.600891053676605,0.00205375859513879,0.889681160449982,-0.456577777862549,
- 0.00405093468725681,0.858938694000244,-0.512062430381775,0.00111486669629812,0.869732737541199,-0.493521988391876,0.00345978024415672,0.858931124210358,-0.512079656124115,0.00146186584606767,0.88967353105545,-0.456594824790955,0.00272809923626482,0.886441648006439,-0.46283233165741,0.00957285240292549,0.842519342899323,-0.538581252098084,-0.00127978494856507,0.842817962169647,-0.53819727897644,0.00286638806574047,0.858923077583313,-0.512096643447876,-0.000911594659555703,0.843985795974731,-0.536364734172821,-0.000432145199738443,0.85887336730957,-0.512188017368317,-0.00091150839580223,0.886444568634033,-0.462833881378174,-0.0304516758769751,0.791133940219879,-0.610884428024292,0.00610052095726132,0.797275841236115,-0.603584289550781,0.00610052095726132,0.797275841236115,-0.603584289550781,-0.00887204241007566,0.742636740207672,-0.669635713100433,0.00233834562823176,0.743251025676727,-0.669008553028107,-0.00875914376229048,0.743556261062622,-0.668615996837616,0.00135137804318219,0.858901381492615,-0.51213926076889,0.00349136185832322,0.822250008583069,-0.569115698337555,0.00942935328930616,0.840739607810974,-0.541357576847076,0.00371508440002799,0.822253406047821,-0.569109439849854,0.00157525308895856,0.858904659748077,-0.512133061885834,0.00266530178487301,0.843983173370361,-0.536363065242767,0.00206832611002028,0.822227656841278,-0.569154977798462,0.00611174572259188,0.797429323196411,-0.603381395339966,0.00611174572259188,0.797429323196411,-0.603381395339966,-0.00103003811091185,0.781638085842133,-0.623731374740601,-0.0013839821331203,0.822166502475739,-0.569245398044586,-0.00102970784064382,0.843985795974731,-0.536364734172821,-0.00640149181708694,0.763539016246796,-0.645729959011078,-0.00875513907521963,0.743615746498108,-0.668549954891205,0.00234231818467379,0.743310809135437,-0.668942213058472,0.00586315849795938,0.794019401073456,-0.607864141464233,0.00192420149687678,0.822225332260132,-0.569158852100372,0.00496097933501005,0.763776302337646,-0.645461976528168,0.00343337305821478,0.781633913516998,-0.623728036880493,
- 0.00496097933501005,0.763776302337646,-0.645461976528168,0.00192420149687678,0.822225332260132,-0.569158852100372,-0.00887590367347002,0.741820216178894,-0.670540034770966,-0.00609330181032419,0.763546884059906,-0.645723819732666,-0.00416276650503278,0.722545206546783,-0.691311180591583,-0.00137451803311706,0.722641170024872,-0.691222012042999,-0.00211102049797773,0.763640224933624,-0.645638585090637,-0.00137537170667201,0.781637728214264,-0.623731136322021,-0.00434483122080565,0.722540676593781,-0.69131475687027,-0.00627514906227589,0.763542234897614,-0.645727396011353,-0.00524906069040298,0.722631871700287,-0.691213130950928
- }
- TangentsW: *1086 {
- 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,1,1,1,1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,-1,1,1,1,-1,-1,1,1,-1,1,-1,-1,-1,1,1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,1,-1,1,-1,1,-1,-1,1,1,1,-1,1,-1,1,1,1,-1,-1,1,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,1,-1,1,-1,-1,1,-1,-1,1,-1,1,1,1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,1,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,1,-1,1,-1,1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,1,-1,1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,1,1,-1,1,-1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,1,1,1,-1,1,-1,-1,-1,-1,1,-1,
- -1,1,-1,1,1,-1,1,-1,-1,1,1,1,1,1,1,1,1,-1,1,1,1,-1,-1,1,1,-1,-1,1,-1,1,1,-1,-1,1,1,1,-1,1,1,1,1,1,1,-1,-1,1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,1,1,1,1,-1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,-1,1,1,-1,1,1,-1,1,-1,-1,1,1,1,-1,1,1,1,1,1,1,-1,1,1,1,1,-1,1,-1,-1,-1,1,1,1,1,1,1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,1,1,-1,1,1,1,1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,1,1,-1,1,-1,1,1,1,1,1,1,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: 1 {
- Version: 102
- Name: "LightMapUV"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *3258 {
- a: 0,-0.00050602457486093,-0.99999988079071,0,-0.00050602457486093,-0.99999988079071,0,-0.00050602457486093,-0.99999988079071,-0,0.000557855935767293,-0.999999940395355,-0,0.000557855935767293,-0.999999940395355,-0,0.000557855935767293,-0.999999940395355,0,-9.86769591690972e-005,-1,0,-9.86769591690972e-005,-1,0,-9.86769591690972e-005,-1,0,-0.00237733544781804,-0.999997198581696,0,-0.00237733544781804,-0.999997198581696,0,-0.00237733544781804,-0.999997198581696,-0,0.000383891339879483,-0.999999940395355,-0,0.000383891339879483,-0.999999940395355,-0,0.000383891339879483,-0.999999940395355,-0,0.00047507110866718,-0.99999988079071,-0,0.00047507110866718,-0.99999988079071,-0,0.00047507110866718,-0.99999988079071,0,-0.000310543749947101,0.999999940395355,0,-0.000310543749947101,0.999999940395355,0,-0.000310543749947101,0.999999940395355,0,0.000903155654668808,0.999999582767487,0,0.000903155654668808,0.999999582767487,0,0.000903155654668808,0.999999582767487,0,6.88472355250269e-005,1,0,6.88472355250269e-005,1,0,6.88472355250269e-005,1,0,-0.0045653716661036,0.999989569187164,0,-0.0045653716661036,0.999989569187164,0,-0.0045653716661036,0.999989569187164,0,-0.000515120336785913,0.99999988079071,0,-0.000515120336785913,0.99999988079071,0,-0.000515120336785913,0.99999988079071,0,-0.000477663677884266,0.99999988079071,0,-0.000477663677884266,0.99999988079071,0,-0.000477663677884266,0.99999988079071,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,2.72107918135589e-005,-1,-2.2180342552819e-016,2.72107918135589e-005,-1,-2.2180342552819e-016,2.72107918135589e-005,-1,-2.2180342552819e-016,-0.00121032912284136,-0.999999284744263,-2.21330529680716e-016,-0.00121032912284136,-0.999999284744263,-2.21330529680716e-016,-0.00121032912284136,-0.999999284744263,-2.21330529680716e-016,0.00118715362623334,-0.999999284744263,-2.2132959000354e-016,0.00118715362623334,-0.999999284744263,-2.2132959000354e-016,
- 0.00118715362623334,-0.999999284744263,-2.2132959000354e-016,0,-0.999969005584717,-0.00787377171218395,0,-0.999969005584717,-0.00787377171218395,0,-0.999969005584717,-0.00787377171218395,-0,-0.999969005584717,-0.00787377171218395,-0,-0.999969005584717,-0.00787377171218395,-0,-0.999969005584717,-0.00787377171218395,2.72092711384175e-005,-0.999969005584717,-0.00787377171218395,2.72092711384175e-005,-0.999969005584717,-0.00787377171218395,2.72092711384175e-005,-0.999969005584717,-0.00787377171218395,-0.0125324549153447,-0.999890565872192,-0.00787315424531698,-0.0125324549153447,-0.999890565872192,-0.00787315424531698,-0.0125324549153447,-0.999890565872192,-0.00787315424531698,0.0125068090856075,-0.999890804290771,-0.00787315517663956,0.0125068090856075,-0.999890804290771,-0.00787315517663956,0.0125068090856075,-0.999890804290771,-0.00787315517663956,0.54521232843399,-0.662146329879761,-0.514106810092926,0.54521232843399,-0.662146329879761,-0.514106810092926,0.54521232843399,-0.662146329879761,-0.514106810092926,0.545236706733704,-0.662682175636292,-0.513390004634857,0.545236706733704,-0.662682175636292,-0.513390004634857,0.545236706733704,-0.662682175636292,-0.513390004634857,-0.00242169131524861,-0.567745864391327,0.823200345039368,-0.00242169131524861,-0.567745864391327,0.823200345039368,-0.00242169131524861,-0.567745864391327,0.823200345039368,-0.00242154230363667,-0.567745685577393,0.823200464248657,-0.00242154230363667,-0.567745685577393,0.823200464248657,-0.00242154230363667,-0.567745685577393,0.823200464248657,-0.908418893814087,-0.364210993051529,-0.20524488389492,-0.908418893814087,-0.364210993051529,-0.20524488389492,-0.908418893814087,-0.364210993051529,-0.20524488389492,-0.909119248390198,-0.342049300670624,-0.237706691026688,-0.909119248390198,-0.342049300670624,-0.237706691026688,-0.909119248390198,-0.342049300670624,-0.237706691026688,-0.000696868286468089,-0.570295393466949,0.821439385414124,-0.000696868286468089,-0.570295393466949,0.821439385414124,-0.000696868286468089,-0.570295393466949,0.821439385414124,
- -0.000696787028573453,-0.570295512676239,0.821439445018768,-0.000696787028573453,-0.570295512676239,0.821439445018768,-0.000696787028573453,-0.570295512676239,0.821439445018768,0.999907851219177,-0.00546334031969309,-0.012426421046257,0.999907851219177,-0.00546334031969309,-0.012426421046257,0.999907851219177,-0.00546334031969309,-0.012426421046257,0.999995827674866,0.00116527813952416,0.00265043508261442,0.999995827674866,0.00116527813952416,0.00265043508261442,0.999995827674866,0.00116527813952416,0.00265043508261442,1,0,-0,1,0,-0,1,0,-0,1,-5.32172962266486e-005,-0.000121042867249344,1,-5.32172962266486e-005,-0.000121042867249344,1,-5.32172962266486e-005,-0.000121042867249344,1,0,-0,1,0,-0,1,0,-0,0.999997079372406,-0.000990424072369933,-0.00225272914394736,0.999997079372406,-0.000990424072369933,-0.00225272914394736,0.999997079372406,-0.000990424072369933,-0.00225272914394736,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0.00175327365286648,-0.999998450279236,-2.22044260817896e-016,0.00175327365286648,-0.999998450279236,-2.22044260817896e-016,0.00175327365286648,-0.999998450279236,-2.22044260817896e-016,-0.00167120643891394,-0.99999862909317,-2.22044300522566e-016,-0.00167120643891394,-0.99999862909317,-2.22044300522566e-016,-0.00167120643891394,-0.99999862909317,-2.22044300522566e-016,-0.00383971491828561,-0.999992728233337,-2.22042990268476e-016,-0.00383971491828561,-0.999992728233337,-2.22042990268476e-016,-0.00383971491828561,-0.999992728233337,-2.22042990268476e-016,-0.0113567225635052,-0.999935507774353,-2.22030284774267e-016,-0.0113567225635052,-0.999935507774353,-2.22030284774267e-016,-0.0113567225635052,-0.999935507774353,-2.22030284774267e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,-0.999907851219177,-0.00546334031969309,-0.012426421046257,-0.999907851219177,-0.00546334031969309,-0.012426421046257,-0.999907851219177,-0.00546334031969309,-0.012426421046257,-0.999995887279511,0.00115694548003376,0.00263148243539035,-0.999995887279511,0.00115694548003376,0.00263148243539035,
- -0.999995887279511,0.00115694548003376,0.00263148243539035,-1,0,0,-1,0,0,-1,0,0,-1,-5.10936697537545e-005,-0.000116212657303549,-1,-5.10936697537545e-005,-0.000116212657303549,-1,-5.10936697537545e-005,-0.000116212657303549,-1,0,0,-1,0,0,-1,0,0,-0.999996960163116,-0.000995726324617863,-0.00226478930562735,-0.999996960163116,-0.000995726324617863,-0.00226478930562735,-0.999996960163116,-0.000995726324617863,-0.00226478930562735,0.999979734420776,0.00636723544448614,1.41381027873558e-018,0.999979734420776,0.00636723544448614,1.41381027873558e-018,0.999979734420776,0.00636723544448614,1.41381027873558e-018,0.999998867511749,-0.00157169660087675,-3.48986750803692e-019,0.999998867511749,-0.00157169660087675,-3.48986750803692e-019,0.999998867511749,-0.00157169660087675,-3.48986750803692e-019,1,0,0,1,0,0,1,0,0,0.999999821186066,-0.000592464173678309,-1.31553473376635e-019,0.999999821186066,-0.000592464173678309,-1.31553473376635e-019,0.999999821186066,-0.000592464173678309,-1.31553473376635e-019,1,0,0,1,0,0,1,0,0,0.999988794326782,-0.00473690452054143,-1.05180409283122e-018,0.999988794326782,-0.00473690452054143,-1.05180409283122e-018,0.999988794326782,-0.00473690452054143,-1.05180409283122e-018,0.00459594558924437,0.115157283842564,-0.993336737155914,0.002270637312904,0.173335418105125,-0.984860241413116,0.00226806895807385,0.110431253910065,-0.993881285190582,-0.00352308596484363,0.173334777355194,-0.98485666513443,-0.000205037737032399,0.113954491913319,-0.993486046791077,-0.0154277347028255,0.175160229206085,-0.984419047832489,0.0156652312725782,0.182621836662292,-0.983058452606201,0.00198583770543337,0.292418748140335,-0.95628833770752,0.00198686216026545,0.173335492610931,-0.984860837459564,-0.00148726720362902,0.125797748565674,-0.99205482006073,-0.0154271479696035,0.175160378217697,-0.984419047832489,-0.000208965197089128,0.113953493535519,-0.993486046791077,-0.00334746320731938,0.292417675256729,-0.956284821033478,0.0146170230582356,0.182373270392418,-0.983120739459991,-0.0202765744179487,0.318616271018982,-0.947666883468628,
- 0.0050689559429884,0.324695229530334,-0.945805132389069,0.00230470206588507,0.3767971098423,-0.926292955875397,0.0023047395516187,0.292418539524078,-0.956287682056427,-0.0154740856960416,0.175148978829384,-0.984420359134674,-0.00300929136574268,0.121028885245323,-0.992644429206848,-0.0160613059997559,0.125411674380302,-0.991974771022797,-0.0104039190337062,0.435166895389557,-0.900289714336395,0.00211502728052437,0.37679734826088,-0.926293432712555,0.0183771066367626,0.327798694372177,-0.944568872451782,-0.00416089221835136,0.436552345752716,-0.899669229984283,0.00226238905452192,0.44090273976326,-0.897552013397217,0.00226300535723567,0.376797169446945,-0.926293015480042,-0.0215283147990704,0.2620809674263,-0.964805722236633,-0.020258080214262,0.318620771169662,-0.947665750980377,0.0146190971136093,0.182373777031899,-0.983120679855347,0.0204720478504896,0.380888700485229,-0.924394249916077,-0.0103124557062984,0.435187339782715,-0.900280892848969,0.0184528697282076,0.327816188335419,-0.944561302661896,0.0100174937397242,0.181280136108398,-0.983380496501923,0.0181879196316004,0.225045010447502,-0.974178612232208,-0.0289942771196365,0.240366443991661,-0.970249116420746,-0.0123149193823338,0.434739202260971,-0.900472223758698,0.0205986779183149,0.38123831152916,-0.924247264862061,-0.00991507153958082,0.390749543905258,-0.920443654060364,-0.0101573849096894,0.390090852975845,-0.920720458030701,0.0203573722392321,0.38057205080986,-0.924527168273926,-0.0140561694279313,0.391445964574814,-0.920093715190887,-0.00292525556869805,0.121292270720005,-0.992612540721893,-0.0140486378222704,0.125199735164642,-0.992032110691071,-0.0159775335341692,0.125657767057419,-0.991944968700409,0.0183388311415911,0.225479662418365,-0.974075257778168,0.021566079929471,0.224008798599243,-0.974348485469818,-0.0288439784198999,0.240805372595787,-0.970144748687744,-0.0154207311570644,0.121355697512627,-0.992489397525787,-0.00418123602867126,0.117354646325111,-0.993081271648407,0.00182105344720185,0.115187026560307,-0.993342161178589,-0.00186428951565176,0.116975776851177,-0.993133127689362,
- -0.0153420139104128,0.121576279401779,-0.992463529109955,0.00189839687664062,0.115388937294483,-0.993318557739258,0.010062544606626,0.351972073316574,-0.935956418514252,0.0152327129617333,0.350090563297272,-0.936592102050781,-0.0247395075857639,0.363078862428665,-0.931429922580719,-0.0274709556251764,0.244811668992043,-0.969181418418884,0.0230088625103235,0.227972254157066,-0.973395824432373,-0.0237135272473097,0.24394653737545,-0.969498813152313,-0.0131512340158224,0.127712413668633,-0.991724073886871,-0.000194201493286528,0.123299717903137,-0.992369472980499,-0.0133954090997577,0.126960694789886,-0.9918172955513,0.0165385697036982,0.231016501784325,-0.972809255123138,-0.0238666404038668,0.243520721793175,-0.969601988792419,0.0228561330586672,0.227552846074104,-0.973497569561005,-0.0249065048992634,0.362631857395172,-0.931599617004395,0.0150642450898886,0.349640667438507,-0.936762869358063,0.00819899886846542,0.352882146835327,-0.93563187122345,-0.0185209773480892,0.258346378803253,-0.965874791145325,0.0210706349462271,0.246587246656418,-0.968891501426697,-0.0195367410778999,0.257597506046295,-0.966054797172546,0.0181271564215422,0.386137694120407,-0.922263026237488,-0.00586264301091433,0.392324894666672,-0.919808149337769,-0.0126891937106848,0.395043253898621,-0.918574869632721,0.0181271564215422,0.386137694120407,-0.922263026237488,0.00637929607182741,0.390352010726929,-0.92064356803894,-0.00586264301091433,0.392324894666672,-0.919808149337769,-0.000107574756839313,0.123627595603466,-0.992328703403473,-0.00488473102450371,0.124072164297104,-0.992261171340942,-0.0133060002699494,0.127274632453918,-0.991778254508972,-0.00434319209307432,0.110317081212997,-0.993886947631836,-0.00351207866333425,0.110730975866318,-0.993844211101532,-0.00520912650972605,0.110259845852852,-0.993889153003693,0.0209977738559246,0.246337324380875,-0.968956768512726,-0.00434173084795475,0.253136783838272,-0.967420876026154,-0.0196089260280132,0.257344931364059,-0.966120660305023,-0.00247150007635355,0.215078994631767,-0.976593554019928,0.0108307972550392,0.21133753657341,-0.977353155612946,
- -0.00845848768949509,0.214845597743988,-0.976611375808716,0.00525822676718235,0.41289821267128,-0.910762012004852,0.0247030425816774,0.40791592001915,-0.91268527507782,-0.00190032122191042,0.412627309560776,-0.910897970199585,0.00529729947447777,0.412117689847946,-0.911115229129791,-0.0018638662295416,0.4118432700634,-0.911252796649933,0.00526187382638454,0.440749019384384,-0.8976149559021,-0.00368288648314774,0.285235404968262,-0.958450436592102,-0.0109410146251321,0.287502706050873,-0.95771735906601,-0.00592329213395715,0.285121858119965,-0.958473086357117,0.00135426479391754,0.341547131538391,-0.939863681793213,0.00421804608777165,0.339421153068542,-0.940625071525574,-0.0060340017080307,0.341253995895386,-0.939951777458191,0.00399798667058349,0.369912922382355,-0.929057836532593,0.00643774261698127,0.440712749958038,-0.897625088691711,-0.00173109560273588,0.408985495567322,-0.91253924369812,0.00133873207960278,0.341891556978226,-0.93973845243454,-0.00604865001514554,0.341600865125656,-0.939825773239136,-0.00135800521820784,0.370072245597839,-0.929001986980438,0.00231569516472518,0.440837234258652,-0.897584080696106,0.001307726604864,0.376797795295715,-0.92629462480545,0.00130744557827711,0.44090348482132,-0.897553563117981,0.00534270005300641,0.376792758703232,-0.926282167434692,0.00643774261698127,0.440712749958038,-0.897625088691711,0.00399798667058349,0.369912922382355,-0.929057836532593,-0.00460598804056644,0.314006686210632,-0.949409604072571,-0.00272812624461949,0.370111286640167,-0.928983390331268,-0.0060165231116116,0.340840101242065,-0.94010204076767,-0.00371261197142303,0.376795530319214,-0.926289021968842,-0.00272812624461949,0.370111286640167,-0.928983390331268,-0.00460598804056644,0.314006686210632,-0.949409604072571,-0.00370338326320052,0.285726755857468,-0.958303987979889,-0.00594725646078587,0.285605072975159,-0.95832896232605,-0.000514844374265522,0.313888043165207,-0.949459850788116,0.000636934186331928,0.376798033714294,-0.926295220851898,-4.42432028648909e-005,0.313874065876007,-0.949464619159698,
- 0.000636900367680937,0.292419254779816,-0.956290006637573,-0.0034863690380007,0.251885920763016,-0.967750668525696,-0.0014518880052492,0.31391566991806,-0.949449777603149,-0.00595560716465116,0.285773456096649,-0.958278715610504,-0.00250426097773016,0.292418390512466,-0.956287205219269,-0.00156957271974534,0.313919126987457,-0.94944840669632,-0.00360395526513457,0.251889407634735,-0.967749416828156,-0.00845427345484495,0.214738547801971,-0.976634979248047,-0.00281295739114285,0.251865923404694,-0.967758059501648,-0.00246687303297222,0.214984536170959,-0.976614356040955,0.00118532287888229,0.292419105768204,-0.956289529800415,0.0015919100260362,0.251732438802719,-0.967795550823212,0.00118685478810221,0.165678098797798,-0.986179172992706,-0.00168008974287659,0.251832067966461,-0.967769503593445,-0.00804409012198448,0.204319879412651,-0.97887122631073,-0.00541543494910002,0.149315848946571,-0.988774716854095,-0.00520761730149388,0.149307951331139,-0.988777041435242,-0.00298480782657862,0.165677472949028,-0.98617547750473,-0.00146870641037822,0.251825749874115,-0.967771589756012,-0.00522006116807461,0.110491290688515,-0.99386340379715,-0.000130670101498254,0.149113014340401,-0.988820254802704,-0.004352489951998,0.110553249716759,-0.99386078119278,-0.000144543868373148,0.149113535881042,-0.98882007598877,-0.00513261137530208,0.108640268445015,-0.994067907333374,-0.00193332647904754,0.102690331637859,-0.994711518287659,-0.00205755583010614,0.10269421339035,-0.994710862636566,-0.00188107811845839,0.165677934885025,-0.98617821931839,-0.000265365786617622,0.149118214845657,-0.988819360733032,0.00103593047242612,0.165678128600121,-0.986179351806641,0.000749392143916339,0.102606229484081,-0.99472177028656,0.00103442673571408,0.102629743516445,-0.994719088077545,1,0,0,0.969582915306091,-0.243167281150818,-0.0279044415801764,1,0,0,0.999760925769806,-0.00378996762447059,0.0215338915586472,0.971350908279419,-0.236610323190689,-0.0222034100443125,0.969314157962799,-0.245783969759941,-0.00450681755319238,0.999943494796753,-0.00310852541588247,0.0101657174527645,
- 0.971549332141876,-0.234271675348282,-0.0347655601799488,0.999957859516144,-0.00159133248962462,0.00904167536646128,0.960495889186859,-0.257979482412338,0.104375645518303,0.300347626209259,-0.953596949577332,-0.0210762396454811,0.965467989444733,-0.252627551555634,0.0636468306183815,0.971593916416168,-0.232389271259308,-0.0447268262505531,0.999981820583344,0.001768829068169,-0.00578454416245222,0.969948887825012,-0.227501049637794,-0.086269810795784,0.999959528446198,-0.00339109566994011,0.0083364425227046,0.969962537288666,-0.232060015201569,-0.0729454457759857,0.999991357326508,-0.00122311455197632,0.00399991031736135,0.298415124416351,-0.914088428020477,-0.274573862552643,0.965046465396881,-0.209281131625175,-0.157755449414253,0.318311452865601,-0.906253516674042,-0.278176963329315,0.999967992305756,-0.00301954662427306,0.00742305349558592,0.971704661846161,-0.214250311255455,-0.0994325578212738,0.96991229057312,-0.233919262886047,-0.0674681589007378,0.971713721752167,-0.212365090847015,-0.103312745690346,1,0,0,1,0,0,0.969969272613525,-0.231640428304672,-0.074178010225296,0.317377984523773,-0.898627936840057,-0.302884489297867,0.963526725769043,-0.206546142697334,-0.170161664485931,0.966690003871918,-0.255693435668945,-0.0114578763023019,0.317379713058472,-0.896357893943787,-0.309536218643188,0.969975590705872,-0.229109957814217,-0.0815845280885696,0.320533096790314,-0.931668102741241,-0.171035960316658,0.971590101718903,-0.233029887080193,-0.0413516461849213,0.315480440855026,-0.927242398262024,-0.201726734638214,0.315916061401367,-0.862041592597961,-0.396334826946259,0.971713304519653,-0.212760776281357,-0.102499105036259,0.321282774209976,-0.853487849235535,-0.410287529230118,0.330593138933182,-0.862686395645142,-0.38272750377655,0.315949380397797,-0.862489521503448,-0.395332545042038,0.321306824684143,-0.865055620670319,-0.385280013084412,0.334366708993912,-0.927167415618896,-0.168995603919029,0.301590502262115,-0.937450110912323,-0.173869028687477,0.320537894964218,-0.932065427303314,-0.168847471475601,0.334100127220154,-0.921802639961243,-0.196613803505898,
- 0.320361614227295,-0.926727652549744,-0.19632713496685,0.31465145945549,-0.931889116764069,-0.180491387844086,0.299133747816086,-0.954131245613098,0.0123608987778425,0.329291135072708,-0.944033145904541,0.0192086510360241,0.353121876716614,-0.935459673404694,0.0148370545357466,0.331678211688995,-0.942975044250488,-0.0280647296458483,0.252326935529709,-0.96744579076767,-0.0194875560700893,0.354336321353912,-0.934928119182587,-0.0188516210764647,0.317290216684341,-0.904727518558502,-0.28424471616745,0.327276736497879,-0.90540075302124,-0.270443379878998,0.330757349729538,-0.899849712848663,-0.28437665104866,0.317180454730988,-0.90818202495575,-0.273133605718613,0.330704927444458,-0.90332692861557,-0.273193448781967,0.331181436777115,-0.89790153503418,-0.289985686540604,0.270248532295227,-0.961725413799286,-0.0452765077352524,0.252720028162003,-0.966859698295593,-0.0362646356225014,0.332342386245728,-0.942098498344421,-0.0447098538279533,0.32855898141861,-0.927165985107422,-0.180034041404724,0.272297650575638,-0.948410987854004,-0.162390395998955,0.334399282932281,-0.929143488407135,-0.157700598239899,0.267255336046219,-0.907878339290619,-0.32300391793251,0.330672562122345,-0.889854967594147,-0.314346969127655,0.329588264226913,-0.884886622428894,-0.329161465167999,0.270146012306213,-0.918251752853394,-0.289542526006699,0.330714136362076,-0.891827166080475,-0.308662444353104,0.267265260219574,-0.909413158893585,-0.318649023771286,0.32992896437645,-0.822040259838104,-0.464108467102051,0.26760470867157,-0.839954435825348,-0.472085058689117,0.263948261737823,-0.848870396614075,-0.457985103130341,0.265186131000519,-0.863669276237488,-0.428662955760956,0.268457770347595,-0.865851998329163,-0.422174096107483,-0.0456832759082317,-0.898918151855469,-0.435728341341019,0.25155833363533,-0.936286926269531,-0.245122775435448,0.271517693996429,-0.931673586368561,-0.241376146674156,-0.0381371527910233,-0.968683660030365,-0.245352253317833,-0.0393396019935608,-0.999225914478302,3.4390338989743e-019,-0.047191459685564,-0.998885869979858,4.95052397169231e-019,
- 0.251523703336716,-0.967816591262817,0.00817963201552629,0.271447002887726,-0.930846571922302,-0.244625046849251,0.266342759132385,-0.935173451900482,-0.23347881436348,-0.0476649440824986,-0.967552185058594,-0.248134732246399,-0.047824963927269,-0.980687916278839,-0.189642295241356,-0.0386233851313591,-0.981033980846405,-0.189948782324791,0.27226197719574,-0.944494545459747,-0.183857753872871,0.267239511013031,-0.91605806350708,-0.299032986164093,-0.0447167083621025,-0.949541032314301,-0.3104387819767,-0.0422780215740204,-0.94950258731842,-0.31089773774147,-0.999480664730072,-0.0312937758862972,-0.00768620986491442,-0.0422639325261116,-0.899826109409332,-0.434196680784225,-0.0456943660974503,-0.897706151008606,-0.438219040632248,-0.0398068018257618,-0.947846353054047,-0.316232025623322,-0.0472537837922573,-0.947494864463806,-0.316260576248169,0.267257273197174,-0.914365768432617,-0.30415290594101,-0.0422994419932365,-0.946834206581116,-0.318929135799408,-0.0397909916937351,-0.946850538253784,-0.319203317165375,0.267264187335968,-0.913331031799316,-0.307239830493927,-0.0422750264406204,-0.901517450809479,-0.430672824382782,-0.999440371990204,-0.0332484245300293,-0.00370423402637243,-0.995769619941711,0.00282612023875117,-0.0918415933847427,-0.997635662555695,-0.00656951172277331,-0.0684113502502441,-0.0391830317676067,-0.914889633655548,-0.401798069477081,-0.0423352308571339,-0.913128912448883,-0.405466765165329,-1,0,0,-0.999504446983337,-0.0282527934759855,-0.0138785652816296,-1,0,0,-0.999498605728149,-0.0297639891505241,-0.0108017819002271,-0.999995112419128,-0.00118111295159906,0.00290356925688684,-0.999499678611755,-0.0303909350186586,-0.00876315962523222,-0.0398346334695816,-0.949639499187469,-0.310802519321442,-0.996262609958649,-0.0589268319308758,0.06315578520298,-0.99950784444809,-0.0297024585306644,-0.0101006748154759,-0.999996602535248,-0.000995345064438879,0.00244688987731934,-0.999504089355469,-0.0306499451398849,-0.00723432889208198,-0.99950098991394,-0.0302247926592827,-0.00918039120733738,-0.99950784444809,-0.0297024585306644,-0.0101006748154759,
- -0.0473075844347477,-0.949802458286285,-0.309252709150314,-0.0398346334695816,-0.949639499187469,-0.310802519321442,-0.999507546424866,-0.0295325573533773,-0.0106147704645991,-0.999998688697815,0.000614783843047917,-0.00151134340558201,-0.99999988079071,0.000155208283104002,-0.000507571967318654,-0.0475442223250866,-0.997434854507446,-0.0535113364458084,-0.942762196063995,-0.132348239421844,0.30607733130455,-0.965279281139374,-0.0947251468896866,0.243440106511116,-0.999999642372131,0.000277712679235265,-0.000908196961972862,-0.999503910541534,-0.0300365816801786,-0.00948488432914019,-0.999507606029511,-0.0296001899987459,-0.0104101840406656,-0.957242667675018,-0.101597085595131,0.270858764648438,-0.0392529293894768,-0.997024834156036,-0.0663376152515411,-0.0476263910531998,-0.996397435665131,-0.0701706856489182,-0.999448239803314,-0.0277539100497961,-0.0182519536465406,-0.999928295612335,0.00350431981496513,-0.0114600695669651,-0.999969363212585,0.00129911198746413,-0.00773281790316105,-0.0375778451561928,-0.954478025436401,0.295904695987701,-0.875641584396362,-0.148073419928551,0.45970219373703,-0.910271167755127,-0.0968211069703102,0.40253210067749,-0.999782145023346,0.00345791876316071,-0.0205828417092562,-0.999003708362579,-0.035581111907959,-0.0269367415457964,-0.999337255954742,-0.025824386626482,-0.0256546698510647,-0.928523540496826,0.0190657284110785,-0.370783656835556,-0.0433861874043942,-0.918341159820557,-0.393404603004456,-0.0361400842666626,-0.917958617210388,-0.395026355981827,-0.0471914485096931,-0.998885869979858,-6.76367967937563e-018,-0.980185091495514,-0.0670051425695419,0.186406955122948,-0.990164399147034,-0.0450981482863426,0.132441818714142,-0.999499499797821,-0.0052411206997931,0.0311971455812454,-0.998986124992371,-0.0346763730049133,0.0287136435508728,-0.998725593090057,-0.0434929579496384,0.0256044529378414,-0.999501883983612,-0.0313960164785385,-0.0032392714638263,-1,0,-0,-1,0,-0,-0.00655735190957785,0.722050607204437,-0.691809177398682,-7.2531749495397e-009,0.722641825675964,-0.691222667694092,
- -7.25587989691689e-009,0.675013482570648,-0.737805485725403,-0.0128200687468052,0.720949769020081,-0.692868828773499,-0.000214642088394612,0.675013422966003,-0.737805426120758,0.0155042307451367,0.63750684261322,-0.770288705825806,0.00787091907113791,0.63607919216156,-0.771583616733551,0.00608912017196417,0.675000905990601,-0.737791776657104,0.00608930643647909,0.606269180774689,-0.795236170291901,0.015663368627429,0.677433729171753,-0.735417008399963,-0.0128664541989565,0.720941483974457,-0.692876577377319,0.0154240522533655,0.637492060661316,-0.770302534103394,-0.0102789038792253,0.721400022506714,-0.692442297935486,0.0172858089208603,0.680952131748199,-0.732123911380768,-0.00387500901706517,0.686244666576386,-0.727360546588898,0.0172858089208603,0.680952131748199,-0.732123911380768,-0.00953357294201851,0.687750339508057,-0.725884675979614,-0.00387500901706517,0.686244666576386,-0.727360546588898,-0.00265370472334325,0.606278300285339,-0.7952481508255,0.0139377452433109,0.519802927970886,-0.854172646999359,-0.0202142223715782,0.63048791885376,-0.775935828685761,-0.0248429346829653,0.584212303161621,-0.811220586299896,-0.0199363604187965,0.630545854568481,-0.775895953178406,0.014207131229341,0.519858539104462,-0.854134202003479,0.012512574903667,0.519507765769959,-0.8543741106987,-3.19147641647533e-009,0.606280446052551,-0.795250952243805,-3.19090909250974e-009,0.517953813076019,-0.855408608913422,6.7682597304497e-009,0.440903872251511,-0.897554337978363,-0.0118942130357027,0.514281034469604,-0.857539236545563,6.77289602180053e-009,0.517953813076019,-0.855408608913422,-0.00897963065654039,0.514922380447388,-0.857189774513245,0.00422966480255127,0.440899938344955,-0.897546291351318,0.0121291419491172,0.440082430839539,-0.897875487804413,0.0179322976619005,0.464870870113373,-0.88519686460495,-0.00897963065654039,0.514922380447388,-0.857189774513245,0.0121291419491172,0.440082430839539,-0.897875487804413,-0.00934210885316134,0.514842927455902,-0.857233762741089,0.017043050378561,0.462552517652512,-0.88642805814743,-0.00979046709835529,0.470599830150604,-0.882292449474335,
- 0.00686839921399951,0.518328189849854,-0.85515421628952,0.0208726115524769,0.549019694328308,-0.835548758506775,-0.0331267789006233,0.563869774341583,-0.82519918680191,0.017043050378561,0.462552517652512,-0.88642805814743,-0.0358744189143181,0.478584736585617,-0.877308189868927,-0.00979046709835529,0.470599830150604,-0.882292449474335,0.0208726115524769,0.549019694328308,-0.835548758506775,-0.00403102766722441,0.556086540222168,-0.831114649772644,-0.0331267789006233,0.563869774341583,-0.82519918680191,-0.029185064136982,0.495296955108643,-0.868233382701874,0.0235309470444918,0.479393303394318,-0.877284646034241,0.0270539484918118,0.478158861398697,-0.877856731414795,0.0189259927719831,0.697643339633942,-0.716195225715637,-0.00201952154748142,0.703054785728455,-0.711132824420929,0.0245065819472075,0.696408987045288,-0.717226564884186,0.0151754477992654,0.600332021713257,-0.799606919288635,-0.021857425570488,0.610670149326324,-0.791583359241486,-0.0146679347380996,0.608602523803711,-0.793339669704437,0.0180426016449928,0.695863664150238,-0.717947244644165,-0.00237863347865641,0.700424134731293,-0.713722884654999,-0.00290274363942444,0.701274514198303,-0.712885499000549,0.0276704020798206,0.479716509580612,-0.876987099647522,-0.0183308236300945,0.492837250232697,-0.869928419589996,-0.0285730827599764,0.496814370155334,-0.867386341094971,0.00976053159683943,0.687017619609833,-0.726575195789337,-0.00611840793862939,0.689782917499542,-0.723990380764008,0.0135299684479833,0.686700284481049,-0.726814746856689,-0.021857425570488,0.610670149326324,-0.791583359241486,0.0151754477992654,0.600332021713257,-0.799606919288635,-0.0182563941925764,0.608829200267792,-0.793091356754303,0.0155829852446914,0.593002438545227,-0.80504983663559,-0.0208922047168016,0.601087212562561,-0.798910439014435,0.0119232535362244,0.592972159385681,-0.805134832859039,0.0119883399456739,0.692913591861725,-0.720920979976654,0.0118991760537028,0.694790780544281,-0.71911346912384,-0.00394917139783502,0.695975363254547,-0.718054831027985,-0.0216645002365112,0.482534557580948,-0.87560898065567,
- 0.0238331593573093,0.469996511936188,-0.882346451282501,0.0189575888216496,0.472528547048569,-0.881111443042755,0.0114554669708014,0.701947033405304,-0.712137043476105,0.014674024656415,0.699958324432373,-0.714033007621765,0.000342991086654365,0.701640844345093,-0.712530791759491,0.000342991086654365,0.701640844345093,-0.712530791759491,0.00648459745571017,0.722485840320587,-0.691355347633362,0.0114554669708014,0.701947033405304,-0.712137043476105,0.0155829852446914,0.593002438545227,-0.80504983663559,-0.00458343233913183,0.597522556781769,-0.801838994026184,-0.0208922047168016,0.601087212562561,-0.798910439014435,0.00357927847653627,0.647994518280029,-0.7616366147995,-0.00455968454480171,0.647988736629486,-0.761636316776276,-0.00749757699668407,0.647603034973145,-0.761941015720367,0.0189575888216496,0.472528547048569,-0.881111443042755,-0.00491054495796561,0.476411372423172,-0.879208922386169,-0.0216645002365112,0.482534557580948,-0.87560898065567,-0.0040008588694036,0.45733579993248,-0.889285087585449,0.0135660637170076,0.455406010150909,-0.89018052816391,0.00298814987763762,0.45759454369545,-0.889155983924866,0.0039944164454937,0.670607805252075,-0.7418013215065,0.00627371203154325,0.722491383552551,-0.691351473331451,0.000421268166974187,0.700387477874756,-0.713762700557709,0.00357927847653627,0.647994518280029,-0.7616366147995,-0.00749757699668407,0.647603034973145,-0.761941015720367,-0.00246982066892087,0.670762479305267,-0.741668164730072,0.000896308047231287,0.722622156143188,-0.691242754459381,1.12686562303566e-008,0.675013482570648,-0.737805485725403,1.12650724304331e-008,0.722641825675964,-0.691222667694092,0.00529184611514211,0.675004005432129,-0.737795114517212,0.00627371203154325,0.722491383552551,-0.691351473331451,0.0039944164454937,0.670607805252075,-0.7418013215065,-0.00366020738147199,0.675008893013,-0.737800478935242,-0.00262314965948462,0.670765817165375,-0.74166464805603,-0.00456784199923277,0.623838007450104,-0.78154045343399,-0.00456784199923277,0.623838007450104,-0.78154045343399,-0.00262314965948462,0.670765817165375,-0.74166464805603,
- -0.00739765400066972,0.645921289920807,-0.763368189334869,-3.36737548956023e-009,0.675013482570648,-0.737805485725403,-0.000696346047334373,0.623748779296875,-0.781624615192413,-3.36719274685038e-009,0.606280446052551,-0.795250952243805,-0.00540970033034682,0.6119384765625,-0.790886878967285,0.0204881634563208,0.60679018497467,-0.794597923755646,-0.0116267967969179,0.611717104911804,-0.790991187095642,-0.00535590946674347,0.611005187034607,-0.791608512401581,-0.0115770921111107,0.610752820968628,-0.791736721992493,-0.00989385694265366,0.623945415019989,-0.781405329704285,-0.00794720090925694,0.538813829421997,-0.84238737821579,-0.00310836499556899,0.538841605186462,-0.842401385307312,-0.00794720090925694,0.538813829421997,-0.84238737821579,-0.00203985627740622,0.606279194355011,-0.795249283313751,-0.00110687571577728,0.623758673667908,-0.7816162109375,-0.00304450304247439,0.574594080448151,-0.818432867527008,-0.00304450304247439,0.574594080448151,-0.818432867527008,-0.00110687571577728,0.623758673667908,-0.7816162109375,-0.0110276080667973,0.600054502487183,-0.799883246421814,-0.00794720090925694,0.538813829421997,-0.84238737821579,-0.00233159470371902,0.574576795101166,-0.818447351455688,-0.00794720090925694,0.538813829421997,-0.84238737821579,5.5411657484683e-009,0.606280446052551,-0.795250952243805,0.000385892111808062,0.574508309364319,-0.81849867105484,5.54444534728304e-009,0.512176334857941,-0.858880341053009,-0.00190319400280714,0.574566304683685,-0.818455815315247,-0.00768758449703455,0.533556461334229,-0.845729649066925,-0.00479730032384396,0.497113913297653,-0.867672145366669,-0.00479730032384396,0.497113913297653,-0.867672145366669,-0.00344642926938832,0.512173295021057,-0.858875215053558,-0.00190319400280714,0.574566304683685,-0.818455815315247,0.00290512945502996,0.459205001592636,-0.888325572013855,0.010642577894032,0.496668636798859,-0.867874979972839,-0.00407807901501656,0.458961814641953,-0.888446629047394,0.00666265795007348,0.496794760227203,-0.867842495441437,0.00575543195009232,0.44089663028717,-0.897539556026459,
- 0.00575824547559023,0.512167811393738,-0.858866095542908,0.00585175631567836,0.49681955575943,-0.867834270000458,0.00269679259508848,0.463239014148712,-0.886229276657104,0.00384833640418947,0.440791815519333,-0.897601127624512,0.00464378809556365,0.440899103879929,-0.897544682025909,0.00585175631567836,0.49681955575943,-0.867834270000458,0.00384833640418947,0.440791815519333,-0.897601127624512,-0.00200725207105279,0.723507463932037,-0.690313637256622,-0.009076495654881,0.674985647201538,-0.737775027751923,-0.00907311309129,0.722612082958221,-0.691194236278534,-0.00456539494916797,0.67500638961792,-0.737797737121582,0.00836641434580088,0.721735715866089,-0.692118287086487,-0.0199395958334208,0.638318300247192,-0.769514262676239,1.74008596420805e-009,0.675013482570648,-0.737805485725403,-0.0020744283683598,0.634968817234039,-0.772534966468811,1.7400882956764e-009,0.606280446052551,-0.795250952243805,0.00836641434580088,0.721735715866089,-0.692118287086487,-0.0172363203018904,0.680845081806183,-0.732224643230438,-0.0199395958334208,0.638318300247192,-0.769514262676239,-0.0172857642173767,0.680952072143555,-0.732123970985413,0.0102789383381605,0.721400022506714,-0.692442297935486,0.00387505348771811,0.686244487762451,-0.727360606193542,-0.0172857642173767,0.680952072143555,-0.732123970985413,0.00387505348771811,0.686244487762451,-0.727360606193542,0.00953362043946981,0.687750279903412,-0.725884735584259,-0.0101931979879737,0.519025146961212,-0.854698181152344,0.00667789345607162,0.606266915798187,-0.795233190059662,0.0239542424678802,0.629703164100647,-0.776466429233551,0.0239542424678802,0.629703164100647,-0.776466429233551,0.0263403300195932,0.580567598342896,-0.813786029815674,-0.0101931979879737,0.519025146961212,-0.854698181152344,-3.19147641647533e-009,0.606280446052551,-0.795250952243805,-0.0125125804916024,0.519507765769959,-0.8543741106987,-3.19090909250974e-009,0.517953813076019,-0.855408608913422,0.00617586588487029,0.515534996986389,-0.856846392154694,-0.00605183793231845,0.440895795822144,-0.897537887096405,
- -0.00605593668296933,0.5179443359375,-0.855392932891846,-0.00422966480255127,0.440899938344955,-0.897546291351318,0.00897961016744375,0.514922380447388,-0.857189774513245,-0.0121291624382138,0.440082430839539,-0.897875487804413,0.00897961016744375,0.514922380447388,-0.857189774513245,-0.0179323237389326,0.464870929718018,-0.88519686460495,-0.0121291624382138,0.440082430839539,-0.897875487804413,-0.0170430708676577,0.462552547454834,-0.88642805814743,0.00934209395200014,0.514842927455902,-0.857233762741089,0.00979044754058123,0.470599889755249,-0.88229238986969,-0.0208726394921541,0.549019753932953,-0.83554869890213,-0.00686842203140259,0.518328189849854,-0.85515421628952,0.0331267453730106,0.563869774341583,-0.825199067592621,0.0358744002878666,0.478584796190262,-0.877308189868927,-0.0170430708676577,0.462552547454834,-0.88642805814743,0.00979044754058123,0.470599889755249,-0.88229238986969,0.00403099693357944,0.556086599826813,-0.831114590167999,-0.0208726394921541,0.549019753932953,-0.83554869890213,0.0331267453730106,0.563869774341583,-0.825199067592621,-0.023531299084425,0.479394197463989,-0.877284169197083,0.0291847009211779,0.495297849178314,-0.868232846260071,-0.0270543023943901,0.478159725666046,-0.877856135368347,-0.0215652734041214,0.690152704715729,-0.72334235906601,0.00507948826998472,0.696865677833557,-0.717183649539948,-0.0158639792352915,0.691454827785492,-0.722245573997498,0.0146681740880013,0.608601927757263,-0.793340086936951,0.021857675164938,0.610669612884521,-0.791583895683289,-0.015175199136138,0.600331425666809,-0.799607336521149,-0.0158639792352915,0.691454827785492,-0.722245573997498,0.00507948826998472,0.696865677833557,-0.717183649539948,0.00392398843541741,0.696046888828278,-0.717985570430756,0.0183305162936449,0.492838174104691,-0.869927883148193,-0.027670769020915,0.479717433452606,-0.876986622810364,0.0285727102309465,0.496815294027328,-0.867385804653168,0.00611872691661119,0.689782023429871,-0.723991274833679,-0.00976018980145454,0.687016725540161,-0.726576089859009,-0.0135295400395989,0.686699390411377,-0.726815581321716,
- -0.015175199136138,0.600331425666809,-0.799607336521149,0.021857675164938,0.610669612884521,-0.791583895683289,0.0182565934956074,0.608828604221344,-0.793091714382172,-0.0119230877608061,0.592971742153168,-0.805135011672974,0.0208923351019621,0.601086795330048,-0.798910617828369,-0.0155828483402729,0.593002080917358,-0.805050134658813,-0.0118468729779124,0.69563901424408,-0.718293905258179,-0.0122884167358279,0.693704128265381,-0.720155239105225,0.00366811314597726,0.696773648262024,-0.717281699180603,-0.0238334164023399,0.46999716758728,-0.882346093654633,0.0216642823070288,0.48253521323204,-0.875608623027802,-0.0189578030258417,0.472529232501984,-0.881111085414886,-0.014674024656415,0.699958324432373,-0.714033007621765,-0.0114554669708014,0.701947033405304,-0.712137043476105,-0.000342991086654365,0.701640844345093,-0.712530791759491,-0.000342991086654365,0.701640844345093,-0.712530791759491,-0.0114554669708014,0.701947033405304,-0.712137043476105,-0.00648459745571017,0.722485840320587,-0.691355347633362,0.00455968454480171,0.647988736629486,-0.761636316776276,-0.00357927847653627,0.647994518280029,-0.7616366147995,0.00749757699668407,0.647603034973145,-0.761941015720367,-0.0155828483402729,0.593002080917358,-0.805050134658813,0.0208923351019621,0.601086795330048,-0.798910617828369,0.00458340859040618,0.597522139549255,-0.801839292049408,-0.00627371203154325,0.722491383552551,-0.691351473331451,-0.0039944164454937,0.670607805252075,-0.7418013215065,-0.000421268166974187,0.700387477874756,-0.713762700557709,0.00749757699668407,0.647603034973145,-0.761941015720367,-0.00357927847653627,0.647994518280029,-0.7616366147995,0.00246982066892087,0.670762479305267,-0.741668164730072,1.12686562303566e-008,0.675013482570648,-0.737805485725403,-0.000896285579074174,0.722622156143188,-0.691242754459381,1.12650724304331e-008,0.722641825675964,-0.691222667694092,-0.00627371203154325,0.722491383552551,-0.691351473331451,-0.00529184611514211,0.675004005432129,-0.737795114517212,-0.0039944164454937,0.670607805252075,-0.7418013215065,
- 0.00366020738147199,0.675008893013,-0.737800478935242,0.00456784199923277,0.623838007450104,-0.78154045343399,0.00262314965948462,0.670765817165375,-0.74166464805603,0.00262314965948462,0.670765817165375,-0.74166464805603,0.00456784199923277,0.623838007450104,-0.78154045343399,0.00739765400066972,0.645921289920807,-0.763368189334869,0.000696339295245707,0.623748779296875,-0.781624615192413,-3.36737548956023e-009,0.675013482570648,-0.737805485725403,-3.36719274685038e-009,0.606280446052551,-0.795250952243805,-0.0171164404600859,0.597331881523132,-0.801811516284943,0.00482565769925714,0.601766288280487,-0.798657655715942,0.011103693395853,0.601539969444275,-0.798765540122986,0.011103693395853,0.601539969444275,-0.798765540122986,0.00482565769925714,0.601766288280487,-0.798657655715942,0.00157343992032111,0.623769760131836,-0.781606554985046,0.00203985627740622,0.606279194355011,-0.795249283313751,0.00304450304247439,0.574594080448151,-0.818432867527008,0.00110687571577728,0.623758673667908,-0.7816162109375,0.00110687571577728,0.623758673667908,-0.7816162109375,0.00304450304247439,0.574594080448151,-0.818432867527008,0.0110276080667973,0.600054502487183,-0.799883246421814,-0.000385881052352488,0.574508309364319,-0.81849867105484,5.5411657484683e-009,0.606280446052551,-0.795250952243805,5.54444534728304e-009,0.512176334857941,-0.858880341053009,0.00310837267898023,0.538841605186462,-0.842401504516602,0.00794719997793436,0.538813829421997,-0.84238737821579,0.00794719997793436,0.538813829421997,-0.84238737821579,0.00233159377239645,0.574576795101166,-0.818447351455688,0.00794719997793436,0.538813829421997,-0.84238737821579,0.00794719997793436,0.538813829421997,-0.84238737821579,-0.0189578030258417,0.472529232501984,-0.881111085414886,0.0216642823070288,0.48253521323204,-0.875608623027802,0.00491057941690087,0.476412057876587,-0.879208445549011,-0.0160626228898764,0.463355392217636,-0.886026978492737,0.00440789945423603,0.46589270234108,-0.884830236434937,-0.00254618935286999,0.466148465871811,-0.884702861309052,0.00344642926938832,0.512173295021057,-0.858875215053558,
- 0.00479730032384396,0.497113913297653,-0.867672145366669,0.00190319400280714,0.574566304683685,-0.818455815315247,0.00768758449703455,0.533556461334229,-0.845729649066925,0.00190319400280714,0.574566304683685,-0.818455815315247,0.00479730032384396,0.497113913297653,-0.867672145366669,-0.00572796212509274,0.496823281049728,-0.867832958698273,-0.00254618935286999,0.466148465871811,-0.884702861309052,0.00440789945423603,0.46589270234108,-0.884830236434937,-0.000916649179998785,0.496962994337082,-0.86777138710022,-1.0987563747733e-008,0.512176334857941,-0.858880341053009,-1.09821201021987e-008,0.440903872251511,-0.897554337978363,-0.00269679259508848,0.463239014148712,-0.886229276657104,-0.00585175631567836,0.49681955575943,-0.867834270000458,-0.00384833640418947,0.440791815519333,-0.897601127624512,-0.00585175631567836,0.49681955575943,-0.867834270000458,-0.00464378809556365,0.440899103879929,-0.897544682025909,-0.00384833640418947,0.440791815519333,-0.897601127624512,0.00621963851153851,0.908172905445099,-0.418549299240112,0.0135915242135525,0.892574608325958,-0.45069482922554,0.00357446633279324,0.91044294834137,-0.413619250059128,0.00719588482752442,0.891932129859924,-0.452112019062042,-1.41449376656055e-008,0.908190488815308,-0.418557375669479,-1.41530209774032e-008,0.889653563499451,-0.456636369228363,-0.00495403911918402,0.911011636257172,-0.412350833415985,0.00416213041171432,0.910500109195709,-0.413487881422043,0.014176975004375,0.892631471157074,-0.450564116239548,-0.00958093069493771,0.88961261510849,-0.456615328788757,-0.000309168099192902,0.850225567817688,-0.526418387889862,-0.019457807764411,0.888838946819305,-0.457806468009949,0.0075344112701714,0.85120302438736,-0.524782478809357,3.29086602413042e-009,0.889653503894806,-0.456636279821396,3.29047078473366e-009,0.8439861536026,-0.5363649725914,-0.0125572271645069,0.88970410823822,-0.456364929676056,0.0222589429467916,0.873364925384521,-0.48655754327774,-0.028267540037632,0.881550490856171,-0.471242666244507,0.0152452057227492,0.86315643787384,-0.50470644235611,
- -0.0192102901637554,0.88887083530426,-0.457755208015442,-5.70129996049218e-005,0.850257873535156,-0.526366353034973,0.0212063603103161,0.871858775615692,-0.489298015832901,-0.0293328259140253,0.880097150802612,-0.473886936903,-0.0293328259140253,0.880097150802612,-0.473886936903,0.000821161433123052,0.843985974788666,-0.536364853382111,0.0156991388648748,0.782447516918182,-0.622518599033356,-0.0127182975411415,0.848566055297852,-0.528936564922333,-0.0103834746405482,0.822412490844727,-0.568796873092651,-0.0126966955140233,0.848569095134735,-0.528932213783264,0.0157601237297058,0.782456338405609,-0.622505962848663,0.0184017922729254,0.782835364341736,-0.621956884860992,0.00549184763804078,0.843973398208618,-0.536356866359711,0.00549163855612278,0.78162670135498,-0.623722314834595,1.61967861345147e-008,0.722641825675964,-0.691222667694092,-0.0112762078642845,0.778245449066162,-0.627858936786652,1.62044013762852e-008,0.781638503074646,-0.623731732368469,-0.0141049893572927,0.777769804000854,-0.628390908241272,-0.00187199260108173,0.722640573978424,-0.691221475601196,0.00613603694364429,0.724189698696136,-0.689573466777802,0.0210428107529879,0.738140344619751,-0.67431902885437,-0.014169349335134,0.77775901556015,-0.628403007984161,0.00611058156937361,0.724185526371002,-0.689578115940094,0.0101453671231866,0.781631767749786,-0.623657643795013,0.0189653914421797,0.800987064838409,-0.598381161689758,-0.0184505693614483,0.808470368385315,-0.58824759721756,-0.0159051511436701,0.777463793754578,-0.628726720809937,0.019657488912344,0.735367059707642,-0.677383840084076,-0.0120735922828317,0.742632925510406,-0.669589877128601,0.0199172291904688,0.802662074565887,-0.596101403236389,-0.0097645940259099,0.808760404586792,-0.588057160377502,-0.0174983944743872,0.810143887996674,-0.585969865322113,0.0200590062886477,0.736172258853912,-0.676496922969818,-0.0424479246139526,0.750138819217682,-0.659916639328003,-0.0116674760356545,0.743443131446838,-0.668697357177734,0.02796920388937,0.866547882556915,-0.498309850692749,-0.0317591242492199,0.87675142288208,-0.479894071817398,
- 0.0188757907599211,0.868491411209106,-0.495344668626785,-0.0305430609732866,0.772419333457947,-0.634378015995026,0.0315241627395153,0.758692800998688,-0.650685369968414,0.0273360144346952,0.759397149085999,-0.650053024291992,0.0273977480828762,0.759509742259979,-0.649918735027313,0.0175802111625671,0.762752771377563,-0.646451234817505,-0.0304811391979456,0.772532403469086,-0.634243309497833,0.0278727822005749,0.866413652896881,-0.49854838848114,0.00467859534546733,0.871151328086853,-0.490992546081543,-0.0318559482693672,0.876616895198822,-0.480133354663849,-0.0315717048943043,0.798636436462402,-0.600985109806061,-0.0165127608925104,0.797311127185822,-0.603342771530151,0.0291982982307673,0.788441598415375,-0.614416241645813,-0.0118648633360863,0.892965495586395,-0.449968695640564,-0.0186399202793837,0.894260108470917,-0.447159290313721,0.0153978774324059,0.889508664608002,-0.456658810377121,0.0153978774324059,0.889508664608002,-0.456658810377121,-0.00326007092371583,0.891855955123901,-0.452307760715485,-0.0118648633360863,0.892965495586395,-0.449968695640564,-0.00807179696857929,0.905993163585663,-0.423215359449387,-0.00474459771066904,0.906059801578522,-0.423123061656952,0.0237270593643188,0.902798354625702,-0.429409354925156,-0.00807179696857929,0.905993163585663,-0.423215359449387,-0.002288902644068,0.908218264579773,-0.418490558862686,-0.00474459771066904,0.906059801578522,-0.423123061656952,-0.00140181137248874,0.872800886631012,-0.488074481487274,-0.0052387067116797,0.872712850570679,-0.48820573091507,0.00501458998769522,0.871748030185699,-0.489928841590881,-0.000157276008394547,0.908192455768585,-0.418552786111832,-0.00801513623446226,0.90537041425705,-0.424547284841537,-0.00149111589416862,0.889673948287964,-0.456593990325928,-0.00140181137248874,0.872800886631012,-0.488074481487274,-0.00141150620765984,0.889672875404358,-0.456596285104752,-0.0052387067116797,0.872712850570679,-0.48820573091507,-0.00149111589416862,0.889673948287964,-0.456593990325928,-0.00035725106135942,0.908190429210663,-0.418557345867157,
- -0.000157276008394547,0.908192455768585,-0.418552786111832,2.29563053011361e-008,0.886444926261902,-0.462834060192108,2.2938808186268e-008,0.908190488815308,-0.418557375669479,-0.00104304007254541,0.889667987823486,-0.456606805324554,-0.00948634929955006,0.841447412967682,-0.540255784988403,0.00137116236146539,0.841744601726532,-0.539874255657196,-0.0104795647785068,0.842792212963104,-0.538137078285217,0.0297567620873451,0.789643108844757,-0.612844407558441,-0.00593780074268579,0.795045673847198,-0.606520473957062,-0.0310235116630793,0.799853920936584,-0.599392592906952,-0.00542586063966155,0.858955264091492,-0.512021899223328,-0.00342904240824282,0.889697551727295,-0.456537514925003,-0.0012029365170747,0.870678007602692,-0.491852194070816,-0.00542586063966155,0.858955264091492,-0.512021899223328,-0.00469679664820433,0.886435270309448,-0.462829023599625,-0.00342904240824282,0.889697551727295,-0.456537514925003,-0.00948634929955006,0.841447412967682,-0.540255784988403,-0.0014404624234885,0.8589026927948,-0.512136816978455,0.00137116236146539,0.841744601726532,-0.539874255657196,0.00606086850166321,0.843970656394959,-0.536355137825012,0.00606026221066713,0.886428654193878,-0.462825566530228,0.00557001167908311,0.858777165412903,-0.512319207191467,-0.00613554706797004,0.797754645347595,-0.602950990200043,0.0306581389158964,0.791575968265533,-0.610301196575165,-0.00613554706797004,0.797754645347595,-0.602950990200043,-0.00239901733584702,0.744162797927856,-0.667994022369385,0.00923127308487892,0.74348109960556,-0.668693244457245,0.00869766809046268,0.744468033313751,-0.667601525783539,-0.00308448425494134,0.822243809700012,-0.569127082824707,-0.000944613479077816,0.858895182609558,-0.512150526046753,-0.00940593611449003,0.840448498725891,-0.541809976100922,-0.00308448425494134,0.822243809700012,-0.569127082824707,-0.00203471048735082,0.843984425067902,-0.536363840103149,-0.000944613479077816,0.858895182609558,-0.512150526046753,-0.00613554706797004,0.797754645347595,-0.602950990200043,-0.00239803036674857,0.822233021259308,-0.569145977497101,
- -0.00613554706797004,0.797754645347595,-0.602950990200043,1.40675311399718e-008,0.781638503074646,-0.623731732368469,1.40630618261639e-008,0.8439861536026,-0.5363649725914,0.000357489450834692,0.822185695171356,-0.56921923160553,0.00869766809046268,0.744468033313751,-0.667601525783539,0.00560722406953573,0.763558924198151,-0.645713984966278,-0.00239901733584702,0.744162797927856,-0.667994022369385,-0.00192420149687678,0.822225332260132,-0.569158852100372,-0.00586315849795938,0.794019401073456,-0.607864141464233,-0.00496097933501005,0.763776302337646,-0.645461976528168,-0.00496097933501005,0.763776302337646,-0.645461976528168,-0.00343337305821478,0.781633913516998,-0.623728036880493,-0.00192420149687678,0.822225332260132,-0.569158852100372,0.00564947538077831,0.763557910919189,-0.645714819431305,0.00884801615029573,0.742235481739044,-0.670080840587616,0.00371921504847705,0.722556054592133,-0.691302299499512,-2.73420504015576e-008,0.722641825675964,-0.691222667694092,-2.73590803345769e-008,0.781638503074646,-0.623731732368469,0.000739070121198893,0.763669610023499,-0.645606815814972,0.00371921504847705,0.722556054592133,-0.691302299499512,0.00462283473461866,0.722634136676788,-0.69121527671814,0.00564947538077831,0.763557910919189,-0.645714819431305,-0.0048676086589694,0.891688764095306,-0.452623099088669,0.00301573076285422,0.908186256885529,-0.418555408716202,0.00514320563524961,0.909555673599243,-0.415550321340561,0.00514320563524961,0.909555673599243,-0.415550321340561,0.00859254132956266,0.906708538532257,-0.421670526266098,-0.0048676086589694,0.891688764095306,-0.452623099088669,-1.41449376656055e-008,0.908190488815308,-0.418557375669479,-0.00719591276720166,0.891932249069214,-0.452112048864365,-1.41530209774032e-008,0.889653563499451,-0.456636369228363,-0.0231153517961502,0.874583601951599,-0.484323471784592,0.00962792988866568,0.890057861804962,-0.45574614405632,0.0273643992841244,0.882775366306305,-0.468997687101364,-0.0059348801150918,0.851008176803589,-0.525118887424469,0.00295527512207627,0.889649569988251,-0.456634283065796,
- 0.013214772567153,0.889623582363129,-0.45650327205658,0.013214772567153,0.889623582363129,-0.45650327205658,-0.0172687359154224,0.866143345832825,-0.499497264623642,-0.0059348801150918,0.851008176803589,-0.525118887424469,-0.00626740697771311,0.889636099338531,-0.456627368927002,-0.0134586226195097,0.851904571056366,-0.523524105548859,-0.00626667961478233,0.843969583511353,-0.536354422569275,-0.0225412081927061,0.873767256736755,-0.485821664333344,0.027946574613452,0.881986618041992,-0.470445156097412,0.027946574613452,0.881986618041992,-0.470445156097412,-0.0108800996094942,0.781741142272949,-0.623508155345917,0.00432144850492477,0.84397828578949,-0.536359965801239,0.0175565648823977,0.847881436347961,-0.529895126819611,0.0175565648823977,0.847881436347961,-0.529895126819611,0.0121581954881549,0.819391250610352,-0.573105692863464,-0.0108800996094942,0.781741142272949,-0.623508155345917,-8.27816393211833e-009,0.8439861536026,-0.5363649725914,-0.0132265482097864,0.782087504863739,-0.62302827835083,-8.27780155532309e-009,0.781638503074646,-0.623731732368469,0.0112762385979295,0.778245449066162,-0.627858936786652,1.61967861345147e-008,0.722641825675964,-0.691222667694092,1.62044013762852e-008,0.781638503074646,-0.623731732368469,-0.00423335377126932,0.722635328769684,-0.691216468811035,0.00836057309061289,0.778728723526001,-0.627305090427399,-0.0118983015418053,0.725120067596436,-0.688519656658173,0.00836057309061289,0.778728723526001,-0.627305090427399,-0.0230101626366377,0.742055952548981,-0.669942915439606,-0.0118983015418053,0.725120067596436,-0.688519656658173,-0.0175604596734047,0.798502326011658,-0.601735591888428,-0.00564280711114407,0.780951678752899,-0.62456613779068,0.0198565628379583,0.805985510349274,-0.591602087020874,-0.0221319049596787,0.740311205387115,-0.671899914741516,0.00872919894754887,0.778668105602264,-0.627375483512878,0.0095853740349412,0.747577667236328,-0.664105236530304,0.0122130876407027,0.804645299911499,-0.593630194664001,-0.0175604596734047,0.798502326011658,-0.601735591888428,0.0198565628379583,0.805985510349274,-0.591602087020874,
- 0.0402964167296886,0.754244923591614,-0.655355632305145,-0.0221319049596787,0.740311205387115,-0.671899914741516,0.0095853740349412,0.747577667236328,-0.664105236530304,0.0327766910195351,0.875333726406097,-0.482407063245773,-0.0269524361938238,0.865129709243774,-0.500823438167572,-0.0178943425416946,0.867059946060181,-0.497882336378098,-0.0315862931311131,0.758812367916107,-0.650542974472046,0.0304783135652542,0.772537589073181,-0.634237170219421,-0.0274007823318243,0.759515345096588,-0.649912178516388,-0.0175802689045668,0.762752890586853,-0.646451056003571,-0.0273978170007467,0.759509861469269,-0.649918556213379,0.0304810702800751,0.772532522678375,-0.634243130683899,-0.0265978761017323,0.86463338136673,-0.501698732376099,0.033131692558527,0.874837100505829,-0.483282923698425,-0.0036818771623075,0.8693727850914,-0.494143068790436,0.01711948774755,0.796265006065369,-0.604705691337585,0.0320218093693256,0.797634065151215,-0.60229104757309,-0.0287308990955353,0.787433624267578,-0.615729510784149,0.0118650402873755,0.892965316772461,-0.449969321489334,-0.0153977051377296,0.889508366584778,-0.456659376621246,0.0186401326209307,0.894259810447693,-0.447159826755524,0.00326003995724022,0.891855657100677,-0.452308356761932,-0.0153977051377296,0.889508366584778,-0.456659376621246,0.0118650402873755,0.892965316772461,-0.449969321489334,-0.0276527069509029,0.908764600753784,-0.416391968727112,0.00544506311416626,0.912445366382599,-0.409162610769272,0.00866270624101162,0.912382841110229,-0.409246236085892,0.00853499211370945,0.911018252372742,-0.412277698516846,0.00529627641662955,0.911105990409851,-0.412138134241104,0.0109170917421579,0.908280551433563,-0.418219149112701,-0.00259493244811893,0.867419540882111,-0.497570693492889,0.00487044872716069,0.868070840835571,-0.496416419744492,0.000969157728832215,0.868161737918854,-0.496280401945114,0.000157217844389379,0.908192455768585,-0.418552786111832,0.00149105780292302,0.889673948287964,-0.456593990325928,0.00801506545394659,0.905369520187378,-0.424548864364624,0.00101301388349384,0.868635475635529,-0.495450705289841,
- 0.00490891234949231,0.868559062480927,-0.495561361312866,-0.00303461495786905,0.889605760574341,-0.456719189882278,0.00149105780292302,0.889673948287964,-0.456593990325928,0.000157217844389379,0.908192455768585,-0.418552786111832,0.00035725042107515,0.908190429210663,-0.418557345867157,2.29563053011361e-008,0.886444926261902,-0.462834060192108,0.00104308594018221,0.889667987823486,-0.456606805324554,2.2938808186268e-008,0.908190488815308,-0.418557375669479,0.00784295331686735,0.847926914691925,-0.530055105686188,-0.000899478036444634,0.847248554229736,-0.531195878982544,0.00993314571678638,0.846952736377716,-0.531575381755829,0.00576477916911244,0.79266369342804,-0.609631896018982,-0.0287308990955353,0.787433624267578,-0.615729510784149,0.0320218093693256,0.797634065151215,-0.60229104757309,0.00342910434119403,0.889697551727295,-0.456537514925003,0.00542592350393534,0.858955264091492,-0.512021899223328,0.00120301428250968,0.870678842067719,-0.491850703954697,0.00542592350393534,0.858955264091492,-0.512021899223328,0.00342910434119403,0.889697551727295,-0.456537514925003,0.00469680549576879,0.886435270309448,-0.462829023599625,0.00999048724770546,0.847653746604919,-0.530455768108368,-0.000837940722703934,0.847959935665131,-0.530059635639191,0.00975760817527771,0.85899692773819,-0.511887788772583,-6.41767616826883e-009,0.8439861536026,-0.5363649725914,0.000477421504911035,0.858888030052185,-0.512163400650024,-6.4170753155679e-009,0.886444926261902,-0.462834060192108,-0.0306581389158964,0.791575968265533,-0.610301196575165,0.00613554706797004,0.797754645347595,-0.602950990200043,0.00613554706797004,0.797754645347595,-0.602950990200043,-0.00701144384220243,0.738243460655212,-0.674497902393341,0.00202407361939549,0.738507032394409,-0.674242734909058,-0.00907725468277931,0.738812625408173,-0.673849821090698,0.000944613479077816,0.858895182609558,-0.512150526046753,0.00308448425494134,0.822243809700012,-0.569127082824707,0.00940593611449003,0.840448498725891,-0.541809976100922,0.00308448425494134,0.822243809700012,-0.569127082824707,
- 0.000944613479077816,0.858895182609558,-0.512150526046753,0.00203471048735082,0.843984425067902,-0.536363840103149,0.00239803036674857,0.822233021259308,-0.569145977497101,0.00613554706797004,0.797754645347595,-0.602950990200043,0.00613554706797004,0.797754645347595,-0.602950990200043,1.40675311399718e-008,0.781638503074646,-0.623731732368469,-0.000357461394742131,0.822185695171356,-0.56921923160553,1.40630618261639e-008,0.8439861536026,-0.5363649725914,-0.0104923136532307,0.763429462909698,-0.645806014537811,-0.00905084889382124,0.739208102226257,-0.673416376113892,0.00205028825439513,0.738904118537903,-0.673807442188263,0.00586315849795938,0.794019401073456,-0.607864141464233,0.00192420149687678,0.822225332260132,-0.569158852100372,0.00496097933501005,0.763776302337646,-0.645461976528168,0.00343337305821478,0.781633913516998,-0.623728036880493,0.00496097933501005,0.763776302337646,-0.645461976528168,0.00192420149687678,0.822225332260132,-0.569158852100372,-0.00884801615029573,0.742235481739044,-0.670080840587616,-0.00564947538077831,0.763557910919189,-0.645714819431305,-0.00371921504847705,0.722556054592133,-0.691302299499512,-0.00576151907444,0.722629845142365,-0.691211223602295,-0.0064896889962256,0.763536810874939,-0.645731687545776,-0.00576506461948156,0.781625509262085,-0.623721361160278,-0.00371921504847705,0.722556054592133,-0.691302299499512,-0.00564947538077831,0.763557910919189,-0.645714819431305,-0.00462283473461866,0.722634136676788,-0.69121527671814
- }
- TangentsW: *1086 {
- 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,1,1,1,1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,-1,1,1,1,-1,-1,1,1,-1,1,-1,-1,-1,1,1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,1,-1,1,-1,1,-1,-1,1,1,1,-1,1,-1,1,1,1,-1,-1,1,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,1,-1,1,-1,-1,1,-1,-1,1,-1,1,1,1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,1,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,1,-1,1,-1,1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,1,-1,1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,1,1,-1,1,-1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,1,1,1,-1,1,-1,-1,-1,-1,1,-1,
- -1,1,-1,1,1,-1,1,-1,-1,1,1,1,1,1,1,1,1,-1,1,1,1,-1,-1,1,1,-1,-1,1,-1,1,1,-1,-1,1,1,1,-1,1,1,1,1,1,1,-1,-1,1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,1,1,1,1,-1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,-1,1,1,-1,1,1,-1,1,-1,-1,1,1,1,-1,1,1,1,1,1,1,-1,1,1,1,1,-1,1,-1,-1,-1,1,1,1,1,1,1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,1,1,-1,1,1,1,1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,1,1,-1,1,-1,1,1,1,1,1,1,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: "UVmap_0"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *1398 {
- a: 0.94873046875,0.74462890625,1.337890625,0.8233642578125,1.337890625,1.303466796875,0.58154296875,0.600830078125,-0.337890625,0.14404296875,0.25146484375,0.39208984375,-0.0294342041015625,0.1259765625,-0.337890625,-0.302734375,0.578125,1.1998291015625,0.38818359375,0.648193359375,0.578125,0.648193359375,0.38818359375,1.1998291015625,0.483154296875,1.44287109375,0.59912109375,1.2098388671875,0.367431640625,1.2098388671875,0.38818359375,-0.1318359375,0.578125,-0.6455078125,0.38818359375,-0.6455078125,0.578125,-0.1318359375,0.483154296875,0.11083984375,0.367431640625,-0.1220703125,0.59912109375,-0.1220703125,2.896484375,0.0478515625,0.94970703125,0.2451171875,0.8330078125,0.0478515625,3.013671875,0.2451171875,1.021484375,0.2724609375,2.92578125,0.2724609375,2.818359375,0.45458984375,0.91357421875,0.45458984375,0.82958984375,0.02734375,2.892578125,0.02734375,2.9296875,0.25341796875,1.0244140625,0.25341796875,0.5244140625,0.14111328125,0.52734375,0.08935546875,0.52734375,0.13818359375,0.49951171875,0.07275390625,0.39208984375,0.14111328125,0.39208984375,0.0146484375,0.47265625,0.0146484375,0.499267578125,0.0361328125,0.576171875,0.08935546875,0.5791015625,0.14111328125,0.576171875,0.1376953125,0.603515625,0.0712890625,0.716796875,0.14111328125,0.7158203125,0.0146484375,0.630859375,0.0146484375,0.603515625,0.03369140625,0.99951171875,0.72021484375,0.76513671875,0.642333984375,1,0.641845703125,0.74951171875,0.72021484375,0.447265625,0.642822265625,0.99951171875,0.7523193359375,0.344482421875,0.720947265625,0.180908203125,0.643310546875,0.8017578125,0.75244140625,4.24385070800781e-005,0.72021484375,4.48226928710938e-005,0.643798828125,0.37451171875,0.7528076171875,4.10079956054688e-005,0.7523193359375,-0.000429868698120117,0.785888671875,0.78125,0.787841796875,0.99951171875,0.7880859375,0.99951171875,0.8193359375,0.438232421875,0.7884521484375,0.748046875,0.8194580078125,0.341552734375,0.8193359375,3.65376472473145e-005,0.8193359375,3.14712524414063e-005,0.8656005859375,0.80517578125,0.8653564453125,
- 0.99951171875,0.8656005859375,0.55126953125,0.865966796875,0.18017578125,0.8653564453125,3.0815601348877e-005,0.869873046875,0.372314453125,0.8656005859375,0.1905517578125,0.869873046875,0.1806640625,0.995655059814453,8.34465026855469e-007,0.995403289794922,0.372314453125,0.869873046875,0.4404296875,0.995811462402344,0.5634765625,0.8697509765625,0.78173828125,0.996213912963867,0.82373046875,0.8699951171875,0.99951171875,0.869873046875,0.99951171875,0.996494293212891,0.76513671875,0.64208984375,0.7451171875,0.72021484375,0.34423828125,0.720947265625,0.1807861328125,0.643310546875,0.343017578125,0.720947265625,0.447021484375,0.64306640625,0.371337890625,0.7525634765625,3.88026237487793e-005,0.7880859375,0.7412109375,0.72021484375,0.7373046875,0.642333984375,0.78955078125,0.7520751953125,0.63623046875,0.7872314453125,1,0.79052734375,0.251953125,0.787841796875,-0.000212669372558594,0.82470703125,0.6806640625,0.8194580078125,0.2705078125,0.8194580078125,0.180419921875,0.8656005859375,0.7890625,0.865478515625,0.1805419921875,0.995655059814453,0.439697265625,0.995811462402344,0.55078125,0.865234375,0.74169921875,0.996131896972656,0.80810546875,0.8697509765625,0.17724609375,0.72021484375,0.190673828125,0.6435546875,-0.000257253646850586,0.7503662109375,0.427490234375,0.72021484375,0.44873046875,0.642822265625,0.46826171875,0.752197265625,0.000146746635437012,0.7847900390625,0.73779296875,0.642333984375,0.56005859375,0.786376953125,0.99951171875,0.81884765625,0.408935546875,0.819580078125,0.1715087890625,0.8651123046875,0.1868896484375,0.8695068359375,0.1929931640625,0.995590209960938,0.442138671875,0.995819091796875,0.7890625,0.8653564453125,1.337890625,1.303466796875,1.337890625,0.8233642578125,0.94873046875,0.74462890625,0.58154296875,0.600830078125,1.337890625,1.303466796875,0.94873046875,0.74462890625,-0.337890625,0.14404296875,1.337890625,1.303466796875,0.58154296875,0.600830078125,-0.337890625,0.14404296875,0.58154296875,0.600830078125,0.25146484375,0.39208984375,-0.337890625,0.14404296875,0.25146484375,0.39208984375,
- -0.0294342041015625,0.1259765625,-0.337890625,-0.302734375,-0.337890625,0.14404296875,-0.0294342041015625,0.1259765625,0.52734375,0.08935546875,0.5244140625,0.14111328125,0.52734375,0.13818359375,0.49951171875,0.07275390625,0.5244140625,0.14111328125,0.52734375,0.08935546875,0.5244140625,0.14111328125,0.49951171875,0.07275390625,0.49951171875,0.07275390625,0.49951171875,0.07275390625,0.47265625,0.0146484375,0.47265625,0.0146484375,0.49951171875,0.07275390625,0.499267578125,0.0361328125,0.5791015625,0.14111328125,0.576171875,0.08935546875,0.576171875,0.1376953125,0.576171875,0.08935546875,0.5791015625,0.14111328125,0.603515625,0.0712890625,0.603515625,0.0712890625,0.5791015625,0.14111328125,0.603515625,0.0712890625,0.630859375,0.0146484375,0.603515625,0.0712890625,0.603515625,0.0712890625,0.630859375,0.0146484375,0.603515625,0.03369140625,0.99951171875,0.72021484375,0.99951171875,0.72021484375,0.99951171875,0.7523193359375,0.99951171875,0.72021484375,0.99951171875,0.7523193359375,0.8017578125,0.75244140625,4.24385070800781e-005,0.72021484375,4.24385070800781e-005,0.72021484375,0.37451171875,0.7528076171875,4.24385070800781e-005,0.72021484375,0.37451171875,0.7528076171875,0.8017578125,0.75244140625,0.37451171875,0.7528076171875,0.37451171875,0.7528076171875,4.24385070800781e-005,0.72021484375,4.10079956054688e-005,0.7523193359375,-0.000429868698120117,0.785888671875,0.37451171875,0.7528076171875,4.10079956054688e-005,0.7523193359375,0.78125,0.787841796875,0.99951171875,0.7523193359375,0.8017578125,0.75244140625,0.78125,0.787841796875,0.8017578125,0.75244140625,0.37451171875,0.7528076171875,0.99951171875,0.7523193359375,0.78125,0.787841796875,0.99951171875,0.7880859375,0.78125,0.787841796875,0.99951171875,0.8193359375,0.99951171875,0.7880859375,0.37451171875,0.7528076171875,-0.000429868698120117,0.785888671875,0.438232421875,0.7884521484375,0.37451171875,0.7528076171875,0.438232421875,0.7884521484375,0.78125,0.787841796875,0.748046875,0.8194580078125,0.99951171875,0.8193359375,0.78125,0.787841796875,0.438232421875,0.7884521484375,
- 0.748046875,0.8194580078125,0.78125,0.787841796875,0.341552734375,0.8193359375,0.438232421875,0.7884521484375,-0.000429868698120117,0.785888671875,0.748046875,0.8194580078125,0.438232421875,0.7884521484375,0.341552734375,0.8193359375,-0.000429868698120117,0.785888671875,3.65376472473145e-005,0.8193359375,0.341552734375,0.8193359375,0.341552734375,0.8193359375,3.65376472473145e-005,0.8193359375,3.14712524414063e-005,0.8656005859375,0.99951171875,0.8193359375,0.748046875,0.8194580078125,0.80517578125,0.8653564453125,0.80517578125,0.8653564453125,0.99951171875,0.8656005859375,0.99951171875,0.8193359375,0.748046875,0.8194580078125,0.341552734375,0.8193359375,0.55126953125,0.865966796875,0.55126953125,0.865966796875,0.80517578125,0.8653564453125,0.748046875,0.8194580078125,0.341552734375,0.8193359375,3.14712524414063e-005,0.8656005859375,0.18017578125,0.8653564453125,3.0815601348877e-005,0.869873046875,0.18017578125,0.8653564453125,3.14712524414063e-005,0.8656005859375,0.372314453125,0.8656005859375,0.55126953125,0.865966796875,0.341552734375,0.8193359375,0.18017578125,0.8653564453125,0.372314453125,0.8656005859375,0.341552734375,0.8193359375,0.18017578125,0.8653564453125,3.0815601348877e-005,0.869873046875,0.1905517578125,0.869873046875,0.1905517578125,0.869873046875,0.372314453125,0.8656005859375,0.18017578125,0.8653564453125,3.0815601348877e-005,0.869873046875,3.0815601348877e-005,0.869873046875,0.1905517578125,0.869873046875,0.372314453125,0.8656005859375,0.1905517578125,0.869873046875,0.372314453125,0.869873046875,0.372314453125,0.869873046875,0.1905517578125,0.869873046875,0.372314453125,0.869873046875,0.55126953125,0.865966796875,0.372314453125,0.8656005859375,0.372314453125,0.869873046875,0.55126953125,0.865966796875,0.372314453125,0.869873046875,0.5634765625,0.8697509765625,0.5634765625,0.8697509765625,0.372314453125,0.869873046875,0.5634765625,0.8697509765625,0.80517578125,0.8653564453125,0.55126953125,0.865966796875,0.5634765625,0.8697509765625,0.80517578125,0.8653564453125,0.5634765625,0.8697509765625,0.82373046875,
- 0.8699951171875,0.82373046875,0.8699951171875,0.5634765625,0.8697509765625,0.82373046875,0.8699951171875,0.99951171875,0.8656005859375,0.80517578125,0.8653564453125,0.99951171875,0.8656005859375,0.82373046875,0.8699951171875,0.99951171875,0.869873046875,0.99951171875,0.869873046875,0.82373046875,0.8699951171875,0.99951171875,0.869873046875,4.24385070800781e-005,0.72021484375,4.48226928710938e-005,0.643798828125,4.24385070800781e-005,0.72021484375,4.24385070800781e-005,0.72021484375,4.24385070800781e-005,0.72021484375,4.10079956054688e-005,0.7523193359375,4.10079956054688e-005,0.7523193359375,1,0.641845703125,1,0.641845703125,0.99951171875,0.72021484375,0.99951171875,0.7523193359375,0.99951171875,0.72021484375,0.99951171875,0.7523193359375,0.99951171875,0.7523193359375,0.99951171875,0.7523193359375,3.14712524414063e-005,0.8656005859375,0.99951171875,0.8193359375,3.14712524414063e-005,0.8656005859375,3.0815601348877e-005,0.869873046875,3.14712524414063e-005,0.8656005859375,0.372314453125,0.8656005859375,0.372314453125,0.8656005859375,0.99951171875,0.8193359375,0.99951171875,0.8193359375,0.99951171875,0.8656005859375,0.1905517578125,0.869873046875,3.0815601348877e-005,0.869873046875,0.372314453125,0.8656005859375,0.1905517578125,0.869873046875,3.0815601348877e-005,0.869873046875,8.34465026855469e-007,0.995403289794922,3.0815601348877e-005,0.869873046875,0.1905517578125,0.869873046875,0.1905517578125,0.869873046875,0.372314453125,0.869873046875,0.372314453125,0.869873046875,0.1905517578125,0.869873046875,0.372314453125,0.8656005859375,0.372314453125,0.869873046875,0.372314453125,0.8656005859375,0.372314453125,0.8656005859375,0.372314453125,0.869873046875,0.372314453125,0.869873046875,0.5634765625,0.8697509765625,0.5634765625,0.8697509765625,0.372314453125,0.869873046875,0.5634765625,0.8697509765625,0.5634765625,0.8697509765625,0.5634765625,0.8697509765625,0.5634765625,0.8697509765625,0.99951171875,0.8656005859375,0.99951171875,0.996494293212891,0.99951171875,0.8656005859375,0.99951171875,0.869873046875,0.99951171875,0.996494293212891,
- 0.99951171875,0.869873046875,4.24385070800781e-005,0.72021484375,4.48226928710938e-005,0.643798828125,4.24385070800781e-005,0.72021484375,0.343017578125,0.720947265625,0.343017578125,0.720947265625,4.24385070800781e-005,0.72021484375,0.371337890625,0.7525634765625,0.343017578125,0.720947265625,0.371337890625,0.7525634765625,4.24385070800781e-005,0.72021484375,4.10079956054688e-005,0.7523193359375,0.371337890625,0.7525634765625,4.10079956054688e-005,0.7523193359375,3.88026237487793e-005,0.7880859375,0.7412109375,0.72021484375,0.343017578125,0.720947265625,0.343017578125,0.720947265625,0.371337890625,0.7525634765625,0.7412109375,0.72021484375,0.7412109375,0.72021484375,0.7412109375,0.72021484375,1,0.641845703125,1,0.641845703125,0.7412109375,0.72021484375,0.99951171875,0.72021484375,0.7412109375,0.72021484375,0.99951171875,0.7523193359375,0.99951171875,0.72021484375,0.99951171875,0.7523193359375,0.7412109375,0.72021484375,0.78955078125,0.7520751953125,0.78955078125,0.7520751953125,0.7412109375,0.72021484375,0.371337890625,0.7525634765625,0.63623046875,0.7872314453125,0.99951171875,0.7523193359375,0.78955078125,0.7520751953125,0.63623046875,0.7872314453125,0.78955078125,0.7520751953125,0.371337890625,0.7525634765625,0.99951171875,0.7523193359375,0.63623046875,0.7872314453125,1,0.79052734375,0.371337890625,0.7525634765625,3.88026237487793e-005,0.7880859375,0.251953125,0.787841796875,0.371337890625,0.7525634765625,0.251953125,0.787841796875,0.63623046875,0.7872314453125,0.251953125,0.787841796875,3.88026237487793e-005,0.7880859375,-0.000212669372558594,0.82470703125,0.6806640625,0.8194580078125,1,0.79052734375,0.63623046875,0.7872314453125,-0.000212669372558594,0.82470703125,0.2705078125,0.8194580078125,0.251953125,0.787841796875,0.63623046875,0.7872314453125,0.251953125,0.787841796875,0.2705078125,0.8194580078125,0.63623046875,0.7872314453125,0.2705078125,0.8194580078125,0.6806640625,0.8194580078125,3.14712524414063e-005,0.8656005859375,0.2705078125,0.8194580078125,-0.000212669372558594,0.82470703125,1,0.79052734375,0.6806640625,
- 0.8194580078125,0.99951171875,0.8193359375,0.2705078125,0.8194580078125,3.14712524414063e-005,0.8656005859375,0.180419921875,0.8656005859375,0.180419921875,0.8656005859375,3.14712524414063e-005,0.8656005859375,3.0815601348877e-005,0.869873046875,0.2705078125,0.8194580078125,0.180419921875,0.8656005859375,0.372314453125,0.8656005859375,0.6806640625,0.8194580078125,0.2705078125,0.8194580078125,0.372314453125,0.8656005859375,3.0815601348877e-005,0.869873046875,0.1905517578125,0.869873046875,0.180419921875,0.8656005859375,0.372314453125,0.8656005859375,0.180419921875,0.8656005859375,0.1905517578125,0.869873046875,3.0815601348877e-005,0.869873046875,8.34465026855469e-007,0.995403289794922,3.0815601348877e-005,0.869873046875,0.1905517578125,0.869873046875,0.372314453125,0.869873046875,0.1905517578125,0.869873046875,0.1905517578125,0.869873046875,0.372314453125,0.869873046875,0.372314453125,0.8656005859375,0.372314453125,0.869873046875,0.6806640625,0.8194580078125,0.372314453125,0.8656005859375,0.55078125,0.865234375,0.55078125,0.865234375,0.372314453125,0.8656005859375,0.372314453125,0.869873046875,0.5634765625,0.8697509765625,0.372314453125,0.869873046875,0.372314453125,0.869873046875,0.5634765625,0.8697509765625,0.55078125,0.865234375,0.5634765625,0.8697509765625,0.6806640625,0.8194580078125,0.55078125,0.865234375,0.7890625,0.865478515625,0.5634765625,0.8697509765625,0.7890625,0.865478515625,0.55078125,0.865234375,0.99951171875,0.8193359375,0.6806640625,0.8194580078125,0.7890625,0.865478515625,0.99951171875,0.8193359375,0.7890625,0.865478515625,0.99951171875,0.8656005859375,0.80810546875,0.8697509765625,0.5634765625,0.8697509765625,0.7890625,0.865478515625,0.5634765625,0.8697509765625,0.80810546875,0.8697509765625,0.80810546875,0.8697509765625,0.99951171875,0.8656005859375,0.7890625,0.865478515625,0.80810546875,0.8697509765625,0.99951171875,0.996494293212891,0.99951171875,0.8656005859375,0.80810546875,0.8697509765625,0.99951171875,0.869873046875,0.80810546875,0.8697509765625,0.99951171875,0.996494293212891,0.99951171875,
- 0.869873046875,4.48226928710938e-005,0.643798828125,4.24385070800781e-005,0.72021484375,4.48226928710938e-005,0.643798828125,4.24385070800781e-005,0.72021484375,0.7412109375,0.72021484375,0.7412109375,0.72021484375,0.7412109375,0.72021484375,1,0.641845703125,0.7412109375,0.72021484375,0.7412109375,0.72021484375,1,0.641845703125,0.99951171875,0.72021484375,0.99951171875,0.7523193359375,0.7412109375,0.72021484375,0.99951171875,0.72021484375,0.7412109375,0.72021484375,0.78955078125,0.7520751953125,0.7412109375,0.72021484375,0.99951171875,0.7523193359375,0.78955078125,0.7520751953125,0.78955078125,0.7520751953125,0.99951171875,0.7523193359375,0.78955078125,0.7520751953125,0.99951171875,0.7523193359375,0.99951171875,0.7880859375,0.99951171875,0.7880859375,3.65376472473145e-005,0.8193359375,3.14712524414063e-005,0.8656005859375,3.65376472473145e-005,0.8193359375,3.14712524414063e-005,0.8656005859375,3.0815601348877e-005,0.869873046875,3.14712524414063e-005,0.8656005859375,0.372314453125,0.8656005859375,3.0815601348877e-005,0.869873046875,0.372314453125,0.8656005859375,8.34465026855469e-007,0.995403289794922,3.0815601348877e-005,0.869873046875,8.34465026855469e-007,0.995403289794922,0.55078125,0.865234375,0.372314453125,0.8656005859375,0.55078125,0.865234375,0.372314453125,0.869873046875,0.372314453125,0.8656005859375,0.372314453125,0.869873046875,0.55078125,0.865234375,0.372314453125,0.869873046875,0.372314453125,0.8656005859375,0.372314453125,0.869873046875,0.55078125,0.865234375,0.99951171875,0.8656005859375,0.5634765625,0.8697509765625,0.372314453125,0.869873046875,0.55078125,0.865234375,0.5634765625,0.8697509765625,0.372314453125,0.869873046875,0.5634765625,0.8697509765625,0.55078125,0.865234375,0.74169921875,0.996131896972656,0.5634765625,0.8697509765625,0.99951171875,0.8656005859375,0.80810546875,0.8697509765625,0.5634765625,0.8697509765625,0.80810546875,0.8697509765625,0.80810546875,0.8697509765625,0.74169921875,0.996131896972656,0.5634765625,0.8697509765625,0.80810546875,0.8697509765625,0.99951171875,0.8656005859375,
- 0.99951171875,0.869873046875,0.99951171875,0.996494293212891,0.74169921875,0.996131896972656,0.80810546875,0.8697509765625,0.99951171875,0.869873046875,0.99951171875,0.996494293212891,0.80810546875,0.8697509765625,0.17724609375,0.72021484375,4.48226928710938e-005,0.643798828125,4.24385070800781e-005,0.72021484375,4.24385070800781e-005,0.72021484375,-0.000257253646850586,0.7503662109375,0.17724609375,0.72021484375,4.48226928710938e-005,0.643798828125,0.17724609375,0.72021484375,0.46826171875,0.752197265625,0.17724609375,0.72021484375,-0.000257253646850586,0.7503662109375,0.427490234375,0.72021484375,0.17724609375,0.72021484375,0.17724609375,0.72021484375,0.46826171875,0.752197265625,0.427490234375,0.72021484375,0.427490234375,0.72021484375,0.46826171875,0.752197265625,-0.000257253646850586,0.7503662109375,0.000146746635437012,0.7847900390625,0.7412109375,0.72021484375,0.427490234375,0.72021484375,0.427490234375,0.72021484375,0.46826171875,0.752197265625,0.7412109375,0.72021484375,0.7412109375,0.72021484375,0.7412109375,0.72021484375,1,0.641845703125,1,0.641845703125,0.7412109375,0.72021484375,0.99951171875,0.72021484375,0.7412109375,0.72021484375,0.99951171875,0.7523193359375,0.99951171875,0.72021484375,0.78955078125,0.7520751953125,0.7412109375,0.72021484375,0.46826171875,0.752197265625,0.99951171875,0.7523193359375,0.7412109375,0.72021484375,0.78955078125,0.7520751953125,0.56005859375,0.786376953125,0.78955078125,0.7520751953125,0.46826171875,0.752197265625,0.56005859375,0.786376953125,0.99951171875,0.7523193359375,0.78955078125,0.7520751953125,0.000146746635437012,0.7847900390625,0.56005859375,0.786376953125,0.46826171875,0.752197265625,0.99951171875,0.7523193359375,0.56005859375,0.786376953125,0.99951171875,0.7880859375,0.99951171875,0.81884765625,0.99951171875,0.7880859375,0.56005859375,0.786376953125,0.56005859375,0.786376953125,0.000146746635437012,0.7847900390625,0.408935546875,0.819580078125,0.56005859375,0.786376953125,0.408935546875,0.819580078125,0.99951171875,0.81884765625,3.65376472473145e-005,0.8193359375,
- 0.408935546875,0.819580078125,0.000146746635437012,0.7847900390625,3.14712524414063e-005,0.8656005859375,0.408935546875,0.819580078125,3.65376472473145e-005,0.8193359375,0.408935546875,0.819580078125,3.14712524414063e-005,0.8656005859375,0.1715087890625,0.8651123046875,0.1715087890625,0.8651123046875,3.14712524414063e-005,0.8656005859375,3.0815601348877e-005,0.869873046875,0.408935546875,0.819580078125,0.1715087890625,0.8651123046875,0.372314453125,0.8656005859375,3.0815601348877e-005,0.869873046875,0.1868896484375,0.8695068359375,0.1715087890625,0.8651123046875,0.372314453125,0.8656005859375,0.1715087890625,0.8651123046875,0.1868896484375,0.8695068359375,0.1868896484375,0.8695068359375,3.0815601348877e-005,0.869873046875,8.34465026855469e-007,0.995403289794922,0.1868896484375,0.8695068359375,8.34465026855469e-007,0.995403289794922,0.408935546875,0.819580078125,0.372314453125,0.8656005859375,0.55078125,0.865234375,0.55078125,0.865234375,0.99951171875,0.81884765625,0.408935546875,0.819580078125,0.1868896484375,0.8695068359375,0.372314453125,0.869873046875,0.372314453125,0.8656005859375,0.372314453125,0.869873046875,0.1868896484375,0.8695068359375,0.55078125,0.865234375,0.372314453125,0.8656005859375,0.372314453125,0.869873046875,0.372314453125,0.869873046875,0.99951171875,0.81884765625,0.55078125,0.865234375,0.7890625,0.8653564453125,0.99951171875,0.81884765625,0.7890625,0.8653564453125,0.99951171875,0.8656005859375,0.372314453125,0.869873046875,0.5634765625,0.8697509765625,0.55078125,0.865234375,0.5634765625,0.8697509765625,0.372314453125,0.869873046875,0.5634765625,0.8697509765625,0.7890625,0.8653564453125,0.55078125,0.865234375,0.74169921875,0.996131896972656,0.5634765625,0.8697509765625,0.80810546875,0.8697509765625,0.99951171875,0.8656005859375,0.7890625,0.8653564453125,0.7890625,0.8653564453125,0.5634765625,0.8697509765625,0.80810546875,0.8697509765625,0.74169921875,0.996131896972656,0.80810546875,0.8697509765625,0.5634765625,0.8697509765625,0.99951171875,0.8656005859375,0.80810546875,0.8697509765625,0.99951171875,
- 0.869873046875,0.99951171875,0.996494293212891,0.80810546875,0.8697509765625,0.74169921875,0.996131896972656,0.99951171875,0.869873046875,0.80810546875,0.8697509765625,0.99951171875,0.996494293212891
- }
- UVIndex: *1086 {
- a: 0,1,2,2,3,0,4,3,2,3,4,5,5,4,6,7,6,4,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,8,9,10,9,8,11,12,11,8,12,8,13,11,12,14,15,16,17,16,15,18,19,18,15,19,15,20,18,19,21,22,23,24,23,22,25,26,27,28,28,29,26,22,24,30,30,31,22,32,26,33,26,32,27,34,35,36,35,34,37,37,34,38,39,37,38,40,37,39,37,40,41,42,43,44,45,43,42,43,45,46,45,47,46,45,48,47,48,45,49,146,147,148,149,150,151,152,153,38,154,39,38,39,155,156,157,158,159,160,161,162,163,164,165,166,167,46,47,168,46,169,170,47,171,172,173,50,51,52,51,50,53,53,54,51,55,53,50,54,53,56,56,57,54,53,55,58,59,57,56,59,60,57,61,56,53,61,59,56,53,58,61,59,61,62,62,61,63,55,64,58,58,64,61,64,55,65,66,64,65,61,67,63,61,64,67,64,66,68,68,67,64,63,67,69,67,68,69,69,70,63,69,71,70,66,72,68,72,66,73,68,74,69,74,68,72,71,69,75,71,75,76,77,69,74,75,69,77,78,76,75,75,77,78,76,79,80,79,76,78,81,78,77,79,78,81,77,74,81,79,81,82,83,81,74,82,81,83,72,83,74,82,83,84,83,72,85,85,84,83,73,85,72,85,73,86,86,84,85,84,86,87,88,174,52,88,89,175,54,89,88,89,176,177,89,54,90,57,90,54,178,89,179,57,180,90,181,57,60,90,182,89,183,184,90,185,89,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,79,259,80,260,79,261,262,263,264,79,265,266,267,268,269,270,79,82,271,272,273,82,274,275,276,277,278,279,82,84,280,281,282,84,283,284,285,286,287,288,289,290,84,291,292,293,84,87,294,295,91,296,91,92,92,91,93,94,297,92,298,94,299,94,95,300,93,96,92,94,92,96,96,93,97,301,96,97,96,302,303,304,96,305,96,306,98,96,98,94,307,99,98,98,99,94,99,308,100,101,95,94,99,101,94,101,102,95,100,103,99,104,102,101,101,99,104,103,104,99,104,309,102,103,100,310,311,104,105,105,312,313,103,314,104,105,104,315,316,106,103,106,317,318,319,320,105,105,321,322,323,107,324,107,325,326,107,327,328,329,330,331,107,332,108,333,103,109,334,109,335,109,103,106,
- 108,336,337,338,339,109,106,340,109,108,341,110,342,106,111,111,110,343,344,111,106,111,345,110,111,346,347,348,111,349,350,91,351,91,352,353,91,354,93,355,356,357,358,359,360,361,362,363,364,93,365,366,367,368,93,369,97,370,371,97,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,107,438,439,440,107,441,107,442,443,444,445,446,447,107,108,448,449,450,451,452,453,108,454,455,456,457,458,459,108,110,460,461,462,463,464,465,466,467,468,469,470,471,110,472,473,474,475,476,477,478,479,480,110,481,482,483,484,485,486,487,488,112,489,112,490,113,114,491,112,113,115,112,115,113,116,112,117,114,117,112,115,117,118,114,116,492,115,117,115,493,494,116,119,495,496,119,497,498,499,500,501,502,503,504,117,505,506,507,508,120,117,509,120,510,120,118,117,120,511,512,513,121,120,120,122,118,122,120,121,514,118,122,122,515,516,123,517,122,123,518,519,520,123,122,521,123,124,522,124,123,124,523,524,125,525,124,526,527,122,121,528,122,529,124,530,531,125,124,532,533,534,126,125,535,536,121,127,127,121,537,538,539,540,541,126,542,127,543,544,545,126,546,547,548,127,549,127,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,113,571,572,573,574,113,575,576,577,578,113,579,116,580,581,582,583,116,584,585,586,587,116,588,119,589,590,119,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,125,648,649,650,651,652,653,654,655,656,657,658,659,660,125,661,662,663,126,664,125,665,666,667,668,669,670,671,672,673,674,675,126,676,677,678,679,680,126,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698
- }
- }
- LayerElementUV: 1 {
- Version: 101
- Name: "LightMapUV"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *600 {
- a: 0.5078125,0.7747802734375,0.6591796875,0.805419921875,0.6591796875,0.991935729980469,0.365234375,0.718994140625,0.00806427001953125,0.54150390625,0.237060546875,0.637939453125,0.1279296875,0.534423828125,0.00806427001953125,0.36767578125,0.2015380859375,0.36767578125,0.2015380859375,0.55419921875,0.3525390625,0.584716796875,0.4951171875,0.640625,0.8525390625,0.818115234375,0.62353515625,0.721923828125,0.732421875,0.8251953125,0.8525390625,0.991935729980469,0.08905029296875,0.8397216796875,0.27294921875,0.7755126953125,0.27294921875,0.8397216796875,0.08905029296875,0.7755126953125,0.00806427001953125,0.8076171875,0.08575439453125,0.8468017578125,0.08575439453125,0.7684326171875,0.0889892578125,0.03369140625,0.260009765625,0.09814453125,0.260009765625,0.03369140625,0.0889892578125,0.09814453125,0.00806427001953125,0.06591796875,0.08563232421875,0.02685546875,0.08563232421875,0.10498046875,0.951171875,0.94708251953125,0.87890625,0.2001953125,0.951171875,0.1552734375,0.87890625,0.991935729980469,0.05291748046875,0.27490234375,0.8447265625,0.27490234375,0.7998046875,0.34716796875,0.00806427001953125,0.34716796875,0.95849609375,0.154296875,0.95849609375,0.94580078125,0.845703125,0.267578125,0.05419921875,0.267578125,0.351318359375,0.991935729980469,0.352294921875,0.972412109375,0.352294921875,0.990768432617188,0.34423828125,0.966064453125,0.314453125,0.991935729980469,0.314453125,0.94403076171875,0.3369140625,0.94403076171875,0.34423828125,0.95220947265625,0.52734375,0.95513916015625,0.5078125,0.9559326171875,0.5087890625,0.95513916015625,0.5341796875,0.96234130859375,0.5078125,0.991935729980469,0.5556640625,0.991752624511719,0.5556640625,0.969528198242188,0.54833984375,0.96234130859375,0.416748046875,0.972412109375,0.415771484375,0.991935729980469,0.416748046875,0.990768432617188,0.408935546875,0.966064453125,0.37890625,0.991935729980469,0.37890625,0.94403076171875,0.4013671875,0.94403076171875,0.40869140625,0.95220947265625,0.4443359375,0.991935729980469,0.443359375,0.972503662109375,0.443359375,
- 0.990768432617188,0.45068359375,0.965576171875,0.480224609375,0.991935729980469,0.47998046875,0.94427490234375,0.457763671875,0.94427490234375,0.45068359375,0.95147705078125,0.296875,0.9034423828125,0.229248046875,0.87847900390625,0.296875,0.8782958984375,0.2247314453125,0.90338134765625,0.1373291015625,0.878662109375,0.296875,0.9136962890625,0.10760498046875,0.9036865234375,0.06036376953125,0.87884521484375,0.23974609375,0.91375732421875,0.0080718994140625,0.9034423828125,0.0080718994140625,0.87896728515625,0.1163330078125,0.91387939453125,0.0080718994140625,0.9136962890625,0.0079345703125,0.92449951171875,0.23388671875,0.92510986328125,0.296875,0.9251708984375,0.296875,0.9351806640625,0.1346435546875,0.92529296875,0.2242431640625,0.93524169921875,0.1068115234375,0.9351806640625,0.0080718994140625,0.9351806640625,0.0080718994140625,0.95001220703125,0.2408447265625,0.949951171875,0.296875,0.95001220703125,0.16748046875,0.950103759765625,0.06011962890625,0.949920654296875,0.0080718994140625,0.95135498046875,0.11566162109375,0.95001220703125,0.0631103515625,0.95135498046875,0.060272216796875,0.991668701171875,0.00806427001953125,0.991592407226563,0.11566162109375,0.95135498046875,0.1353759765625,0.991722106933594,0.1710205078125,0.951324462890625,0.2340087890625,0.991851806640625,0.2462158203125,0.951385498046875,0.296875,0.95135498046875,0.296875,0.991935729980469,0.84716796875,0.634033203125,0.822265625,0.70166015625,0.84716796875,0.70166015625,0.822265625,0.628173828125,0.8466796875,0.5419921875,0.81201171875,0.70166015625,0.82177734375,0.51220703125,0.8466796875,0.46533203125,0.81201171875,0.64453125,0.822265625,0.4130859375,0.8466796875,0.4130859375,0.8115234375,0.52099609375,0.81201171875,0.4130859375,0.80126953125,0.41259765625,0.80029296875,0.638671875,0.80029296875,0.70166015625,0.79052734375,0.70166015625,0.80029296875,0.539306640625,0.79052734375,0.62890625,0.79052734375,0.511474609375,0.79052734375,0.4130859375,0.775390625,0.4130859375,0.77587890625,0.6455078125,0.775390625,0.70166015625,0.775390625,0.572265625,
- 0.77587890625,0.46484375,0.7744140625,0.4130859375,0.775390625,0.520263671875,0.7744140625,0.4677734375,0.73388671875,0.46484375,0.73388671875,0.4130859375,0.7744140625,0.520263671875,0.73388671875,0.5400390625,0.7744140625,0.57568359375,0.73388671875,0.638671875,0.7744140625,0.65087890625,0.7744140625,0.70166015625,0.7333984375,0.70166015625,0.314453125,0.16162109375,0.314453125,0.13720703125,0.36572265625,0.13720703125,0.411865234375,0.162109375,0.44140625,0.13671875,0.419921875,0.171875,0.314453125,0.171875,0.314453125,0.18359375,0.52490234375,0.16162109375,0.52392578125,0.13671875,0.59814453125,0.13671875,0.59814453125,0.16162109375,0.59814453125,0.171875,0.53857421875,0.171875,0.4951171875,0.18310546875,0.59814453125,0.18408203125,0.385986328125,0.18310546875,0.314453125,0.1953125,0.5078125,0.193359375,0.391357421875,0.193359375,0.314453125,0.20849609375,0.59814453125,0.193359375,0.36572265625,0.20849609375,0.314453125,0.20947265625,0.420166015625,0.20849609375,0.53857421875,0.2080078125,0.59814453125,0.20849609375,0.368408203125,0.20947265625,0.36572265625,0.25,0.314453125,0.25,0.420166015625,0.20947265625,0.439208984375,0.25,0.470947265625,0.2080078125,0.474609375,0.20947265625,0.52490234375,0.25,0.5439453125,0.20947265625,0.59814453125,0.25048828125,0.59814453125,0.20947265625,0.62060546875,0.06494140625,0.671875,0.0400390625,0.62060546875,0.04052734375,0.71826171875,0.06494140625,0.74755859375,0.0400390625,0.72607421875,0.0751953125,0.62060546875,0.0751953125,0.62060546875,0.08642578125,0.83154296875,0.06494140625,0.830078125,0.0400390625,0.90478515625,0.03955078125,0.90478515625,0.06494140625,0.90478515625,0.0751953125,0.84521484375,0.0751953125,0.80126953125,0.08642578125,0.90478515625,0.08740234375,0.6923828125,0.08642578125,0.62060546875,0.0986328125,0.81396484375,0.0966796875,0.69775390625,0.0966796875,0.62060546875,0.111328125,0.90478515625,0.0966796875,0.671875,0.111328125,0.62060546875,0.11279296875,0.7265625,0.111328125,0.6748046875,0.11279296875,0.671875,0.1533203125,0.62060546875,0.1533203125,0.7265625,
- 0.11279296875,0.74560546875,0.1533203125,0.77734375,0.111328125,0.78076171875,0.11279296875,0.83154296875,0.1533203125,0.8447265625,0.111328125,0.90478515625,0.111328125,0.85009765625,0.11279296875,0.90478515625,0.1533203125,0.90478515625,0.11279296875,0.42724609375,0.37890625,0.477783203125,0.4033203125,0.42724609375,0.40380859375,0.4814453125,0.37890625,0.42724609375,0.4130859375,0.548828125,0.40380859375,0.5546875,0.37890625,0.56005859375,0.4140625,0.42724609375,0.42431640625,0.6376953125,0.4033203125,0.63671875,0.37841796875,0.71142578125,0.37841796875,0.71142578125,0.40380859375,0.71142578125,0.4140625,0.6513671875,0.41357421875,0.58642578125,0.4248046875,0.71142578125,0.42529296875,0.71142578125,0.43505859375,0.54345703125,0.435546875,0.42724609375,0.435546875,0.42724609375,0.4501953125,0.47607421875,0.4501953125,0.42724609375,0.45166015625,0.533203125,0.4501953125,0.48046875,0.45166015625,0.42724609375,0.49169921875,0.482177734375,0.49169921875,0.583984375,0.4501953125,0.533203125,0.45166015625,0.552734375,0.4921875,0.6513671875,0.4501953125,0.71142578125,0.4501953125,0.58740234375,0.45166015625,0.63818359375,0.4921875,0.65673828125,0.45166015625,0.71142578125,0.45166015625,0.71142578125,0.4921875,0.058441162109375,0.16162109375,0.0080718994140625,0.13720703125,0.0080718994140625,0.16162109375,0.00798797607421875,0.17138671875,0.062255859375,0.13720703125,0.14111328125,0.171875,0.1295166015625,0.16162109375,0.135498046875,0.13671875,0.0081024169921875,0.18212890625,0.21875,0.16162109375,0.2176513671875,0.13671875,0.292236328125,0.13671875,0.292236328125,0.16162109375,0.292236328125,0.171875,0.232421875,0.171875,0.167236328125,0.18310546875,0.292236328125,0.18359375,0.2919921875,0.193359375,0.124267578125,0.193359375,0.0080718994140625,0.193359375,0.0080718994140625,0.20849609375,0.05682373046875,0.2080078125,0.0080718994140625,0.20947265625,0.1138916015625,0.20849609375,0.061187744140625,0.20947265625,0.00806427001953125,0.25,0.06292724609375,0.25,0.16455078125,0.2080078125,0.1138916015625,0.20947265625,0.1336669921875,
- 0.25,0.232421875,0.2080078125,0.292236328125,0.20849609375,0.168212890625,0.20947265625,0.2188720703125,0.25,0.2376708984375,0.20947265625,0.292236328125,0.20947265625,0.292236328125,0.25048828125
- }
- UVIndex: *1086 {
- a: 0,1,2,2,3,0,4,3,2,3,4,5,5,4,6,7,6,4,8,9,10,11,8,10,12,8,11,12,11,13,12,13,14,15,12,14,16,17,18,17,16,19,20,19,16,20,16,21,19,20,22,23,24,25,24,23,26,27,26,23,27,23,28,26,27,29,30,31,32,31,30,33,34,35,36,36,37,34,30,32,38,38,39,30,40,34,41,34,40,35,42,43,44,43,42,45,45,42,46,47,45,46,48,45,47,45,48,49,50,51,52,53,51,50,51,53,54,53,55,54,53,56,55,56,53,57,58,59,60,61,59,58,59,61,62,61,63,62,63,61,64,64,61,65,66,67,68,67,66,69,69,66,70,71,69,70,72,69,71,69,72,73,74,75,76,75,74,77,77,78,75,79,77,74,78,77,80,80,81,78,77,79,82,83,81,80,83,84,81,85,80,77,85,83,80,77,82,85,83,85,86,86,85,87,79,88,82,82,88,85,88,79,89,90,88,89,85,91,87,85,88,91,88,90,92,92,91,88,87,91,93,91,92,93,93,94,87,93,95,94,90,96,92,96,90,97,92,98,93,98,92,96,95,93,99,95,99,100,101,93,98,99,93,101,102,100,99,99,101,102,100,103,104,103,100,102,105,102,101,103,102,105,101,98,105,103,105,106,107,105,98,106,105,107,96,107,98,106,107,108,107,96,109,109,108,107,97,109,96,109,97,110,110,108,109,108,110,111,112,113,114,112,115,113,116,115,112,115,117,113,115,116,118,119,118,116,117,115,120,119,121,118,121,119,122,118,123,115,121,123,118,120,115,123,123,121,124,125,123,124,126,117,120,126,120,123,117,126,127,126,128,127,123,125,129,123,129,126,130,128,126,129,130,126,131,129,125,130,129,131,125,132,131,131,132,133,128,130,134,134,135,128,130,131,136,136,134,130,131,133,137,138,137,133,139,136,131,137,139,131,137,138,140,140,139,137,141,138,142,138,141,140,139,140,143,141,143,140,143,136,139,143,141,144,136,143,145,144,145,143,145,134,136,145,144,146,134,145,147,146,147,145,147,135,134,135,147,148,146,148,147,148,146,149,150,151,152,150,152,153,153,152,154,155,150,153,150,155,156,155,157,156,154,158,153,155,153,158,158,154,159,160,158,159,158,160,161,162,158,161,158,162,163,158,163,155,162,164,163,163,164,155,164,162,165,166,157,155,164,166,155,166,167,157,165,168,164,169,167,166,166,164,169,168,169,164,169,170,167,168,165,171,170,169,172,172,173,170,168,174,169,172,169,174,171,175,168,175,171,176,177,173,172,172,174,177,173,178,179,178,
- 173,177,178,177,180,180,177,174,178,180,181,174,168,182,174,182,180,182,168,175,181,180,183,183,180,182,175,183,182,181,183,184,183,175,185,185,184,183,176,185,175,185,186,184,185,176,187,186,185,187,188,189,190,189,188,191,189,191,192,188,193,191,193,188,194,193,194,195,196,192,191,191,193,196,192,196,197,196,198,197,198,196,199,196,200,199,200,196,201,201,196,193,202,200,201,202,201,193,200,202,203,193,195,204,193,204,202,204,195,205,206,203,202,205,207,204,202,204,207,202,207,206,208,207,205,203,206,209,207,208,210,210,208,211,207,210,212,206,207,212,211,213,210,212,210,213,214,211,215,211,214,213,214,216,213,213,216,212,216,214,217,206,212,218,218,212,216,217,219,216,216,219,218,219,217,220,206,218,221,219,221,218,209,206,221,209,221,222,220,223,219,221,219,223,223,222,221,223,220,224,222,223,225,223,224,225,226,227,228,227,226,229,230,228,227,229,231,227,231,229,232,227,233,230,233,227,231,233,234,230,232,235,231,233,231,235,235,232,236,237,235,236,235,237,238,239,235,238,235,240,233,235,239,240,240,241,233,239,241,240,241,234,233,241,239,242,242,243,241,241,244,234,244,241,243,245,234,244,244,246,245,247,246,244,247,248,246,249,247,244,248,247,250,249,250,247,250,251,248,252,251,250,253,249,244,243,253,244,254,250,249,254,252,250,253,254,249,255,252,254,253,243,256,256,243,257,258,254,253,258,255,254,256,258,253,259,255,258,257,260,256,258,256,260,260,259,258,260,257,261,262,259,260,261,262,260,263,264,265,265,266,263,264,263,267,268,263,266,269,267,263,263,268,269,267,269,270,268,266,271,272,270,269,269,268,272,270,272,273,272,274,273,274,272,275,272,276,275,277,272,268,276,272,277,278,277,268,278,276,277,271,278,268,276,278,279,280,279,278,278,271,281,278,281,280,282,281,271,283,281,282,281,283,284,284,283,285,281,284,286,285,287,284,286,284,287,287,285,288,289,287,288,281,286,290,290,280,281,287,291,286,291,287,289,290,286,291,292,291,289,280,290,293,280,293,294,291,295,290,295,291,292,295,293,290,296,295,292,297,294,293,293,295,297,296,297,295,294,297,298,299,297,296,298,297,299
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *549 {
- 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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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: "ByPolygon"
- ReferenceInformationType: "IndexToDirect"
- Materials: *362 {
- a: 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,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2
- }
- }
- 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
- }
- }
- Layer: 1 {
- Version: 100
- LayerElement: {
- Type: "LayerElementBinormal"
- TypedIndex: 1
- }
- LayerElement: {
- Type: "LayerElementTangent"
- TypedIndex: 1
- }
- LayerElement: {
- Type: "LayerElementUV"
- TypedIndex: 1
- }
- }
- }
- Geometry: 2333008457904, "Geometry::", "Mesh" {
- Vertices: *300 {
- a: 45.193359375,123.257202148438,-273.626953125,45.193359375,166.272705078125,-486.17724609375,45.193359375,428.780029296875,-486.17724609375,45.193359375,44.6884765625,-72.992431640625,45.193359375,-205.057983398438,429.757934570313,45.193359375,-69.4801025390625,107.573608398438,45.193359375,-214.93798828125,261.133056640625,45.193359375,-449.595947265625,429.7578125,-45.1953125,428.780029296875,-486.17724609375,-45.1953125,166.272705078125,-486.17724609375,-45.1953125,123.257202148438,-273.626953125,-45.1953125,44.6884765625,-72.992431640625,-45.1953125,-205.057983398438,429.757934570313,-45.1953125,-69.4801025390625,107.573608398438,-45.1953125,-214.93798828125,261.133056640625,-45.1953125,-449.595947265625,429.7578125,-0.00390625,536.446411132813,-485.050903320313,-55.126953125,433.561401367188,-485.051025390625,55.126953125,433.5615234375,-485.050903320313,-0.00390625,-97.39111328125,430.8837890625,55.126953125,-200.276611328125,430.884033203125,-55.126953125,-200.276733398438,430.883911132813,-40.2876625061035,-543.828369140625,410.6220703125,-51.9921875,-518.290771484375,470.375244140625,-53.1556739807129,-517.723754882813,470.606811523438,-0.38671875,-518.290771484375,470.375244140625,-0.38671875,-545.170043945313,408.561401367188,51.21875,-518.290771484375,470.375244140625,42.6943778991699,-540.421081542969,418.732482910156,52.3822364807129,-517.723815917969,470.606750488281,31.896484375,-545.170043945313,408.561401367188,42.9655685424805,119.615509033203,-488.764129638672,30.708984375,105.031005859375,-488.57958984375,-0.38671875,105.031005859375,-488.57958984375,-0.38671875,172.118774414063,-488.57958984375,50.166015625,172.118774414063,-488.57958984375,51.34375,170.470458984375,-488.57958984375,-31.482421875,105.031005859375,-488.57958984375,-43.7339515686035,119.590515136719,-488.763000488281,-50.939453125,172.118774414063,-488.57958984375,-52.1171875,170.470458984375,-488.57958984375,-0.386709570884705,160.842269897461,-388.14892578125,48.4364929199219,155.082992553711,-355.268188476563,
- -0.386708348989487,114.582809448242,-208.980545043945,51.691032409668,150.08171081543,-340.257019042969,50.9310722351074,106.533882141113,-189.895690917969,50.693359375,61.604248046875,-85.856201171875,-0.38671875,61.604248046875,-85.856201171875,52.4410591125488,100.990463256836,-180.932266235352,51.86328125,60.114013671875,-86.578857421875,41.2782783508301,11.2373809814453,-110.271408081055,41.8900604248047,66.9179534912109,-245.337066650391,31.302734375,0.9564208984375,-115.271850585938,31.5209693908691,72.837890625,-299.808959960938,-0.383468776941299,73.5664215087891,-293.179443359375,-0.38671875,0.9564208984375,-115.271850585938,-49.2099151611328,155.082977294922,-355.268218994141,-52.464469909668,150.08171081543,-340.257019042969,-51.7045135498047,106.533866882324,-189.895568847656,-51.466796875,61.604248046875,-85.856201171875,-53.2132911682129,100.991081237793,-180.936889648438,-52.63671875,60.114013671875,-86.578857421875,-42.0517959594727,11.2376861572266,-110.271347045898,-42.6631774902344,66.9152221679688,-245.332946777344,-32.076171875,0.9564208984375,-115.271850585938,-32.3410911560059,72.5086975097656,-298.693939208984,-0.38671875,-178.443481445313,244.124145507813,-0.386715859174728,-257.617980957031,314.309020996094,52.2208633422852,-177.568756103516,245.432708740234,53.1491050720215,-356.570983886719,387.599182128906,-0.386715710163116,-390.311798095703,405.922821044922,51.8931503295898,-349.815155029297,378.936309814453,52.7799453735352,-179.066802978516,243.498870849609,42.8701210021973,-377.440338134766,338.114105224609,41.6640625,-218.029174804688,202.865112304688,30.8359375,-372.101989746094,318.596740722656,31.302734375,-225.10888671875,195.484619140625,-0.38671875,-225.10888671875,195.484619140625,-0.386722534894943,-377.751251220703,320.349090576172,-0.386717319488525,-87.8010482788086,149.081512451172,51.2052268981934,-102.096382141113,164.567443847656,49.7050666809082,-0.959558486938477,29.8666133880615,-0.386717587709427,11.667552947998,7.52814865112305,52.166259765625,-13.0803508758545,44.3627624511719,
- 41.9999389648438,-118.776847839355,97.2268142700195,31.2676372528076,-89.0700378417969,41.8276672363281,-0.386720418930054,-100.849098205566,60.0930404663086,-52.9942893981934,-177.568756103516,245.432708740234,-53.922664642334,-356.571075439453,387.599090576172,-52.6665878295898,-349.815093994141,378.936370849609,-53.5533981323242,-179.066772460938,243.498901367188,-43.6435661315918,-377.440185546875,338.114013671875,-42.4375,-218.029174804688,202.865112304688,-31.6093807220459,-372.10205078125,318.5966796875,-32.076171875,-225.10888671875,195.484619140625,-51.9786605834961,-102.09635925293,164.567459106445,-50.4785041809082,-0.959558486938477,29.8666133880615,-52.9396896362305,-13.0803337097168,44.3627815246582,-42.7733764648438,-118.776863098145,97.2267990112305,-32.0410499572754,-89.0700454711914,41.8276596069336
- }
- PolygonVertexIndex: *546 {
- a: 0,1,-3,2,3,-1,4,3,-3,3,4,-6,5,4,-7,7,6,-5,8,9,-11,11,8,-11,12,8,-12,12,11,-14,12,13,-15,15,12,-15,8,1,-10,1,8,-3,16,2,-9,16,8,-18,2,16,-19,4,15,-8,15,4,-13,19,12,-5,19,4,-21,12,19,-22,18,19,-21,19,18,-17,17,21,-20,19,16,-18,18,20,-5,4,2,-19,12,17,-9,17,12,-22,22,23,-25,23,22,-26,22,26,-26,27,28,-30,28,27,-26,26,28,-26,30,28,-27,31,32,-34,31,33,-35,35,31,-35,31,35,-37,37,38,-34,33,38,-35,38,39,-35,39,38,-41,41,35,-35,35,41,-43,42,36,-36,43,42,-42,36,42,-45,44,31,-37,43,45,-43,42,45,-45,46,43,-48,43,46,-46,48,44,-46,45,46,-49,31,44,-49,49,48,-47,48,49,-51,51,48,-51,31,48,-52,52,51,-51,53,31,-52,51,52,-54,31,53,-33,52,54,-54,54,32,-54,52,55,-55,32,54,-34,39,41,-35,41,39,-57,40,56,-40,56,43,-42,56,40,-58,57,40,-39,43,56,-59,57,58,-57,43,59,-48,59,43,-59,58,57,-61,60,59,-59,38,60,-58,59,60,-62,60,62,-62,63,62,-61,60,38,-64,63,64,-63,38,65,-64,64,63,-66,65,38,-38,54,64,-66,54,65,-38,64,54,-56,54,37,-34,66,67,-69,68,67,-70,67,70,-70,70,25,-70,69,25,-28,27,29,-70,68,69,-72,71,69,-30,71,72,-69,71,29,-74,72,71,-74,73,29,-29,73,74,-73,75,73,-29,75,74,-74,28,30,-76,74,75,-77,26,75,-31,75,77,-77,75,26,-79,77,75,-79,68,79,-67,79,68,-81,80,68,-73,79,80,-82,79,81,-83,81,47,-83,47,81,-47,81,49,-47,81,80,-84,49,81,-84,72,83,-81,83,50,-50,83,72,-85,50,83,-85,84,72,-75,76,84,-75,85,50,-85,84,76,-86,50,85,-53,85,55,-53,55,85,-87,76,86,-86,76,77,-87,66,87,-68,67,87,-89,67,88,-71,70,88,-26,88,23,-26,23,88,-25,88,87,-90,89,24,-89,90,89,-88,91,24,-90,89,90,-92,24,91,-23,92,91,-91,91,93,-23,92,93,-92,93,26,-23,93,92,-95,26,93,-79,77,93,-95,93,77,-79,79,87,-67,87,79,-96,95,90,-88,79,96,-96,96,79,-83,96,82,-48,96,47,-60,61,96,-60,95,96,-98,96,61,-98,97,90,-96,62,97,-62,98,90,-98,97,62,-99,98,92,-91,98,94,-93,62,99,-99,94,98,-100,99,62,-65,55,99,-65,99,55,-87,86,94,-100,94,86,-78
- }
- Edges: *279 {
- a: 0,1,2,3,4,6,8,10,11,13,14,15,17,18,19,20,21,23,24,26,28,29,31,32,33,35,36,37,40,42,44,46,47,49,50,51,52,55,57,59,61,62,64,65,66,68,71,72,74,80,84,90,91,92,94,95,96,97,99,100,101,103,104,105,108,110,111,112,113,115,116,117,119,121,122,123,124,125,127,129,130,133,134,135,137,139,140,141,144,146,148,149,150,153,154,157,159,160,161,163,165,167,169,173,174,176,178,179,180,182,185,186,188,189,191,193,196,198,199,201,204,205,208,210,214,215,216,219,223,224,227,229,230,231,234,235,239,241,242,243,246,250,251,252,253,255,257,259,261,262,264,265,269,272,273,275,278,281,285,286,287,289,290,291,292,294,295,299,301,304,305,308,309,310,313,314,317,320,321,322,324,326,327,331,334,335,336,339,340,343,344,347,348,349,352,353,356,358,359,361,362,363,364,367,369,373,374,377,378,381,385,386,389,392,393,396,398,400,403,405,409,410,411,415,417,418,421,422,424,427,429,433,436,437,438,441,443,444,446,448,451,453,455,456,457,459,462,466,467,469,471,473,477,481,482,483,486,487,491,494,497,498,502,503,505,507,510,513,515,517,519,522,525,526,530,533,534,539,540
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Normals: *1638 {
- a: 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,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,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,-0.00787377171218395,0.999969005584717,0,-0.00787377171218395,0.999969005584717,0,-0.00787377171218395,0.999969005584717,0,-0.00787377171218395,0.999969005584717,0,-0.00787377171218395,0.999969005584717,0,-0.00787377171218395,0.999969005584717,0,-0.00787377171218395,0.999969005584717,0,-0.00787377171218395,0.999969005584717,0,-0.00787377171218395,0.999969005584717,0,-0.00787377171218395,0.999969005584717,0,-0.00787377171218395,0.999969005584717,0,-0.00787377171218395,0.999969005584717,0,-0.00787377171218395,0.999969005584717,0,-0.00787377171218395,0.999969005584717,0,-0.00787377171218395,0.999969005584717,0.837846517562866,0.450540095567703,0.308264285326004,0.837846517562866,0.450540095567703,0.308264285326004,0.837846517562866,0.450540095567703,0.308264285326004,0.837846517562866,0.450540095567703,0.308264285326004,0.837846517562866,0.450540095567703,0.308264285326004,0.837846517562866,0.450540095567703,0.308264285326004,-0.837846517562866,0.450540095567703,0.308264285326004,-0.837846517562866,0.450540095567703,0.308264285326004,-0.837846517562866,0.450540095567703,0.308264285326004,-0.837846517562866,0.450540095567703,0.308264285326004,-0.837846517562866,0.450540095567703,0.308264285326004,-0.837846517562866,0.450540095567703,0.308264285326004,0.416535973548889,-0.746621012687683,-0.518705129623413,0.416535973548889,-0.746621012687683,-0.518705129623413,0.416535973548889,-0.746621012687683,-0.518705129623413,
- 0.416535973548889,-0.746621012687683,-0.518705129623413,0.416535973548889,-0.746621012687683,-0.518705129623413,0.416535973548889,-0.746621012687683,-0.518705129623413,-0.416535973548889,-0.746621012687683,-0.518705129623413,-0.416535973548889,-0.746621012687683,-0.518705129623413,-0.416535973548889,-0.746621012687683,-0.518705129623413,-0.416535973548889,-0.746621012687683,-0.518705129623413,-0.416535973548889,-0.746621012687683,-0.518705129623413,-0.416535973548889,-0.746621012687683,-0.518705129623413,0,-0.915431380271912,0.402474135160446,0,-0.915431380271912,0.402474135160446,0,-0.915431380271912,0.402474135160446,0,-0.915431380271912,0.402474135160446,0,-0.915431380271912,0.402474135160446,0,-0.915431380271912,0.402474135160446,0,-0.915431380271912,0.402474135160446,0,-0.915431380271912,0.402474135160446,0,-0.915431380271912,0.402474135160446,0,-0.915431380271912,0.402474135160446,0,-0.915431380271912,0.402474135160446,0,-0.915431380271912,0.402474135160446,0,-0.915431380271912,0.402474135160446,0,-0.915431380271912,0.402474135160446,0,-0.915431380271912,0.402474135160446,0,-0.915431380271912,0.402474135160446,0,-0.915431380271912,0.402474135160446,0,-0.915431380271912,0.402474135160446,0,-0.915431380271912,0.402474135160446,0,-0.915431380271912,0.402474135160446,0,-0.915431380271912,0.402474135160446,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,0.986179888248444,0.165678218007088,0.0315626710653305,0.99422413110733,0.102578677237034,
- 0,0.994719624519348,0.102629795670509,0.0315626710653305,0.99422413110733,0.102578677237034,0,0.986179888248444,0.165678218007088,0.0394963920116425,0.979510545730591,0.197481960058212,0.0394963920116425,0.979510545730591,0.197481960058212,0.998885869979858,0.047191459685564,1.04786090217166e-017,0.0315626710653305,0.99422413110733,0.102578677237034,0,0.94385838508606,0.330350399017334,0.0394963920116425,0.979510545730591,0.197481960058212,0,0.986179888248444,0.165678218007088,0.998885869979858,0.047191459685564,1.04786090217166e-017,0.0394963920116425,0.979510545730591,0.197481960058212,0.999225914478302,0.0393396019935608,8.73514638256818e-018,0.999225914478302,0.0393396019935608,8.73514638256818e-018,0.937211275100708,-0.346531927585602,-0.0393786244094372,0.998885869979858,0.047191459685564,1.04786090217166e-017,0,0.94385838508606,0.330350399017334,0.0393786244094372,0.937211275100708,0.346531927585602,0.0394963920116425,0.979510545730591,0.197481960058212,0.0394963920116425,0.979510545730591,0.197481960058212,0.0393786244094372,0.937211275100708,0.346531927585602,0.999225914478302,0.0393396019935608,8.73514638256818e-018,0.0314775295555592,0.897109568119049,0.440685391426086,0,0.94385838508606,0.330350399017334,0,0.897554337978363,0.440903872251511,0,0.94385838508606,0.330350399017334,0.0314775295555592,0.897109568119049,0.440685391426086,0.0393786244094372,0.937211275100708,0.346531927585602,0.992218255996704,-0.118121221661568,-0.0393737405538559,0.999225914478302,0.0393396019935608,8.73514638256818e-018,0.0393786244094372,0.937211275100708,0.346531927585602,0.0393786244094372,0.937211275100708,0.346531927585602,0.0314775295555592,0.897109568119049,0.440685391426086,0.992218255996704,-0.118121221661568,-0.0393737405538559,0.937211275100708,-0.346531927585602,-0.0393786244094372,0.999225914478302,0.0393396019935608,8.73514638256818e-018,0.992218255996704,-0.118121221661568,-0.0393737405538559,0.99894767999649,0.0393286496400833,0.0235971882939339,0.992218255996704,-0.118121221661568,-0.0393737405538559,0.0314775295555592,0.897109568119049,0.440685391426086,
- 0.992218255996704,-0.118121221661568,-0.0393737405538559,0.99894767999649,0.0393286496400833,0.0235971882939339,0.917936503887177,-0.36089813709259,-0.164757832884789,0.948298156261444,-0.300294399261475,-0.102732293307781,0.992218255996704,-0.118121221661568,-0.0393737405538559,0.917936503887177,-0.36089813709259,-0.164757832884789,0.937211275100708,-0.346531927585602,-0.0393786244094372,0.992218255996704,-0.118121221661568,-0.0393737405538559,0.948298156261444,-0.300294399261475,-0.102732293307781,0.236161917448044,-0.873799085617065,-0.425091445446014,0.948298156261444,-0.300294399261475,-0.102732293307781,0.917936503887177,-0.36089813709259,-0.164757832884789,0.229079082608223,-0.940014123916626,-0.252776920795441,0.937211275100708,-0.346531927585602,-0.0393786244094372,0.948298156261444,-0.300294399261475,-0.102732293307781,0.948298156261444,-0.300294399261475,-0.102732293307781,0.236161917448044,-0.873799085617065,-0.425091445446014,0.229079082608223,-0.940014123916626,-0.252776920795441,0.937211275100708,-0.346531927585602,-0.0393786244094372,0.229079082608223,-0.940014123916626,-0.252776920795441,0.244763121008873,-0.963261306285858,-0.110538177192211,0.236161917448044,-0.873799085617065,-0.425091445446014,0,-0.965842843055725,-0.259128570556641,0.229079082608223,-0.940014123916626,-0.252776920795441,0,-0.965842843055725,-0.259128570556641,0.244763121008873,-0.963261306285858,-0.110538177192211,0.229079082608223,-0.940014123916626,-0.252776920795441,0.236161917448044,-0.873799085617065,-0.425091445446014,0,-0.897554337978363,-0.440903872251511,0,-0.965842843055725,-0.259128570556641,0.244763121008873,-0.963261306285858,-0.110538177192211,0,-0.965842843055725,-0.259128570556641,0,-0.993883728981018,-0.110431522130966,-0.0315626710653305,0.99422413110733,0.102578677237034,0,0.986179888248444,0.165678218007088,0,0.994719624519348,0.102629795670509,0,0.986179888248444,0.165678218007088,-0.0315626710653305,0.99422413110733,0.102578677237034,-0.0394963920116425,0.979510545730591,0.197481960058212,-0.998885869979858,0.047191459685564,1.04786090217166e-017,
- -0.0394963920116425,0.979510545730591,0.197481960058212,-0.0315626710653305,0.99422413110733,0.102578677237034,-0.0394963920116425,0.979510545730591,0.197481960058212,0,0.94385838508606,0.330350399017334,0,0.986179888248444,0.165678218007088,-0.0394963920116425,0.979510545730591,0.197481960058212,-0.998885869979858,0.047191459685564,1.04786090217166e-017,-0.999225914478302,0.0393396019935608,8.73514638256818e-018,-0.999225914478302,0.0393396019935608,8.73514638256818e-018,-0.998885869979858,0.047191459685564,1.04786090217166e-017,-0.937211275100708,-0.346531927585602,-0.0393786244094372,0,0.94385838508606,0.330350399017334,-0.0394963920116425,0.979510545730591,0.197481960058212,-0.0393786244094372,0.937211275100708,0.346531927585602,-0.999225914478302,0.0393396019935608,8.73514638256818e-018,-0.0393786244094372,0.937211275100708,0.346531927585602,-0.0394963920116425,0.979510545730591,0.197481960058212,0,0.94385838508606,0.330350399017334,-0.0314775295555592,0.897109568119049,0.440685391426086,0,0.897554337978363,0.440903872251511,-0.0314775295555592,0.897109568119049,0.440685391426086,0,0.94385838508606,0.330350399017334,-0.0393786244094372,0.937211275100708,0.346531927585602,-0.0393786244094372,0.937211275100708,0.346531927585602,-0.999225914478302,0.0393396019935608,8.73514638256818e-018,-0.992218255996704,-0.118121221661568,-0.0393737405538559,-0.992218255996704,-0.118121221661568,-0.0393737405538559,-0.0314775295555592,0.897109568119049,0.440685391426086,-0.0393786244094372,0.937211275100708,0.346531927585602,-0.937211275100708,-0.346531927585602,-0.0393786244094372,-0.992218255996704,-0.118121221661568,-0.0393737405538559,-0.999225914478302,0.0393396019935608,8.73514638256818e-018,-0.0314775295555592,0.897109568119049,0.440685391426086,-0.992218255996704,-0.118121221661568,-0.0393737405538559,-0.99894767999649,0.0393286496400833,0.0235971882939339,-0.992218255996704,-0.118121221661568,-0.0393737405538559,-0.917936503887177,-0.36089813709259,-0.164757832884789,-0.99894767999649,0.0393286496400833,0.0235971882939339,
- -0.948298156261444,-0.300294399261475,-0.102732293307781,-0.917936503887177,-0.36089813709259,-0.164757832884789,-0.992218255996704,-0.118121221661568,-0.0393737405538559,-0.992218255996704,-0.118121221661568,-0.0393737405538559,-0.937211275100708,-0.346531927585602,-0.0393786244094372,-0.948298156261444,-0.300294399261475,-0.102732293307781,-0.948298156261444,-0.300294399261475,-0.102732293307781,-0.236161917448044,-0.873799085617065,-0.425091445446014,-0.917936503887177,-0.36089813709259,-0.164757832884789,-0.937211275100708,-0.346531927585602,-0.0393786244094372,-0.229079082608223,-0.940014123916626,-0.252776920795441,-0.948298156261444,-0.300294399261475,-0.102732293307781,-0.236161917448044,-0.873799085617065,-0.425091445446014,-0.948298156261444,-0.300294399261475,-0.102732293307781,-0.229079082608223,-0.940014123916626,-0.252776920795441,-0.229079082608223,-0.940014123916626,-0.252776920795441,-0.937211275100708,-0.346531927585602,-0.0393786244094372,-0.244763121008873,-0.963261306285858,-0.110538177192211,0,-0.965842843055725,-0.259128570556641,-0.236161917448044,-0.873799085617065,-0.425091445446014,-0.229079082608223,-0.940014123916626,-0.252776920795441,0,-0.965842843055725,-0.259128570556641,-0.229079082608223,-0.940014123916626,-0.252776920795441,-0.244763121008873,-0.963261306285858,-0.110538177192211,-0.236161917448044,-0.873799085617065,-0.425091445446014,0,-0.965842843055725,-0.259128570556641,0,-0.897554337978363,-0.440903872251511,0,-0.965842843055725,-0.259128570556641,-0.244763121008873,-0.963261306285858,-0.110538177192211,0,-0.993883728981018,-0.110431522130966,0,0.691222667694092,0.722641825675964,0,0.623731732368469,0.781638503074646,0.16545182466507,0.685443222522736,0.709079265594482,0.16545182466507,0.685443222522736,0.709079265594482,0,0.623731732368469,0.781638503074646,0.039310410618782,0.526759505271912,0.849104881286621,0,0.623731732368469,0.781638503074646,0,0.502893567085266,0.864348351955414,0.039310410618782,0.526759505271912,0.849104881286621,0,0.502893567085266,0.864348351955414,
- 0,0.418557375669479,0.908190488815308,0.039310410618782,0.526759505271912,0.849104881286621,0.039310410618782,0.526759505271912,0.849104881286621,0,0.418557375669479,0.908190488815308,0.0315734818577766,0.418348640203476,0.907737612724304,0.0315734818577766,0.418348640203476,0.907737612724304,0.99894767999649,0.0235971882939339,0.0393286496400833,0.039310410618782,0.526759505271912,0.849104881286621,0.16545182466507,0.685443222522736,0.709079265594482,0.039310410618782,0.526759505271912,0.849104881286621,0.999442577362061,0.0236088801175356,0.0236088801175356,0.999442577362061,0.0236088801175356,0.0236088801175356,0.039310410618782,0.526759505271912,0.849104881286621,0.99894767999649,0.0235971882939339,0.0393286496400833,0.999442577362061,0.0236088801175356,0.0236088801175356,0.997252345085144,-0.0628190487623215,-0.0392619036138058,0.16545182466507,0.685443222522736,0.709079265594482,0.999442577362061,0.0236088801175356,0.0236088801175356,0.99894767999649,0.0235971882939339,0.0393286496400833,0.923639535903931,-0.205253228545189,-0.323668539524078,0.997252345085144,-0.0628190487623215,-0.0392619036138058,0.999442577362061,0.0236088801175356,0.0236088801175356,0.923639535903931,-0.205253228545189,-0.323668539524078,0.923639535903931,-0.205253228545189,-0.323668539524078,0.99894767999649,0.0235971882939339,0.0393286496400833,0.919097006320953,-0.157110601663589,-0.361354380846024,0.923639535903931,-0.205253228545189,-0.323668539524078,0.947943031787872,-0.229086220264435,-0.221186697483063,0.997252345085144,-0.0628190487623215,-0.0392619036138058,0.23619119822979,-0.535366714000702,-0.810923099517822,0.923639535903931,-0.205253228545189,-0.323668539524078,0.919097006320953,-0.157110601663589,-0.361354380846024,0.23619119822979,-0.535366714000702,-0.810923099517822,0.947943031787872,-0.229086220264435,-0.221186697483063,0.923639535903931,-0.205253228545189,-0.323668539524078,0.919097006320953,-0.157110601663589,-0.361354380846024,0.236838012933731,-0.402624607086182,-0.8841952085495,0.23619119822979,-0.535366714000702,-0.810923099517822,
- 0.947943031787872,-0.229086220264435,-0.221186697483063,0.23619119822979,-0.535366714000702,-0.810923099517822,0.23683063685894,-0.671020090579987,-0.702597558498383,0,-0.418557375669479,-0.908190488815308,0.23619119822979,-0.535366714000702,-0.810923099517822,0.236838012933731,-0.402624607086182,-0.8841952085495,0.23619119822979,-0.535366714000702,-0.810923099517822,0,-0.691222667694092,-0.722641825675964,0.23683063685894,-0.671020090579987,-0.702597558498383,0.23619119822979,-0.535366714000702,-0.810923099517822,0,-0.418557375669479,-0.908190488815308,0,-0.551061511039734,-0.834464609622955,0,-0.691222667694092,-0.722641825675964,0.23619119822979,-0.535366714000702,-0.810923099517822,0,-0.551061511039734,-0.834464609622955,0.039243757724762,0.690690159797668,0.722085177898407,0,0.770793914794922,0.637084722518921,0,0.691222667694092,0.722641825675964,0,0.770793914794922,0.637084722518921,0.039243757724762,0.690690159797668,0.722085177898407,0.157382771372795,0.747568130493164,0.645269334316254,0.157382771372795,0.747568130493164,0.645269334316254,0.039243757724762,0.690690159797668,0.722085177898407,0.996515274047852,-0.0549260377883911,-0.0627726167440414,0,0.770793914794922,0.637084722518921,0.157382771372795,0.747568130493164,0.645269334316254,0.0394079722464085,0.84333062171936,0.535948395729065,0,0.770793914794922,0.637084722518921,0.0394079722464085,0.84333062171936,0.535948395729065,0,0.858880341053009,0.512176334857941,0.0394079722464085,0.84333062171936,0.535948395729065,0,0.897554337978363,0.440903872251511,0,0.858880341053009,0.512176334857941,0,0.897554337978363,0.440903872251511,0.0394079722464085,0.84333062171936,0.535948395729065,0.0314775295555592,0.897109568119049,0.440685391426086,0.0394079722464085,0.84333062171936,0.535948395729065,0.99894767999649,0.0393286496400833,0.0235971882939339,0.0314775295555592,0.897109568119049,0.440685391426086,0.0394079722464085,0.84333062171936,0.535948395729065,0.157382771372795,0.747568130493164,0.645269334316254,0.995340168476105,-0.0789952501654625,-0.0552966743707657,
- 0.99894767999649,0.0393286496400833,0.0235971882939339,0.0394079722464085,0.84333062171936,0.535948395729065,0.995340168476105,-0.0789952501654625,-0.0552966743707657,0.996515274047852,-0.0549260377883911,-0.0627726167440414,0.995340168476105,-0.0789952501654625,-0.0552966743707657,0.157382771372795,0.747568130493164,0.645269334316254,0.995340168476105,-0.0789952501654625,-0.0552966743707657,0.920518219470978,-0.354045480489731,-0.165221214294434,0.99894767999649,0.0393286496400833,0.0235971882939339,0.995340168476105,-0.0789952501654625,-0.0552966743707657,0.996515274047852,-0.0549260377883911,-0.0627726167440414,0.947588264942169,-0.244793638586998,-0.20531077682972,0.920518219470978,-0.354045480489731,-0.165221214294434,0.995340168476105,-0.0789952501654625,-0.0552966743707657,0.947588264942169,-0.244793638586998,-0.20531077682972,0.947588264942169,-0.244793638586998,-0.20531077682972,0.996515274047852,-0.0549260377883911,-0.0627726167440414,0.947943031787872,-0.229086220264435,-0.221186697483063,0.23683063685894,-0.671020090579987,-0.702597558498383,0.947588264942169,-0.244793638586998,-0.20531077682972,0.947943031787872,-0.229086220264435,-0.221186697483063,0.243536457419395,-0.793457508087158,-0.557777047157288,0.920518219470978,-0.354045480489731,-0.165221214294434,0.947588264942169,-0.244793638586998,-0.20531077682972,0.947588264942169,-0.244793638586998,-0.20531077682972,0.23683063685894,-0.671020090579987,-0.702597558498383,0.243536457419395,-0.793457508087158,-0.557777047157288,0.920518219470978,-0.354045480489731,-0.165221214294434,0.243536457419395,-0.793457508087158,-0.557777047157288,0.236161917448044,-0.873799085617065,-0.425091445446014,0.243536457419395,-0.793457508087158,-0.557777047157288,0,-0.897554337978363,-0.440903872251511,0.236161917448044,-0.873799085617065,-0.425091445446014,0,-0.897554337978363,-0.440903872251511,0.243536457419395,-0.793457508087158,-0.557777047157288,0,-0.801882803440094,-0.597481369972229,0.23683063685894,-0.671020090579987,-0.702597558498383,0,-0.801882803440094,-0.597481369972229,
- 0.243536457419395,-0.793457508087158,-0.557777047157288,0.23683063685894,-0.671020090579987,-0.702597558498383,0,-0.691222667694092,-0.722641825675964,0,-0.801882803440094,-0.597481369972229,0,0.691222667694092,0.722641825675964,-0.16545182466507,0.685443222522736,0.709079265594482,0,0.623731732368469,0.781638503074646,0,0.623731732368469,0.781638503074646,-0.16545182466507,0.685443222522736,0.709079265594482,-0.039310410618782,0.526759505271912,0.849104881286621,0,0.623731732368469,0.781638503074646,-0.039310410618782,0.526759505271912,0.849104881286621,0,0.502893567085266,0.864348351955414,0,0.502893567085266,0.864348351955414,-0.039310410618782,0.526759505271912,0.849104881286621,0,0.418557375669479,0.908190488815308,-0.039310410618782,0.526759505271912,0.849104881286621,-0.0315734818577766,0.418348640203476,0.907737612724304,0,0.418557375669479,0.908190488815308,-0.0315734818577766,0.418348640203476,0.907737612724304,-0.039310410618782,0.526759505271912,0.849104881286621,-0.99894767999649,0.0235971882939339,0.0393286496400833,-0.039310410618782,0.526759505271912,0.849104881286621,-0.16545182466507,0.685443222522736,0.709079265594482,-0.999442577362061,0.0236088801175356,0.0236088801175356,-0.999442577362061,0.0236088801175356,0.0236088801175356,-0.99894767999649,0.0235971882939339,0.0393286496400833,-0.039310410618782,0.526759505271912,0.849104881286621,-0.997252345085144,-0.0628190487623215,-0.0392619036138058,-0.999442577362061,0.0236088801175356,0.0236088801175356,-0.16545182466507,0.685443222522736,0.709079265594482,-0.923639535903931,-0.205253228545189,-0.323668539524078,-0.99894767999649,0.0235971882939339,0.0393286496400833,-0.999442577362061,0.0236088801175356,0.0236088801175356,-0.999442577362061,0.0236088801175356,0.0236088801175356,-0.997252345085144,-0.0628190487623215,-0.0392619036138058,-0.923639535903931,-0.205253228545189,-0.323668539524078,-0.99894767999649,0.0235971882939339,0.0393286496400833,-0.923639535903931,-0.205253228545189,-0.323668539524078,-0.69045627117157,-0.298151582479477,-0.659071862697601,
- -0.947943031787872,-0.229086220264435,-0.221186697483063,-0.923639535903931,-0.205253228545189,-0.323668539524078,-0.997252345085144,-0.0628190487623215,-0.0392619036138058,-0.923639535903931,-0.205253228545189,-0.323668539524078,-0.23619119822979,-0.535366714000702,-0.810923099517822,-0.69045627117157,-0.298151582479477,-0.659071862697601,-0.947943031787872,-0.229086220264435,-0.221186697483063,-0.23619119822979,-0.535366714000702,-0.810923099517822,-0.923639535903931,-0.205253228545189,-0.323668539524078,-0.23619119822979,-0.535366714000702,-0.810923099517822,0,-0.418557375669479,-0.908190488815308,-0.69045627117157,-0.298151582479477,-0.659071862697601,-0.23619119822979,-0.535366714000702,-0.810923099517822,-0.947943031787872,-0.229086220264435,-0.221186697483063,-0.23683063685894,-0.671020090579987,-0.702597558498383,0,-0.418557375669479,-0.908190488815308,-0.23619119822979,-0.535366714000702,-0.810923099517822,0,-0.551061511039734,-0.834464609622955,0,-0.691222667694092,-0.722641825675964,-0.23619119822979,-0.535366714000702,-0.810923099517822,-0.23683063685894,-0.671020090579987,-0.702597558498383,-0.23619119822979,-0.535366714000702,-0.810923099517822,0,-0.691222667694092,-0.722641825675964,0,-0.551061511039734,-0.834464609622955,0,0.770793914794922,0.637084722518921,-0.039243757724762,0.690690159797668,0.722085177898407,0,0.691222667694092,0.722641825675964,-0.039243757724762,0.690690159797668,0.722085177898407,0,0.770793914794922,0.637084722518921,-0.157382771372795,0.747568130493164,0.645269334316254,-0.157382771372795,0.747568130493164,0.645269334316254,-0.996515274047852,-0.0549260377883911,-0.0627726167440414,-0.039243757724762,0.690690159797668,0.722085177898407,0,0.770793914794922,0.637084722518921,-0.0394079722464085,0.84333062171936,0.535948395729065,-0.157382771372795,0.747568130493164,0.645269334316254,-0.0394079722464085,0.84333062171936,0.535948395729065,0,0.770793914794922,0.637084722518921,0,0.858880341053009,0.512176334857941,-0.0394079722464085,0.84333062171936,0.535948395729065,0,0.858880341053009,0.512176334857941,
- 0,0.897554337978363,0.440903872251511,-0.0394079722464085,0.84333062171936,0.535948395729065,0,0.897554337978363,0.440903872251511,-0.0314775295555592,0.897109568119049,0.440685391426086,-0.99894767999649,0.0393286496400833,0.0235971882939339,-0.0394079722464085,0.84333062171936,0.535948395729065,-0.0314775295555592,0.897109568119049,0.440685391426086,-0.157382771372795,0.747568130493164,0.645269334316254,-0.0394079722464085,0.84333062171936,0.535948395729065,-0.995340168476105,-0.0789952501654625,-0.0552966743707657,-0.0394079722464085,0.84333062171936,0.535948395729065,-0.99894767999649,0.0393286496400833,0.0235971882939339,-0.995340168476105,-0.0789952501654625,-0.0552966743707657,-0.995340168476105,-0.0789952501654625,-0.0552966743707657,-0.996515274047852,-0.0549260377883911,-0.0627726167440414,-0.157382771372795,0.747568130493164,0.645269334316254,-0.920518219470978,-0.354045480489731,-0.165221214294434,-0.995340168476105,-0.0789952501654625,-0.0552966743707657,-0.99894767999649,0.0393286496400833,0.0235971882939339,-0.947588264942169,-0.244793638586998,-0.20531077682972,-0.996515274047852,-0.0549260377883911,-0.0627726167440414,-0.995340168476105,-0.0789952501654625,-0.0552966743707657,-0.995340168476105,-0.0789952501654625,-0.0552966743707657,-0.920518219470978,-0.354045480489731,-0.165221214294434,-0.947588264942169,-0.244793638586998,-0.20531077682972,-0.947588264942169,-0.244793638586998,-0.20531077682972,-0.947943031787872,-0.229086220264435,-0.221186697483063,-0.996515274047852,-0.0549260377883911,-0.0627726167440414,-0.947588264942169,-0.244793638586998,-0.20531077682972,-0.23683063685894,-0.671020090579987,-0.702597558498383,-0.947943031787872,-0.229086220264435,-0.221186697483063,-0.920518219470978,-0.354045480489731,-0.165221214294434,-0.243536457419395,-0.793457508087158,-0.557777047157288,-0.947588264942169,-0.244793638586998,-0.20531077682972,-0.23683063685894,-0.671020090579987,-0.702597558498383,-0.947588264942169,-0.244793638586998,-0.20531077682972,-0.243536457419395,-0.793457508087158,-0.557777047157288,
- -0.243536457419395,-0.793457508087158,-0.557777047157288,-0.920518219470978,-0.354045480489731,-0.165221214294434,-0.236161917448044,-0.873799085617065,-0.425091445446014,0,-0.897554337978363,-0.440903872251511,-0.243536457419395,-0.793457508087158,-0.557777047157288,-0.236161917448044,-0.873799085617065,-0.425091445446014,-0.243536457419395,-0.793457508087158,-0.557777047157288,0,-0.897554337978363,-0.440903872251511,0,-0.801882803440094,-0.597481369972229,0,-0.801882803440094,-0.597481369972229,-0.23683063685894,-0.671020090579987,-0.702597558498383,-0.243536457419395,-0.793457508087158,-0.557777047157288,-0.23683063685894,-0.671020090579987,-0.702597558498383,0,-0.801882803440094,-0.597481369972229,0,-0.691222667694092,-0.722641825675964
- }
- NormalsW: *546 {
- 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
- }
- }
- LayerElementBinormal: 0 {
- Version: 102
- Name: "UVmap_0"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *1638 {
- a: 0,1,-0.000164183744345792,0,1,-0.000164183744345792,0,1,-0.000164183744345792,0,0.999999940395355,-0.000326684501487762,0,0.999999940395355,-0.000326684501487762,0,0.999999940395355,-0.000326684501487762,-0,1,0.000200366921490058,-0,1,0.000200366921490058,-0,1,0.000200366921490058,0,0.999999642372131,-0.000828020158223808,0,0.999999642372131,-0.000828020158223808,0,0.999999642372131,-0.000828020158223808,0,1,-2.72681609203573e-005,0,1,-2.72681609203573e-005,0,1,-2.72681609203573e-005,-0,1,4.99067173223011e-005,-0,1,4.99067173223011e-005,-0,1,4.99067173223011e-005,-0,1,-0.000164183744345792,-0,1,-0.000164183744345792,-0,1,-0.000164183744345792,-0,0.999999940395355,-0.000326684501487762,-0,0.999999940395355,-0.000326684501487762,-0,0.999999940395355,-0.000326684501487762,0,1,0.000200366921490058,0,1,0.000200366921490058,0,1,0.000200366921490058,-0,0.999999642372131,-0.000828020158223808,-0,0.999999642372131,-0.000828020158223808,-0,0.999999642372131,-0.000828020158223808,-0,1,-2.72681609203573e-005,-0,1,-2.72681609203573e-005,-0,1,-2.72681609203573e-005,0,1,4.99067173223011e-005,0,1,4.99067173223011e-005,0,1,4.99067173223011e-005,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0.0294199902564287,0.999567151069641,2.21948493155298e-016,0.0294199902564287,0.999567151069641,2.21948493155298e-016,0.0294199902564287,0.999567151069641,2.21948493155298e-016,-0.0294248573482037,0.999566972255707,2.21948453450628e-016,-0.0294248573482037,0.999566972255707,2.21948453450628e-016,-0.0294248573482037,0.999566972255707,2.21948453450628e-016,0,0.999969005584717,0.00787377171218395,0,0.999969005584717,0.00787377171218395,0,0.999969005584717,0.00787377171218395,0,0.999969005584717,0.00787377171218395,0,0.999969005584717,0.00787377171218395,0,0.999969005584717,0.00787377171218395,0,0.999969005584717,0.00787377171218395,0,0.999969005584717,0.00787377171218395,
- 0,0.999969005584717,0.00787377171218395,-0.0388730689883232,0.99921327829361,0.00786782149225473,-0.0388730689883232,0.99921327829361,0.00786782149225473,-0.0388730689883232,0.99921327829361,0.00786782149225473,0.0388698540627956,0.999213397502899,0.00786782242357731,0.0388698540627956,0.999213397502899,0.00786782242357731,0.0388698540627956,0.999213397502899,0.00786782242357731,-0.545900583267212,0.688969016075134,0.476774960756302,-0.545900583267212,0.688969016075134,0.476774960756302,-0.545900583267212,0.688969016075134,0.476774960756302,-0.545900523662567,0.688969135284424,0.476774752140045,-0.545900523662567,0.688969135284424,0.476774752140045,-0.545900523662567,0.688969135284424,0.476774752140045,0.545900583267212,0.688969016075134,0.476774960756302,0.545900583267212,0.688969016075134,0.476774960756302,0.545900583267212,0.688969016075134,0.476774960756302,0.545900523662567,0.688969135284424,0.476774752140045,0.545900523662567,0.688969135284424,0.476774752140045,0.545900523662567,0.688969135284424,0.476774752140045,0.909119009971619,0.342520475387573,0.237028330564499,0.909119009971619,0.342520475387573,0.237028330564499,0.909119009971619,0.342520475387573,0.237028330564499,0.909119009971619,0.342520534992218,0.237028241157532,0.909119009971619,0.342520534992218,0.237028241157532,0.909119009971619,0.342520534992218,0.237028241157532,-0.909119009971619,0.342520534992218,0.237028241157532,-0.909119009971619,0.342520534992218,0.237028241157532,-0.909119009971619,0.342520534992218,0.237028241157532,-0.909119009971619,0.342520475387573,0.237028330564499,-0.909119009971619,0.342520475387573,0.237028330564499,-0.909119009971619,0.342520475387573,0.237028330564499,-0.0742271915078163,0.401363849639893,0.912906050682068,-0.0742271915078163,0.401363849639893,0.912906050682068,-0.0742271915078163,0.401363849639893,0.912906050682068,0,0.402474135160446,0.915431380271912,0,0.402474135160446,0.915431380271912,0,0.402474135160446,0.915431380271912,0.00210890802554786,0.402473241090775,0.915429353713989,0.00210890802554786,0.402473241090775,0.915429353713989,
- 0.00210890802554786,0.402473241090775,0.915429353713989,0.0736481919884682,0.401381134986877,0.912945330142975,0.0736481919884682,0.401381134986877,0.912945330142975,0.0736481919884682,0.401381134986877,0.912945330142975,0,0.402474135160446,0.915431380271912,0,0.402474135160446,0.915431380271912,0,0.402474135160446,0.915431380271912,-0.000732248125132173,0.402474045753479,0.915431141853333,-0.000732248125132173,0.402474045753479,0.915431141853333,-0.000732248125132173,0.402474045753479,0.915431141853333,0,0.402474135160446,0.915431380271912,0,0.402474135160446,0.915431380271912,0,0.402474135160446,0.915431380271912,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,-0.00182319269515574,0.999998331069946,2.22044234348117e-016,-0.00182319269515574,0.999998331069946,2.22044234348117e-016,-0.00182319269515574,0.999998331069946,2.22044234348117e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,-0.112974092364311,0.99359792470932,2.20623058646412e-016,-0.112974092364311,0.99359792470932,2.20623058646412e-016,-0.112974092364311,0.99359792470932,2.20623058646412e-016,-0,1,2.22044604925031e-016,-0,1,2.22044604925031e-016,-0,1,2.22044604925031e-016,0.00124680995941162,0.999999225139618,2.22044432871464e-016,0.00124680995941162,0.999999225139618,2.22044432871464e-016,0.00124680995941162,0.999999225139618,2.22044432871464e-016,-0,1,2.22044604925031e-016,-0,1,2.22044604925031e-016,-0,1,2.22044604925031e-016,0.113553173840046,0.993531942367554,2.20608407623402e-016,0.113553173840046,0.993531942367554,2.20608407623402e-016,0.113553173840046,0.993531942367554,2.20608407623402e-016,-0.999999344348907,0.000183770840521902,-0.00109387410338968,-0.999501407146454,0.0314804501831532,0.00242071831598878,-0.999999403953552,0.000113672089355532,-0.0011017449432984,-0.999498665332794,0.0311394017189741,0.00572538236156106,-0.999998569488525,-0.000284917769022286,0.00169593910686672,-0.999219119548798,0.0389352962374687,0.00672475527971983,-0.999206483364105,0.0397332832217216,0.00276420870795846,
- -0.0467251800000668,0.98901629447937,0.140226870775223,-0.999500393867493,0.0315646752715111,0.00160407216753811,-0.999999642372131,0.000276249571470544,-0.00078928453149274,-0.999218881130219,0.038461972028017,0.00907239131629467,-0.999999761581421,0.000138572780997492,-0.000824838003609329,-0.046760305762291,0.989759743213654,0.134867131710052,-0.999218583106995,0.0390227288007736,0.00629095314070582,-0.0389799810945988,0.990091562271118,0.134904757142067,-0.038983728736639,0.990186750888824,0.13420295715332,0.348697990179062,0.928880572319031,0.124862797558308,-0.0467647165060043,0.989853084087372,0.134178578853607,-0.999995708465576,-0.000974159105680883,0.00278331222943962,-0.999224364757538,0.0368574596941471,0.0138655453920364,-0.999199509620667,0.0374592915177345,0.0140418037772179,-0.999182343482971,0.0370065569877625,0.016283942386508,-0.99922126531601,0.0360646396875381,0.0160094071179628,-0.0377658605575562,0.959252953529358,0.280013620853424,-0.999500393867493,0.0295232348144054,0.0112920189276338,-0.999999225139618,0.000429543084464967,-0.00122726615518332,-0.999999165534973,0.000572624616324902,-0.00116570014506578,-0.999997854232788,0.000694688817020506,-0.00198482535779476,-0.999497830867767,0.0298579204827547,0.0106105087324977,-0.999224424362183,0.0369313172996044,0.0136657934635878,0.124439366161823,0.951464176177979,0.28147953748703,-0.0377291105687618,0.958319425582886,0.283196896314621,-0.99921441078186,0.0384818390011787,0.00947121530771255,-0.999224424362183,0.0369313172996044,0.0136657934635878,-0.999497830867767,0.0298579204827547,0.0106105087324977,0.124055825173855,0.910856246948242,0.39363831281662,0.34577801823616,0.908511400222778,0.234615921974182,-0.0380545854568481,0.966586410999298,0.253500580787659,0.12423749268055,0.960172653198242,0.250266790390015,-0.0456908419728279,0.89809787273407,0.437415808439255,0.12351967394352,0.893990099430084,0.430725604295731,-0.999197125434875,0.0173102281987667,0.0361325480043888,0.123274505138397,0.887505054473877,0.444002389907837,-0.045720998197794,0.894601345062256,0.444520086050034,
- 0.396452963352203,0.819013178348541,0.414780348539352,0.316918581724167,0.878473281860352,0.357557564973831,0.124258629977703,0.919283211231232,0.373467743396759,0.396440714597702,0.850217461585999,0.34635978937149,0.347729295492172,0.919776976108551,0.18191947042942,0.123530596494675,0.97349089384079,0.192498490214348,0.314804881811142,0.931119978427887,0.184156149625778,0.971611261367798,0.218696758151054,0.0902407094836235,0.316900104284287,0.878075659275055,0.358549118041992,0.396453261375427,0.849894881248474,0.347136288881302,0.973202466964722,0.226508483290672,0.0396363697946072,0.347507059574127,0.918296456336975,0.189659148454666,0.315128147602081,0.929374754428864,0.192241623997688,0.317135035991669,0.883810937404633,0.34395307302475,0.971544027328491,0.220503762364388,0.0864889621734619,0.973089575767517,0.214508593082428,0.0841586217284203,0.348302930593491,0.924199223518372,0.156655043363571,0.973098158836365,0.227700099349022,0.0351104885339737,0.969536960124969,0.242045596241951,0.037577323615551,0.971544623374939,0.220490649342537,0.0865162014961243,0.999999821186066,-0.000154380744788796,0.000575419166125357,0.973089039325714,0.214501649141312,0.0841839835047722,0.999993026256561,0.000966227729804814,-0.00360139436088502,0.969536542892456,0.242040723562241,0.0376188643276691,0.97309935092926,0.22768759727478,0.035158097743988,0.971613049507141,0.218640208244324,0.0903579443693161,0.999999403953552,-0.00047320217709057,0.000963304424658418,0.999999403953552,-0.000279642175883055,0.00104230269789696,0.969488620758057,0.241552874445915,0.0417640618979931,0.999995708465576,-0.000760720286052674,0.00283541181124747,0.999995708465576,-0.000322879524901509,0.00290591572411358,0.999501407146454,0.0314804688096046,0.0024205376394093,0.999999344348907,0.000183800992090255,-0.00109405361581594,0.999999403953552,0.000113690737634897,-0.00110192561987787,0.999998569488525,-0.000284899346297607,0.00169582944363356,0.999498665332794,0.031139412894845,0.00572527619078755,0.999219119548798,0.0389353185892105,0.00672465236857533,
- 0.0467251800000668,0.98901629447937,0.140227019786835,0.999206483364105,0.0397333055734634,0.00276410160586238,0.999500393867493,0.031564686447382,0.00160396308638155,0.999218881130219,0.0384619757533073,0.00907237827777863,0.999999642372131,0.000276253966148943,-0.000789297104347497,0.999999761581421,0.000138574992888607,-0.000824851158540696,0.999218583106995,0.0390227325260639,0.00629094708710909,0.046760305762291,0.989759743213654,0.134867146611214,0.0389799810945988,0.990091562271118,0.134904757142067,0.0389837250113487,0.99018657207489,0.13420432806015,0.0467647090554237,0.989852905273438,0.134179964661598,-0.348697990179062,0.928880333900452,0.124864153563976,0.999995708465576,-0.000974193215370178,0.00278340955264866,0.999199509620667,0.037459272891283,0.0140418959781528,0.999224364757538,0.0368574261665344,0.0138656329363585,0.0377658642828465,0.959253013134003,0.28001344203949,0.99922126531601,0.0360646210610867,0.0160094611346722,0.999182343482971,0.0370065458118916,0.0162840001285076,0.999999225139618,0.000429491716204211,-0.00122711935546249,0.999500393867493,0.0295231658965349,0.0112921576946974,0.999999165534973,0.000572556105908006,-0.00116556067951024,0.999497830867767,0.0298579316586256,0.0106104854494333,0.999997854232788,0.000694700749590993,-0.00198485935106874,0.999224424362183,0.0369313284754753,0.013665771111846,0.99921441078186,0.038482628762722,0.00946906674653292,0.0377290956676006,0.958319067955017,0.283198058605194,-0.124439373612404,0.951463758945465,0.281481057405472,-0.124055832624435,0.910856127738953,0.393638581037521,0.999497830867767,0.0298579316586256,0.0106104854494333,0.999224424362183,0.0369313284754753,0.013665771111846,-0.345776379108429,0.908502817153931,0.234651803970337,-0.124237813055515,0.960163414478302,0.250302493572235,0.0380542315542698,0.966577470302582,0.253535181283951,0.999196827411652,0.0173057243227959,0.0361416935920715,-0.123519919812679,0.893996834754944,0.430711656808853,0.0456907860934734,0.898103952407837,0.437403410673141,-0.123274795711041,0.887512385845184,0.443987727165222,
- -0.39645317196846,0.81902140378952,0.414763569831848,0.0457209497690201,0.894607722759247,0.444507211446762,-0.316918730735779,0.878476619720459,0.357549101114273,-0.39644056558609,0.850220918655396,0.346351444721222,-0.124258704483509,0.919286668300629,0.373459488153458,-0.123532652854919,0.973465085029602,0.192627564072609,-0.34772577881813,0.919752717018127,0.182048916816711,-0.314810246229172,0.931092619895935,0.184285432100296,-0.316900283098221,0.878079175949097,0.358540534973145,-0.971611261367798,0.218698844313622,0.0902364328503609,-0.396453082561493,0.849898397922516,0.347127795219421,-0.347510665655136,0.918319702148438,0.189539864659309,-0.973203301429749,0.22649772465229,0.0396771319210529,-0.315123409032822,0.929401755332947,0.192118674516678,-0.971540927886963,0.220576375722885,0.086337998509407,-0.317136257886887,0.883846521377563,0.343860328197479,-0.973093867301941,0.214553162455559,0.0839968249201775,-0.973108112812042,0.227596387267113,0.0355052314698696,-0.348282665014267,0.924019157886505,0.157758682966232,-0.96953284740448,0.241996303200722,0.037997767329216,-0.999999940395355,-8.38226042105816e-005,0.000312429707264528,-0.971542119979858,0.220548957586288,0.0863949954509735,-0.973092377185822,0.214538440108299,0.0840501934289932,-0.999994158744812,0.000887411239091307,-0.00330762355588377,-0.973110377788544,0.227572679519653,0.0355954058468342,-0.969532072544098,0.24198716878891,0.0380756370723248,-0.971612572669983,0.21865451335907,0.0903282836079597,-0.999999523162842,-0.000270807417109609,0.00100937311071903,-0.999999523162842,-0.000458252179669216,0.000932870549149811,-0.999995589256287,-0.000769275240600109,0.00286729889921844,-0.969488084316254,0.241549104452133,0.0417957045137882,-0.999995708465576,-0.000326510635204613,0.00293859583325684,-0.999999046325684,0.000991796492598951,-0.000948674918618053,-0.999999165534973,0.00107343134004623,-0.00085657654562965,-0.986201286315918,0.11082099378109,0.122986666858196,-0.986038386821747,0.101254880428314,0.13219590485096,-0.999995589256287,-0.00233101635240018,0.0018601039191708,
- -0.999225795269012,0.0220670197159052,0.0325707271695137,-0.999999284744263,0.000967717147432268,-0.000772218743804842,-0.999999225139618,0.00107073702383786,-0.000622974243015051,-0.999222159385681,0.0234080106019974,0.0317386500537395,-0.999999761581421,0.000592601194512099,-0.000344786123605445,-0.999999761581421,0.000621898681856692,-0.000286614202195778,-0.999223113059998,0.0183353275060654,0.0348856337368488,-0.999215662479401,0.0166692137718201,0.0359188988804817,-0.999998927116394,-0.00138941511977464,0.000640339218080044,-0.999501526355743,0.0130093861371279,0.0287696402519941,-0.999499440193176,0.0150259081274271,0.0278402157127857,-0.0457730814814568,0.45875757932663,0.887381732463837,-0.99922388792038,0.0185871087014675,0.0347294732928276,-0.98590087890625,0.0967285931110382,0.136539235711098,-0.999201953411102,0.0147011857479811,0.0371391698718071,-0.0332307703793049,0.63484400510788,0.771925389766693,-0.0293423160910606,0.283691465854645,0.958466589450836,-0.998054504394531,0.0618527755141258,0.00783459842205048,-0.0444214381277561,0.284361928701401,0.957687318325043,-0.0331542938947678,0.61824893951416,0.785282790660858,0.0697214752435684,0.61682403087616,0.78400707244873,-0.986125588417053,0.105144321918488,0.128456443548203,-0.0319803766906261,0.473765820264816,0.880070090293884,-0.0458150021731853,0.473492413759232,0.879605531692505,0.38244640827179,0.438509851694107,0.81329208612442,0.0697858035564423,0.618845283985138,0.78240692615509,-0.0331647917628288,0.62036144733429,0.783614635467529,0.381541639566422,0.572367310523987,0.725824892520905,0.38231760263443,0.434162199497223,0.815681576728821,-0.0458002686500549,0.46779853105545,0.882647633552551,0.392991065979004,0.432095855474472,0.811696529388428,0.381122469902039,0.581006050109863,0.71915066242218,0.316259115934372,0.59612774848938,0.737978279590607,0.0700309723615646,0.626648366451263,0.776149272918701,0.971653580665588,0.121400907635689,0.202857732772827,0.382213413715363,0.430850327014923,0.817484498023987,0.393091946840286,0.428882896900177,0.813349962234497,
- 0.97155487537384,0.144859567284584,0.187341690063477,0.316546440124512,0.602260649204254,0.732857763767242,0.380823254585266,0.586628079414368,0.714731574058533,0.393236815929413,0.423938184976578,0.815868377685547,0.971431493759155,0.112301968038082,0.20906737446785,0.971483170986176,0.112204842269421,0.2088792771101,0.316881597042084,0.609979033470154,0.726300001144409,0.971363425254822,0.15226423740387,0.182397425174713,0.971428990364075,0.152091547846794,0.182192012667656,0.999994456768036,0.00302045536227524,-0.00139203609433025,0.971483469009399,0.112214274704456,0.208873152732849,0.971431314945221,0.112312510609627,0.209062516689301,0.971362888813019,0.152280300855637,0.182386666536331,0.99999988079071,-0.000271622411673889,0.000259812746662647,0.971429347991943,0.152105882763863,0.182178422808647,0.971405029296875,0.10929998755455,0.210774287581444,0.99999874830246,-0.00144239736255258,0.000664757040794939,0.999998807907104,-0.00132992316503078,0.000878251157701015,0.999996781349182,-0.00183825811836869,0.00175833399407566,0.971478223800659,0.148192584514618,0.185118943452835,0.999996781349182,-0.00212732097133994,0.00140483456198126,-0.999224901199341,0.0293759666383266,0.0262069515883923,-0.999999105930328,0.000837724539451301,-0.00101354334037751,-0.999999165534973,0.000948828470427543,-0.000907575129531324,-0.999999761581421,0.000433805165812373,-0.000524850736837834,-0.999225497245789,0.0292266979813576,0.0263497624546289,-0.987523019313812,0.115578554570675,0.106957294046879,0.986659526824951,-0.0914838239550591,-0.134661331772804,0.998898267745972,-0.00850509665906429,-0.0461526364088058,-0.0833626836538315,-0.68125182390213,-0.727287232875824,-0.999997735023499,-0.00136713788378984,0.00165406812448055,-0.987500727176666,0.124786257743835,0.0962843969464302,-0.999209642410278,0.0304630007594824,0.0255368687212467,-0.999999761581421,0.000453513959655538,-0.000548695912584662,-0.999222636222839,0.0326581597328186,0.0220836792141199,-0.999999761581421,0.000364504900062457,-0.000611246679909527,-0.999213755130768,0.0355897694826126,0.0174700543284416,
- -0.999999046325684,0.000607609283179045,-0.00123691896442324,-0.999999046325684,0.00070618063909933,-0.00118421064689755,-0.999997437000275,0.00100245128851384,-0.00204070447944105,-0.999210476875305,0.035972598940134,0.0168674178421497,-0.999503970146179,0.0287129282951355,0.0129418233409524,-0.999201834201813,0.0367686785757542,0.0156141277402639,-0.045828178524971,0.876433789730072,0.479336619377136,-0.999501168727875,0.0293852705508471,0.011572927236557,-0.999193012714386,0.0290913283824921,0.0276940148323774,-0.987518072128296,0.123255386948586,0.0980621948838234,0.0963799357414246,0.797303378582001,0.595834195613861,-0.0458280630409718,0.876465082168579,0.479279458522797,-0.999199628829956,0.0369429215788841,0.0153397899121046,0.0958516076207161,0.873056530952454,0.478105396032333,0.0828497037291527,0.738903164863586,0.668698787689209,0.095683827996254,0.738125801086426,0.667843461036682,-0.987461686134338,0.111021488904953,0.112221859395504,0.0958215370774269,0.874413251876831,0.475625872612,0.390100210905075,0.809460878372192,0.438856452703476,-0.045825008302927,0.877247750759125,0.477845668792725,0.0960213989019394,0.759514927864075,0.643363893032074,0.0824903547763824,0.760434746742249,0.644153952598572,0.319490849971771,0.723138749599457,0.612369239330292,0.388043999671936,0.779265105724335,0.492105513811111,0.0963215827941895,0.841210126876831,0.532059967517853,0.316901326179504,0.801843464374542,0.506577372550964,0.319040417671204,0.690771460533142,0.64888209104538,0.0830097794532776,0.72671765089035,0.681902408599854,0.318413078784943,0.690926313400269,0.649025499820709,0.971489727497101,0.171686768531799,0.16349795460701,0.319037795066834,0.690666854381561,0.648994743824005,0.318413764238358,0.690820634365082,0.649137616157532,0.969810962677002,0.206640809774399,0.129484757781029,0.388150215148926,0.780483245849609,0.490087181329727,0.316795200109482,0.803250908851624,0.504409551620483,0.319401860237122,0.710388481616974,0.627160847187042,0.971335291862488,0.178773358464241,0.156677782535553,0.969559907913208,0.184123620390892,0.161406636238098,
- 0.389497518539429,0.798442661762238,0.459108978509903,0.969672739505768,0.211410030722618,0.122640006244183,0.971568703651428,0.20477606356144,0.11883182823658,0.969671785831451,0.211437597870827,0.12260040640831,0.999999165534973,-0.000567395007237792,0.00115505408030003,0.971569418907166,0.204793721437454,0.118795923888683,0.999990105628967,-0.00197149044834077,0.00401339121162891,0.969754934310913,0.208865240216255,0.126295983791351,0.999989926815033,-0.00268265116028488,0.00360039970837533,0.97133731842041,0.178701639175415,0.156746968626976,0.999999403953552,0.000692091532982886,-0.000928859575651586,0.969557166099548,0.184060543775558,0.161495164036751,0.971424341201782,0.175227656960487,0.160094141960144,0.999999940395355,0.000398975447751582,-0.000381628720788285,0.99999988079071,0.000330901966663077,-0.000444105215137824,0.999999046325684,0.000991835724562407,-0.000948712520767003,0.986201345920563,0.110821045935154,0.122986637055874,0.999999165534973,0.00107347394805402,-0.000856610538903624,0.999995589256287,-0.00233147176913917,0.00186046736780554,0.986038446426392,0.101254403591156,0.132196381688118,0.999225795269012,0.0220665019005537,0.0325710475444794,0.999999284744263,0.000967720989137888,-0.00077222177060321,0.999222159385681,0.0234080143272877,0.0317386463284492,0.999999225139618,0.00107074121478945,-0.000622976629529148,0.999999761581421,0.000592565862461925,-0.000344765576301143,0.999223113059998,0.0183352939784527,0.0348856560885906,0.999999761581421,0.000621861661784351,-0.000286597147351131,0.99921578168869,0.016669811680913,0.0359185300767422,0.999501407146454,0.0130100138485432,0.0287693478167057,0.999998927116394,-0.00138880463782698,0.000640057842247188,0.999499559402466,0.0150265637785196,0.0278399176895618,0.999223947525024,0.0185877308249474,0.0347290895879269,0.0457730852067471,0.458758860826492,0.887381076812744,0.999202013015747,0.0146999536082149,0.0371399372816086,0.98590087890625,0.0967274010181427,0.136540398001671,0.0332307666540146,0.634842455387115,0.771926641464233,0.0293424651026726,0.283700466156006,0.958463907241821,
- 0.0444215461611748,0.284371018409729,0.957684636116028,0.998054265975952,0.0618584342300892,0.00783108081668615,-0.069721482694149,0.616824209690094,0.784006893634796,0.0331542938947678,0.618249118328094,0.785282611846924,0.986125588417053,0.105144388973713,0.128456398844719,-0.38244640827179,0.438509851694107,0.81329208612442,0.0458150021731853,0.473492413759232,0.879605531692505,0.0319803766906261,0.473765820264816,0.880070090293884,0.0331647917628288,0.620361626148224,0.78361451625824,-0.0697858110070229,0.618845462799072,0.782406806945801,-0.381541579961777,0.572367429733276,0.72582471370697,0.0457982942461967,0.467085242271423,0.883025467395782,-0.382209151983261,0.430717974901199,0.817556262016296,-0.72279816865921,0.320708692073822,0.612134635448456,-0.316259115934372,0.596127867698669,0.737978160381317,-0.381122469902039,0.581006109714508,0.719150602817535,-0.0700309723615646,0.626648426055908,0.776149094104767,-0.381885856389999,0.421356767416,0.822570085525513,-0.971688747406006,0.12506802380085,0.200446963310242,-0.72268944978714,0.323946803808212,0.61055588722229,-0.316546469926834,0.602260708808899,0.732857763767242,-0.97155487537384,0.144859582185745,0.187341690063477,-0.380823254585266,0.586628079414368,0.714731574058533,-0.971624255180359,0.1192497164011,0.204269364476204,-0.999955654144287,0.00855219829827547,-0.00394144793972373,-0.722408413887024,0.33126762509346,0.606949627399445,-0.971363425254822,0.152264177799225,0.182397454977036,-0.316881597042084,0.609978675842285,0.726300299167633,-0.971428990364075,0.152091503143311,0.182192072272301,-0.99999874830246,-0.00144243368413299,0.000664773804601282,-0.971405029296875,0.109299957752228,0.210774317383766,-0.999998807907104,-0.00132995657622814,0.000878273218404502,-0.99999988079071,-0.00027160081663169,0.000259792082943022,-0.971362948417664,0.152280241250992,0.182386711239815,-0.971429228782654,0.152105808258057,0.182178467512131,-0.971478223800659,0.148192629218102,0.185118928551674,-0.999996781349182,-0.00183823017869145,0.00175830733496696,
- -0.999996781349182,-0.00212728884071112,0.00140481325797737,0.999999105930328,0.00083771045319736,-0.00101352634374052,0.999224901199341,0.0293759517371655,0.0262069664895535,0.999999165534973,0.000948812463320792,-0.000907559820916504,0.999225497245789,0.029226740822196,0.0263497214764357,0.999999761581421,0.000433849258115515,-0.000524904113262892,0.987523078918457,0.115578584372997,0.106957271695137,-0.986659526824951,-0.0914834886789322,-0.134661734104156,0.0833626762032509,-0.681252598762512,-0.727286517620087,-0.998898267745972,-0.00850462447851896,-0.046153087168932,0.999997735023499,-0.00136712344828993,0.00165405077859759,0.999209642410278,0.0304630156606436,0.0255368426442146,0.987500727176666,0.124786287546158,0.0962843671441078,0.999222636222839,0.0326581597328186,0.0220836754888296,0.999999761581421,0.00045351596781984,-0.000548698357306421,0.999999761581421,0.000364506500773132,-0.00061124941566959,0.999213755130768,0.0355897806584835,0.0174700357019901,0.999999046325684,0.000706191873177886,-0.00118422950617969,0.999999046325684,0.000607619003858417,-0.00123693863861263,0.999210476875305,0.035972598940134,0.0168674178421497,0.999997437000275,0.00100245128851384,-0.00204070447944105,0.999503970146179,0.0287129282951355,0.0129418233409524,0.045828178524971,0.876433789730072,0.479336619377136,0.999201834201813,0.0367686785757542,0.0156141277402639,0.999501168727875,0.0293852705508471,0.011572927236557,0.987518072128296,0.123255401849747,0.0980621725320816,0.999193012714386,0.0290913358330727,0.0276940017938614,-0.0963799357414246,0.797303438186646,0.595834076404572,0.999199628829956,0.0369429402053356,0.0153397582471371,0.0458280630409718,0.876465141773224,0.479279339313507,-0.0958516150712967,0.873056590557098,0.478105306625366,-0.0956838428974152,0.738125920295715,0.667843401432037,-0.0828497037291527,0.738903284072876,0.668698728084564,0.987461686134338,0.111021414399147,0.112221941351891,-0.390100240707397,0.809460937976837,0.438856363296509,-0.0958215221762657,0.874413192272186,0.475625723600388,0.0458250045776367,0.87724781036377,0.477845579385757,
- -0.319490820169449,0.723138749599457,0.612369120121002,-0.082490362226963,0.760434865951538,0.644153952598572,-0.0960213989019394,0.759514927864075,0.643363893032074,-0.0963215902447701,0.841209411621094,0.532060980796814,-0.388043910264969,0.779264450073242,0.49210661649704,-0.316901355981827,0.80184280872345,0.506578385829926,-0.319040447473526,0.690771639347076,0.648882031440735,-0.318413108587265,0.690926432609558,0.649025321006775,-0.0830097794532776,0.72671777009964,0.681902289390564,-0.319037795066834,0.690666973590851,0.64899468421936,-0.971489727497101,0.171686798334122,0.163497939705849,-0.318413734436035,0.690820753574371,0.649137496948242,-0.388150155544281,0.780482470989227,0.4900883436203,-0.969810962677002,0.206640422344208,0.129485309123993,-0.316795229911804,0.803250074386597,0.504410564899445,-0.971335291862488,0.178773447871208,0.156677708029747,-0.319401860237122,0.710388481616974,0.627160787582397,-0.969559907913208,0.184123694896698,0.16140653192997,-0.969672799110413,0.211409941315651,0.122640147805214,-0.389497518539429,0.798442602157593,0.459109097719193,-0.971568703651428,0.204775989055634,0.118831969797611,-0.999999165534973,-0.000567455484997481,0.00115517736412585,-0.969671726226807,0.211437493562698,0.12260053306818,-0.971569359302521,0.204793646931648,0.118796050548553,-0.969754934310913,0.208865255117416,0.126295953989029,-0.999990105628967,-0.00197148136794567,0.00401337305083871,-0.999989926815033,-0.00268263882026076,0.00360038341023028,-0.999999403953552,0.000692163535859436,-0.000928956200368702,-0.97133731842041,0.178701728582382,0.156746879220009,-0.969557225704193,0.184060633182526,0.161495059728622,-0.971424341201782,0.175227642059326,0.160094156861305,-0.99999988079071,0.000330891052726656,-0.000444090546807274,-0.999999940395355,0.000398962321924046,-0.000381616147933528
- }
- BinormalsW: *546 {
- 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
- }
- }
- LayerElementBinormal: 1 {
- Version: 102
- Name: "LightMapUV"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *1638 {
- a: 0,0.99999988079071,-0.00050602457486093,0,0.99999988079071,-0.00050602457486093,0,0.99999988079071,-0.00050602457486093,-0,0.999999821186066,0.000557855877559632,-0,0.999999821186066,0.000557855877559632,-0,0.999999821186066,0.000557855877559632,0,1,-9.86769591690972e-005,0,1,-9.86769591690972e-005,0,1,-9.86769591690972e-005,0,0.999997198581696,-0.00237733544781804,0,0.999997198581696,-0.00237733544781804,0,0.999997198581696,-0.00237733544781804,-0,0.999999940395355,0.000383891339879483,-0,0.999999940395355,0.000383891339879483,-0,0.999999940395355,0.000383891339879483,-0,0.99999988079071,0.00047507110866718,-0,0.99999988079071,0.00047507110866718,-0,0.99999988079071,0.00047507110866718,-0,-0.999999940395355,-0.000310543749947101,-0,-0.999999940395355,-0.000310543749947101,-0,-0.999999940395355,-0.000310543749947101,-0,-0.999999582767487,0.000903155654668808,-0,-0.999999582767487,0.000903155654668808,-0,-0.999999582767487,0.000903155654668808,-0,-1,6.88472355250269e-005,-0,-1,6.88472355250269e-005,-0,-1,6.88472355250269e-005,-0,-0.999989569187164,-0.0045653716661036,-0,-0.999989569187164,-0.0045653716661036,-0,-0.999989569187164,-0.0045653716661036,-0,-0.99999988079071,-0.000515120336785913,-0,-0.99999988079071,-0.000515120336785913,-0,-0.99999988079071,-0.000515120336785913,-0,-0.99999988079071,-0.000477663677884266,-0,-0.99999988079071,-0.000477663677884266,-0,-0.99999988079071,-0.000477663677884266,-1,0,-0,-1,0,-0,-1,0,-0,-1,0,-0,-1,0,-0,-1,0,-0,-1,-2.72107918135589e-005,-6.04200951793896e-021,-1,-2.72107918135589e-005,-6.04200951793896e-021,-1,-2.72107918135589e-005,-6.04200951793896e-021,-0.999999284744263,0.00121032912284136,2.68747051910569e-019,-0.999999284744263,0.00121032912284136,2.68747051910569e-019,-0.999999284744263,0.00121032912284136,2.68747051910569e-019,-0.999999284744263,-0.00118715362623334,-2.636010579223e-019,-0.999999284744263,-0.00118715362623334,-2.636010579223e-019,-0.999999284744263,-0.00118715362623334,-2.636010579223e-019,-1,-0,-0,-1,-0,-0,-1,-0,-0,-1,-0,0,-1,-0,0,
- -1,-0,0,-1,-2.72084271273343e-005,-2.14239591400656e-007,-1,-2.72084271273343e-005,-2.14239591400656e-007,-1,-2.72084271273343e-005,-2.14239591400656e-007,-0.999921560287476,0.0125320665538311,9.86776867648587e-005,-0.999921560287476,0.0125320665538311,9.86776867648587e-005,-0.999921560287476,0.0125320665538311,9.86776867648587e-005,-0.999921798706055,-0.0125064216554165,-9.84757571131922e-005,-0.999921798706055,-0.0125064216554165,-9.84757571131922e-005,-0.999921798706055,-0.0125064216554165,-9.84757571131922e-005,-0.0275096707046032,0.59881204366684,-0.800416946411133,-0.0275096707046032,0.59881204366684,-0.800416946411133,-0.0275096707046032,0.59881204366684,-0.800416946411133,-0.0270215421915054,0.598219037055969,-0.800876975059509,-0.0270215421915054,0.598219037055969,-0.800876975059509,-0.0270215421915054,0.598219037055969,-0.800876975059509,0.545900583267212,0.688969016075134,0.476774960756302,0.545900583267212,0.688969016075134,0.476774960756302,0.545900583267212,0.688969016075134,0.476774960756302,0.545900523662567,0.688969135284424,0.476774752140045,0.545900523662567,0.688969135284424,0.476774752140045,0.545900523662567,0.688969135284424,0.476774752140045,-0.0356779657304287,0.556693375110626,-0.829951524734497,-0.0356779657304287,0.556693375110626,-0.829951524734497,-0.0356779657304287,0.556693375110626,-0.829951524734497,5.40763066965155e-005,0.570578157901764,-0.821243286132813,5.40763066965155e-005,0.570578157901764,-0.821243286132813,5.40763066965155e-005,0.570578157901764,-0.821243286132813,-0.909119009971619,0.342520534992218,0.237028241157532,-0.909119009971619,0.342520534992218,0.237028241157532,-0.909119009971619,0.342520534992218,0.237028241157532,-0.909119009971619,0.342520475387573,0.237028330564499,-0.909119009971619,0.342520475387573,0.237028330564499,-0.909119009971619,0.342520475387573,0.237028330564499,-0.00972138810902834,0.402455121278763,0.915388107299805,-0.00972138810902834,0.402455121278763,0.915388107299805,-0.00972138810902834,0.402455121278763,0.915388107299805,0,0.402474135160446,0.915431380271912,
- 0,0.402474135160446,0.915431380271912,0,0.402474135160446,0.915431380271912,0.000545576855074614,0.402474075555801,0.915431261062622,0.000545576855074614,0.402474075555801,0.915431261062622,0.000545576855074614,0.402474075555801,0.915431261062622,0.00970916729420424,0.402455151081085,0.915388226509094,0.00970916729420424,0.402455151081085,0.915388226509094,0.00970916729420424,0.402455151081085,0.915388226509094,0,0.402474135160446,0.915431380271912,0,0.402474135160446,0.915431380271912,0,0.402474135160446,0.915431380271912,-0.000348377536283806,0.402474105358124,0.915431320667267,-0.000348377536283806,0.402474105358124,0.915431320667267,-0.000348377536283806,0.402474105358124,0.915431320667267,0,0.402474135160446,0.915431380271912,0,0.402474135160446,0.915431380271912,0,0.402474135160446,0.915431380271912,-0.999756157398224,0.0220833774656057,4.90349482476076e-018,-0.999756157398224,0.0220833774656057,4.90349482476076e-018,-0.999756157398224,0.0220833774656057,4.90349482476076e-018,-0.999992609024048,0.00384239619597793,8.53183345301362e-019,-0.999992609024048,0.00384239619597793,8.53183345301362e-019,-0.999992609024048,0.00384239619597793,8.53183345301362e-019,-0.99999862909317,0.00166245060972869,3.69138188844585e-019,-0.99999862909317,0.00166245060972869,3.69138188844585e-019,-0.99999862909317,0.00166245060972869,3.69138188844585e-019,-0.999987185001373,-0.00506019964814186,-1.12359003171344e-018,-0.999987185001373,-0.00506019964814186,-1.12359003171344e-018,-0.999987185001373,-0.00506019964814186,-1.12359003171344e-018,-0,1,2.22044604925031e-016,-0,1,2.22044604925031e-016,-0,1,2.22044604925031e-016,0.000925407570321113,0.999999582767487,2.22044512280803e-016,0.000925407570321113,0.999999582767487,2.22044512280803e-016,0.000925407570321113,0.999999582767487,2.22044512280803e-016,-0,1,2.22044604925031e-016,-0,1,2.22044604925031e-016,-0,1,2.22044604925031e-016,-0.00461306795477867,0.999989330768585,2.22042235879757e-016,-0.00461306795477867,0.999989330768585,2.22042235879757e-016,-0.00461306795477867,0.999989330768585,2.22042235879757e-016,
- -0.999999463558197,0.00017163110896945,-0.00102161383256316,-0.999501466751099,0.0314729437232018,0.00249346275813878,-0.999999463558197,0.000106163002783433,-0.00102896452881396,-0.999498128890991,0.0311178881675005,0.00593374762684107,-0.999998211860657,-0.000319621642120183,0.00190250982996076,-0.999219417572021,0.0388938151299953,0.00693055614829063,-0.999208271503448,0.0396622009575367,0.00311714829877019,-0.0467219464480877,0.988947868347168,0.140709683299065,-0.999500930309296,0.0315281599760056,0.00195810524746776,-0.999999642372131,0.000274568097665906,-0.000784480362199247,-0.999218940734863,0.0384609736502171,0.00907735712826252,-0.999999761581421,0.000137729322887026,-0.00081981741823256,-0.0467598214745522,0.989749491214752,0.134942501783371,-0.999218761920929,0.0390063375234604,0.00637232046574354,-0.0389795824885368,0.990081369876862,0.134979516267776,-0.0389830656349659,0.990169942378998,0.134327426552773,0.348697155714035,0.928864061832428,0.124987661838531,-0.0467639230191708,0.989836394786835,0.134302884340286,-0.999995529651642,-0.000992704299278557,0.00283629819750786,-0.999224364757538,0.0368379503488541,0.0139183085411787,-0.999199151992798,0.0374481491744518,0.0140970181673765,-0.999182343482971,0.0370065569877625,0.016283942386508,-0.99922126531601,0.0360646396875381,0.0160094071179628,-0.0377658605575562,0.959252953529358,0.280013620853424,-0.999500334262848,0.0295248180627823,0.0112887863069773,-0.999999225139618,0.000430734158726409,-0.00123066920787096,-0.999999165534973,0.000574212404899299,-0.00116893241647631,-0.999997019767761,0.000808242009952664,-0.00230926321819425,-0.999496519565582,0.0300091449171305,0.0103025687858462,-0.999224364757538,0.0370502881705761,0.0133440308272839,0.124439187347889,0.951477289199829,0.281435668468475,-0.0377296730875969,0.958333671092987,0.283148467540741,-0.999214351177216,0.0384919866919518,0.00944375433027744,-0.999224424362183,0.0369607098400593,0.0135863106697798,-0.999497532844543,0.0298949982970953,0.0105350073426962,0.124056585133076,0.910884261131287,0.39357316493988,
- 0.345792382955551,0.908585071563721,0.234309241175652,-0.0380577817559242,0.966667711734772,0.253189980983734,0.124234810471535,0.960254848003387,0.249952733516693,-0.0456950776278973,0.897629141807556,0.438376396894455,0.123504914343357,0.893584072589874,0.43157160282135,-0.999177873134613,0.0169730596244335,0.0368175506591797,0.123270705342293,0.887408018112183,0.444197684526443,-0.0457217693328857,0.894506692886353,0.444710344076157,0.396449744701386,0.818917810916901,0.41497141122818,0.3169224858284,0.878557920455933,0.357346057891846,0.124260440468788,0.919369339942932,0.37325519323349,0.396437287330627,0.850303411483765,0.346152514219284,0.34773051738739,0.919785261154175,0.181875094771385,0.123529896140099,0.973499774932861,0.19245408475399,0.314803063869476,0.931129395961761,0.184111803770065,0.971608757972717,0.218771323561668,0.0900860503315926,0.316903471946716,0.878147721290588,0.358369678258896,0.396450281143188,0.849971473217011,0.346952050924301,0.973202288150787,0.226510807871819,0.0396275520324707,0.347507297992706,0.918297827243805,0.189652219414711,0.315127909183502,0.929376184940338,0.192234918475151,0.317133247852325,0.883760273456573,0.344084620475769,0.971546173095703,0.220454588532448,0.0865912362933159,0.973086833953857,0.214478611946106,0.084267683327198,0.348305016756058,0.924217998981476,0.156539708375931,0.973095655441284,0.227725729346275,0.0350129120051861,0.969537913799286,0.2420574426651,0.0374762788414955,0.971546590328217,0.220444470643997,0.0866122618317604,0.999999761581421,-0.000183584532351233,0.000684269587509334,0.973086357116699,0.214473232626915,0.0842872262001038,0.999992609024048,0.000996400485746562,-0.00371385621838272,0.969537615776062,0.242053627967834,0.0375086851418018,0.973096609115601,0.227715983986855,0.0350500531494617,0.971615493297577,0.218564063310623,0.0905157849192619,0.999999225139618,-0.000552758923731744,0.00112525932490826,0.999999225139618,-0.000326656823744997,0.00121753907296807,0.969487011432648,0.241539865732193,0.0418739542365074,0.999995350837708,-0.000790428661275655,0.00294614303857088,
- 0.999995470046997,-0.000335488963173702,0.00301940110512078,-0,0.10262980312109,-0.994719684123993,0,0.165678218007088,-0.986179888248444,0,0.102629795670509,-0.994719624519348,0.0670601353049278,0.165305271744728,-0.983959913253784,0.0690082758665085,0.104552574455738,-0.992122352123261,0.065833106637001,0.199757635593414,-0.977631330490112,-1.01477458756821e-017,7.25064504188866e-018,-1,-0.253773182630539,0.181322947144508,-0.950116455554962,-0.136302947998047,0.0973895266652107,-0.985868632793427,-0.00240988517180085,0.197542250156403,-0.980291485786438,0.00504459347575903,0.330346196889877,-0.94384640455246,-0.00416115764528513,0.165676787495613,-0.986171364784241,0.0314262621104717,0.198756098747253,-0.979544997215271,0.0104606663808227,0.221417441964149,-0.975123107433319,0.00878801476210356,0.223215579986572,-0.974729478359222,-0.000147981438203715,-0.00375872873701155,-0.999992907047272,-0.000177809648448601,-0.00376363750547171,-0.999992907047272,0.0408738106489182,0.00299581792205572,-0.999159872531891,-0.00788016896694899,0.330340147018433,-0.94382905960083,-0.00153473927639425,0.197576463222504,-0.980286300182343,-0.00866152439266443,0.346467733383179,-0.938021957874298,-0.0290197841823101,-0.737102568149567,-0.675157606601715,-0.415362596511841,0.300065189599991,-0.858740270137787,-0.391907751560211,0.166614919900894,-0.904791593551636,-0,0.330350399017334,-0.94385838508606,-0,0.440903931856155,-0.897554397583008,-0,0.440903872251511,-0.897554337978363,-0.00376188149675727,0.440794408321381,-0.897600173950195,-0.00416958658024669,0.330347537994385,-0.943850159645081,-0.00411421246826649,0.346645921468735,-0.937987089157104,-0.433305889368057,0.296480715274811,-0.85108470916748,0.00284688989631832,0.0723109990358353,-0.997378051280975,0.0329141467809677,0.0561477839946747,-0.997879862785339,0.0461783520877361,-0.0554334968328476,-0.99739396572113,-0.435534954071045,0.38453197479248,-0.813906908035278,-0.355534672737122,0.310963869094849,-0.881417453289032,-0.049982625991106,0.245201051235199,-0.968182981014252,
- 0.00842598546296358,0.251802414655685,-0.967742085456848,0.00991967879235744,0.25195986032486,-0.967686891555786,-0.00689533818513155,0.440698534250259,-0.897628784179688,-0.0177990421652794,0.447540760040283,-0.894086360931396,-0.00394877744838595,0.438836067914963,-0.898558437824249,-0.0142892766743898,0.422165334224701,-0.906406223773956,-0.00414662016555667,0.423997461795807,-0.905653893947601,-0.00470555201172829,0.423897683620453,-0.905697882175446,-0.012222720310092,0.358001589775085,-0.933641016483307,0.0238351784646511,0.364373654127121,-0.930947780609131,-0.00572649436071515,0.359185487031937,-0.933248698711395,-0.00565228657796979,0.358633041381836,-0.933461606502533,-0.0864264219999313,0.340152144432068,-0.936390399932861,-0.0119632855057716,0.357278227806091,-0.933921456336975,-0.046709343791008,0.452211797237396,-0.890686750411987,-0.0517776906490326,0.448160111904144,-0.892452597618103,-0.0257914811372757,0.468699991703033,-0.882980823516846,0.032404650002718,0.0258986949920654,-0.999139308929443,0.14426027238369,0.224029734730721,-0.963846385478973,0.0752770826220512,0.101640701293945,-0.991969048976898,0.173954367637634,0.392381578683853,-0.90320348739624,0.0131957456469536,0.286103010177612,-0.958108007907867,-0.0184994228184223,0.263839811086655,-0.964389145374298,0.226629868149757,0.201041489839554,-0.953006386756897,0.0291557256132364,0.0346667356789112,-0.998973548412323,0.0944686233997345,0.0897711589932442,-0.991472125053406,0.0163819380104542,0.259093791246414,-0.965713262557983,-0.00144152343273163,0.437780290842056,-0.899080872535706,0.0166914816945791,0.255850940942764,-0.966572225093842,0.012434434145689,0.259108543395996,-0.965768158435822,0.0125851482152939,0.256800591945648,-0.966382443904877,0.0219306349754334,0.108476623892784,-0.993857085704803,-0,0.437465727329254,-0.899235129356384,-0,0.259128570556641,-0.965842843055725,-0,0.440903872251511,-0.897554337978363,-0,0.259128570556641,-0.965842843055725,-1.86264514923096e-009,0.114005908370018,-0.993480086326599,-0,0.110431522130966,-0.993883728981018,
- -1,-1.97585094952046e-008,1.88994455641023e-008,-1,-2.13849098429364e-008,1.70647265207435e-008,-0.98619270324707,0.109851509332657,0.123921856284142,-0.986067473888397,0.102416202425957,0.131080090999603,-0.999999165534973,-0.0010765508050099,0.000859065854456276,-0.999222040176392,0.0234431382268667,0.0317168496549129,-0.999992549419403,0.00301656476221979,-0.00240715779364109,-0.999992549419403,0.00333760003559291,-0.00194187625311315,-0.99921041727066,0.0256239548325539,0.0303633995354176,-1,1.83699739864096e-008,-1.06879838313034e-008,-1,1.92781328678393e-008,-8.88470630400207e-009,-0.999220907688141,0.0177514124661684,0.0352477766573429,-0.999206125736237,0.0152186574414372,0.0368183366954327,-0.99999475479126,-0.0029368360992521,0.00135349854826927,-0.999499619007111,0.0114626996219158,0.0294823944568634,-0.999501168727875,0.0125530539080501,0.0289799384772778,-0.0457758903503418,0.459625065326691,0.886932551860809,-0.999213457107544,0.0162767115980387,0.036162294447422,-0.982199728488922,0.0496867969632149,0.181149363517761,-0.993528127670288,-0.0700215846300125,0.0894359946250916,-0.0331510752439499,0.785785973072052,0.617609441280365,0.0331510752439499,-0.785785973072052,-0.617609441280365,0.993528127670288,0.0700215846300125,-0.0894359946250916,0.0428795181214809,-0.784806430339813,-0.618255913257599,-0.0331689193844795,0.621204555034637,0.782946288585663,0.069812960922718,0.619701862335205,0.781726121902466,-0.986144423484802,0.106204077601433,0.127436429262161,-0.0319631285965443,0.472187250852585,0.880918562412262,-0.0458111129701138,0.471918612718582,0.880451083183289,0.382400900125504,0.436939060688019,0.814158320426941,0.069812960922718,0.619701862335205,0.781726121902466,-0.0331689193844795,0.621204555034637,0.782946288585663,0.381502211093903,0.573222815990448,0.725170075893402,0.382329046726227,0.434536397457123,0.815476894378662,-0.0458013042807579,0.468175858259201,0.88244754076004,0.392978936433792,0.432473659515381,0.811501264572144,0.381025820970535,0.582866549491882,0.717694938182831,0.316347181797028,0.597965717315674,0.736452043056488,
- 0.0700884833931923,0.628502726554871,0.774643063545227,0.971661388874054,0.122073873877525,0.202415719628334,0.382240861654282,0.431707203388214,0.817019462585449,0.393065184354782,0.429752349853516,0.812903881072998,0.971529126167297,0.146057054400444,0.186543643474579,0.316596835851669,0.603379130363464,0.731915414333344,0.380757421255112,0.587813854217529,0.713791787624359,0.393272548913956,0.422649174928665,0.816519677639008,0.971450388431549,0.111115477979183,0.209612712264061,0.971455037593842,0.111106850206852,0.20959597826004,0.316917985677719,0.610861301422119,0.72554224729538,0.971333622932434,0.153201028704643,0.181770294904709,0.971445679664612,0.152906000614166,0.181419804692268,0.999997615814209,0.00199292320758104,-0.00091847765725106,0.971459805965424,0.111290320754051,0.209476247429848,0.971447348594666,0.111313849687576,0.209521561861038,0.971334040164948,0.153188645839691,0.181778579950333,0.999999761581421,0.000538675289135426,-0.000515254680067301,0.971445441246033,0.152896106243134,0.181429162621498,0.971441626548767,0.110607109963894,0.2099220007658,1,1.81902120033328e-008,-8.38331537522663e-009,1,1.67716489585246e-008,-1.10756168680837e-008,0.999994993209839,-0.00229389313608408,0.00219415873289108,0.97149121761322,0.147673368453979,0.185465514659882,0.999994993209839,-0.00265458296053112,0.00175302638672292,-0.999228119850159,0.0284290611743927,0.0271128602325916,-1,6.95664814642782e-009,-8.4166860148116e-009,-1,7.8793140900757e-009,-7.53673656817e-009,-0.999997854232788,0.00131898396648467,-0.00159580784384161,-0.999220490455627,0.0302295237779617,0.0253902580589056,-0.987529516220093,0.116474606096745,0.105920791625977,-0.456906676292419,0.63439154624939,-0.623525142669678,-0.361891716718674,0.683407366275787,-0.634025931358337,0.00509450258687139,0.791251480579376,-0.611469805240631,-0.999986410140991,-0.00333153014071286,0.00403074035421014,-0.98752236366272,0.122783698141575,0.0986097231507301,-0.999188840389252,0.0288039147853851,0.0281459614634514,-1,-9.90729498440146e-010,1.19866050418693e-009,
- -0.999221503734589,0.0322781130671501,0.0226816143840551,-1,-7.96279375769871e-010,1.33529931556353e-009,-0.999184846878052,0.0379591062664986,0.0137397078797221,-0.999983310699463,0.002552371006459,-0.0051958984695375,-0.999983310699463,0.00296645052731037,-0.00497450912371278,-0.999995827674866,0.00127521262038499,-0.00259596854448318,-0.999207079410553,0.0363046079874039,0.016344740986824,-0.999503135681152,0.0289855320006609,0.0123868193477392,-0.999207496643066,0.036264430731535,0.0164079908281565,-0.0458305105566978,0.875810861587524,0.480473667383194,-0.999503135681152,0.0289756376296282,0.0124069591984153,-0.999176740646362,0.0280851740390062,0.0292760264128447,-0.987528324127197,0.12198518961668,0.0995362624526024,0.0963780879974365,0.796936750411987,0.596324622631073,-0.0458214655518532,0.878115892410278,0.476248770952225,-0.999179899692535,0.0382570028305054,0.0132705941796303,0.0958184525370598,0.874549627304077,0.475375413894653,0.0827396214008331,0.746174931526184,0.660588502883911,0.0958078652620316,0.745359063148499,0.659742891788483,-0.987497746944427,0.113258130848408,0.109639428555965,0.0957866609096527,0.875935316085815,0.472823739051819,0.390166163444519,0.810925900936127,0.436084270477295,-0.0458188466727734,0.878732919692993,0.47510951757431,0.0960260033607483,0.759853184223175,0.642963528633118,0.0824838802218437,0.760773241519928,0.643754959106445,0.319491505622864,0.72347766160965,0.611968338489532,0.388087809085846,0.779765248298645,0.491277933120728,0.0963170975446701,0.841739296913147,0.531222999095917,0.316861301660538,0.802378416061401,0.505754888057709,0.319026082754135,0.690203070640564,0.64949369430542,0.0830165892839432,0.726144433021545,0.682511985301971,0.318416446447372,0.690353393554688,0.64963310956955,0.97149658203125,0.171213492751122,0.163952276110649,0.319026082754135,0.690203070640564,0.64949369430542,0.318416446447372,0.690353393554688,0.64963310956955,0.969802618026733,0.207011818885803,0.128953337669373,0.388170719146729,0.780720412731171,0.489692986011505,0.316777586936951,0.803480803966522,0.504054129123688,
- 0.319391816854477,0.709546744823456,0.628118097782135,0.97135591506958,0.178029581904411,0.157395094633102,0.969532907009125,0.183518782258034,0.16225528717041,0.389536321163177,0.799064040184021,0.457993626594543,0.969649314880371,0.212043359875679,0.121728852391243,0.97158670425415,0.205261915922165,0.11784315854311,0.969649314880371,0.212043359875679,0.121728852391243,1,-8.56369515531696e-005,0.000174332366441377,0.97158670425415,0.205261915922165,0.11784315854311,0.999995112419128,-0.00137693912256509,0.00280305463820696,0.969732642173767,0.20961956679821,0.125213176012039,0.999995112419128,-0.00187364721205086,0.00251463148742914,0.97135591506958,0.178029581904411,0.157395094633102,1,0.000102544414403383,-0.000137625393108465,0.969532907009125,0.183518782258034,0.16225528717041,0.971432566642761,0.174841269850731,0.160465955734253,1,6.57668097758801e-009,-6.29073904079291e-009,1,5.45456346756623e-009,-7.32059746155755e-009,0.999983727931976,0.00413303589448333,-0.00395333906635642,0.986216723918915,0.113890394568443,0.120023190975189,0.999983668327332,0.00447317399084568,-0.00356950261630118,0.999991774559021,-0.00317446840927005,0.00253316154703498,0.986017465591431,0.100473880767822,0.132945999503136,0.999226927757263,0.0211417302489281,0.0331448018550873,1,7.24061088863692e-010,-5.7778615225601e-010,0.999225258827209,0.022361271083355,0.0323881581425667,1,8.01153254847975e-010,-4.66125527065486e-010,1,-1.83699739864096e-008,1.06879838313034e-008,0.999220907688141,0.0177513752132654,0.0352477990090847,1,-1.92781328678393e-008,8.88470630400207e-009,0.999222993850708,0.0182775221765041,0.0349214896559715,0.999500095844269,0.0147242546081543,0.0279792603105307,1,0.00032631034264341,-0.000150386520544998,0.99949848651886,0.0154382148757577,0.0276501607149839,0.99922502040863,0.0189724061638117,0.0344904996454716,0.0457726158201694,0.458614379167557,0.887455821037292,-0,-0,-0,-0,-0,-0,-0,-0,-0,-0.0331511534750462,-0.785773634910584,-0.617625117301941,-0.0428798422217369,-0.784793972969055,-0.61827164888382,-0.993526875972748,0.0700317323207855,-0.0894422233104706,
- -0.0695356726646423,0.611042737960815,0.788537621498108,0.0331236384809017,0.612311482429504,0.789922416210175,0.986081600189209,0.103021696209908,0.130498066544533,-0.382495820522308,0.440267354249954,0.812318623065948,0.0458191782236099,0.475253343582153,0.878655195236206,0.0319995656609535,0.475531905889511,0.879116237163544,0.0331559628248215,0.618581533432007,0.78502082824707,-0.0697282552719116,0.617036581039429,0.783839166164398,-0.381623089313507,0.570561110973358,0.727202773094177,0.0457979887723923,0.466977030038834,0.883082687854767,-0.382205635309219,0.430609256029129,0.81761509180069,-0.722801148891449,0.320615857839584,0.612179756164551,-0.316209614276886,0.595109045505524,0.738821148872375,-0.38117504119873,0.579975068569183,0.719954550266266,-0.0699989646673203,0.625620543956757,0.776980876922607,-0.381829380989075,0.419834196567535,0.823374450206757,-0.971679449081421,0.123892791569233,0.201220124959946,-0.72274386882782,0.322361379861832,0.611330151557922,-0.316528975963593,0.601876199245453,0.733181118965149,-0.971563220024109,0.144448220729828,0.18761570751667,-0.380845665931702,0.586220443248749,0.715054035186768,-0.971591353416443,0.117256663739681,0.205575630068779,-0.999975442886353,0.00636326987296343,-0.00293263746425509,-0.722476005554199,0.329618096351624,0.60776674747467,-0.971333622932434,0.153200954198837,0.181770324707031,-0.316917985677719,0.610861003398895,0.725542485713959,-0.971445679664612,0.152905941009521,0.181419864296913,-0.999994516372681,-0.00299926311708987,0.00138226931449026,-0.971362888813019,0.107888944447041,0.211693599820137,-0.999994516372681,-0.0027654143050313,0.00182621681597084,-0.999999642372131,0.00058383058058098,-0.000558446685317904,-0.971332430839539,0.1532391756773,0.181744754314423,-0.971446394920349,0.152940064668655,0.1813874989748,-0.971422135829926,0.150286674499512,0.183720096945763,-1,1.39110678532006e-008,-1.33062396656669e-008,-1,1.6099082955634e-008,-1.06314699266363e-008,1,-6.95664814642782e-009,8.4166860148116e-009,0.999228119850159,0.0284290462732315,0.0271128751337528,
- 1,-7.8793140900757e-009,7.53673656817e-009,0.999228656291962,0.0261046923696995,0.0293361973017454,0.999993443489075,-0.00232156692072749,0.00280880951322615,0.987491130828857,0.11278810352087,0.110182359814644,0.456896811723709,0.634393811225891,-0.623530209064484,-0.00509469630196691,0.791252911090851,-0.611467957496643,0.361880868673325,0.683410048484802,-0.634029090404511,0.999998688697815,-0.00103210785891861,0.00124872312881052,0.999212324619293,0.0307459346950054,0.0250918623059988,0.987496137619019,0.12512768805027,0.09588772803545,0.999221503734589,0.0322781130671501,0.0226816106587648,1,9.90729498440146e-010,-1.19866050418693e-009,1,7.96279375769871e-010,-1.33529931556353e-009,0.999218821525574,0.034849364310503,0.018635468557477,1,5.62756996558278e-009,-9.43700229072419e-009,1,4.84205919804026e-009,-9.85704939893139e-009,0.999207496643066,0.0362747013568878,0.0163918323814869,0.9999960064888,0.00125063909217715,-0.00254594394937158,0.999503195285797,0.0289609711617231,0.0124368201941252,0.045826580375433,0.876848340034485,0.478578060865402,0.999197602272034,0.0371049046516418,0.0150847584009171,0.999499440193176,0.0296583473682404,0.011016895994544,0.98751425743103,0.123643793165684,0.0976112857460976,0.99919730424881,0.0293989945203066,0.0272102057933807,-0.0963804945349693,0.797415375709534,0.595683991909027,0.999204277992249,0.0365572459995747,0.0159470066428185,0.0458298958837986,0.875978529453278,0.480167984962463,-0.0958611667156219,0.872616708278656,0.4789057970047,-0.0956569239497185,0.736627638339996,0.669499456882477,-0.0828711166977882,0.737397134304047,0.670356571674347,0.987452864646912,0.110561229288578,0.112752936780453,-0.390067607164383,0.80876362323761,0.440168827772141,-0.0958377048373222,0.873688519001007,0.476952195167542,0.0458277724683285,0.876540839672089,0.479140788316727,-0.319491535425186,0.723477721214294,0.611968278884888,-0.0824838802218437,0.760773420333862,0.643754959106445,-0.0960260108113289,0.75985324382782,0.642963528633118,-0.0963171049952507,0.841738700866699,0.531224071979523,
- -0.388087749481201,0.779764592647552,0.491279065608978,-0.316861361265183,0.802377700805664,0.505755960941315,-0.319026082754135,0.690203130245209,0.649493634700775,-0.31841641664505,0.690353512763977,0.64963299036026,-0.0830165892839432,0.72614449262619,0.682511866092682,-0.319026082754135,0.690203130245209,0.649493634700775,-0.97149658203125,0.171213507652283,0.163952246308327,-0.31841641664505,0.690353512763977,0.64963299036026,-0.388170599937439,0.780719637870789,0.489694118499756,-0.969802618026733,0.207011461257935,0.128953859210014,-0.316777676343918,0.80348014831543,0.504055321216583,-0.971355974674225,0.17802968621254,0.157395005226135,-0.319391816854477,0.709546804428101,0.62811803817749,-0.96953296661377,0.18351885676384,0.162255182862282,-0.969649255275726,0.212043255567551,0.121728964149952,-0.389536321163177,0.799063980579376,0.457993745803833,-0.971586585044861,0.205261826515198,0.117843277752399,-1,-8.56974511407316e-005,0.000174455533851869,-0.969649255275726,0.212043255567551,0.121728964149952,-0.971586585044861,0.205261826515198,0.117843277752399,-0.969781637191772,0.20787949860096,0.127709865570068,-0.999980568885803,-0.00274797226302326,0.00559408636763692,-0.999980449676514,-0.00373918865807354,0.0050183841958642,-1,0.000102616861113347,-0.000137722614454106,-0.971355974674225,0.17802968621254,0.157395005226135,-0.96953296661377,0.18351885676384,0.162255182862282,-0.971432566642761,0.174841269850731,0.160465970635414,-1,-5.45456346756623e-009,7.32059746155755e-009,-1,-6.57668097758801e-009,6.29073904079291e-009
- }
- BinormalsW: *546 {
- 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
- }
- }
- LayerElementTangent: 0 {
- Version: 102
- Name: "UVmap_0"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *1638 {
- a: 0,-0.000164183744345792,-1,0,-0.000164183744345792,-1,0,-0.000164183744345792,-1,0,-0.000326684501487762,-0.999999940395355,0,-0.000326684501487762,-0.999999940395355,0,-0.000326684501487762,-0.999999940395355,-0,0.000200366921490058,-1,-0,0.000200366921490058,-1,-0,0.000200366921490058,-1,0,-0.000828020158223808,-0.999999642372131,0,-0.000828020158223808,-0.999999642372131,0,-0.000828020158223808,-0.999999642372131,0,-2.72681609203573e-005,-1,0,-2.72681609203573e-005,-1,0,-2.72681609203573e-005,-1,-0,4.99067173223011e-005,-1,-0,4.99067173223011e-005,-1,-0,4.99067173223011e-005,-1,0,-0.000164183744345792,-1,0,-0.000164183744345792,-1,0,-0.000164183744345792,-1,0,-0.000326684501487762,-0.999999940395355,0,-0.000326684501487762,-0.999999940395355,0,-0.000326684501487762,-0.999999940395355,0,0.000200366921490058,-1,0,0.000200366921490058,-1,0,0.000200366921490058,-1,0,-0.000828020158223808,-0.999999642372131,0,-0.000828020158223808,-0.999999642372131,0,-0.000828020158223808,-0.999999642372131,0,-2.72681609203573e-005,-1,0,-2.72681609203573e-005,-1,0,-2.72681609203573e-005,-1,0,4.99067173223011e-005,-1,0,4.99067173223011e-005,-1,0,4.99067173223011e-005,-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,-0.999567151069641,0.0294199902564287,0,-0.999567151069641,0.0294199902564287,0,-0.999567151069641,0.0294199902564287,0,-0.999567091464996,-0.029424861073494,0,-0.999567091464996,-0.029424861073494,0,-0.999567091464996,-0.029424861073494,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.999244153499603,-0.0388718582689762,-0.000306076864944771,-0.999244153499603,-0.0388718582689762,-0.000306076864944771,-0.999244153499603,-0.0388718582689762,-0.000306076864944771,-0.999244272708893,0.0388686433434486,0.000306051544612274,-0.999244272708893,0.0388686433434486,0.000306051544612274,-0.999244272708893,0.0388686433434486,0.000306051544612274,-0.00242169131524861,0.567745864391327,-0.823200345039368,-0.00242169131524861,0.567745864391327,-0.823200345039368,-0.00242169131524861,0.567745864391327,-0.823200345039368,
- -0.00242154230363667,0.567745685577393,-0.823200464248657,-0.00242154230363667,0.567745685577393,-0.823200464248657,-0.00242154230363667,0.567745685577393,-0.823200464248657,-0.00242169131524861,-0.567745864391327,0.823200345039368,-0.00242169131524861,-0.567745864391327,0.823200345039368,-0.00242169131524861,-0.567745864391327,0.823200345039368,-0.00242154230363667,-0.567745685577393,0.823200464248657,-0.00242154230363667,-0.567745685577393,0.823200464248657,-0.00242154230363667,-0.567745685577393,0.823200464248657,-0.000696787028573453,0.570295512676239,-0.821439445018768,-0.000696787028573453,0.570295512676239,-0.821439445018768,-0.000696787028573453,0.570295512676239,-0.821439445018768,-0.000696868286468089,0.570295393466949,-0.821439385414124,-0.000696868286468089,0.570295393466949,-0.821439385414124,-0.000696868286468089,0.570295393466949,-0.821439385414124,-0.000696868286468089,-0.570295393466949,0.821439385414124,-0.000696868286468089,-0.570295393466949,0.821439385414124,-0.000696868286468089,-0.570295393466949,0.821439385414124,-0.000696787028573453,-0.570295512676239,0.821439445018768,-0.000696787028573453,-0.570295512676239,0.821439445018768,-0.000696787028573453,-0.570295512676239,0.821439445018768,-0.997241377830505,-0.0298745390027761,-0.0679498910903931,-0.997241377830505,-0.0298745390027761,-0.0679498910903931,-0.997241377830505,-0.0298745390027761,-0.0679498910903931,-1,0,0,-1,0,0,-1,0,0,-0.999997794628143,0.000848780502565205,0.00193056056741625,-0.999997794628143,0.000848780502565205,0.00193056056741625,-0.999997794628143,0.000848780502565205,0.00193056056741625,0.997284293174744,-0.0296415071934462,-0.0674198567867279,0.997284293174744,-0.0296415071934462,-0.0674198567867279,0.997284293174744,-0.0296415071934462,-0.0674198567867279,1,0,-0,1,0,-0,1,0,-0,0.999999761581421,0.000294710654998198,0.000670322973746806,0.999999761581421,0.000294710654998198,0.000670322973746806,0.999999761581421,0.000294710654998198,0.000670322973746806,1,0,-0,1,0,-0,1,0,-0,-1,-0,0,-1,-0,0,-1,-0,0,-0.999998331069946,-0.00182319269515574,-6.0129914565951e-019,
- -0.999998331069946,-0.00182319269515574,-6.0129914565951e-019,-0.999998331069946,-0.00182319269515574,-6.0129914565951e-019,-1,-0,0,-1,-0,0,-1,-0,0,-0.99359792470932,-0.112974092364311,-2.50854498331975e-017,-0.99359792470932,-0.112974092364311,-2.50854498331975e-017,-0.99359792470932,-0.112974092364311,-2.50854498331975e-017,1,0,0,1,0,0,1,0,0,0.999999225139618,-0.00124680995941162,0,0.999999225139618,-0.00124680995941162,0,0.999999225139618,-0.00124680995941162,0,1,0,0,1,0,0,1,0,0,0.993531942367554,-0.113553173840046,-2.50807183600937e-017,0.993531942367554,-0.113553173840046,-2.50807183600937e-017,0.993531942367554,-0.113553173840046,-2.50807183600937e-017,0.00110920355655253,0.165678128600121,-0.986179351806641,0.000822485948447138,0.102603927254677,-0.994721949100494,0.00110759341623634,0.102629728615284,-0.9947190284729,-0.00249807396903634,0.10270794481039,-0.99470841884613,-0.00171970564406365,0.165677964687347,-0.986178398132324,0.00110204960219562,0.197593376040459,-0.980283558368683,0.00513903563842177,0.197434440255165,-0.980302631855011,-0.00661751162260771,0.140070647001266,-0.990119397640228,0.00164305465295911,0.102578043937683,-0.994723618030548,0.000836232036817819,0.330350309610367,-0.94385814666748,-0.00129095779266208,0.197686031460762,-0.980264544487,0.000836396997328848,0.165678158402443,-0.986179530620575,-0.00636457884684205,0.134716898202896,-0.990863800048828,0.0015442306175828,0.197576105594635,-0.980286359786987,-0.00530709931626916,0.13480032980442,-0.990858554840088,-0.00527949072420597,0.134099066257477,-0.990953862667084,0.00669090868905187,0.130754068493843,-0.991392254829407,-0.00633208453655243,0.134029105305672,-0.990957260131836,-0.00294886622577906,0.330348968505859,-0.94385427236557,-0.000222658287384547,0.346809148788452,-0.937935709953308,-0.00635656109079719,0.197878479957581,-0.980205953121185,-0.00864216592162848,0.197963640093803,-0.980171263217926,-0.00250664702616632,0.346892476081848,-0.937901556491852,-0.0110156238079071,0.279796838760376,-0.959996044635773,0.00288028060458601,0.440820693969727,-0.897590696811676,
- 0.00130026508122683,0.330350130796433,-0.943857669830322,0.00129875168204308,0.440903544425964,-0.897553682327271,0.00210288469679654,0.330349653959274,-0.943856298923492,0.00363916018977761,0.440798074007034,-0.897598922252655,-9.85444057732821e-006,0.346801280975342,-0.937938630580902,-0.00421399949118495,0.284188777208328,-0.958759069442749,-0.0111408531665802,0.282977670431137,-0.959061801433563,0.00445865467190742,0.346632659435272,-0.937990367412567,-9.85444057732821e-006,0.346801280975342,-0.937938630580902,0.00363916018977761,0.440798074007034,-0.897598922252655,0.0106332190334797,0.395459651947021,-0.918421804904938,0.0455259829759598,0.233500942587852,-0.971290230751038,-0.00997261237353086,0.253304362297058,-0.967335343360901,-0.00824377220124006,0.253210991621017,-0.967376053333282,0.00398961314931512,0.438033670186996,-0.8989497423172,0.0156781021505594,0.432237297296524,-0.901623725891113,-0.024786489084363,0.441468924283981,-0.896934151649475,0.0175017118453979,0.445401072502136,-0.89516007900238,0.00362770073115826,0.445131182670593,-0.895458042621613,0.0147546147927642,0.446060687303543,-0.894881069660187,0.017124954611063,0.371628910303116,-0.928223431110382,0.00791885145008564,0.375454068183899,-0.926807165145874,-0.0150793874636292,0.38325297832489,-0.92352032661438,0.0268213544040918,0.184190079569817,-0.982524633407593,-0.0155918207019567,0.195864379405975,-0.980507016181946,-0.0403550341725349,0.206975549459457,-0.977513492107391,-0.0141138648614287,0.434335023164749,-0.900640845298767,0.0174635611474514,0.37256732583046,-0.927840828895569,-0.0147459954023361,0.383967846632004,-0.923228740692139,-0.019997363910079,0.255082964897156,-0.966712355613709,0.0295617002993822,0.191435039043427,-0.981060028076172,-0.037747710943222,0.214676216244698,-0.975955545902252,0.0124912578612566,0.35875004529953,-0.933350086212158,-0.0181602798402309,0.433420449495316,-0.90100884437561,0.0248874761164188,0.265253573656082,-0.963857412338257,0.0178922787308693,0.160534575581551,-0.986868143081665,-0.0245529823005199,0.254019856452942,-0.966887414455414,
- 0.00944150146096945,0.116368383169174,-0.993161261081696,-0.0181309096515179,0.433427095413208,-0.90100622177124,0.000595768913626671,0.259128510951996,-0.965842664241791,0.0249130707234144,0.265259236097336,-0.9638552069664,-0.00372875807806849,0.259126782417297,-0.965836107730865,0.0094820549711585,0.116378523409367,-0.993159770965576,-0.024505065754056,0.25403106212616,-0.966885685920715,-0.013987397775054,0.434363543987274,-0.900629162788391,0.00107325473800302,0.440903604030609,-0.89755380153656,0.00107916397973895,0.259128451347351,-0.965842366218567,0.0135288899764419,0.117387793958187,-0.992994010448456,0.00293568661436439,0.259127467870712,-0.965838670730591,0.00292379851453006,0.110431052744389,-0.993879497051239,-0.000822667439933866,0.102603919804096,-0.994721949100494,-0.00110938551370054,0.165678128600121,-0.986179351806641,-0.00110777514055371,0.102629728615284,-0.9947190284729,0.00171959446743131,0.165677964687347,-0.986178398132324,0.00249796756543219,0.10270793735981,-0.99470841884613,-0.0011021550744772,0.197593376040459,-0.980283558368683,0.00661751814186573,0.140070796012878,-0.990119397640228,-0.00513914413750172,0.197434425354004,-0.980302631855011,-0.00164316408336163,0.102578036487103,-0.994723618030548,0.0012909445213154,0.197686031460762,-0.980264544487,-0.000836245366372168,0.330350309610367,-0.94385814666748,-0.000836410326883197,0.165678158402443,-0.986179530620575,-0.00154423667117953,0.197576105594635,-0.980286359786987,0.00636457884684205,0.134716913104057,-0.990863800048828,0.00530709978193045,0.13480032980442,-0.990858554840088,0.0052795447409153,0.134100437164307,-0.990953683853149,0.00633214879781008,0.134030476212502,-0.990957081317902,-0.00669138738885522,0.130755335092545,-0.991392076015472,0.0029489693697542,0.330348968505859,-0.94385427236557,0.00635665468871593,0.197878479957581,-0.980205953121185,0.000222751899855211,0.346809148788452,-0.937935709953308,0.0110156163573265,0.279796659946442,-0.959996104240417,0.00250670500099659,0.346892476081848,-0.937901556491852,0.0086422236636281,0.197963640093803,-0.980171263217926,
- -0.00130010955035686,0.330350130796433,-0.943857669830322,-0.00288012553937733,0.440820693969727,-0.897590696811676,-0.00129859638400376,0.440903544425964,-0.897553682327271,-0.00363918649964035,0.440798074007034,-0.897598922252655,-0.0021029207855463,0.330349653959274,-0.943856298923492,9.83053723757621e-006,0.346801280975342,-0.937938630580902,-0.00446094386279583,0.346632570028305,-0.937990367412567,0.0111408988013864,0.28297883272171,-0.959061443805695,0.00421380158513784,0.284190267324448,-0.958758652210236,-0.0106332562863827,0.395459920167923,-0.918421685695648,-0.00363918649964035,0.440798074007034,-0.897598922252655,9.83053723757621e-006,0.346801280975342,-0.937938630580902,-0.0455387495458126,0.233534514904022,-0.97128164768219,0.00823918823152781,0.253246396780014,-0.967366695404053,0.00997397117316723,0.253338873386383,-0.967326164245605,0.0247966796159744,0.441469103097916,-0.896933734416962,-0.0156761892139912,0.432223439216614,-0.901630282402039,-0.0039902413263917,0.438021302223206,-0.898955762386322,-0.017499690875411,0.445386528968811,-0.895167350769043,-0.0147472061216831,0.446045368909836,-0.894888818264008,-0.00362835801206529,0.445118308067322,-0.895464420318604,-0.0171220693737268,0.371620923280716,-0.9282266497612,0.0150829739868641,0.383245348930359,-0.923523545265198,-0.00791773293167353,0.375445812940598,-0.926810503005981,0.0155755588784814,0.195992529392242,-0.980481684207916,-0.0268671680241823,0.184311255812645,-0.982500672340393,0.040313396602869,0.207098692655563,-0.977489113807678,-0.0174606274813414,0.372559189796448,-0.927844166755676,0.0141184888780117,0.434333980083466,-0.900641262531281,0.014749645255506,0.383960008621216,-0.923231899738312,-0.0295194499194622,0.191323384642601,-0.981083035469055,0.0199563317000866,0.255092531442642,-0.966710686683655,0.0377874113619328,0.214559137821198,-0.975979745388031,0.0183230713009834,0.433383494615555,-0.901023328304291,-0.0124597540125251,0.358662247657776,-0.933384239673615,-0.0247241221368313,0.265217572450638,-0.963871538639069,0.0241556912660599,0.254112780094147,-0.966872990131378,
- -0.0182818211615086,0.161568120121956,-0.986692309379578,-0.00985194742679596,0.116470858454704,-0.993145346641541,-0.000323478830978274,0.259128540754318,-0.96584278345108,0.0182616077363491,0.433397442102432,-0.901017844676971,-0.0247779954224825,0.265229463577271,-0.963866889476776,0.00342459813691676,0.259127050638199,-0.965837180614471,0.0240649413317442,0.254133999347687,-0.966869592666626,-0.00992796663194895,0.116489835083485,-0.993142366409302,0.0140193942934275,0.434356302022934,-0.90063202381134,-0.00104506954085082,0.259128421545029,-0.965842306613922,-0.00103934714570642,0.440903633832932,-0.897553861141205,-0.00296870153397322,0.259127467870712,-0.965838670730591,-0.0135597884654999,0.117395505309105,-0.992992758750916,-0.00295667932368815,0.110431037843227,-0.993879377841949,0.00137245922815055,0.722641170024872,-0.691222012042999,0.00137330905999988,0.781637728214264,-0.623731136322021,-0.00571950618177652,0.719643235206604,-0.694320499897003,-0.0188150461763144,0.721051394939423,-0.692626118659973,-0.00298221781849861,0.781635046005249,-0.623728930950165,0.00158027256838977,0.849727869033813,-0.527219176292419,0.0012380622792989,0.781637907028198,-0.623731255531311,0.00123877951409668,0.864347696304321,-0.502893149852753,0.00315722054801881,0.849691987037659,-0.527269899845123,0.000685604580212384,0.864348113536835,-0.502893447875977,0.000684766855556518,0.908190190792084,-0.418557226657867,-0.00280772498808801,0.849816679954529,-0.527071118354797,-0.00476671010255814,0.849851012229919,-0.527001678943634,-0.00152987195178866,0.908189296722412,-0.418556839227676,-0.000226631658733822,0.908193349838257,-0.418550789356232,0.00199266569688916,0.908162236213684,-0.418613642454147,-0.00289739691652358,0.888248085975647,-0.459354937076569,-0.00251167546957731,0.849811136722565,-0.527081370353699,-0.0250016450881958,0.721672534942627,-0.691783010959625,-0.00708056194707751,0.849887251853943,-0.526917040348053,-0.00323633523657918,0.772279560565948,-0.635274589061737,-0.0159306991845369,0.958624958992004,-0.284226030111313,
- 0.0483925454318523,0.84776097536087,-0.528166174888611,-0.0114151611924171,0.958426654338837,-0.285110920667648,-0.00394348334521055,0.785627722740173,-0.618686974048615,0.0250328928232193,0.784590303897858,-0.619509041309357,-0.013493943028152,0.720494508743286,-0.693329393863678,-0.00959238968789577,0.880334377288818,-0.474256634712219,-0.00213439948856831,0.880481839179993,-0.474075317382813,0.0249989815056324,0.874974429607391,-0.483523309230804,0.0248530115932226,0.782997012138367,-0.621528744697571,-0.00385422492399812,0.78396075963974,-0.620798587799072,-0.0362793952226639,0.793893456459045,-0.606973648071289,0.0268966350704432,0.877139866352081,-0.479481250047684,-0.00243011815473437,0.883520066738129,-0.468387007713318,-0.0286136064678431,0.888036847114563,-0.458881050348282,-0.0404454059898853,0.787593245506287,-0.614866733551025,0.0372051261365414,0.769513726234436,-0.637545764446259,0.0241535436362028,0.776766121387482,-0.629325807094574,0.0101564824581146,0.835849463939667,-0.548864781856537,0.0283386539667845,0.878771483898163,-0.476400941610336,-0.0271928086876869,0.889593005180359,-0.455943882465363,-0.0171734597533941,0.832104682922363,-0.554352641105652,0.0346755683422089,0.764723241329193,-0.643425166606903,-0.0431720986962318,0.783414840698242,-0.619998037815094,-0.0250103510916233,0.891960144042969,-0.451422035694122,-0.015121198259294,0.908450186252594,-0.417719602584839,0.0208375211805105,0.837133526802063,-0.546601533889771,0.0314660854637623,0.758580982685089,-0.650818526744843,-0.0258250702172518,0.830781638622284,-0.555999040603638,0.0153953451663256,0.725672245025635,-0.687868297100067,-0.00332579552195966,0.908185362815857,-0.418554991483688,0.0208265855908394,0.837132275104523,-0.546603858470917,-0.0151324737817049,0.908448874950409,-0.417722016572952,-0.0258438773453236,0.830778777599335,-0.556002616882324,0.000375874224118888,0.722641825675964,-0.691222667694092,0.0153761683031917,0.725669264793396,-0.687871873378754,0.0242076553404331,0.837517738342285,-0.545873582363129,0.00158821023069322,0.908189237117767,-0.418556779623032,
- 0.00159374414943159,0.834463536739349,-0.551060795783997,0.00254380260594189,0.722639501094818,-0.691220462322235,-0.0210662670433521,0.831517577171326,-0.555098831653595,0.00254932441748679,0.83446192741394,-0.551059722900391,0.00311106676235795,0.722553908824921,-0.691307604312897,0.00131493445951492,0.637084066867828,-0.770793199539185,0.00131299963686615,0.722641229629517,-0.691222071647644,0.000680922355968505,0.637084484100342,-0.770793676376343,0.00290464423596859,0.722559928894043,-0.691302180290222,-0.00537856062874198,0.654051601886749,-0.756430804729462,-0.0416368097066879,0.657854557037354,-0.751993238925934,-0.0257357694208622,0.72310084104538,-0.690262973308563,-0.00281695695593953,0.72998571395874,-0.683456599712372,-0.00214592786505818,0.637083172798157,-0.770792067050934,0.0085415905341506,0.652357518672943,-0.757863402366638,-0.00520942732691765,0.536531090736389,-0.843864500522614,0.000711858156137168,0.637084484100342,-0.770793616771698,-0.00112075475044549,0.536401927471161,-0.843961894512177,0.000711678527295589,0.512176215648651,-0.85888010263443,0.00434124795719981,0.536215424537659,-0.844070017337799,0.0013780992012471,0.440903455018997,-0.897553503513336,0.00137878418900073,0.512175858020782,-0.858879506587982,0.00227362778969109,0.44090273976326,-0.897552013397217,0.00505464943125844,0.536189913749695,-0.844082236289978,0.00104313343763351,0.440874129533768,-0.897568345069885,0.00653824117034674,0.536135911941528,-0.844106376171112,0.00182971078902483,0.479913622140884,-0.877313852310181,0.00256747589446604,0.4408298432827,-0.8975870013237,-0.00776376063004136,0.536607205867767,-0.84379643201828,0.00622475240379572,0.652648448944092,-0.757635295391083,0.00297984713688493,0.598387181758881,-0.801201581954956,0.00183269672561437,0.47985652089119,-0.877345085144043,0.0068629845045507,0.536123931407928,-0.844111382961273,-0.0105090662837029,0.481177777051926,-0.876560032367706,-0.00965391285717487,0.671569287776947,-0.740878939628601,0.0119405584409833,0.670022428035736,-0.742244839668274,-0.0122547205537558,0.654840528964996,-0.755667746067047,
- -0.0107799572870135,0.47870808839798,-0.877907931804657,0.0216350331902504,0.468428164720535,-0.883236646652222,0.0019075566669926,0.478424191474915,-0.878126919269562,0.00882404483854771,0.645675539970398,-0.763560891151428,-0.0123536540195346,0.647087395191193,-0.76231575012207,0.00143590825609863,0.64586877822876,-0.763447105884552,0.0454766191542149,0.517105162143707,-0.854712903499603,-0.0044859116896987,0.53490686416626,-0.844899117946625,-0.0406201928853989,0.545090019702911,-0.837392926216125,0.0170193742960691,0.680375516414642,-0.732666015625,-0.00816377159208059,0.684736907482147,-0.728744626045227,-0.00414092186838388,0.685667872428894,-0.727902770042419,-0.0109162945300341,0.721287548542023,-0.692549705505371,0.0170684400945902,0.680481731891632,-0.732566237449646,-0.00409186165779829,0.685774326324463,-0.727802813053131,-0.0125188427045941,0.572472512722015,-0.81982833147049,0.0445607863366604,0.515264809131622,-0.855871796607971,-0.0414398163557053,0.543013989925385,-0.838700532913208,0.00767458602786064,0.65986692905426,-0.751343309879303,-0.0204717721790075,0.719563841819763,-0.694124460220337,0.0253693796694279,0.580106616020203,-0.814145386219025,0.03062579408288,0.486971408128738,-0.872880816459656,-0.0206100307404995,0.570728540420532,-0.820880234241486,0.0167865864932537,0.441069096326828,-0.897316157817841,-0.0206568241119385,0.570718288421631,-0.820886075496674,0.00128689059056342,0.440903574228287,-0.897553682327271,0.0167477056384087,0.441060900688171,-0.897320926189423,0.00447147386148572,0.440899461507797,-0.897545337677002,-0.0162897370755672,0.571664690971375,-0.820325613021851,0.0044899326749146,0.597475349903107,-0.801874697208405,-0.0203749686479568,0.719581663608551,-0.694108843803406,-0.00115834828466177,0.597480952739716,-0.801882266998291,0.0254747942090034,0.580126643180847,-0.814127802848816,-0.0156881380826235,0.720435500144959,-0.693344473838806,-0.00055210676509887,0.72264176607132,-0.691222608089447,-0.000553828082047403,0.597481250762939,-0.801882684230804,-0.00137251359410584,0.722641170024872,-0.691222012042999,
- 0.00571945356205106,0.719643175601959,-0.694320499897003,-0.0013733635423705,0.781637728214264,-0.623731136322021,0.00298280059359968,0.781635046005249,-0.623728930950165,0.0188157074153423,0.721051454544067,-0.692625999450684,-0.00157966488040984,0.849727988243103,-0.527219176292419,-0.00123806716874242,0.781637907028198,-0.623731255531311,-0.00315722543746233,0.849691987037659,-0.527269899845123,-0.00123878428712487,0.864347696304321,-0.502893149852753,-0.000685563718434423,0.864348113536835,-0.502893447875977,0.00280776573345065,0.849816679954529,-0.527071118354797,-0.000684726110193878,0.908190190792084,-0.418557226657867,0.00476601021364331,0.84985089302063,-0.527001678943634,0.000225938769290224,0.908193349838257,-0.418550819158554,0.00152919976972044,0.908189296722412,-0.418556839227676,-0.00199338444508612,0.908162236213684,-0.41861367225647,0.00251094484701753,0.84981107711792,-0.527081370353699,0.00289733172394335,0.888247430324554,-0.459356188774109,0.00708201294764876,0.849887251853943,-0.526916980743408,0.0250033028423786,0.721672654151917,-0.691782772541046,0.0032364025246352,0.772280812263489,-0.635273039340973,0.0159304235130548,0.95862227678299,-0.284235030412674,0.0114147393032908,0.958423852920532,-0.285119980573654,-0.0483991988003254,0.847760558128357,-0.528166234493256,-0.0250328741967678,0.784590125083923,-0.619509220123291,0.00394347449764609,0.785627543926239,-0.618687152862549,0.0134938703849912,0.720494449138641,-0.693329393863678,-0.0249989852309227,0.874974429607391,-0.483523309230804,0.00213439995422959,0.880481839179993,-0.474075317382813,0.00959238968789577,0.880334377288818,-0.474256634712219,0.00385421793907881,0.783960521221161,-0.620798707008362,-0.0248529985547066,0.782996892929077,-0.621528923511505,0.036279458552599,0.793893456459045,-0.606973826885223,0.0024670846760273,0.883897364139557,-0.467674434185028,-0.0283962022513151,0.878836274147034,-0.476277768611908,0.0288611501455307,0.899028122425079,-0.436938732862473,-0.0372050888836384,0.769513547420502,-0.637545824050903,0.0404454432427883,0.787593185901642,-0.61486679315567,
- -0.0241535380482674,0.776766061782837,-0.629325926303864,-0.0324552394449711,0.883362650871277,-0.467565059661865,-0.00589207839220762,0.835308730602264,-0.549749791622162,0.0314659997820854,0.897866427898407,-0.43914207816124,-0.0346755646169186,0.764723241329193,-0.643425226211548,0.0171734876930714,0.832104682922363,-0.554352641105652,0.0431721024215221,0.783414840698242,-0.619998037815094,-0.0126566728577018,0.83615905046463,-0.548340976238251,0.00941674597561359,0.908150136470795,-0.418538749217987,0.0373661890625954,0.895191252231598,-0.444113045930862,0.0258249957114458,0.830781638622284,-0.555999040603638,-0.031466219574213,0.758581280708313,-0.650818228721619,-0.0153954224660993,0.72567230463028,-0.687868297100067,-0.00158825027756393,0.908189237117767,-0.418556779623032,-0.0242076925933361,0.83751779794693,-0.545873582363129,-0.00159378419630229,0.834463536739349,-0.551060795783997,-0.000375844334485009,0.722641825675964,-0.691222667694092,0.0258437991142273,0.83077871799469,-0.556002557277679,-0.0153762437403202,0.725669264793396,-0.687871873378754,0.0210663042962551,0.831517577171326,-0.55509889125824,-0.00254376395605505,0.722639501094818,-0.691220462322235,-0.00254928576759994,0.83446192741394,-0.551059722900391,-0.00131491234060377,0.637084066867828,-0.770793199539185,-0.0031110446434468,0.722553908824921,-0.691307604312897,-0.00131297751795501,0.722641229629517,-0.691222071647644,-0.00290470337495208,0.722559928894043,-0.691302180290222,-0.000680991564877331,0.637084484100342,-0.770793676376343,0.00537853268906474,0.654051601886749,-0.756430864334106,0.04163733497262,0.657854616641998,-0.751993238925934,0.00281704403460026,0.729984998703003,-0.683457374572754,0.0257364194840193,0.723100781440735,-0.690262913703918,0.00214590528048575,0.637083172798157,-0.770792067050934,0.00520939845591784,0.536531090736389,-0.843864500522614,-0.00854163803160191,0.652357518672943,-0.757863402366638,0.00112075172364712,0.536401927471161,-0.843961894512177,-0.000711861299350858,0.637084484100342,-0.770793616771698,-0.000711681670509279,0.512176215648651,-0.85888010263443,
- -0.00434126984328032,0.536215424537659,-0.844070017337799,-0.00137880619149655,0.512175858020782,-0.858879506587982,-0.00137812120374292,0.440903455018997,-0.897553503513336,-0.00505464943125844,0.536189913749695,-0.844082236289978,-0.00227362778969109,0.44090273976326,-0.897552013397217,-0.00104313343763351,0.440874129533768,-0.897568345069885,-0.00182971078902483,0.479913622140884,-0.877313852310181,-0.00653824117034674,0.536135911941528,-0.844106376171112,-0.00256747589446604,0.4408298432827,-0.8975870013237,-0.00622478080913424,0.652648448944092,-0.757635295391083,0.00776374619454145,0.536607205867767,-0.84379643201828,-0.0029798352625221,0.598387062549591,-0.801201641559601,-0.00686302222311497,0.536123931407928,-0.844111382961273,-0.00183270161505789,0.4798564016819,-0.877345144748688,0.0105090765282512,0.481177687644959,-0.876560091972351,-0.0119405463337898,0.670022308826447,-0.742244899272919,0.00965392123907804,0.671569168567657,-0.740878999233246,0.0122548341751099,0.654840528964996,-0.755667746067047,-0.0216350071132183,0.468428105115891,-0.883236706256866,0.0107799656689167,0.478707998991013,-0.877907991409302,-0.00190756120719016,0.478424042463303,-0.878126859664917,-0.00143588148057461,0.645868718624115,-0.763447165489197,0.01235365960747,0.647087335586548,-0.76231575012207,-0.00882403831928968,0.645675539970398,-0.763560891151428,0.00448578782379627,0.534907996654511,-0.844898521900177,-0.0454771220684052,0.517106175422668,-0.854712247848511,0.0406197793781757,0.545091032981873,-0.837392270565033,-0.0170193295925856,0.680375397205353,-0.73266613483429,0.00414096703752875,0.685667753219604,-0.727902889251709,0.00816378369927406,0.684736788272858,-0.728744745254517,-0.0170683972537518,0.680481672286987,-0.732566356658936,0.0109163280576468,0.721287548542023,-0.692549705505371,0.00409190589562058,0.685774207115173,-0.727802872657776,-0.0445613004267216,0.515265882015228,-0.855871140956879,0.0125182177871466,0.57247269153595,-0.8198282122612,0.0414393991231918,0.543015122413635,-0.83869993686676,0.0204719007015228,0.719563841819763,-0.694124460220337,
- -0.0076745580881834,0.659866869449615,-0.751343369483948,-0.0253692511469126,0.580106616020203,-0.814145386219025,0.020609874278307,0.570728540420532,-0.820880115032196,-0.030625844374299,0.486971527338028,-0.872880756855011,-0.0167867429554462,0.44106912612915,-0.897316098213196,-0.00128702784422785,0.440903574228287,-0.897553682327271,0.020656680688262,0.570718348026276,-0.820886015892029,-0.0167478509247303,0.441060990095139,-0.897320985794067,0.0162897575646639,0.571664690971375,-0.820325613021851,-0.00447145337238908,0.440899461507797,-0.897545337677002,-0.00448991218581796,0.597475349903107,-0.801874697208405,0.00115846877451986,0.597480952739716,-0.801882266998291,0.020375095307827,0.719581663608551,-0.694108843803406,-0.0254746675491333,0.580126643180847,-0.814127862453461,0.015688119456172,0.720435500144959,-0.693344473838806,0.000553809804841876,0.597481250762939,-0.801882684230804,0.000552088604308665,0.72264176607132,-0.691222608089447
- }
- TangentsW: *546 {
- 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
- }
- }
- LayerElementTangent: 1 {
- Version: 102
- Name: "LightMapUV"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *1638 {
- a: 0,-0.00050602457486093,-0.99999988079071,0,-0.00050602457486093,-0.99999988079071,0,-0.00050602457486093,-0.99999988079071,-0,0.000557855935767293,-0.999999940395355,-0,0.000557855935767293,-0.999999940395355,-0,0.000557855935767293,-0.999999940395355,0,-9.86769591690972e-005,-1,0,-9.86769591690972e-005,-1,0,-9.86769591690972e-005,-1,0,-0.00237733544781804,-0.999997198581696,0,-0.00237733544781804,-0.999997198581696,0,-0.00237733544781804,-0.999997198581696,-0,0.000383891339879483,-0.999999940395355,-0,0.000383891339879483,-0.999999940395355,-0,0.000383891339879483,-0.999999940395355,-0,0.00047507110866718,-0.99999988079071,-0,0.00047507110866718,-0.99999988079071,-0,0.00047507110866718,-0.99999988079071,0,-0.000310543749947101,0.999999940395355,0,-0.000310543749947101,0.999999940395355,0,-0.000310543749947101,0.999999940395355,0,0.000903155654668808,0.999999582767487,0,0.000903155654668808,0.999999582767487,0,0.000903155654668808,0.999999582767487,0,6.88472355250269e-005,1,0,6.88472355250269e-005,1,0,6.88472355250269e-005,1,0,-0.0045653716661036,0.999989569187164,0,-0.0045653716661036,0.999989569187164,0,-0.0045653716661036,0.999989569187164,0,-0.000515120336785913,0.99999988079071,0,-0.000515120336785913,0.99999988079071,0,-0.000515120336785913,0.99999988079071,0,-0.000477663677884266,0.99999988079071,0,-0.000477663677884266,0.99999988079071,0,-0.000477663677884266,0.99999988079071,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,2.72107918135589e-005,-1,-2.2180342552819e-016,2.72107918135589e-005,-1,-2.2180342552819e-016,2.72107918135589e-005,-1,-2.2180342552819e-016,-0.00121032912284136,-0.999999284744263,-2.21330529680716e-016,-0.00121032912284136,-0.999999284744263,-2.21330529680716e-016,-0.00121032912284136,-0.999999284744263,-2.21330529680716e-016,0.00118715362623334,-0.999999284744263,-2.2132959000354e-016,0.00118715362623334,-0.999999284744263,-2.2132959000354e-016,
- 0.00118715362623334,-0.999999284744263,-2.2132959000354e-016,0,-0.999969005584717,-0.00787377171218395,0,-0.999969005584717,-0.00787377171218395,0,-0.999969005584717,-0.00787377171218395,-0,-0.999969005584717,-0.00787377171218395,-0,-0.999969005584717,-0.00787377171218395,-0,-0.999969005584717,-0.00787377171218395,2.72092711384175e-005,-0.999969005584717,-0.00787377171218395,2.72092711384175e-005,-0.999969005584717,-0.00787377171218395,2.72092711384175e-005,-0.999969005584717,-0.00787377171218395,-0.0125324549153447,-0.999890565872192,-0.00787315424531698,-0.0125324549153447,-0.999890565872192,-0.00787315424531698,-0.0125324549153447,-0.999890565872192,-0.00787315424531698,0.0125068090856075,-0.999890804290771,-0.00787315517663956,0.0125068090856075,-0.999890804290771,-0.00787315517663956,0.0125068090856075,-0.999890804290771,-0.00787315517663956,0.54521232843399,-0.662146329879761,-0.514106810092926,0.54521232843399,-0.662146329879761,-0.514106810092926,0.54521232843399,-0.662146329879761,-0.514106810092926,0.545236706733704,-0.662682175636292,-0.513390004634857,0.545236706733704,-0.662682175636292,-0.513390004634857,0.545236706733704,-0.662682175636292,-0.513390004634857,-0.00242169131524861,-0.567745864391327,0.823200345039368,-0.00242169131524861,-0.567745864391327,0.823200345039368,-0.00242169131524861,-0.567745864391327,0.823200345039368,-0.00242154230363667,-0.567745685577393,0.823200464248657,-0.00242154230363667,-0.567745685577393,0.823200464248657,-0.00242154230363667,-0.567745685577393,0.823200464248657,-0.908418893814087,-0.364210993051529,-0.20524488389492,-0.908418893814087,-0.364210993051529,-0.20524488389492,-0.908418893814087,-0.364210993051529,-0.20524488389492,-0.909119248390198,-0.342049300670624,-0.237706691026688,-0.909119248390198,-0.342049300670624,-0.237706691026688,-0.909119248390198,-0.342049300670624,-0.237706691026688,-0.000696868286468089,-0.570295393466949,0.821439385414124,-0.000696868286468089,-0.570295393466949,0.821439385414124,-0.000696868286468089,-0.570295393466949,0.821439385414124,
- -0.000696787028573453,-0.570295512676239,0.821439445018768,-0.000696787028573453,-0.570295512676239,0.821439445018768,-0.000696787028573453,-0.570295512676239,0.821439445018768,-0.999952733516693,-0.00391262210905552,-0.0088992565870285,-0.999952733516693,-0.00391262210905552,-0.0088992565870285,-0.999952733516693,-0.00391262210905552,-0.0088992565870285,-1,0,0,-1,0,0,-1,0,0,-0.99999988079071,0.000219580164412037,0.000499438319820911,-0.99999988079071,0.000219580164412037,0.000499438319820911,-0.99999988079071,0.000219580164412037,0.000499438319820911,0.999952971935272,-0.00390770379453897,-0.0088880704715848,0.999952971935272,-0.00390770379453897,-0.0088880704715848,0.999952971935272,-0.00390770379453897,-0.0088880704715848,1,0,-0,1,0,-0,1,0,-0,0.999999940395355,0.000140212665428407,0.000318915816023946,0.999999940395355,0.000140212665428407,0.000318915816023946,0.999999940395355,0.000140212665428407,0.000318915816023946,1,0,-0,1,0,-0,1,0,-0,-0.0220833774656057,-0.999756157398224,-2.2236901854383e-016,-0.0220833774656057,-0.999756157398224,-2.2236901854383e-016,-0.0220833774656057,-0.999756157398224,-2.2236901854383e-016,-0.00384239619597793,-0.999992609024048,-2.22042844684688e-016,-0.00384239619597793,-0.999992609024048,-2.22042844684688e-016,-0.00384239619597793,-0.999992609024048,-2.22042844684688e-016,-0.00166245060972869,-0.99999862909317,-2.22228728711941e-016,-0.00166245060972869,-0.99999862909317,-2.22228728711941e-016,-0.00166245060972869,-0.99999862909317,-2.22228728711941e-016,0.00506019964814186,-0.999987185001373,-2.22331510866134e-016,0.00506019964814186,-0.999987185001373,-2.22331510866134e-016,0.00506019964814186,-0.999987185001373,-2.22331510866134e-016,1,0,0,1,0,0,1,0,0,0.999999582767487,-0.000925407570321113,0,0.999999582767487,-0.000925407570321113,0,0.999999582767487,-0.000925407570321113,0,1,0,0,1,0,0,1,0,0,0.999989449977875,0.00461306842043996,7.14852638994412e-019,0.999989449977875,0.00461306842043996,7.14852638994412e-019,0.999989449977875,0.00461306842043996,7.14852638994412e-019,0.00103593047242612,0.165678128600121,-0.986179351806641,
- 0.000749392143916339,0.102606229484081,-0.99472177028656,0.00103442673571408,0.102629743516445,-0.994719088077545,-0.00270744366571307,0.102714464068413,-0.994707226753235,-0.00192917115055025,0.165677905082703,-0.986178040504456,0.000892274489160627,0.197601526975632,-0.980282008647919,0.00477928901091218,0.19744873046875,-0.980301558971405,-0.00664029503241181,0.140552908182144,-0.990050911903381,0.00128732132725418,0.102589271962643,-0.994722962379456,0.000831142126116902,0.330350309610367,-0.94385814666748,-0.0012960183667019,0.197686225175858,-0.980264484882355,0.000831306038890034,0.165678158402443,-0.986179530620575,-0.00636813323944807,0.134792149066925,-0.990853428840637,0.00146129238419235,0.197579339146614,-0.980285823345184,-0.0053100404329598,0.134875029325485,-0.990848481655121,-0.0052843876183033,0.134223446249962,-0.990936994552612,0.00673482567071915,0.130871057510376,-0.991376519203186,-0.00633794814348221,0.134153231978416,-0.99094033241272,-0.00300500402227044,0.330348908901215,-0.943854093551636,-0.000278871069895104,0.346811205148697,-0.937934935092926,-0.00641284557059407,0.197880581021309,-0.980205178260803,-0.00864216592162848,0.197963640093803,-0.980171263217926,-0.00250664702616632,0.346892476081848,-0.937901556491852,-0.0110156238079071,0.279796838760376,-0.959996044635773,0.0028838780708611,0.440820515155792,-0.897590637207031,0.00130387058015913,0.330350130796433,-0.943857669830322,0.00130235299002379,0.440903544425964,-0.897553682327271,0.00244662072509527,0.330349445343018,-0.9438556432724,0.00398205872625113,0.440787822008133,-0.897602498531342,0.00033293038723059,0.346788585186005,-0.937943279743195,-0.00421969126909971,0.284145265817642,-0.95877206325531,-0.0111389476805925,0.282929271459579,-0.959076106548309,0.0044879075139761,0.346631526947021,-0.937990665435791,7.48230449971743e-005,0.346798181533813,-0.937939882278442,0.00372323370538652,0.440795570611954,-0.897599816322327,0.0106244198977947,0.39539510011673,-0.918449819087982,0.0454168058931828,0.233214095234871,-0.971364259719849,
- -0.00996039155870676,0.25299397110939,-0.96741658449173,-0.00828410312533379,0.252899259328842,-0.967457175254822,0.00394077366217971,0.438993334770203,-0.898481667041779,0.0157940182834864,0.433076083660126,-0.901219010353088,-0.0255495961755514,0.44148200750351,-0.89690625667572,0.0175285972654819,0.445594638586044,-0.89506322145462,0.00361798610538244,0.44532123208046,-0.895363569259644,0.0148392850533128,0.446235597133636,-0.894792497158051,0.0170527547597885,0.37142875790596,-0.928304851055145,0.00789035297930241,0.375243246555328,-0.926892817020416,-0.0151683585718274,0.383062213659287,-0.923598110675812,0.0268056504428387,0.184148535132408,-0.982532858848572,-0.015597416087985,0.195820286870003,-0.980515778064728,-0.0403693132102489,0.206933319568634,-0.97752183675766,-0.0142807215452194,0.434297531843185,-0.900656402111053,0.0174022745341063,0.372397512197495,-0.927910149097443,-0.0148251159116626,0.383798211812973,-0.923298001289368,-0.0200062431395054,0.255080908536911,-0.966712713241577,0.0295592322945595,0.191428512334824,-0.981061339378357,-0.0377498865127563,0.214669853448868,-0.975956976413727,0.012535959482193,0.358874648809433,-0.933301687240601,-0.0180500112473965,0.433445453643799,-0.900999009609222,0.024997565895319,0.265277892351151,-0.963847994804382,0.017851572483778,0.160426557064056,-0.986886441707611,-0.024651175364852,0.253996849060059,-0.966890871524811,0.00934286043047905,0.116343759000301,-0.993165075778961,-0.0180273372679949,0.433450609445572,-0.9009969830513,0.00070846889866516,0.259128510951996,-0.965842604637146,0.0250173006206751,0.265282213687897,-0.963846206665039,-0.00384519714862108,0.259126663208008,-0.965835690498352,0.00937449745833874,0.116351671516895,-0.99316394329071,-0.0246137976646423,0.254005581140518,-0.966889500617981,-0.0138171147555113,0.43440181016922,-0.900613188743591,0.00125369487795979,0.440903514623642,-0.897553622722626,0.00126059749163687,0.259128361940384,-0.965842068195343,0.013636183924973,0.117414526641369,-0.992989361286163,0.0030503342859447,0.259127408266068,-0.965838432312012,
- 0.00303798168897629,0.110431015491486,-0.99387913942337,-0.999501883983612,-0.0313960164785385,-0.0032392714638263,-1,0,-0,-1,0,-0,-0.997749030590057,0.0111104045063257,-0.0661333575844765,-0.997116684913635,-0.024235250428319,-0.071909636259079,-0.997048676013947,-0.0256120562553406,-0.0723739266395569,-0.0471914485096931,-0.998885869979858,-6.76367967937563e-018,-0.966457068920136,-0.0876417979598045,0.24141189455986,-0.990164399147034,-0.0450981482863426,0.132441818714142,-0.999216914176941,-0.0391938872635365,-0.00544169778004289,-0.999987304210663,0.00166648149024695,-0.00476138200610876,-0.999991357326508,-0.000689415435772389,0.0041036494076252,-0.998725414276123,-0.0324823744595051,-0.0386325009167194,-0.0460174642503262,-0.974036574363709,-0.221664369106293,-0.0383454374969006,-0.973974943161011,-0.223388507962227,-0.0393393337726593,-0.999218940734863,0.00376164098270237,-0.0471911281347275,-0.99887877702713,0.00376783544197679,0.346358746290207,-0.938033401966095,0.0113563640043139,-0.999968945980072,-0.00260321539826691,0.00743776420131326,-0.999218642711639,-0.0390208587050438,-0.0063002654351294,-0.999186933040619,-0.0399395115673542,-0.00552574498578906,-0.026560366153717,-0.67463493347168,0.737673580646515,-0.908803164958954,-0.177752405405045,0.377466350793839,-0.919156312942505,-0.113130711019039,0.377297073602676,-1,0,0,-0.999504446983337,-0.0282527934759855,-0.0138785652816296,-1,0,0,-0.999497473239899,-0.0299120470881462,-0.0105003006756306,-0.999991297721863,-0.00137742469087243,0.00393549911677837,-0.99921590089798,-0.0383623465895653,-0.00979455281049013,-0.900386214256287,-0.183668836951256,0.394424170255661,-0.0392364449799061,-0.996606111526489,-0.0723670274019241,0.120081529021263,-0.991410613059998,-0.0518229976296425,0.115630745887756,-0.991450726985931,0.0604567714035511,-0.899621307849884,-0.217553645372391,0.378618448972702,-0.933833301067352,-0.157913103699684,0.320965796709061,0.345161974430084,-0.905423700809479,-0.247125759720802,0.12422526627779,-0.960543036460876,-0.248847633600235,
- -0.0380684211850166,-0.966937780380249,-0.252155035734177,-0.999480664730072,-0.0312937758862972,-0.00768620986491442,0.123231917619705,-0.88642805814743,-0.446160554885864,-0.0456943660974503,-0.897706151008606,-0.438219040632248,0.12368805706501,-0.898790299892426,-0.420568078756332,0.396705776453018,-0.830649673938751,-0.390699297189713,-0.0456226766109467,-0.904855787754059,-0.423266530036926,0.317145496606827,-0.884114444255829,-0.343162685632706,0.396010786294937,-0.85847806930542,-0.325869798660278,0.124378949403763,-0.925760865211487,-0.357066780328751,0.124382339417934,-0.925975024700165,-0.356509894132614,0.33788388967514,-0.874192297458649,-0.348743945360184,0.317155361175537,-0.884406924247742,-0.342398762702942,0.313924938440323,-0.839837968349457,-0.442858159542084,0.970333278179169,-0.188753038644791,-0.151081636548042,0.395888119935989,-0.806270956993103,-0.439544916152954,0.34725347161293,-0.937680602073669,-0.0130433039739728,0.962658703327179,-0.257262706756592,0.0842861607670784,0.308324486017227,-0.948415756225586,-0.0737804025411606,0.956016540527344,-0.28724879026413,0.0593355856835842,0.317106455564499,-0.909927666187286,-0.267348349094391,0.973232090473175,-0.216245219111443,-0.0778299197554588,0.946658134460449,-0.275600671768188,0.166980862617493,0.347541362047195,-0.937397480010986,-0.0223866682499647,0.9649698138237,-0.25311815738678,0.0690253078937531,0.999865829944611,-0.00424502929672599,0.0158223770558834,0.971712648868561,-0.211715877056122,-0.104646638035774,0.973264694213867,-0.225640669465065,-0.042919859290123,0.999922692775726,-0.00322211813181639,0.0120097091421485,0.973326444625854,-0.224559232592583,-0.0469974242150784,0.969334959983826,-0.245683759450912,-0.00542614748701453,0.971713721752167,-0.212365090847015,-0.103312745690346,1,0,0,1,0,0,1,0,0,0.969582915306091,-0.243167281150818,-0.0279044415801764,1,0,0,-2.73420504015576e-008,0.722641825675964,-0.691222667694092,-2.73590803345769e-008,0.781638503074646,-0.623731732368469,-0.00704797869548202,0.719791829586029,-0.69415420293808,
- -0.0172267500311136,0.720887362957001,-0.692838132381439,-0.00137730001006275,0.781637728214264,-0.623731136322021,0.00319853029213846,0.849691033363342,-0.527271211147308,0.00385928386822343,0.781632661819458,-0.623727083206177,0.00386140611954033,0.864341914653778,-0.502889811992645,0.00576321640983224,0.849628031253815,-0.527350902557373,2.12529744914036e-008,0.864348351955414,-0.502893567085266,2.1226977509059e-008,0.908190488815308,-0.418557375669479,-0.00349429016932845,0.849829077720642,-0.527046978473663,-0.00647217221558094,0.849878132343292,-0.526939570903778,-0.00323372310958803,0.908185660839081,-0.4185551404953,-0.00192879582755268,0.908214211463928,-0.418501198291779,-0.000728838320355862,0.908199787139893,-0.418536275625229,-0.00285268248990178,0.887799501419067,-0.46022155880928,-0.00522819627076387,0.849858522415161,-0.526984989643097,-0.0889357179403305,0.726428866386414,-0.681462824344635,-0.106566928327084,0.847125351428986,-0.520597815513611,0.00397048518061638,0.618047773838043,-0.786130547523499,0.00397048518061638,0.618047773838043,-0.786130547523499,-0.106566928327084,0.847125351428986,-0.520597815513611,0.0162762776017189,0.619291663169861,-0.784992277622223,-0.0038185422308743,0.783292770385742,-0.621641218662262,0.0247766189277172,0.782319307327271,-0.622384786605835,-0.0120433261618018,0.720339059829712,-0.693517565727234,-0.00964969024062157,0.881182074546814,-0.472678601741791,-0.00221624947153032,0.881326377391815,-0.472503066062927,0.0256851930171251,0.875759899616241,-0.482063174247742,0.0247766189277172,0.782319307327271,-0.622384786605835,-0.0038185422308743,0.783292770385742,-0.621641218662262,-0.0366907194256783,0.793275892734528,-0.607755780220032,0.0267335195094347,0.876954615116119,-0.479829281568527,-0.00241055642254651,0.883320212364197,-0.468763947486877,-0.0287807937711477,0.887852907180786,-0.459226340055466,-0.0413463823497295,0.786217331886292,-0.61656528711319,0.0364489480853081,0.768086314201355,-0.639308154582977,0.0239861290901899,0.775266528129578,-0.631178796291351,
- 0.00937412492930889,0.835751533508301,-0.549027979373932,0.0279658455401659,0.878350734710693,-0.477197974920273,-0.0275770854204893,0.889173328876495,-0.45673879981041,-0.0185717865824699,0.831895351409912,-0.554621696472168,0.0342122949659824,0.763841152191162,-0.644497036933899,-0.0437487848103046,0.782525420188904,-0.621079742908478,-0.0244422368705273,0.89257150888443,-0.450242877006531,-0.0138525450602174,0.908596158027649,-0.417446255683899,0.022111589089036,0.837279975414276,-0.546327114105225,0.031097324565053,0.75787079334259,-0.651663303375244,-0.0269204936921597,0.830609381198883,-0.556204378604889,0.0143049564212561,0.725501120090485,-0.688072383403778,-0.0021943892352283,0.908188223838806,-0.418556302785873,0.021898714825511,0.837255597114563,-0.546373009681702,-0.0140646370127797,0.908571779727936,-0.417491972446442,-0.0269060097634792,0.830611646175385,-0.556201696395874,-0.000745425000786781,0.72264164686203,-0.691222488880157,0.0143181849271059,0.725503146648407,-0.688069880008698,0.0226913932710886,0.837346136569977,-0.546201944351196,-2.00290752871979e-008,0.908190488815308,-0.418557375669479,-2.00986942644477e-008,0.834464609622955,-0.551061511039734,0.00317431543953717,0.722638189792633,-0.691219210624695,-0.0204596929252148,0.831609964370728,-0.554983139038086,0.00318118091672659,0.834460496902466,-0.551058769226074,0.00180161604657769,0.722591757774353,-0.691272675991058,1.09195035236098e-008,0.637084662914276,-0.770793855190277,1.09034852258105e-008,0.722641825675964,-0.691222667694092,0.0020703433547169,0.637083292007446,-0.770792186260223,0.00429149065166712,0.722518682479858,-0.691338062286377,-0.00402551703155041,0.653892576694489,-0.756576657295227,-0.875480949878693,-0.196695685386658,0.441411226987839,-0.93139374256134,-0.236435011029243,0.27677458524704,0.0832545235753059,0.609019160270691,0.788773953914642,-0.0052293362095952,0.637075960636139,-0.770783305168152,0.0055110645480454,0.652737379074097,-0.7575643658638,-0.00829894002526999,0.536622703075409,-0.843781471252441,-1.55509871646586e-009,0.637084662914276,-0.770793855190277,
- -0.00182869844138622,0.536424934864044,-0.843946039676666,-1.55469770390937e-009,0.512176334857941,-0.858880341053009,0.00875700451433659,0.536052942276001,-0.844138979911804,0.0057889511808753,0.440896481275558,-0.89753931760788,0.0057918531820178,0.512167751789093,-0.858865916728973,0.00289226905442774,0.440902024507523,-0.897550582885742,0.00567337591201067,0.536167502403259,-0.844092547893524,0.00166116619948298,0.44085630774498,-0.897576153278351,0.00559850409626961,0.536170244216919,-0.844091296195984,0.00177029252517968,0.481049507856369,-0.87669163942337,0.00163873960264027,0.440856963396072,-0.897575855255127,-0.00963716581463814,0.53666079044342,-0.843743026256561,0.0043031582608819,0.652887046337128,-0.757443070411682,0.00303886039182544,0.598875224590302,-0.800836563110352,0.0019908444955945,0.476828843355179,-0.878993928432465,0.00931227765977383,0.536031723022461,-0.844146490097046,-0.0108072869479656,0.478458672761917,-0.878043591976166,-0.0105558438226581,0.663480341434479,-0.748119294643402,0.0109006781131029,0.661966443061829,-0.749454200267792,-0.00888094399124384,0.65445739030838,-0.756046712398529,-0.0110854795202613,0.475917130708694,-0.879420280456543,0.0204115007072687,0.465887308120728,-0.884608745574951,0.00205021048896015,0.475690811872482,-0.879610300064087,0.00877371057868004,0.645277321338654,-0.763898015022278,-0.0123968189582229,0.646689414978027,-0.762652695178986,0.00126821012236178,0.645489096641541,-0.763768434524536,0.0451009757816792,0.516350626945496,-0.855188846588135,-0.00458129402250052,0.534073650836945,-0.845425665378571,-0.0409313440322876,0.544302403926849,-0.837889909744263,0.0172858089208603,0.680952131748199,-0.732123911380768,-0.0080943051725626,0.685344815254211,-0.728173792362213,-0.00387500901706517,0.686244666576386,-0.727360546588898,-0.0102789038792253,0.721400022506714,-0.692442297935486,0.0172858089208603,0.680952131748199,-0.732123911380768,-0.00387500901706517,0.686244666576386,-0.727360546588898,-0.0131474491208792,0.572338461875916,-0.819912075996399,0.044382032006979,0.514905333518982,-0.856097400188446,
- -0.0415740236639977,0.542673647403717,-0.838914155960083,0.00808172114193439,0.660771906375885,-0.750543236732483,-0.0194678921252489,0.719748258590698,-0.693962156772614,0.0263801291584969,0.5802983045578,-0.813976764678955,0.0301282424479723,0.485951125621796,-0.873466551303864,-0.0216862428933382,0.570493519306183,-0.821015775203705,0.0157161578536034,0.440843224525452,-0.897446513175964,-0.0216862428933382,0.570493519306183,-0.821015775203705,0.000194230437045917,0.440903872251511,-0.897554337978363,0.0157161578536034,0.440843224525452,-0.897446513175964,0.00312299164943397,0.440901726484299,-0.89754992723465,-0.0175696387887001,0.57138854265213,-0.82049161195755,0.00313590909354389,0.597478449344635,-0.801878869533539,-0.0194678921252489,0.719748258590698,-0.693962156772614,-0.000171627805684693,0.597481369972229,-0.801882803440094,0.0263801291584969,0.5802983045578,-0.813976764678955,-0.0151671767234802,0.72052937746048,-0.69325852394104,-9.10088626682182e-009,0.722641825675964,-0.691222667694092,-9.12926090279598e-009,0.597481369972229,-0.801882803440094,-0.0057193418033421,0.722630023956299,-0.691211342811584,0.00151176273357123,0.71916389465332,-0.69483894109726,-0.00572281703352928,0.781625688076019,-0.623721539974213,0.004061299841851,0.78163206577301,-0.623726606369019,0.0198829881846905,0.721160590648651,-0.692482531070709,-0.000492208055220544,0.8497514128685,-0.527183353900909,-9.26337562212609e-010,0.781638503074646,-0.623731732368469,-0.00192629417870194,0.849720299243927,-0.527230441570282,-9.26887011587496e-010,0.864348351955414,-0.502893567085266,2.12529744914036e-008,0.864348351955414,-0.502893567085266,0.00349433277733624,0.849829077720642,-0.527046978473663,2.1226977509059e-008,0.908190488815308,-0.418557375669479,0.00287569407373667,0.84981781244278,-0.527068674564362,-0.00166067527607083,0.9081671833992,-0.418604373931885,-0.000359297351678833,0.908190429210663,-0.418557345867157,-0.00244644074700773,0.90815532207489,-0.418626248836517,0.00205863662995398,0.849802613258362,-0.527097046375275,
- 0.00290477718226612,0.888322055339813,-0.459211856126785,0,-0,-0,0,-0,-0,0,-0,-0,-0.00396982673555613,0.618063390254974,-0.786118268966675,-0.0162754189223051,0.619307398796082,-0.784979939460754,0.106578834354877,0.847124516963959,-0.520596742630005,-0.0255444813519716,0.789101123809814,-0.613731980323792,0.00419319933280349,0.790264070034027,-0.612752079963684,0.0163984652608633,0.720801055431366,-0.69294798374176,-0.0242303311824799,0.874091386795044,-0.485156804323196,0.00204271776601672,0.879532516002655,-0.475834429264069,0.00952817592769861,0.879381716251373,-0.476022332906723,0.0039294483140111,0.785365879535675,-0.619019329547882,-0.0250139962881804,0.784423112869263,-0.619721472263336,0.0354119725525379,0.795192539691925,-0.605322122573853,0.00247269263491035,0.883954524993896,-0.467566311359406,-0.0284434761852026,0.878889501094818,-0.476176649332047,0.0287865158170462,0.899061262607574,-0.436875522136688,-0.037623543292284,0.770301699638367,-0.6365687251091,0.0399466790258884,0.788352787494659,-0.613925218582153,-0.0242461431771517,0.777594208717346,-0.628298759460449,-0.033113144338131,0.884087264537811,-0.466147154569626,-0.00725903222337365,0.835483849048615,-0.549467265605927,0.0301902666687965,0.898436844348907,-0.438063651323318,-0.0348346829414368,0.765025854110718,-0.643056750297546,0.0166932046413422,0.832176208496094,-0.554259955883026,0.0429739691317081,0.783719837665558,-0.619626104831696,-0.0149722062051296,0.836440920829773,-0.547852575778961,0.00700653763487935,0.908168077468872,-0.418547034263611,0.0360353887081146,0.895800054073334,-0.442994296550751,0.0269204173237085,0.830609381198883,-0.556204378604889,-0.0310974568128586,0.757871031761169,-0.65166300535202,-0.0143050318583846,0.725501120090485,-0.688072383403778,-0.00330246100202203,0.908185422420502,-0.418555021286011,-0.0258440673351288,0.837700724601746,-0.54551774263382,-0.00331399845890701,0.834460139274597,-0.551058530807495,0.000807911506853998,0.72264164686203,-0.691222488880157,0.0269650910049677,0.8306023478508,-0.556212723255157,
- -0.0142593290656805,0.725493907928467,-0.688080847263336,0.02351332642138,0.831141650676727,-0.555563390254974,1.92502938034522e-008,0.722641825675964,-0.691222667694092,1.92927096520634e-008,0.834464609622955,-0.551061511039734,1.09195035236098e-008,0.637084662914276,-0.770793855190277,-0.00180159427691251,0.722591757774353,-0.691272675991058,1.09034852258105e-008,0.722641825675964,-0.691222667694092,0.00141241063829511,0.722679495811462,-0.691181838512421,0.00364404730498791,0.637080430984497,-0.770788729190826,0.00959011819213629,0.654538571834564,-0.755967795848846,0.875486135482788,-0.196688503026962,0.441404163837433,-0.0832545086741447,0.609017312526703,0.788775384426117,0.931397974491119,-0.236427068710327,0.276767194271088,0.00162004819139838,0.637083828449249,-0.770792841911316,0.00468250131234527,0.536514937877655,-0.843877851963043,-0.00905844662338495,0.65229207277298,-0.757913589477539,0.00182869529817253,0.536424934864044,-0.843946039676666,-1.55509871646586e-009,0.637084662914276,-0.770793855190277,-1.55469770390937e-009,0.512176334857941,-0.858880341053009,-0.00296160182915628,0.536264061927795,-0.844045042991638,-1.0987563747733e-008,0.512176334857941,-0.858880341053009,-1.09821201021987e-008,0.440903872251511,-0.897554337978363,-0.00561763439327478,0.536169528961182,-0.844091653823853,-0.00283653498627245,0.440902143716812,-0.897550821304321,-0.00160548707935959,0.440857976675034,-0.897575557231903,-0.00186932517681271,0.47915580868721,-0.877727866172791,-0.00716487457975745,0.536112785339355,-0.84411609172821,-0.00318663660436869,0.440811544656754,-0.897594034671783,-0.00681246584281325,0.652574956417084,-0.757693529129028,0.00719085475429893,0.536590456962585,-0.843812167644501,-0.00296178902499378,0.598237812519073,-0.801313281059265,-0.00614419812336564,0.536150395870209,-0.8441002368927,-0.00178627192508429,0.480744123458862,-0.876859128475189,0.0104215163737535,0.481974989175797,-0.876123011112213,-0.0121542178094387,0.671669185161591,-0.740751504898071,0.0094683151692152,0.673222601413727,-0.739379286766052,
- 0.0129487365484238,0.654918432235718,-0.75558876991272,-0.0222148820757866,0.469630926847458,-0.882583439350128,0.0106351161375642,0.480029225349426,-0.877188146114349,-0.00183994020335376,0.479718029499054,-0.877420902252197,-0.00126818323042244,0.645489037036896,-0.763768494129181,0.0123968245461583,0.646689355373383,-0.76265275478363,-0.00877370405942202,0.645277321338654,-0.763898074626923,0.00458116875961423,0.534074664115906,-0.845424890518188,-0.0451014786958694,0.516351640224457,-0.855188190937042,0.0409309305250645,0.544303476810455,-0.83788925409317,-0.0172857642173767,0.680952072143555,-0.732123970985413,0.00387505348771811,0.686244487762451,-0.727360606193542,0.00809431634843349,0.685344696044922,-0.728173851966858,-0.0172857642173767,0.680952072143555,-0.732123970985413,0.0102789383381605,0.721400022506714,-0.692442297935486,0.00387505348771811,0.686244487762451,-0.727360606193542,-0.0443825460970402,0.514906406402588,-0.856096744537354,0.0131468279287219,0.572338581085205,-0.819912016391754,0.0415736027061939,0.542674720287323,-0.838913440704346,0.0194680187851191,0.719748198986053,-0.693962156772614,-0.00808169320225716,0.66077184677124,-0.750543296337128,-0.0263799987733364,0.580298244953156,-0.81397670507431,0.021686103194952,0.570493578910828,-0.82101583480835,-0.0301282834261656,0.485951215028763,-0.873466491699219,-0.0157162994146347,0.440843254327774,-0.897446513175964,-0.00019436766160652,0.440903872251511,-0.897554337978363,0.021686103194952,0.570493578910828,-0.82101583480835,-0.0157162994146347,0.440843254327774,-0.897446513175964,0.0146180531010032,0.572023928165436,-0.820106685161591,-0.00623258808627725,0.440895318984985,-0.897536873817444,-0.00625825161114335,0.597469687461853,-0.801867067813873,0.000171749052242376,0.597481369972229,-0.801882803440094,0.0194680187851191,0.719748198986053,-0.693962156772614,-0.0263799987733364,0.580298244953156,-0.81397670507431,0.0151671599596739,0.72052937746048,-0.69325852394104,-9.12926090279598e-009,0.597481369972229,-0.801882803440094,-9.10088626682182e-009,0.722641825675964,-0.691222667694092
- }
- TangentsW: *546 {
- 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
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "UVmap_0"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *630 {
- a: 0.94873046875,0.74462890625,1.337890625,0.8233642578125,1.337890625,1.303466796875,0.58154296875,0.600830078125,-0.337890625,0.14404296875,0.25146484375,0.39208984375,-0.0294342041015625,0.1259765625,-0.337890625,-0.302734375,0.578125,1.1998291015625,0.38818359375,0.648193359375,0.578125,0.648193359375,0.38818359375,1.1998291015625,0.483154296875,1.44287109375,0.59912109375,1.2098388671875,0.367431640625,1.2098388671875,0.38818359375,-0.1318359375,0.578125,-0.6455078125,0.38818359375,-0.6455078125,0.578125,-0.1318359375,0.483154296875,0.11083984375,0.367431640625,-0.1220703125,0.59912109375,-0.1220703125,2.896484375,0.0478515625,0.94970703125,0.2451171875,0.8330078125,0.0478515625,3.013671875,0.2451171875,1.021484375,0.2724609375,2.92578125,0.2724609375,2.818359375,0.45458984375,0.91357421875,0.45458984375,0.82958984375,0.02734375,2.892578125,0.02734375,2.9296875,0.25341796875,1.0244140625,0.25341796875,0.49267578125,0.01904296875,0.5244140625,0.14111328125,0.52734375,0.14208984375,0.39208984375,0.14111328125,0.39208984375,0.0146484375,0.5009765625,0.03564453125,0.47265625,0.0146484375,0.5986328125,0.0419921875,0.630859375,0.0146484375,0.7158203125,0.0146484375,0.716796875,0.14111328125,0.5791015625,0.14111328125,0.576171875,0.1376953125,0.78173828125,0.996213912963867,0.99951171875,0.869873046875,0.99951171875,0.996494293212891,0.69970703125,0.874755859375,0.99951171875,0.8656005859375,0.326416015625,0.995830535888672,0.66357421875,0.864990234375,1,0.7626953125,0.2763671875,0.869873046875,3.0815601348877e-005,0.869873046875,8.34465026855469e-007,0.995403289794922,0.25244140625,0.8541259765625,3.14712524414063e-005,0.8656005859375,0.00169849395751953,0.7513427734375,0.37451171875,0.7528076171875,4.24385070800781e-005,0.72021484375,0.51513671875,0.720458984375,0.99951171875,0.72021484375,0.5,0.643310546875,4.48226928710938e-005,0.643798828125,1,0.641845703125,1,0.7625732421875,0.00169944763183594,0.7513427734375,0.51220703125,0.720703125,0.74169921875,0.996131896972656,0.9990234375,0.8651123046875,
- 0.4423828125,0.864501953125,0.34912109375,0.995643615722656,0.000876426696777344,0.866455078125,0.46630859375,0.8641357421875,1.001953125,0.8636474609375,0.4658203125,0.762451171875,0.000621318817138672,0.7520751953125,0.99951171875,0.7523193359375,0.50390625,0.71923828125,0.489501953125,0.64306640625,-0.000829696655273438,0.8660888671875,0.31982421875,0.995826721191406,0.2685546875,0.8687744140625,-0.00435638427734375,0.866943359375,0.67919921875,0.87158203125,0.63427734375,0.862060546875,0.99951171875,0.7506103515625,0.371337890625,0.7525634765625,4.10079956054688e-005,0.7523193359375,0.53125,0.720703125,0.475341796875,0.64404296875,0.00134468078613281,0.73486328125,1.337890625,1.303466796875,1.337890625,0.8233642578125,0.94873046875,0.74462890625,0.58154296875,0.600830078125,1.337890625,1.303466796875,0.94873046875,0.74462890625,-0.337890625,0.14404296875,1.337890625,1.303466796875,0.58154296875,0.600830078125,-0.337890625,0.14404296875,0.58154296875,0.600830078125,0.25146484375,0.39208984375,-0.337890625,0.14404296875,0.25146484375,0.39208984375,-0.0294342041015625,0.1259765625,-0.337890625,-0.302734375,-0.337890625,0.14404296875,-0.0294342041015625,0.1259765625,0.5244140625,0.14111328125,0.52734375,0.14208984375,0.5244140625,0.14111328125,0.630859375,0.0146484375,0.5986328125,0.0419921875,0.5986328125,0.0419921875,0.5986328125,0.0419921875,0.5791015625,0.14111328125,0.5791015625,0.14111328125,0.5986328125,0.0419921875,0.576171875,0.1376953125,0.99951171875,0.869873046875,0.99951171875,0.869873046875,0.69970703125,0.874755859375,0.99951171875,0.8656005859375,0.69970703125,0.874755859375,0.99951171875,0.869873046875,0.69970703125,0.874755859375,0.69970703125,0.874755859375,0.99951171875,0.8656005859375,0.66357421875,0.864990234375,0.66357421875,0.864990234375,0.99951171875,0.8656005859375,0.69970703125,0.874755859375,0.2763671875,0.869873046875,0.66357421875,0.864990234375,0.2763671875,0.869873046875,0.69970703125,0.874755859375,3.0815601348877e-005,0.869873046875,3.0815601348877e-005,0.869873046875,0.2763671875,
- 0.869873046875,0.2763671875,0.869873046875,0.66357421875,0.864990234375,0.25244140625,0.8541259765625,0.25244140625,0.8541259765625,3.0815601348877e-005,0.869873046875,0.2763671875,0.869873046875,0.25244140625,0.8541259765625,0.66357421875,0.864990234375,3.0815601348877e-005,0.869873046875,0.25244140625,0.8541259765625,3.14712524414063e-005,0.8656005859375,0.25244140625,0.8541259765625,3.14712524414063e-005,0.8656005859375,0.37451171875,0.7528076171875,0.25244140625,0.8541259765625,0.25244140625,0.8541259765625,0.37451171875,0.7528076171875,0.37451171875,0.7528076171875,4.24385070800781e-005,0.72021484375,0.37451171875,0.7528076171875,4.24385070800781e-005,0.72021484375,0.37451171875,0.7528076171875,0.99951171875,0.72021484375,4.24385070800781e-005,0.72021484375,0.99951171875,0.72021484375,4.24385070800781e-005,0.72021484375,0.99951171875,0.72021484375,0.99951171875,0.996494293212891,8.34465026855469e-007,0.995403289794922,8.34465026855469e-007,0.995403289794922,3.0815601348877e-005,0.869873046875,3.0815601348877e-005,0.869873046875,4.24385070800781e-005,0.72021484375,0.99951171875,0.72021484375,4.48226928710938e-005,0.643798828125,4.24385070800781e-005,0.72021484375,1,0.641845703125,0.99951171875,0.72021484375,4.48226928710938e-005,0.643798828125,1,0.641845703125,8.34465026855469e-007,0.995403289794922,0.74169921875,0.996131896972656,0.99951171875,0.996494293212891,0.74169921875,0.996131896972656,0.99951171875,0.996494293212891,0.99951171875,0.869873046875,0.99951171875,0.8656005859375,0.99951171875,0.869873046875,0.99951171875,0.8656005859375,0.99951171875,0.8656005859375,4.24385070800781e-005,0.72021484375,4.24385070800781e-005,0.72021484375,0.99951171875,0.72021484375,1,0.641845703125,0.99951171875,0.72021484375,1,0.641845703125,4.24385070800781e-005,0.72021484375,4.24385070800781e-005,0.72021484375,4.48226928710938e-005,0.643798828125,0.99951171875,0.996494293212891,0.9990234375,0.8651123046875,0.9990234375,0.8651123046875,0.4423828125,0.864501953125,0.4423828125,0.864501953125,0.4423828125,0.864501953125,8.34465026855469e-007,
- 0.995403289794922,0.4423828125,0.864501953125,3.0815601348877e-005,0.869873046875,8.34465026855469e-007,0.995403289794922,3.0815601348877e-005,0.869873046875,0.4423828125,0.864501953125,0.000876426696777344,0.866455078125,0.4423828125,0.864501953125,0.9990234375,0.8651123046875,0.46630859375,0.8641357421875,0.46630859375,0.8641357421875,0.000876426696777344,0.866455078125,0.4423828125,0.864501953125,1.001953125,0.8636474609375,0.46630859375,0.8641357421875,0.9990234375,0.8651123046875,0.4658203125,0.762451171875,0.000876426696777344,0.866455078125,0.46630859375,0.8641357421875,0.46630859375,0.8641357421875,1.001953125,0.8636474609375,0.4658203125,0.762451171875,0.000876426696777344,0.866455078125,0.4658203125,0.762451171875,0.99951171875,0.7523193359375,0.4658203125,0.762451171875,1.001953125,0.8636474609375,0.4658203125,0.762451171875,0.50390625,0.71923828125,0.99951171875,0.7523193359375,0.50390625,0.71923828125,0.4658203125,0.762451171875,0.50390625,0.71923828125,4.48226928710938e-005,0.643798828125,0.50390625,0.71923828125,0.99951171875,0.7523193359375,0.99951171875,0.72021484375,4.48226928710938e-005,0.643798828125,0.50390625,0.71923828125,1,0.641845703125,0.50390625,0.71923828125,0.99951171875,0.72021484375,0.50390625,0.71923828125,1,0.641845703125,-0.000829696655273438,0.8660888671875,8.34465026855469e-007,0.995403289794922,-0.000829696655273438,0.8660888671875,0.2685546875,0.8687744140625,0.2685546875,0.8687744140625,-0.00435638427734375,0.866943359375,-0.000829696655273438,0.8660888671875,0.67919921875,0.87158203125,0.2685546875,0.8687744140625,0.67919921875,0.87158203125,0.74169921875,0.996131896972656,0.67919921875,0.87158203125,0.74169921875,0.996131896972656,0.99951171875,0.996494293212891,0.67919921875,0.87158203125,0.99951171875,0.996494293212891,0.99951171875,0.869873046875,0.99951171875,0.8656005859375,0.67919921875,0.87158203125,0.99951171875,0.869873046875,0.2685546875,0.8687744140625,0.67919921875,0.87158203125,0.63427734375,0.862060546875,0.67919921875,0.87158203125,0.99951171875,0.8656005859375,
- 0.63427734375,0.862060546875,0.63427734375,0.862060546875,-0.00435638427734375,0.866943359375,0.2685546875,0.8687744140625,0.99951171875,0.7506103515625,0.63427734375,0.862060546875,0.99951171875,0.8656005859375,0.371337890625,0.7525634765625,-0.00435638427734375,0.866943359375,0.63427734375,0.862060546875,0.63427734375,0.862060546875,0.99951171875,0.7506103515625,0.371337890625,0.7525634765625,0.371337890625,0.7525634765625,4.10079956054688e-005,0.7523193359375,-0.00435638427734375,0.866943359375,0.371337890625,0.7525634765625,4.24385070800781e-005,0.72021484375,4.10079956054688e-005,0.7523193359375,0.99951171875,0.7506103515625,0.53125,0.720703125,0.371337890625,0.7525634765625,4.24385070800781e-005,0.72021484375,0.371337890625,0.7525634765625,0.53125,0.720703125,0.53125,0.720703125,0.99951171875,0.7506103515625,0.99951171875,0.72021484375,1,0.641845703125,0.53125,0.720703125,0.99951171875,0.72021484375,0.53125,0.720703125,1,0.641845703125,4.24385070800781e-005,0.72021484375,0.53125,0.720703125,4.24385070800781e-005,0.72021484375,4.48226928710938e-005,0.643798828125
- }
- UVIndex: *546 {
- a: 0,1,2,2,3,0,4,3,2,3,4,5,5,4,6,7,6,4,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,8,9,10,9,8,11,12,11,8,12,8,13,11,12,14,15,16,17,16,15,18,19,18,15,19,15,20,18,19,21,22,23,24,23,22,25,26,27,28,28,29,26,22,24,30,30,31,22,32,26,33,26,32,27,34,35,36,35,34,37,34,38,37,113,39,114,39,115,37,38,39,37,40,39,38,41,42,43,41,43,44,45,41,44,41,45,46,116,117,43,43,118,44,119,120,44,121,122,123,47,48,49,48,47,50,50,51,48,52,50,47,51,50,53,53,54,51,52,55,50,50,55,53,56,52,57,52,56,55,58,53,55,55,56,58,54,53,58,59,58,56,58,59,60,61,58,60,54,58,61,62,61,60,63,54,61,61,62,63,54,63,64,62,65,63,65,64,63,62,66,65,64,65,67,124,47,49,47,125,126,127,128,129,130,52,47,131,132,133,134,135,68,52,136,137,138,139,140,52,141,57,142,52,143,144,145,146,147,148,149,68,150,151,152,153,154,155,69,156,157,69,158,159,68,160,161,162,69,68,70,163,164,165,70,70,68,166,65,167,70,65,70,168,169,65,66,65,170,67,171,71,72,72,71,73,71,74,73,74,172,73,73,173,174,175,75,73,72,73,76,76,73,75,76,77,72,76,75,78,77,76,78,78,75,79,78,80,77,81,78,79,81,80,78,79,176,81,80,81,177,178,81,179,81,180,181,81,182,82,183,81,82,83,84,184,84,83,85,85,83,86,84,85,87,84,87,185,87,186,187,188,87,189,87,190,191,87,85,88,192,87,88,86,88,85,88,89,193,88,86,90,89,88,90,90,86,91,194,90,91,92,89,90,90,195,92,89,92,196,92,197,198,199,92,93,200,93,92,201,202,93,203,204,71,71,205,206,71,207,74,74,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,94,233,234,235,236,237,94,238,239,240,241,242,94,243,244,245,246,247,82,248,249,250,251,252,82,84,253,254,255,84,256,257,258,259,84,260,261,262,84,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,93,93,311,312,313,93,314
- }
- }
- LayerElementUV: 1 {
- Version: 101
- Name: "LightMapUV"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *368 {
- a: 0.5078125,0.7747802734375,0.6591796875,0.805419921875,0.6591796875,0.991935729980469,0.365234375,0.718994140625,0.00806427001953125,0.54150390625,0.237060546875,0.637939453125,0.1279296875,0.534423828125,0.00806427001953125,0.36767578125,0.2015380859375,0.36767578125,0.2015380859375,0.55419921875,0.3525390625,0.584716796875,0.4951171875,0.640625,0.8525390625,0.818115234375,0.62353515625,0.721923828125,0.732421875,0.8251953125,0.8525390625,0.991935729980469,0.08905029296875,0.8397216796875,0.27294921875,0.7755126953125,0.27294921875,0.8397216796875,0.08905029296875,0.7755126953125,0.00806427001953125,0.8076171875,0.08575439453125,0.8468017578125,0.08575439453125,0.7684326171875,0.0889892578125,0.03369140625,0.260009765625,0.09814453125,0.260009765625,0.03369140625,0.0889892578125,0.09814453125,0.00806427001953125,0.06591796875,0.08563232421875,0.02685546875,0.08563232421875,0.10498046875,0.951171875,0.94708251953125,0.87890625,0.2001953125,0.951171875,0.1552734375,0.87890625,0.991935729980469,0.05291748046875,0.27490234375,0.8447265625,0.27490234375,0.7998046875,0.34716796875,0.00806427001953125,0.34716796875,0.95849609375,0.154296875,0.95849609375,0.94580078125,0.845703125,0.267578125,0.05419921875,0.267578125,0.406982421875,0.94573974609375,0.415771484375,0.991935729980469,0.416748046875,0.992256164550781,0.37890625,0.991935729980469,0.37890625,0.94403076171875,0.351318359375,0.991935729980469,0.3447265625,0.951995849609375,0.35205078125,0.992256164550781,0.314453125,0.991935729980469,0.314453125,0.94403076171875,0.3369140625,0.94403076171875,0.544921875,0.96099853515625,0.5556640625,0.969528198242188,0.5556640625,0.991752624511719,0.5078125,0.991935729980469,0.5078125,0.9559326171875,0.5087890625,0.95513916015625,0.457763671875,0.94427490234375,0.44921875,0.95458984375,0.47998046875,0.94427490234375,0.480224609375,0.991935729980469,0.4443359375,0.991935729980469,0.443359375,0.990768432617188,0.2340087890625,0.991851806640625,0.296875,0.95135498046875,0.296875,0.991935729980469,0.2103271484375,
- 0.95294189453125,0.296875,0.95001220703125,0.1024169921875,0.991729736328125,0.199951171875,0.9498291015625,0.297119140625,0.91705322265625,0.087890625,0.951385498046875,0.0080718994140625,0.95135498046875,0.00806427001953125,0.991592407226563,0.08099365234375,0.946319580078125,0.0080718994140625,0.95001220703125,0.00855255126953125,0.91339111328125,0.1163330078125,0.91387939453125,0.0080718994140625,0.9034423828125,0.156982421875,0.90350341796875,0.296875,0.9034423828125,0.152587890625,0.8787841796875,0.0080718994140625,0.87896728515625,0.296875,0.8782958984375,0.7744140625,0.70166015625,0.73388671875,0.638671875,0.7333984375,0.70166015625,0.7724609375,0.614990234375,0.775390625,0.70166015625,0.73388671875,0.507080078125,0.77587890625,0.604736328125,0.80859375,0.701904296875,0.7744140625,0.49267578125,0.7744140625,0.4130859375,0.73388671875,0.4130859375,0.779296875,0.48583984375,0.775390625,0.4130859375,0.81201171875,0.41357421875,0.8115234375,0.52099609375,0.822265625,0.4130859375,0.822265625,0.560791015625,0.822265625,0.70166015625,0.8466796875,0.557373046875,0.8466796875,0.4130859375,0.84716796875,0.70166015625,0.71142578125,0.4921875,0.63818359375,0.4921875,0.7109375,0.4501953125,0.552734375,0.44970703125,0.5263671875,0.49169921875,0.42724609375,0.49169921875,0.42724609375,0.45166015625,0.427490234375,0.45068359375,0.5595703125,0.44970703125,0.71240234375,0.44970703125,0.5595703125,0.4169921875,0.427490234375,0.41357421875,0.71142578125,0.4140625,0.5703125,0.4033203125,0.42724609375,0.40380859375,0.71142578125,0.40380859375,0.42724609375,0.37890625,0.71142578125,0.37841796875,0.56640625,0.37890625,0.314208984375,0.20849609375,0.4052734375,0.25,0.314453125,0.25,0.390625,0.20947265625,0.313232421875,0.20849609375,0.50732421875,0.2099609375,0.52490234375,0.25,0.59814453125,0.25048828125,0.59814453125,0.20947265625,0.59814453125,0.20849609375,0.49462890625,0.20703125,0.59814453125,0.17138671875,0.419921875,0.171875,0.314453125,0.171875,0.314453125,0.16162109375,0.46533203125,0.16162109375,0.59814453125,0.16162109375,
- 0.59814453125,0.13671875,0.449462890625,0.13720703125,0.314453125,0.13720703125,0.292236328125,0.25048828125,0.2919921875,0.2080078125,0.2188720703125,0.25,0.1337890625,0.2080078125,0.10723876953125,0.25,0.00806427001953125,0.25,0.0080718994140625,0.20947265625,0.00830841064453125,0.20849609375,0.140625,0.2080078125,0.29296875,0.20751953125,0.140380859375,0.17529296875,0.00844573974609375,0.16650390625,0.292236328125,0.171875,0.1512451171875,0.1611328125,0.0080718994140625,0.13720703125,0.292236328125,0.16162109375,0.1470947265625,0.13671875,0.292236328125,0.13671875,0.71142578125,0.1533203125,0.62060546875,0.11181640625,0.62060546875,0.1533203125,0.697265625,0.1123046875,0.61962890625,0.11181640625,0.8134765625,0.11328125,0.83154296875,0.1533203125,0.90478515625,0.1533203125,0.90478515625,0.11279296875,0.90478515625,0.111328125,0.80078125,0.1103515625,0.90478515625,0.07470703125,0.72607421875,0.0751953125,0.62060546875,0.0751953125,0.62060546875,0.06494140625,0.771484375,0.06494140625,0.90478515625,0.06494140625,0.90478515625,0.03955078125,0.755859375,0.04052734375,0.62060546875,0.04052734375
- }
- UVIndex: *546 {
- a: 0,1,2,2,3,0,4,3,2,3,4,5,5,4,6,7,6,4,8,9,10,11,8,10,12,8,11,12,11,13,12,13,14,15,12,14,16,17,18,17,16,19,20,19,16,20,16,21,19,20,22,23,24,25,24,23,26,27,26,23,27,23,28,26,27,29,30,31,32,31,30,33,34,35,36,36,37,34,30,32,38,38,39,30,40,34,41,34,40,35,42,43,44,43,42,45,42,46,45,47,48,49,48,47,50,51,48,50,52,48,51,53,54,55,53,55,56,57,53,56,53,57,58,59,60,61,61,60,62,60,63,62,63,60,64,65,66,67,66,65,68,68,69,66,70,68,65,69,68,71,71,72,69,70,73,68,68,73,71,74,70,75,70,74,73,76,71,73,73,74,76,72,71,76,77,76,74,76,77,78,79,76,78,72,76,79,80,79,78,81,72,79,79,80,81,72,81,82,80,83,81,83,82,81,80,84,83,82,83,85,86,87,88,87,86,89,90,89,86,89,91,87,89,90,92,92,90,93,91,89,94,92,94,89,91,95,96,95,91,94,94,92,97,97,95,94,93,97,92,95,97,98,97,99,98,100,99,97,97,93,100,100,101,99,93,102,100,101,100,102,102,93,103,104,101,102,104,102,103,101,104,105,104,103,106,107,108,109,109,108,110,108,111,110,111,112,110,110,112,113,113,114,110,109,110,115,115,110,114,115,116,109,115,114,117,116,115,117,117,114,118,117,119,116,120,117,118,120,119,117,118,121,120,119,120,122,123,120,121,120,124,122,120,123,125,124,120,125,126,127,128,127,126,129,129,126,130,127,129,131,127,131,132,131,133,132,133,131,134,131,135,134,131,129,136,135,131,136,130,136,129,136,137,135,136,130,138,137,136,138,138,130,139,140,138,139,141,137,138,138,140,141,137,141,142,141,143,142,143,141,144,140,144,141,140,145,144,146,147,148,148,147,149,148,149,150,150,149,151,149,152,151,152,149,153,149,147,154,154,153,149,155,154,147,156,153,154,154,155,156,153,156,157,158,156,155,156,159,157,158,159,156,159,160,157,159,158,161,160,159,162,163,159,161,159,163,162,164,165,166,165,164,167,167,168,165,164,169,167,169,164,170,169,170,171,169,171,172,173,169,172,167,169,174,169,173,174,174,168,167,175,174,173,176,168,174,174,175,176,176,177,168,176,178,177,175,179,176,178,176,179,179,175,180,181,179,180,179,181,182,182,178,179,178,182,183
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *279 {
- 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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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: "ByPolygon"
- ReferenceInformationType: "IndexToDirect"
- Materials: *182 {
- a: 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,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2
- }
- }
- 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
- }
- }
- Layer: 1 {
- Version: 100
- LayerElement: {
- Type: "LayerElementBinormal"
- TypedIndex: 1
- }
- LayerElement: {
- Type: "LayerElementTangent"
- TypedIndex: 1
- }
- LayerElement: {
- Type: "LayerElementUV"
- TypedIndex: 1
- }
- }
- }
- Geometry: 2333008471216, "Geometry::", "Mesh" {
- Vertices: *30 {
- a: -50.38671875,-534.121643066406,430.8837890625,49.61328125,-534.121643066406,430.8837890625,-50.38671875,-192.160034179688,430.8837890625,49.61328125,-192.160034179688,430.8837890625,-0.00390625,-97.39111328125,430.8837890625,-50.38671875,-64.6776123046875,249.6357421875,-50.38671875,-288.94482421875,249.6357421875,49.61328125,-288.94482421875,249.6357421875,49.61328125,-64.6776123046875,249.6357421875,-0.00390625,28.0345458984375,249.6357421875
- }
- PolygonVertexIndex: *30 {
- a: 0,1,3,4,-3,4,9,5,-3,1,7,8,-4,1,0,6,-8,3,8,9,-5,5,6,0,-3,6,5,9,8,-8
- }
- Edges: *15 {
- a: 0,3,4,1,2,11,5,7,14,21,9,15,10,18,6
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByVertice"
- ReferenceInformationType: "Direct"
- Normals: *30 {
- a: -0.668117582798004,-0.582307100296021,0.463181793689728,0.668117642402649,-0.582307100296021,0.463181793689728,-0.761726319789886,0.0556695722043514,0.645502746105194,0.761298954486847,0.0547029338777065,0.646089315414429,0.000441453332314268,0.508852899074554,0.860853314399719,-0.810811638832092,0.183332324028015,-0.555854201316834,-0.831501007080078,-0.184167146682739,-0.524107336997986,0.831500947475433,-0.184167146682739,-0.524107336997986,0.809740841388702,0.180408626794815,-0.558365881443024,-0.0014559441478923,0.813837647438049,-0.58109050989151
- }
- NormalsW: *10 {
- a: 1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementBinormal: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *90 {
- a: 0.019675312563777,0.608465254306793,0.793336510658264,-0.013116329908371,0.613195478916168,0.789822340011597,-0,-0.996434926986694,0.0843659117817879,-0,-0,-0,-0,-0.996301829814911,0.0859232470393181,0.00323940953239799,0.860848248004913,-0.508851528167725,-0.00491300830617547,-0.581089913845062,-0.813824474811554,0.502182185649872,-0.269935995340347,-0.821551918983459,0.284786313772202,0.923663377761841,0.256403714418411,-0.013116329908371,0.613195478916168,0.789822340011597,0.513146281242371,0.616043269634247,0.597638428211212,0.209703832864761,0.799752235412598,0.562512814998627,-0.284393489360809,0.923645615577698,0.256903082132339,0,0.622509598731995,0.782612204551697,-1.49011611938477e-008,0.62250953912735,0.782612204551697,0,-0.943448185920715,0.331520199775696,0,-0.943448185920715,0.331520169973373,-0.284393489360809,0.923645615577698,0.256903082132339,-0.505811154842377,-0.267755180597305,-0.820038020610809,-0.00491300830617547,-0.581089913845062,-0.813824474811554,0.00323940953239799,0.860848248004913,-0.508851528167725,-0.205009013414383,0.800566136837006,0.563085317611694,-0.513146221637726,0.616043269634247,0.597638428211212,0.019675312563777,0.608465254306793,0.793336510658264,0.284786313772202,0.923663377761841,0.256403714418411,0.519953548908234,0.0741576477885246,-0.85096937417984,0.171595737338066,0.982405781745911,0.0737152248620987,-0.729634165763855,0.396506994962692,0.557150065898895,-0.474683403968811,-0.358006060123444,-0.804056882858276,0.477127492427826,0.719971597194672,0.503974676132202
- }
- BinormalsW: *30 {
- 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
- }
- }
- LayerElementTangent: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *90 {
- a: 0.743795573711395,-0.53915536403656,0.395069271326065,0.743940055370331,0.533769428730011,-0.402048945426941,0.648401081562042,-0.0642276704311371,-0.758584797382355,0,0,0,0.647898972034454,0.0654499977827072,0.758909225463867,0.999994575977325,-0.00301329302601516,0.00126835436094552,0.999986946582794,-0.0016700184205547,-0.00484442664310336,0.300662040710449,0.945263922214508,-0.126801058650017,0.581953346729279,-0.379139810800552,0.719432651996613,0.743940055370331,0.533769428730011,-0.402048945426941,-0.212807431817055,0.765880703926086,-0.606745302677155,-0.548036515712738,0.572581112384796,-0.60975968837738,0.582704186439514,0.37932363152504,-0.718727648258209,0.74405562877655,0.522877037525177,-0.415909618139267,0.744055688381195,-0.522876977920532,0.415909588336945,0.555523276329041,-0.27565935254097,-0.784478068351746,0.55552339553833,0.275659322738647,0.784477949142456,0.582704186439514,0.37932363152504,-0.718727648258209,0.297447323799133,-0.946446001529694,0.125559598207474,0.999986946582794,-0.0016700184205547,-0.00484442664310336,0.999994575977325,-0.00301329302601516,0.00126835436094552,-0.548229873180389,-0.570511221885681,0.611523509025574,-0.212807446718216,-0.765880703926086,0.606745302677155,0.743795573711395,-0.53915536403656,0.395069271326065,0.581953346729279,-0.379139810800552,0.719432651996613,0.195587202906609,-0.980093538761139,0.0340962074697018,0.559588551521301,-0.0356130115687847,-0.828005075454712,0.683836162090302,0.424794644117355,0.593226432800293,-0.344957172870636,0.916124701499939,-0.204255133867264,0.284526914358139,-0.669121444225311,0.686528086662292
- }
- TangentsW: *30 {
- 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
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *32 {
- a: 0.375,0,0.625,0,0.625,0.25,0.5,0.25,0.375,0.25,0.5,0.299470782279968,0.375,0.299470782279968,0.688738226890564,0,0.674470782279968,0.25,0.625,1,0.375,1,0.375,0.936261773109436,0.625,0.936261773109436,0.625,0.299470782279968,0.325529247522354,0.25,0.311261743307114,0
- }
- UVIndex: *30 {
- a: 0,1,2,3,4,3,5,6,4,1,7,8,2,9,10,11,12,2,13,5,3,14,15,0,4,15,6,5,8,12
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *15 {
- a: 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: 2333008465072, "Geometry::", "Mesh" {
- Vertices: *30 {
- a: -50.38671875,452.0703125,-485.051025390625,49.61328125,452.0703125,-485.051025390625,-50.38671875,105.47998046875,-485.051025390625,49.61328125,105.47998046875,-485.051025390625,-0.00390625,536.446411132813,-485.051025390625,-50.38671875,47.042724609375,-225.37646484375,49.61328125,47.042724609375,-225.37646484375,-50.38671875,269.426025390625,-225.37646484375,49.61328125,269.426025390625,-225.37646484375,-0.00390625,356.74853515625,-225.37646484375
- }
- PolygonVertexIndex: *30 {
- a: 0,4,1,3,-3,2,5,7,-1,3,6,5,-3,7,9,4,-1,8,6,3,-2,9,8,1,-5,7,5,6,8,-10
- }
- Edges: *15 {
- a: 0,3,4,2,5,9,1,7,20,14,13,17,10,6,21
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByVertice"
- ReferenceInformationType: "Direct"
- Normals: *30 {
- a: -0.804561853408813,0.187331259250641,-0.563548803329468,0.803429007530212,0.184345439076424,-0.56614351272583,-0.852349400520325,-0.262603938579559,-0.452260673046112,0.852349400520325,-0.262603908777237,-0.452260583639145,-0.00140396389178932,0.775337338447571,-0.631545662879944,-0.885812282562256,-0.36244723200798,0.28977307677269,0.88581246137619,-0.36244723200798,0.28977307677269,-0.916879951953888,0.0681341513991356,0.393305093050003,0.91689544916153,0.0669782012701035,0.393467605113983,0.000563012552447617,0.637615144252777,0.770354866981506
- }
- NormalsW: *10 {
- a: 1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementBinormal: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *90 {
- a: -0,0.948944807052612,0.315442115068436,-0,-0,-0,-1.49011629702045e-008,0.950861811637878,0.309615880250931,0,-0.864788174629211,0.502136945724487,0,-0.864788174629211,0.502136886119843,-0.443397909402847,0.821426808834076,0.358686983585358,-0.311118721961975,0.927183270454407,0.208653658628464,0.375326782464981,0.482553362846375,0.791373550891876,-0.207878708839417,0.800071120262146,0.562736749649048,0,-0.864788174629211,0.502136945724487,0,0.624452292919159,0.78106290102005,0,0.624452292919159,0.78106302022934,0,-0.864788174629211,0.502136886119843,-0.371557593345642,0.214379072189331,-0.903319776058197,0.260982304811478,0.743563532829285,-0.615630984306335,-0.00473699579015374,-0.631544411182404,-0.775325357913971,0.501375555992126,-0.294317007064819,-0.813633918762207,-0.232934787869453,0.890316247940063,0.391252189874649,0.0170171391218901,0.649404346942902,0.760252833366394,0.443397879600525,0.821426808834076,0.35868701338768,0.212735086679459,0.799216687679291,0.562135756015778,0.260982304811478,0.743563532829285,-0.615630984306335,0.39442390203476,-0.00115233834367245,-0.918927848339081,-0.505216777324677,-0.292065501213074,-0.812067568302155,-0.00473699579015374,-0.631544411182404,-0.775325357913971,0.375326782464981,0.482553362846375,0.791373550891876,0.426529288291931,-0.389977276325226,0.816082417964935,0.0170171391218901,0.649404346942902,0.760252833366394,0.39442390203476,-0.00115233834367245,-0.918927848339081,0.260982304811478,0.743563532829285,-0.615630984306335
- }
- BinormalsW: *30 {
- 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
- }
- }
- LayerElementTangent: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *90 {
- a: 0.593868851661682,0.253792703151703,-0.763484835624695,0,-0,0,0.595400631427765,-0.248754367232323,0.763949871063232,0.522972762584686,0.427996098995209,0.73710161447525,0.522972702980042,-0.427996098995209,-0.737101674079895,-0.277306437492371,-0.506258070468903,0.816580653190613,0.344298660755157,-0.0946741625666618,0.934074521064758,0.13587112724781,-0.873212456703186,0.468016058206558,-0.556297302246094,-0.569906294345856,0.604764521121979,0.522972762584686,0.427996098995209,0.73710161447525,0.464043289422989,0.691875338554382,-0.553147673606873,0.464043885469437,-0.691875100135803,0.553147494792938,0.522972702980042,-0.427996098995209,-0.737101674079895,0.14586329460144,0.974371254444122,0.171244099736214,0.965343356132507,-0.201395586133003,0.165987595915794,0.999987840652466,-0.001903111115098,-0.00455942656844854,0.318281054496765,0.93716835975647,-0.14287294447422,0.32410529255867,0.45038965344429,-0.831928491592407,0.463731467723846,0.668510317802429,-0.581418216228485,-0.277306348085403,0.506258070468903,-0.816580712795258,-0.556098401546478,0.572074770927429,-0.602897167205811,0.965343356132507,-0.201395586133003,0.165987595915794,0.0610947385430336,-0.997753798961639,0.0274743866175413,0.315051972866058,-0.938463926315308,0.141519472002983,0.999987840652466,-0.001903111115098,-0.00455942656844854,0.13587112724781,-0.873212456703186,0.468016058206558,-0.182781651616097,0.846492767333984,0.500041007995605,0.463731467723846,0.668510317802429,-0.581418216228485,0.0610947385430336,-0.997753798961639,0.0274743866175413,0.965343356132507,-0.201395586133003,0.165987595915794
- }
- TangentsW: *30 {
- 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
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *36 {
- a: 0.375,0.5,0.5,0.5,0.625,0.5,0.625,0.75,0.375,0.75,0.125,0,0.186785906553268,0,0.195876926183701,0.25,0.125,0.25,0.625,0.811785876750946,0.375,0.811785876750946,0.375,0.429123073816299,0.5,0.429123073816299,0.804123103618622,0.25,0.813214063644409,0,0.875,0,0.875,0.25,0.625,0.429123073816299
- }
- UVIndex: *30 {
- a: 0,1,2,3,4,5,6,7,8,3,9,10,4,11,12,1,0,13,14,15,16,12,17,2,1,7,10,14,17,12
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *15 {
- a: 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: 2333008474288, "Geometry::", "Mesh" {
- Vertices: *30 {
- a: -50.38671875,-64.181640625,248.9306640625,-50.38671875,-287.990844726563,248.9306640625,49.61328125,-287.990844726563,248.9306640625,49.61328125,-64.181640625,248.9306640625,-0.00390625,28.5225830078125,248.9306640625,-50.38671875,86.8641357421875,34.18115234375,-50.38671875,-92.137451171875,34.18115234375,49.61328125,-92.137451171875,34.18115234375,49.61328125,86.8641357421875,34.18115234375,-0.00390625,177.131713867188,34.18115234375
- }
- PolygonVertexIndex: *30 {
- a: 2,1,6,-8,5,6,1,-1,0,4,9,-6,3,2,7,-9,4,3,8,-10,0,1,2,3,-5,6,5,9,8,-8
- }
- Edges: *15 {
- a: 7,9,8,12,6,0,16,15,1,4,3,2,14,18,10
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByVertice"
- ReferenceInformationType: "Direct"
- Normals: *30 {
- a: -0.820415616035461,0.080411322414875,0.566085040569305,-0.709704697132111,-0.665769338607788,0.230370372533798,0.709704697132111,-0.665769338607788,0.230370372533798,0.820285320281982,0.0790500566363335,0.566465437412262,0.000533724669367075,0.612187504768372,0.790712594985962,-0.861168801784515,0.236480563879013,-0.449961483478546,-0.803247392177582,-0.271173596382141,-0.530338108539581,0.803247392177582,-0.271173596382141,-0.530338108539581,0.860458254814148,0.232811197638512,-0.453222543001175,-0.00171850703191012,0.955656409263611,-0.294479131698608
- }
- NormalsW: *10 {
- a: 1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementBinormal: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *90 {
- a: 0,0.326998710632324,0.945024847984314,0,0.326998710632324,0.945024847984314,0,-0.890358567237854,0.455260008573532,0.183224380016327,-0.734700858592987,0.653179526329041,-0.0757689401507378,0.815588235855103,0.573650479316711,-0.560234904289246,0.646359741687775,0.518030881881714,-0.428609222173691,0.667558193206787,0.608818769454956,0.398021548986435,0.791104972362518,0.464469611644745,-0.525188744068146,0.285429120063782,-0.801690101623535,0.282659083604813,0.758375287055969,-0.587342083454132,-0.00440261233597994,-0.294483929872513,-0.955646276473999,0.402972757816315,-0.221957176923752,-0.887889623641968,-0.452183216810226,0.696096420288086,0.557655930519104,0.0889225527644157,0.409038364887238,0.908174276351929,0.560234904289246,0.646359741687775,0.518030881881714,0.0814470276236534,0.815222024917603,0.573392868041992,0.282659083604813,0.758375287055969,-0.587342083454132,0.17919684946537,0.905018210411072,-0.385785728693008,-0.407086551189423,-0.220815867185593,-0.886296212673187,-0.00440261233597994,-0.294483929872513,-0.955646276473999,0.398021548986435,0.791104972362518,0.464469611644745,-0.151067510247231,-0.175574973225594,-0.972806334495544,0.0889225527644157,0.409038364887238,0.908174276351929,0.17919684946537,0.905018210411072,-0.385785728693008,0.282659083604813,0.758375287055969,-0.587342083454132,-0.5734743475914,0.592733323574066,0.565503656864166,-0.345813095569611,0.376229643821716,0.859572291374207,-0.465563356876373,0.259854018688202,0.846006393432617,-0.508311629295349,0.453479498624802,-0.732103586196899,0.183224380016327,-0.734700858592987,0.653179526329041
- }
- BinormalsW: *30 {
- 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
- }
- }
- LayerElementTangent: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *90 {
- a: 0.704499244689941,0.670688569545746,-0.232072532176971,0.704499244689941,-0.670688569545746,0.232072532176971,0.595645546913147,-0.365686416625977,-0.715178191661835,0.566764891147614,0.621835589408875,0.54046094417572,-0.502640545368195,-0.528102993965149,0.684441268444061,-0.202312886714935,-0.713220775127411,0.671107649803162,0.559118509292603,-0.333342611789703,0.759123980998993,0.410483986139297,-0.606372058391571,0.681040227413177,0.226042106747627,0.955020546913147,0.191939398646355,0.959220290184021,-0.223815515637398,0.172635644674301,0.999988794326782,0.000345806882251054,-0.00471345707774162,0.309840798377991,0.945945084095001,-0.0958473831415176,0.350231826305389,0.713583111763,-0.606742799282074,0.698864817619324,0.624050259590149,-0.349498271942139,-0.202312886714935,0.713220775127411,-0.671107649803162,-0.502969324588776,0.530294239521027,-0.682502686977386,0.959220290184021,-0.223815515637398,0.172635644674301,0.543157875537872,-0.417963206768036,-0.728207588195801,0.306418389081955,-0.947121679782867,0.0952285379171371,0.999988794326782,0.000345806882251054,-0.00471345707774162,0.410483986139297,-0.606372058391571,0.681040227413177,0.688111782073975,-0.725206613540649,0.024030277505517,0.698864817619324,0.624050259590149,-0.349498271942139,0.543157875537872,-0.417963206768036,-0.728207588195801,0.959220290184021,-0.223815515637398,0.172635644674301,0.160999432206154,0.758374631404877,-0.631622612476349,0.372560977935791,0.89583945274353,-0.242219179868698,0.885012924671173,0.13855242729187,0.444472044706345,0.0350850746035576,0.860322713851929,0.508540809154511,0.566764891147614,0.621835589408875,0.54046094417572
- }
- TangentsW: *30 {
- 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
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *36 {
- a: 0.625,0.936013758182526,0.375,0.936013758182526,0.375,0.873571813106537,0.625,0.873571813106537,0.266721963882446,0.25,0.248571798205376,0,0.311013758182526,0,0.325336784124374,0.25,0.375,0.299663245677948,0.5,0.299663245677948,0.5,0.358278065919876,0.375,0.358278065919876,0.674663305282593,0.25,0.688986241817474,0,0.751428186893463,0,0.733278155326843,0.25,0.625,0.299663245677948,0.625,0.358278065919876
- }
- UVIndex: *30 {
- a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,9,16,17,10,7,1,13,16,9,5,11,10,15,3
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *15 {
- a: 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: 2333008479408, "Geometry::", "Mesh" {
- Vertices: *30 {
- a: -50.38671875,-91.6573486328125,33.65478515625,49.61328125,-91.6573486328125,33.65478515625,-50.38671875,87.234375,33.65478515625,49.61328125,87.234375,33.65478515625,-0.00390625,177.495971679688,33.65478515625,-50.38671875,268.891723632813,-224.616821289063,-50.38671875,46.635986328125,-224.616821289063,49.61328125,46.635986328125,-224.616821289063,49.61328125,268.891723632813,-224.616821289063,-0.00390625,356.222900390625,-224.616821289063
- }
- PolygonVertexIndex: *30 {
- a: 5,6,0,-3,6,7,1,-1,2,4,9,-6,3,1,7,-9,4,3,8,-10,2,0,1,3,-5,6,5,9,8,-8
- }
- Edges: *15 {
- a: 3,15,9,8,12,6,2,16,1,0,5,4,14,18,10
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByVertice"
- ReferenceInformationType: "Direct"
- Normals: *30 {
- a: -0.794390559196472,-0.576478600502014,0.191352993249893,0.794390559196472,-0.576478600502014,0.191352993249893,-0.891145288944244,0.0883570611476898,0.445031344890594,0.89124459028244,0.0868800431489944,0.445123612880707,0.000584163644816726,0.666941404342651,0.745109915733337,-0.86165463924408,0.240368098020554,-0.446961343288422,-0.817208528518677,-0.310316354036331,-0.485668659210205,0.817208528518677,-0.310316354036331,-0.485668659210205,0.860951483249664,0.236647322773933,-0.450289458036423,-0.00172312255017459,0.953000783920288,-0.302962779998779
- }
- NormalsW: *10 {
- a: 1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementBinormal: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *90 {
- a: -0.0700783506035805,0.815928757190704,0.573889791965485,-0.536001086235046,0.718928635120392,0.442543148994446,-0.46555557847023,0.78020977973938,0.417768806219101,0.444535672664642,0.366361916065216,0.817414820194244,0,-0.842674195766449,0.538423836231232,0,-0.842674195766449,0.538423836231232,0,0.315032482147217,0.949080944061279,0,0.315032482147217,0.949080944061279,-0.416037976741791,0.232226818799973,-0.879194617271423,0.260976135730743,0.719186782836914,-0.643942415714264,-0.00435110135003924,-0.302967548370361,-0.952991008758545,0.398143291473389,-0.225957065820694,-0.889058768749237,-0.326015084981918,0.8050217628479,0.495635032653809,0.160335272550583,0.502874135971069,0.849358797073364,0.536001086235046,0.718928635120392,0.442543148994446,0.0758481025695801,0.815583407878876,0.573646903038025,0.260976135730743,0.719186782836914,-0.643942415714264,0.45289808511734,-0.222005620598793,-0.863479554653168,-0.402337312698364,-0.224867671728134,-0.887445271015167,-0.00435110135003924,-0.302967548370361,-0.952991008758545,0.444535672664642,0.366361916065216,0.817414820194244,-0.0656520128250122,-0.231696665287018,-0.970570206642151,0.160335272550583,0.502874135971069,0.849358797073364,0.45289808511734,-0.222005620598793,-0.863479554653168,0.260976135730743,0.719186782836914,-0.643942415714264,0.475549072027206,0.113025426864624,-0.872398018836975,0.439218640327454,0.794421017169952,-0.419502347707748,-0.463897109031677,0.267629951238632,0.844496250152588,-0.443697720766068,-0.083575963973999,-0.892271041870117,0.57595831155777,0.470460623502731,0.668534815311432
- }
- BinormalsW: *30 {
- 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
- }
- }
- LayerElementTangent: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *90 {
- a: -0.502633333206177,-0.525817096233368,0.686204135417938,-0.211832746863365,-0.621968984603882,0.753844499588013,0.390130221843719,-0.242786154150963,0.888174116611481,0.0908180773258209,-0.926267802715302,0.365759700536728,0.576342046260834,-0.44000455737114,-0.688640534877777,0.576342046260834,0.44000455737114,0.688640534877777,0.607407331466675,0.753940880298615,-0.250258803367615,0.607407331466675,-0.753940880298615,0.250258803367615,0.181031346321106,0.968640148639679,0.170187920331955,0.965345144271851,-0.194832101464272,0.173635631799698,0.999989032745361,0.000323898013448343,-0.00466865301132202,0.314695447683334,0.94401627779007,-0.0989960208535194,0.315273433923721,0.58684903383255,-0.745795488357544,0.585863590240479,0.644041955471039,-0.49190828204155,-0.211832746863365,0.621968984603882,-0.753844499588013,-0.503000617027283,0.528035759925842,-0.684228479862213,0.965345144271851,-0.194832101464272,0.173635631799698,-0.0238007549196482,-0.971167027950287,0.237209111452103,0.311267107725143,-0.94521564245224,0.0983881205320358,0.999989032745361,0.000323898013448343,-0.00466865301132202,0.0908180773258209,-0.926267802715302,0.365759700536728,0.603848814964294,-0.783574461936951,0.146210640668869,0.585863590240479,0.644041955471039,-0.49190828204155,-0.0238007549196482,-0.971167027950287,0.237209111452103,0.965345144271851,-0.194832101464272,0.173635631799698,0.325612276792526,-0.943890333175659,0.0552053153514862,0.2542405128479,-0.557779908180237,-0.79009073972702,0.885887444019318,0.141998842358589,0.441633075475693,-0.24878691136837,0.967994332313538,0.0330450311303139,0.021030630916357,-0.826057195663452,0.563193738460541
- }
- TangentsW: *30 {
- 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
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *36 {
- a: 0.196084275841713,0.25,0.18696665763855,0,0.248418733477592,0,0.266578257083893,0.25,0.375,0.81196665763855,0.625,0.81196665763855,0.625,0.873418748378754,0.375,0.873418748378754,0.375,0.358421742916107,0.5,0.358421742916107,0.5,0.428915739059448,0.375,0.428915739059448,0.733421802520752,0.25,0.751581251621246,0,0.813033282756805,0,0.803915798664093,0.25,0.625,0.358421742916107,0.625,0.428915739059448
- }
- UVIndex: *30 {
- a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,9,16,17,10,3,7,13,16,9,1,11,10,15,5
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *15 {
- a: 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
- }
- }
- }
- Model: 2330954046256, "Model::SM_Flying_Buttress_01", "Null" {
- Version: 232
- Properties70: {
- P: "RotationPivot", "Vector3D", "Vector", "",-1.81898940354586e-011,0,4.54747350886464e-013
- P: "ScalingPivot", "Vector3D", "Vector", "",-1.81898940354586e-011,0,4.54747350886464e-013
- 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: 2330954078736, "Model::LOD_Group_SM_Flying_Buttress_01", "LodGroup" {
- Version: 232
- Properties70: {
- P: "RotationPivot", "Vector3D", "Vector", "",-1.81898940354586e-011,0,4.54747350886464e-013
- P: "ScalingPivot", "Vector3D", "Vector", "",-1.81898940354586e-011,0,4.54747350886464e-013
- 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: 2330954048576, "Model::SM_Flying_Buttress_01_LOD0", "Mesh" {
- Version: 232
- Properties70: {
- P: "RotationPivot", "Vector3D", "Vector", "",-1.81898940354586e-011,0,4.54747350886464e-013
- P: "ScalingPivot", "Vector3D", "Vector", "",-1.81898940354586e-011,0,4.54747350886464e-013
- 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: 2330954081056, "Model::SM_Flying_Buttress_01_LOD1", "Mesh" {
- Version: 232
- Properties70: {
- P: "RotationPivot", "Vector3D", "Vector", "",-1.81898940354586e-011,0,4.54747350886464e-013
- P: "ScalingPivot", "Vector3D", "Vector", "",-1.81898940354586e-011,0,4.54747350886464e-013
- 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: 2330954097296, "Model::SM_Flying_Buttress_01_LOD2", "Mesh" {
- Version: 232
- Properties70: {
- P: "RotationPivot", "Vector3D", "Vector", "",-1.81898940354586e-011,0,4.54747350886464e-013
- P: "ScalingPivot", "Vector3D", "Vector", "",-1.81898940354586e-011,0,4.54747350886464e-013
- 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: 2330954099616, "Model::UCX_SM_Flying_Buttress_01_LOD0_04", "Mesh" {
- Version: 232
- Properties70: {
- P: "RotationPivot", "Vector3D", "Vector", "",-0.386720000016794,0,4.54747350886464e-013
- P: "ScalingPivot", "Vector3D", "Vector", "",-0.386720000016794,0,4.54747350886464e-013
- 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: 2330954101936, "Model::UCX_SM_Flying_Buttress_01_LOD0_01", "Mesh" {
- Version: 232
- Properties70: {
- P: "RotationPivot", "Vector3D", "Vector", "",-0.386720000016794,0,4.54747350886464e-013
- P: "ScalingPivot", "Vector3D", "Vector", "",-0.386720000016794,0,4.54747350886464e-013
- 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: 2330953981296, "Model::UCX_SM_Flying_Buttress_01_LOD0_02", "Mesh" {
- Version: 232
- Properties70: {
- P: "RotationPivot", "Vector3D", "Vector", "",-0.386720000016794,0,4.54747350886464e-013
- P: "ScalingPivot", "Vector3D", "Vector", "",-0.386720000016794,0,4.54747350886464e-013
- 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: 2330953992896, "Model::UCX_SM_Flying_Buttress_01_LOD0_03", "Mesh" {
- Version: 232
- Properties70: {
- P: "RotationPivot", "Vector3D", "Vector", "",-0.386720000016794,0,4.54747350886464e-013
- P: "ScalingPivot", "Vector3D", "Vector", "",-0.386720000016794,0,4.54747350886464e-013
- 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: 2330846054944, "Material::MI_Wall_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: 2330846048704, "Material::MI_Roof_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: 2330846055424, "Material::MI_Trim_07", "" {
- 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: 2330846052544, "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: 2330982085840, "Video::file4", "Clip" {
- Type: "Clip"
- Properties70: {
- P: "Path", "KString", "XRefUrl", "", "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Wall_01_BC.png"
- }
- UseMipMap: 0
- Filename: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Wall_01_BC.png"
- RelativeFilename: "..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Wall_01_BC.png"
- }
- Video: 2330982086240, "Video::file78", "Clip" {
- Type: "Clip"
- Properties70: {
- P: "Path", "KString", "XRefUrl", "", "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Roof_01_BC.png"
- }
- UseMipMap: 0
- Filename: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Roof_01_BC.png"
- RelativeFilename: "..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Roof_01_BC.png"
- }
- Video: 2330982091840, "Video::file67", "Clip" {
- Type: "Clip"
- Properties70: {
- P: "Path", "KString", "XRefUrl", "", "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Trim_07_BC.png"
- }
- UseMipMap: 0
- Filename: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Trim_07_BC.png"
- RelativeFilename: "..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Trim_07_BC.png"
- }
- Video: 2330982089440, "Video::file24", "Clip" {
- Type: "Clip"
- Properties70: {
- P: "Path", "KString", "XRefUrl", "", "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Wall_01_N.png"
- }
- UseMipMap: 0
- Filename: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Wall_01_N.png"
- RelativeFilename: "..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Wall_01_N.png"
- }
- Video: 2330982089840, "Video::file79", "Clip" {
- Type: "Clip"
- Properties70: {
- P: "Path", "KString", "XRefUrl", "", "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Roof_01_N.png"
- }
- UseMipMap: 0
- Filename: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Roof_01_N.png"
- RelativeFilename: "..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Roof_01_N.png"
- }
- Video: 2330982092640, "Video::file39", "Clip" {
- Type: "Clip"
- Properties70: {
- P: "Path", "KString", "XRefUrl", "", "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Trim_07_N.png"
- }
- UseMipMap: 0
- Filename: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Trim_07_N.png"
- RelativeFilename: "..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Trim_07_N.png"
- }
- Texture: 2330846043424, "Texture::file4", "" {
- Type: "TextureVideoClip"
- Version: 202
- TextureName: "Texture::file4"
- Properties70: {
- P: "CurrentTextureBlendMode", "enum", "", "",0
- P: "UVSet", "KString", "", "", "UVmap_0"
- P: "UseMaterial", "bool", "", "",1
- }
- Media: "Video::file4"
- FileName: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Wall_01_BC.png"
- RelativeFilename: "..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Wall_01_BC.png"
- ModelUVTranslation: 0,0
- ModelUVScaling: 1,1
- Texture_Alpha_Source: "None"
- Cropping: 0,0,0,0
- }
- Texture: 2330846038624, "Texture::file78", "" {
- Type: "TextureVideoClip"
- Version: 202
- TextureName: "Texture::file78"
- Properties70: {
- P: "CurrentTextureBlendMode", "enum", "", "",0
- P: "UVSet", "KString", "", "", "UVmap_0"
- P: "UseMaterial", "bool", "", "",1
- }
- Media: "Video::file78"
- FileName: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Roof_01_BC.png"
- RelativeFilename: "..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Roof_01_BC.png"
- ModelUVTranslation: 0,0
- ModelUVScaling: 1,1
- Texture_Alpha_Source: "None"
- Cropping: 0,0,0,0
- }
- Texture: 2330846046304, "Texture::file67", "" {
- Type: "TextureVideoClip"
- Version: 202
- TextureName: "Texture::file67"
- Properties70: {
- P: "CurrentTextureBlendMode", "enum", "", "",0
- P: "UVSet", "KString", "", "", "UVmap_0"
- P: "UseMaterial", "bool", "", "",1
- }
- Media: "Video::file67"
- FileName: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Trim_07_BC.png"
- RelativeFilename: "..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Trim_07_BC.png"
- ModelUVTranslation: 0,0
- ModelUVScaling: 1,1
- Texture_Alpha_Source: "None"
- Cropping: 0,0,0,0
- }
- Texture: 2330846037664, "Texture::file24", "" {
- Type: "TextureVideoClip"
- Version: 202
- TextureName: "Texture::file24"
- Properties70: {
- P: "CurrentTextureBlendMode", "enum", "", "",0
- P: "UVSet", "KString", "", "", "UVmap_0"
- P: "UseMaterial", "bool", "", "",1
- }
- Media: "Video::file24"
- FileName: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Wall_01_N.png"
- RelativeFilename: "..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Wall_01_N.png"
- ModelUVTranslation: 0,0
- ModelUVScaling: 1,1
- Texture_Alpha_Source: "None"
- Cropping: 0,0,0,0
- }
- Texture: 2330846038144, "Texture::file79", "" {
- Type: "TextureVideoClip"
- Version: 202
- TextureName: "Texture::file79"
- Properties70: {
- P: "CurrentTextureBlendMode", "enum", "", "",0
- P: "UVSet", "KString", "", "", "UVmap_0"
- P: "UseMaterial", "bool", "", "",1
- }
- Media: "Video::file79"
- FileName: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Roof_01_N.png"
- RelativeFilename: "..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Roof_01_N.png"
- ModelUVTranslation: 0,0
- ModelUVScaling: 1,1
- Texture_Alpha_Source: "None"
- Cropping: 0,0,0,0
- }
- Texture: 2330846045824, "Texture::file39", "" {
- Type: "TextureVideoClip"
- Version: 202
- TextureName: "Texture::file39"
- Properties70: {
- P: "CurrentTextureBlendMode", "enum", "", "",0
- P: "UVSet", "KString", "", "", "UVmap_0"
- P: "UseMaterial", "bool", "", "",1
- }
- Media: "Video::file39"
- FileName: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Trim_07_N.png"
- RelativeFilename: "..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Trim_07_N.png"
- ModelUVTranslation: 0,0
- ModelUVScaling: 1,1
- Texture_Alpha_Source: "None"
- Cropping: 0,0,0,0
- }
- AnimationStack: 2332486572112, "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: 2330873293472, "AnimLayer::BaseLayer", "" {
- }
- }
- ; Object connections
- ;------------------------------------------------------------------
- Connections: {
-
- ;Model::SM_Flying_Buttress_01, Model::RootNode
- C: "OO",2330954046256,0
-
- ;AnimLayer::BaseLayer, AnimStack::Take 001
- C: "OO",2330873293472,2332486572112
-
- ;NodeAttribute::, Model::SM_Flying_Buttress_01
- C: "OO",2328201245856,2330954046256
-
- ;Model::LOD_Group_SM_Flying_Buttress_01, Model::SM_Flying_Buttress_01
- C: "OO",2330954078736,2330954046256
-
- ;Model::UCX_SM_Flying_Buttress_01_LOD0_04, Model::SM_Flying_Buttress_01
- C: "OO",2330954099616,2330954046256
-
- ;Model::UCX_SM_Flying_Buttress_01_LOD0_01, Model::SM_Flying_Buttress_01
- C: "OO",2330954101936,2330954046256
-
- ;Model::UCX_SM_Flying_Buttress_01_LOD0_02, Model::SM_Flying_Buttress_01
- C: "OO",2330953981296,2330954046256
-
- ;Model::UCX_SM_Flying_Buttress_01_LOD0_03, Model::SM_Flying_Buttress_01
- C: "OO",2330953992896,2330954046256
-
- ;NodeAttribute::, Model::LOD_Group_SM_Flying_Buttress_01
- C: "OO",2332447569232,2330954078736
-
- ;Model::SM_Flying_Buttress_01_LOD0, Model::LOD_Group_SM_Flying_Buttress_01
- C: "OO",2330954048576,2330954078736
-
- ;Model::SM_Flying_Buttress_01_LOD1, Model::LOD_Group_SM_Flying_Buttress_01
- C: "OO",2330954081056,2330954078736
-
- ;Model::SM_Flying_Buttress_01_LOD2, Model::LOD_Group_SM_Flying_Buttress_01
- C: "OO",2330954097296,2330954078736
-
- ;Texture::file4, Material::MI_Wall_01
- C: "OP",2330846043424,2330846054944, "DiffuseColor"
-
- ;Texture::file24, Material::MI_Wall_01
- C: "OP",2330846037664,2330846054944, "NormalMap"
-
- ;Texture::file78, Material::MI_Roof_01
- C: "OP",2330846038624,2330846048704, "DiffuseColor"
-
- ;Texture::file79, Material::MI_Roof_01
- C: "OP",2330846038144,2330846048704, "NormalMap"
-
- ;Texture::file67, Material::MI_Trim_07
- C: "OP",2330846046304,2330846055424, "DiffuseColor"
-
- ;Texture::file39, Material::MI_Trim_07
- C: "OP",2330846045824,2330846055424, "NormalMap"
-
- ;Video::file4, Texture::file4
- C: "OO",2330982085840,2330846043424
-
- ;Video::file78, Texture::file78
- C: "OO",2330982086240,2330846038624
-
- ;Video::file67, Texture::file67
- C: "OO",2330982091840,2330846046304
-
- ;Video::file24, Texture::file24
- C: "OO",2330982089440,2330846037664
-
- ;Video::file79, Texture::file79
- C: "OO",2330982089840,2330846038144
-
- ;Video::file39, Texture::file39
- C: "OO",2330982092640,2330846045824
-
- ;Geometry::, Model::SM_Flying_Buttress_01_LOD0
- C: "OO",2333008477872,2330954048576
-
- ;Material::MI_Wall_01, Model::SM_Flying_Buttress_01_LOD0
- C: "OO",2330846054944,2330954048576
-
- ;Material::MI_Roof_01, Model::SM_Flying_Buttress_01_LOD0
- C: "OO",2330846048704,2330954048576
-
- ;Material::MI_Trim_07, Model::SM_Flying_Buttress_01_LOD0
- C: "OO",2330846055424,2330954048576
-
- ;Geometry::, Model::SM_Flying_Buttress_01_LOD1
- C: "OO",2333008479920,2330954081056
-
- ;Material::MI_Wall_01, Model::SM_Flying_Buttress_01_LOD1
- C: "OO",2330846054944,2330954081056
-
- ;Material::MI_Roof_01, Model::SM_Flying_Buttress_01_LOD1
- C: "OO",2330846048704,2330954081056
-
- ;Material::MI_Trim_07, Model::SM_Flying_Buttress_01_LOD1
- C: "OO",2330846055424,2330954081056
-
- ;Geometry::, Model::SM_Flying_Buttress_01_LOD2
- C: "OO",2333008457904,2330954097296
-
- ;Material::MI_Wall_01, Model::SM_Flying_Buttress_01_LOD2
- C: "OO",2330846054944,2330954097296
-
- ;Material::MI_Roof_01, Model::SM_Flying_Buttress_01_LOD2
- C: "OO",2330846048704,2330954097296
-
- ;Material::MI_Trim_07, Model::SM_Flying_Buttress_01_LOD2
- C: "OO",2330846055424,2330954097296
-
- ;Geometry::, Model::UCX_SM_Flying_Buttress_01_LOD0_04
- C: "OO",2333008471216,2330954099616
-
- ;Material::M_Collision_01, Model::UCX_SM_Flying_Buttress_01_LOD0_04
- C: "OO",2330846052544,2330954099616
-
- ;Geometry::, Model::UCX_SM_Flying_Buttress_01_LOD0_01
- C: "OO",2333008465072,2330954101936
-
- ;Material::M_Collision_01, Model::UCX_SM_Flying_Buttress_01_LOD0_01
- C: "OO",2330846052544,2330954101936
-
- ;Geometry::, Model::UCX_SM_Flying_Buttress_01_LOD0_02
- C: "OO",2333008474288,2330953981296
-
- ;Material::M_Collision_01, Model::UCX_SM_Flying_Buttress_01_LOD0_02
- C: "OO",2330846052544,2330953981296
-
- ;Geometry::, Model::UCX_SM_Flying_Buttress_01_LOD0_03
- C: "OO",2333008479408,2330953992896
-
- ;Material::M_Collision_01, Model::UCX_SM_Flying_Buttress_01_LOD0_03
- C: "OO",2330846052544,2330953992896
- }
- ;Takes section
- ;----------------------------------------------------
- Takes: {
- Current: "Take 001"
- Take: "Take 001" {
- FileName: "Take_001.tak"
- LocalTime: 1539538600,46186158000
- ReferenceTime: 1539538600,46186158000
- }
- }
|