| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790 |
- ; 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: 2021
- Month: 4
- Day: 5
- Hour: 13
- Minute: 30
- Second: 40
- Millisecond: 59
- }
- 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\Source_NEW\SM_Ivy_Preset_05.fbx"
- P: "SrcDocumentUrl", "KString", "Url", "", "A:\Lordenfel\Unity\Lordenfel\Assets\Lordenfel\Source\Source_NEW\SM_Ivy_Preset_05.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", "", "", "05/04/2021 10:30:40.058"
- P: "Original|FileName", "KString", "", "", "A:\Lordenfel\Unity\Lordenfel\Assets\Lordenfel\Source\Source_NEW\SM_Ivy_Preset_05.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", "", "", "05/04/2021 10:30:40.058"
- P: "Original|ApplicationActiveProject", "KString", "", "", "A:\Lordenfel\Unity\Lordenfel\Assets\Lordenfel"
- P: "Original|ApplicationNativeFile", "KString", "", "", "A:\Lordenfel\Maya\Lordenfel_10_Unity_EXPORT.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: 2266844784816, "", "Scene" {
- Properties70: {
- P: "SourceObject", "object", "", ""
- P: "ActiveAnimStackName", "KString", "", "", "Take 001"
- }
- RootNode: 0
- }
- }
- ; Document References
- ;------------------------------------------------------------------
- References: {
- }
- ; Object definitions
- ;------------------------------------------------------------------
- Definitions: {
- Version: 100
- Count: 23
- 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: 5
- 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: 3
- PropertyTemplate: "FbxMesh" {
- Properties70: {
- P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8
- P: "BBoxMin", "Vector3D", "Vector", "",0,0,0
- P: "BBoxMax", "Vector3D", "Vector", "",0,0,0
- P: "Primary Visibility", "bool", "", "",1
- P: "Casts Shadows", "bool", "", "",1
- P: "Receive Shadows", "bool", "", "",1
- }
- }
- }
- ObjectType: "Material" {
- Count: 2
- PropertyTemplate: "FbxSurfacePhong" {
- Properties70: {
- P: "ShadingModel", "KString", "", "", "Phong"
- P: "MultiLayer", "bool", "", "",0
- P: "EmissiveColor", "Color", "", "A",0,0,0
- P: "EmissiveFactor", "Number", "", "A",1
- P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2
- P: "AmbientFactor", "Number", "", "A",1
- P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8
- P: "DiffuseFactor", "Number", "", "A",1
- P: "Bump", "Vector3D", "Vector", "",0,0,0
- P: "NormalMap", "Vector3D", "Vector", "",0,0,0
- P: "BumpFactor", "double", "Number", "",1
- P: "TransparentColor", "Color", "", "A",0,0,0
- P: "TransparencyFactor", "Number", "", "A",0
- P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0
- P: "DisplacementFactor", "double", "Number", "",1
- P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0
- P: "VectorDisplacementFactor", "double", "Number", "",1
- P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2
- P: "SpecularFactor", "Number", "", "A",1
- P: "ShininessExponent", "Number", "", "A",20
- P: "ReflectionColor", "Color", "", "A",0,0,0
- P: "ReflectionFactor", "Number", "", "A",1
- }
- }
- }
- ObjectType: "Texture" {
- Count: 4
- 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: 4
- 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: 2266388311232, "NodeAttribute::", "Null" {
- Properties70: {
- P: "Look", "enum", "", "",0
- }
- TypeFlags: "Null"
- }
- NodeAttribute: 2268467036304, "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: 2267733785248, "Geometry::", "Mesh" {
- Vertices: *5334 {
- a: -6.3896484375,350.672729492188,-82.6348876953125,-1.4169921875,324.6259765625,-87.2568359375,-6.4521484375,325.840087890625,-71.595458984375,-6.259765625,334.858154296875,-101.441650390625,-6.4560546875,308.941528320313,-69.8895263671875,-6.1826171875,301.178375244141,-111.197601318359,-1.326171875,292.377899169922,-99.1806945800781,-6.109375,254.756988525391,-119.709808349609,-1.4609375,297.874603271484,-78.9505920410156,-1.587890625,293.159301757813,-59.1531982421875,-6.630859375,302.844055175781,-42.8893432617188,-6.5234375,268.998657226563,-57.1585693359375,-1.5029296875,262.301879882813,-70.2987060546875,-6.5126953125,227.13996887207,-56.2535858154297,-3.939453125,252.633010864258,-87.1677703857422,-1.2763671875,253.555419921875,-104.371337890625,-3.9345703125,201.782073974609,-84.9073791503906,-1.2548828125,211.290954589844,-105.210021972656,-6.08984375,206.93342590332,-119.78923034668,-1.3359375,184.079071044922,-91.1650695800781,-6.1865234375,171.769668579102,-102.746932983398,-6.3955078125,165.306365966797,-70.5149230957031,-1.4560546875,179.915191650391,-72.5525817871094,-1.537109375,184.744079589844,-60.3486938476563,-6.5537109375,172.938781738281,-46.8278198242188,-1.5302734375,218.8466796875,-63.5751953125,-2.5791015625,197.027801513672,-51.2143859863281,-6.626953125,201.016036987305,-37.2017364501953,-36.21875,57.6600341796875,97.6365966796875,-27.345703125,35.9761199951172,84.3843231201172,-31.572265625,30.9502716064453,99.5166778564453,-34.6279296875,49.3818969726563,74.5557250976563,-28.7177734375,14.7368774414063,95.3394165039063,-29.634765625,21.5134582519531,53.8689270019531,-22.7021484375,10.1650695800781,62.1513977050781,-22.4931640625,-18.565673828125,29.992919921875,-22.5302734375,8.41461181640625,83.0405883789063,-20.7109375,-2.63931274414063,100.031585693359,-26.291015625,-0.030364990234375,118.625885009766,-21.5107421875,-26.5270690917969,93.6428527832031,-16.25390625,-27.426513671875,79.005126953125,-14.6162109375,-65.5665588378906,80.1756286621094,-18.0771484375,-31.1152038574219,59.8447570800781,
- -16.626953125,-24.0049743652344,43.9950256347656,-9.6396484375,-78.9341430664063,44.5785522460938,-9.7587890625,-62.8308410644531,28.7521667480469,-14.6748046875,-62.7923278808594,13.5611877441406,-4.5634765625,-92.7577819824219,32.6426086425781,-8.0205078125,-101.090454101563,17.5491943359375,-5.2568359375,-117.964416503906,45.6273803710938,-2.8974609375,-102.901000976563,48.7083740234375,-3.041015625,-102.557312011719,61.8284301757813,-5.2509765625,-118.906860351563,70.4954833984375,-8.7900390625,-69.9099426269531,70.4601745605469,-5.529296875,-94.4470825195313,74.6124877929688,-9.333984375,-96.178955078125,89.143310546875,-6.3896484375,56.15185546875,-342.57080078125,-1.4169921875,31.2838439941406,-333.550140380859,-6.4521484375,40.1658935546875,-320.594848632813,-6.259765625,33.0527648925781,-350.951171875,-6.4560546875,26.3840942382813,-310.667663574219,-6.1826171875,-0.99261474609375,-342.559997558594,-1.326171875,-2.60549926757813,-327.751983642578,-6.1083984375,-45.4508361816406,-326.720367431641,-1.4609375,12.2696533203125,-312.981323242188,-1.587890625,18.0845642089844,-293.478912353516,-6.630859375,34.6035614013672,-284.236267089844,-6.5234375,-1.841552734375,-279.670654296875,-1.5029296875,-14.2113037109375,-287.702514648438,-6.5126953125,-37.6400146484375,-257.958374023438,-3.939453125,-31.0196533203125,-297.477661132813,-1.2763671875,-38.8220520019531,-312.835723876953,-3.9345703125,-73.9273376464844,-270.093353271484,-1.2548828125,-75.8435668945313,-292.430480957031,-6.08984375,-86.9068603515625,-302.877563476563,-1.3359375,-92.3875122070313,-266.660949707031,-6.1865234375,-108.838745117188,-270.536987304688,-6.3955078125,-98.320068359375,-239.391357421875,-1.4560546875,-86.6874389648438,-248.460876464844,-1.537109375,-76.4031372070313,-240.305480957031,-6.5537109375,-79.8670043945313,-222.694152832031,-1.5302734375,-48.48291015625,-260.15087890625,-2.580078125,-61.1983337402344,-238.538177490234,-6.6279296875,-50.7381896972656,-228.396392822266,-6.3896484375,38.9090576171875,263.996948242188,-1.4169921875,25.7069396972656,241.073150634766,
- -6.4521484375,14.4901428222656,252.070220947266,-6.259765625,43.1502685546875,239.793807983398,-6.4560546875,2.32147216796875,240.221862792969,-6.1826171875,28.9746246337891,207.722671508789,-1.326171875,14.1121215820313,208.704895019531,-6.1083984375,5.65625,166.6904296875,-1.4609375,2.14846801757813,225.919952392578,-1.587890625,-16.0478515625,235.033203125,-6.630859375,-22.2811584472656,252.905364990234,-6.5234375,-33.1064758300781,217.806610107422,-1.5029296875,-27.3449401855469,204.230255126953,-6.5126953125,-60.7055358886719,186.323760986328,-3.939453125,-20.6370239257813,185.980163574219,-1.2763671875,-6.8662109375,175.62890625,-3.9345703125,-55.055419921875,148.479736328125,-1.2548828125,-33.3907470703125,142.713745117188,-6.08984375,-25.0234375,130.00390625,-1.3359375,-61.6409301757813,130.895202636719,-6.1865234375,-60.6809692382813,114.021179199219,-6.3955078125,-89.5267028808594,129.788726806641,-1.4560546875,-78.5751953125,139.669921875,-1.537109375,-84.8206176757813,151.213562011719,-6.5537109375,-102.765563964844,150.860412597656,-1.5302734375,-60.4278564453125,175.263549804688,-2.580078125,-83.9214782714844,166.495513916016,-6.6279296875,-92.0920715332031,178.556365966797,-1.4833984375,-60.9386291503906,-19.8321838378906,-6.4091796875,-65.4585571289063,-58.2153930664063,-6.6787109375,-92.3460693359375,-26.8382568359375,-6.7490234375,-58.91845703125,21.81005859375,-1.31640625,-54.8632202148438,-49.9550170898438,-6.1005859375,-10.3143615722656,-69.8827209472656,-1.533203125,-40.516845703125,11.384521484375,-6.5947265625,2.21176147460938,49.4519958496094,-1.0908203125,-5.26962280273438,-49.1485290527344,-5.970703125,41.2644653320313,-46.5245971679688,-3.865234375,-4.50506591796875,-16.8175659179688,-0.9658203125,34.776123046875,-36.218994140625,-6.1220703125,54.1157989501953,-0.837326049804688,-1.4150390625,8.71798706054688,34.8420104980469,-1.14453125,38.5311584472656,6.23526000976563,-1.4326171875,41.3158111572266,71.2816314697266,-6.578125,42.1599578857422,85.8347625732422,-3.8759765625,45.1002044677734,35.0777435302734,
- -1.38671875,58.0551147460938,77.9799194335938,-6.5078125,79.1994934082031,107.630157470703,-6.27734375,88.2668151855469,66.8898620605469,-1.1650390625,63.9679870605469,35.9640808105469,-6.1015625,88.6328125,29.134765625,-1.2431640625,68.7123107910156,57.7162170410156,-1.4833984375,79.8381195068359,-47.2819976806641,-6.408203125,64.7727966308594,-82.8727111816406,-6.6787109375,47.7242431640625,-45.2327880859375,-6.75,93.4140014648438,-7.86334228515625,-1.3154296875,77.25439453125,-77.90185546875,-6.0986328125,114.460205078125,-109.484130859375,-1.5341796875,108.169281005859,-23.0152893066406,-6.595703125,159.833236694336,1.59690856933594,-1.08984375,125.097900390625,-90.985107421875,-5.96875,170.511459350586,-101.469985961914,-3.865234375,134.866073608398,-60.1563873291016,-0.96484375,167.161315917969,-89.7605590820313,-6.1220703125,195.617309570313,-61.1932373046875,-1.416015625,161.997711181641,-14.2493591308594,-1.14453125,182.629745483398,-50.0470123291016,-1.4345703125,203.479217529297,11.6286315917969,-6.580078125,208.356414794922,25.3671569824219,-3.876953125,196.996658325195,-24.1898651123047,-1.3876953125,221.423446655273,13.3834075927734,-6.5107421875,250.010772705078,35.9443664550781,-6.279296875,247.332809448242,-5.70722961425781,-1.1650390625,215.3603515625,-28.6103515625,-6.1015625,237.13444519043,-42.0598907470703,-1.244140625,225.993850708008,-9.05107116699219,-1.4833984375,-40.4217529296875,162.093872070313,-6.4091796875,-67.6483154296875,134.664184570313,-6.6787109375,-69.4671020507813,175.945983886719,-6.7490234375,-13.1533203125,193.6318359375,-1.31640625,-54.2131958007813,134.633483886719,-6.1005859375,-31.4301452636719,91.4761047363281,-1.533203125,-5.095458984375,174.077392578125,-6.5947265625,52.0168151855469,177.699432373047,-1.0908203125,-14.6730041503906,104.688323974609,-5.970703125,23.5789642333984,78.0594329833984,-3.865234375,5.86477661132813,129.669464111328,-0.9658203125,24.8258209228516,90.1734771728516,-6.1220703125,61.868408203125,106.102783203125,-1.4150390625,48.1296691894531,162.184356689453,
- -1.14453125,53.9605102539063,121.279846191406,-1.4326171875,96.2618713378906,170.770660400391,-6.578125,105.900573730469,181.70817565918,-3.8759765625,76.9172973632813,139.936828613281,-1.38671875,113.570373535156,165.722732543945,-6.5078125,148.499725341797,176.026092529297,-6.2783203125,130.516235351563,138.361938476563,-1.1650390625,92.3172607421875,128.998901367188,-6.1015625,107.523712158203,108.414337158203,-1.2431640625,109.465148925781,143.198547363281,-1.4853515625,-32.9537353515625,-90.6236572265625,-6.4091796875,-66.3283386230469,-110.113494873047,-6.6796875,-57.4500122070313,-69.7566528320313,-6.751953125,1.51925659179688,-67.1770324707031,-1.31640625,-53.3544006347656,-113.603424072266,-6.099609375,-42.4597778320313,-161.175598144531,-1.5361328125,4.2672119140625,-88.1468505859375,-6.5986328125,60.3843994140625,-99.3626708984375,-1.0908203125,-22.8641357421875,-152.725463867188,-5.970703125,7.23583984375,-188.31103515625,-3.8662109375,3.41622924804688,-133.879669189453,-0.9658203125,11.561767578125,-176.926513671875,-6.1240234375,51.4576416015625,-171.079467773438,-1.41796875,52.6316375732422,-113.350784301758,-1.146484375,47.7271728515625,-154.376342773438,-1.4365234375,101.35107421875,-117.45556640625,-6.5830078125,113.481964111328,-109.371551513672,-3.87890625,74.7153625488281,-142.265106201172,-1.390625,116.774566650391,-126.791839599609,-6.513671875,153.179351806641,-125.835296630859,-6.2822265625,126.099243164063,-157.595092773438,-1.16796875,86.7777404785156,-156.799407958984,-6.1044921875,96.1671752929688,-180.608215332031,-1.2470703125,107.0048828125,-147.4990234375,-1.482421875,-75.6968078613281,-152.366729736328,-6.40625,-113.803771972656,-158.813537597656,-6.6767578125,-91.2454528808594,-124.192718505859,-6.7490234375,-35.16455078125,-142.60400390625,-1.3134765625,-102.898376464844,-166.661071777344,-6.09765625,-109.505554199219,-215.014343261719,-1.533203125,-39.9993591308594,-163.193695068359,-6.595703125,8.54150390625,-193.50341796875,-1.087890625,-88.1885375976563,-214.029357910156,-5.9677734375,-72.5948486328125,-257.951293945313,
- -3.86328125,-56.9459838867188,-205.678405761719,-0.962890625,-64.5273742675781,-248.829132080078,-6.12109375,-25.1370849609375,-257.447631835938,-1.4150390625,-3.65185546875,-203.85302734375,-1.1435546875,-22.728515625,-240.5029296875,-1.43359375,40.4789733886719,-224.897979736328,-6.580078125,54.6831512451172,-221.617630004883,-3.8759765625,6.79791259765625,-238.703063964844,-1.3876953125,51.6111450195313,-239.080261230469,-6.5107421875,86.0083160400391,-251.040512084961,-6.2783203125,49.4571533203125,-271.191284179688,-1.1650390625,12.9499206542969,-256.561798095703,-6.1015625,13.3265075683594,-282.151031494141,-1.244140625,35.1586303710938,-255.001525878906,-22.255859375,279.812561035156,-19.2499389648438,-19.0029296875,298.818359375,-68.78515625,-14.11328125,251.021575927734,-77.9159240722656,-4.7861328125,225.789916992188,-59.6182861328125,-6.4541015625,214.349197387695,-76.2103729248047,-3.34765625,218.035766601563,-60.5062255859375,-11.3662109375,231.532363891602,-81.1981048583984,0.8369140625,213.314926147461,-86.2905426025391,-13.1123046875,270.569122314453,-87.7111511230469,-0.9755859375,232.315887451172,-97.1763000488281,-7.859375,272.435974121094,-96.8491821289063,-36.5166015625,-32.0199584960938,132.963439941406,-39.3564453125,2.81793212890625,92.9155883789063,-27.283203125,-37.4894104003906,67.9881286621094,-12.8955078125,-65.3827514648438,76.5527954101563,-13.6552734375,-70.6712341308594,57.0484924316406,-10.265625,-72.0099487304688,73.0662231445313,-21.5927734375,-53.9425354003906,58.2381286621094,-6.9052734375,-66.9672241210938,47.2222290039063,-30.0693359375,-15.9269714355469,65.4695129394531,-12.4375,-46.0317077636719,43.4917297363281,-25.744140625,-10.2090148925781,57.5204772949219,-22.255859375,26.4777069091797,-252.24787902832,-19.0029296875,18.1695861816406,-304.649749755859,-14.11328125,-27.7890930175781,-288.659210205078,-4.7861328125,-40.4916076660156,-260.197662353516,-6.4541015625,-58.6953735351563,-268.845764160156,-3.34765625,-47.6504821777344,-257.087982177734,-11.3662109375,-46.3083190917969,-281.756561279297,
- 0.8369140625,-64.6309509277344,-277.057708740234,-13.1123046875,-15.7576599121094,-306.914886474609,-0.9755859375,-53.618408203125,-295.985595703125,-7.859375,-18.7103881835938,-315.763122558594,-22.255859375,-55.19482421875,250.45751953125,-19.0029296875,-5.03189086914063,233.177093505859,-14.11328125,-28.7604675292969,190.693634033203,-4.7861328125,-58.9957580566406,183.126312255859,-6.4541015625,-53.6397705078125,163.697143554688,-3.34765625,-63.3003845214844,176.615631103516,-11.3662109375,-38.7736206054688,173.653137207031,0.8369140625,-46.5830383300781,156.425750732422,-13.1123046875,-8.6925048828125,199.370971679688,-0.9755859375,-26.0306396484375,163.983032226563,-7.859375,-0.491668701171875,194.926300048828,-11.8583984375,32.3447265625,101.1083984375,-13.736328125,66.2856903076172,96.7651824951172,-11.623046875,62.0916748046875,75.1512451171875,-12.404296875,9.02212524414063,51.9996643066406,-7.01953125,1.0711669921875,68.5047607421875,-3.6767578125,3.30026245117188,27.4018249511719,-3.5380859375,-8.08963012695313,34.6486511230469,-6.5478515625,-51.6974792480469,-65.9884948730469,0.0107421875,-41.4183654785156,-50.8753967285156,-6.2158203125,-13.586669921875,-47.951904296875,-13.6591796875,-32.7945251464844,-74.0982360839844,-7.89453125,-41.4861145019531,-84.6921691894531,-17.1923828125,6.7393798828125,-73.2655029296875,-15.7734375,-11.1599426269531,-86.1814270019531,-11.8603515625,203.200134277344,42.7753295898438,-13.73828125,234.575500488281,29.1213989257813,-11.625,224.509002685547,9.54025268554688,-12.4052734375,167.084075927734,2.13973999023438,-7.021484375,164.061752319336,20.2092132568359,-3.6767578125,154.71696472168,-19.8787384033203,-3.5390625,145.805389404297,-9.73953247070313,-6.5458984375,75.81396484375,-94.18212890625,0.01171875,89.9065856933594,-82.5416564941406,-6.2138671875,117.446273803711,-87.5136871337891,-13.658203125,91.6976470947266,-107.250595092773,-7.892578125,80.3920593261719,-114.994659423828,-17.1904296875,129.88948059082,-117.49821472168,-15.771484375,109.094055175781,-124.897155761719,
- -11.8583984375,107.591735839844,199.784133911133,-13.736328125,131.633941650391,175.436676025391,-11.623046875,115.004333496094,161.007263183594,-12.404296875,58.9489898681641,175.504653930664,-7.01953125,62.8668518066406,193.400054931641,-3.6767578125,39.2770538330078,159.668655395508,-3.5380859375,34.7781372070313,172.396301269531,-6.5478515625,-61.6073608398438,120.059631347656,0.0107421875,-44.196044921875,125.619384765625,-6.2158203125,-20.4833374023438,110.757873535156,-13.6591796875,-51.7270202636719,102.019073486328,-7.89453125,-65.1019897460938,99.0376586914063,-17.1923828125,-20.0902099609375,78.2965087890625,-15.7744140625,-42.1459350585938,79.1655883789063,-11.8642578125,119.773162841797,-92.3401184082031,-13.7412109375,136.730712890625,-122.060302734375,-11.6279296875,116.944976806641,-131.719085693359,-12.408203125,66.5171203613281,-103.268035888672,-7.0234375,74.91357421875,-86.98486328125,-3.6796875,43.4295654296875,-113.501098632813,-3.541015625,42.3615875244141,-100.043685913086,-6.546875,-64.25390625,-125.78125,0.0107421875,-45.9979248046875,-124.895385742188,-6.2158203125,-26.9146423339844,-145.363861083984,-13.6591796875,-59.3552856445313,-145.758605957031,-7.8935546875,-73.0465087890625,-145.192016601563,-17.19140625,-34.8982543945313,-176.830871582031,-15.7724609375,-55.9854736328125,-170.308715820313,-11.8603515625,66.5833435058594,-207.906890869141,-13.73828125,71.95263671875,-241.70166015625,-11.625,50.0310363769531,-243.749237060547,-12.4052734375,12.8995971679688,-199.323059082031,-7.0205078125,26.5052795410156,-187.054290771484,-3.6767578125,-12.3141479492188,-200.743835449219,-3.5380859375,-8.56103515625,-187.77587890625,-6.5439453125,-117.395965576172,-174.204559326172,0.013671875,-100.003387451172,-179.821746826172,-6.212890625,-89.3782653808594,-205.712249755859,-13.65625,-119.868103027344,-194.624938964844,-7.890625,-132.477233886719,-189.259460449219,-17.1884765625,-107.960021972656,-232.332092285156,-15.76953125,-125.385223388672,-218.783660888672,-17.423828125,44.5269165039063,42.8286743164063,
- -32.5595703125,62.3505706787109,45.0605316162109,-28.8994140625,61.5309143066406,41.0680236816406,-21.431640625,44.1518707275391,49.2319488525391,-31.7216796875,62.13916015625,50.39306640625,-21.064453125,42.3797302246094,57.7742614746094,-8.0146484375,19.1410522460938,45.9828491210938,-10.3720703125,27.8416442871094,37.5574645996094,-8.755859375,37.2117919921875,30.6297607421875,-3.546875,8.86151123046875,32.4074096679688,-1.083984375,17.6901245117188,23.0368041992188,-17.423828125,198.61198425293,-16.5872344970703,-32.560546875,216.349304199219,-19.4251098632813,-28.900390625,214.446624755859,-23.0289611816406,-21.4326171875,200.041320800781,-10.3336791992188,-31.72265625,217.636291503906,-14.2465209960938,-21.0654296875,200.726654052734,-1.63662719726563,-8.015625,175.118530273438,-6.4654541015625,-10.373046875,181.118301391602,-16.9861907958984,-8.7568359375,188.179534912109,-26.2560119628906,-3.5478515625,161.455200195313,-16.6268310546875,-1.083984375,167.313842773438,-28.0904541015625,-17.423828125,81.2452545166016,146.391738891602,-32.5595703125,96.6532135009766,137.158096313477,-28.8994140625,93.5460205078125,134.520629882813,-21.431640625,84.8988342285156,151.664459228516,-31.7216796875,99.7747802734375,141.486694335938,-21.064453125,88.7709350585938,159.481872558594,-8.0146484375,63.2046966552734,164.526962280273,-10.3720703125,64.8591003417969,152.529998779297,-8.755859375,67.9642639160156,141.299224853516,-3.546875,46.7413787841797,160.17985534668,-1.083984375,47.9138488769531,147.359161376953,-17.4267578125,80.5599975585938,-137.143127441406,-32.5634765625,93.0685119628906,-150.035003662109,-28.90234375,89.38671875,-151.783203125,-21.4345703125,85.4486083984375,-132.988891601563,-31.724609375,97.1998291015625,-146.657592773438,-21.068359375,91.2040405273438,-126.433654785156,-8.0185546875,67.8012542724609,-114.970230102539,-10.375,66.3086853027344,-126.989166259766,-8.7587890625,66.4154357910156,-138.641204833984,-3.5498046875,50.7735595703125,-114.930541992188,-1.0869140625,48.6034393310547,-127.620193481445,
- -17.423828125,14.0747985839844,-235.975006103516,-32.5595703125,21.2246246337891,-252.453109741211,-28.8994140625,17.1627197265625,-252.788452148438,-21.431640625,20.1151733398438,-233.815490722656,-31.7216796875,26.2826232910156,-250.751556396484,-21.0654296875,27.8150024414063,-229.714294433594,-8.0146484375,9.96823120117188,-210.725128173828,-10.3720703125,4.32733154296875,-221.443176269531,-8.755859375,0.312225341796875,-232.382110595703,-3.546875,-5.9481201171875,-204.674682617188,-1.083984375,-12.4598388671875,-215.780151367188,-1.0654296875,-101.036376953125,-44.898681640625,-11.05078125,-90.0167846679688,-37.1134643554688,-3.62890625,-78.7481994628906,-51.9386291503906,-6.0927734375,-104.735473632813,-27.7081298828125,-10.162109375,-70.1482543945313,-38.3621215820313,-14.2177734375,-85.8763732910156,-16.1585998535156,-2.1171875,-73.3841552734375,-33.7005615234375,-8.7080078125,-56.440673828125,-40.182861328125,-1.9287109375,-52.8990783691406,-54.2984924316406,-7.9130859375,-56.8978881835938,-24.7357788085938,-7.0654296875,-38.8628234863281,-45.8003234863281,-9.5341796875,-41.9306640625,-32.2333984375,-4.8935546875,-66.6367797851563,2.16986083984375,-13.62109375,-50.2523193359375,7.4527587890625,-10.169921875,-38.5342102050781,-2.96682739257813,-9.5703125,-58.9180603027344,19.6151428222656,-14.166015625,-32.469482421875,12.618408203125,-13.552734375,-42.7907104492188,22.2424926757813,-15.2236328125,80.2645874023438,96.6640014648438,-9.2041015625,59.8778533935547,145.091720581055,-10.1435546875,97.5298156738281,128.658721923828,-4.4521484375,50.6069030761719,78.2768249511719,-10.20703125,127.202728271484,105.096282958984,-12.83984375,69.1772613525391,68.4643707275391,-0.4169921875,20.8040771484375,39.6898193359375,-4.6748046875,80.9138488769531,56.6775207519531,-4.9931640625,47.0183715820313,32.8933715820313,-11.8974609375,50.9936218261719,15.5385437011719,-1.5,32.0825653076172,1.15873718261719,-12.7001953125,83.1051940917969,59.4040222167969,-3.3349609375,41.7915649414063,-8.03851318359375,-17.77734375,81.7157287597656,23.7860412597656,
- -19.044921875,115.134887695313,49.0010986328125,-17.134765625,107.199035644531,28.4441528320313,-10.6044921875,-36.1427917480469,32.3347473144531,-13.275390625,-26.0559997558594,16.3424377441406,-2.9775390625,-41.6572570800781,-1.63186645507813,-18.3017578125,-8.473388671875,67.543212890625,-1.5556640625,-29.542236328125,-7.415283203125,-16.306640625,1.50421142578125,33.0061645507813,-17.875,25.7900848388672,67.0937957763672,-13.03125,23.9171142578125,45.5938720703125,-17.30078125,38.7403564453125,-7.6766357421875,-7.4970703125,16.0225219726563,36.2510375976563,-11.3720703125,52.9447326660156,23.7513732910156,-6.6796875,12.6381225585938,-28.1177368164063,-14.4462890625,82.8967742919922,3.80107116699219,-16.2236328125,30.5285797119141,-35.4411468505859,-3.7119140625,-12.43212890625,-67.33251953125,-9.814453125,43.0322570800781,-46.1484069824219,-8.9443359375,-27.6650390625,-44.076171875,-13.6083984375,-26.0158081054688,-62.5197143554688,-3.3193359375,-47.5743408203125,-72.6124267578125,-16.455078125,12.5449523925781,-24.2978210449219,-3.361328125,-39.3255004882813,-83.2991333007813,-17.80078125,5.93292236328125,-59.6647338867188,-19.0107421875,42.8948669433594,-40.0035705566406,-15.57421875,31.7361297607422,-58.7902374267578,-15.6416015625,-63.4922485351563,-10.5039672851563,-17.6728515625,-106.628021240234,20.0292053222656,-13.6376953125,-66.1798095703125,26.0516357421875,-3.681640625,-81.989990234375,-48.606201171875,-8.369140625,-28.8905334472656,21.8897399902344,-10.3232421875,-58.5480346679688,-40.0177612304688,0.908203125,-60.7174987792969,-60.9079284667969,0.185546875,-43.6073608398438,-43.1337280273438,-4.1318359375,-57.8856201171875,-49.4168701171875,-10.66796875,-50.0859985351563,-64.2149047851563,-3.8427734375,-55.5174560546875,-76.3426513671875,-10.6611328125,-41.1767272949219,-52.9042663574219,-9.630859375,-40.7895812988281,-78.6938781738281,-12.44921875,-35.0694274902344,-67.2012634277344,-1.8056640625,25.0865173339844,11.9820251464844,-11.3896484375,36.7590942382813,15.5960083007813,-2.095703125,44.0282897949219,1.28610229492188,
- -8.8310546875,25.0579223632813,27.3743286132813,-9.400390625,54.5048217773438,11.0067749023438,-16.8056640625,44.4893798828125,33.2042236328125,-4.314453125,-22.2357177734375,41.9449462890625,-11.4853515625,-6.7437744140625,33.1585693359375,-4.1181640625,-4.4404296875,19.1767578125,-11.6181640625,-5.33636474609375,48.4849243164063,-10.58984375,10.034912109375,25.588623046875,-13.6806640625,8.42800903320313,39.2024230957031,-4.0576171875,38.5199890136719,53.4203796386719,-10.91796875,50.4286956787109,44.2099456787109,-3.9462890625,51.9337158203125,32.4415283203125,-12.083984375,52.8268432617188,57.2028198242188,-11.0556640625,64.2333984375,36.36328125,-14.40234375,63.6659240722656,47.9852600097656,-5.3955078125,-42.0531311035156,-18.0101623535156,-13.4609375,-26.353515625,-21.3251953125,-6.3447265625,-19.1219787597656,-32.2899475097656,-14.337890625,-30.1126708984375,-7.4544677734375,-14.236328125,-9.17715454101563,-22.5550842285156,-17.4501953125,-15.2842102050781,-11.3681945800781,-5.62890625,-3.13629150390625,10.7299194335938,-11.9287109375,13.6755676269531,10.2790832519531,-2.4814453125,22.5169677734375,2.8138427734375,-15.5615234375,6.8138427734375,22.4046630859375,-11.361328125,30.6254425048828,13.3666534423828,-16.947265625,22.394775390625,21.957275390625,-1.57421875,-70.4075622558594,-24.4212341308594,-14.6162109375,-60.2734375,-31.7626953125,-2.9453125,-65.3583374023438,-49.1952514648438,-11.74609375,-58.4744567871094,-12.5057067871094,-14.048828125,-50.4234619140625,-50.8189697265625,-24.26953125,-40.2473754882813,-24.9417114257813,-2.3359375,-82.7646484375,-59.9306640625,-10.7470703125,-70.3905944824219,-55.7372741699219,-5.6630859375,-59.6301574707031,-60.7805480957031,-10.65234375,-79.2270202636719,-46.9555358886719,-12.935546875,-57.1299743652344,-49.2705993652344,-14.7509765625,-66.7830810546875,-43.5389404296875,-1.4521484375,-4.691162109375,-6.301513671875,-12.0341796875,6.14364624023438,-13.3856506347656,-2.6279296875,-1.1402587890625,-29.4244384765625,-8.615234375,8.325927734375,4.240966796875,-10.564453125,14.0661010742188,-31.5296020507813,
- -17.650390625,26.1982727050781,-7.99899291992188,-8.07421875,199.477798461914,-73.4167327880859,-3.0673828125,171.332504272461,-90.0776519775391,-12.0009765625,182.276611328125,-70.250732421875,-13.8056640625,220.97900390625,-37.02685546875,-2.537109375,161.977203369141,-81.5452575683594,-14.642578125,194.038848876953,-38.3976745605469,-14.5859375,208.604553222656,-7.34173583984375,-11.45703125,190.223678588867,-16.4794464111328,0.681640625,208.681762695313,-81.9910888671875,-10.138671875,213.335693359375,-92.049072265625,-1.8681640625,199.860687255859,-101.651031494141,-6.171875,223.930450439453,-79.6896667480469,-10.251953125,210.474365234375,-110.214111328125,-16.2822265625,231.528854370117,-97.3734893798828,-1.720703125,176.803619384766,-66.3955993652344,-8.9169921875,171.580627441406,-83.5267944335938,-0.1640625,159.678375244141,-89.8108825683594,-10.8544921875,186.672515869141,-80.7112731933594,-8.2939453125,168.883010864258,-101.844528198242,-12.7890625,181.153335571289,-96.4794769287109,0.2548828125,265.974060058594,-90.2329711914063,-8.021484375,262.771301269531,-104.424011230469,-1.6552734375,252.613983154297,-111.505157470703,-8.791015625,275.695953369141,-100.898773193359,-9.611328125,261.585540771484,-120.367584228516,-12.40625,271.988311767578,-114.533172607422,-2.7080078125,180.273895263672,-63.0268859863281,-9.35546875,190.741241455078,-74.2685241699219,-1.2958984375,191.359985351563,-85.6048583984375,-11.900390625,194.546661376953,-61.6545104980469,-9.47265625,203.693115234375,-83.773681640625,-13.9228515625,204.228820800781,-72.3727416992188,0.140625,201.432968139648,-50.9303131103516,-8.978515625,209.384613037109,-55.7315979003906,-1.998046875,204.579986572266,-68.7647399902344,-5.6630859375,210.923004150391,-42.1326599121094,-9.0859375,215.975708007813,-69.7088623046875,-14.2021484375,224.526428222656,-50.8436889648438,-1.0654296875,34.3334655761719,-60.1450500488281,-11.05078125,47.08935546875,-55.75048828125,-3.6279296875,53.7666320800781,-73.1327819824219,-6.0927734375,35.5850830078125,-42.6063232421875,
- -10.1611328125,65.8174743652344,-62.5008850097656,-14.21875,56.9203948974609,-36.7866363525391,-2.1171875,64.01318359375,-57.11962890625,-8.70703125,78.4703979492188,-68.0794067382813,-1.927734375,77.9265441894531,-82.6222839355469,-7.9130859375,82.3477783203125,-53.1190185546875,-7.064453125,93.7785949707031,-78.3835144042969,-9.533203125,94.623779296875,-64.500244140625,-4.89453125,80.5151824951172,-24.5629425048828,-13.6220703125,97.7230377197266,-24.0699310302734,-10.169921875,106.06282043457,-37.3483123779297,-9.5712890625,92.8009338378906,-9.97055053710938,-14.166015625,116.240997314453,-24.0793151855469,-13.5537109375,109.020095825195,-11.9545135498047,-15.2255859375,247.969146728516,25.1175689697266,-9.20703125,241.926666259766,77.3123931884766,-10.1455078125,273.486755371094,51.0121459960938,-4.4541015625,214.354797363281,15.7493286132813,-10.208984375,295.393920898438,20.0989990234375,-12.8408203125,229.443939208984,1.13925170898438,-0.41796875,174.956817626953,-12.9728698730469,-4.6748046875,237.419143676758,-13.4578094482422,-4.994140625,198.227828979492,-26.8229522705078,-11.8974609375,197.195510864258,-44.5964813232422,-1.5,175.019683837891,-53.1189880371094,-12.701171875,240.28515625,-11.4521484375,-3.333984375,181.771545410156,-64.6640014648438,-17.77734375,228.998260498047,-45.2634582519531,-19.044921875,268.132019042969,-30.3904418945313,-17.1337890625,254.767974853516,-47.9117126464844,-10.60546875,118.223236083984,-4.12246704101563,-13.275390625,123.439590454102,-22.2957611083984,-2.978515625,103.437210083008,-35.1946258544922,-18.3037109375,154.628799438477,21.9520416259766,-1.5556640625,113.453552246094,-44.1323852539063,-16.3076171875,154.558288574219,-13.9973754882813,-17.8759765625,187.401901245117,11.9468231201172,-13.0322265625,179.595703125,-8.173828125,-17.30078125,178.943115234375,-63.464111328125,-7.4970703125,169.405029296875,-14.937744140625,-11.3720703125,201.363479614258,-37.2576141357422,-6.6787109375,148.168792724609,-75.7970275878906,-14.4453125,224.547668457031,-64.7833862304688,
- -16.22265625,163.300140380859,-87.8277893066406,-3.7099609375,113.139495849609,-106.444488525391,-9.8134765625,172.31396484375,-101.60205078125,-8.943359375,105.011779785156,-79.8583374023438,-13.607421875,101.441864013672,-98.0268859863281,-3.3173828125,77.9218902587891,-101.693344116211,-16.455078125,149.146743774414,-72.1032562255859,-3.359375,82.8559265136719,-114.259307861328,-17.798828125,132.91552734375,-104.21337890625,-19.009765625,173.899078369141,-95.6643981933594,-15.572265625,157.935409545898,-110.584121704102,-15.6416015625,79.9929046630859,-37.6115875244141,-17.6748046875,47.1073303222656,3.75869750976563,-13.6396484375,87.6272125244141,-1.76048278808594,-3.6806640625,51.5849914550781,-69.0273132324219,-8.369140625,122.267837524414,-16.1774749755859,-10.322265625,76.4932098388672,-67.3310089111328,0.9091796875,68.5726470947266,-86.7828216552734,0.1865234375,89.9679870605469,-74.4978332519531,-4.130859375,74.5026092529297,-76.5423126220703,-10.666015625,77.8565979003906,-92.9295349121094,-3.841796875,69.252685546875,-103.055908203125,-10.66015625,89.5715026855469,-84.5583801269531,-9.6298828125,82.7367248535156,-109.429290771484,-12.4482421875,91.4406280517578,-99.9919891357422,-1.806640625,171.326446533203,-40.7721862792969,-11.3896484375,183.543685913086,-40.5656890869141,-2.095703125,186.524978637695,-56.3353729248047,-8.83203125,175.600036621094,-25.9859008789063,-9.400390625,199.300323486328,-49.9301452636719,-16.806640625,195.886413574219,-25.8186645507813,-4.3154296875,134.261749267578,1.21975708007813,-11.486328125,146.681213378906,-11.5473022460938,-4.119140625,144.986053466797,-25.6145324707031,-11.619140625,152.315612792969,2.77752685546875,-10.58984375,160.676559448242,-23.5021514892578,-13.681640625,162.937591552734,-9.98233032226563,-4.05859375,195.803863525391,-4.73910522460938,-10.9189453125,204.664642333984,-16.9105529785156,-3.947265625,202.820999145508,-28.6311492919922,-12.0849609375,210.597808837891,-5.10433959960938,-11.0556640625,215.726654052734,-28.3016662597656,-14.4033203125,218.429489135742,-16.9845733642578,
- -5.39453125,98.4806976318359,-50.8083648681641,-13.4609375,112.628479003906,-58.3793334960938,-6.34375,116.508087158203,-70.9274597167969,-14.337890625,112.895050048828,-44.0111999511719,-14.2353515625,128.776977539063,-64.3607177734375,-17.4501953125,126.038970947266,-51.9131774902344,-5.6298828125,143.877716064453,-34.0900573730469,-11.9287109375,159.894287109375,-39.218994140625,-2.4814453125,166.297210693359,-48.8580627441406,-15.5615234375,156.69401550293,-25.6604766845703,-11.361328125,177.031433105469,-40.9920043945313,-16.9482421875,171.529205322266,-30.4434509277344,-1.57421875,69.4641723632813,-49.0416870117188,-14.6162109375,77.14306640625,-58.92333984375,-2.9443359375,67.3894348144531,-74.2404479980469,-11.74609375,84.25146484375,-40.93603515625,-14.0478515625,81.275634765625,-79.973388671875,-24.2685546875,98.2775421142578,-57.9695281982422,-2.3349609375,47.6767578125,-79.6845703125,-10.74609375,60.7296905517578,-79.1160125732422,-5.662109375,69.6523742675781,-86.9648132324219,-10.6513671875,54.6989593505859,-68.2160797119141,-12.9345703125,75.2690582275391,-76.6118011474609,-14.7509765625,67.6022338867188,-68.4114379882813,-1.4521484375,137.625961303711,-50.0068511962891,-12.0341796875,146.049468994141,-59.8382263183594,-2.6279296875,134.574066162109,-73.2023010253906,-8.615234375,153.070373535156,-43.5223999023438,-10.5634765625,148.586685180664,-79.4719085693359,-17.650390625,166.81071472168,-60.2683868408203,-1.0654296875,-87.4452209472656,167.087005615234,-11.05078125,-73.9697875976563,166.419860839844,-3.62890625,-74.23974609375,147.80126953125,-6.091796875,-79.7575378417969,182.900665283203,-10.1611328125,-59.0982360839844,153.185943603516,-14.2177734375,-57.7885131835938,180.363830566406,-2.1171875,-58.7710571289063,158.851013183594,-8.70703125,-49.4292907714844,143.300201416016,-1.9287109375,-55.3453674316406,130.003265380859,-7.9130859375,-40.26416015625,155.74169921875,-7.064453125,-39.0544738769531,128.039276123047,-9.5341796875,-33.1042785644531,140.611541748047,-4.8935546875,-31.3400573730469,182.929473876953,
- -13.62109375,-15.18408203125,176.98583984375,-10.169921875,-12.3839416503906,161.556488037109,-9.5703125,-14.5067443847656,191.903411865234,-14.166015625,2.0009765625,170.0869140625,-13.5517578125,-0.19012451171875,184.027648925781,-15.2236328125,142.576049804688,166.736206054688,-9.2041015625,156.388488769531,217.432418823242,-10.1435546875,175.896697998047,181.277557373047,-4.4521484375,107.889587402344,170.548751831055,-10.20703125,184.728302001953,144.431411743164,-12.83984375,116.459442138672,151.374481201172,-0.4169921875,60.6334533691406,158.547515869141,-4.6748046875,118.430435180664,134.856216430664,-4.9931640625,77.0800018310547,137.033126831055,-11.8974609375,69.508544921875,120.919677734375,-1.5,45.7538757324219,121.260711669922,-12.7001953125,121.837005615234,135.652435302734,-3.3349609375,47.7251892089844,108.031829833984,-17.77734375,98.7799072265625,108.468383789063,-19.044921875,140.637573242188,107.711791992188,-17.134765625,121.713928222656,96.4219360351563,-10.6044921875,11.2665710449219,187.873016357422,-13.275390625,9.3463134765625,169.063110351563,-2.9775390625,-14.0194091796875,164.533325195313,-18.3017578125,54.7601165771484,198.529647827148,-1.5556640625,-8.04806518554688,152.509552001953,-16.306640625,41.3184509277344,165.187591552734,-17.8740234375,81.4571838378906,177.048004150391,-13.03125,66.7249755859375,161.276733398438,-17.30078125,45.5464782714844,110.198822021484,-7.4970703125,54.7491149902344,158.790130615234,-11.3720703125,76.1081085205078,126.181350708008,-6.6796875,12.392822265625,110.202392578125,-14.4462890625,87.385986328125,92.006103515625,-16.2236328125,21.9611206054688,93.4044799804688,-3.7119140625,-31.5245971679688,94.7888793945313,-9.8154296875,25.20263671875,77.26513671875,-8.9443359375,-29.176513671875,122.490478515625,-13.6083984375,-39.25048828125,106.95458984375,-3.3193359375,-62.446044921875,112.302978515625,-16.455078125,14.6749572753906,113.266754150391,-3.361328125,-62.5418395996094,98.8028869628906,-17.80078125,-12.3386840820313,89.5011596679688,-19.0107421875,28.8835296630859,82.1872406005859,
- -15.57421875,8.51461791992188,74.2792663574219,-15.6416015625,-36.6798095703125,171.012573242188,-17.6728515625,-51.8108825683594,221.649078369141,-13.6376953125,-16.2541809082031,201.448944091797,-3.681640625,-74.7374267578125,152.422729492188,-8.3681640625,10.5350036621094,175.177581787109,-10.3232421875,-50.986328125,144.7294921875,0.908203125,-65.5761413574219,129.621124267578,0.185546875,-41.1457214355469,133.063262939453,-4.1318359375,-56.2611694335938,136.920471191406,-10.66796875,-59.24560546875,120.46142578125,-3.8427734375,-70.999755859375,114.263916015625,-10.6611328125,-45.2572631835938,123.871643066406,-9.630859375,-60.8554077148438,103.330139160156,-12.44921875,-49.2650146484375,108.851196289063,-1.8056640625,46.9197082519531,134.094512939453,-11.3896484375,58.3369750976563,129.741271972656,-2.0966796875,55.2364044189453,113.994216918945,-8.8310546875,56.3884582519531,146.230255126953,-9.4013671875,69.4779052734375,115.186889648438,-16.8056640625,75.2806396484375,138.837280273438,-4.314453125,28.1409759521484,186.863632202148,-11.4853515625,34.9187469482422,170.392379760742,-4.1181640625,28.1108703613281,157.966339111328,-11.6181640625,45.4783020019531,181.591583251953,-10.58984375,43.4606170654297,154.08757019043,-13.6806640625,50.58984375,165.7958984375,-4.0576171875,83.0472106933594,158.433929443359,-10.91796875,86.7432403564453,143.839920043945,-3.9462890625,80.6707763671875,133.646362304688,-12.083984375,96.6428680419922,152.590133666992,-11.0556640625,92.7721252441406,129.149078369141,-14.40234375,99.4922180175781,138.649444580078,-5.39453125,-24.4299621582031,151.883514404297,-13.4609375,-14.1148376464844,139.593170166016,-6.3447265625,-15.1829223632813,126.501647949219,-14.337890625,-8.52099609375,152.83056640625,-14.236328125,-1.35104370117188,128.033721923828,-17.4501953125,0.738922119140625,140.605133056641,-5.62890625,23.9284973144531,150.511505126953,-11.9287109375,36.8864898681641,139.790786743164,-2.482421875,39.2430419921875,128.460815429688,-15.5615234375,38.9612884521484,153.567733764648,
- -11.361328125,52.1335601806641,131.768325805664,-16.947265625,50.9513854980469,143.607635498047,-1.57421875,-50.7056579589844,164.320709228516,-14.6162109375,-47.2547302246094,152.292144775391,-2.9453125,-62.0074768066406,141.703460693359,-11.7451171875,-33.9638366699219,166.342803955078,-14.048828125,-51.2513122558594,131.215484619141,-24.26953125,-27.2828369140625,145.313842773438,-2.3349609375,-82.330322265625,143.985107421875,-10.7470703125,-70.0029602050781,139.656219482422,-5.6630859375,-64.641357421875,129.051025390625,-10.65234375,-71.5448608398438,152.017639160156,-12.935546875,-55.5759582519531,136.570526123047,-14.7509765625,-59.6408081054688,147.034973144531,-1.4521484375,12.2029418945313,138.062316894531,-12.0341796875,16.3639526367188,125.804382324219,-2.62890625,0.7398681640625,117.668579101563,-8.615234375,28.9513702392578,138.336135864258,-10.564453125,11.4135131835938,106.636169433594,-17.650390625,35.4742431640625,117.679321289063,-1.06640625,-77.1036071777344,-73.6856384277344,-11.0517578125,-64.2550659179688,-77.8019409179688,-3.62890625,-69.3126831054688,-95.7228393554688,-6.09375,-65.601318359375,-60.385498046875,-10.162109375,-53.2952270507813,-94.4212036132813,-14.2197265625,-45.0276184082031,-68.4973449707031,-2.1181640625,-51.5193176269531,-89.0300598144531,-8.7080078125,-46.49951171875,-106.46240234375,-1.9287109375,-55.6414184570313,-117.786926269531,-7.9150390625,-34.4381103515625,-96.8013916015625,-7.0654296875,-40.4066467285156,-123.882232666016,-9.53515625,-31.4183959960938,-113.268005371094,-4.8955078125,-18.810791015625,-72.832275390625,-13.6240234375,-4.73193359375,-82.73779296875,-10.171875,-6.00119018554688,-98.3674011230469,-9.5732421875,-0.23388671875,-68.49755859375,-14.16796875,10.0956420898438,-93.8311157226563,-13.5556640625,11.5701904296875,-79.7969970703125,-15.228515625,145.061981201172,-133.285675048828,-9.2109375,171.469421386719,-87.8596801757813,-10.1494140625,181.004302978516,-127.819915771484,-4.45703125,112.528869628906,-120.666442871094,-10.2119140625,180.044845581055,-165.697341918945,
- -12.84375,115.869110107422,-141.401397705078,-0.4208984375,63.7764129638672,-120.085891723633,-4.677734375,113.518341064453,-157.868377685547,-4.99609375,74.1246337890625,-145.111694335938,-11.900390625,62.6572265625,-158.73046875,-1.501953125,39.7925262451172,-152.281692504883,-12.7041015625,117.0146484375,-157.9775390625,-3.3359375,38.2890777587891,-165.571273803711,-17.7802734375,87.7322540283203,-178.30387878418,-19.0478515625,127.98193359375,-189.81884765625,-17.13671875,106.788391113281,-195.852233886719,-10.607421875,23.6309967041016,-79.0320892333984,-13.27734375,16.9294738769531,-96.7121276855469,-2.98046875,-6.81436157226563,-95.0692443847656,-18.3056640625,68.4015655517578,-79.9412078857422,-1.5576171875,-4.14227294921875,-108.225280761719,-16.3095703125,46.8236083984375,-108.693969726563,-17.87890625,88.6629943847656,-107.576263427734,-13.03515625,70.3649749755859,-119.018814086914,-17.302734375,36.7417907714844,-162.916412353516,-7.5,58.15283203125,-118.33544921875,-11.3740234375,70.3895874023438,-155.346740722656,-6.6806640625,4.70840454101563,-154.370697021484,-14.4482421875,72.4818420410156,-191.274017333984,-16.224609375,9.62582397460938,-173.067535400391,-3.7119140625,-41.697265625,-157.94921875,-9.8154296875,8.60006713867188,-189.495635986328,-8.9443359375,-32.2916870117188,-131.787780761719,-13.6083984375,-46.0283203125,-144.2041015625,-3.318359375,-67.0627746582031,-133.060821533203,-16.4560546875,7.70281982421875,-151.998352050781,-3.3603515625,-70.63330078125,-146.08056640625,-17.7998046875,-24.5217895507813,-168.002258300781,-19.0107421875,13.4246215820313,-185.688659667969,-15.57421875,-8.29415893554688,-188.083221435547,-15.6435546875,-27.0407104492188,-82.9703979492188,-17.67578125,-28.6152954101563,-30.1455688476563,-13.6416015625,0.53680419921875,-58.8245239257813,-3.681640625,-68.6028137207031,-91.1282043457031,-8.37109375,19.6534423828125,-91.1102294921875,-10.32421875,-47.6357116699219,-104.680633544922,0.908203125,-65.6252136230469,-115.520721435547,0.185546875,-41.1326599121094,-118.488128662109,
- -4.1318359375,-54.7441101074219,-110.867156982422,-10.6669921875,-61.8684387207031,-126.001251220703,-3.8427734375,-74.822509765625,-128.962158203125,-10.6611328125,-47.4736022949219,-126.309539794922,-9.630859375,-67.8375244140625,-142.139282226563,-12.44921875,-55.216064453125,-139.791259765625,-1.80859375,44.2254943847656,-140.180755615234,-11.392578125,54.1355895996094,-147.328277587891,-2.09765625,47.0828704833984,-161.745254516602,-8.833984375,56.5009155273438,-130.894592285156,-9.4033203125,61.1505737304688,-164.262512207031,-16.80859375,72.8504943847656,-142.905364990234,-4.318359375,39.6757659912109,-84.3554840087891,-11.48828125,41.9811859130859,-102.015884399414,-4.12109375,32.2016296386719,-112.269073486328,-11.6220703125,55.0695495605469,-93.9158020019531,-10.5927734375,46.0339965820313,-119.971862792969,-13.6845703125,55.9388275146484,-110.494766235352,-4.0615234375,85.4039306640625,-125.972045898438,-10.9208984375,85.215087890625,-141.024169921875,-3.94921875,76.7215881347656,-149.309661865234,-12.087890625,97.0347900390625,-135.121459960938,-11.05859375,87.2557067871094,-156.772613525391,-14.40625,96.1963653564453,-149.324142456055,-5.396484375,-20.1324157714844,-104.608978271484,-13.4619140625,-13.3323669433594,-119.143890380859,-6.345703125,-17.7369384765625,-131.517211914063,-14.33984375,-4.51678466796875,-107.794128417969,-14.2373046875,-3.9776611328125,-133.601684570313,-17.4521484375,1.28073120117188,-121.992706298828,-5.6318359375,26.2398681640625,-118.394897460938,-11.9306640625,35.9982147216797,-132.09162902832,-2.484375,35.3565063476563,-143.646423339844,-15.564453125,41.5522613525391,-119.314926147461,-11.36328125,48.6638488769531,-143.771697998047,-16.9501953125,50.5714874267578,-132.028121948242,-1.5751953125,-42.31689453125,-85.82275390625,-14.6171875,-42.0818786621094,-98.3348083496094,-2.9453125,-59.0643310546875,-104.765502929688,-11.7470703125,-25.6195068359375,-88.1829833984375,-14.0498046875,-51.3735961914063,-117.670471191406,-24.2705078125,-24.5823669433594,-110.223968505859,-2.3359375,-78.1131896972656,-97.3241271972656,
- -10.7470703125,-67.3174438476563,-104.683654785156,-5.6630859375,-64.8690185546875,-116.311401367188,-10.6533203125,-65.6224670410156,-92.3421936035156,-12.935546875,-54.172607421875,-111.381591796875,-14.751953125,-55.4041137695313,-100.223449707031,-1.453125,11.7030334472656,-127.402435302734,-12.0361328125,12.5650634765625,-140.319702148438,-2.62890625,-4.62722778320313,-144.154571533203,-8.6171875,27.9561462402344,-131.454010009766,-10.5654296875,2.84329223632813,-157.564910888672,-17.65234375,28.9368133544922,-153.093460083008,-1.0634765625,-111.020080566406,-120.926330566406,-11.048828125,-100.453002929688,-129.315307617188,-3.6259765625,-111.513488769531,-144.295715332031,-6.0908203125,-95.5622863769531,-112.546661376953,-10.1591796875,-96.0684204101563,-148.734436035156,-14.216796875,-79.1785583496094,-127.400238037109,-2.115234375,-92.50341796875,-144.31787109375,-8.705078125,-93.9634399414063,-162.400939941406,-1.92578125,-106.51513671875,-169.76708984375,-7.912109375,-79.267333984375,-157.621826171875,-7.0625,-94.4144897460938,-180.848083496094,-9.5322265625,-82.2569274902344,-174.092864990234,-4.892578125,-56.1817932128906,-140.714996337891,-13.62109375,-46.508544921875,-154.954833984375,-10.1689453125,-53.2154235839844,-169.128509521484,-9.5703125,-37.2714233398438,-143.220642089844,-14.1650390625,-36.5538940429688,-170.569519042969,-13.552734375,-30.218017578125,-157.960205078125,-15.2255859375,75.7828369140625,-255.145874023438,-9.2080078125,116.53092956543,-221.97200012207,-10.146484375,111.33952331543,-262.724914550781,-4.4541015625,49.8026885986328,-231.848678588867,-10.208984375,97.0655364990234,-297.822143554688,-12.8408203125,45.60498046875,-252.42822265625,-0.41796875,4.39627075195313,-214.090057373047,-4.6748046875,37.59033203125,-267.00341796875,-4.9931640625,5.23983764648438,-241.157623291016,-11.896484375,-10.2981262207031,-249.848907470703,-1.4990234375,-29.4119567871094,-235.740081787109,-12.701171875,40.82275390625,-268.34130859375,-3.3330078125,-35.5118103027344,-247.643646240234,-17.7763671875,6.24905395507813,-277.016571044922,
- -19.044921875,39.8387756347656,-302.004028320313,-17.1337890625,17.8800354003906,-300.163909912109,-10.6044921875,-18.6644287109375,-161.504272460938,-13.2744140625,-31.1777648925781,-175.677764892578,-2.9775390625,-52.8116149902344,-165.755950927734,-18.302734375,22.9004211425781,-178.165008544922,-1.5546875,-54.9577331542969,-179.007537841797,-16.306640625,-7.44140625,-197.4453125,-17.8759765625,32.0972290039063,-211.174255371094,-13.0322265625,10.9370727539063,-215.418395996094,-17.2998046875,-36.02197265625,-244.61376953125,-7.4970703125,-0.247100830078125,-210.466827392578,-11.37109375,-1.86907958984375,-249.414001464844,-6.677734375,-62.9737548828125,-225.306762695313,-14.4453125,-12.5993041992188,-283.765319824219,-16.2216796875,-64.9755554199219,-244.534149169922,-3.708984375,-107.652770996094,-212.266052246094,-9.8125,-71.7371826171875,-259.541870117188,-8.94140625,-89.6144409179688,-191.111511230469,-13.60546875,-106.850799560547,-197.877166748047,-3.31640625,-122.594543457031,-180.022277832031,-16.453125,-59.3342590332031,-224.143829345703,-3.357421875,-130.53271484375,-190.94287109375,-17.796875,-95.1341552734375,-227.736694335938,-19.0078125,-65.8788757324219,-257.683563232422,-15.5712890625,-87.0436401367188,-252.253601074219,-15.640625,-67.4620361328125,-147.294067382813,-17.6728515625,-50.2799987792969,-97.3161315917969,-13.638671875,-33.1342163085938,-134.442810058594,-3.6796875,-109.226928710938,-140.248413085938,-8.3681640625,-26.6510314941406,-171.399078369141,-10.3212890625,-94.3969116210938,-160.332458496094,0.9111328125,-115.055297851563,-164.119750976563,0.1884765625,-93.1889343261719,-175.546356201172,-4.12890625,-103.231903076172,-163.608856201172,-10.6650390625,-115.241943359375,-175.252685546875,-3.83984375,-128.406921386719,-173.447937011719,-10.658203125,-101.883544921875,-180.624755859375,-9.6279296875,-126.525726318359,-188.243499755859,-12.4462890625,-113.888122558594,-190.503356933594,-1.8056640625,-20.9913330078125,-225.985473632813,-11.3896484375,-14.2440795898438,-236.171813964844,
- -2.0947265625,-25.9335327148438,-247.168884277344,-8.8310546875,-6.22756958007813,-221.632843017578,-9.400390625,-13.6612548828125,-254.492309570313,-16.8056640625,4.8270263671875,-238.643676757813,-4.3154296875,-5.53329467773438,-172.150482177734,-11.4853515625,-9.61328125,-189.4873046875,-4.1181640625,-22.3836975097656,-195.625885009766,-11.619140625,5.492431640625,-186.531005859375,-10.58984375,-12.1624450683594,-207.717132568359,-13.681640625,0.4505615234375,-202.349243164063,-4.05859375,22.5518646240234,-227.233291625977,-10.91796875,17.0590209960938,-241.249572753906,-3.9462890625,6.18707275390625,-246.002380371094,-12.0849609375,30.2021026611328,-239.901412963867,-11.0556640625,13.4069213867188,-256.704406738281,-14.4033203125,24.4016723632813,-252.893249511719,-5.3935546875,-68.640625,-169.978515625,-13.458984375,-67.4113464355469,-185.977752685547,-6.3427734375,-75.9019470214844,-195.997650146484,-14.3369140625,-55.1555786132813,-178.471984863281,-14.234375,-63.7651672363281,-202.806182861328,-17.44921875,-54.7457580566406,-193.802398681641,-5.62890625,-30.12451171875,-199.25146484375,-11.927734375,-25.8321228027344,-215.512786865234,-2.48046875,-30.5128173828125,-226.095825195313,-15.560546875,-16.1237487792969,-205.520233154297,-11.3603515625,-18.1071166992188,-230.911804199219,-16.947265625,-12.1752319335938,-220.599060058594,-1.572265625,-82.76123046875,-144.56787109375,-14.6142578125,-86.9600524902344,-156.356536865234,-2.9423828125,-105.119018554688,-156.374877929688,-11.744140625,-67.9729919433594,-152.672210693359,-14.046875,-102.481262207031,-171.164855957031,-24.267578125,-74.7864990234375,-173.659545898438,-2.3330078125,-120.312805175781,-142.686828613281,-10.744140625,-112.811462402344,-153.383728027344,-5.66015625,-114.627349853516,-165.128326416016,-10.650390625,-106.867279052734,-142.436614990234,-12.9326171875,-102.879241943359,-164.293304443359,-14.7490234375,-100.090637207031,-153.418762207031,-1.4501953125,-46.9056091308594,-202.545257568359,-12.033203125,-50.6607666015625,-214.934204101563,
- -2.6259765625,-68.0995483398438,-212.450134277344,-8.6142578125,-33.1305847167969,-212.074920654297,-10.5625,-65.8464660644531,-227.635528564453,-17.6494140625,-39.8551025390625,-232.666625976563,-12.658203125,-85.6555480957031,54.5866394042969,-4.125,-105.220764160156,29.3056030273438,-13.53125,-103.322082519531,51.6788940429688,-19.650390625,-79.0101013183594,96.1354064941406,-1.5693359375,-116.66015625,34.123046875,-16.16015625,-103.625061035156,85.6347045898438,-16.63671875,-100.596008300781,119.798522949219,-11.0986328125,-113.985015869141,104.926116943359,-6.046875,-72.7296142578125,49.6776123046875,-18.0595703125,-66.9141235351563,41.8182983398438,-8.2861328125,-74.7138061523438,28.1865844726563,-15.1484375,-60.5838012695313,57.0558471679688,-18.783203125,-63.4634094238281,23.7709655761719,-27.39453125,-49.3508911132813,43.0358276367188,-2.28515625,-107.900573730469,53.4304809570313,-9.537109375,-108.213439941406,35.5463256835938,0.6513671875,-115.591552734375,25.570556640625,-13.7412109375,-95.5321044921875,43.3536376953125,-9.5703125,-104.431579589844,17.4102172851563,-15.681640625,-95.6641845703125,26.6483154296875,-16.3056640625,-17.0088195800781,61.5282897949219,-24.7763671875,-16.629638671875,47.097900390625,-17.26953125,-22.5388488769531,36.9699401855469,-27.43359375,-5.990234375,54.8310546875,-27.0947265625,-12.6329650878906,31.7098083496094,-31.19921875,-5.4566650390625,40.7513427734375,-3.623046875,-105.995391845703,57.7829284667969,-12.5458984375,-93.67626953125,50.79833984375,-5.3828125,-87.885986328125,40.358154296875,-14.923828125,-94.8452758789063,63.9535522460938,-15.3388671875,-78.50927734375,46.29736328125,-19.1318359375,-82.6263732910156,57.1929626464844,-3.5517578125,-89.9938354492188,76.3860473632813,-14.115234375,-82.6016540527344,74.5936584472656,-7.2314453125,-81.446044921875,60.704345703125,-10.2939453125,-85.1825866699219,87.8984680175781,-16.126953125,-71.8127746582031,63.7135925292969,-21.4404296875,-71.1425476074219,84.3662414550781,-8.07421875,-70.1778564453125,-258.990356445313,
- -3.0673828125,-102.882446289063,-259.345336914063,-12.0009765625,-83.4915771484375,-247.648803710938,-13.8056640625,-33.3624572753906,-238.226715087891,-2.537109375,-106.718200683594,-247.279724121094,-14.642578125,-57.3781127929688,-225.943542480469,-14.5859375,-29.2363891601563,-206.331115722656,-11.45703125,-49.7232666015625,-205.053344726563,0.681640625,-66.494140625,-271.0185546875,-10.138671875,-67.4926147460938,-282.055114746094,-1.8681640625,-83.9631958007813,-283.634094238281,-6.171875,-52.137451171875,-276.649169921875,-10.251953125,-79.0529174804688,-296.355651855469,-16.2822265625,-54.3994445800781,-295.763702392578,-1.720703125,-86.3033142089844,-241.571868896484,-8.9169921875,-99.3921203613281,-253.796417236328,-0.1640625,-112.841766357422,-253.288055419922,-10.8544921875,-84.914306640625,-258.904541015625,-8.2939453125,-110.887451171875,-268.312255859375,-12.7890625,-97.5784606933594,-269.801116943359,0.2548828125,-20.9979858398438,-306.800720214844,-8.021484375,-30.8676147460938,-317.490661621094,-1.6552734375,-43.20458984375,-318.54443359375,-8.791015625,-17.9115600585938,-320.899841308594,-9.611328125,-39.8660583496094,-330.704925537109,-12.40625,-27.9398498535156,-330.853912353516,-2.7080078125,-81.6133117675781,-240.389678955078,-9.35546875,-78.1697082519531,-255.359161376953,-1.2958984375,-83.3016967773438,-265.486267089844,-11.900390625,-68.567138671875,-246.338623046875,-9.47265625,-71.70556640625,-270.06689453125,-13.9228515625,-65.5411987304688,-260.462097167969,0.140625,-57.2413024902344,-240.494232177734,-8.978515625,-52.7555236816406,-248.627593994141,-1.998046875,-63.4328002929688,-257.512878417969,-5.6630859375,-44.6239013671875,-237.619995117188,-9.0859375,-54.0362548828125,-264.028442382813,-14.2021484375,-37.1983947753906,-251.965972900391,-8.07421875,-65.3385009765625,154.099975585938,-3.0673828125,-70.6675720214844,121.830474853516,-12.0009765625,-78.8204956054688,142.957824707031,-13.8056640625,-79.3938598632813,193.961608886719,-2.537109375,-83.21728515625,120.14794921875,-14.642578125,-95.6614990234375,172.443969726563,
- -14.5859375,-110.088287353516,203.563079833984,-11.45703125,-114.903869628906,183.609802246094,0.681640625,-52.85400390625,155.64013671875,-10.138671875,-42.1578369140625,152.739624023438,-1.8681640625,-43.4640197753906,136.244964599609,-6.171875,-44.8157348632813,168.799499511719,-10.251953125,-30.0821228027344,138.871002197266,-16.2822265625,-26.3841857910156,163.252532958984,-1.720703125,-85.2923583984375,141.243774414063,-8.9169921875,-75.5263671875,126.2314453125,-0.1640625,-78.3631896972656,113.074310302734,-10.8544921875,-67.9824523925781,139.602508544922,-8.2939453125,-63.2278137207031,112.390350341797,-12.7890625,-59.4505004882813,125.237976074219,0.2548828125,-9.71432495117188,194.230987548828,-8.021484375,-0.90142822265625,182.654235839844,-1.6552734375,-2.00607299804688,170.322052001953,-8.791015625,4.70538330078125,194.822570800781,-9.611328125,10.5495300292969,171.497772216797,-12.40625,12.7669372558594,183.218109130859,-2.7080078125,-85.6427001953125,146.068237304688,-9.35546875,-70.3019409179688,146.860168457031,-1.2958984375,-61.2205505371094,140.048004150391,-11.900390625,-77.5187377929688,157.882629394531,-9.47265625,-54.6954040527344,150.671783447266,-13.9228515625,-63.0845947265625,158.411499023438,0.140625,-81.3075561523438,170.051818847656,-8.978515625,-72.5184936523438,173.056701660156,-1.998046875,-65.6231994628906,160.998870849609,-5.6630859375,-81.94677734375,182.97705078125,-9.0859375,-57.5743713378906,169.120941162109,-14.2021484375,-66.52978515625,187.79833984375,-11.2724609375,-35.1213989257813,-51.0696411132813,-4.591796875,-47.4164428710938,-65.3646850585938,-4.83203125,-54.6308898925781,-54.4228820800781,-11.4091796875,-26.9837036132813,-59.5637817382813,-6.9775390625,-42.3249206542969,-42.0182800292969,-12.6064453125,-15.0086669921875,-48.4930419921875,-15.2734375,-14.3736877441406,-41.4440002441406,-13.181640625,-14.7367553710938,-32.9750366210938,-24.7392578125,7.54421997070313,-47.6208190917969,-25.71484375,9.63162231445313,-38.1359558105469,-27.5830078125,8.97064208984375,-43.1611938476563,
- 4.0751953125,-25.8435363769531,9.64083862304688,-9.3427734375,-13.6467895507813,16.2155151367188,-6.0068359375,-19.5372924804688,-4.60760498046875,-9.28515625,-11.3726501464844,-6.32089233398438,-8.4169921875,2.1785888671875,30.2274169921875,-17.0361328125,10.6864929199219,16.9042663574219,-19.8466796875,5.57904052734375,30.0800170898438,-25.935546875,14.2933959960938,52.3842163085938,-30.7587890625,21.0097351074219,43.7148132324219,-30.369140625,16.5545959472656,48.0545959472656,-0.8330078125,-51.9750061035156,3.38241577148438,-9.5498046875,-90.8581848144531,-16.0437316894531,-1.0537109375,-80.3279113769531,22.7863464355469,-0.65625,-44.793212890625,-27.636962890625,-1.193359375,-122.360717773438,10.9781494140625,-0.7080078125,-91.3616638183594,-63.0462341308594,-1.001953125,-138.102386474609,-46.2176208496094,-0.6669921875,-55.967041015625,-36.631103515625,-10.9384765625,-60.0320739746094,13.6642150878906,-0.6162109375,-22.8046569824219,-14.4218444824219,-0.861328125,-92.5206909179688,-30.9884643554688,-0.82421875,-17.4158325195313,36.0021362304688,-1.248046875,-110.612915039063,34.5013427734375,-1.2705078125,-72.3102416992188,77.6585083007813,-1.0341796875,-56.8983154296875,41.8966064453125,-10.83984375,-6.50833129882813,45.9447937011719,-0.7783203125,-34.7011413574219,8.72659301757813,-1.1767578125,-51.246826171875,78.442626953125,-0.5205078125,15.72705078125,3.31298828125,-0.9580078125,14.2606506347656,96.5165100097656,-0.58203125,57.3882141113281,58.1968078613281,-2.126953125,35.4564819335938,54.2133178710938,-9.3837890625,36.1847839355469,89.9357604980469,-2.0732421875,60.4000854492188,67.4938354492188,-2.2744140625,10.1117248535156,60.7875061035156,-2.201171875,67.7914581298828,102.637161254883,-2.53125,2.0316162109375,108.222045898438,-2.51953125,32.0983276367188,135.887390136719,-0.5322265625,24.0289306640625,14.2252197265625,-11.162109375,77.1856536865234,26.5547943115234,-0.2509765625,53.0047912597656,-17.6709899902344,-0.7158203125,24.2527465820313,54.1550903320313,-0.0087890625,107.712768554688,-15.4278564453125,
- -0.5439453125,91.3353881835938,83.8724975585938,-0.1455078125,143.49836730957,49.7962188720703,-0.38671875,-2.94290161132813,-44.1284484863281,-11.0166015625,50.2229614257813,-31.8063354492188,-0.10546875,26.0385437011719,-76.0298156738281,-0.5703125,-2.71368408203125,-4.20196533203125,0.13671875,80.7525329589844,-73.7953186035156,-0.3984375,64.3677062988281,25.5122375488281,0,116.523406982422,-8.55667114257813,-0.349609375,29.3549499511719,-19.9399719238281,-11.1708984375,-9.4893798828125,-58.2208251953125,-0.5966796875,-11.9979858398438,-7.81048583984375,-0.0966796875,49.9573516845703,-54.1373748779297,-0.6669921875,-57.5323791503906,-38.2189025878906,-0.0107421875,8.17529296875,-114.44775390625,-0.306640625,-54.0978088378906,-112.536285400391,-0.7880859375,-114.251037597656,-68.5596313476563,-10.6357421875,-65.1181640625,-56.69921875,-0.52734375,-87.1496276855469,-97.8478698730469,-0.9599609375,-114.381713867188,-31.5760498046875,-0.3056640625,-36.4989929199219,-95.3173522949219,-0.8037109375,-52.5063171386719,-3.48873901367188,-0.435546875,-3.9169921875,-34.6005859375,-11.6083984375,301.62158203125,-110.15966796875,-20.0322265625,330.483856201172,-107.555206298828,-17.603515625,331.302154541016,-113.381439208984,-17.0771484375,328.031311035156,-102.366149902344,-8.98828125,301.4560546875,-120.107421875,-8.80078125,299.934967041016,-101.867767333984,-10.4736328125,275.831939697266,-101.289154052734,-6.3955078125,267.376281738281,-112.392272949219,-9.53125,284.723937988281,-90.6940307617188,-3.01953125,252.37321472168,-98.6726837158203,-1.859375,259.95263671875,-85.26416015625,-2.244140625,281.754974365234,-107.163970947266,-2.5859375,267.046447753906,-92.0394897460938,-6.8193359375,290.748626708984,-88.9671936035156,-0.5732421875,267.406921386719,-82.0110473632813,-7.5634765625,321.513061523438,-80.0133056640625,-7.197265625,308.052337646484,-66.3002014160156,-12.0361328125,318.941955566406,-69.5814819335938,-18.5390625,342.147827148438,-48.3873291015625,-17.8515625,328.1669921875,-45.2861328125,-20.78125,336.096221923828,-45.5522155761719,
- -11.9287109375,337.376586914063,-94.0062255859375,-17.337890625,366.679534912109,-100.278472900391,-19.6181640625,364.135833740234,-105.649322509766,-16.57421875,360.165283203125,-109.728271484375,-9.5966796875,340.252990722656,-84.4052124023438,-8.92578125,333.18017578125,-101.27490234375,-11.12890625,310.096252441406,-94.4642944335938,-7.5595703125,305.424072265625,-81.165771484375,-9.6845703125,315.275726318359,-107.242828369141,-4.1376953125,286.879852294922,-89.4804992675781,-2.42578125,289.940338134766,-104.523529052734,-1.4912109375,256.688293457031,-90.0216674804688,-10.3857421875,213.217224121094,-103.007385253906,-1.64453125,231.026885986328,-64.9985046386719,-1.275390625,258.508361816406,-123.165466308594,-1.5966796875,185.724487304688,-69.5977783203125,-1.0703125,204.316528320313,-151.207885742188,-1.220703125,159.307952880859,-125.547515869141,-1.3447265625,201.137161254883,-109.001510620117,-10.6376953125,199.126281738281,-63.7506713867188,-1.48046875,231.640243530273,-90.1849517822266,-1.373046875,168.531616210938,-102.722290039063,-1.7783203125,238.160934448242,-45.1095733642578,-1.755859375,154.477874755859,-43.3502502441406,-2.015625,190.289855957031,-5.90936279296875,-1.517578125,255.924255371094,-86.0444946289063,-10.771484375,235.825729370117,-45.4457550048828,-1.71875,276.254760742188,-56.5284423828125,-1.4560546875,223.551498413086,-93.4279937744141,-2.0009765625,264.065673828125,-12.652099609375,-1.759765625,186.766387939453,-44.7599792480469,-2.0859375,204.457366943359,3.93685913085938,-1.5322265625,230.928344726563,-82.1605224609375,-10.33203125,263.001708984375,-114.285400390625,-1.302734375,221.142654418945,-116.632736206055,-1.6572265625,259.219421386719,-64.7620239257813,-1.0673828125,246.763671875,-154.27734375,-1.453125,309.677490234375,-99.074462890625,-1.1142578125,308.5419921875,-150.8642578125,-11.271484375,95.8984985351563,-84.4882202148438,-4.5908203125,80.0987548828125,-94.7781982421875,-4.8310546875,76.2289123535156,-82.2574157714844,-11.408203125,101.338409423828,-94.9194030761719,
- -6.9765625,91.5108337402344,-73.7860412597656,-12.60546875,115.929718017578,-87.6357116699219,-15.2724609375,118.509307861328,-81.0453796386719,-13.1806640625,120.527252197266,-72.8116149902344,-24.73828125,137.828063964844,-93.1006469726563,-25.7138671875,142.482879638672,-84.5757141113281,-27.5810546875,140.443908691406,-89.2162475585938,4.0751953125,121.770812988281,-28.7897338867188,-9.34375,135.319076538086,-25.8850250244141,-6.0068359375,123.844528198242,-44.2326202392578,-9.2841796875,131.204956054688,-48.1602783203125,-8.4169921875,154.429412841797,-16.8528137207031,-17.0361328125,158.875503540039,-32.0229339599609,-19.84765625,157.653030395508,-17.9456024169922,-25.9365234375,172.25260925293,1.03385925292969,-30.759765625,176.279113769531,-9.16619873046875,-30.3701171875,173.214141845703,-3.75363159179688,-0.833984375,94.931640625,-27.49609375,-9.5498046875,52.1689910888672,-35.2841339111328,-1.0556640625,73.1301879882813,-0.94207763671875,-0.65625,93.1595458984375,-59.2867431640625,-1.1943359375,29.4721069335938,-0.53570556640625,-0.70703125,38.5519866943359,-80.2722320556641,-1.001953125,-1.6248779296875,-51.0545654296875,-0.666015625,79.9175720214844,-64.8011779785156,-10.9384765625,90.068359375,-15.3740234375,-0.6162109375,117.964904785156,-52.7431030273438,-0.861328125,46.3966979980469,-49.1687316894531,-0.8251953125,137.22900390625,-5.83349609375,-1.25,47.3249816894531,18.7673645019531,-1.2734375,96.1611328125,49.501953125,-1.0361328125,100.966506958008,10.8590850830078,-10.841796875,150.480316162109,0.664886474609375,-0.7783203125,113.0107421875,-27.19140625,-1.1796875,116.604736328125,44.370361328125,-0.5205078125,159.917449951172,-46.4809875488281,-0.9609375,184.553192138672,43.4184265136719,-0.5830078125,215.255432128906,-5.42425537109375,-2.1279296875,193.083831787109,-3.12222290039063,-9.3857421875,203.765075683594,30.9740600585938,-2.07421875,220.744903564453,2.65994262695313,-2.275390625,170.585693359375,10.272216796875,-2.203125,237.661926269531,34.3377075195313,-2.533203125,176.08219909668,58.0753631591797,
- -2.5234375,212.681793212891,76.2374420166016,-0.5322265625,170.937973022461,-38.3217926025391,-11.162109375,225.422271728516,-41.3384704589844,-0.25,189.846801757813,-77.0447998046875,-0.716796875,182.310302734375,-0.047119140625,-0.0078125,243.002243041992,-90.1784210205078,-0.544921875,255.024536132813,9.7413330078125,-0.1455078125,295.587768554688,-37.5528564453125,-0.3857421875,128.734466552734,-86.8163146972656,-11.015625,183.225769042969,-89.8406372070313,-0.103515625,147.64762878418,-125.54377746582,-0.5703125,140.111145019531,-48.5451049804688,0.1396484375,200.806518554688,-138.687622070313,-0.3984375,212.823699951172,-38.7583312988281,0.0009765625,253.381988525391,-86.0428161621094,-0.3486328125,166.504943847656,-72.6151733398438,-11.1689453125,118.511001586914,-98.5173187255859,-0.5966796875,130.188415527344,-49.4151000976563,-0.0947265625,176.730697631836,-111.207778930664,-0.666015625,77.9708709716797,-65.8875274658203,-0.0078125,119.760299682617,-157.440872192383,-0.3046875,60.5023651123047,-138.203689575195,-0.787109375,15.0335083007813,-79.1705932617188,-10.634765625,65.5234222412109,-81.5127105712891,-0.525390625,32.871337890625,-114.864990234375,-0.9599609375,25.2423095703125,-43.6239013671875,-0.302734375,82.2115478515625,-126.589233398438,-0.8046875,92.5013732910156,-33.9449157714844,-0.4345703125,130.461639404297,-77.3957824707031,-11.2724609375,-39.3583984375,121.583984375,-4.591796875,-57.8524475097656,117.911224365234,-4.83203125,-56.7856140136719,130.972198486328,-11.4091796875,-38.1899719238281,109.878387451172,-6.9775390625,-39.4487609863281,133.150848388672,-12.6064453125,-21.9365234375,111.208984375,-15.2734375,-17.0895385742188,116.367492675781,-13.181640625,-12.1529541015625,123.259155273438,-24.740234375,-3.6435546875,97.9892578125,-25.71484375,3.848876953125,104.170166015625,-27.5830078125,0.2294921875,100.62109375,4.0751953125,5.380859375,163.65625,-9.3427734375,19.037353515625,161.311767578125,-6.0068359375,1.5596923828125,148.550903320313,-9.2841796875,6.93038940429688,142.166717529297,
- -8.4169921875,40.1361541748047,162.585372924805,-17.0361328125,38.6184997558594,146.849945068359,-19.8466796875,42.7218017578125,160.371215820313,-25.935546875,63.3354187011719,172.557098388672,-30.7587890625,63.2774963378906,161.590972900391,-30.369140625,62.4462890625,167.75390625,-0.8330078125,-19.0499877929688,174.842590332031,-9.548828125,-61.6399230957031,183.526092529297,-1.0537109375,-29.4059448242188,207.602844238281,-0.65625,-32.5237426757813,145.993835449219,-1.193359375,-69.77783203125,224.22412109375,-0.7080078125,-91.018798828125,146.833740234375,-1.0009765625,-117.439483642578,188.903289794922,-0.6669921875,-46.8665161132813,145.803405761719,-10.9375,-19.0534057617188,187.905578613281,-0.6162109375,-7.06436157226563,142.838958740234,-0.861328125,-72.1641235351563,172.786071777344,-0.82421875,28.2709045410156,179.213287353516,-1.248046875,-46.0243225097656,235.499114990234,-1.2705078125,10.7412109375,245.85546875,-1.0341796875,0.823150634765625,208.199127197266,-10.83984375,42.9888305664063,180.314025878906,-0.7783203125,-2.15573120117188,168.398956298828,-1.1767578125,27.8072509765625,233.484985351563,-0.5205078125,34.2059020996094,133.040863037109,-0.9580078125,90.5232543945313,207.320129394531,-0.58203125,100.847198486328,150.560089111328,-2.126953125,81.1241455078125,160.946411132813,-9.3837890625,103.725036621094,188.620544433594,-2.0732421875,108.950469970703,156.021759033203,-2.2744140625,65.2252502441406,181.750640869141,-2.201171875,136.439758300781,179.130172729492,-2.5302734375,88.1139221191406,224.075836181641,-2.51953125,128.843383789063,227.316040039063,-0.5322265625,47.4707183837891,136.513687133789,-11.1630859375,96.9208221435547,113.441329956055,-0.2509765625,50.6138458251953,93.5347442626953,-0.7158203125,72.2684936523438,167.809509277344,-0.0087890625,95.0658874511719,61.5658874511719,-0.5439453125,143.403839111328,149.839385986328,-0.1455078125,163.456970214844,90.8475952148438,-0.38671875,-9.74627685546875,107.204895019531,-11.017578125,39.7071685791016,84.1222076416016,-0.10546875,-6.60101318359375,64.2202758789063,
- -0.5703125,15.0538940429688,138.496276855469,0.13671875,37.8506469726563,32.2412719726563,-0.3984375,86.1872100830078,120.524124145508,0,106.239227294922,61.5429382324219,-0.349609375,30.5960998535156,106.332427978516,-11.1708984375,-23.589599609375,100.147705078125,-0.5966796875,5.51983642578125,141.380187988281,-0.0966796875,25.7278900146484,66.7054290771484,-0.666015625,-49.0780029296875,145.518676757813,-0.0107421875,-44.3546752929688,44.9890747070313,-0.306640625,-92.1998596191406,84.8948669433594,-0.7880859375,-112.438842773438,156.607055664063,-10.6357421875,-66.4451599121094,135.648590087891,-0.52734375,-109.1630859375,116.8388671875,-0.9599609375,-89.7366027832031,185.803436279297,-0.3056640625,-67.7275390625,87.5986328125,-0.8037109375,-23.7055358886719,169.761260986328,-0.435546875,-4.63775634765625,115.306579589844,-11.2734375,-42.3635864257813,-130.041320800781,-4.591796875,-61.1792602539063,-128.825744628906,-4.83203125,-56.7832641601563,-116.478576660156,-11.4091796875,-44.2503356933594,-141.652679443359,-6.978515625,-39.4707946777344,-118.841888427734,-12.6064453125,-28.2027893066406,-144.554351806641,-15.2734375,-22.1904907226563,-140.818420410156,-13.1826171875,-15.6450500488281,-135.432159423828,-24.740234375,-13.9335327148438,-162.040954589844,-25.7158203125,-5.10174560546875,-157.999206542969,-27.5830078125,-9.51333618164063,-160.495758056641,4.0732421875,11.7052001953125,-100.914916992188,-9.345703125,24.2963562011719,-106.699737548828,-6.0087890625,4.12106323242188,-114.526397705078,-9.2861328125,7.66561889648438,-122.078521728516,-8.419921875,45.0107727050781,-110.905242919922,-17.0380859375,39.4902191162109,-125.717788696289,-19.849609375,46.9385833740234,-113.709854125977,-25.939453125,69.9955444335938,-107.246643066406,-30.76171875,67.1142272949219,-117.828155517578,-30.373046875,67.8991088867188,-111.658508300781,-0.8359375,-9.01885986328125,-83.8118286132813,-9.55078125,-47.9342041015625,-64.4488525390625,-1.056640625,-10.5852966308594,-49.4905700683594,-0.658203125,-29.4702758789063,-108.214416503906,
- -1.1962890625,-45.311767578125,-23.027587890625,-0.7080078125,-85.7742309570313,-92.3328247070313,-1.0029296875,-100.464416503906,-44.8765258789063,-0.6669921875,-43.3779907226563,-104.704162597656,-10.9404296875,-5.65713500976563,-71.1893615722656,-0.6181640625,-5.6832275390625,-117.822875976563,-0.8623046875,-60.8699951171875,-72.1151123046875,-0.828125,37.830322265625,-91.781005859375,-1.251953125,-19.4553833007813,-18.2542114257813,-1.275390625,38.0620880126953,-22.8715057373047,-1.0380859375,18.7772216796875,-56.7012939453125,-10.84375,52.3349456787109,-94.5088043212891,-0.7802734375,5.644775390625,-94.390380859375,-1.181640625,51.3648681640625,-39.2220458984375,-0.5224609375,31.6695556640625,-137.923217773438,-0.9638671875,105.222625732422,-80.6611633300781,-0.5859375,100.574584960938,-138.164672851563,-2.130859375,84.1932678222656,-123.047943115234,-9.388671875,113.160736083984,-102.131256103516,-2.0771484375,109.811233520508,-134.975875854492,-2.2783203125,74.1909484863281,-98.8500671386719,-2.20703125,142.326232910156,-119.729431152344,-2.5361328125,107.211578369141,-63.8499450683594,-2.5263671875,147.400787353516,-71.2124938964844,-0.53515625,45.3810729980469,-137.985137939453,-11.1650390625,87.2173461914063,-173.018981933594,-0.251953125,37.3454132080078,-180.322555541992,-0.7197265625,77.4048309326172,-114.134231567383,-0.009765625,72.0604553222656,-222.664154052734,-0.5478515625,141.508911132813,-149.825073242188,-0.1484375,145.686645507813,-211.992065429688,-0.3876953125,-17.455322265625,-151.563720703125,-11.017578125,24.3814544677734,-186.608779907227,-0.1044921875,-25.4905395507813,-193.907531738281,-0.572265625,14.5693054199219,-127.718780517578,0.1376953125,9.22149658203125,-236.258972167969,-0.4013671875,78.6712951660156,-163.408782958984,-0.0009765625,82.8506164550781,-225.565399169922,-0.3505859375,21.3003234863281,-162.801239013672,-11.1708984375,-32.6498107910156,-154.816802978516,-0.5986328125,6.10018920898438,-122.475982666016,-0.0966796875,6.38720703125,-199.83544921875,-0.6669921875,-45.5881652832031,-104.409454345703,
- -0.0087890625,-66.9243469238281,-202.762237548828,-0.3046875,-102.873260498047,-151.877166748047,-0.7880859375,-103.953247070313,-77.3712158203125,-10.63671875,-64.9123840332031,-109.472930908203,-0.5263671875,-111.033996582031,-116.641418457031,-0.9609375,-74.4954223632813,-55.0100708007813,-0.3037109375,-78.530517578125,-155.570556640625,-0.8056640625,-14.8265686035156,-87.5228576660156,-0.4365234375,-10.4319458007813,-145.052062988281,-11.2705078125,-98.4205322265625,-185.919555664063,-4.5888671875,-115.59423828125,-178.13720703125,-4.830078125,-107.121459960938,-168.140014648438,-11.40625,-104.286224365234,-196.117279052734,-6.9755859375,-91.7590026855469,-176.464080810547,-12.603515625,-90.2974243164063,-204.498596191406,-15.271484375,-83.3533630371094,-203.127777099609,-13.1796875,-75.3272399902344,-200.399505615234,-24.7373046875,-83.1229858398438,-225.898376464844,-25.712890625,-73.4330139160156,-225.236724853516,-27.580078125,-78.4420471191406,-226.013336181641,4.076171875,-37.5496215820313,-177.764465332031,-9.3427734375,-27.8123779296875,-187.622924804688,-6.005859375,-49.4519348144531,-187.821075439453,-9.283203125,-48.8028259277344,-196.138763427734,-8.4169921875,-9.91806030273438,-198.873138427734,-17.03515625,-20.3141174316406,-210.781890869141,-19.8466796875,-9.1051025390625,-202.178344726563,-25.9365234375,14.7486572265625,-204.274780273438,-30.7587890625,8.3162841796875,-213.156372070313,-30.369140625,11.2294921875,-207.6611328125,-0.8330078125,-50.8983154296875,-154.445190429688,-9.5478515625,-80.4684448242188,-122.586608886719,-1.0537109375,-40.2433166503906,-121.782379150391,-0.6552734375,-78.6500854492188,-170.053405761719,-1.193359375,-63.3869934082031,-84.7610168457031,-0.705078125,-125.717468261719,-135.311218261719,-1,-122.7021484375,-85.7255859375,-0.6650390625,-90.4217834472656,-161.857330322266,-10.9375,-43.2958374023438,-143.824157714844,-0.615234375,-59.7887878417969,-187.443084716797,-0.8603515625,-95.2779541015625,-125.191040039063,-0.8251953125,-9.88223266601563,-178.446685791016,
- -1.2490234375,-37.5106201171875,-89.4256591796875,-1.2724609375,14.6700134277344,-114.057525634766,-1.03515625,-15.3192443847656,-138.897369384766,-10.8408203125,2.72451782226563,-186.120208740234,-0.77734375,-40.9155883789063,-169.521057128906,-1.1787109375,21.3417053222656,-134.052825927734,-0.51953125,-31.9409484863281,-219.438995361328,-0.9599609375,57.0948791503906,-191.841644287109,-0.58203125,32.4388122558594,-243.998687744141,-2.126953125,22.4516754150391,-224.069808959961,-9.3857421875,56.9393157958984,-214.731582641602,-2.07421875,42.20654296875,-244.27783203125,-2.275390625,21.6392822265625,-197.899780273438,-2.203125,78.0108184814453,-241.496017456055,-2.533203125,64.8924713134766,-176.816513061523,-2.5234375,99.8919372558594,-197.897125244141,-0.5322265625,-19.1350708007813,-224.340148925781,-11.162109375,7.63345336914063,-271.890960693359,-0.2490234375,-41.6041870117188,-261.111022949219,-0.716796875,19.2483215332031,-213.334686279297,-0.0068359375,-24.0790405273438,-312.984313964844,-0.544921875,66.6177673339844,-269.364654541016,-0.1455078125,48.5721740722656,-329.001068115234,-0.384765625,-82.7177124023438,-214.852478027344,-11.0146484375,-55.95263671875,-262.41357421875,-0.1015625,-105.188781738281,-251.630187988281,-0.5693359375,-44.335693359375,-203.852294921875,0.140625,-87.669921875,-303.51171875,-0.3974609375,3.03179931640625,-259.882263183594,0.001953125,-15.0086669921875,-319.508666992188,-0.34765625,-50.4275512695313,-239.051574707031,-11.16796875,-98.0818786621094,-212.529144287109,-0.595703125,-50.4074401855469,-195.957244873047,-0.09375,-77.4585571289063,-268.433166503906,-0.6640625,-92.3855590820313,-160.801574707031,-0.005859375,-147.080078125,-245.2822265625,-0.302734375,-162.742736816406,-184.980041503906,-0.78515625,-137.44140625,-114.8935546875,-10.6337890625,-112.252746582031,-158.713684082031,-0.5234375,-157.934143066406,-149.132385253906,-0.9580078125,-101.984710693359,-104.376312255859,-0.30078125,-141.272521972656,-197.031311035156,-0.802734375,-57.6423950195313,-155.866027832031,
- -0.43359375,-73.8471069335938,-211.239685058594,-34.98828125,20.6317138671875,54.9959716796875,-47.83984375,45.0013732910156,67.3148498535156,-45.9267578125,48.1433715820313,62.1179809570313,-44.220703125,41.4972839355469,71.3517761230469,-32.97265625,24.2845001220703,45.5911407470703,-31.4560546875,16.7660217285156,62.2103576660156,-29.13671875,-6.02508544921875,54.5110473632813,-24.3994140625,-9.40182495117188,41.1841125488281,-29.0302734375,-1.20123291015625,67.5077514648438,-17.8125,-27.321044921875,48.946533203125,-17.1103515625,-24.6219482421875,64.1387939453125,-22.34765625,2.86419677734375,51.0155639648438,-19.3857421875,-15.9009704589844,60.1976623535156,-27.240234375,4.2633056640625,71.1910400390625,-16.8662109375,-18.5958251953125,69.7440185546875,-32.4599609375,29.5885772705078,90.1256866455078,-29.08984375,12.5760192871094,98.4090270996094,-35.826171875,22.9184875488281,99.0513000488281,-44.7587890625,36.1258544921875,126.903198242188,-41.6162109375,22.2625885009766,125.035049438477,-45.810546875,29.1810607910156,127.498443603516,-40.1787109375,48.2235412597656,82.4042053222656,-50.66015625,76.5144958496094,86.5320739746094,-52.810546875,75.5736694335938,80.6146850585938,-49.40625,73.8018493652344,75.4239196777344,-37.78125,48.0569152832031,92.4094543457031,-36.96875,47.3099670410156,74.1390686035156,-34.966796875,23.271484375,72.642578125,-29.8994140625,15.0881652832031,83.5412902832031,-35.1494140625,32.6194763183594,62.4065856933594,-23.998046875,1.32168579101563,69.3861389160156,-23.705078125,9.51812744140625,56.2954711914063,-16.4970703125,-25.9761962890625,58.5511474609375,-18.9345703125,-63.3754577636719,31.4800109863281,-10.9755859375,-58.1784973144531,73.2873229980469,-18.5498046875,-13.0906066894531,28.0285339355469,-3.80859375,-98.5448608398438,53.4717407226563,-11.1708984375,-53.7598266601563,-16.8574829101563,-2.4501953125,-104.08056640625,-8.13916015625,-8.416015625,-70.9659423828125,21.7156982421875,-14.5517578125,-89.6817016601563,63.5497436523438,-12.4091796875,-49.099365234375,49.831298828125,
- -2.75,-103.259246826172,16.4634094238281,-11.0888671875,-58.299072265625,94.417724609375,2.69140625,-136.329376220703,67.4489440917969,-1.18359375,-115.844543457031,114.881042480469,-16.162109375,-28.0273132324219,62.0263977050781,-19.5849609375,-61.9085693359375,93.3033447265625,-17.9248046875,-19.189697265625,96.715576171875,-11.2578125,-55.4880981445313,44.0167846679688,-13.607421875,-45.29736328125,133.77685546875,-2.6640625,-105.975067138672,77.1694641113281,-2.9794921875,-106.062103271484,128.978912353516,-11.8681640625,-52.4699401855469,57.1277160644531,-27.6748046875,-13.4961242675781,37.9091491699219,-12.0927734375,-49.8748474121094,21.3878479003906,-15.57421875,-32.1707763671875,83.1534423828125,-18.2763671875,-13.4439086914063,-5.22418212890625,-25.64453125,26.1167297363281,68.1675109863281,-28.2001953125,42.5687866210938,19.1137084960938,-11.6083984375,-0.089508056640625,-341.881500244141,-20.0322265625,26.2080078125,-354.0576171875,-17.603515625,24.0028686523438,-359.513732910156,-17.0771484375,26.6784057617188,-348.338195800781,-8.98828125,-5.20742797851563,-350.415435791016,-8.80078125,2.5950927734375,-333.858032226563,-10.4736328125,-17.9890441894531,-321.305450439453,-6.3955078125,-30.8637390136719,-326.693817138672,-9.53125,-4.99087524414063,-316.575836181641,-3.01953125,-36.9967041015625,-307.310180664063,-1.859375,-23.7281494140625,-299.486938476563,-2.244140625,-15.7973022460938,-329.355895996094,-2.5859375,-20.9729614257813,-308.902648925781,-6.8193359375,1.09017944335938,-318.092437744141,-0.5732421875,-15.6463317871094,-300.397308349609,-7.5634765625,32.2093505859375,-325.721313476563,-7.197265625,27.4090270996094,-307.114410400391,-12.0361328125,35.1991577148438,-315.400451660156,-18.5390625,65.8927917480469,-308.649200439453,-17.8515625,55.3356628417969,-298.973907470703,-20.78125,62.0697784423828,-303.168518066406,-11.9287109375,38.9518737792969,-345.770782470703,-17.337890625,61.1926574707031,-365.853271484375,-19.6181640625,56.3040161132813,-369.234069824219,-16.57421875,50.8259582519531,-370.781463623047,
- -9.5966796875,46.2428894042969,-338.894805908203,-8.92578125,31.6831359863281,-349.96728515625,-11.12890625,15.0967712402344,-332.527252197266,-7.5595703125,17.7000122070313,-318.674987792969,-9.6845703125,13.1930236816406,-346.183929443359,-4.1376953125,-2.5169677734375,-316.602905273438,-2.42578125,-7.38824462890625,-331.161682128906,-1.4912109375,-28.9343566894531,-301.975372314453,-10.3857421875,-73.0745849609375,-291.487670898438,-1.64453125,-38.6465759277344,-267.474700927734,-1.275390625,-43.9302062988281,-331.590362548828,-1.5966796875,-80.1788635253906,-248.806793212891,-1.0703125,-104.882690429688,-328.778198242188,-1.220703125,-131.031127929688,-284.051635742188,-1.3447265625,-86.5328979492188,-290.636413574219,-10.6376953125,-65.6493225097656,-250.444244384766,-1.48046875,-50.7079467773438,-289.592712402344,-1.373046875,-111.630950927734,-268.897552490234,-1.7783203125,-22.5232849121094,-253.816253662109,-1.755859375,-94.1155395507813,-210.452453613281,-2.015625,-44.380859375,-195.9326171875,-1.517578125,-27.6074829101563,-298.149475097656,-10.771484375,-24.7137756347656,-252.940338134766,-1.71875,4.7572021484375,-282.752563476563,-1.4560546875,-59.3347473144531,-288.357208251953,-2.0009765625,16.1394348144531,-238.660369873047,-1.759765625,-66.8574523925781,-227.816436767578,-2.0859375,-27.1885681152344,-194.490325927734,-1.5322265625,-47.3124389648438,-282.288024902344,-10.33203125,-35.5987243652344,-326.145599365234,-1.302734375,-73.0232238769531,-307.248809814453,-1.6572265625,-14.1124877929688,-281.366394042969,-1.0673828125,-69.6574096679688,-352.661315917969,-1.453125,12.4292297363281,-336.311004638672,-1.1142578125,-14.4488220214844,-380.593353271484,-11.6083984375,28.4639282226563,208.729553222656,-20.0322265625,45.0214233398438,232.513595581055,-17.603515625,50.0115966796875,229.394409179688,-17.0771484375,39.4701538085938,233.970169067383,-8.98828125,35.9789733886719,202.208465576172,-8.80078125,21.0289001464844,212.766204833984,-10.4736328125,5.0919189453125,194.674926757813,-6.3955078125,8.16268920898438,181.060150146484,
- -9.53125,2.69140625,208.296875,-3.01953125,-11.9913330078125,178.386596679688,-1.859375,-17.3913879394531,192.811737060547,-2.244140625,13.4000549316406,195.435211181641,-2.5859375,-7.6405029296875,193.890747070313,-6.8193359375,5.24093627929688,214.022186279297,-0.5732421875,-15.0914001464844,200.613677978516,-7.5634765625,18.15771484375,243.34326171875,-7.197265625,-1.000244140625,241.847412109375,-12.0361328125,8.51300048828125,248.081359863281,-18.5390625,7.19427490234375,279.480407714844,-17.8515625,-4.1680908203125,270.763549804688,-20.78125,1.13217163085938,276.667327880859,-11.9287109375,39.0726623535156,246.503326416016,-17.337890625,62.7133483886719,264.918426513672,-19.6181640625,65.193115234375,259.516357421875,-16.57421875,65.7654724121094,253.853363037109,-9.5966796875,33.5675964355469,254.877166748047,-8.92578125,41.9437866210938,238.615661621094,-11.12890625,21.8890533447266,225.309951782227,-7.5595703125,8.69821166992188,230.279266357422,-9.6845703125,35.00732421875,221.06396484375,-4.1376953125,3.1474609375,210.728515625,-2.42578125,16.638671875,203.4033203125,-1.4912109375,-15.8445434570313,187.253112792969,-10.3857421875,-33.8390808105469,145.604278564453,-1.64453125,-51.5076904296875,183.678833007813,-1.275390625,10.7152709960938,167.342224121094,-1.5966796875,-77.1048278808594,146.019195556641,-1.0703125,-2.63720703125,107.80419921875,-1.220703125,-51.2250671386719,89.8198547363281,-1.3447265625,-37.0128479003906,132.497894287109,-10.6376953125,-72.968994140625,160.043701171875,-1.48046875,-31.8204650878906,167.959808349609,-1.373046875,-62.7807922363281,111.557098388672,-1.7783203125,-62.1586303710938,201.928283691406,-1.755859375,-117.29638671875,138.95361328125,-2.015625,-122.958557128906,190.455505371094,-1.517578125,-19.3822937011719,189.223175048828,-10.771484375,-63.4020690917969,199.924102783203,-1.71875,-28.9245910644531,223.770721435547,-1.4560546875,-34.53515625,159.6787109375,-2.0009765625,-70.3709716796875,242.635864257813,-1.759765625,-95.4622802734375,162.782836914063,-2.0859375,-121.394104003906,207.637145996094,
- -1.5322265625,-38.4248657226563,172.572204589844,-10.33203125,6.80087280273438,176.492279052734,-1.302734375,-18.3077087402344,142.917877197266,-1.6572265625,-33.5675964355469,205.427520751953,-1.0673828125,26.9990997314453,138.346755981445,-1.453125,25.151123046875,222.025146484375,-1.1142578125,64.09423828125,187.86572265625
- }
- PolygonVertexIndex: *5193 {
- a: 0,1,-3,3,1,-1,1,4,-3,3,5,-2,6,1,-6,5,7,-7,4,1,-9,6,8,-2,8,9,-5,10,4,-10,9,11,-11,11,9,-13,9,8,-13,12,13,-12,6,14,-9,12,8,-15,15,14,-7,15,6,-8,14,16,-13,14,15,-17,7,17,-16,16,15,-18,17,7,-19,18,19,-18,19,16,-18,19,18,-21,20,21,-20,22,16,-20,21,22,-20,21,23,-23,23,16,-23,23,21,-25,12,16,-26,23,25,-17,13,12,-26,24,26,-24,25,23,-27,25,26,-14,26,24,-28,27,13,-27,28,29,-31,31,29,-29,29,32,-31,31,33,-30,34,29,-34,33,35,-35,32,29,-37,34,36,-30,36,37,-33,38,32,-38,37,39,-39,39,37,-41,37,36,-41,40,41,-40,34,42,-37,40,36,-43,43,42,-35,43,34,-36,42,44,-41,42,43,-45,35,45,-44,44,43,-46,45,35,-47,46,47,-46,47,44,-46,47,46,-49,48,49,-48,50,44,-48,49,50,-48,49,51,-51,51,44,-51,51,49,-53,40,44,-54,51,53,-45,41,40,-54,52,54,-52,53,51,-55,53,54,-42,54,52,-56,55,41,-55,56,57,-59,59,57,-57,57,60,-59,59,61,-58,62,57,-62,61,63,-63,60,57,-65,62,64,-58,64,65,-61,66,60,-66,65,67,-67,67,65,-69,65,64,-69,68,69,-68,62,70,-65,68,64,-71,71,70,-63,71,62,-64,70,72,-69,70,71,-73,63,73,-72,72,71,-74,73,63,-75,74,75,-74,75,72,-74,75,74,-77,76,77,-76,78,72,-76,77,78,-76,77,79,-79,79,72,-79,79,77,-81,68,72,-82,79,81,-73,69,68,-82,80,82,-80,81,79,-83,81,82,-70,82,80,-84,83,69,-83,84,85,-87,87,85,-85,85,88,-87,87,89,-86,90,85,-90,89,91,-91,88,85,-93,90,92,-86,92,93,-89,94,88,-94,93,95,-95,95,93,-97,93,92,-97,96,97,-96,90,98,-93,96,92,-99,99,98,-91,99,90,-92,98,100,-97,98,99,-101,91,101,-100,100,99,-102,101,91,-103,102,103,-102,103,100,-102,103,102,-105,104,105,-104,106,100,-104,105,106,-104,105,107,-107,107,100,-107,107,105,-109,96,100,-110,107,109,-101,97,96,-110,108,110,-108,109,107,-111,109,110,-98,110,108,-112,111,97,-111,112,113,-115,115,112,-115,113,112,-117,117,113,-117,112,115,-119,119,118,-116,116,120,-118,121,117,-121,116,112,-123,120,116,-123,112,118,-123,121,120,-124,123,120,-123,124,121,-124,122,118,-126,118,119,-126,126,123,-123,124,123,-127,127,125,-120,119,128,-128,129,122,-126,125,127,-130,129,126,-123,128,130,-128,127,130,-130,131,130,-129,132,130,-132,133,124,-127,133,126,-130,124,133,-135,130,135,-130,135,133,-130,
- 130,132,-136,135,134,-134,134,135,-133,136,137,-139,139,136,-139,137,136,-141,141,137,-141,136,139,-143,143,142,-140,140,144,-142,145,141,-145,140,136,-147,144,140,-147,136,142,-147,145,144,-148,147,144,-147,148,145,-148,146,142,-150,142,143,-150,150,147,-147,148,147,-151,151,149,-144,143,152,-152,153,146,-150,149,151,-154,153,150,-147,152,154,-152,151,154,-154,155,154,-153,156,154,-156,157,148,-151,157,150,-154,148,157,-159,154,159,-154,159,157,-154,154,156,-160,159,158,-158,158,159,-157,160,161,-163,163,160,-163,161,160,-165,165,161,-165,160,163,-167,167,166,-164,164,168,-166,169,165,-169,164,160,-171,168,164,-171,160,166,-171,169,168,-172,171,168,-171,172,169,-172,170,166,-174,166,167,-174,174,171,-171,172,171,-175,175,173,-168,167,176,-176,177,170,-174,173,175,-178,177,174,-171,176,178,-176,175,178,-178,179,178,-177,180,178,-180,181,172,-175,181,174,-178,172,181,-183,178,183,-178,183,181,-178,178,180,-184,183,182,-182,182,183,-181,184,185,-187,187,184,-187,185,184,-189,189,185,-189,184,187,-191,191,190,-188,188,192,-190,193,189,-193,188,184,-195,192,188,-195,184,190,-195,193,192,-196,195,192,-195,196,193,-196,194,190,-198,190,191,-198,198,195,-195,196,195,-199,199,197,-192,191,200,-200,201,194,-198,197,199,-202,201,198,-195,200,202,-200,199,202,-202,203,202,-201,204,202,-204,205,196,-199,205,198,-202,196,205,-207,202,207,-202,207,205,-202,202,204,-208,207,206,-206,206,207,-205,208,209,-211,211,208,-211,209,208,-213,213,209,-213,208,211,-215,215,214,-212,212,216,-214,217,213,-217,212,208,-219,216,212,-219,208,214,-219,217,216,-220,219,216,-219,220,217,-220,218,214,-222,214,215,-222,222,219,-219,220,219,-223,223,221,-216,215,224,-224,225,218,-222,221,223,-226,225,222,-219,224,226,-224,223,226,-226,227,226,-225,228,226,-228,229,220,-223,229,222,-226,220,229,-231,226,231,-226,231,229,-226,226,228,-232,231,230,-230,230,231,-229,232,233,-235,235,232,-235,235,236,-238,234,238,-236,236,235,-239,236,238,-240,234,240,-239,239,238,-242,238,240,-242,241,240,-243,243,244,-246,246,243,-246,246,247,-249,245,249,-247,247,246,
- -250,247,249,-251,245,251,-250,250,249,-253,249,251,-253,252,251,-254,254,255,-257,257,254,-257,257,258,-260,256,260,-258,258,257,-261,258,260,-262,256,262,-261,261,260,-264,260,262,-264,263,262,-265,265,266,-268,268,265,-268,268,269,-271,267,271,-269,269,268,-272,269,271,-273,267,273,-272,272,271,-275,271,273,-275,274,273,-276,276,277,-279,279,276,-279,280,276,-280,279,278,-282,280,279,-283,282,279,-282,283,284,-286,283,285,-287,287,283,-287,285,288,-287,287,286,-290,286,288,-290,290,291,-293,293,290,-293,294,290,-294,293,292,-296,294,293,-297,296,293,-296,297,298,-300,297,299,-301,301,297,-301,299,302,-301,301,300,-304,300,302,-304,304,305,-307,307,304,-307,308,304,-308,307,306,-310,308,307,-311,310,307,-310,311,312,-314,311,313,-315,315,311,-315,313,316,-315,315,314,-318,314,316,-318,318,319,-321,321,318,-321,322,318,-322,321,320,-324,322,321,-325,324,321,-324,325,326,-328,325,327,-329,329,325,-329,327,330,-329,329,328,-332,328,330,-332,332,333,-335,335,332,-335,336,332,-336,335,334,-338,336,335,-339,338,335,-338,339,340,-342,339,341,-343,343,339,-343,341,344,-343,343,342,-346,342,344,-346,346,347,-349,349,347,-347,347,349,-351,349,351,-351,349,352,-352,346,353,-350,352,349,-354,353,346,-355,355,352,-354,356,353,-355,353,356,-356,357,358,-360,360,358,-358,358,360,-362,360,362,-362,360,363,-363,357,364,-361,363,360,-365,364,357,-366,366,363,-365,367,364,-366,364,367,-367,368,369,-371,371,369,-369,369,371,-373,371,373,-373,371,374,-374,368,375,-372,374,371,-376,375,368,-377,377,374,-376,378,375,-377,375,378,-378,379,380,-382,382,380,-380,380,382,-384,382,384,-384,382,385,-385,379,386,-383,385,382,-387,386,379,-388,388,385,-387,389,386,-388,386,389,-389,390,391,-393,393,391,-391,391,393,-395,393,395,-395,393,396,-396,390,397,-394,396,393,-398,397,390,-399,399,396,-398,400,397,-399,397,400,-400,401,402,-404,401,404,-403,403,402,-406,402,404,-407,405,402,-407,407,408,-410,407,410,-409,409,408,-412,408,410,-413,408,412,-412,413,414,-416,413,416,-415,415,414,-418,414,416,-419,414,418,-418,419,420,-422,422,420,-420,423,
- 419,-422,419,424,-423,423,424,-420,425,422,-425,426,424,-424,425,424,-427,427,428,-430,427,430,-429,429,428,-432,428,430,-433,428,432,-432,430,433,-433,434,431,-433,432,433,-435,435,436,-438,435,438,-437,437,436,-440,436,438,-441,440,439,-437,438,441,-441,442,439,-441,440,441,-443,443,444,-446,446,444,-444,447,443,-446,443,448,-447,447,448,-444,449,446,-449,450,448,-448,449,448,-451,451,452,-454,451,454,-453,453,452,-456,452,454,-457,452,456,-456,454,457,-457,458,455,-457,456,457,-459,459,460,-462,462,460,-460,463,459,-462,459,464,-463,463,464,-460,465,462,-465,466,464,-464,465,464,-467,467,468,-470,467,470,-469,469,468,-472,468,470,-473,468,472,-472,473,474,-476,473,476,-475,475,474,-478,474,476,-479,477,474,-479,479,480,-482,479,482,-481,481,480,-484,480,482,-485,480,484,-484,485,486,-488,485,488,-487,487,486,-490,486,488,-491,486,490,-490,491,492,-494,491,494,-493,493,492,-496,492,494,-497,492,496,-496,497,498,-500,497,500,-499,499,498,-502,498,500,-503,498,502,-502,503,504,-506,503,506,-505,505,504,-508,504,506,-509,507,504,-509,509,510,-512,509,512,-511,511,510,-514,510,512,-515,510,514,-514,515,516,-518,515,518,-517,517,516,-520,516,518,-521,519,516,-521,521,522,-524,521,523,-525,522,525,-524,523,526,-525,523,525,-527,524,526,-528,525,528,-527,526,528,-528,529,530,-532,529,532,-531,531,530,-534,530,532,-535,533,530,-535,535,536,-538,535,538,-537,537,536,-540,536,538,-541,536,540,-540,541,542,-544,541,544,-543,543,542,-546,542,544,-547,542,546,-546,547,548,-550,547,550,-549,549,548,-552,548,550,-553,548,552,-552,553,554,-556,553,556,-555,555,554,-558,554,556,-559,557,554,-559,559,560,-562,559,562,-561,561,560,-564,560,562,-565,563,560,-565,565,566,-568,565,568,-567,567,566,-570,566,568,-571,566,570,-570,571,572,-574,571,574,-573,573,572,-576,572,574,-577,572,576,-576,577,578,-580,580,578,-578,581,577,-580,577,582,-581,581,582,-578,583,580,-583,584,582,-582,583,582,-585,585,586,-588,585,588,-587,587,586,-590,586,588,-591,586,590,-590,588,591,-591,592,589,-591,590,591,-593,593,594,-596,593,596,-595,595,594,-598,
- 594,596,-599,598,597,-595,596,599,-599,600,597,-599,598,599,-601,601,602,-604,604,602,-602,605,601,-604,601,606,-605,605,606,-602,607,604,-607,608,606,-606,607,606,-609,609,610,-612,609,612,-611,611,610,-614,610,612,-615,610,614,-614,612,615,-615,616,613,-615,614,615,-617,617,618,-620,620,618,-618,621,617,-620,617,622,-621,621,622,-618,623,620,-623,624,622,-622,623,622,-625,625,626,-628,625,628,-627,627,626,-630,626,628,-631,626,630,-630,631,632,-634,631,634,-633,633,632,-636,632,634,-637,635,632,-637,637,638,-640,637,640,-639,639,638,-642,638,640,-643,638,642,-642,643,644,-646,643,646,-645,645,644,-648,644,646,-649,644,648,-648,649,650,-652,649,652,-651,651,650,-654,650,652,-655,650,654,-654,655,656,-658,655,658,-657,657,656,-660,656,658,-661,656,660,-660,661,662,-664,661,664,-663,663,662,-666,662,664,-667,665,662,-667,667,668,-670,667,670,-669,669,668,-672,668,670,-673,668,672,-672,673,674,-676,673,676,-675,675,674,-678,674,676,-679,677,674,-679,679,680,-682,679,682,-681,681,680,-684,680,682,-685,683,680,-685,685,686,-688,685,688,-687,687,686,-690,686,688,-691,686,690,-690,691,692,-694,691,694,-693,693,692,-696,692,694,-697,692,696,-696,697,698,-700,700,698,-698,701,697,-700,697,702,-701,701,702,-698,703,700,-703,704,702,-702,703,702,-705,705,706,-708,705,708,-707,707,706,-710,706,708,-711,706,710,-710,708,711,-711,712,709,-711,710,711,-713,713,714,-716,713,716,-715,715,714,-718,714,716,-719,718,717,-715,716,719,-719,720,717,-719,718,719,-721,721,722,-724,724,722,-722,725,721,-724,721,726,-725,725,726,-722,727,724,-727,728,726,-726,727,726,-729,729,730,-732,729,732,-731,731,730,-734,730,732,-735,730,734,-734,732,735,-735,736,733,-735,734,735,-737,737,738,-740,740,738,-738,741,737,-740,737,742,-741,741,742,-738,743,740,-743,744,742,-742,743,742,-745,745,746,-748,745,748,-747,747,746,-750,746,748,-751,746,750,-750,751,752,-754,751,754,-753,753,752,-756,752,754,-757,755,752,-757,757,758,-760,757,760,-759,759,758,-762,758,760,-763,758,762,-762,763,764,-766,763,766,-765,765,764,-768,764,766,-769,764,768,-768,769,770,
- -772,769,772,-771,771,770,-774,770,772,-775,770,774,-774,775,776,-778,775,778,-777,777,776,-780,776,778,-781,776,780,-780,781,782,-784,781,784,-783,783,782,-786,782,784,-787,785,782,-787,787,788,-790,787,790,-789,789,788,-792,788,790,-793,788,792,-792,793,794,-796,793,796,-795,795,794,-798,794,796,-799,797,794,-799,799,800,-802,799,802,-801,801,800,-804,800,802,-805,803,800,-805,805,806,-808,805,808,-807,807,806,-810,806,808,-811,806,810,-810,811,812,-814,811,814,-813,813,812,-816,812,814,-817,812,816,-816,817,818,-820,820,818,-818,821,817,-820,817,822,-821,821,822,-818,823,820,-823,824,822,-822,823,822,-825,825,826,-828,825,828,-827,827,826,-830,826,828,-831,826,830,-830,828,831,-831,832,829,-831,830,831,-833,833,834,-836,833,836,-835,835,834,-838,834,836,-839,838,837,-835,836,839,-839,840,837,-839,838,839,-841,841,842,-844,844,842,-842,845,841,-844,841,846,-845,845,846,-842,847,844,-847,848,846,-846,847,846,-849,849,850,-852,849,852,-851,851,850,-854,850,852,-855,850,854,-854,852,855,-855,856,853,-855,854,855,-857,857,858,-860,860,858,-858,861,857,-860,857,862,-861,861,862,-858,863,860,-863,864,862,-862,863,862,-865,865,866,-868,865,868,-867,867,866,-870,866,868,-871,866,870,-870,871,872,-874,871,874,-873,873,872,-876,872,874,-877,875,872,-877,877,878,-880,877,880,-879,879,878,-882,878,880,-883,878,882,-882,883,884,-886,883,886,-885,885,884,-888,884,886,-889,884,888,-888,889,890,-892,889,892,-891,891,890,-894,890,892,-895,890,894,-894,895,896,-898,895,898,-897,897,896,-900,896,898,-901,896,900,-900,901,902,-904,901,904,-903,903,902,-906,902,904,-907,905,902,-907,907,908,-910,907,910,-909,909,908,-912,908,910,-913,908,912,-912,913,914,-916,913,916,-915,915,914,-918,914,916,-919,917,914,-919,919,920,-922,919,922,-921,921,920,-924,920,922,-925,923,920,-925,925,926,-928,925,928,-927,927,926,-930,926,928,-931,926,930,-930,931,932,-934,931,934,-933,933,932,-936,932,934,-937,932,936,-936,937,938,-940,940,938,-938,941,937,-940,937,942,-941,941,942,-938,943,940,-943,944,942,-942,943,942,-945,945,946,-948,945,948,-947,947,
- 946,-950,946,948,-951,946,950,-950,948,951,-951,952,949,-951,950,951,-953,953,954,-956,953,956,-955,955,954,-958,954,956,-959,958,957,-955,956,959,-959,960,957,-959,958,959,-961,961,962,-964,964,962,-962,965,961,-964,961,966,-965,965,966,-962,967,964,-967,968,966,-966,967,966,-969,969,970,-972,969,972,-971,971,970,-974,970,972,-975,970,974,-974,972,975,-975,976,973,-975,974,975,-977,977,978,-980,980,978,-978,981,977,-980,977,982,-981,981,982,-978,983,980,-983,984,982,-982,983,982,-985,985,986,-988,985,988,-987,987,986,-990,986,988,-991,986,990,-990,991,992,-994,991,994,-993,993,992,-996,992,994,-997,995,992,-997,997,998,-1000,997,1000,-999,999,998,-1002,998,1000,-1003,998,1002,-1002,1003,1004,-1006,1003,1006,-1005,1005,1004,-1008,1004,1006,-1009,1004,1008,-1008,1009,1010,-1012,1009,1012,-1011,1011,1010,-1014,1010,1012,-1015,1010,1014,-1014,1015,1016,-1018,1015,1018,-1017,1017,1016,-1020,1016,1018,-1021,1016,1020,-1020,1021,1022,-1024,1021,1024,-1023,1023,1022,-1026,1022,1024,-1027,1025,1022,-1027,1027,1028,-1030,1027,1030,-1029,1029,1028,-1032,1028,1030,-1033,1028,1032,-1032,1033,1034,-1036,1033,1036,-1035,1035,1034,-1038,1034,1036,-1039,1037,1034,-1039,1039,1040,-1042,1039,1041,-1043,1040,1043,-1042,1041,1044,-1043,1041,1043,-1045,1042,1044,-1046,1043,1046,-1045,1044,1046,-1046,1047,1048,-1050,1047,1050,-1049,1049,1048,-1052,1048,1050,-1053,1051,1048,-1053,1053,1054,-1056,1053,1056,-1055,1055,1054,-1058,1054,1056,-1059,1054,1058,-1058,1059,1060,-1062,1059,1062,-1061,1061,1060,-1064,1060,1062,-1065,1060,1064,-1064,1065,1066,-1068,1065,1068,-1067,1067,1066,-1070,1066,1068,-1071,1066,1070,-1070,1071,1072,-1074,1071,1074,-1073,1073,1072,-1076,1072,1074,-1077,1075,1072,-1077,1077,1078,-1080,1077,1079,-1081,1078,1081,-1080,1079,1082,-1081,1079,1081,-1083,1080,1082,-1084,1081,1084,-1083,1082,1084,-1084,1085,1086,-1088,1085,1088,-1087,1087,1086,-1090,1086,1088,-1091,1089,1086,-1091,1091,1092,-1094,1091,1094,-1093,1093,1092,-1096,1092,1094,-1097,1092,1096,-1096,1097,1098,-1100,1097,1100,-1099,1099,1098,-1102,1098,1100,-1103,
- 1098,1102,-1102,1103,1104,-1106,1103,1106,-1105,1105,1104,-1108,1104,1106,-1109,1104,1108,-1108,1109,1110,-1112,1109,1112,-1111,1111,1110,-1114,1110,1112,-1115,1113,1110,-1115,1115,1116,-1118,1115,1117,-1119,1116,1119,-1118,1117,1120,-1119,1117,1119,-1121,1118,1120,-1122,1119,1122,-1121,1120,1122,-1122,1123,1124,-1126,1123,1126,-1125,1125,1124,-1128,1124,1126,-1129,1127,1124,-1129,1129,1130,-1132,1129,1132,-1131,1131,1130,-1134,1130,1132,-1135,1130,1134,-1134,1135,1136,-1138,1135,1138,-1137,1137,1136,-1140,1136,1138,-1141,1136,1140,-1140,1141,1142,-1144,1141,1144,-1143,1143,1142,-1146,1142,1144,-1147,1142,1146,-1146,1147,1148,-1150,1147,1150,-1149,1149,1148,-1152,1148,1150,-1153,1151,1148,-1153,1153,1154,-1156,1154,1153,-1157,1155,1157,-1154,1153,1158,-1157,1157,1159,-1154,1158,1153,-1160,1159,1157,-1161,1159,1161,-1159,1162,1159,-1161,1161,1159,-1164,1163,1159,-1163,1164,1165,-1167,1165,1167,-1167,1164,1168,-1166,1169,1167,-1166,1165,1168,-1171,1165,1170,-1170,1171,1170,-1169,1170,1172,-1170,1170,1171,-1174,1172,1170,-1174,1174,1175,-1177,1174,1177,-1176,1176,1175,-1179,1175,1177,-1180,1178,1175,-1181,1180,1175,-1180,1181,1182,-1184,1181,1184,-1183,1183,1182,-1186,1182,1184,-1187,1185,1182,-1188,1187,1182,-1187,1188,1189,-1191,1188,1191,-1190,1190,1189,-1193,1189,1191,-1194,1192,1189,-1195,1194,1189,-1194,1195,1196,-1198,1195,1198,-1197,1197,1196,-1200,1196,1198,-1201,1199,1196,-1202,1201,1196,-1201,1202,1203,-1205,1202,1205,-1204,1204,1203,-1207,1203,1205,-1208,1206,1203,-1209,1208,1203,-1208,1209,1210,-1212,1209,1212,-1211,1211,1210,-1214,1210,1212,-1215,1213,1210,-1216,1215,1210,-1215,1216,1217,-1219,1216,1219,-1218,1218,1217,-1221,1217,1219,-1222,1220,1217,-1223,1222,1217,-1222,1223,1224,-1226,1223,1226,-1225,1225,1224,-1228,1224,1226,-1229,1227,1224,-1230,1229,1224,-1229,1230,1231,-1233,1230,1233,-1232,1232,1234,-1231,1233,1230,-1236,1236,1230,-1235,1236,1235,-1231,1236,1234,-1238,1235,1236,-1239,1239,1236,-1238,1236,1240,-1239,1240,1236,-1240,1241,1242,-1244,1243,1242,-1245,1243,1245,-1242,1246,1243,-1245,1245,
- 1243,-1248,1247,1243,-1247,1247,1248,-1246,1249,1247,-1247,1248,1247,-1251,1250,1247,-1250,1251,1252,-1254,1254,1251,-1254,1252,1251,-1256,1251,1254,-1257,1257,1255,-1252,1256,1257,-1252,1258,1255,-1258,1257,1256,-1260,1260,1258,-1258,1261,1257,-1260,1257,1261,-1261,1262,1263,-1265,1262,1265,-1264,1264,1263,-1267,1263,1265,-1268,1266,1263,-1269,1268,1263,-1268,1269,1270,-1272,1269,1272,-1271,1271,1270,-1274,1270,1272,-1275,1273,1270,-1276,1275,1270,-1275,1276,1277,-1279,1276,1279,-1278,1278,1277,-1281,1277,1279,-1282,1280,1277,-1283,1282,1277,-1282,1283,1284,-1286,1283,1286,-1285,1285,1284,-1288,1284,1286,-1289,1287,1284,-1290,1289,1284,-1289,1290,1291,-1293,1291,1290,-1294,1292,1294,-1291,1290,1295,-1294,1294,1296,-1291,1295,1290,-1297,1296,1294,-1298,1296,1298,-1296,1299,1296,-1298,1298,1296,-1301,1300,1296,-1300,1301,1302,-1304,1302,1304,-1304,1301,1305,-1303,1306,1304,-1303,1302,1305,-1308,1302,1307,-1307,1308,1307,-1306,1307,1309,-1307,1307,1308,-1311,1309,1307,-1311,1311,1312,-1314,1311,1314,-1313,1313,1312,-1316,1312,1314,-1317,1315,1312,-1318,1317,1312,-1317,1318,1319,-1321,1318,1321,-1320,1320,1319,-1323,1319,1321,-1324,1322,1319,-1325,1324,1319,-1324,1325,1326,-1328,1325,1328,-1327,1327,1326,-1330,1326,1328,-1331,1329,1326,-1332,1331,1326,-1331,1332,1333,-1335,1332,1335,-1334,1334,1333,-1337,1333,1335,-1338,1336,1333,-1339,1338,1333,-1338,1339,1340,-1342,1339,1342,-1341,1341,1340,-1344,1340,1342,-1345,1343,1340,-1346,1345,1340,-1345,1346,1347,-1349,1346,1349,-1348,1348,1347,-1351,1347,1349,-1352,1350,1347,-1353,1352,1347,-1352,1353,1354,-1356,1353,1356,-1355,1355,1354,-1358,1354,1356,-1359,1357,1354,-1360,1359,1354,-1359,1360,1361,-1363,1360,1363,-1362,1362,1361,-1365,1361,1363,-1366,1364,1361,-1367,1366,1361,-1366,1367,1368,-1370,1368,1367,-1371,1369,1371,-1368,1367,1372,-1371,1371,1373,-1368,1372,1367,-1374,1373,1371,-1375,1373,1375,-1373,1376,1373,-1375,1375,1373,-1378,1377,1373,-1377,1378,1379,-1381,1379,1381,-1381,1378,1382,-1380,1383,1381,-1380,1379,1382,-1385,1379,1384,-1384,1385,1384,-1383,1384,1386,
- -1384,1384,1385,-1388,1386,1384,-1388,1388,1389,-1391,1388,1391,-1390,1390,1389,-1393,1389,1391,-1394,1392,1389,-1395,1394,1389,-1394,1395,1396,-1398,1395,1398,-1397,1397,1396,-1400,1396,1398,-1401,1399,1396,-1402,1401,1396,-1401,1402,1403,-1405,1402,1405,-1404,1404,1403,-1407,1403,1405,-1408,1406,1403,-1409,1408,1403,-1408,1409,1410,-1412,1409,1412,-1411,1411,1410,-1414,1410,1412,-1415,1413,1410,-1416,1415,1410,-1415,1416,1417,-1419,1416,1419,-1418,1418,1417,-1421,1417,1419,-1422,1420,1417,-1423,1422,1417,-1422,1423,1424,-1426,1423,1426,-1425,1425,1424,-1428,1424,1426,-1429,1427,1424,-1430,1429,1424,-1429,1430,1431,-1433,1430,1433,-1432,1432,1431,-1435,1431,1433,-1436,1434,1431,-1437,1436,1431,-1436,1437,1438,-1440,1437,1440,-1439,1439,1438,-1442,1438,1440,-1443,1441,1438,-1444,1443,1438,-1443,1444,1445,-1447,1445,1444,-1448,1446,1448,-1445,1444,1449,-1448,1448,1450,-1445,1449,1444,-1451,1450,1448,-1452,1450,1452,-1450,1453,1450,-1452,1452,1450,-1455,1454,1450,-1454,1455,1456,-1458,1456,1458,-1458,1455,1459,-1457,1460,1458,-1457,1456,1459,-1462,1456,1461,-1461,1462,1461,-1460,1461,1463,-1461,1461,1462,-1465,1463,1461,-1465,1465,1466,-1468,1465,1468,-1467,1467,1466,-1470,1466,1468,-1471,1469,1466,-1472,1471,1466,-1471,1472,1473,-1475,1472,1475,-1474,1474,1473,-1477,1473,1475,-1478,1476,1473,-1479,1478,1473,-1478,1479,1480,-1482,1479,1482,-1481,1481,1480,-1484,1480,1482,-1485,1483,1480,-1486,1485,1480,-1485,1486,1487,-1489,1486,1489,-1488,1488,1487,-1491,1487,1489,-1492,1490,1487,-1493,1492,1487,-1492,1493,1494,-1496,1493,1496,-1495,1495,1494,-1498,1494,1496,-1499,1497,1494,-1500,1499,1494,-1499,1500,1501,-1503,1500,1503,-1502,1502,1501,-1505,1501,1503,-1506,1504,1501,-1507,1506,1501,-1506,1507,1508,-1510,1507,1510,-1509,1509,1508,-1512,1508,1510,-1513,1511,1508,-1514,1513,1508,-1513,1514,1515,-1517,1514,1517,-1516,1516,1515,-1519,1515,1517,-1520,1518,1515,-1521,1520,1515,-1520,1521,1522,-1524,1522,1521,-1525,1523,1525,-1522,1521,1526,-1525,1525,1527,-1522,1526,1521,-1528,1527,1525,-1529,1527,1529,-1527,1530,1527,-1529,
- 1529,1527,-1532,1531,1527,-1531,1532,1533,-1535,1533,1535,-1535,1532,1536,-1534,1537,1535,-1534,1533,1536,-1539,1533,1538,-1538,1539,1538,-1537,1538,1540,-1538,1538,1539,-1542,1540,1538,-1542,1542,1543,-1545,1542,1545,-1544,1544,1543,-1547,1543,1545,-1548,1546,1543,-1549,1548,1543,-1548,1549,1550,-1552,1549,1552,-1551,1551,1550,-1554,1550,1552,-1555,1553,1550,-1556,1555,1550,-1555,1556,1557,-1559,1556,1559,-1558,1558,1557,-1561,1557,1559,-1562,1560,1557,-1563,1562,1557,-1562,1563,1564,-1566,1563,1566,-1565,1565,1564,-1568,1564,1566,-1569,1567,1564,-1570,1569,1564,-1569,1570,1571,-1573,1570,1573,-1572,1572,1571,-1575,1571,1573,-1576,1574,1571,-1577,1576,1571,-1576,1577,1578,-1580,1577,1580,-1579,1579,1578,-1582,1578,1580,-1583,1581,1578,-1584,1583,1578,-1583,1584,1585,-1587,1584,1587,-1586,1586,1585,-1589,1585,1587,-1590,1588,1585,-1591,1590,1585,-1590,1591,1592,-1594,1591,1594,-1593,1593,1592,-1596,1592,1594,-1597,1595,1592,-1598,1597,1592,-1597,1598,1599,-1601,1598,1601,-1600,1600,1602,-1599,1601,1598,-1604,1604,1598,-1603,1604,1603,-1599,1604,1602,-1606,1603,1604,-1607,1607,1604,-1606,1604,1608,-1607,1608,1604,-1608,1609,1610,-1612,1611,1610,-1613,1611,1613,-1610,1614,1611,-1613,1613,1611,-1616,1615,1611,-1615,1615,1616,-1614,1617,1615,-1615,1616,1615,-1619,1618,1615,-1618,1619,1620,-1622,1622,1619,-1622,1620,1619,-1624,1619,1622,-1625,1625,1623,-1620,1624,1625,-1620,1626,1623,-1626,1625,1624,-1628,1628,1626,-1626,1629,1625,-1628,1625,1629,-1629,1630,1631,-1633,1630,1633,-1632,1632,1631,-1635,1631,1633,-1636,1634,1631,-1637,1636,1631,-1636,1637,1638,-1640,1637,1640,-1639,1639,1638,-1642,1638,1640,-1643,1641,1638,-1644,1643,1638,-1643,1644,1645,-1647,1644,1647,-1646,1646,1645,-1649,1645,1647,-1650,1648,1645,-1651,1650,1645,-1650,1651,1652,-1654,1651,1654,-1653,1653,1652,-1656,1652,1654,-1657,1655,1652,-1658,1657,1652,-1657,1658,1659,-1661,1658,1661,-1660,1660,1662,-1659,1661,1658,-1664,1664,1658,-1663,1664,1663,-1659,1664,1662,-1666,1663,1664,-1667,1667,1664,-1666,1664,1668,-1667,1668,1664,-1668,1669,1670,-1672,1671,
- 1670,-1673,1671,1673,-1670,1674,1671,-1673,1673,1671,-1676,1675,1671,-1675,1675,1676,-1674,1677,1675,-1675,1676,1675,-1679,1678,1675,-1678,1679,1680,-1682,1682,1679,-1682,1680,1679,-1684,1679,1682,-1685,1685,1683,-1680,1684,1685,-1680,1686,1683,-1686,1685,1684,-1688,1688,1686,-1686,1689,1685,-1688,1685,1689,-1689,1690,1691,-1693,1690,1693,-1692,1692,1691,-1695,1691,1693,-1696,1694,1691,-1697,1696,1691,-1696,1697,1698,-1700,1697,1700,-1699,1699,1698,-1702,1698,1700,-1703,1701,1698,-1704,1703,1698,-1703,1704,1705,-1707,1704,1707,-1706,1706,1705,-1709,1705,1707,-1710,1708,1705,-1711,1710,1705,-1710,1711,1712,-1714,1711,1714,-1713,1713,1712,-1716,1712,1714,-1717,1715,1712,-1718,1717,1712,-1717,1718,1719,-1721,1718,1721,-1720,1720,1722,-1719,1721,1718,-1724,1724,1718,-1723,1724,1723,-1719,1724,1722,-1726,1723,1724,-1727,1727,1724,-1726,1724,1728,-1727,1728,1724,-1728,1729,1730,-1732,1731,1730,-1733,1731,1733,-1730,1734,1731,-1733,1733,1731,-1736,1735,1731,-1735,1735,1736,-1734,1737,1735,-1735,1736,1735,-1739,1738,1735,-1738,1739,1740,-1742,1742,1739,-1742,1740,1739,-1744,1739,1742,-1745,1745,1743,-1740,1744,1745,-1740,1746,1743,-1746,1745,1744,-1748,1748,1746,-1746,1749,1745,-1748,1745,1749,-1749,1750,1751,-1753,1750,1753,-1752,1752,1751,-1755,1751,1753,-1756,1754,1751,-1757,1756,1751,-1756,1757,1758,-1760,1757,1760,-1759,1759,1758,-1762,1758,1760,-1763,1761,1758,-1764,1763,1758,-1763,1764,1765,-1767,1764,1767,-1766,1766,1765,-1769,1765,1767,-1770,1768,1765,-1771,1770,1765,-1770,1771,1772,-1774,1771,1774,-1773,1773,1772,-1776,1772,1774,-1777,1775,1772,-1778,1777,1772,-1777
- }
- Edges: *3289 {
- a: 0,1,2,3,5,6,7,9,10,12,14,15,16,19,20,21,24,25,27,29,30,31,34,35,37,39,40,42,43,47,48,50,53,54,55,58,60,61,65,67,68,69,70,72,76,77,78,79,81,83,84,87,88,90,94,95,97,98,99,104,105,106,110,112,115,116,117,120,121,122,123,125,126,127,129,130,132,134,135,136,139,140,141,144,145,147,149,150,151,154,155,157,159,160,162,163,167,168,170,173,174,175,178,180,181,185,187,188,189,190,192,196,197,198,199,201,203,204,207,208,210,214,215,217,218,219,224,225,226,230,232,235,236,237,240,241,242,243,245,246,247,249,250,252,254,255,256,259,260,261,264,265,267,269,270,271,274,275,277,279,280,282,283,287,288,290,293,294,295,298,300,301,305,307,308,309,310,312,316,317,318,319,321,323,324,327,328,330,334,335,337,338,339,344,345,346,350,352,355,356,357,360,361,362,363,365,366,367,369,370,372,374,375,376,379,380,381,384,385,387,389,390,391,394,395,397,399,400,402,403,407,408,410,413,414,415,418,420,421,425,427,428,429,430,432,436,437,438,439,441,443,444,447,448,450,454,455,457,458,459,464,465,466,470,472,475,476,477,480,481,482,483,485,487,488,489,491,493,494,495,497,498,499,501,503,505,506,509,511,514,515,518,519,521,523,524,526,528,530,533,534,536,537,538,540,542,544,546,549,550,553,555,557,558,560,561,563,566,568,569,570,571,573,577,579,584,585,586,587,588,590,592,593,594,596,598,599,600,602,603,604,606,608,610,611,614,616,619,620,623,624,626,628,629,631,633,635,638,639,641,642,643,645,647,649,651,654,655,658,660,662,663,665,666,668,671,673,674,675,676,678,682,684,689,690,691,692,693,695,697,698,699,701,703,704,705,707,708,709,711,713,715,716,719,721,724,725,728,729,731,733,734,736,738,740,743,744,746,747,748,750,752,754,756,759,760,763,765,767,768,770,771,773,776,778,779,780,781,783,787,789,794,795,796,797,798,800,802,803,804,806,808,809,810,812,813,814,816,818,820,821,824,826,829,830,833,834,836,838,839,841,843,845,848,849,851,852,853,855,857,859,861,864,865,868,870,872,873,875,876,878,881,883,884,885,886,888,892,894,899,900,901,902,903,905,907,908,909,911,913,914,915,917,918,919,921,923,925,926,929,931,934,935,938,939,
- 941,943,944,946,948,950,953,954,956,957,958,960,962,964,966,969,970,973,975,977,978,980,981,983,986,988,989,990,991,993,997,999,1004,1005,1006,1007,1008,1010,1011,1012,1013,1014,1015,1019,1021,1022,1023,1024,1027,1028,1030,1033,1034,1035,1036,1037,1038,1040,1041,1042,1043,1044,1045,1049,1051,1052,1053,1054,1057,1058,1060,1063,1064,1065,1066,1067,1068,1070,1071,1072,1073,1074,1075,1079,1081,1082,1083,1084,1087,1088,1090,1093,1094,1095,1096,1097,1098,1100,1101,1102,1103,1104,1105,1109,1111,1112,1113,1114,1117,1118,1120,1123,1124,1125,1126,1127,1128,1130,1131,1133,1135,1136,1138,1139,1142,1143,1144,1145,1147,1148,1149,1151,1152,1153,1156,1157,1159,1161,1162,1163,1164,1166,1167,1169,1171,1172,1174,1175,1178,1179,1180,1181,1183,1184,1185,1187,1188,1189,1192,1193,1195,1197,1198,1199,1200,1202,1203,1205,1207,1208,1210,1211,1214,1215,1216,1217,1219,1220,1221,1223,1224,1225,1228,1229,1231,1233,1234,1235,1236,1238,1239,1241,1243,1244,1246,1247,1250,1251,1252,1253,1255,1256,1257,1259,1260,1261,1264,1265,1267,1269,1270,1271,1272,1274,1275,1277,1279,1280,1282,1283,1286,1287,1288,1289,1291,1292,1293,1295,1296,1297,1300,1301,1303,1305,1306,1307,1308,1310,1312,1313,1314,1315,1317,1318,1320,1321,1325,1327,1328,1329,1331,1332,1334,1336,1338,1339,1340,1341,1343,1345,1346,1347,1348,1350,1351,1353,1354,1358,1360,1361,1362,1364,1365,1367,1369,1371,1372,1373,1374,1376,1378,1379,1380,1381,1383,1384,1386,1387,1391,1393,1394,1395,1397,1398,1400,1402,1404,1405,1406,1407,1409,1411,1412,1413,1414,1416,1417,1419,1420,1424,1426,1427,1428,1430,1431,1433,1435,1437,1438,1439,1440,1442,1444,1445,1446,1447,1449,1450,1452,1453,1457,1459,1460,1461,1463,1464,1466,1468,1470,1471,1472,1473,1474,1477,1478,1480,1481,1484,1485,1486,1487,1488,1489,1492,1493,1495,1496,1498,1500,1501,1502,1503,1504,1507,1508,1510,1511,1513,1515,1516,1517,1518,1520,1521,1523,1524,1525,1527,1530,1532,1533,1535,1538,1539,1540,1541,1542,1543,1546,1547,1549,1550,1552,1554,1555,1557,1559,1561,1563,1564,1565,1566,1567,1570,1571,1573,1574,1575,1578,1579,1581,1583,1585,1587,1588,1589,1590,
- 1592,1593,1595,1596,1597,1599,1602,1604,1605,1607,1610,1611,1612,1613,1614,1615,1618,1619,1621,1622,1624,1626,1627,1629,1631,1633,1635,1636,1637,1638,1640,1641,1643,1644,1645,1647,1650,1652,1653,1655,1658,1659,1660,1661,1662,1663,1666,1667,1669,1670,1672,1674,1675,1676,1677,1678,1681,1682,1684,1685,1688,1689,1690,1691,1692,1693,1696,1697,1699,1700,1702,1704,1705,1706,1707,1708,1711,1712,1714,1715,1717,1719,1720,1721,1722,1723,1726,1727,1729,1730,1732,1734,1735,1736,1737,1738,1741,1742,1744,1745,1747,1749,1750,1751,1752,1753,1756,1757,1759,1760,1763,1764,1765,1766,1767,1768,1771,1772,1774,1775,1777,1779,1780,1781,1782,1783,1786,1787,1789,1790,1793,1794,1795,1796,1798,1799,1800,1801,1803,1804,1807,1810,1811,1812,1813,1816,1818,1819,1820,1821,1822,1825,1826,1828,1829,1832,1833,1834,1835,1836,1837,1840,1841,1843,1844,1846,1848,1849,1850,1851,1852,1855,1856,1858,1859,1861,1863,1864,1865,1866,1867,1870,1871,1873,1874,1876,1878,1879,1880,1881,1882,1885,1886,1888,1889,1892,1893,1894,1895,1896,1897,1900,1901,1903,1904,1907,1908,1909,1910,1911,1912,1915,1916,1918,1919,1921,1923,1924,1925,1926,1927,1930,1931,1933,1934,1936,1938,1939,1940,1941,1943,1944,1946,1947,1948,1950,1953,1955,1956,1958,1961,1962,1963,1964,1965,1966,1969,1970,1972,1973,1975,1977,1978,1980,1982,1984,1986,1987,1988,1989,1990,1993,1994,1996,1997,1998,2001,2002,2004,2006,2008,2010,2011,2012,2013,2015,2016,2018,2019,2020,2022,2025,2027,2028,2030,2033,2034,2035,2036,2037,2038,2041,2042,2044,2045,2047,2049,2050,2052,2054,2056,2058,2059,2060,2061,2063,2064,2066,2067,2068,2070,2073,2075,2076,2078,2081,2082,2083,2084,2085,2086,2089,2090,2092,2093,2095,2097,2098,2099,2100,2101,2104,2105,2107,2108,2111,2112,2113,2114,2115,2116,2119,2120,2122,2123,2125,2127,2128,2129,2130,2131,2134,2135,2137,2138,2140,2142,2143,2144,2145,2146,2149,2150,2152,2153,2155,2157,2158,2159,2160,2161,2164,2165,2167,2168,2170,2172,2173,2174,2175,2176,2179,2180,2182,2183,2186,2187,2188,2189,2190,2191,2194,2195,2197,2198,2200,2202,2203,2204,2205,2206,2209,2210,2212,2213,2216,2217,2218,2219,2220,
- 2221,2224,2225,2227,2228,2231,2232,2233,2234,2235,2236,2239,2240,2242,2243,2245,2247,2248,2249,2250,2251,2254,2255,2257,2258,2260,2262,2263,2264,2265,2267,2268,2270,2271,2272,2274,2277,2279,2280,2282,2285,2286,2287,2288,2289,2290,2293,2294,2296,2297,2299,2301,2302,2304,2306,2308,2310,2311,2312,2313,2314,2317,2318,2320,2321,2322,2325,2326,2328,2330,2332,2334,2335,2336,2337,2339,2340,2342,2343,2344,2346,2349,2351,2352,2354,2357,2358,2359,2360,2361,2362,2365,2366,2368,2369,2371,2373,2374,2376,2378,2380,2382,2383,2384,2385,2387,2388,2390,2391,2392,2394,2397,2399,2400,2402,2405,2406,2407,2408,2409,2410,2413,2414,2416,2417,2419,2421,2422,2423,2424,2425,2428,2429,2431,2432,2435,2436,2437,2438,2439,2440,2443,2444,2446,2447,2449,2451,2452,2453,2454,2455,2458,2459,2461,2462,2464,2466,2467,2468,2469,2470,2473,2474,2476,2477,2479,2481,2482,2483,2484,2485,2488,2489,2491,2492,2494,2496,2497,2498,2499,2500,2503,2504,2506,2507,2510,2511,2512,2513,2514,2515,2518,2519,2521,2522,2524,2526,2527,2528,2529,2530,2533,2534,2536,2537,2540,2541,2542,2543,2544,2545,2548,2549,2551,2552,2555,2556,2557,2558,2559,2560,2563,2564,2566,2567,2569,2571,2572,2573,2574,2575,2578,2579,2581,2582,2584,2586,2587,2588,2589,2591,2592,2594,2595,2596,2598,2601,2603,2604,2606,2609,2610,2611,2612,2613,2614,2617,2618,2620,2621,2623,2625,2626,2628,2630,2632,2634,2635,2636,2637,2638,2641,2642,2644,2645,2646,2649,2650,2652,2654,2656,2658,2659,2660,2661,2663,2664,2666,2667,2668,2670,2673,2675,2676,2678,2681,2682,2683,2684,2685,2686,2689,2690,2692,2693,2695,2697,2698,2700,2702,2704,2706,2707,2708,2709,2711,2712,2714,2715,2716,2718,2721,2723,2724,2726,2729,2730,2731,2732,2733,2734,2737,2738,2740,2741,2743,2745,2746,2747,2748,2749,2752,2753,2755,2756,2759,2760,2761,2762,2763,2764,2767,2768,2770,2771,2773,2775,2776,2777,2778,2779,2782,2783,2785,2786,2788,2790,2791,2792,2793,2794,2797,2798,2800,2801,2803,2805,2806,2807,2808,2809,2812,2813,2815,2816,2818,2820,2821,2822,2823,2824,2827,2828,2830,2831,2834,2835,2836,2837,2838,2839,2842,2843,2845,2846,2848,2850,2851,2852,2853,
- 2854,2857,2858,2860,2861,2864,2865,2866,2867,2868,2869,2872,2873,2875,2876,2879,2880,2881,2882,2883,2884,2887,2888,2890,2891,2893,2895,2896,2897,2898,2899,2902,2903,2905,2906,2908,2910,2911,2912,2913,2915,2916,2918,2919,2920,2922,2925,2927,2928,2930,2933,2934,2935,2936,2937,2938,2941,2942,2944,2945,2947,2949,2950,2952,2954,2956,2958,2959,2960,2961,2962,2965,2966,2968,2969,2970,2973,2974,2976,2978,2980,2982,2983,2984,2985,2987,2988,2990,2991,2992,2994,2997,2999,3000,3002,3005,3006,3007,3008,3009,3010,3013,3014,3016,3017,3019,3021,3022,3024,3026,3028,3030,3031,3032,3033,3035,3036,3038,3039,3040,3042,3045,3047,3048,3050,3053,3054,3055,3056,3057,3058,3061,3062,3064,3065,3067,3069,3070,3071,3072,3073,3076,3077,3079,3080,3083,3084,3085,3086,3087,3088,3091,3092,3094,3095,3097,3099,3100,3101,3102,3103,3106,3107,3109,3110,3112,3114,3115,3116,3117,3118,3121,3122,3124,3125,3127,3129,3130,3131,3132,3133,3136,3137,3139,3140,3142,3144,3145,3146,3147,3148,3151,3152,3154,3155,3158,3159,3160,3161,3162,3163,3166,3167,3169,3170,3172,3174,3175,3176,3177,3178,3181,3182,3184,3185,3188,3189,3190,3191,3193,3194,3195,3196,3198,3199,3202,3205,3206,3207,3208,3211,3213,3214,3215,3216,3217,3220,3221,3223,3224,3227,3228,3229,3230,3231,3232,3235,3236,3238,3239,3241,3243,3244,3245,3246,3247,3250,3251,3253,3254,3256,3258,3259,3260,3261,3262,3265,3266,3268,3269,3271,3273,3274,3275,3276,3277,3280,3281,3283,3284,3287,3288,3289,3290,3292,3293,3294,3295,3297,3298,3301,3304,3305,3306,3307,3310,3312,3313,3314,3315,3316,3319,3320,3322,3323,3326,3327,3328,3329,3330,3331,3334,3335,3337,3338,3340,3342,3343,3344,3345,3346,3349,3350,3352,3353,3355,3357,3358,3359,3360,3361,3364,3365,3367,3368,3370,3372,3373,3374,3375,3376,3379,3380,3382,3383,3386,3387,3388,3389,3391,3392,3393,3394,3396,3397,3400,3403,3404,3405,3406,3409,3411,3412,3413,3414,3415,3418,3419,3421,3422,3425,3426,3427,3428,3429,3430,3433,3434,3436,3437,3439,3441,3442,3443,3444,3445,3448,3449,3451,3452,3454,3456,3457,3458,3459,3460,3463,3464,3466,3467,3469,3471,3472,3473,3474,3475,3478,3479,3481,3482,
- 3485,3486,3487,3488,3490,3491,3492,3493,3495,3496,3498,3499,3503,3505,3506,3507,3508,3510,3512,3514,3515,3518,3519,3520,3521,3522,3523,3525,3526,3528,3530,3532,3533,3535,3537,3539,3540,3541,3544,3545,3548,3549,3550,3551,3552,3553,3556,3557,3559,3560,3562,3563,3566,3567,3568,3569,3570,3571,3574,3575,3577,3578,3580,3581,3584,3585,3586,3587,3588,3589,3592,3593,3595,3596,3598,3599,3602,3603,3604,3605,3606,3607,3610,3611,3613,3614,3616,3617,3620,3621,3622,3623,3624,3625,3628,3629,3631,3632,3634,3635,3638,3639,3640,3641,3642,3643,3646,3647,3649,3650,3652,3653,3656,3657,3658,3659,3660,3661,3664,3665,3667,3668,3670,3671,3674,3675,3676,3677,3678,3679,3682,3683,3685,3686,3688,3689,3692,3693,3694,3695,3696,3697,3699,3700,3703,3704,3705,3707,3708,3712,3713,3715,3716,3717,3719,3720,3721,3725,3726,3727,3728,3730,3731,3732,3733,3735,3737,3739,3740,3743,3744,3745,3747,3749,3751,3752,3755,3756,3757,3758,3759,3761,3763,3764,3766,3767,3768,3770,3771,3774,3776,3778,3779,3780,3782,3783,3785,3787,3789,3790,3791,3792,3793,3796,3797,3799,3800,3802,3803,3806,3807,3808,3809,3810,3811,3814,3815,3817,3818,3820,3821,3824,3825,3826,3827,3828,3829,3832,3833,3835,3836,3838,3839,3842,3843,3844,3845,3846,3847,3850,3851,3853,3854,3856,3857,3860,3861,3862,3863,3865,3866,3867,3868,3870,3871,3873,3874,3878,3880,3881,3882,3883,3885,3887,3889,3890,3893,3894,3895,3896,3897,3898,3900,3901,3903,3905,3907,3908,3910,3912,3914,3915,3916,3919,3920,3923,3924,3925,3926,3927,3928,3931,3932,3934,3935,3937,3938,3941,3942,3943,3944,3945,3946,3949,3950,3952,3953,3955,3956,3959,3960,3961,3962,3963,3964,3967,3968,3970,3971,3973,3974,3977,3978,3979,3980,3981,3982,3985,3986,3988,3989,3991,3992,3995,3996,3997,3998,3999,4000,4003,4004,4006,4007,4009,4010,4013,4014,4015,4016,4017,4018,4021,4022,4024,4025,4027,4028,4031,4032,4033,4034,4035,4036,4039,4040,4042,4043,4045,4046,4049,4050,4051,4052,4053,4054,4057,4058,4060,4061,4063,4064,4067,4068,4069,4070,4072,4073,4074,4075,4077,4078,4080,4081,4085,4087,4088,4089,4090,4092,4094,4096,4097,4100,4101,4102,4103,4104,4105,4107,4108,
- 4110,4112,4114,4115,4117,4119,4121,4122,4123,4126,4127,4130,4131,4132,4133,4134,4135,4138,4139,4141,4142,4144,4145,4148,4149,4150,4151,4152,4153,4156,4157,4159,4160,4162,4163,4166,4167,4168,4169,4170,4171,4174,4175,4177,4178,4180,4181,4184,4185,4186,4187,4188,4189,4192,4193,4195,4196,4198,4199,4202,4203,4204,4205,4206,4207,4210,4211,4213,4214,4216,4217,4220,4221,4222,4223,4224,4225,4228,4229,4231,4232,4234,4235,4238,4239,4240,4241,4242,4243,4246,4247,4249,4250,4252,4253,4256,4257,4258,4259,4260,4261,4264,4265,4267,4268,4270,4271,4274,4275,4276,4277,4279,4280,4281,4282,4284,4285,4287,4288,4292,4294,4295,4296,4297,4299,4301,4303,4304,4307,4308,4309,4310,4311,4312,4314,4315,4317,4319,4321,4322,4324,4326,4328,4329,4330,4333,4334,4337,4338,4339,4340,4341,4342,4345,4346,4348,4349,4351,4352,4355,4356,4357,4358,4359,4360,4363,4364,4366,4367,4369,4370,4373,4374,4375,4376,4377,4378,4381,4382,4384,4385,4387,4388,4391,4392,4393,4394,4395,4396,4399,4400,4402,4403,4405,4406,4409,4410,4411,4412,4413,4414,4417,4418,4420,4421,4423,4424,4427,4428,4429,4430,4431,4432,4435,4436,4438,4439,4441,4442,4445,4446,4447,4448,4449,4450,4453,4454,4456,4457,4459,4460,4463,4464,4465,4466,4467,4468,4471,4472,4474,4475,4477,4478,4481,4482,4483,4484,4486,4487,4488,4489,4491,4492,4494,4495,4499,4501,4502,4503,4504,4506,4508,4510,4511,4514,4515,4516,4517,4518,4519,4521,4522,4524,4526,4528,4529,4531,4533,4535,4536,4537,4540,4541,4544,4545,4546,4547,4548,4549,4552,4553,4555,4556,4558,4559,4562,4563,4564,4565,4566,4567,4570,4571,4573,4574,4576,4577,4580,4581,4582,4583,4584,4585,4588,4589,4591,4592,4594,4595,4598,4599,4600,4601,4602,4603,4606,4607,4609,4610,4612,4613,4616,4617,4618,4619,4620,4621,4624,4625,4627,4628,4630,4631,4634,4635,4636,4637,4638,4639,4642,4643,4645,4646,4648,4649,4652,4653,4654,4655,4656,4657,4660,4661,4663,4664,4666,4667,4670,4671,4672,4673,4674,4675,4678,4679,4681,4682,4684,4685,4688,4689,4690,4691,4692,4693,4695,4696,4699,4700,4701,4703,4704,4708,4709,4711,4712,4713,4715,4716,4717,4721,4722,4723,4724,4726,4727,4728,4729,4731,4733,
- 4735,4736,4739,4740,4741,4743,4745,4747,4748,4751,4752,4753,4754,4755,4757,4759,4760,4762,4763,4764,4766,4767,4770,4772,4774,4775,4776,4778,4779,4781,4783,4785,4786,4787,4788,4789,4792,4793,4795,4796,4798,4799,4802,4803,4804,4805,4806,4807,4810,4811,4813,4814,4816,4817,4820,4821,4822,4823,4824,4825,4828,4829,4831,4832,4834,4835,4838,4839,4840,4841,4842,4843,4846,4847,4849,4850,4852,4853,4856,4857,4858,4859,4860,4861,4863,4864,4867,4868,4869,4871,4872,4876,4877,4879,4880,4881,4883,4884,4885,4889,4890,4891,4892,4894,4895,4896,4897,4899,4901,4903,4904,4907,4908,4909,4911,4913,4915,4916,4919,4920,4921,4922,4923,4925,4927,4928,4930,4931,4932,4934,4935,4938,4940,4942,4943,4944,4946,4947,4949,4951,4953,4954,4955,4956,4957,4960,4961,4963,4964,4966,4967,4970,4971,4972,4973,4974,4975,4978,4979,4981,4982,4984,4985,4988,4989,4990,4991,4992,4993,4996,4997,4999,5000,5002,5003,5006,5007,5008,5009,5010,5011,5014,5015,5017,5018,5020,5021,5024,5025,5026,5027,5028,5029,5031,5032,5035,5036,5037,5039,5040,5044,5045,5047,5048,5049,5051,5052,5053,5057,5058,5059,5060,5062,5063,5064,5065,5067,5069,5071,5072,5075,5076,5077,5079,5081,5083,5084,5087,5088,5089,5090,5091,5093,5095,5096,5098,5099,5100,5102,5103,5106,5108,5110,5111,5112,5114,5115,5117,5119,5121,5122,5123,5124,5125,5128,5129,5131,5132,5134,5135,5138,5139,5140,5141,5142,5143,5146,5147,5149,5150,5152,5153,5156,5157,5158,5159,5160,5161,5164,5165,5167,5168,5170,5171,5174,5175,5176,5177,5178,5179,5182,5183,5185,5186,5188,5189,5192
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Normals: *15579 {
- a: -0.984099447727203,-0.173201501369476,-0.0393639765679836,-0.99277251958847,-0.110308051109314,0.0472748801112175,-0.941357553005219,-0.101980395615101,-0.321630477905273,-0.958611309528351,-0.133576974272728,0.251439034938812,-0.99277251958847,-0.110308051109314,0.0472748801112175,-0.984099447727203,-0.173201501369476,-0.0393639765679836,-0.99277251958847,-0.110308051109314,0.0472748801112175,-0.9520183801651,-0.212433844804764,-0.220301762223244,-0.941357553005219,-0.101980395615101,-0.321630477905273,-0.958611309528351,-0.133576974272728,0.251439034938812,-0.951106190681458,-0.0786038190126419,0.298694521188736,-0.99277251958847,-0.110308051109314,0.0472748801112175,-0.980098307132721,-0.0313631445169449,0.196019649505615,-0.99277251958847,-0.110308051109314,0.0472748801112175,-0.951106190681458,-0.0786038190126419,0.298694521188736,-0.951106190681458,-0.0786038190126419,0.298694521188736,-0.948997735977173,-0.0313718244433403,0.313718259334564,-0.980098307132721,-0.0313631445169449,0.196019649505615,-0.9520183801651,-0.212433844804764,-0.220301762223244,-0.99277251958847,-0.110308051109314,0.0472748801112175,-0.996515274047852,-0.0549260377883911,-0.0627726167440414,-0.980098307132721,-0.0313631445169449,0.196019649505615,-0.996515274047852,-0.0549260377883911,-0.0627726167440414,-0.99277251958847,-0.110308051109314,0.0472748801112175,-0.996515274047852,-0.0549260377883911,-0.0627726167440414,-0.975622236728668,-0.0550754480063915,-0.212433889508247,-0.9520183801651,-0.212433844804764,-0.220301762223244,-0.962931215763092,-0.0947145447134972,-0.252572119235992,-0.9520183801651,-0.212433844804764,-0.220301762223244,-0.975622236728668,-0.0550754480063915,-0.212433889508247,-0.975622236728668,-0.0550754480063915,-0.212433889508247,-0.912594020366669,0.0786719024181366,-0.401226699352264,-0.962931215763092,-0.0947145447134972,-0.252572119235992,-0.912594020366669,0.0786719024181366,-0.401226699352264,-0.975622236728668,-0.0550754480063915,-0.212433889508247,-0.98869913816452,0.015693636611104,-0.149089559912682,
- -0.975622236728668,-0.0550754480063915,-0.212433889508247,-0.996515274047852,-0.0549260377883911,-0.0627726167440414,-0.98869913816452,0.015693636611104,-0.149089559912682,-0.98869913816452,0.015693636611104,-0.149089559912682,-0.922289669513702,-0.0788281783461571,-0.378375262022018,-0.912594020366669,0.0786719024181366,-0.401226699352264,-0.980098307132721,-0.0313631445169449,0.196019649505615,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.996515274047852,-0.0549260377883911,-0.0627726167440414,-0.98869913816452,0.015693636611104,-0.149089559912682,-0.996515274047852,-0.0549260377883911,-0.0627726167440414,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.988520741462708,-0.015816330909729,0.150255158543587,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.980098307132721,-0.0313631445169449,0.196019649505615,-0.988520741462708,-0.015816330909729,0.150255158543587,-0.980098307132721,-0.0313631445169449,0.196019649505615,-0.948997735977173,-0.0313718244433403,0.313718259334564,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.999597251415253,-0.0236125327646732,-0.0157416891306639,-0.98869913816452,0.015693636611104,-0.149089559912682,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.988520741462708,-0.015816330909729,0.150255158543587,-0.999597251415253,-0.0236125327646732,-0.0157416891306639,-0.948997735977173,-0.0313718244433403,0.313718259334564,-0.985689163208008,0.0315420515835285,0.165595769882202,-0.988520741462708,-0.015816330909729,0.150255158543587,-0.999597251415253,-0.0236125327646732,-0.0157416891306639,-0.988520741462708,-0.015816330909729,0.150255158543587,-0.985689163208008,0.0315420515835285,0.165595769882202,-0.985689163208008,0.0315420515835285,0.165595769882202,-0.948997735977173,-0.0313718244433403,0.313718259334564,-0.954384505748749,0.0630998015403748,0.291836589574814,-0.954384505748749,0.0630998015403748,0.291836589574814,-0.978320896625519,0.157793685793877,0.134124636650085,-0.985689163208008,0.0315420515835285,0.165595769882202,
- -0.978320896625519,0.157793685793877,0.134124636650085,-0.999597251415253,-0.0236125327646732,-0.0157416891306639,-0.985689163208008,0.0315420515835285,0.165595769882202,-0.978320896625519,0.157793685793877,0.134124636650085,-0.954384505748749,0.0630998015403748,0.291836589574814,-0.958966612815857,0.20436991751194,0.196509540081024,-0.958966612815857,0.20436991751194,0.196509540081024,-0.951664984226227,0.306734979152679,-0.0157299991697073,-0.978320896625519,0.157793685793877,0.134124636650085,-0.97710520029068,0.212756782770157,4.72414957753202e-017,-0.999597251415253,-0.0236125327646732,-0.0157416891306639,-0.978320896625519,0.157793685793877,0.134124636650085,-0.951664984226227,0.306734979152679,-0.0157299991697073,-0.97710520029068,0.212756782770157,4.72414957753202e-017,-0.978320896625519,0.157793685793877,0.134124636650085,-0.951664984226227,0.306734979152679,-0.0157299991697073,-0.985842406749725,0.126187831163406,-0.11041434854269,-0.97710520029068,0.212756782770157,4.72414957753202e-017,-0.985842406749725,0.126187831163406,-0.11041434854269,-0.999597251415253,-0.0236125327646732,-0.0157416891306639,-0.97710520029068,0.212756782770157,4.72414957753202e-017,-0.985842406749725,0.126187831163406,-0.11041434854269,-0.951664984226227,0.306734979152679,-0.0157299991697073,-0.960421562194824,0.18893538415432,-0.204679980874062,-0.98869913816452,0.015693636611104,-0.149089559912682,-0.999597251415253,-0.0236125327646732,-0.0157416891306639,-0.993605554103851,-0.0473145507276058,-0.102514855563641,-0.985842406749725,0.126187831163406,-0.11041434854269,-0.993605554103851,-0.0473145507276058,-0.102514855563641,-0.999597251415253,-0.0236125327646732,-0.0157416891306639,-0.922289669513702,-0.0788281783461571,-0.378375262022018,-0.98869913816452,0.015693636611104,-0.149089559912682,-0.993605554103851,-0.0473145507276058,-0.102514855563641,-0.960421562194824,0.18893538415432,-0.204679980874062,-0.965723752975464,-0.0157028250396252,-0.259096622467041,-0.985842406749725,0.126187831163406,-0.11041434854269,-0.993605554103851,-0.0473145507276058,-0.102514855563641,
- -0.985842406749725,0.126187831163406,-0.11041434854269,-0.965723752975464,-0.0157028250396252,-0.259096622467041,-0.993605554103851,-0.0473145507276058,-0.102514855563641,-0.965723752975464,-0.0157028250396252,-0.259096622467041,-0.922289669513702,-0.0788281783461571,-0.378375262022018,-0.965723752975464,-0.0157028250396252,-0.259096622467041,-0.960421562194824,0.18893538415432,-0.204679980874062,-0.952608287334442,-0.0551095679402351,-0.299166232347488,-0.952608287334442,-0.0551095679402351,-0.299166232347488,-0.922289669513702,-0.0788281783461571,-0.378375262022018,-0.965723752975464,-0.0157028250396252,-0.259096622467041,-0.941357553005219,-0.321630477905273,-0.101980395615101,-0.956928968429565,-0.29021617770195,0.00784367974847555,-0.928989887237549,-0.149583116173744,-0.338530212640762,-0.906186282634735,-0.378234267234802,0.189117133617401,-0.956928968429565,-0.29021617770195,0.00784367974847555,-0.941357553005219,-0.321630477905273,-0.101980395615101,-0.956928968429565,-0.29021617770195,0.00784367974847555,-0.915688037872314,-0.284179031848907,-0.284179031848907,-0.928989887237549,-0.149583116173744,-0.338530212640762,-0.906186282634735,-0.378234267234802,0.189117133617401,-0.906383275985718,-0.338908523321152,0.252211004495621,-0.956928968429565,-0.29021617770195,0.00784367974847555,-0.950255274772644,-0.25916051864624,0.172773689031601,-0.956928968429565,-0.29021617770195,0.00784367974847555,-0.906383275985718,-0.338908523321152,0.252211004495621,-0.906383275985718,-0.338908523321152,0.252211004495621,-0.911494612693787,-0.298593074083328,0.282877624034882,-0.950255274772644,-0.25916051864624,0.172773689031601,-0.915688037872314,-0.284179031848907,-0.284179031848907,-0.956928968429565,-0.29021617770195,0.00784367974847555,-0.975682556629181,-0.204578593373299,-0.078684076666832,-0.950255274772644,-0.25916051864624,0.172773689031601,-0.975682556629181,-0.204578593373299,-0.078684076666832,-0.956928968429565,-0.29021617770195,0.00784367974847555,-0.975682556629181,-0.204578593373299,-0.078684076666832,-0.964735925197601,-0.142338067293167,-0.221414789557457,
- -0.915688037872314,-0.284179031848907,-0.284179031848907,-0.948772251605988,-0.166035130620003,-0.268818795681,-0.915688037872314,-0.284179031848907,-0.284179031848907,-0.964735925197601,-0.142338067293167,-0.221414789557457,-0.964735925197601,-0.142338067293167,-0.221414789557457,-0.9343181848526,0.0471084825694561,-0.353313624858856,-0.948772251605988,-0.166035130620003,-0.268818795681,-0.9343181848526,0.0471084825694561,-0.353313624858856,-0.964735925197601,-0.142338067293167,-0.221414789557457,-0.984832227230072,-0.110301204025745,-0.133937180042267,-0.964735925197601,-0.142338067293167,-0.221414789557457,-0.975682556629181,-0.204578593373299,-0.078684076666832,-0.984832227230072,-0.110301204025745,-0.133937180042267,-0.984832227230072,-0.110301204025745,-0.133937180042267,-0.916316330432892,-0.102690622210503,-0.387064665555954,-0.9343181848526,0.0471084825694561,-0.353313624858856,-0.950255274772644,-0.25916051864624,0.172773689031601,-0.987440645694733,-0.157990500330925,-3.50809382278883e-017,-0.975682556629181,-0.204578593373299,-0.078684076666832,-0.984832227230072,-0.110301204025745,-0.133937180042267,-0.975682556629181,-0.204578593373299,-0.078684076666832,-0.987440645694733,-0.157990500330925,-3.50809382278883e-017,-0.96125590801239,-0.236374408006668,0.141824632883072,-0.987440645694733,-0.157990500330925,-3.50809382278883e-017,-0.950255274772644,-0.25916051864624,0.172773689031601,-0.96125590801239,-0.236374408006668,0.141824632883072,-0.950255274772644,-0.25916051864624,0.172773689031601,-0.911494612693787,-0.298593074083328,0.282877624034882,-0.987440645694733,-0.157990500330925,-3.50809382278883e-017,-0.981789767742157,-0.188503637909889,-0.0235629547387362,-0.984832227230072,-0.110301204025745,-0.133937180042267,-0.987440645694733,-0.157990500330925,-3.50809382278883e-017,-0.96125590801239,-0.236374408006668,0.141824632883072,-0.981789767742157,-0.188503637909889,-0.0235629547387362,-0.911494612693787,-0.298593074083328,0.282877624034882,-0.966528534889221,-0.196448892354965,0.165017053484917,-0.96125590801239,-0.236374408006668,0.141824632883072,
- -0.981789767742157,-0.188503637909889,-0.0235629547387362,-0.96125590801239,-0.236374408006668,0.141824632883072,-0.966528534889221,-0.196448892354965,0.165017053484917,-0.966528534889221,-0.196448892354965,0.165017053484917,-0.911494612693787,-0.298593074083328,0.282877624034882,-0.934779226779938,-0.204237475991249,0.290645658969879,-0.934779226779938,-0.204237475991249,0.290645658969879,-0.981033563613892,-0.0706344097852707,0.180510178208351,-0.966528534889221,-0.196448892354965,0.165017053484917,-0.981033563613892,-0.0706344097852707,0.180510178208351,-0.981789767742157,-0.188503637909889,-0.0235629547387362,-0.966528534889221,-0.196448892354965,0.165017053484917,-0.981033563613892,-0.0706344097852707,0.180510178208351,-0.934779226779938,-0.204237475991249,0.290645658969879,-0.967036128044128,-0.039310410618782,0.251586616039276,-0.967036128044128,-0.039310410618782,0.251586616039276,-0.988334119319916,0.125502735376358,0.0862831398844719,-0.981033563613892,-0.0706344097852707,0.180510178208351,-0.997006475925446,0.0314017795026302,0.07065399736166,-0.981789767742157,-0.188503637909889,-0.0235629547387362,-0.981033563613892,-0.0706344097852707,0.180510178208351,-0.988334119319916,0.125502735376358,0.0862831398844719,-0.997006475925446,0.0314017795026302,0.07065399736166,-0.981033563613892,-0.0706344097852707,0.180510178208351,-0.988334119319916,0.125502735376358,0.0862831398844719,-0.998361051082611,-0.0157222207635641,-0.0550277717411518,-0.997006475925446,0.0314017795026302,0.07065399736166,-0.998361051082611,-0.0157222207635641,-0.0550277717411518,-0.981789767742157,-0.188503637909889,-0.0235629547387362,-0.997006475925446,0.0314017795026302,0.07065399736166,-0.998361051082611,-0.0157222207635641,-0.0550277717411518,-0.988334119319916,0.125502735376358,0.0862831398844719,-0.988973200321198,0.0784899368882179,-0.125583902001381,-0.984832227230072,-0.110301204025745,-0.133937180042267,-0.981789767742157,-0.188503637909889,-0.0235629547387362,-0.977226555347443,-0.181259766221046,-0.110332027077675,-0.998361051082611,-0.0157222207635641,-0.0550277717411518,
- -0.977226555347443,-0.181259766221046,-0.110332027077675,-0.981789767742157,-0.188503637909889,-0.0235629547387362,-0.916316330432892,-0.102690622210503,-0.387064665555954,-0.984832227230072,-0.110301204025745,-0.133937180042267,-0.977226555347443,-0.181259766221046,-0.110332027077675,-0.988973200321198,0.0784899368882179,-0.125583902001381,-0.96482640504837,-0.0949009582400322,-0.245160803198814,-0.998361051082611,-0.0157222207635641,-0.0550277717411518,-0.977226555347443,-0.181259766221046,-0.110332027077675,-0.998361051082611,-0.0157222207635641,-0.0550277717411518,-0.96482640504837,-0.0949009582400322,-0.245160803198814,-0.977226555347443,-0.181259766221046,-0.110332027077675,-0.96482640504837,-0.0949009582400322,-0.245160803198814,-0.916316330432892,-0.102690622210503,-0.387064665555954,-0.96482640504837,-0.0949009582400322,-0.245160803198814,-0.988973200321198,0.0784899368882179,-0.125583902001381,-0.946644306182861,-0.118330538272858,-0.299770683050156,-0.946644306182861,-0.118330538272858,-0.299770683050156,-0.916316330432892,-0.102690622210503,-0.387064665555954,-0.96482640504837,-0.0949009582400322,-0.245160803198814,-0.983764111995697,-0.173142492771149,0.0472206771373749,-0.992988288402557,-0.070927731692791,0.0945703089237213,-0.942750871181488,-0.243543967604637,-0.227831438183784,-0.95908510684967,0.00786135345697403,0.283008694648743,-0.992988288402557,-0.070927731692791,0.0945703089237213,-0.983764111995697,-0.173142492771149,0.0472206771373749,-0.992988288402557,-0.070927731692791,0.0945703089237213,-0.952696859836578,-0.291320532560349,-0.0866088047623634,-0.942750871181488,-0.243543967604637,-0.227831438183784,-0.95908510684967,0.00786135345697403,0.283008694648743,-0.951106190681458,0.0786038190126419,0.298694521188736,-0.992988288402557,-0.070927731692791,0.0945703089237213,-0.981033563613892,0.0706344097852707,0.180510178208351,-0.992988288402557,-0.070927731692791,0.0945703089237213,-0.951106190681458,0.0786038190126419,0.298694521188736,-0.951106190681458,0.0786038190126419,0.298694521188736,
- -0.949903845787048,0.13345755636692,0.28261598944664,-0.981033563613892,0.0706344097852707,0.180510178208351,-0.952696859836578,-0.291320532560349,-0.0866088047623634,-0.992988288402557,-0.070927731692791,0.0945703089237213,-0.995994210243225,-0.0862672179937363,-0.0235274210572243,-0.981033563613892,0.0706344097852707,0.180510178208351,-0.995994210243225,-0.0862672179937363,-0.0235274210572243,-0.992988288402557,-0.070927731692791,0.0945703089237213,-0.995994210243225,-0.0862672179937363,-0.0235274210572243,-0.974958479404449,-0.157251358032227,-0.157251358032227,-0.952696859836578,-0.291320532560349,-0.0866088047623634,-0.961584270000458,-0.212809637188911,-0.173400446772575,-0.952696859836578,-0.291320532560349,-0.0866088047623634,-0.974958479404449,-0.157251358032227,-0.157251358032227,-0.974958479404449,-0.157251358032227,-0.157251358032227,-0.910118877887726,-0.133379489183426,-0.392292618751526,-0.961584270000458,-0.212809637188911,-0.173400446772575,-0.910118877887726,-0.133379489183426,-0.392292618751526,-0.974958479404449,-0.157251358032227,-0.157251358032227,-0.989064633846283,-0.0627977550029755,-0.133445218205452,-0.974958479404449,-0.157251358032227,-0.157251358032227,-0.995994210243225,-0.0862672179937363,-0.0235274210572243,-0.989064633846283,-0.0627977550029755,-0.133445218205452,-0.989064633846283,-0.0627977550029755,-0.133445218205452,-0.920746207237244,-0.259697645902634,-0.291176170110703,-0.910118877887726,-0.133379489183426,-0.392292618751526,-0.981033563613892,0.0706344097852707,0.180510178208351,-0.999845147132874,0.00787279661744833,-0.0157455932348967,-0.995994210243225,-0.0862672179937363,-0.0235274210572243,-0.989064633846283,-0.0627977550029755,-0.133445218205452,-0.995994210243225,-0.0862672179937363,-0.0235274210572243,-0.999845147132874,0.00787279661744833,-0.0157455932348967,-0.987810552120209,0.0632198750972748,0.142244711518288,-0.999845147132874,0.00787279661744833,-0.0157455932348967,-0.981033563613892,0.0706344097852707,0.180510178208351,-0.987810552120209,0.0632198750972748,0.142244711518288,
- -0.981033563613892,0.0706344097852707,0.180510178208351,-0.949903845787048,0.13345755636692,0.28261598944664,-0.999845147132874,0.00787279661744833,-0.0157455932348967,-0.999504387378693,-0.0314804539084435,-6.99006495096098e-018,-0.989064633846283,-0.0627977550029755,-0.133445218205452,-0.999845147132874,0.00787279661744833,-0.0157455932348967,-0.987810552120209,0.0632198750972748,0.142244711518288,-0.999504387378693,-0.0314804539084435,-6.99006495096098e-018,-0.949903845787048,0.13345755636692,0.28261598944664,-0.985842406749725,0.11041434854269,0.126187831163406,-0.987810552120209,0.0632198750972748,0.142244711518288,-0.999504387378693,-0.0314804539084435,-6.99006495096098e-018,-0.987810552120209,0.0632198750972748,0.142244711518288,-0.985842406749725,0.11041434854269,0.126187831163406,-0.985842406749725,0.11041434854269,0.126187831163406,-0.949903845787048,0.13345755636692,0.28261598944664,-0.953583955764771,0.204902336001396,0.22066405415535,-0.953583955764771,0.204902336001396,0.22066405415535,-0.97795569896698,0.205055221915245,0.0394336953759193,-0.985842406749725,0.11041434854269,0.126187831163406,-0.97795569896698,0.205055221915245,0.0394336953759193,-0.999504387378693,-0.0314804539084435,-6.99006495096098e-018,-0.985842406749725,0.11041434854269,0.126187831163406,-0.97795569896698,0.205055221915245,0.0394336953759193,-0.953583955764771,0.204902336001396,0.22066405415535,-0.959322392940521,0.275215417146683,0.0629063844680786,-0.959322392940521,0.275215417146683,0.0629063844680786,-0.951517939567566,0.25950488448143,-0.165139466524124,-0.97795569896698,0.205055221915245,0.0394336953759193,-0.977226555347443,0.181259766221046,-0.110332027077675,-0.999504387378693,-0.0314804539084435,-6.99006495096098e-018,-0.97795569896698,0.205055221915245,0.0394336953759193,-0.951517939567566,0.25950488448143,-0.165139466524124,-0.977226555347443,0.181259766221046,-0.110332027077675,-0.97795569896698,0.205055221915245,0.0394336953759193,-0.951517939567566,0.25950488448143,-0.165139466524124,-0.985934436321259,0.0552123263478279,-0.157749503850937,
- -0.977226555347443,0.181259766221046,-0.110332027077675,-0.985934436321259,0.0552123263478279,-0.157749503850937,-0.999504387378693,-0.0314804539084435,-6.99006495096098e-018,-0.977226555347443,0.181259766221046,-0.110332027077675,-0.985934436321259,0.0552123263478279,-0.157749503850937,-0.951517939567566,0.25950488448143,-0.165139466524124,-0.959322392940521,0.0629063844680786,-0.275215417146683,-0.989064633846283,-0.0627977550029755,-0.133445218205452,-0.999504387378693,-0.0314804539084435,-6.99006495096098e-018,-0.994224011898041,-0.0867973417043686,-0.0631253346800804,-0.985934436321259,0.0552123263478279,-0.157749503850937,-0.994224011898041,-0.0867973417043686,-0.0631253346800804,-0.999504387378693,-0.0314804539084435,-6.99006495096098e-018,-0.920746207237244,-0.259697645902634,-0.291176170110703,-0.989064633846283,-0.0627977550029755,-0.133445218205452,-0.994224011898041,-0.0867973417043686,-0.0631253346800804,-0.959322392940521,0.0629063844680786,-0.275215417146683,-0.966916620731354,-0.141499981284142,-0.212249979376793,-0.985934436321259,0.0552123263478279,-0.157749503850937,-0.994224011898041,-0.0867973417043686,-0.0631253346800804,-0.985934436321259,0.0552123263478279,-0.157749503850937,-0.966916620731354,-0.141499981284142,-0.212249979376793,-0.994224011898041,-0.0867973417043686,-0.0631253346800804,-0.966916620731354,-0.141499981284142,-0.212249979376793,-0.920746207237244,-0.259697645902634,-0.291176170110703,-0.966916620731354,-0.141499981284142,-0.212249979376793,-0.959322392940521,0.0629063844680786,-0.275215417146683,-0.953406453132629,-0.196984797716141,-0.228502362966537,-0.953406453132629,-0.196984797716141,-0.228502362966537,-0.920746207237244,-0.259697645902634,-0.291176170110703,-0.966916620731354,-0.141499981284142,-0.212249979376793,-0.983124971389771,-0.0786499977111816,-0.165164992213249,-0.993204295635223,-0.102473460137844,-0.0551780164241791,-0.942082524299622,0.180565804243088,-0.2826247215271,-0.957223474979401,-0.282459378242493,0.0627687498927116,-0.993204295635223,-0.102473460137844,-0.0551780164241791,
- -0.983124971389771,-0.0786499977111816,-0.165164992213249,-0.993204295635223,-0.102473460137844,-0.0551780164241791,-0.951311945915222,0.0314483270049095,-0.306621193885803,-0.942082524299622,0.180565804243088,-0.2826247215271,-0.957223474979401,-0.282459378242493,0.0627687498927116,-0.951988935470581,-0.275368690490723,0.13375049829483,-0.993204295635223,-0.102473460137844,-0.0551780164241791,-0.981033563613892,-0.164813637733459,0.102027483284473,-0.993204295635223,-0.102473460137844,-0.0551780164241791,-0.951988935470581,-0.275368690490723,0.13375049829483,-0.951988935470581,-0.275368690490723,0.13375049829483,-0.948939442634583,-0.25880166888237,0.180376917123795,-0.981033563613892,-0.164813637733459,0.102027483284473,-0.951311945915222,0.0314483270049095,-0.306621193885803,-0.993204295635223,-0.102473460137844,-0.0551780164241791,-0.996147394180298,0.0156873594969511,-0.0862804874777794,-0.981033563613892,-0.164813637733459,0.102027483284473,-0.996147394180298,0.0156873594969511,-0.0862804874777794,-0.993204295635223,-0.102473460137844,-0.0551780164241791,-0.996147394180298,0.0156873594969511,-0.0862804874777794,-0.974416494369507,0.133589342236519,-0.180738538503647,-0.951311945915222,0.0314483270049095,-0.306621193885803,-0.962302029132843,0.134091258049011,-0.236631661653519,-0.951311945915222,0.0314483270049095,-0.306621193885803,-0.974416494369507,0.133589342236519,-0.180738538503647,-0.974416494369507,0.133589342236519,-0.180738538503647,-0.910034894943237,0.360875904560089,-0.203973323106766,-0.962302029132843,0.134091258049011,-0.236631661653519,-0.910034894943237,0.360875904560089,-0.203973323106766,-0.974416494369507,0.133589342236519,-0.180738538503647,-0.988334119319916,0.125502735376358,-0.0862831398844719,-0.974416494369507,0.133589342236519,-0.180738538503647,-0.996147394180298,0.0156873594969511,-0.0862804874777794,-0.988334119319916,0.125502735376358,-0.0862831398844719,-0.988334119319916,0.125502735376358,-0.0862831398844719,-0.920062720775604,0.243777304887772,-0.306687563657761,-0.910034894943237,0.360875904560089,-0.203973323106766,
- -0.981033563613892,-0.164813637733459,0.102027483284473,-0.999845147132874,0.0157455932348967,0.00787279661744833,-0.996147394180298,0.0156873594969511,-0.0862804874777794,-0.988334119319916,0.125502735376358,-0.0862831398844719,-0.996147394180298,0.0156873594969511,-0.0862804874777794,-0.999845147132874,0.0157455932348967,0.00787279661744833,-0.988150000572205,-0.126483201980591,0.0869572013616562,-0.999845147132874,0.0157455932348967,0.00787279661744833,-0.981033563613892,-0.164813637733459,0.102027483284473,-0.988150000572205,-0.126483201980591,0.0869572013616562,-0.981033563613892,-0.164813637733459,0.102027483284473,-0.948939442634583,-0.25880166888237,0.180376917123795,-0.999845147132874,0.0157455932348967,0.00787279661744833,-0.999690115451813,-0.00787157565355301,-0.023614726960659,-0.988334119319916,0.125502735376358,-0.0862831398844719,-0.999845147132874,0.0157455932348967,0.00787279661744833,-0.988150000572205,-0.126483201980591,0.0869572013616562,-0.999690115451813,-0.00787157565355301,-0.023614726960659,-0.948939442634583,-0.25880166888237,0.180376917123795,-0.985658526420593,-0.10250848531723,0.13404954969883,-0.988150000572205,-0.126483201980591,0.0869572013616562,-0.999690115451813,-0.00787157565355301,-0.023614726960659,-0.988150000572205,-0.126483201980591,0.0869572013616562,-0.985658526420593,-0.10250848531723,0.13404954969883,-0.985658526420593,-0.10250848531723,0.13404954969883,-0.948939442634583,-0.25880166888237,0.180376917123795,-0.954503297805786,-0.181434512138367,0.236653715372086,-0.954503297805786,-0.181434512138367,0.236653715372086,-0.978716969490051,-4.55668454641494e-017,0.205214828252792,-0.985658526420593,-0.10250848531723,0.13404954969883,-0.978716969490051,-4.55668454641494e-017,0.205214828252792,-0.999690115451813,-0.00787157565355301,-0.023614726960659,-0.985658526420593,-0.10250848531723,0.13404954969883,-0.978716969490051,-4.55668454641494e-017,0.205214828252792,-0.954503297805786,-0.181434512138367,0.236653715372086,-0.95899623632431,-0.0157212484627962,0.282982468605042,-0.95899623632431,-0.0157212484627962,0.282982468605042,
- -0.9520183801651,0.212433844804764,0.220301762223244,-0.978716969490051,-4.55668454641494e-017,0.205214828252792,-0.977257013320923,0.141859874129295,0.157622098922729,-0.999690115451813,-0.00787157565355301,-0.023614726960659,-0.978716969490051,-4.55668454641494e-017,0.205214828252792,-0.9520183801651,0.212433844804764,0.220301762223244,-0.977257013320923,0.141859874129295,0.157622098922729,-0.978716969490051,-4.55668454641494e-017,0.205214828252792,-0.9520183801651,0.212433844804764,0.220301762223244,-0.985689163208008,0.165595769882202,0.0315420515835285,-0.977257013320923,0.141859874129295,0.157622098922729,-0.985689163208008,0.165595769882202,0.0315420515835285,-0.999690115451813,-0.00787157565355301,-0.023614726960659,-0.977257013320923,0.141859874129295,0.157622098922729,-0.985689163208008,0.165595769882202,0.0315420515835285,-0.9520183801651,0.212433844804764,0.220301762223244,-0.95899623632431,0.282982468605042,0.0157212484627962,-0.988334119319916,0.125502735376358,-0.0862831398844719,-0.999690115451813,-0.00787157565355301,-0.023614726960659,-0.994378924369812,0.0473513789474964,-0.0947027578949928,-0.985689163208008,0.165595769882202,0.0315420515835285,-0.994378924369812,0.0473513789474964,-0.0947027578949928,-0.999690115451813,-0.00787157565355301,-0.023614726960659,-0.920062720775604,0.243777304887772,-0.306687563657761,-0.988334119319916,0.125502735376358,-0.0862831398844719,-0.994378924369812,0.0473513789474964,-0.0947027578949928,-0.95899623632431,0.282982468605042,0.0157212484627962,-0.965366780757904,0.188364237546921,-0.180515736341476,-0.985689163208008,0.165595769882202,0.0315420515835285,-0.994378924369812,0.0473513789474964,-0.0947027578949928,-0.985689163208008,0.165595769882202,0.0315420515835285,-0.965366780757904,0.188364237546921,-0.180515736341476,-0.994378924369812,0.0473513789474964,-0.0947027578949928,-0.965366780757904,0.188364237546921,-0.180515736341476,-0.920062720775604,0.243777304887772,-0.306687563657761,-0.965366780757904,0.188364237546921,-0.180515736341476,-0.95899623632431,0.282982468605042,0.0157212484627962,
- -0.95311051607132,0.189046710729599,-0.236308395862579,-0.95311051607132,0.189046710729599,-0.236308395862579,-0.920062720775604,0.243777304887772,-0.306687563657761,-0.965366780757904,0.188364237546921,-0.180515736341476,-0.992218255996704,0.118121221661568,-0.0393737405538559,-0.973365187644959,0.141294941306114,0.180543541908264,-0.980244815349579,0.197630003094673,-0.00790520012378693,-0.968113958835602,0.173158600926399,-0.181029438972473,-0.992218255996704,0.118121221661568,-0.0393737405538559,-0.980244815349579,0.197630003094673,-0.00790520012378693,-0.973365187644959,0.141294941306114,0.180543541908264,-0.992218255996704,0.118121221661568,-0.0393737405538559,-0.986149191856384,0.0710027366876602,0.149894669651985,-0.951664984226227,-0.0157299991697073,0.306734979152679,-0.973365187644959,0.141294941306114,0.180543541908264,-0.986149191856384,0.0710027366876602,0.149894669651985,-0.992218255996704,0.118121221661568,-0.0393737405538559,-0.968113958835602,0.173158600926399,-0.181029438972473,-0.989918947219849,0.0785649940371513,-0.117847494781017,-0.942779958248138,0.188555985689163,-0.274977475404739,-0.989918947219849,0.0785649940371513,-0.117847494781017,-0.968113958835602,0.173158600926399,-0.181029438972473,-0.986149191856384,0.0710027366876602,0.149894669651985,-0.990744948387146,-0.0235891658812761,0.133671939373016,-0.951664984226227,-0.0157299991697073,0.306734979152679,-0.955097913742065,-0.19733427464962,0.221014395356178,-0.951664984226227,-0.0157299991697073,0.306734979152679,-0.990744948387146,-0.0235891658812761,0.133671939373016,-0.986149191856384,0.0710027366876602,0.149894669651985,-0.992218255996704,0.118121221661568,-0.0393737405538559,-0.999969005584717,1.74832852910177e-018,-0.00787377171218395,-0.990744948387146,-0.0235891658812761,0.133671939373016,-0.986149191856384,0.0710027366876602,0.149894669651985,-0.999969005584717,1.74832852910177e-018,-0.00787377171218395,-0.992218255996704,0.118121221661568,-0.0393737405538559,-0.989918947219849,0.0785649940371513,-0.117847494781017,-0.999969005584717,1.74832852910177e-018,-0.00787377171218395,
- -0.955097913742065,-0.19733427464962,0.221014395356178,-0.990744948387146,-0.0235891658812761,0.133671939373016,-0.983764171600342,-0.141662031412125,0.110181584954262,-0.983764171600342,-0.141662031412125,0.110181584954262,-0.990744948387146,-0.0235891658812761,0.133671939373016,-0.999969005584717,1.74832852910177e-018,-0.00787377171218395,-0.956693589687347,-0.258777767419815,0.133309751749039,-0.955097913742065,-0.19733427464962,0.221014395356178,-0.983764171600342,-0.141662031412125,0.110181584954262,-0.999969005584717,1.74832852910177e-018,-0.00787377171218395,-0.989918947219849,0.0785649940371513,-0.117847494781017,-0.995091795921326,0.047385323792696,-0.0868730992078781,-0.989918947219849,0.0785649940371513,-0.117847494781017,-0.942779958248138,0.188555985689163,-0.274977475404739,-0.995091795921326,0.047385323792696,-0.0868730992078781,-0.998361051082611,-0.0550277717411518,0.0157222207635641,-0.983764171600342,-0.141662031412125,0.110181584954262,-0.999969005584717,1.74832852910177e-018,-0.00787377171218395,-0.956693589687347,-0.258777767419815,0.133309751749039,-0.983764171600342,-0.141662031412125,0.110181584954262,-0.998361051082611,-0.0550277717411518,0.0157222207635641,-0.973725259304047,0.157052457332611,-0.164905071258545,-0.995091795921326,0.047385323792696,-0.0868730992078781,-0.942779958248138,0.188555985689163,-0.274977475404739,-0.942779958248138,0.188555985689163,-0.274977475404739,-0.936253547668457,0.196691930294037,-0.291104078292847,-0.973725259304047,0.157052457332611,-0.164905071258545,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.999969005584717,1.74832852910177e-018,-0.00787377171218395,-0.995091795921326,0.047385323792696,-0.0868730992078781,-0.995091795921326,0.047385323792696,-0.0868730992078781,-0.973725259304047,0.157052457332611,-0.164905071258545,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.998361051082611,-0.0550277717411518,0.0157222207635641,-0.999969005584717,1.74832852910177e-018,-0.00787377171218395,
- -0.936253547668457,0.196691930294037,-0.291104078292847,-0.991542160511017,-0.0314775295555592,-0.125910118222237,-0.973725259304047,0.157052457332611,-0.164905071258545,-0.973725259304047,0.157052457332611,-0.164905071258545,-0.991542160511017,-0.0314775295555592,-0.125910118222237,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.986794292926788,-0.110520958900452,-0.11841531842947,-0.991542160511017,-0.0314775295555592,-0.125910118222237,-0.936253547668457,0.196691930294037,-0.291104078292847,-0.979510545730591,-0.197481960058212,-0.0394963920116425,-0.991542160511017,-0.0314775295555592,-0.125910118222237,-0.986794292926788,-0.110520958900452,-0.11841531842947,-0.98777973651886,-0.134338036179543,0.0790223777294159,-0.956693589687347,-0.258777767419815,0.133309751749039,-0.998361051082611,-0.0550277717411518,0.0157222207635641,-0.98777973651886,-0.134338036179543,0.0790223777294159,-0.998361051082611,-0.0550277717411518,0.0157222207635641,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.956693589687347,-0.258777767419815,0.133309751749039,-0.98777973651886,-0.134338036179543,0.0790223777294159,-0.976589918136597,-0.196893110871315,0.0866329744458199,-0.991542160511017,-0.0314775295555592,-0.125910118222237,-0.989827394485474,-0.141403913497925,-0.0157115459442139,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.989827394485474,-0.141403913497925,-0.0157115459442139,-0.98777973651886,-0.134338036179543,0.0790223777294159,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.991542160511017,-0.0314775295555592,-0.125910118222237,-0.979510545730591,-0.197481960058212,-0.0394963920116425,-0.989827394485474,-0.141403913497925,-0.0157115459442139,-0.989827394485474,-0.141403913497925,-0.0157115459442139,-0.976589918136597,-0.196893110871315,0.0866329744458199,-0.98777973651886,-0.134338036179543,0.0790223777294159,-0.976589918136597,-0.196893110871315,0.0866329744458199,-0.989827394485474,-0.141403913497925,-0.0157115459442139,-0.979510545730591,-0.197481960058212,-0.0394963920116425,
- -0.992218255996704,0.102371722459793,-0.0708727315068245,-0.973365187644959,0.180543541908264,0.141294941306114,-0.979816317558289,0.189641863107681,-0.0632139518857002,-0.969105064868927,0.110304646193981,-0.220609292387962,-0.992218255996704,0.102371722459793,-0.0708727315068245,-0.979816317558289,0.189641863107681,-0.0632139518857002,-0.973365187644959,0.180543541908264,0.141294941306114,-0.992218255996704,0.102371722459793,-0.0708727315068245,-0.985842406749725,0.11041434854269,0.126187831163406,-0.951664984226227,0.0707849934697151,0.298869997262955,-0.973365187644959,0.180543541908264,0.141294941306114,-0.985842406749725,0.11041434854269,0.126187831163406,-0.992218255996704,0.102371722459793,-0.0708727315068245,-0.969105064868927,0.110304646193981,-0.220609292387962,-0.989918947219849,0.0471389964222908,-0.133560493588448,-0.942925453186035,0.110007964074612,-0.31430846452713,-0.989918947219849,0.0471389964222908,-0.133560493588448,-0.969105064868927,0.110304646193981,-0.220609292387962,-0.985842406749725,0.11041434854269,0.126187831163406,-0.990898132324219,0.0157285425812006,0.133692607283592,-0.951664984226227,0.0707849934697151,0.298869997262955,-0.954028487205505,-0.134037047624588,0.268074095249176,-0.951664984226227,0.0707849934697151,0.298869997262955,-0.990898132324219,0.0157285425812006,0.133692607283592,-0.985842406749725,0.11041434854269,0.126187831163406,-0.992218255996704,0.102371722459793,-0.0708727315068245,-0.999969005584717,1.74832852910177e-018,-0.00787377171218395,-0.990898132324219,0.0157285425812006,0.133692607283592,-0.985842406749725,0.11041434854269,0.126187831163406,-0.999969005584717,1.74832852910177e-018,-0.00787377171218395,-0.992218255996704,0.102371722459793,-0.0708727315068245,-0.989918947219849,0.0471389964222908,-0.133560493588448,-0.999969005584717,1.74832852910177e-018,-0.00787377171218395,-0.954028487205505,-0.134037047624588,0.268074095249176,-0.990898132324219,0.0157285425812006,0.133692607283592,-0.984587788581848,-0.102397121489048,0.141780629754066,-0.984587788581848,-0.102397121489048,0.141780629754066,
- -0.990898132324219,0.0157285425812006,0.133692607283592,-0.999969005584717,1.74832852910177e-018,-0.00787377171218395,-0.955900371074677,-0.211551710963249,0.203716456890106,-0.954028487205505,-0.134037047624588,0.268074095249176,-0.984587788581848,-0.102397121489048,0.141780629754066,-0.999969005584717,1.74832852910177e-018,-0.00787377171218395,-0.989918947219849,0.0471389964222908,-0.133560493588448,-0.995215952396393,0.0236956179141998,-0.0947824716567993,-0.989918947219849,0.0471389964222908,-0.133560493588448,-0.942925453186035,0.110007964074612,-0.31430846452713,-0.995215952396393,0.0236956179141998,-0.0947824716567993,-0.998607933521271,-0.047178328037262,0.023589164018631,-0.984587788581848,-0.102397121489048,0.141780629754066,-0.999969005584717,1.74832852910177e-018,-0.00787377171218395,-0.955900371074677,-0.211551710963249,0.203716456890106,-0.984587788581848,-0.102397121489048,0.141780629754066,-0.998607933521271,-0.047178328037262,0.023589164018631,-0.973605275154114,0.102071523666382,-0.204143047332764,-0.995215952396393,0.0236956179141998,-0.0947824716567993,-0.942925453186035,0.110007964074612,-0.31430846452713,-0.942925453186035,0.110007964074612,-0.31430846452713,-0.937240362167358,0.11026357114315,-0.33079069852829,-0.973605275154114,0.102071523666382,-0.204143047332764,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.999969005584717,1.74832852910177e-018,-0.00787377171218395,-0.995215952396393,0.0236956179141998,-0.0947824716567993,-0.995215952396393,0.0236956179141998,-0.0947824716567993,-0.973605275154114,0.102071523666382,-0.204143047332764,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.998607933521271,-0.047178328037262,0.023589164018631,-0.999969005584717,1.74832852910177e-018,-0.00787377171218395,-0.937240362167358,0.11026357114315,-0.33079069852829,-0.991910755634308,-0.0629784613847733,-0.110212303698063,-0.973605275154114,0.102071523666382,-0.204143047332764,-0.973605275154114,0.102071523666382,-0.204143047332764,
- -0.991910755634308,-0.0629784613847733,-0.110212303698063,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.98777973651886,-0.134338036179543,-0.0790223777294159,-0.991910755634308,-0.0629784613847733,-0.110212303698063,-0.937240362167358,0.11026357114315,-0.33079069852829,-0.98015296459198,-0.197611466050148,0.0158089175820351,-0.991910755634308,-0.0629784613847733,-0.110212303698063,-0.98777973651886,-0.134338036179543,-0.0790223777294159,-0.987687170505524,-0.110620968043804,0.110620968043804,-0.955900371074677,-0.211551710963249,0.203716456890106,-0.998607933521271,-0.047178328037262,0.023589164018631,-0.987687170505524,-0.110620968043804,0.110620968043804,-0.998607933521271,-0.047178328037262,0.023589164018631,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.955900371074677,-0.211551710963249,0.203716456890106,-0.987687170505524,-0.110620968043804,0.110620968043804,-0.976014971733093,-0.165292844176292,0.141679584980011,-0.991910755634308,-0.0629784613847733,-0.110212303698063,-0.989674627780914,-0.141382083296776,0.0235636811703444,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.989674627780914,-0.141382083296776,0.0235636811703444,-0.987687170505524,-0.110620968043804,0.110620968043804,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.991910755634308,-0.0629784613847733,-0.110212303698063,-0.98015296459198,-0.197611466050148,0.0158089175820351,-0.989674627780914,-0.141382083296776,0.0235636811703444,-0.989674627780914,-0.141382083296776,0.0235636811703444,-0.976014971733093,-0.165292844176292,0.141679584980011,-0.987687170505524,-0.110620968043804,0.110620968043804,-0.976014971733093,-0.165292844176292,0.141679584980011,-0.989674627780914,-0.141382083296776,0.0235636811703444,-0.98015296459198,-0.197611466050148,0.0158089175820351,-0.992218255996704,0.0708727315068245,-0.102371722459793,-0.973515272140503,0.219826027750969,0.0628074333071709,-0.979510545730591,0.150086298584938,-0.134287729859352,-0.96751469373703,0.0235979184508324,-0.251711130142212,
- -0.992218255996704,0.0708727315068245,-0.102371722459793,-0.979510545730591,0.150086298584938,-0.134287729859352,-0.973515272140503,0.219826027750969,0.0628074333071709,-0.992218255996704,0.0708727315068245,-0.102371722459793,-0.98556661605835,0.149806126952171,0.0788453295826912,-0.952165842056274,0.173121064901352,0.25181245803833,-0.973515272140503,0.219826027750969,0.0628074333071709,-0.98556661605835,0.149806126952171,0.0788453295826912,-0.992218255996704,0.0708727315068245,-0.102371722459793,-0.96751469373703,0.0235979184508324,-0.251711130142212,-0.989918947219849,-0.00785649940371513,-0.141416981816292,-0.943741619586945,-0.0157290268689394,-0.33030954003334,-0.989918947219849,-0.00785649940371513,-0.141416981816292,-0.96751469373703,0.0235979184508324,-0.251711130142212,-0.98556661605835,0.149806126952171,0.0788453295826912,-0.991020619869232,0.062921941280365,0.117978647351265,-0.952165842056274,0.173121064901352,0.25181245803833,-0.953791439533234,-0.0236477218568325,0.299537807703018,-0.952165842056274,0.173121064901352,0.25181245803833,-0.991020619869232,0.062921941280365,0.117978647351265,-0.98556661605835,0.149806126952171,0.0788453295826912,-0.992218255996704,0.0708727315068245,-0.102371722459793,-0.999938011169434,-0.0078735277056694,-0.0078735277056694,-0.991020619869232,0.062921941280365,0.117978647351265,-0.98556661605835,0.149806126952171,0.0788453295826912,-0.999938011169434,-0.0078735277056694,-0.0078735277056694,-0.992218255996704,0.0708727315068245,-0.102371722459793,-0.989918947219849,-0.00785649940371513,-0.141416981816292,-0.999938011169434,-0.0078735277056694,-0.0078735277056694,-0.953791439533234,-0.0236477218568325,0.299537807703018,-0.991020619869232,0.062921941280365,0.117978647351265,-0.983764111995697,-0.0472206771373749,0.173142492771149,-0.983764111995697,-0.0472206771373749,0.173142492771149,-0.991020619869232,0.062921941280365,0.117978647351265,-0.999938011169434,-0.0078735277056694,-0.0078735277056694,-0.956605315208435,-0.117615409195423,0.266594916582108,-0.953791439533234,-0.0236477218568325,0.299537807703018,
- -0.983764111995697,-0.0472206771373749,0.173142492771149,-0.999938011169434,-0.0078735277056694,-0.0078735277056694,-0.989918947219849,-0.00785649940371513,-0.141416981816292,-0.995371222496033,-0.015799542888999,-0.0947972610592842,-0.989918947219849,-0.00785649940371513,-0.141416981816292,-0.943741619586945,-0.0157290268689394,-0.33030954003334,-0.995371222496033,-0.015799542888999,-0.0947972610592842,-0.998114347457886,-0.0392958410084248,0.0471550077199936,-0.983764111995697,-0.0472206771373749,0.173142492771149,-0.999938011169434,-0.0078735277056694,-0.0078735277056694,-0.956605315208435,-0.117615409195423,0.266594916582108,-0.983764111995697,-0.0472206771373749,0.173142492771149,-0.998114347457886,-0.0392958410084248,0.0471550077199936,-0.973605275154114,0.0157033111900091,-0.227698013186455,-0.995371222496033,-0.015799542888999,-0.0947972610592842,-0.943741619586945,-0.0157290268689394,-0.33030954003334,-0.943741619586945,-0.0157290268689394,-0.33030954003334,-0.937676668167114,-0.0236389078199863,-0.346704006195068,-0.973605275154114,0.0157033111900091,-0.227698013186455,-0.999938011169434,0.0078735277056694,-0.0078735277056694,-0.999938011169434,-0.0078735277056694,-0.0078735277056694,-0.995371222496033,-0.015799542888999,-0.0947972610592842,-0.995371222496033,-0.015799542888999,-0.0947972610592842,-0.973605275154114,0.0157033111900091,-0.227698013186455,-0.999938011169434,0.0078735277056694,-0.0078735277056694,-0.999938011169434,0.0078735277056694,-0.0078735277056694,-0.998114347457886,-0.0392958410084248,0.0471550077199936,-0.999938011169434,-0.0078735277056694,-0.0078735277056694,-0.937676668167114,-0.0236389078199863,-0.346704006195068,-0.991634249687195,-0.102311469614506,-0.0787011310458183,-0.973605275154114,0.0157033111900091,-0.227698013186455,-0.973605275154114,0.0157033111900091,-0.227698013186455,-0.991634249687195,-0.102311469614506,-0.0787011310458183,-0.999938011169434,0.0078735277056694,-0.0078735277056694,-0.987163484096527,-0.157946154475212,-0.0236919224262238,-0.991634249687195,-0.102311469614506,-0.0787011310458183,
- -0.937676668167114,-0.0236389078199863,-0.346704006195068,-0.978808522224426,-0.181553184986115,0.0947234109044075,-0.991634249687195,-0.102311469614506,-0.0787011310458183,-0.987163484096527,-0.157946154475212,-0.0236919224262238,-0.987132668495178,-0.0552794300019741,0.150044173002243,-0.956605315208435,-0.117615409195423,0.266594916582108,-0.998114347457886,-0.0392958410084248,0.0471550077199936,-0.987132668495178,-0.0552794300019741,0.150044173002243,-0.998114347457886,-0.0392958410084248,0.0471550077199936,-0.999938011169434,0.0078735277056694,-0.0078735277056694,-0.956605315208435,-0.117615409195423,0.266594916582108,-0.987132668495178,-0.0552794300019741,0.150044173002243,-0.975139439105988,-0.102232359349728,0.196600690484047,-0.991634249687195,-0.102311469614506,-0.0787011310458183,-0.990500032901764,-0.11791667342186,0.0707499980926514,-0.999938011169434,0.0078735277056694,-0.0078735277056694,-0.990500032901764,-0.11791667342186,0.0707499980926514,-0.987132668495178,-0.0552794300019741,0.150044173002243,-0.999938011169434,0.0078735277056694,-0.0078735277056694,-0.991634249687195,-0.102311469614506,-0.0787011310458183,-0.978808522224426,-0.181553184986115,0.0947234109044075,-0.990500032901764,-0.11791667342186,0.0707499980926514,-0.990500032901764,-0.11791667342186,0.0707499980926514,-0.975139439105988,-0.102232359349728,0.196600690484047,-0.987132668495178,-0.0552794300019741,0.150044173002243,-0.975139439105988,-0.102232359349728,0.196600690484047,-0.990500032901764,-0.11791667342186,0.0707499980926514,-0.978808522224426,-0.181553184986115,0.0947234109044075,-0.992218255996704,0.0393737405538559,-0.118121221661568,-0.973725259304047,0.227726057171822,5.05653423958522e-017,-0.979908049106598,0.110634781420231,-0.165952160954475,-0.968594014644623,-0.0472484864294529,-0.244117185473442,-0.992218255996704,0.0393737405538559,-0.118121221661568,-0.979908049106598,0.110634781420231,-0.165952160954475,-0.973725259304047,0.227726057171822,5.05653423958522e-017,-0.992218255996704,0.0393737405538559,-0.118121221661568,
- -0.985689163208008,0.165595769882202,0.0315420515835285,-0.951664984226227,0.235949993133545,0.196624979376793,-0.973725259304047,0.227726057171822,5.05653423958522e-017,-0.985689163208008,0.165595769882202,0.0315420515835285,-0.992218255996704,0.0393737405538559,-0.118121221661568,-0.968594014644623,-0.0472484864294529,-0.244117185473442,-0.990255177021027,-0.0392958410084248,-0.133605852723122,-0.943712413311005,-0.10223550349474,-0.314570784568787,-0.990255177021027,-0.0392958410084248,-0.133605852723122,-0.968594014644623,-0.0472484864294529,-0.244117185473442,-0.985689163208008,0.165595769882202,0.0315420515835285,-0.990285873413086,0.0943129435181618,0.1021723523736,-0.951664984226227,0.235949993133545,0.196624979376793,-0.954830169677734,0.0552381053566933,0.29197284579277,-0.951664984226227,0.235949993133545,0.196624979376793,-0.990285873413086,0.0943129435181618,0.1021723523736,-0.985689163208008,0.165595769882202,0.0315420515835285,-0.992218255996704,0.0393737405538559,-0.118121221661568,-0.999938011169434,-0.0078735277056694,-0.0078735277056694,-0.990285873413086,0.0943129435181618,0.1021723523736,-0.985689163208008,0.165595769882202,0.0315420515835285,-0.999938011169434,-0.0078735277056694,-0.0078735277056694,-0.992218255996704,0.0393737405538559,-0.118121221661568,-0.990255177021027,-0.0392958410084248,-0.133605852723122,-0.999938011169434,-0.0078735277056694,-0.0078735277056694,-0.954830169677734,0.0552381053566933,0.29197284579277,-0.990285873413086,0.0943129435181618,0.1021723523736,-0.984862864017487,-3.84882936943412e-017,0.173335865139961,-0.984862864017487,-3.84882936943412e-017,0.173335865139961,-0.990285873413086,0.0943129435181618,0.1021723523736,-0.999938011169434,-0.0078735277056694,-0.0078735277056694,-0.958049535751343,-0.0471171885728836,0.282703131437302,-0.954830169677734,0.0552381053566933,0.29197284579277,-0.984862864017487,-3.84882936943412e-017,0.173335865139961,-0.999938011169434,-0.0078735277056694,-0.0078735277056694,-0.990255177021027,-0.0392958410084248,-0.133605852723122,-0.995433330535889,-0.0395013242959976,-0.086902916431427,
- -0.990255177021027,-0.0392958410084248,-0.133605852723122,-0.943712413311005,-0.10223550349474,-0.314570784568787,-0.995433330535889,-0.0395013242959976,-0.086902916431427,-0.998206853866577,-0.0235796887427568,0.055019274353981,-0.984862864017487,-3.84882936943412e-017,0.173335865139961,-0.999938011169434,-0.0078735277056694,-0.0078735277056694,-0.958049535751343,-0.0471171885728836,0.282703131437302,-0.984862864017487,-3.84882936943412e-017,0.173335865139961,-0.998206853866577,-0.0235796887427568,0.055019274353981,-0.974687337875366,-0.039301909506321,-0.220090687274933,-0.995433330535889,-0.0395013242959976,-0.086902916431427,-0.943712413311005,-0.10223550349474,-0.314570784568787,-0.943712413311005,-0.10223550349474,-0.314570784568787,-0.937240362167358,-0.11026357114315,-0.33079069852829,-0.974687337875366,-0.039301909506321,-0.220090687274933,-0.999938011169434,0.0078735277056694,-0.0078735277056694,-0.999938011169434,-0.0078735277056694,-0.0078735277056694,-0.995433330535889,-0.0395013242959976,-0.086902916431427,-0.995433330535889,-0.0395013242959976,-0.086902916431427,-0.974687337875366,-0.039301909506321,-0.220090687274933,-0.999938011169434,0.0078735277056694,-0.0078735277056694,-0.999938011169434,0.0078735277056694,-0.0078735277056694,-0.998206853866577,-0.0235796887427568,0.055019274353981,-0.999938011169434,-0.0078735277056694,-0.0078735277056694,-0.937240362167358,-0.11026357114315,-0.33079069852829,-0.991480767726898,-0.118033424019814,-0.0550822615623474,-0.974687337875366,-0.039301909506321,-0.220090687274933,-0.974687337875366,-0.039301909506321,-0.220090687274933,-0.991480767726898,-0.118033424019814,-0.0550822615623474,-0.999938011169434,0.0078735277056694,-0.0078735277056694,-0.987317442893982,-0.157970786094666,0.0157970786094666,-0.991480767726898,-0.118033424019814,-0.0550822615623474,-0.937240362167358,-0.11026357114315,-0.33079069852829,-0.979510545730591,-0.150086298584938,0.134287729859352,-0.991480767726898,-0.118033424019814,-0.0550822615623474,-0.987317442893982,-0.157970786094666,0.0157970786094666,
- -0.987317442893982,-0.0157970786094666,0.157970786094666,-0.958049535751343,-0.0471171885728836,0.282703131437302,-0.998206853866577,-0.0235796887427568,0.055019274353981,-0.987317442893982,-0.0157970786094666,0.157970786094666,-0.998206853866577,-0.0235796887427568,0.055019274353981,-0.999938011169434,0.0078735277056694,-0.0078735277056694,-0.958049535751343,-0.0471171885728836,0.282703131437302,-0.987317442893982,-0.0157970786094666,0.157970786094666,-0.976015031337738,-0.0472265370190144,0.212519407272339,-0.991480767726898,-0.118033424019814,-0.0550822615623474,-0.990285873413086,-0.0943129435181618,0.1021723523736,-0.999938011169434,0.0078735277056694,-0.0078735277056694,-0.990285873413086,-0.0943129435181618,0.1021723523736,-0.987317442893982,-0.0157970786094666,0.157970786094666,-0.999938011169434,0.0078735277056694,-0.0078735277056694,-0.991480767726898,-0.118033424019814,-0.0550822615623474,-0.979510545730591,-0.150086298584938,0.134287729859352,-0.990285873413086,-0.0943129435181618,0.1021723523736,-0.990285873413086,-0.0943129435181618,0.1021723523736,-0.976015031337738,-0.0472265370190144,0.212519407272339,-0.987317442893982,-0.0157970786094666,0.157970786094666,-0.976015031337738,-0.0472265370190144,0.212519407272339,-0.990285873413086,-0.0943129435181618,0.1021723523736,-0.979510545730591,-0.150086298584938,0.134287729859352,-0.992002964019775,-0.0078730396926403,-0.125968635082245,-0.974085688591003,0.212099298834801,-0.0785553008317947,-0.979174554347992,0.0473794117569923,-0.197414219379425,-0.968954622745514,-0.126042872667313,-0.212697356939316,-0.992002964019775,-0.0078730396926403,-0.125968635082245,-0.979174554347992,0.0473794117569923,-0.197414219379425,-0.974085688591003,0.212099298834801,-0.0785553008317947,-0.992002964019775,-0.0078730396926403,-0.125968635082245,-0.985903739929199,0.165631830692291,-0.0236616898328066,-0.951282560825348,0.290888071060181,0.102203905582428,-0.974085688591003,0.212099298834801,-0.0785553008317947,-0.985903739929199,0.165631830692291,-0.0236616898328066,-0.992002964019775,-0.0078730396926403,-0.125968635082245,
- -0.968954622745514,-0.126042872667313,-0.212697356939316,-0.990163564682007,-0.0864428505301476,-0.110018171370029,-0.94382917881012,-0.204496309161186,-0.259553015232086,-0.990163564682007,-0.0864428505301476,-0.110018171370029,-0.968954622745514,-0.126042872667313,-0.212697356939316,-0.985903739929199,0.165631830692291,-0.0236616898328066,-0.990071713924408,0.125723391771317,0.0628616958856583,-0.951282560825348,0.290888071060181,0.102203905582428,-0.954651832580566,0.157793685793877,0.252469897270203,-0.951282560825348,0.290888071060181,0.102203905582428,-0.990071713924408,0.125723391771317,0.0628616958856583,-0.985903739929199,0.165631830692291,-0.0236616898328066,-0.992002964019775,-0.0078730396926403,-0.125968635082245,-0.999969005584717,-0.00787377171218395,-1.74832852910177e-018,-0.990071713924408,0.125723391771317,0.0628616958856583,-0.985903739929199,0.165631830692291,-0.0236616898328066,-0.999969005584717,-0.00787377171218395,-1.74832852910177e-018,-0.992002964019775,-0.0078730396926403,-0.125968635082245,-0.990163564682007,-0.0864428505301476,-0.110018171370029,-0.999969005584717,-0.00787377171218395,-1.74832852910177e-018,-0.954651832580566,0.157793685793877,0.252469897270203,-0.990071713924408,0.125723391771317,0.0628616958856583,-0.984221458435059,0.0629901736974716,0.165349200367928,-0.984221458435059,0.0629901736974716,0.165349200367928,-0.990071713924408,0.125723391771317,0.0628616958856583,-0.999969005584717,-0.00787377171218395,-1.74832852910177e-018,-0.957665741443634,0.0549480319023132,0.282589882612228,-0.954651832580566,0.157793685793877,0.252469897270203,-0.984221458435059,0.0629901736974716,0.165349200367928,-0.999969005584717,-0.00787377171218395,-1.74832852910177e-018,-0.990163564682007,-0.0864428505301476,-0.110018171370029,-0.995464503765106,-0.0632040947675705,-0.0711046010255814,-0.990163564682007,-0.0864428505301476,-0.110018171370029,-0.94382917881012,-0.204496309161186,-0.259553015232086,-0.995464503765106,-0.0632040947675705,-0.0711046010255814,-0.998453617095947,-0.00786183960735798,0.0550328753888607,
- -0.984221458435059,0.0629901736974716,0.165349200367928,-0.999969005584717,-0.00787377171218395,-1.74832852910177e-018,-0.957665741443634,0.0549480319023132,0.282589882612228,-0.984221458435059,0.0629901736974716,0.165349200367928,-0.998453617095947,-0.00786183960735798,0.0550328753888607,-0.973455131053925,-0.117756672203541,-0.1962611079216,-0.995464503765106,-0.0632040947675705,-0.0711046010255814,-0.94382917881012,-0.204496309161186,-0.259553015232086,-0.94382917881012,-0.204496309161186,-0.259553015232086,-0.935819208621979,-0.220192760229111,-0.275240927934647,-0.973455131053925,-0.117756672203541,-0.1962611079216,-0.999969005584717,1.74832852910177e-018,-0.00787377171218395,-0.999969005584717,-0.00787377171218395,-1.74832852910177e-018,-0.995464503765106,-0.0632040947675705,-0.0711046010255814,-0.995464503765106,-0.0632040947675705,-0.0711046010255814,-0.973455131053925,-0.117756672203541,-0.1962611079216,-0.999969005584717,1.74832852910177e-018,-0.00787377171218395,-0.999969005584717,1.74832852910177e-018,-0.00787377171218395,-0.998453617095947,-0.00786183960735798,0.0550328753888607,-0.999969005584717,-0.00787377171218395,-1.74832852910177e-018,-0.935819208621979,-0.220192760229111,-0.275240927934647,-0.990989983081818,-0.133704990148544,-0.00786499958485365,-0.973455131053925,-0.117756672203541,-0.1962611079216,-0.973455131053925,-0.117756672203541,-0.1962611079216,-0.990989983081818,-0.133704990148544,-0.00786499958485365,-0.999969005584717,1.74832852910177e-018,-0.00787377171218395,-0.987286627292633,-0.142169266939163,0.0710846334695816,-0.990989983081818,-0.133704990148544,-0.00786499958485365,-0.935819208621979,-0.220192760229111,-0.275240927934647,-0.978808522224426,-0.0947234109044075,0.181553184986115,-0.990989983081818,-0.133704990148544,-0.00786499958485365,-0.987286627292633,-0.142169266939163,0.0710846334695816,-0.987872242927551,0.0395148880779743,0.150156587362289,-0.957665741443634,0.0549480319023132,0.282589882612228,-0.998453617095947,-0.00786183960735798,0.0550328753888607,-0.987872242927551,0.0395148880779743,0.150156587362289,
- -0.998453617095947,-0.00786183960735798,0.0550328753888607,-0.999969005584717,1.74832852910177e-018,-0.00787377171218395,-0.957665741443634,0.0549480319023132,0.282589882612228,-0.987872242927551,0.0395148880779743,0.150156587362289,-0.974958479404449,0.0314502716064453,0.220151916146278,-0.990989983081818,-0.133704990148544,-0.00786499958485365,-0.990530550479889,-0.0550294741988182,0.125781655311584,-0.999969005584717,1.74832852910177e-018,-0.00787377171218395,-0.990530550479889,-0.0550294741988182,0.125781655311584,-0.987872242927551,0.0395148880779743,0.150156587362289,-0.999969005584717,1.74832852910177e-018,-0.00787377171218395,-0.990989983081818,-0.133704990148544,-0.00786499958485365,-0.978808522224426,-0.0947234109044075,0.181553184986115,-0.990530550479889,-0.0550294741988182,0.125781655311584,-0.990530550479889,-0.0550294741988182,0.125781655311584,-0.974958479404449,0.0314502716064453,0.220151916146278,-0.987872242927551,0.0395148880779743,0.150156587362289,-0.974958479404449,0.0314502716064453,0.220151916146278,-0.990530550479889,-0.0550294741988182,0.125781655311584,-0.978808522224426,-0.0947234109044075,0.181553184986115,-0.984221458435059,-0.165349200367928,-0.0629901736974716,-0.991757214069366,-0.0865819826722145,-0.0944530740380287,-0.978229522705078,-0.205112636089325,-0.0315557904541492,-0.954176902770996,-0.283887326717377,0.0946291163563728,-0.984221458435059,-0.165349200367928,-0.0629901736974716,-0.978229522705078,-0.205112636089325,-0.0315557904541492,-0.954176902770996,-0.283887326717377,0.0946291163563728,-0.927639722824097,-0.322315484285355,-0.188672482967377,-0.9501673579216,-0.204168185591698,0.235578685998917,-0.978229522705078,-0.205112636089325,-0.0315557904541492,-0.925139665603638,-0.221400961279869,-0.308379918336868,-0.954176902770996,-0.283887326717377,0.0946291163563728,-0.927639722824097,-0.322315484285355,-0.188672482967377,-0.954176902770996,-0.283887326717377,0.0946291163563728,-0.925139665603638,-0.221400961279869,-0.308379918336868,-0.927639722824097,-0.322315484285355,-0.188672482967377,
- -0.925139665603638,-0.221400961279869,-0.308379918336868,-0.770698487758636,-0.369620710611343,-0.519041836261749,-0.978229522705078,-0.205112636089325,-0.0315557904541492,-0.839971721172333,-0.133453443646431,-0.525963604450226,-0.925139665603638,-0.221400961279869,-0.308379918336868,-0.770698487758636,-0.369620710611343,-0.519041836261749,-0.925139665603638,-0.221400961279869,-0.308379918336868,-0.82651549577713,-0.196789398789406,-0.52739554643631,-0.925139665603638,-0.221400961279869,-0.308379918336868,-0.839971721172333,-0.133453443646431,-0.525963604450226,-0.82651549577713,-0.196789398789406,-0.52739554643631,-0.82651549577713,-0.196789398789406,-0.52739554643631,-0.839971721172333,-0.133453443646431,-0.525963604450226,-0.834128677845001,-0.133775353431702,-0.535101413726807,-0.947499692440033,-0.300041556358337,-0.110541626811028,-0.968233823776245,-0.220410957932472,-0.118077300488949,-0.929450869560242,-0.35445162653923,-0.102397128939629,-0.88641768693924,-0.462819844484329,-0.0078444043174386,-0.947499692440033,-0.300041556358337,-0.110541626811028,-0.929450869560242,-0.35445162653923,-0.102397128939629,-0.88641768693924,-0.462819844484329,-0.0078444043174386,-0.872367680072784,-0.392958402633667,-0.290789216756821,-0.889047503471375,-0.432722240686417,0.149485871195793,-0.929450869560242,-0.35445162653923,-0.102397128939629,-0.892201066017151,-0.268449872732162,-0.36319687962532,-0.88641768693924,-0.462819844484329,-0.0078444043174386,-0.872367680072784,-0.392958402633667,-0.290789216756821,-0.88641768693924,-0.462819844484329,-0.0078444043174386,-0.892201066017151,-0.268449872732162,-0.36319687962532,-0.872367680072784,-0.392958402633667,-0.290789216756821,-0.892201066017151,-0.268449872732162,-0.36319687962532,-0.727505743503571,-0.300491511821747,-0.616798341274261,-0.929450869560242,-0.35445162653923,-0.102397128939629,-0.834335386753082,-0.0944530591368675,-0.543105065822601,-0.892201066017151,-0.268449872732162,-0.36319687962532,-0.727505743503571,-0.300491511821747,-0.616798341274261,-0.892201066017151,-0.268449872732162,-0.36319687962532,
- -0.810395836830139,-0.149490505456924,-0.566490292549133,-0.892201066017151,-0.268449872732162,-0.36319687962532,-0.834335386753082,-0.0944530591368675,-0.543105065822601,-0.810395836830139,-0.149490505456924,-0.566490292549133,-0.810395836830139,-0.149490505456924,-0.566490292549133,-0.834335386753082,-0.0944530591368675,-0.543105065822601,-0.831353366374969,-0.0862725228071213,-0.549006938934326,-0.984374046325684,-0.173249840736389,0.0314999707043171,-0.992218255996704,-0.118121221661568,-0.0393737405538559,-0.977226555347443,-0.197021469473839,0.0788085907697678,-0.953406453132629,-0.196984797716141,0.228502362966537,-0.984374046325684,-0.173249840736389,0.0314999707043171,-0.977226555347443,-0.197021469473839,0.0788085907697678,-0.953406453132629,-0.196984797716141,0.228502362966537,-0.928989887237549,-0.370021402835846,-0.00787279568612576,-0.949903845787048,-0.0628035590052605,0.306167334318161,-0.977226555347443,-0.197021469473839,0.0788085907697678,-0.924244523048401,-0.347579151391983,-0.157990515232086,-0.953406453132629,-0.196984797716141,0.228502362966537,-0.928989887237549,-0.370021402835846,-0.00787279568612576,-0.953406453132629,-0.196984797716141,0.228502362966537,-0.924244523048401,-0.347579151391983,-0.157990515232086,-0.928989887237549,-0.370021402835846,-0.00787279568612576,-0.924244523048401,-0.347579151391983,-0.157990515232086,-0.76910662651062,-0.580753982067108,-0.266832917928696,-0.977226555347443,-0.197021469473839,0.0788085907697678,-0.841867506504059,-0.377660185098648,-0.385528087615967,-0.924244523048401,-0.347579151391983,-0.157990515232086,-0.76910662651062,-0.580753982067108,-0.266832917928696,-0.924244523048401,-0.347579151391983,-0.157990515232086,-0.825825095176697,-0.432575047016144,-0.361790001392365,-0.924244523048401,-0.347579151391983,-0.157990515232086,-0.841867506504059,-0.377660185098648,-0.385528087615967,-0.825825095176697,-0.432575047016144,-0.361790001392365,-0.825825095176697,-0.432575047016144,-0.361790001392365,-0.841867506504059,-0.377660185098648,-0.385528087615967,
- -0.834438860416412,-0.385731160640717,-0.39360323548317,-0.984679400920868,-0.0551420450210571,-0.165426135063171,-0.991910755634308,0.0157446153461933,-0.125956922769547,-0.977226555347443,-0.110332027077675,-0.181259766221046,-0.952726364135742,-0.259834468364716,-0.157475426793098,-0.984679400920868,-0.0551420450210571,-0.165426135063171,-0.977226555347443,-0.110332027077675,-0.181259766221046,-0.952726364135742,-0.259834468364716,-0.157475426793098,-0.92761105298996,-0.0550277754664421,-0.369472205638886,-0.949435830116272,-0.313863068819046,-0.00784657709300518,-0.977226555347443,-0.110332027077675,-0.181259766221046,-0.923754572868347,0.0947440639138222,-0.371080905199051,-0.952726364135742,-0.259834468364716,-0.157475426793098,-0.92761105298996,-0.0550277754664421,-0.369472205638886,-0.952726364135742,-0.259834468364716,-0.157475426793098,-0.923754572868347,0.0947440639138222,-0.371080905199051,-0.92761105298996,-0.0550277754664421,-0.369472205638886,-0.923754572868347,0.0947440639138222,-0.371080905199051,-0.768893539905548,0.156917050480843,-0.619822382926941,-0.977226555347443,-0.110332027077675,-0.181259766221046,-0.841060876846313,0.314415276050568,-0.440181374549866,-0.923754572868347,0.0947440639138222,-0.371080905199051,-0.768893539905548,0.156917050480843,-0.619822382926941,-0.923754572868347,0.0947440639138222,-0.371080905199051,-0.824474573135376,0.27482482790947,-0.494684725999832,-0.923754572868347,0.0947440639138222,-0.371080905199051,-0.841060876846313,0.314415276050568,-0.440181374549866,-0.824474573135376,0.27482482790947,-0.494684725999832,-0.824474573135376,0.27482482790947,-0.494684725999832,-0.841060876846313,0.314415276050568,-0.440181374549866,-0.833689987659454,0.322464972734451,-0.448304980993271,-0.999473392963409,-0.0314794778823853,0.00786986947059631,-0.994874656200409,-0.0631666406989098,-0.0789583027362823,-0.998453617095947,0.00786183960735798,-0.0550328753888607,-0.986948072910309,-0.0315823368728161,-0.157911688089371,-0.999473392963409,-0.0314794778823853,0.00786986947059631,
- -0.998453617095947,0.00786183960735798,-0.0550328753888607,-0.928558349609375,-0.346242100000381,0.133775353431702,-0.999473392963409,-0.0314794778823853,0.00786986947059631,-0.986948072910309,-0.0315823368728161,-0.157911688089371,-0.986948072910309,-0.0315823368728161,-0.157911688089371,-0.998453617095947,0.00786183960735798,-0.0550328753888607,-0.936514437198639,0.0550890862941742,-0.34627428650856,-0.928558349609375,-0.346242100000381,0.133775353431702,-0.986948072910309,-0.0315823368728161,-0.157911688089371,-0.935935080051422,-0.306735038757324,-0.173030018806458,-0.935935080051422,-0.306735038757324,-0.173030018806458,-0.986948072910309,-0.0315823368728161,-0.157911688089371,-0.936514437198639,0.0550890862941742,-0.34627428650856,-0.913640856742859,-0.236286446452141,0.330800980329514,-0.820348560810089,-0.236639022827148,0.520605802536011,-0.92054671049118,-0.125886723399162,0.369792282581329,-0.913640856742859,-0.236286446452141,0.330800980329514,-0.92054671049118,-0.125886723399162,0.369792282581329,-0.967994034290314,-0.188876897096634,0.165267258882523,-0.914520561695099,-0.339003294706345,-0.220746338367462,-0.913640856742859,-0.236286446452141,0.330800980329514,-0.967994034290314,-0.188876897096634,0.165267258882523,-0.92054671049118,-0.125886723399162,0.369792282581329,-0.960987448692322,-0.0945233553647995,0.259939223527908,-0.967994034290314,-0.188876897096634,0.165267258882523,-0.914520561695099,-0.339003294706345,-0.220746338367462,-0.967994034290314,-0.188876897096634,0.165267258882523,-0.993389487266541,-0.110376611351967,-0.0315361730754375,-0.967994034290314,-0.188876897096634,0.165267258882523,-0.960987448692322,-0.0945233553647995,0.259939223527908,-0.993389487266541,-0.110376611351967,-0.0315361730754375,-0.999597251415253,-0.0236125327646732,0.0157416891306639,-0.994224011898041,-0.0867973417043686,-0.0631253346800804,-0.998453617095947,-0.00786183960735798,-0.0550328753888607,-0.986702144145966,-0.0789361670613289,-0.14208510518074,-0.999597251415253,-0.0236125327646732,0.0157416891306639,
- -0.998453617095947,-0.00786183960735798,-0.0550328753888607,-0.928989887237549,-0.291293442249298,0.228311076760292,-0.999597251415253,-0.0236125327646732,0.0157416891306639,-0.986702144145966,-0.0789361670613289,-0.14208510518074,-0.986702144145966,-0.0789361670613289,-0.14208510518074,-0.998453617095947,-0.00786183960735798,-0.0550328753888607,-0.936891674995422,-0.0472382381558418,-0.346413761377335,-0.928989887237549,-0.291293442249298,0.228311076760292,-0.986702144145966,-0.0789361670613289,-0.14208510518074,-0.935038864612579,-0.345728695392609,-0.0785746946930885,-0.935038864612579,-0.345728695392609,-0.0785746946930885,-0.986702144145966,-0.0789361670613289,-0.14208510518074,-0.936891674995422,-0.0472382381558418,-0.346413761377335,-0.912904858589172,-0.133787781000137,0.385623604059219,-0.819100916385651,-0.0866356790065765,0.567069828510284,-0.92226105928421,-0.0157651454210281,0.386246085166931,-0.912904858589172,-0.133787781000137,0.385623604059219,-0.92226105928421,-0.0157651454210281,0.386246085166931,-0.967963933944702,-0.133783623576164,0.212479889392853,-0.914719521999359,-0.386390149593353,-0.118282705545425,-0.912904858589172,-0.133787781000137,0.385623604059219,-0.967963933944702,-0.133783623576164,0.212479889392853,-0.92226105928421,-0.0157651454210281,0.386246085166931,-0.961106777191162,-0.0157558489590883,0.275727331638336,-0.967963933944702,-0.133783623576164,0.212479889392853,-0.914719521999359,-0.386390149593353,-0.118282705545425,-0.967963933944702,-0.133783623576164,0.212479889392853,-0.992988288402557,-0.118212893605232,-2.62485352576186e-017,-0.967963933944702,-0.133783623576164,0.212479889392853,-0.961106777191162,-0.0157558489590883,0.275727331638336,-0.992988288402557,-0.118212893605232,-2.62485352576186e-017,-0.999597251415253,-0.0157416891306639,0.0236125327646732,-0.994440853595734,-0.102601043879986,-0.0236771646887064,-0.998607933521271,-0.023589164018631,-0.047178328037262,-0.986671388149261,-0.126293942332268,-0.10261382162571,-0.999597251415253,-0.0157416891306639,0.0236125327646732,
- -0.998607933521271,-0.023589164018631,-0.047178328037262,-0.927639722824097,-0.188672482967377,0.322315484285355,-0.999597251415253,-0.0157416891306639,0.0236125327646732,-0.986671388149261,-0.126293942332268,-0.10261382162571,-0.986671388149261,-0.126293942332268,-0.10261382162571,-0.998607933521271,-0.023589164018631,-0.047178328037262,-0.935935080051422,-0.173030018806458,-0.306735038757324,-0.927639722824097,-0.188672482967377,0.322315484285355,-0.986671388149261,-0.126293942332268,-0.10261382162571,-0.936514437198639,-0.34627428650856,0.0550890862941742,-0.936514437198639,-0.34627428650856,0.0550890862941742,-0.986671388149261,-0.126293942332268,-0.10261382162571,-0.935935080051422,-0.173030018806458,-0.306735038757324,-0.912396430969238,0.0157309733331203,0.409005284309387,-0.818466424942017,0.133787781000137,0.558760702610016,-0.92226105928421,0.13400374352932,0.362598359584808,-0.912396430969238,0.0157309733331203,0.409005284309387,-0.92226105928421,0.13400374352932,0.362598359584808,-0.966707527637482,-0.0471564643085003,0.251501142978668,-0.914975702762604,-0.402273803949356,0.0315508879721165,-0.912396430969238,0.0157309733331203,0.409005284309387,-0.966707527637482,-0.0471564643085003,0.251501142978668,-0.92226105928421,0.13400374352932,0.362598359584808,-0.959678411483765,0.0865283831954002,0.267451345920563,-0.966707527637482,-0.0471564643085003,0.251501142978668,-0.914975702762604,-0.402273803949356,0.0315508879721165,-0.966707527637482,-0.0471564643085003,0.251501142978668,-0.99277251958847,-0.110308051109314,0.0472748801112175,-0.966707527637482,-0.0471564643085003,0.251501142978668,-0.959678411483765,0.0865283831954002,0.267451345920563,-0.99277251958847,-0.110308051109314,0.0472748801112175,-0.999597251415253,-0.0157416891306639,0.0236125327646732,-0.994719624519348,-0.102629795670509,-2.27883924331949e-017,-0.998453617095947,-0.0393091961741447,-0.0393091961741447,-0.987810552120209,-0.142244711518288,-0.0632198750972748,-0.999597251415253,-0.0157416891306639,0.0236125327646732,-0.998453617095947,-0.0393091961741447,-0.0393091961741447,
- -0.929450869560242,-0.102397128939629,0.35445162653923,-0.999597251415253,-0.0157416891306639,0.0236125327646732,-0.987810552120209,-0.142244711518288,-0.0632198750972748,-0.987810552120209,-0.142244711518288,-0.0632198750972748,-0.998453617095947,-0.0393091961741447,-0.0393091961741447,-0.936514437198639,-0.243965968489647,-0.251835823059082,-0.929450869560242,-0.102397128939629,0.35445162653923,-0.987810552120209,-0.142244711518288,-0.0632198750972748,-0.935934960842133,-0.322465002536774,0.14156998693943,-0.935934960842133,-0.322465002536774,0.14156998693943,-0.987810552120209,-0.142244711518288,-0.0632198750972748,-0.936514437198639,-0.243965968489647,-0.251835823059082,-0.914719521999359,0.118282705545425,0.386390149593353,-0.820450603961945,0.268224239349365,0.504892706871033,-0.92054671049118,0.220301777124405,0.322584748268127,-0.914719521999359,0.118282705545425,0.386390149593353,-0.92054671049118,0.220301777124405,0.322584748268127,-0.96751469373703,0.0235979184508324,0.251711130142212,-0.915659487247467,-0.378893584012985,0.13419146835804,-0.914719521999359,0.118282705545425,0.386390149593353,-0.96751469373703,0.0235979184508324,0.251711130142212,-0.92054671049118,0.220301777124405,0.322584748268127,-0.960153818130493,0.149532154202461,0.236103400588036,-0.96751469373703,0.0235979184508324,0.251711130142212,-0.915659487247467,-0.378893584012985,0.13419146835804,-0.96751469373703,0.0235979184508324,0.251711130142212,-0.992988288402557,-0.0945703089237213,0.070927731692791,-0.96751469373703,0.0235979184508324,0.251711130142212,-0.960153818130493,0.149532154202461,0.236103400588036,-0.992988288402557,-0.0945703089237213,0.070927731692791,-0.999504387378693,-6.99006495096098e-018,0.0314804539084435,-0.994719624519348,-0.0947351977229118,0.0394730009138584,-0.998607933521271,-0.047178328037262,-0.023589164018631,-0.987409830093384,-0.15798556804657,-0.00789927877485752,-0.999504387378693,-6.99006495096098e-018,0.0314804539084435,-0.998607933521271,-0.047178328037262,-0.023589164018631,-0.928558349609375,0.031476553529501,0.369849503040314,
- -0.999504387378693,-6.99006495096098e-018,0.0314804539084435,-0.987409830093384,-0.15798556804657,-0.00789927877485752,-0.987409830093384,-0.15798556804657,-0.00789927877485752,-0.998607933521271,-0.047178328037262,-0.023589164018631,-0.937211275100708,-0.315028995275497,-0.149638786911964,-0.928558349609375,0.031476553529501,0.369849503040314,-0.987409830093384,-0.15798556804657,-0.00789927877485752,-0.936514437198639,-0.251835823059082,0.243965968489647,-0.936514437198639,-0.251835823059082,0.243965968489647,-0.987409830093384,-0.15798556804657,-0.00789927877485752,-0.937211275100708,-0.315028995275497,-0.149638786911964,-0.912481188774109,0.251718968153,0.322514891624451,-0.818491756916046,0.432856231927872,0.377765446901321,-0.92054671049118,0.322584748268127,0.220301777124405,-0.912481188774109,0.251718968153,0.322514891624451,-0.92054671049118,0.322584748268127,0.220301777124405,-0.967395067214966,0.110110007226467,0.22808501124382,-0.915175020694733,-0.307688146829605,0.26035150885582,-0.912481188774109,0.251718968153,0.322514891624451,-0.967395067214966,0.110110007226467,0.22808501124382,-0.92054671049118,0.322584748268127,0.220301777124405,-0.959529995918274,0.228084981441498,0.165164992213249,-0.967395067214966,0.110110007226467,0.22808501124382,-0.915175020694733,-0.307688146829605,0.26035150885582,-0.967395067214966,0.110110007226467,0.22808501124382,-0.992741703987122,-0.0630312189459801,0.10242572426796,-0.967395067214966,0.110110007226467,0.22808501124382,-0.959529995918274,0.228084981441498,0.165164992213249,-0.992741703987122,-0.0630312189459801,0.10242572426796,-0.810521245002747,-0.299027264118195,-0.503624856472015,-0.810923099517822,-0.535366714000702,-0.23619119822979,-0.694033145904541,-0.528411567211151,-0.488977909088135,-0.86094081401825,-0.45811527967453,-0.221159100532532,-0.810923099517822,-0.535366714000702,-0.23619119822979,-0.810521245002747,-0.299027264118195,-0.503624856472015,-0.810923099517822,-0.535366714000702,-0.23619119822979,-0.86094081401825,-0.45811527967453,-0.221159100532532,
- -0.867730259895325,-0.496972799301147,0.00788845680654049,-0.86094081401825,-0.45811527967453,-0.221159100532532,-0.875755071640015,-0.473381131887436,-0.0946762263774872,-0.867730259895325,-0.496972799301147,0.00788845680654049,-0.86094081401825,-0.45811527967453,-0.221159100532532,-0.904810965061188,-0.409131914377213,-0.118018828332424,-0.875755071640015,-0.473381131887436,-0.0946762263774872,-0.810521245002747,-0.299027264118195,-0.503624856472015,-0.897860586643219,-0.299286872148514,-0.322914779186249,-0.86094081401825,-0.45811527967453,-0.221159100532532,-0.904810965061188,-0.409131914377213,-0.118018828332424,-0.86094081401825,-0.45811527967453,-0.221159100532532,-0.897860586643219,-0.299286872148514,-0.322914779186249,-0.897860586643219,-0.299286872148514,-0.322914779186249,-0.810521245002747,-0.299027264118195,-0.503624856472015,-0.86539089679718,-0.188812553882599,-0.464164197444916,-0.907172560691834,-0.212988346815109,-0.362869024276733,-0.904810965061188,-0.409131914377213,-0.118018828332424,-0.897860586643219,-0.299286872148514,-0.322914779186249,-0.881452679634094,-0.1888827085495,-0.432856231927872,-0.897860586643219,-0.299286872148514,-0.322914779186249,-0.86539089679718,-0.188812553882599,-0.464164197444916,-0.897860586643219,-0.299286872148514,-0.322914779186249,-0.881452679634094,-0.1888827085495,-0.432856231927872,-0.907172560691834,-0.212988346815109,-0.362869024276733,-0.811099052429199,-0.425236403942108,-0.401612162590027,-0.813321232795715,-0.576431572437286,-0.0789632275700569,-0.692484200000763,-0.645269334316254,-0.322634667158127,-0.859093725681305,-0.504422008991241,-0.0866975337266922,-0.813321232795715,-0.576431572437286,-0.0789632275700569,-0.811099052429199,-0.425236403942108,-0.401612162590027,-0.813321232795715,-0.576431572437286,-0.0789632275700569,-0.859093725681305,-0.504422008991241,-0.0866975337266922,-0.867973446846008,-0.473440080881119,0.14992268383503,-0.859093725681305,-0.504422008991241,-0.0866975337266922,-0.8757004737854,-0.481240808963776,0.0394459664821625,-0.867973446846008,-0.473440080881119,0.14992268383503,
- -0.859093725681305,-0.504422008991241,-0.0866975337266922,-0.905147194862366,-0.425025671720505,0.00787084549665451,-0.8757004737854,-0.481240808963776,0.0394459664821625,-0.811099052429199,-0.425236403942108,-0.401612162590027,-0.898892641067505,-0.37848111987114,-0.22078064084053,-0.859093725681305,-0.504422008991241,-0.0866975337266922,-0.905147194862366,-0.425025671720505,0.00787084549665451,-0.859093725681305,-0.504422008991241,-0.0866975337266922,-0.898892641067505,-0.37848111987114,-0.22078064084053,-0.898892641067505,-0.37848111987114,-0.22078064084053,-0.811099052429199,-0.425236403942108,-0.401612162590027,-0.864241719245911,-0.314269721508026,-0.392837136983871,-0.905905067920685,-0.307219982147217,-0.291465133428574,-0.905147194862366,-0.425025671720505,0.00787084549665451,-0.898892641067505,-0.37848111987114,-0.22078064084053,-0.880471587181091,-0.306592792272568,-0.361622273921967,-0.898892641067505,-0.37848111987114,-0.22078064084053,-0.864241719245911,-0.314269721508026,-0.392837136983871,-0.898892641067505,-0.37848111987114,-0.22078064084053,-0.880471587181091,-0.306592792272568,-0.361622273921967,-0.905905067920685,-0.307219982147217,-0.291465133428574,-0.811779022216797,-0.543813109397888,-0.212796464562416,-0.811325490474701,-0.567140161991119,0.14178504049778,-0.694097816944122,-0.717760264873505,-0.0552123263478279,-0.860484600067139,-0.497344315052032,0.110520958900452,-0.811325490474701,-0.567140161991119,0.14178504049778,-0.811779022216797,-0.543813109397888,-0.212796464562416,-0.811325490474701,-0.567140161991119,0.14178504049778,-0.860484600067139,-0.497344315052032,0.110520958900452,-0.866894543170929,-0.386162102222443,0.315234363079071,-0.860484600067139,-0.497344315052032,0.110520958900452,-0.875482559204102,-0.433797657489777,0.212955221533775,-0.866894543170929,-0.386162102222443,0.315234363079071,-0.860484600067139,-0.497344315052032,0.110520958900452,-0.904474973678589,-0.393249988555908,0.165164992213249,-0.875482559204102,-0.433797657489777,0.212955221533775,-0.811779022216797,-0.543813109397888,-0.212796464562416,
- -0.898864686489105,-0.433662801980972,-0.0630782246589661,-0.860484600067139,-0.497344315052032,0.110520958900452,-0.904474973678589,-0.393249988555908,0.165164992213249,-0.860484600067139,-0.497344315052032,0.110520958900452,-0.898864686489105,-0.433662801980972,-0.0630782246589661,-0.898864686489105,-0.433662801980972,-0.0630782246589661,-0.811779022216797,-0.543813109397888,-0.212796464562416,-0.864321768283844,-0.440018355846405,-0.243581593036652,-0.905624091625214,-0.393749624490738,-0.157499849796295,-0.904474973678589,-0.393249988555908,0.165164992213249,-0.898864686489105,-0.433662801980972,-0.0630782246589661,-0.881671130657196,-0.417219400405884,-0.220417782664299,-0.898864686489105,-0.433662801980972,-0.0630782246589661,-0.864321768283844,-0.440018355846405,-0.243581593036652,-0.898864686489105,-0.433662801980972,-0.0630782246589661,-0.881671130657196,-0.417219400405884,-0.220417782664299,-0.905624091625214,-0.393749624490738,-0.157499849796295,-0.810521245002747,-0.582316279411316,-0.0629531070590019,-0.810998499393463,-0.511795163154602,0.28345575928688,-0.693537175655365,-0.709299385547638,0.126097664237022,-0.860913932323456,-0.450202703475952,0.236948788166046,-0.810998499393463,-0.511795163154602,0.28345575928688,-0.810521245002747,-0.582316279411316,-0.0629531070590019,-0.810998499393463,-0.511795163154602,0.28345575928688,-0.860913932323456,-0.450202703475952,0.236948788166046,-0.867730259895325,-0.291872918605804,0.40231129527092,-0.860913932323456,-0.450202703475952,0.236948788166046,-0.87651914358139,-0.36324217915535,0.315862745046616,-0.867730259895325,-0.291872918605804,0.40231129527092,-0.860913932323456,-0.450202703475952,0.236948788166046,-0.904558897018433,-0.33822637796402,0.259569078683853,-0.87651914358139,-0.36324217915535,0.315862745046616,-0.810521245002747,-0.582316279411316,-0.0629531070590019,-0.896554529666901,-0.440412759780884,0.0471870787441731,-0.860913932323456,-0.450202703475952,0.236948788166046,-0.904558897018433,-0.33822637796402,0.259569078683853,-0.860913932323456,-0.450202703475952,0.236948788166046,
- -0.896554529666901,-0.440412759780884,0.0471870787441731,-0.896554529666901,-0.440412759780884,0.0471870787441731,-0.810521245002747,-0.582316279411316,-0.0629531070590019,-0.864241719245911,-0.487118065357208,-0.125707879662514,-0.907172560691834,-0.418088227510452,-0.0473307408392429,-0.904558897018433,-0.33822637796402,0.259569078683853,-0.896554529666901,-0.440412759780884,0.0471870787441731,-0.879385352134705,-0.463247627019882,-0.109923169016838,-0.896554529666901,-0.440412759780884,0.0471870787441731,-0.864241719245911,-0.487118065357208,-0.125707879662514,-0.896554529666901,-0.440412759780884,0.0471870787441731,-0.879385352134705,-0.463247627019882,-0.109923169016838,-0.907172560691834,-0.418088227510452,-0.0473307408392429,-0.811325490474701,-0.567140161991119,0.14178504049778,-0.813042461872101,-0.378893584012985,0.442042529582977,-0.694898068904877,-0.61593234539032,0.371138751506805,-0.860806524753571,-0.339584231376648,0.37907075881958,-0.813042461872101,-0.378893584012985,0.442042529582977,-0.811325490474701,-0.567140161991119,0.14178504049778,-0.813042461872101,-0.378893584012985,0.442042529582977,-0.860806524753571,-0.339584231376648,0.37907075881958,-0.866652429103851,-0.133937194943428,0.48059818148613,-0.860806524753571,-0.339584231376648,0.37907075881958,-0.875400960445404,-0.228708356618881,0.42587074637413,-0.866652429103851,-0.133937194943428,0.48059818148613,-0.860806524753571,-0.339584231376648,0.37907075881958,-0.905624091625214,-0.220499783754349,0.36224964261055,-0.875400960445404,-0.228708356618881,0.42587074637413,-0.811325490474701,-0.567140161991119,0.14178504049778,-0.897860586643219,-0.393798530101776,0.196899265050888,-0.860806524753571,-0.339584231376648,0.37907075881958,-0.905624091625214,-0.220499783754349,0.36224964261055,-0.860806524753571,-0.339584231376648,0.37907075881958,-0.897860586643219,-0.393798530101776,0.196899265050888,-0.897860586643219,-0.393798530101776,0.196899265050888,-0.811325490474701,-0.567140161991119,0.14178504049778,-0.863043904304504,-0.502134621143341,0.0549209751188755,
- -0.906383275985718,-0.409842848777771,0.102460712194443,-0.905624091625214,-0.220499783754349,0.36224964261055,-0.897860586643219,-0.393798530101776,0.196899265050888,-0.879737913608551,-0.471288174390793,0.0628384202718735,-0.897860586643219,-0.393798530101776,0.196899265050888,-0.863043904304504,-0.502134621143341,0.0549209751188755,-0.897860586643219,-0.393798530101776,0.196899265050888,-0.879737913608551,-0.471288174390793,0.0628384202718735,-0.906383275985718,-0.409842848777771,0.102460712194443,-0.795867919921875,-0.378234267234802,-0.472792863845825,-0.929364383220673,-0.20477519929409,-0.307162821292877,-0.851556122303009,-0.110386908054352,-0.512510597705841,-0.795867919921875,-0.378234267234802,-0.472792863845825,-0.891617596149445,-0.418192327022552,-0.173589274287224,-0.929364383220673,-0.20477519929409,-0.307162821292877,-0.851556122303009,-0.110386908054352,-0.512510597705841,-0.929364383220673,-0.20477519929409,-0.307162821292877,-0.956021547317505,0.0237030126154423,-0.292337149381638,-0.929364383220673,-0.20477519929409,-0.307162821292877,-0.891617596149445,-0.418192327022552,-0.173589274287224,-0.981759488582611,-0.149227440357208,-0.117811143398285,-0.956021547317505,0.0237030126154423,-0.292337149381638,-0.929364383220673,-0.20477519929409,-0.307162821292877,-0.981759488582611,-0.149227440357208,-0.117811143398285,-0.890371203422546,-0.417607754468918,-0.181226000189781,-0.926010131835938,-0.274664014577866,-0.258968949317932,-0.856305599212646,-0.227824419736862,-0.46350485086441,-0.890371203422546,-0.417607754468918,-0.181226000189781,-0.970431208610535,-0.236690536141396,0.047338105738163,-0.926010131835938,-0.274664014577866,-0.258968949317932,-0.856305599212646,-0.227824419736862,-0.46350485086441,-0.926010131835938,-0.274664014577866,-0.258968949317932,-0.951664984226227,-0.0157299991697073,-0.306734979152679,-0.926010131835938,-0.274664014577866,-0.258968949317932,-0.970431208610535,-0.236690536141396,0.047338105738163,-0.996791481971741,-0.0156975034624338,-0.0784875229001045,-0.926010131835938,-0.274664014577866,-0.258968949317932,
- -0.996791481971741,-0.0156975034624338,-0.0784875229001045,-0.951664984226227,-0.0157299991697073,-0.306734979152679,-0.88356214761734,-0.394447386264801,-0.252446323633194,-0.944530606269836,-0.236132651567459,-0.228261545300484,-0.920062720775604,-0.0707740485668182,-0.385325402021408,-0.88356214761734,-0.394447386264801,-0.252446323633194,-0.925582826137543,-0.376508295536041,0.0392196103930473,-0.944530606269836,-0.236132651567459,-0.228261545300484,-0.920062720775604,-0.0707740485668182,-0.385325402021408,-0.944530606269836,-0.236132651567459,-0.228261545300484,-0.992002964019775,0.0078730396926403,-0.125968635082245,-0.944530606269836,-0.236132651567459,-0.228261545300484,-0.925582826137543,-0.376508295536041,0.0392196103930473,-0.988546967506409,-0.133375376462936,0.0706104934215546,-0.944530606269836,-0.236132651567459,-0.228261545300484,-0.988546967506409,-0.133375376462936,0.0706104934215546,-0.992002964019775,0.0078730396926403,-0.125968635082245,-0.996179699897766,-0.0869680717587471,-0.00790618825703859,-0.987132668495178,-0.150044173002243,0.0552794300019741,-0.990071713924408,0.0628616958856583,0.125723391771317,-0.938113749027252,-0.338982254266739,0.0709497779607773,-0.987132668495178,-0.150044173002243,0.0552794300019741,-0.996179699897766,-0.0869680717587471,-0.00790618825703859,-0.991757094860077,0.125937417149544,-0.0236132647842169,-0.996179699897766,-0.0869680717587471,-0.00790618825703859,-0.990071713924408,0.0628616958856583,0.125723391771317,-0.996179699897766,-0.0869680717587471,-0.00790618825703859,-0.97369521856308,-0.00785238109529018,-0.227719038724899,-0.938113749027252,-0.338982254266739,0.0709497779607773,-0.991757094860077,0.125937417149544,-0.0236132647842169,-0.97369521856308,-0.00785238109529018,-0.227719038724899,-0.996179699897766,-0.0869680717587471,-0.00790618825703859,-0.977074861526489,-0.165472343564034,-0.133953809738159,-0.938113749027252,-0.338982254266739,0.0709497779607773,-0.97369521856308,-0.00785238109529018,-0.227719038724899,-0.883095145225525,0.197119444608688,-0.42577800154686,
- -0.97369521856308,-0.00785238109529018,-0.227719038724899,-0.991757094860077,0.125937417149544,-0.0236132647842169,-0.977074861526489,-0.165472343564034,-0.133953809738159,-0.97369521856308,-0.00785238109529018,-0.227719038724899,-0.883095145225525,0.197119444608688,-0.42577800154686,-0.870461165904999,-0.423467606306076,0.250943750143051,-0.966707527637482,-0.188625857234001,-0.172907039523125,-0.891478836536407,-0.449684023857117,-0.0552243553102016,-0.870461165904999,-0.423467606306076,0.250943750143051,-0.966528534889221,-0.196448892354965,0.165017053484917,-0.966707527637482,-0.188625857234001,-0.172907039523125,-0.891478836536407,-0.449684023857117,-0.0552243553102016,-0.966707527637482,-0.188625857234001,-0.172907039523125,-0.926838159561157,-0.102109283208847,-0.361309796571732,-0.966707527637482,-0.188625857234001,-0.172907039523125,-0.966528534889221,-0.196448892354965,0.165017053484917,-0.978716969490051,-0.0789287835359573,-0.189429089426994,-0.966707527637482,-0.188625857234001,-0.172907039523125,-0.978716969490051,-0.0789287835359573,-0.189429089426994,-0.926838159561157,-0.102109283208847,-0.361309796571732,-0.966528534889221,-0.196448892354965,0.165017053484917,-0.990285873413086,-0.1021723523736,0.0943129435181618,-0.978716969490051,-0.0789287835359573,-0.189429089426994,-0.974958479404449,0.0314502716064453,-0.220151916146278,-0.926838159561157,-0.102109283208847,-0.361309796571732,-0.978716969490051,-0.0789287835359573,-0.189429089426994,-0.978716969490051,-0.0789287835359573,-0.189429089426994,-0.990285873413086,-0.1021723523736,0.0943129435181618,-0.974958479404449,0.0314502716064453,-0.220151916146278,-0.953583955764771,-0.299472659826279,-0.0315234363079071,-0.929854869842529,0.0630410090088844,-0.36248579621315,-0.917691648006439,-0.22942291200161,-0.324356526136398,-0.953583955764771,-0.299472659826279,-0.0315234363079071,-0.99737536907196,-0.0471200942993164,-0.0549734458327293,-0.929854869842529,0.0630410090088844,-0.36248579621315,-0.917691648006439,-0.22942291200161,-0.324356526136398,
- -0.929854869842529,0.0630410090088844,-0.36248579621315,-0.842728734016418,0.18902325630188,-0.504061996936798,-0.929854869842529,0.0630410090088844,-0.36248579621315,-0.99737536907196,-0.0471200942993164,-0.0549734458327293,-0.921831548213959,0.1733358502388,-0.3466717004776,-0.921831548213959,0.1733358502388,-0.3466717004776,-0.842728734016418,0.18902325630188,-0.504061996936798,-0.929854869842529,0.0630410090088844,-0.36248579621315,-0.99737536907196,-0.0471200942993164,-0.0549734458327293,-0.994224011898041,0.0631253346800804,-0.0867973417043686,-0.921831548213959,0.1733358502388,-0.3466717004776,-0.894895553588867,0.282598584890366,-0.345398306846619,-0.842728734016418,0.18902325630188,-0.504061996936798,-0.921831548213959,0.1733358502388,-0.3466717004776,-0.921831548213959,0.1733358502388,-0.3466717004776,-0.994224011898041,0.0631253346800804,-0.0867973417043686,-0.894895553588867,0.282598584890366,-0.345398306846619,-0.98772656917572,-0.148942902684212,0.0470345988869667,-0.972370088100433,-0.205541640520096,0.110676273703575,-0.982032120227814,-0.00785625725984573,0.188550174236298,-0.910651624202728,-0.400372684001923,0.102055780589581,-0.972370088100433,-0.205541640520096,0.110676273703575,-0.98772656917572,-0.148942902684212,0.0470345988869667,-0.996730208396912,0.0706344172358513,0.0392413474619389,-0.98772656917572,-0.148942902684212,0.0470345988869667,-0.982032120227814,-0.00785625725984573,0.188550174236298,-0.98772656917572,-0.148942902684212,0.0470345988869667,-0.983368337154388,-0.0550686232745647,-0.173072829842567,-0.910651624202728,-0.400372684001923,0.102055780589581,-0.996730208396912,0.0706344172358513,0.0392413474619389,-0.983368337154388,-0.0550686232745647,-0.173072829842567,-0.98772656917572,-0.148942902684212,0.0470345988869667,-0.970672905445099,-0.220966190099716,-0.0946997925639153,-0.910651624202728,-0.400372684001923,0.102055780589581,-0.983368337154388,-0.0550686232745647,-0.173072829842567,-0.921831548213959,0.1733358502388,-0.3466717004776,-0.983368337154388,-0.0550686232745647,-0.173072829842567,
- -0.996730208396912,0.0706344172358513,0.0392413474619389,-0.970672905445099,-0.220966190099716,-0.0946997925639153,-0.983368337154388,-0.0550686232745647,-0.173072829842567,-0.921831548213959,0.1733358502388,-0.3466717004776,-0.923639535903931,-0.323668539524078,0.205253228545189,-0.955812692642212,-0.150086298584938,-0.252776920795441,-0.914208173751831,-0.394055247306824,-0.0945732668042183,-0.923639535903931,-0.323668539524078,0.205253228545189,-0.99138867855072,-0.110154293477535,0.0708134695887566,-0.955812692642212,-0.150086298584938,-0.252776920795441,-0.914208173751831,-0.394055247306824,-0.0945732668042183,-0.955812692642212,-0.150086298584938,-0.252776920795441,-0.888855040073395,-0.0943916887044907,-0.448360502719879,-0.955812692642212,-0.150086298584938,-0.252776920795441,-0.99138867855072,-0.110154293477535,0.0708134695887566,-0.957397162914276,-0.0474742390215397,-0.284845411777496,-0.955812692642212,-0.150086298584938,-0.252776920795441,-0.957397162914276,-0.0474742390215397,-0.284845411777496,-0.888855040073395,-0.0943916887044907,-0.448360502719879,-0.99138867855072,-0.110154293477535,0.0708134695887566,-0.999473392963409,-0.0314794778823853,-0.00786986947059631,-0.957397162914276,-0.0474742390215397,-0.284845411777496,-0.938609600067139,0.0630998015403748,-0.339161455631256,-0.888855040073395,-0.0943916887044907,-0.448360502719879,-0.957397162914276,-0.0474742390215397,-0.284845411777496,-0.957397162914276,-0.0474742390215397,-0.284845411777496,-0.999473392963409,-0.0314794778823853,-0.00786986947059631,-0.938609600067139,0.0630998015403748,-0.339161455631256,-0.989522039890289,0.0549734458327293,-0.133506938815117,-0.99422413110733,-0.0315626710653305,-0.102578677237034,-0.991020619869232,0.117978647351265,0.062921941280365,-0.951988935470581,-0.13375049829483,-0.275368690490723,-0.99422413110733,-0.0315626710653305,-0.102578677237034,-0.989522039890289,0.0549734458327293,-0.133506938815117,-0.967305243015289,0.251656651496887,-0.0314570814371109,-0.989522039890289,0.0549734458327293,-0.133506938815117,
- -0.991020619869232,0.117978647351265,0.062921941280365,-0.989522039890289,0.0549734458327293,-0.133506938815117,-0.934174239635468,0.227655917406082,-0.274757117033005,-0.951988935470581,-0.13375049829483,-0.275368690490723,-0.967305243015289,0.251656651496887,-0.0314570814371109,-0.934174239635468,0.227655917406082,-0.274757117033005,-0.989522039890289,0.0549734458327293,-0.133506938815117,-0.871077299118042,0.109865605831146,-0.478700160980225,-0.951988935470581,-0.13375049829483,-0.275368690490723,-0.934174239635468,0.227655917406082,-0.274757117033005,-0.81278932094574,0.512925267219543,-0.276190519332886,-0.934174239635468,0.227655917406082,-0.274757117033005,-0.967305243015289,0.251656651496887,-0.0314570814371109,-0.871077299118042,0.109865605831146,-0.478700160980225,-0.934174239635468,0.227655917406082,-0.274757117033005,-0.81278932094574,0.512925267219543,-0.276190519332886,-0.859708070755005,-0.496895492076874,0.118308454751968,-0.896859645843506,-0.440562635660172,-0.0393359512090683,-0.819914937019348,-0.528214454650879,-0.220746338367462,-0.859708070755005,-0.496895492076874,0.118308454751968,-0.959945738315582,-0.220315411686897,0.173104971647263,-0.896859645843506,-0.440562635660172,-0.0393359512090683,-0.819914937019348,-0.528214454650879,-0.220746338367462,-0.896859645843506,-0.440562635660172,-0.0393359512090683,-0.931678950786591,-0.268449872732162,-0.244763121008873,-0.896859645843506,-0.440562635660172,-0.0393359512090683,-0.959945738315582,-0.220315411686897,0.173104971647263,-0.990071713924408,-0.125723391771317,-0.0628616958856583,-0.896859645843506,-0.440562635660172,-0.0393359512090683,-0.990071713924408,-0.125723391771317,-0.0628616958856583,-0.931678950786591,-0.268449872732162,-0.244763121008873,-0.73896723985672,-0.448097139596939,-0.503126621246338,-0.885899901390076,-0.235194683074951,-0.399830937385559,-0.775285184383392,-0.187947914004326,-0.602999567985535,-0.73896723985672,-0.448097139596939,-0.503126621246338,-0.880118131637573,-0.416484475135803,-0.227887719869614,-0.885899901390076,-0.235194683074951,-0.399830937385559,
- -0.775285184383392,-0.187947914004326,-0.602999567985535,-0.885899901390076,-0.235194683074951,-0.399830937385559,-0.902023196220398,-0.0156873594969511,-0.431402415037155,-0.885899901390076,-0.235194683074951,-0.399830937385559,-0.880118131637573,-0.416484475135803,-0.227887719869614,-0.960153818130493,-0.149532154202461,-0.236103400588036,-0.902023196220398,-0.0156873594969511,-0.431402415037155,-0.885899901390076,-0.235194683074951,-0.399830937385559,-0.960153818130493,-0.149532154202461,-0.236103400588036,-0.850710213184357,-0.496247619390488,-0.173292830586433,-0.892201066017151,-0.36319687962532,-0.268449872732162,-0.809769451618195,-0.338059097528458,-0.479572206735611,-0.850710213184357,-0.496247619390488,-0.173292830586433,-0.9539395570755,-0.299584299325943,0.0157675947993994,-0.892201066017151,-0.36319687962532,-0.268449872732162,-0.809769451618195,-0.338059097528458,-0.479572206735611,-0.892201066017151,-0.36319687962532,-0.268449872732162,-0.926067173480988,-0.109872378408909,-0.361009240150452,-0.892201066017151,-0.36319687962532,-0.268449872732162,-0.9539395570755,-0.299584299325943,0.0157675947993994,-0.987440645694733,-0.0947943031787872,-0.126392394304276,-0.892201066017151,-0.36319687962532,-0.268449872732162,-0.987440645694733,-0.0947943031787872,-0.126392394304276,-0.926067173480988,-0.109872378408909,-0.361009240150452,-0.786792039871216,-0.590094029903412,-0.180962175130844,-0.827130734920502,-0.480523556470871,-0.291465103626251,-0.739241421222687,-0.45612770318985,-0.495449066162109,-0.786792039871216,-0.590094029903412,-0.180962175130844,-0.92226105928421,-0.386246085166931,-0.0157651454210281,-0.827130734920502,-0.480523556470871,-0.291465103626251,-0.739241421222687,-0.45612770318985,-0.495449066162109,-0.827130734920502,-0.480523556470871,-0.291465103626251,-0.882519245147705,-0.244268715381622,-0.401861429214478,-0.827130734920502,-0.480523556470871,-0.291465103626251,-0.92226105928421,-0.386246085166931,-0.0157651454210281,-0.963171243667603,-0.205265983939171,-0.173686623573303,-0.827130734920502,-0.480523556470871,-0.291465103626251,
- -0.963171243667603,-0.205265983939171,-0.173686623573303,-0.882519245147705,-0.244268715381622,-0.401861429214478,-0.776715517044067,-0.486427903175354,-0.400126159191132,-0.829114019870758,-0.331645578145981,-0.450090438127518,-0.741353511810303,-0.228715434670448,-0.630939126014709,-0.776715517044067,-0.486427903175354,-0.400126159191132,-0.912509322166443,-0.37759006023407,-0.157329201698303,-0.829114019870758,-0.331645578145981,-0.450090438127518,-0.741353511810303,-0.228715434670448,-0.630939126014709,-0.829114019870758,-0.331645578145981,-0.450090438127518,-0.890067338943481,-0.0787670239806175,-0.448972016572952,-0.829114019870758,-0.331645578145981,-0.450090438127518,-0.912509322166443,-0.37759006023407,-0.157329201698303,-0.963021218776703,-0.142085090279579,-0.228914856910706,-0.829114019870758,-0.331645578145981,-0.450090438127518,-0.963021218776703,-0.142085090279579,-0.228914856910706,-0.890067338943481,-0.0787670239806175,-0.448972016572952,-0.723714292049408,-0.283192545175552,-0.629316747188568,-0.755063354969025,-0.117978647351265,-0.644949913024902,-0.623712301254272,0.00789509247988462,-0.781614124774933,-0.723714292049408,-0.283192545175552,-0.629316747188568,-0.887510597705841,-0.227768197655678,-0.40055787563324,-0.755063354969025,-0.117978647351265,-0.644949913024902,-0.623712301254272,0.00789509247988462,-0.781614124774933,-0.755063354969025,-0.117978647351265,-0.644949913024902,-0.791919410228729,0.133293360471725,-0.595899760723114,-0.755063354969025,-0.117978647351265,-0.644949913024902,-0.887510597705841,-0.227768197655678,-0.40055787563324,-0.912255346775055,0.0235928110778332,-0.408942043781281,-0.755063354969025,-0.117978647351265,-0.644949913024902,-0.912255346775055,0.0235928110778332,-0.408942043781281,-0.791919410228729,0.133293360471725,-0.595899760723114,-0.615012764930725,-0.788477897644043,0.00788477901369333,-0.803623080253601,-0.590899348258972,-0.0709079131484032,-0.67213100194931,-0.695853352546692,-0.253037571907043,-0.615012764930725,-0.788477897644043,0.00788477901369333,
- -0.794487833976746,-0.582100033760071,0.1730567663908,-0.803623080253601,-0.590899348258972,-0.0709079131484032,-0.67213100194931,-0.695853352546692,-0.253037571907043,-0.803623080253601,-0.590899348258972,-0.0709079131484032,-0.838213264942169,-0.474460333585739,-0.268860846757889,-0.803623080253601,-0.590899348258972,-0.0709079131484032,-0.794487833976746,-0.582100033760071,0.1730567663908,-0.90472686290741,-0.424828261137009,-0.0314687602221966,-0.838213264942169,-0.474460333585739,-0.268860846757889,-0.803623080253601,-0.590899348258972,-0.0709079131484032,-0.90472686290741,-0.424828261137009,-0.0314687602221966,-0.740065693855286,-0.30704852938652,-0.598351001739502,-0.810395836830139,-0.149490505456924,-0.566490292549133,-0.741353511810303,0.0315469577908516,-0.670372843742371,-0.740065693855286,-0.30704852938652,-0.598351001739502,-0.874639570713043,-0.346704006195068,-0.338824331760406,-0.810395836830139,-0.149490505456924,-0.566490292549133,-0.741353511810303,0.0315469577908516,-0.670372843742371,-0.810395836830139,-0.149490505456924,-0.566490292549133,-0.898864686489105,0.0630782246589661,-0.433662801980972,-0.810395836830139,-0.149490505456924,-0.566490292549133,-0.874639570713043,-0.346704006195068,-0.338824331760406,-0.952637791633606,-0.110222548246384,-0.28342941403389,-0.810395836830139,-0.149490505456924,-0.566490292549133,-0.952637791633606,-0.110222548246384,-0.28342941403389,-0.898864686489105,0.0630782246589661,-0.433662801980972,-0.732737958431244,-0.677585601806641,0.0630312263965607,-0.892590641975403,-0.450244843959808,-0.0236970968544483,-0.789287865161896,-0.584073066711426,-0.189429089426994,-0.732737958431244,-0.677585601806641,0.0630312263965607,-0.8724485039711,-0.432294309139252,0.227936983108521,-0.892590641975403,-0.450244843959808,-0.0236970968544483,-0.789287865161896,-0.584073066711426,-0.189429089426994,-0.892590641975403,-0.450244843959808,-0.0236970968544483,-0.912057936191559,-0.345953017473221,-0.220151916146278,-0.892590641975403,-0.450244843959808,-0.0236970968544483,-0.8724485039711,-0.432294309139252,0.227936983108521,
- -0.96119624376297,-0.275752991437912,0.00787865743041039,-0.912057936191559,-0.345953017473221,-0.220151916146278,-0.892590641975403,-0.450244843959808,-0.0236970968544483,-0.96119624376297,-0.275752991437912,0.00787865743041039,-0.942518174648285,0.164940670132637,-0.290609776973724,-0.928989887237549,-0.149583116173744,-0.338530212640762,-0.977317631244659,-0.149750277400017,-0.149750277400017,-0.942518174648285,0.164940670132637,-0.290609776973724,-0.977317631244659,-0.149750277400017,-0.149750277400017,-0.996392607688904,0.0470736660063267,-0.0706104934215546,-0.928989887237549,-0.149583116173744,-0.338530212640762,-0.920062720775604,-0.385325402021408,-0.0707740485668182,-0.977317631244659,-0.149750277400017,-0.149750277400017,-0.977317631244659,-0.149750277400017,-0.149750277400017,-0.982062458992004,-0.188555985689163,-4.18678393486001e-017,-0.996392607688904,0.0470736660063267,-0.0706104934215546,-0.977317631244659,-0.149750277400017,-0.149750277400017,-0.920062720775604,-0.385325402021408,-0.0707740485668182,-0.982062458992004,-0.188555985689163,-4.18678393486001e-017,-0.996392607688904,0.0470736660063267,-0.0706104934215546,-0.982062458992004,-0.188555985689163,-4.18678393486001e-017,-0.998607933521271,-0.047178328037262,0.023589164018631,-0.920062720775604,-0.385325402021408,-0.0707740485668182,-0.948239743709564,-0.30563098192215,0.0862036123871803,-0.982062458992004,-0.188555985689163,-4.18678393486001e-017,-0.982062458992004,-0.188555985689163,-4.18678393486001e-017,-0.948239743709564,-0.30563098192215,0.0862036123871803,-0.998607933521271,-0.047178328037262,0.023589164018631,-0.68374764919281,-0.55014181137085,0.479409337043762,-0.85728508234024,-0.424710035324097,0.29100501537323,-0.756962239742279,-0.615031778812408,0.22078064084053,-0.68374764919281,-0.55014181137085,0.479409337043762,-0.829450130462646,-0.268583834171295,0.48977056145668,-0.85728508234024,-0.424710035324097,0.29100501537323,-0.756962239742279,-0.615031778812408,0.22078064084053,-0.85728508234024,-0.424710035324097,0.29100501537323,
- -0.897860586643219,-0.43317836523056,0.0787597000598907,-0.85728508234024,-0.424710035324097,0.29100501537323,-0.829450130462646,-0.268583834171295,0.48977056145668,-0.940131485462189,-0.244908213615417,0.237007945775986,-0.897860586643219,-0.43317836523056,0.0787597000598907,-0.85728508234024,-0.424710035324097,0.29100501537323,-0.940131485462189,-0.244908213615417,0.237007945775986,-0.791846394538879,-0.407683283090591,0.454723685979843,-0.826336264610291,-0.472192168235779,0.306924909353256,-0.724229872226715,-0.653381288051605,0.220417782664299,-0.791846394538879,-0.407683283090591,0.454723685979843,-0.928989887237549,-0.181074306368828,0.322784632444382,-0.826336264610291,-0.472192168235779,0.306924909353256,-0.724229872226715,-0.653381288051605,0.220417782664299,-0.826336264610291,-0.472192168235779,0.306924909353256,-0.872367680072784,-0.487268418073654,0.0392958410084248,-0.826336264610291,-0.472192168235779,0.306924909353256,-0.928989887237549,-0.181074306368828,0.322784632444382,-0.959678411483765,-0.267451345920563,0.0865283831954002,-0.826336264610291,-0.472192168235779,0.306924909353256,-0.959678411483765,-0.267451345920563,0.0865283831954002,-0.872367680072784,-0.487268418073654,0.0392958410084248,-0.745976209640503,-0.408323794603348,0.526109516620636,-0.804572522640228,-0.457502037286758,0.378622382879257,-0.719463169574738,-0.640401244163513,0.268810391426086,-0.745976209640503,-0.408323794603348,0.526109516620636,-0.88866251707077,-0.173013955354691,0.424670577049255,-0.804572522640228,-0.457502037286758,0.378622382879257,-0.719463169574738,-0.640401244163513,0.268810391426086,-0.804572522640228,-0.457502037286758,0.378622382879257,-0.880934476852417,-0.456198185682297,0.125847786664963,-0.804572522640228,-0.457502037286758,0.378622382879257,-0.88866251707077,-0.173013955354691,0.424670577049255,-0.951312065124512,-0.243724584579468,0.188690006732941,-0.804572522640228,-0.457502037286758,0.378622382879257,-0.951312065124512,-0.243724584579468,0.188690006732941,-0.880934476852417,-0.456198185682297,0.125847786664963,
- -0.729911506175995,-0.659274876117706,-0.180515751242638,-0.770769953727722,-0.558414995670319,-0.306735008955002,-0.660108983516693,-0.557949244976044,-0.50294017791748,-0.729911506175995,-0.659274876117706,-0.180515751242638,-0.896554529666901,-0.440412759780884,-0.0471870787441731,-0.770769953727722,-0.558414995670319,-0.306735008955002,-0.660108983516693,-0.557949244976044,-0.50294017791748,-0.770769953727722,-0.558414995670319,-0.306735008955002,-0.829114019870758,-0.331645578145981,-0.450090438127518,-0.770769953727722,-0.558414995670319,-0.306735008955002,-0.896554529666901,-0.440412759780884,-0.0471870787441731,-0.927639722824097,-0.283008724451065,-0.243701964616776,-0.770769953727722,-0.558414995670319,-0.306735008955002,-0.927639722824097,-0.283008724451065,-0.243701964616776,-0.829114019870758,-0.331645578145981,-0.450090438127518,-0.676389932632446,-0.731445014476776,0.0865150019526482,-0.855382263660431,-0.517937839031219,0.00784754380583763,-0.753828585147858,-0.636042833328247,-0.164899989962578,-0.676389932632446,-0.731445014476776,0.0865150019526482,-0.826362013816834,-0.503687262535095,0.251843631267548,-0.855382263660431,-0.517937839031219,0.00784754380583763,-0.753828585147858,-0.636042833328247,-0.164899989962578,-0.855382263660431,-0.517937839031219,0.00784754380583763,-0.896416008472443,-0.401028215885162,-0.188719168305397,-0.855382263660431,-0.517937839031219,0.00784754380583763,-0.826362013816834,-0.503687262535095,0.251843631267548,-0.936514437198639,-0.34627428650856,0.0550890862941742,-0.896416008472443,-0.401028215885162,-0.188719168305397,-0.855382263660431,-0.517937839031219,0.00784754380583763,-0.936514437198639,-0.34627428650856,0.0550890862941742,-0.795843243598938,-0.496417075395584,-0.346704006195068,-0.927639722824097,-0.283008724451065,-0.243701964616776,-0.852430999279022,-0.252572149038315,-0.45778700709343,-0.795843243598938,-0.496417075395584,-0.346704006195068,-0.891478836536407,-0.449684023857117,-0.0552243553102016,-0.927639722824097,-0.283008724451065,-0.243701964616776,
- -0.852430999279022,-0.252572149038315,-0.45778700709343,-0.927639722824097,-0.283008724451065,-0.243701964616776,-0.954830169677734,-0.0552381053566933,-0.29197284579277,-0.927639722824097,-0.283008724451065,-0.243701964616776,-0.891478836536407,-0.449684023857117,-0.0552243553102016,-0.981033563613892,-0.180510178208351,-0.0706344097852707,-0.954830169677734,-0.0552381053566933,-0.29197284579277,-0.927639722824097,-0.283008724451065,-0.243701964616776,-0.981033563613892,-0.180510178208351,-0.0706344097852707,-0.888305485248566,-0.455944418907166,-0.0550277754664421,-0.925468862056732,-0.337247133255005,-0.172545045614243,-0.855909526348114,-0.345504760742188,-0.384766638278961,-0.888305485248566,-0.455944418907166,-0.0550277754664421,-0.970763623714447,-0.213094443082809,0.110493414103985,-0.925468862056732,-0.337247133255005,-0.172545045614243,-0.855909526348114,-0.345504760742188,-0.384766638278961,-0.925468862056732,-0.337247133255005,-0.172545045614243,-0.951282560825348,-0.102203905582428,-0.290888071060181,-0.925468862056732,-0.337247133255005,-0.172545045614243,-0.970763623714447,-0.213094443082809,0.110493414103985,-0.997006475925446,-0.0314017795026302,-0.07065399736166,-0.925468862056732,-0.337247133255005,-0.172545045614243,-0.997006475925446,-0.0314017795026302,-0.07065399736166,-0.951282560825348,-0.102203905582428,-0.290888071060181,-0.883177518844604,-0.44947424530983,-0.134053722023964,-0.943712413311005,-0.290977984666824,-0.157285392284393,-0.9192955493927,-0.172858998179436,-0.353575229644775,-0.883177518844604,-0.44947424530983,-0.134053722023964,-0.927553713321686,-0.345867514610291,0.141491234302521,-0.943712413311005,-0.290977984666824,-0.157285392284393,-0.9192955493927,-0.172858998179436,-0.353575229644775,-0.943712413311005,-0.290977984666824,-0.157285392284393,-0.991542160511017,-0.0314775295555592,-0.125910118222237,-0.943712413311005,-0.290977984666824,-0.157285392284393,-0.927553713321686,-0.345867514610291,0.141491234302521,-0.98869913816452,-0.109855458140373,0.102008640766144,-0.943712413311005,-0.290977984666824,-0.157285392284393,
- -0.98869913816452,-0.109855458140373,0.102008640766144,-0.991542160511017,-0.0314775295555592,-0.125910118222237,-0.996086359024048,-0.0869599208235741,0.0158108938485384,-0.987440645694733,-0.126392394304276,0.0947943031787872,-0.989461004734039,0.0942343771457672,0.109940111637115,-0.937182307243347,-0.307143777608871,0.165385112166405,-0.987440645694733,-0.126392394304276,0.0947943031787872,-0.996086359024048,-0.0869599208235741,0.0158108938485384,-0.991020619869232,0.117978647351265,-0.062921941280365,-0.996086359024048,-0.0869599208235741,0.0158108938485384,-0.989461004734039,0.0942343771457672,0.109940111637115,-0.996086359024048,-0.0869599208235741,0.0158108938485384,-0.974657237529755,-0.07074124366045,-0.212223753333092,-0.937182307243347,-0.307143777608871,0.165385112166405,-0.991020619869232,0.117978647351265,-0.062921941280365,-0.974657237529755,-0.07074124366045,-0.212223753333092,-0.996086359024048,-0.0869599208235741,0.0158108938485384,-0.977226555347443,-0.197021469473839,-0.0788085907697678,-0.937182307243347,-0.307143777608871,0.165385112166405,-0.974657237529755,-0.07074124366045,-0.212223753333092,-0.885742247104645,0.071175716817379,-0.458687961101532,-0.974657237529755,-0.07074124366045,-0.212223753333092,-0.991020619869232,0.117978647351265,-0.062921941280365,-0.977226555347443,-0.197021469473839,-0.0788085907697678,-0.974657237529755,-0.07074124366045,-0.212223753333092,-0.885742247104645,0.071175716817379,-0.458687961101532,-0.872232973575592,-0.337892055511475,0.353607982397079,-0.967394948005676,-0.228084981441498,-0.110109992325306,-0.893734633922577,-0.442912757396698,0.0711823999881744,-0.872232973575592,-0.337892055511475,0.353607982397079,-0.966916620731354,-0.141499981284142,0.212249979376793,-0.967394948005676,-0.228084981441498,-0.110109992325306,-0.893734633922577,-0.442912757396698,0.0711823999881744,-0.967394948005676,-0.228084981441498,-0.110109992325306,-0.926238417625427,-0.196236968040466,-0.321828603744507,-0.967394948005676,-0.228084981441498,-0.110109992325306,-0.966916620731354,-0.141499981284142,0.212249979376793,
- -0.979327261447906,-0.126364797353745,-0.157956004142761,-0.967394948005676,-0.228084981441498,-0.110109992325306,-0.979327261447906,-0.126364797353745,-0.157956004142761,-0.926238417625427,-0.196236968040466,-0.321828603744507,-0.966916620731354,-0.141499981284142,0.212249979376793,-0.989918947219849,-0.0785649940371513,0.117847494781017,-0.979327261447906,-0.126364797353745,-0.157956004142761,-0.974958479404449,-0.0314502716064453,-0.220151916146278,-0.926238417625427,-0.196236968040466,-0.321828603744507,-0.979327261447906,-0.126364797353745,-0.157956004142761,-0.979327261447906,-0.126364797353745,-0.157956004142761,-0.989918947219849,-0.0785649940371513,0.117847494781017,-0.974958479404449,-0.0314502716064453,-0.220151916146278,-0.952608287334442,-0.299166232347488,0.0551095679402351,-0.93066418170929,-0.0473219081759453,-0.362801313400269,-0.91477644443512,-0.315440148115158,-0.252352118492126,-0.952608287334442,-0.299166232347488,0.0551095679402351,-0.99771386384964,-0.054992102086544,-0.0392800718545914,-0.93066418170929,-0.0473219081759453,-0.362801313400269,-0.91477644443512,-0.315440148115158,-0.252352118492126,-0.93066418170929,-0.0473219081759453,-0.362801313400269,-0.839764773845673,0.0392413437366486,-0.54153048992157,-0.93066418170929,-0.0473219081759453,-0.362801313400269,-0.99771386384964,-0.054992102086544,-0.0392800718545914,-0.922834634780884,0.0709872767329216,-0.378598839044571,-0.922834634780884,0.0709872767329216,-0.378598839044571,-0.839764773845673,0.0392413437366486,-0.54153048992157,-0.93066418170929,-0.0473219081759453,-0.362801313400269,-0.99771386384964,-0.054992102086544,-0.0392800718545914,-0.993945598602295,0.0394422858953476,-0.102549932897091,-0.922834634780884,0.0709872767329216,-0.378598839044571,-0.894868016242981,0.180543541908264,-0.408185392618179,-0.839764773845673,0.0392413437366486,-0.54153048992157,-0.922834634780884,0.0709872767329216,-0.378598839044571,-0.922834634780884,0.0709872767329216,-0.378598839044571,-0.993945598602295,0.0394422858953476,-0.102549932897091,-0.894868016242981,0.180543541908264,-0.408185392618179,
- -0.988334119319916,-0.125502735376358,0.0862831398844719,-0.973313391208649,-0.166175454854965,0.158262342214584,-0.981305718421936,0.0392522290349007,0.188410699367523,-0.911100924015045,-0.353444337844849,0.21206659078598,-0.973313391208649,-0.166175454854965,0.158262342214584,-0.988334119319916,-0.125502735376358,0.0862831398844719,-0.996791481971741,0.0784875229001045,0.0156975034624338,-0.988334119319916,-0.125502735376358,0.0862831398844719,-0.981305718421936,0.0392522290349007,0.188410699367523,-0.988334119319916,-0.125502735376358,0.0862831398844719,-0.984221458435059,-0.0944852605462074,-0.149601668119431,-0.911100924015045,-0.353444337844849,0.21206659078598,-0.996791481971741,0.0784875229001045,0.0156975034624338,-0.984221458435059,-0.0944852605462074,-0.149601668119431,-0.988334119319916,-0.125502735376358,0.0862831398844719,-0.971035838127136,-0.236838012933731,-0.0315783992409706,-0.911100924015045,-0.353444337844849,0.21206659078598,-0.984221458435059,-0.0944852605462074,-0.149601668119431,-0.922834634780884,0.0709872767329216,-0.378598839044571,-0.984221458435059,-0.0944852605462074,-0.149601668119431,-0.996791481971741,0.0784875229001045,0.0156975034624338,-0.971035838127136,-0.236838012933731,-0.0315783992409706,-0.984221458435059,-0.0944852605462074,-0.149601668119431,-0.922834634780884,0.0709872767329216,-0.378598839044571,-0.924706161022186,-0.25291109085083,0.284524977207184,-0.955216884613037,-0.213147565722466,-0.205253198742867,-0.915317356586456,-0.40242400765419,0.0157813336700201,-0.924706161022186,-0.25291109085083,0.284524977207184,-0.991634249687195,-0.0787011310458183,0.102311469614506,-0.955216884613037,-0.213147565722466,-0.205253198742867,-0.915317356586456,-0.40242400765419,0.0157813336700201,-0.955216884613037,-0.213147565722466,-0.205253198742867,-0.889075040817261,-0.220301777124405,-0.401263922452927,-0.955216884613037,-0.213147565722466,-0.205253198742867,-0.991634249687195,-0.0787011310458183,0.102311469614506,-0.957007884979248,-0.126546487212181,-0.261002153158188,-0.955216884613037,-0.213147565722466,-0.205253198742867,
- -0.957007884979248,-0.126546487212181,-0.261002153158188,-0.889075040817261,-0.220301777124405,-0.401263922452927,-0.991634249687195,-0.0787011310458183,0.102311469614506,-0.999504387378693,-0.0314804539084435,-6.99006495096098e-018,-0.957007884979248,-0.126546487212181,-0.261002153158188,-0.937211275100708,-0.0393786244094372,-0.346531927585602,-0.889075040817261,-0.220301777124405,-0.401263922452927,-0.957007884979248,-0.126546487212181,-0.261002153158188,-0.957007884979248,-0.126546487212181,-0.261002153158188,-0.999504387378693,-0.0314804539084435,-6.99006495096098e-018,-0.937211275100708,-0.0393786244094372,-0.346531927585602,-0.989827394485474,0.0157115459442139,-0.141403913497925,-0.993976533412933,-0.0552209168672562,-0.0946644321084023,-0.991757094860077,0.125937417149544,0.0236132647842169,-0.951900541782379,-0.204540595412254,-0.228141441941261,-0.993976533412933,-0.0552209168672562,-0.0946644321084023,-0.989827394485474,0.0157115459442139,-0.141403913497925,-0.966438949108124,0.235716819763184,-0.102143943309784,-0.989827394485474,0.0157115459442139,-0.141403913497925,-0.991757094860077,0.125937417149544,0.0236132647842169,-0.989827394485474,0.0157115459442139,-0.141403913497925,-0.935934960842133,0.14156998693943,-0.322465002536774,-0.951900541782379,-0.204540595412254,-0.228141441941261,-0.966438949108124,0.235716819763184,-0.102143943309784,-0.935934960842133,0.14156998693943,-0.322465002536774,-0.989827394485474,0.0157115459442139,-0.141403913497925,-0.872610211372375,-0.0314454138278961,-0.487403929233551,-0.951900541782379,-0.204540595412254,-0.228141441941261,-0.935934960842133,0.14156998693943,-0.322465002536774,-0.813803553581238,0.418753296136856,-0.402951270341873,-0.935934960842133,0.14156998693943,-0.322465002536774,-0.966438949108124,0.235716819763184,-0.102143943309784,-0.872610211372375,-0.0314454138278961,-0.487403929233551,-0.935934960842133,0.14156998693943,-0.322465002536774,-0.813803553581238,0.418753296136856,-0.402951270341873,-0.860618829727173,-0.442152768373489,0.252658724784851,
- -0.897276282310486,-0.432896435260773,0.086579293012619,-0.816446244716644,-0.573082506656647,-0.07065399736166,-0.860618829727173,-0.442152768373489,0.252658724784851,-0.960749089717865,-0.157499849796295,0.228374764323235,-0.897276282310486,-0.432896435260773,0.086579293012619,-0.816446244716644,-0.573082506656647,-0.07065399736166,-0.897276282310486,-0.432896435260773,0.086579293012619,-0.930317163467407,-0.331129819154739,-0.157680869102478,-0.897276282310486,-0.432896435260773,0.086579293012619,-0.960749089717865,-0.157499849796295,0.228374764323235,-0.989674627780914,-0.141382083296776,-0.0235636811703444,-0.897276282310486,-0.432896435260773,0.086579293012619,-0.989674627780914,-0.141382083296776,-0.0235636811703444,-0.930317163467407,-0.331129819154739,-0.157680869102478,-0.736694276332855,-0.572113692760468,-0.360509991645813,-0.887319028377533,-0.33765235543251,-0.314095228910446,-0.777194023132324,-0.345419585704803,-0.525979816913605,-0.736694276332855,-0.572113692760468,-0.360509991645813,-0.880118131637573,-0.463633626699448,-0.102156564593315,-0.887319028377533,-0.33765235543251,-0.314095228910446,-0.777194023132324,-0.345419585704803,-0.525979816913605,-0.887319028377533,-0.33765235543251,-0.314095228910446,-0.903023898601532,-0.133490487933159,-0.408323854207993,-0.887319028377533,-0.33765235543251,-0.314095228910446,-0.880118131637573,-0.463633626699448,-0.102156564593315,-0.961823344230652,-0.204978734254837,-0.181327342987061,-0.903023898601532,-0.133490487933159,-0.408323854207993,-0.887319028377533,-0.33765235543251,-0.314095228910446,-0.961823344230652,-0.204978734254837,-0.181327342987061,-0.852856040000916,-0.52118980884552,-0.0315872617065907,-0.890979886054993,-0.425778031349182,-0.157695561647415,-0.809094727039337,-0.463462024927139,-0.361343264579773,-0.852856040000916,-0.52118980884552,-0.0315872617065907,-0.955544471740723,-0.276397138834,0.102661795914173,-0.890979886054993,-0.425778031349182,-0.157695561647415,-0.809094727039337,-0.463462024927139,-0.361343264579773,-0.890979886054993,-0.425778031349182,-0.157695561647415,
- -0.927095651626587,-0.204275324940681,-0.314269721508026,-0.890979886054993,-0.425778031349182,-0.157695561647415,-0.955544471740723,-0.276397138834,0.102661795914173,-0.987440645694733,-0.126392394304276,-0.0947943031787872,-0.890979886054993,-0.425778031349182,-0.157695561647415,-0.987440645694733,-0.126392394304276,-0.0947943031787872,-0.927095651626587,-0.204275324940681,-0.314269721508026,-0.788477897644043,-0.615012764930725,-0.00788477901369333,-0.826310694217682,-0.543004155158997,-0.149522885680199,-0.737442016601563,-0.580539524555206,-0.34518563747406,-0.788477897644043,-0.615012764930725,-0.00788477901369333,-0.923754572868347,-0.371080905199051,0.0947440639138222,-0.826310694217682,-0.543004155158997,-0.149522885680199,-0.737442016601563,-0.580539524555206,-0.34518563747406,-0.826310694217682,-0.543004155158997,-0.149522885680199,-0.881016314029694,-0.346113562583923,-0.322514891624451,-0.826310694217682,-0.543004155158997,-0.149522885680199,-0.923754572868347,-0.371080905199051,0.0947440639138222,-0.963261306285858,-0.244763121008873,-0.110538177192211,-0.826310694217682,-0.543004155158997,-0.149522885680199,-0.963261306285858,-0.244763121008873,-0.110538177192211,-0.881016314029694,-0.346113562583923,-0.322514891624451,-0.778924107551575,-0.574358224868774,-0.251773446798325,-0.82692551612854,-0.448902398347855,-0.338645666837692,-0.740892827510834,-0.394091904163361,-0.543846845626831,-0.778924107551575,-0.574358224868774,-0.251773446798325,-0.914406895637512,-0.402023702859879,-0.0472969077527523,-0.82692551612854,-0.448902398347855,-0.338645666837692,-0.740892827510834,-0.394091904163361,-0.543846845626831,-0.82692551612854,-0.448902398347855,-0.338645666837692,-0.890620112419128,-0.197039842605591,-0.409842848777771,-0.82692551612854,-0.448902398347855,-0.338645666837692,-0.914406895637512,-0.402023702859879,-0.0472969077527523,-0.963351488113403,-0.197408095002174,-0.181615442037582,-0.82692551612854,-0.448902398347855,-0.338645666837692,-0.963351488113403,-0.197408095002174,-0.181615442037582,
- -0.890620112419128,-0.197039842605591,-0.409842848777771,-0.722775638103485,-0.447806656360626,-0.526369214057922,-0.752276360988617,-0.29777604341507,-0.587715864181519,-0.621970117092133,-0.204699024558067,-0.755811810493469,-0.722775638103485,-0.447806656360626,-0.526369214057922,-0.887428462505341,-0.329840660095215,-0.321987330913544,-0.752276360988617,-0.29777604341507,-0.587715864181519,-0.621970117092133,-0.204699024558067,-0.755811810493469,-0.752276360988617,-0.29777604341507,-0.587715864181519,-0.794635355472565,-0.0393383838236332,-0.60581111907959,-0.752276360988617,-0.29777604341507,-0.587715864181519,-0.887428462505341,-0.329840660095215,-0.321987330913544,-0.911353945732117,-0.0942779928445816,-0.400681465864182,-0.752276360988617,-0.29777604341507,-0.587715864181519,-0.911353945732117,-0.0942779928445816,-0.400681465864182,-0.794635355472565,-0.0393383838236332,-0.60581111907959,-0.613944888114929,-0.75562447309494,0.228261560201645,-0.802056312561035,-0.589747309684753,0.0943595692515373,-0.669956266880035,-0.740892827510834,-0.0472910292446613,-0.613944888114929,-0.75562447309494,0.228261560201645,-0.793775975704193,-0.510845959186554,0.330085068941116,-0.802056312561035,-0.589747309684753,0.0943595692515373,-0.669956266880035,-0.740892827510834,-0.0472910292446613,-0.802056312561035,-0.589747309684753,0.0943595692515373,-0.83498227596283,-0.535648941993713,-0.126035049557686,-0.802056312561035,-0.589747309684753,0.0943595692515373,-0.793775975704193,-0.510845959186554,0.330085068941116,-0.904782950878143,-0.41698694229126,0.0865444615483284,-0.83498227596283,-0.535648941993713,-0.126035049557686,-0.802056312561035,-0.589747309684753,0.0943595692515373,-0.904782950878143,-0.41698694229126,0.0865444615483284,-0.742115557193756,-0.457901060581207,-0.489480465650558,-0.810521245002747,-0.299027264118195,-0.503624856472015,-0.740249276161194,-0.157499849796295,-0.653624355792999,-0.742115557193756,-0.457901060581207,-0.489480465650558,-0.875400960445404,-0.42587074637413,-0.228708356618881,-0.810521245002747,-0.299027264118195,-0.503624856472015,
- -0.740249276161194,-0.157499849796295,-0.653624355792999,-0.810521245002747,-0.299027264118195,-0.503624856472015,-0.898864686489105,-0.0630782246589661,-0.433662801980972,-0.810521245002747,-0.299027264118195,-0.503624856472015,-0.875400960445404,-0.42587074637413,-0.228708356618881,-0.952696859836578,-0.181091129779816,-0.244079351425171,-0.810521245002747,-0.299027264118195,-0.503624856472015,-0.952696859836578,-0.181091129779816,-0.244079351425171,-0.898864686489105,-0.0630782246589661,-0.433662801980972,-0.733558058738709,-0.631017684936523,0.252407073974609,-0.891284704208374,-0.441698610782623,0.102537177503109,-0.788404285907745,-0.614955365657806,-0.0157680865377188,-0.733558058738709,-0.631017684936523,0.252407073974609,-0.872232973575592,-0.353607982397079,0.337892055511475,-0.891284704208374,-0.441698610782623,0.102537177503109,-0.788404285907745,-0.614955365657806,-0.0157680865377188,-0.891284704208374,-0.441698610782623,0.102537177503109,-0.911917090415955,-0.393067717552185,-0.117920324206352,-0.891284704208374,-0.441698610782623,0.102537177503109,-0.872232973575592,-0.353607982397079,0.337892055511475,-0.9616739153862,-0.260124891996384,0.0867083072662354,-0.911917090415955,-0.393067717552185,-0.117920324206352,-0.891284704208374,-0.441698610782623,0.102537177503109,-0.9616739153862,-0.260124891996384,0.0867083072662354,-0.794758379459381,-0.590167105197906,-0.141640096902847,-0.927840530872345,-0.353837490081787,-0.117945834994316,-0.853042244911194,-0.402825504541397,-0.331738650798798,-0.794758379459381,-0.590167105197906,-0.141640096902847,-0.892813503742218,-0.434555232524872,0.118515066802502,-0.927840530872345,-0.353837490081787,-0.117945834994316,-0.853042244911194,-0.402825504541397,-0.331738650798798,-0.927840530872345,-0.353837490081787,-0.117945834994316,-0.953435957431793,-0.165472343564034,-0.252148330211639,-0.927840530872345,-0.353837490081787,-0.117945834994316,-0.892813503742218,-0.434555232524872,0.118515066802502,-0.982062458992004,-0.188555985689163,-4.18678393486001e-017,-0.953435957431793,-0.165472343564034,-0.252148330211639,
- -0.927840530872345,-0.353837490081787,-0.117945834994316,-0.982062458992004,-0.188555985689163,-4.18678393486001e-017,-0.889736294746399,-0.440931260585785,0.118106596171856,-0.925839185714722,-0.376612573862076,-0.0313843823969364,-0.856305599212646,-0.46350485086441,-0.227824419736862,-0.889736294746399,-0.440931260585785,0.118106596171856,-0.970642805099487,-0.157828092575073,0.181502312421799,-0.925839185714722,-0.376612573862076,-0.0313843823969364,-0.856305599212646,-0.46350485086441,-0.227824419736862,-0.925839185714722,-0.376612573862076,-0.0313843823969364,-0.9501673579216,-0.204168185591698,-0.235578685998917,-0.925839185714722,-0.376612573862076,-0.0313843823969364,-0.970642805099487,-0.157828092575073,0.181502312421799,-0.996975898742676,-0.0549514293670654,-0.0549514293670654,-0.925839185714722,-0.376612573862076,-0.0313843823969364,-0.996975898742676,-0.0549514293670654,-0.0549514293670654,-0.9501673579216,-0.204168185591698,-0.235578685998917,-0.884057462215424,-0.46570885181427,0.0394668504595757,-0.943129301071167,-0.330095231533051,-0.0392970517277718,-0.920746207237244,-0.291176170110703,-0.259697645902634,-0.884057462215424,-0.46570885181427,0.0394668504595757,-0.926067173480988,-0.266832917928696,0.266832917928696,-0.943129301071167,-0.330095231533051,-0.0392970517277718,-0.920746207237244,-0.291176170110703,-0.259697645902634,-0.943129301071167,-0.330095231533051,-0.0392970517277718,-0.991634249687195,-0.0787011310458183,-0.102311469614506,-0.943129301071167,-0.330095231533051,-0.0392970517277718,-0.926067173480988,-0.266832917928696,0.266832917928696,-0.989064633846283,-0.0627977550029755,0.133445218205452,-0.943129301071167,-0.330095231533051,-0.0392970517277718,-0.989064633846283,-0.0627977550029755,0.133445218205452,-0.991634249687195,-0.0787011310458183,-0.102311469614506,-0.995744228363037,-0.0790273174643517,0.0474163927137852,-0.98777973651886,-0.0790223777294159,0.134338036179543,-0.990071713924408,0.125723391771317,0.0628616958856583,-0.937822282314301,-0.220664069056511,0.267949223518372,
- -0.98777973651886,-0.0790223777294159,0.134338036179543,-0.995744228363037,-0.0790273174643517,0.0474163927137852,-0.990989983081818,0.0865150019526482,-0.10224499553442,-0.995744228363037,-0.0790273174643517,0.0474163927137852,-0.990071713924408,0.125723391771317,0.0628616958856583,-0.995744228363037,-0.0790273174643517,0.0474163927137852,-0.974717497825623,-0.141491234302521,-0.172933742403984,-0.937822282314301,-0.220664069056511,0.267949223518372,-0.990989983081818,0.0865150019526482,-0.10224499553442,-0.974717497825623,-0.141491234302521,-0.172933742403984,-0.995744228363037,-0.0790273174643517,0.0474163927137852,-0.97710520029068,-0.212756782770157,-4.72414957753202e-017,-0.937822282314301,-0.220664069056511,0.267949223518372,-0.974717497825623,-0.141491234302521,-0.172933742403984,-0.883314847946167,-0.102527610957623,-0.457430869340897,-0.974717497825623,-0.141491234302521,-0.172933742403984,-0.990989983081818,0.0865150019526482,-0.10224499553442,-0.97710520029068,-0.212756782770157,-4.72414957753202e-017,-0.974717497825623,-0.141491234302521,-0.172933742403984,-0.883314847946167,-0.102527610957623,-0.457430869340897,-0.871721804141998,-0.180627033114433,0.455494254827499,-0.96751469373703,-0.251711130142212,-0.0235979184508324,-0.891395628452301,-0.38653439283371,0.236653715372086,-0.871721804141998,-0.180627033114433,0.455494254827499,-0.966319620609283,-0.0549937970936298,0.251400232315063,-0.96751469373703,-0.251711130142212,-0.0235979184508324,-0.891395628452301,-0.38653439283371,0.236653715372086,-0.96751469373703,-0.251711130142212,-0.0235979184508324,-0.926266849040985,-0.306139051914215,-0.219792142510414,-0.96751469373703,-0.251711130142212,-0.0235979184508324,-0.966319620609283,-0.0549937970936298,0.251400232315063,-0.978046953678131,-0.181411936879158,-0.102537177503109,-0.96751469373703,-0.251711130142212,-0.0235979184508324,-0.978046953678131,-0.181411936879158,-0.102537177503109,-0.926266849040985,-0.306139051914215,-0.219792142510414,-0.966319620609283,-0.0549937970936298,0.251400232315063,
- -0.989674627780914,-0.0235636811703444,0.141382083296776,-0.978046953678131,-0.181411936879158,-0.102537177503109,-0.974326252937317,-0.11000457406044,-0.196436733007431,-0.926266849040985,-0.306139051914215,-0.219792142510414,-0.978046953678131,-0.181411936879158,-0.102537177503109,-0.978046953678131,-0.181411936879158,-0.102537177503109,-0.989674627780914,-0.0235636811703444,0.141382083296776,-0.974326252937317,-0.11000457406044,-0.196436733007431,-0.952726364135742,-0.259834468364716,0.157475426793098,-0.930288136005402,-0.173443555831909,-0.323235720396042,-0.917490720748901,-0.379651337862015,-0.118641041219234,-0.952726364135742,-0.259834468364716,0.157475426793098,-0.99737536907196,-0.0706801414489746,-0.0157066993415356,-0.930288136005402,-0.173443555831909,-0.323235720396042,-0.917490720748901,-0.379651337862015,-0.118641041219234,-0.930288136005402,-0.173443555831909,-0.323235720396042,-0.84054172039032,-0.157110601663589,-0.518464982509613,-0.930288136005402,-0.173443555831909,-0.323235720396042,-0.99737536907196,-0.0706801414489746,-0.0157066993415356,-0.922834634780884,-0.0709872767329216,-0.378598839044571,-0.922834634780884,-0.0709872767329216,-0.378598839044571,-0.84054172039032,-0.157110601663589,-0.518464982509613,-0.930288136005402,-0.173443555831909,-0.323235720396042,-0.99737536907196,-0.0706801414489746,-0.0157066993415356,-0.993883728981018,2.45207237028402e-017,-0.110431522130966,-0.922834634780884,-0.0709872767329216,-0.378598839044571,-0.894317090511322,0.0156897734850645,-0.447158545255661,-0.84054172039032,-0.157110601663589,-0.518464982509613,-0.922834634780884,-0.0709872767329216,-0.378598839044571,-0.922834634780884,-0.0709872767329216,-0.378598839044571,-0.993883728981018,2.45207237028402e-017,-0.110431522130966,-0.894317090511322,0.0156897734850645,-0.447158545255661,-0.988334119319916,-0.0862831398844719,0.125502735376358,-0.972339630126953,-0.0948624014854431,0.213440403342247,-0.981456816196442,0.109923161566257,0.157033085823059,-0.91014701128006,-0.251075029373169,0.329535990953445,
- -0.972339630126953,-0.0948624014854431,0.213440403342247,-0.988334119319916,-0.0862831398844719,0.125502735376358,-0.996791481971741,0.0784875229001045,-0.0156975034624338,-0.988334119319916,-0.0862831398844719,0.125502735376358,-0.981456816196442,0.109923161566257,0.157033085823059,-0.988334119319916,-0.0862831398844719,0.125502735376358,-0.983459711074829,-0.149485886096954,-0.102279812097549,-0.91014701128006,-0.251075029373169,0.329535990953445,-0.996791481971741,0.0784875229001045,-0.0156975034624338,-0.983459711074829,-0.149485886096954,-0.102279812097549,-0.988334119319916,-0.0862831398844719,0.125502735376358,-0.971368849277496,-0.229021921753883,0.0631784573197365,-0.91014701128006,-0.251075029373169,0.329535990953445,-0.983459711074829,-0.149485886096954,-0.102279812097549,-0.922834634780884,-0.0709872767329216,-0.378598839044571,-0.983459711074829,-0.149485886096954,-0.102279812097549,-0.996791481971741,0.0784875229001045,-0.0156975034624338,-0.971368849277496,-0.229021921753883,0.0631784573197365,-0.983459711074829,-0.149485886096954,-0.102279812097549,-0.922834634780884,-0.0709872767329216,-0.378598839044571,-0.923208117485046,-0.126250684261322,0.36297070980072,-0.95474100112915,-0.27616474032402,-0.11046589165926,-0.914037764072418,-0.370342910289764,0.165472358465195,-0.923208117485046,-0.126250684261322,0.36297070980072,-0.991265952587128,-0.0393359512090683,0.125875040888786,-0.95474100112915,-0.27616474032402,-0.11046589165926,-0.914037764072418,-0.370342910289764,0.165472358465195,-0.95474100112915,-0.27616474032402,-0.11046589165926,-0.888827443122864,-0.353957831859589,-0.291032016277313,-0.95474100112915,-0.27616474032402,-0.11046589165926,-0.991265952587128,-0.0393359512090683,0.125875040888786,-0.956738471984863,-0.213487103581429,-0.197673231363297,-0.95474100112915,-0.27616474032402,-0.11046589165926,-0.956738471984863,-0.213487103581429,-0.197673231363297,-0.888827443122864,-0.353957831859589,-0.291032016277313,-0.991265952587128,-0.0393359512090683,0.125875040888786,-0.999597251415253,-0.0236125327646732,0.0157416891306639,
- -0.956738471984863,-0.213487103581429,-0.197673231363297,-0.937182307243347,-0.165385112166405,-0.307143777608871,-0.888827443122864,-0.353957831859589,-0.291032016277313,-0.956738471984863,-0.213487103581429,-0.197673231363297,-0.956738471984863,-0.213487103581429,-0.197673231363297,-0.999597251415253,-0.0236125327646732,0.0157416891306639,-0.937182307243347,-0.165385112166405,-0.307143777608871,-0.989186525344849,-0.0392534323036671,-0.141312345862389,-0.994224011898041,-0.0867973417043686,-0.0631253346800804,-0.991757094860077,0.125937417149544,-0.0236132647842169,-0.951988935470581,-0.275368690490723,-0.13375049829483,-0.994224011898041,-0.0867973417043686,-0.0631253346800804,-0.989186525344849,-0.0392534323036671,-0.141312345862389,-0.966767251491547,0.180777609348297,-0.180777609348297,-0.989186525344849,-0.0392534323036671,-0.141312345862389,-0.991757094860077,0.125937417149544,-0.0236132647842169,-0.989186525344849,-0.0392534323036671,-0.141312345862389,-0.935327649116516,0.00785989686846733,-0.35369536280632,-0.951988935470581,-0.275368690490723,-0.13375049829483,-0.966767251491547,0.180777609348297,-0.180777609348297,-0.935327649116516,0.00785989686846733,-0.35369536280632,-0.989186525344849,-0.0392534323036671,-0.141312345862389,-0.872475445270538,-0.212223753333092,-0.440167784690857,-0.951988935470581,-0.275368690490723,-0.13375049829483,-0.935327649116516,0.00785989686846733,-0.35369536280632,-0.814337372779846,0.237185657024384,-0.529714643955231,-0.935327649116516,0.00785989686846733,-0.35369536280632,-0.966767251491547,0.180777609348297,-0.180777609348297,-0.872475445270538,-0.212223753333092,-0.440167784690857,-0.935327649116516,0.00785989686846733,-0.35369536280632,-0.814337372779846,0.237185657024384,-0.529714643955231,-0.859520971775055,-0.315420538187027,0.402161180973053,-0.896609961986542,-0.369654983282089,0.243814989924431,-0.816647589206696,-0.557519018650055,0.149195238947868,-0.859520971775055,-0.315420538187027,0.402161180973053,-0.961375296115875,-0.0630410015583038,0.267924249172211,
- -0.896609961986542,-0.369654983282089,0.243814989924431,-0.816647589206696,-0.557519018650055,0.149195238947868,-0.896609961986542,-0.369654983282089,0.243814989924431,-0.931446731090546,-0.363106369972229,-0.0236808490008116,-0.896609961986542,-0.369654983282089,0.243814989924431,-0.961375296115875,-0.0630410015583038,0.267924249172211,-0.989461004734039,-0.141351565718651,0.0314114615321159,-0.896609961986542,-0.369654983282089,0.243814989924431,-0.989461004734039,-0.141351565718651,0.0314114615321159,-0.931446731090546,-0.363106369972229,-0.0236808490008116,-0.739721953868866,-0.661028146743774,-0.125910133123398,-0.886854350566864,-0.431654781103134,-0.164813637733459,-0.776070892810822,-0.517380595207214,-0.360598593950272,-0.739721953868866,-0.661028146743774,-0.125910133123398,-0.881999254226685,-0.464624583721161,0.0787499323487282,-0.886854350566864,-0.431654781103134,-0.164813637733459,-0.776070892810822,-0.517380595207214,-0.360598593950272,-0.886854350566864,-0.431654781103134,-0.164813637733459,-0.903135180473328,-0.274867206811905,-0.329840660095215,-0.886854350566864,-0.431654781103134,-0.164813637733459,-0.881999254226685,-0.464624583721161,0.0787499323487282,-0.960987448692322,-0.259939223527908,-0.0945233553647995,-0.903135180473328,-0.274867206811905,-0.329840660095215,-0.886854350566864,-0.431654781103134,-0.164813637733459,-0.960987448692322,-0.259939223527908,-0.0945233553647995,-0.851847350597382,-0.496910959482193,0.165636971592903,-0.889625906944275,-0.456622123718262,0.00787279568612576,-0.808396577835083,-0.565092742443085,-0.164818719029427,-0.851847350597382,-0.496910959482193,0.165636971592903,-0.955097913742065,-0.221014395356178,0.19733427464962,-0.889625906944275,-0.456622123718262,0.00787279568612576,-0.808396577835083,-0.565092742443085,-0.164818719029427,-0.889625906944275,-0.456622123718262,0.00787279568612576,-0.926266849040985,-0.306139051914215,-0.219792142510414,-0.889625906944275,-0.456622123718262,0.00787279568612576,-0.955097913742065,-0.221014395356178,0.19733427464962,
- -0.986671268939972,-0.157867401838303,-0.0394668504595757,-0.889625906944275,-0.456622123718262,0.00787279568612576,-0.986671268939972,-0.157867401838303,-0.0394668504595757,-0.926266849040985,-0.306139051914215,-0.219792142510414,-0.787792384624481,-0.575088500976563,0.220581874251366,-0.826746046543121,-0.559037744998932,0.0629901736974716,-0.737237930297852,-0.666651248931885,-0.109801389276981,-0.787792384624481,-0.575088500976563,0.220581874251366,-0.921231389045715,-0.314950913190842,0.228339403867722,-0.826746046543121,-0.559037744998932,0.0629901736974716,-0.737237930297852,-0.666651248931885,-0.109801389276981,-0.826746046543121,-0.559037744998932,0.0629901736974716,-0.882108569145203,-0.441054284572601,-0.165395349264145,-0.826746046543121,-0.559037744998932,0.0629901736974716,-0.921231389045715,-0.314950913190842,0.228339403867722,-0.963171243667603,-0.26842474937439,-0.0157896913588047,-0.826746046543121,-0.559037744998932,0.0629901736974716,-0.963171243667603,-0.26842474937439,-0.0157896913588047,-0.882108569145203,-0.441054284572601,-0.165395349264145,-0.777697443962097,-0.628442406654358,-0.0157110597938299,-0.829838752746582,-0.537419319152832,-0.150161281228065,-0.739996910095215,-0.566806137561798,-0.362126171588898,-0.777697443962097,-0.628442406654358,-0.0157110597938299,-0.913499116897583,-0.393749624490738,0.102374896407127,-0.829838752746582,-0.537419319152832,-0.150161281228065,-0.739996910095215,-0.566806137561798,-0.362126171588898,-0.829838752746582,-0.537419319152832,-0.150161281228065,-0.889488101005554,-0.33847776055336,-0.306991457939148,-0.829838752746582,-0.537419319152832,-0.150161281228065,-0.913499116897583,-0.393749624490738,0.102374896407127,-0.962931215763092,-0.252572119235992,-0.0947145447134972,-0.829838752746582,-0.537419319152832,-0.150161281228065,-0.962931215763092,-0.252572119235992,-0.0947145447134972,-0.889488101005554,-0.33847776055336,-0.306991457939148,-0.722174167633057,-0.61227810382843,-0.321838468313217,-0.754014551639557,-0.494822055101395,-0.43198749423027,
- -0.622955560684204,-0.473130822181702,-0.622955560684204,-0.722174167633057,-0.61227810382843,-0.321838468313217,-0.88866251707077,-0.424670577049255,-0.173013955354691,-0.754014551639557,-0.494822055101395,-0.43198749423027,-0.622955560684204,-0.473130822181702,-0.622955560684204,-0.754014551639557,-0.494822055101395,-0.43198749423027,-0.793776094913483,-0.259352564811707,-0.55014181137085,-0.754014551639557,-0.494822055101395,-0.43198749423027,-0.88866251707077,-0.424670577049255,-0.173013955354691,-0.911241471767426,-0.235665902495384,-0.33778777718544,-0.754014551639557,-0.494822055101395,-0.43198749423027,-0.911241471767426,-0.235665902495384,-0.33778777718544,-0.793776094913483,-0.259352564811707,-0.55014181137085,-0.614021003246307,-0.614021003246307,0.495940059423447,-0.802627265453339,-0.511478185653687,0.306886911392212,-0.6722571849823,-0.703892886638641,0.229358345270157,-0.614021003246307,-0.614021003246307,0.495940059423447,-0.793653428554535,-0.353607982397079,0.495051145553589,-0.802627265453339,-0.511478185653687,0.306886911392212,-0.6722571849823,-0.703892886638641,0.229358345270157,-0.802627265453339,-0.511478185653687,0.306886911392212,-0.835474908351898,-0.543846845626831,0.0788183808326721,-0.802627265453339,-0.511478185653687,0.306886911392212,-0.793653428554535,-0.353607982397079,0.495051145553589,-0.904922902584076,-0.354100286960602,0.236066848039627,-0.835474908351898,-0.543846845626831,0.0788183808326721,-0.802627265453339,-0.511478185653687,0.306886911392212,-0.904922902584076,-0.354100286960602,0.236066848039627,-0.741722702980042,-0.607581377029419,-0.284063994884491,-0.811375856399536,-0.464768677949905,-0.354484617710114,-0.739974021911621,-0.385731130838394,-0.551044464111328,-0.741722702980042,-0.607581377029419,-0.284063994884491,-0.875047147274017,-0.480881780385971,-0.0551831535995007,-0.811375856399536,-0.464768677949905,-0.354484617710114,-0.739974021911621,-0.385731130838394,-0.551044464111328,-0.811375856399536,-0.464768677949905,-0.354484617710114,-0.898892641067505,-0.22078064084053,-0.37848111987114,
- -0.811375856399536,-0.464768677949905,-0.354484617710114,-0.875047147274017,-0.480881780385971,-0.0551831535995007,-0.952726364135742,-0.259834468364716,-0.157475426793098,-0.811375856399536,-0.464768677949905,-0.354484617710114,-0.952726364135742,-0.259834468364716,-0.157475426793098,-0.898892641067505,-0.22078064084053,-0.37848111987114,-0.735827684402466,-0.490551769733429,0.466815382242203,-0.891478955745697,-0.370792120695114,0.26034340262413,-0.785552978515625,-0.581309199333191,0.212099313735962,-0.735827684402466,-0.490551769733429,0.466815382242203,-0.87086284160614,-0.203985884785652,0.447199821472168,-0.891478955745697,-0.370792120695114,0.26034340262413,-0.785552978515625,-0.581309199333191,0.212099313735962,-0.891478955745697,-0.370792120695114,0.26034340262413,-0.91180431842804,-0.408739864826202,0.039301909506321,-0.891478955745697,-0.370792120695114,0.26034340262413,-0.87086284160614,-0.203985884785652,0.447199821472168,-0.961584270000458,-0.212809637188911,0.173400446772575,-0.91180431842804,-0.408739864826202,0.039301909506321,-0.891478955745697,-0.370792120695114,0.26034340262413,-0.961584270000458,-0.212809637188911,0.173400446772575,-0.795152366161346,-0.60620528459549,0.0157455913722515,-0.928759634494781,-0.369929701089859,-0.0236125346273184,-0.854001820087433,-0.474445462226868,-0.213500455021858,-0.795152366161346,-0.60620528459549,0.0157455913722515,-0.890288412570953,-0.393932938575745,0.228481099009514,-0.928759634494781,-0.369929701089859,-0.0236125346273184,-0.854001820087433,-0.474445462226868,-0.213500455021858,-0.928759634494781,-0.369929701089859,-0.0236125346273184,-0.955097913742065,-0.221014395356178,-0.19733427464962,-0.928759634494781,-0.369929701089859,-0.0236125346273184,-0.890288412570953,-0.393932938575745,0.228481099009514,-0.982001841068268,-0.180688336491585,0.054992102086544,-0.955097913742065,-0.221014395356178,-0.19733427464962,-0.928759634494781,-0.369929701089859,-0.0236125346273184,-0.982001841068268,-0.180688336491585,0.054992102086544,-0.890288412570953,-0.393932938575745,0.228481099009514,
- -0.927181422710419,-0.369301080703735,0.0628597587347031,-0.857815861701965,-0.503671705722809,-0.102308310568333,-0.890288412570953,-0.393932938575745,0.228481099009514,-0.971580982208252,-0.102687411010265,0.213273867964745,-0.927181422710419,-0.369301080703735,0.0628597587347031,-0.857815861701965,-0.503671705722809,-0.102308310568333,-0.927181422710419,-0.369301080703735,0.0628597587347031,-0.952165842056274,-0.25181245803833,-0.173121064901352,-0.927181422710419,-0.369301080703735,0.0628597587347031,-0.971580982208252,-0.102687411010265,0.213273867964745,-0.996730208396912,-0.0706344172358513,-0.0392413474619389,-0.927181422710419,-0.369301080703735,0.0628597587347031,-0.996730208396912,-0.0706344172358513,-0.0392413474619389,-0.952165842056274,-0.25181245803833,-0.173121064901352,-0.883232414722443,-0.441616207361221,0.157720074057579,-0.945233583450317,-0.322954803705215,0.0472616776823998,-0.918021261692047,-0.35308513045311,-0.18046572804451,-0.883232414722443,-0.441616207361221,0.157720074057579,-0.927639722824097,-0.188672482967377,0.322315484285355,-0.945233583450317,-0.322954803705215,0.0472616776823998,-0.918021261692047,-0.35308513045311,-0.18046572804451,-0.945233583450317,-0.322954803705215,0.0472616776823998,-0.991634249687195,-0.102311469614506,-0.0787011310458183,-0.945233583450317,-0.322954803705215,0.0472616776823998,-0.927639722824097,-0.188672482967377,0.322315484285355,-0.988547086715698,-0.0235368367284536,0.149066627025604,-0.945233583450317,-0.322954803705215,0.0472616776823998,-0.988547086715698,-0.0235368367284536,0.149066627025604,-0.991634249687195,-0.102311469614506,-0.0787011310458183,-0.995993077754974,-0.0632376596331596,0.0632376596331596,-0.987872242927551,-0.0395148880779743,0.150156587362289,-0.989461004734039,0.141351565718651,0.0314114615321159,-0.938288569450378,-0.141926005482674,0.31539112329483,-0.987872242927551,-0.0395148880779743,0.150156587362289,-0.995993077754974,-0.0632376596331596,0.0632376596331596,-0.991480767726898,0.0550822615623474,-0.118033424019814,-0.995993077754974,-0.0632376596331596,0.0632376596331596,
- -0.989461004734039,0.141351565718651,0.0314114615321159,-0.995993077754974,-0.0632376596331596,0.0632376596331596,-0.973005533218384,-0.188323646783829,-0.133395910263062,-0.938288569450378,-0.141926005482674,0.31539112329483,-0.991480767726898,0.0550822615623474,-0.118033424019814,-0.973005533218384,-0.188323646783829,-0.133395910263062,-0.995993077754974,-0.0632376596331596,0.0632376596331596,-0.977226555347443,-0.204902336001396,0.0551660135388374,-0.938288569450378,-0.141926005482674,0.31539112329483,-0.973005533218384,-0.188323646783829,-0.133395910263062,-0.884553611278534,-0.221138402819633,-0.41068559885025,-0.973005533218384,-0.188323646783829,-0.133395910263062,-0.991480767726898,0.0550822615623474,-0.118033424019814,-0.977226555347443,-0.204902336001396,0.0551660135388374,-0.973005533218384,-0.188323646783829,-0.133395910263062,-0.884553611278534,-0.221138402819633,-0.41068559885025,-0.871721863746643,-0.0549734532833099,0.486907720565796,-0.968594014644623,-0.244117185473442,0.0472484864294529,-0.891950845718384,-0.315734803676605,0.323628187179565,-0.871721863746643,-0.0549734532833099,0.486907720565796,-0.967664361000061,0.0157343801110983,0.251750081777573,-0.968594014644623,-0.244117185473442,0.0472484864294529,-0.891950845718384,-0.315734803676605,0.323628187179565,-0.968594014644623,-0.244117185473442,0.0472484864294529,-0.925013780593872,-0.352759510278702,-0.14110378921032,-0.968594014644623,-0.244117185473442,0.0472484864294529,-0.967664361000061,0.0157343801110983,0.251750081777573,-0.979174554347992,-0.197414219379425,-0.0473794117569923,-0.968594014644623,-0.244117185473442,0.0472484864294529,-0.979174554347992,-0.197414219379425,-0.0473794117569923,-0.925013780593872,-0.352759510278702,-0.14110378921032,-0.967664361000061,0.0157343801110983,0.251750081777573,-0.989827394485474,0.0157115459442139,0.141403913497925,-0.979174554347992,-0.197414219379425,-0.0473794117569923,-0.974958479404449,-0.157251358032227,-0.157251358032227,-0.925013780593872,-0.352759510278702,-0.14110378921032,-0.979174554347992,-0.197414219379425,-0.0473794117569923,
- -0.979174554347992,-0.197414219379425,-0.0473794117569923,-0.989827394485474,0.0157115459442139,0.141403913497925,-0.974958479404449,-0.157251358032227,-0.157251358032227,-0.953583955764771,-0.204902336001396,0.22066405415535,-0.92985475063324,-0.252164006233215,-0.267924249172211,-0.915317356586456,-0.40242400765419,-0.0157813336700201,-0.953583955764771,-0.204902336001396,0.22066405415535,-0.997498512268066,-0.0706888660788536,-1.56960813410775e-017,-0.92985475063324,-0.252164006233215,-0.267924249172211,-0.915317356586456,-0.40242400765419,-0.0157813336700201,-0.92985475063324,-0.252164006233215,-0.267924249172211,-0.84113883972168,-0.29086109995842,-0.455944389104843,-0.92985475063324,-0.252164006233215,-0.267924249172211,-0.997498512268066,-0.0706888660788536,-1.56960813410775e-017,-0.923064351081848,-0.165678218007088,-0.347135335206985,-0.923064351081848,-0.165678218007088,-0.347135335206985,-0.84113883972168,-0.29086109995842,-0.455944389104843,-0.92985475063324,-0.252164006233215,-0.267924249172211,-0.997498512268066,-0.0706888660788536,-1.56960813410775e-017,-0.99422413110733,-0.0315626710653305,-0.102578677237034,-0.923064351081848,-0.165678218007088,-0.347135335206985,-0.895945131778717,-0.102169178426266,-0.432254254817963,-0.84113883972168,-0.29086109995842,-0.455944389104843,-0.923064351081848,-0.165678218007088,-0.347135335206985,-0.923064351081848,-0.165678218007088,-0.347135335206985,-0.99422413110733,-0.0315626710653305,-0.102578677237034,-0.895945131778717,-0.102169178426266,-0.432254254817963,-0.988851487636566,-0.0470881685614586,0.141264483332634,-0.972552359104156,-0.0395346470177174,0.229300960898399,-0.981941223144531,0.141399532556534,0.125688478350639,-0.909782946109772,-0.156859129667282,0.384304851293564,-0.972552359104156,-0.0395346470177174,0.229300960898399,-0.988851487636566,-0.0470881685614586,0.141264483332634,-0.997006475925446,0.07065399736166,-0.0314017795026302,-0.988851487636566,-0.0470881685614586,0.141264483332634,-0.981941223144531,0.141399532556534,0.125688478350639,-0.988851487636566,-0.0470881685614586,0.141264483332634,
- -0.984221458435059,-0.165349200367928,-0.0629901736974716,-0.909782946109772,-0.156859129667282,0.384304851293564,-0.997006475925446,0.07065399736166,-0.0314017795026302,-0.984221458435059,-0.165349200367928,-0.0629901736974716,-0.988851487636566,-0.0470881685614586,0.141264483332634,-0.971490025520325,-0.205355599522591,0.118474394083023,-0.909782946109772,-0.156859129667282,0.384304851293564,-0.984221458435059,-0.165349200367928,-0.0629901736974716,-0.921831548213959,-0.1733358502388,-0.3466717004776,-0.984221458435059,-0.165349200367928,-0.0629901736974716,-0.997006475925446,0.07065399736166,-0.0314017795026302,-0.971490025520325,-0.205355599522591,0.118474394083023,-0.984221458435059,-0.165349200367928,-0.0629901736974716,-0.921831548213959,-0.1733358502388,-0.3466717004776,-0.924706161022186,-0.0316138863563538,0.379366636276245,-0.955544531345367,-0.292191296815872,-0.0394853092730045,-0.91477644443512,-0.315440148115158,0.252352118492126,-0.924706161022186,-0.0316138863563538,0.379366636276245,-0.992002964019775,-0.0078730396926403,0.125968635082245,-0.955544531345367,-0.292191296815872,-0.0394853092730045,-0.91477644443512,-0.315440148115158,0.252352118492126,-0.955544531345367,-0.292191296815872,-0.0394853092730045,-0.889075100421906,-0.416999846696854,-0.188830122351646,-0.955544531345367,-0.292191296815872,-0.0394853092730045,-0.992002964019775,-0.0078730396926403,0.125968635082245,-0.956021547317505,-0.260733127593994,-0.134317070245743,-0.955544531345367,-0.292191296815872,-0.0394853092730045,-0.956021547317505,-0.260733127593994,-0.134317070245743,-0.889075100421906,-0.416999846696854,-0.188830122351646,-0.992002964019775,-0.0078730396926403,0.125968635082245,-0.999442577362061,-0.0236088801175356,0.0236088801175356,-0.956021547317505,-0.260733127593994,-0.134317070245743,-0.938288569450378,-0.236543357372284,-0.252312898635864,-0.889075100421906,-0.416999846696854,-0.188830122351646,-0.956021547317505,-0.260733127593994,-0.134317070245743,-0.956021547317505,-0.260733127593994,-0.134317070245743,-0.999442577362061,-0.0236088801175356,0.0236088801175356,
- -0.938288569450378,-0.236543357372284,-0.252312898635864,-0.989552557468414,-0.0706823170185089,-0.125657469034195,-0.993945598602295,-0.102549932897091,-0.0394422858953476,-0.991480767726898,0.118033424019814,-0.0550822615623474,-0.952608287334442,-0.299166232347488,-0.0551095679402351,-0.993945598602295,-0.102549932897091,-0.0394422858953476,-0.989552557468414,-0.0706823170185089,-0.125657469034195,-0.967305243015289,0.125828325748444,-0.220199555158615,-0.989552557468414,-0.0706823170185089,-0.125657469034195,-0.991480767726898,0.118033424019814,-0.0550822615623474,-0.989552557468414,-0.0706823170185089,-0.125657469034195,-0.935038864612579,-0.0785746946930885,-0.345728695392609,-0.952608287334442,-0.299166232347488,-0.0551095679402351,-0.967305243015289,0.125828325748444,-0.220199555158615,-0.935038864612579,-0.0785746946930885,-0.345728695392609,-0.989552557468414,-0.0706823170185089,-0.125657469034195,-0.871426224708557,-0.314027458429337,-0.376832962036133,-0.952608287334442,-0.299166232347488,-0.0551095679402351,-0.935038864612579,-0.0785746946930885,-0.345728695392609,-0.812207877635956,0.0946261584758759,-0.57564252614975,-0.935038864612579,-0.0785746946930885,-0.345728695392609,-0.967305243015289,0.125828325748444,-0.220199555158615,-0.871426224708557,-0.314027458429337,-0.376832962036133,-0.935038864612579,-0.0785746946930885,-0.345728695392609,-0.812207877635956,0.0946261584758759,-0.57564252614975,-0.86069917678833,-0.205304384231567,0.465883046388626,-0.897637784481049,-0.291338592767715,0.330708652734756,-0.818263709545136,-0.49567899107933,0.291113078594208,-0.86069917678833,-0.205304384231567,0.465883046388626,-0.96119624376297,0.00787865743041039,0.275752991437912,-0.897637784481049,-0.291338592767715,0.330708652734756,-0.818263709545136,-0.49567899107933,0.291113078594208,-0.897637784481049,-0.291338592767715,0.330708652734756,-0.931998550891876,-0.355423212051392,0.0710846334695816,-0.897637784481049,-0.291338592767715,0.330708652734756,-0.96119624376297,0.00787865743041039,0.275752991437912,-0.989552557468414,-0.125657469034195,0.0706823170185089,
- -0.897637784481049,-0.291338592767715,0.330708652734756,-0.989552557468414,-0.125657469034195,0.0706823170185089,-0.931998550891876,-0.355423212051392,0.0710846334695816,-0.7366943359375,-0.673996925354004,0.0548602156341076,-0.88866251707077,-0.456127673387527,-0.0471856221556664,-0.778900027275085,-0.590075790882111,-0.212427273392677,-0.7366943359375,-0.673996925354004,0.0548602156341076,-0.880118131637573,-0.432200849056244,0.196454927325249,-0.88866251707077,-0.456127673387527,-0.0471856221556664,-0.778900027275085,-0.590075790882111,-0.212427273392677,-0.88866251707077,-0.456127673387527,-0.0471856221556664,-0.901468753814697,-0.352748662233353,-0.250843495130539,-0.88866251707077,-0.456127673387527,-0.0471856221556664,-0.880118131637573,-0.432200849056244,0.196454927325249,-0.960957646369934,-0.27568456530571,-0.0236301068216562,-0.901468753814697,-0.352748662233353,-0.250843495130539,-0.88866251707077,-0.456127673387527,-0.0471856221556664,-0.960957646369934,-0.27568456530571,-0.0236301068216562,-0.852271616458893,-0.434027224779129,0.291981965303421,-0.891950845718384,-0.434135377407074,0.126293927431107,-0.808296978473663,-0.588565766811371,-0.0156950876116753,-0.852271616458893,-0.434027224779129,0.291981965303421,-0.955306172370911,-0.165796935558319,0.24474786221981,-0.891950845718384,-0.434135377407074,0.126293927431107,-0.808296978473663,-0.588565766811371,-0.0156950876116753,-0.891950845718384,-0.434135377407074,0.126293927431107,-0.926010131835938,-0.353139460086823,-0.133408233523369,-0.891950845718384,-0.434135377407074,0.126293927431107,-0.955306172370911,-0.165796935558319,0.24474786221981,-0.987440645694733,-0.157990500330925,-3.50809382278883e-017,-0.891950845718384,-0.434135377407074,0.126293927431107,-0.987440645694733,-0.157990500330925,-3.50809382278883e-017,-0.926010131835938,-0.353139460086823,-0.133408233523369,-0.788477778434753,-0.496741026639938,0.362699806690216,-0.828623235225677,-0.520848870277405,0.205182880163193,-0.739859402179718,-0.669021785259247,0.0708375945687294,-0.788477778434753,-0.496741026639938,0.362699806690216,
- -0.92226105928421,-0.244359776377678,0.299537777900696,-0.828623235225677,-0.520848870277405,0.205182880163193,-0.739859402179718,-0.669021785259247,0.0708375945687294,-0.828623235225677,-0.520848870277405,0.205182880163193,-0.880498766899109,-0.471695780754089,-0.0471695773303509,-0.828623235225677,-0.520848870277405,0.205182880163193,-0.92226105928421,-0.244359776377678,0.299537777900696,-0.963832378387451,-0.260708749294281,0.0553018599748611,-0.828623235225677,-0.520848870277405,0.205182880163193,-0.963832378387451,-0.260708749294281,0.0553018599748611,-0.880498766899109,-0.471695780754089,-0.0471695773303509,-0.776715517044067,-0.611957669258118,0.149066612124443,-0.828365325927734,-0.560132682323456,-0.00788919348269701,-0.738875925540924,-0.644551336765289,-0.196509540081024,-0.776715517044067,-0.611957669258118,0.149066612124443,-0.912594020366669,-0.354023575782776,0.204546928405762,-0.828365325927734,-0.560132682323456,-0.00788919348269701,-0.738875925540924,-0.644551336765289,-0.196509540081024,-0.828365325927734,-0.560132682323456,-0.00788919348269701,-0.890592515468597,-0.401948839426041,-0.212796449661255,-0.828365325927734,-0.560132682323456,-0.00788919348269701,-0.912594020366669,-0.354023575782776,0.204546928405762,-0.963021218776703,-0.26838293671608,-0.0236808490008116,-0.828365325927734,-0.560132682323456,-0.00788919348269701,-0.963021218776703,-0.26838293671608,-0.0236808490008116,-0.890592515468597,-0.401948839426041,-0.212796449661255,-0.721485435962677,-0.674431979656219,-0.156844660639763,-0.754014551639557,-0.589073896408081,-0.290609776973724,-0.623654007911682,-0.615759670734406,-0.481555670499802,-0.721485435962677,-0.674431979656219,-0.156844660639763,-0.887894093990326,-0.455733239650726,-0.0628597587347031,-0.754014551639557,-0.589073896408081,-0.290609776973724,-0.623654007911682,-0.615759670734406,-0.481555670499802,-0.754014551639557,-0.589073896408081,-0.290609776973724,-0.793972134590149,-0.393055528402328,-0.46380552649498,-0.754014551639557,-0.589073896408081,-0.290609776973724,
- -0.887894093990326,-0.455733239650726,-0.0628597587347031,-0.912933111190796,-0.314804524183273,-0.259713739156723,-0.754014551639557,-0.589073896408081,-0.290609776973724,-0.912933111190796,-0.314804524183273,-0.259713739156723,-0.793972134590149,-0.393055528402328,-0.46380552649498,-0.614230394363403,-0.464610189199448,0.637854635715485,-0.803149580955505,-0.417322844266891,0.4251968562603,-0.670581459999084,-0.623246312141418,0.402348846197128,-0.614230394363403,-0.464610189199448,0.637854635715485,-0.795645773410797,-0.212697386741638,0.56719297170639,-0.803149580955505,-0.417322844266891,0.4251968562603,-0.670581459999084,-0.623246312141418,0.402348846197128,-0.803149580955505,-0.417322844266891,0.4251968562603,-0.834982335567474,-0.504140257835388,0.220561370253563,-0.803149580955505,-0.417322844266891,0.4251968562603,-0.795645773410797,-0.212697386741638,0.56719297170639,-0.903469681739807,-0.282825261354446,0.322106570005417,-0.834982335567474,-0.504140257835388,0.220561370253563,-0.803149580955505,-0.417322844266891,0.4251968562603,-0.903469681739807,-0.282825261354446,0.322106570005417,-0.740432977676392,-0.661663472652435,-0.11815420538187,-0.810395896434784,-0.542886555194855,-0.220301806926727,-0.741146147251129,-0.512494683265686,-0.433649361133575,-0.740432977676392,-0.661663472652435,-0.11815420538187,-0.874178349971771,-0.480404317378998,0.0708793252706528,-0.810395896434784,-0.542886555194855,-0.220301806926727,-0.741146147251129,-0.512494683265686,-0.433649361133575,-0.810395896434784,-0.542886555194855,-0.220301806926727,-0.897971928119659,-0.307200908660889,-0.315077871084213,-0.810395896434784,-0.542886555194855,-0.220301806926727,-0.874178349971771,-0.480404317378998,0.0708793252706528,-0.952696859836578,-0.291320532560349,-0.0866088047623634,-0.810395896434784,-0.542886555194855,-0.220301806926727,-0.952696859836578,-0.291320532560349,-0.0866088047623634,-0.897971928119659,-0.307200908660889,-0.315077871084213,-0.735160648822784,-0.355722904205322,0.577061593532562,-0.891284704208374,-0.291836589574814,0.347048938274384,
- -0.787596940994263,-0.504062056541443,0.354418635368347,-0.735160648822784,-0.355722904205322,0.577061593532562,-0.870354056358337,-0.0784102752804756,0.486143708229065,-0.891284704208374,-0.291836589574814,0.347048938274384,-0.787596940994263,-0.504062056541443,0.354418635368347,-0.891284704208374,-0.291836589574814,0.347048938274384,-0.911917090415955,-0.385206371545792,0.141504377126694,-0.891284704208374,-0.291836589574814,0.347048938274384,-0.870354056358337,-0.0784102752804756,0.486143708229065,-0.962451636791229,-0.157778948545456,0.220890536904335,-0.911917090415955,-0.385206371545792,0.141504377126694,-0.891284704208374,-0.291836589574814,0.347048938274384,-0.962451636791229,-0.157778948545456,0.220890536904335,-0.794955313205719,-0.558829963207245,0.236125349998474,-0.928673446178436,-0.354155123233795,0.110181599855423,-0.852856040000916,-0.52118980884552,-0.0315872617065907,-0.794955313205719,-0.558829963207245,0.236125349998474,-0.893315613269806,-0.284596115350723,0.347839713096619,-0.928673446178436,-0.354155123233795,0.110181599855423,-0.852856040000916,-0.52118980884552,-0.0315872617065907,-0.928673446178436,-0.354155123233795,0.110181599855423,-0.95474100112915,-0.27616474032402,-0.11046589165926,-0.928673446178436,-0.354155123233795,0.110181599855423,-0.893315613269806,-0.284596115350723,0.347839713096619,-0.982638835906982,-0.149361103773117,0.110055543482304,-0.95474100112915,-0.27616474032402,-0.11046589165926,-0.928673446178436,-0.354155123233795,0.110181599855423,-0.982638835906982,-0.149361103773117,0.110055543482304,-0.888827443122864,-0.291032016277313,0.353957831859589,-0.927639722824097,-0.322315484285355,0.188672482967377,-0.855672121047974,-0.510263204574585,0.0863522365689278,-0.888827443122864,-0.291032016277313,0.353957831859589,-0.971247732639313,-0.0236889682710171,0.236889690160751,-0.927639722824097,-0.322315484285355,0.188672482967377,-0.855672121047974,-0.510263204574585,0.0863522365689278,-0.927639722824097,-0.322315484285355,0.188672482967377,-0.951664984226227,-0.298869997262955,-0.0707849934697151,
- -0.927639722824097,-0.322315484285355,0.188672482967377,-0.971247732639313,-0.0236889682710171,0.236889690160751,-0.996883630752563,-0.0784947723150253,-0.00784947723150253,-0.927639722824097,-0.322315484285355,0.188672482967377,-0.996883630752563,-0.0784947723150253,-0.00784947723150253,-0.951664984226227,-0.298869997262955,-0.0707849934697151,-0.882957994937897,-0.354759901762009,0.307458579540253,-0.943712413311005,-0.290977984666824,0.157285392284393,-0.918841898441315,-0.392667472362518,-0.0392667464911938,-0.882957994937897,-0.354759901762009,0.307458579540253,-0.927181422710419,-0.0628597587347031,0.369301080703735,-0.943712413311005,-0.290977984666824,0.157285392284393,-0.918841898441315,-0.392667472362518,-0.0392667464911938,-0.943712413311005,-0.290977984666824,0.157285392284393,-0.992218255996704,-0.118121221661568,-0.0393737405538559,-0.943712413311005,-0.290977984666824,0.157285392284393,-0.927181422710419,-0.0628597587347031,0.369301080703735,-0.988334119319916,0.0313756838440895,0.149034515023232,-0.943712413311005,-0.290977984666824,0.157285392284393,-0.988334119319916,0.0313756838440895,0.149034515023232,-0.992218255996704,-0.118121221661568,-0.0393737405538559,-0.99571305513382,-0.0316099375486374,0.0869273319840431,-0.987317442893982,0.0157970786094666,0.157970786094666,-0.989674627780914,0.141382083296776,-0.0235636811703444,-0.937676668167114,-0.0236389078199863,0.346704006195068,-0.987317442893982,0.0157970786094666,0.157970786094666,-0.99571305513382,-0.0316099375486374,0.0869273319840431,-0.992002964019775,0.0078730396926403,-0.125968635082245,-0.99571305513382,-0.0316099375486374,0.0869273319840431,-0.989674627780914,0.141382083296776,-0.0235636811703444,-0.99571305513382,-0.0316099375486374,0.0869273319840431,-0.973965525627136,-0.219927683472633,-0.0549819208681583,-0.937676668167114,-0.0236389078199863,0.346704006195068,-0.992002964019775,0.0078730396926403,-0.125968635082245,-0.973965525627136,-0.219927683472633,-0.0549819208681583,-0.99571305513382,-0.0316099375486374,0.0869273319840431,
- -0.976771771907806,-0.173298224806786,0.126035064458847,-0.937676668167114,-0.0236389078199863,0.346704006195068,-0.973965525627136,-0.219927683472633,-0.0549819208681583,-0.885410070419312,-0.347839683294296,-0.308312445878983,-0.973965525627136,-0.219927683472633,-0.0549819208681583,-0.992002964019775,0.0078730396926403,-0.125968635082245,-0.976771771907806,-0.173298224806786,0.126035064458847,-0.973965525627136,-0.219927683472633,-0.0549819208681583,-0.885410070419312,-0.347839683294296,-0.308312445878983,-0.870300531387329,0.117608182132244,0.478273272514343,-0.968954622745514,-0.212697356939316,0.126042872667313,-0.891617596149445,-0.173589274287224,0.418192327022552,-0.870300531387329,0.117608182132244,0.478273272514343,-0.966438949108124,0.102143943309784,0.235716819763184,-0.968954622745514,-0.212697356939316,0.126042872667313,-0.891617596149445,-0.173589274287224,0.418192327022552,-0.968954622745514,-0.212697356939316,0.126042872667313,-0.926266849040985,-0.376786530017853,-0.00784971937537193,-0.968954622745514,-0.212697356939316,0.126042872667313,-0.966438949108124,0.102143943309784,0.235716819763184,-0.978442788124084,-0.205157354474068,0.0236720032989979,-0.968954622745514,-0.212697356939316,0.126042872667313,-0.978442788124084,-0.205157354474068,0.0236720032989979,-0.926266849040985,-0.376786530017853,-0.00784971937537193,-0.966438949108124,0.102143943309784,0.235716819763184,-0.990071713924408,0.0628616958856583,0.125723391771317,-0.978442788124084,-0.205157354474068,0.0236720032989979,-0.974356293678284,-0.204300507903099,-0.0942925438284874,-0.926266849040985,-0.376786530017853,-0.00784971937537193,-0.978442788124084,-0.205157354474068,0.0236720032989979,-0.978442788124084,-0.205157354474068,0.0236720032989979,-0.990071713924408,0.0628616958856583,0.125723391771317,-0.974356293678284,-0.204300507903099,-0.0942925438284874,-0.951782763004303,-0.117989592254162,0.283174991607666,-0.930317163467407,-0.331129819154739,-0.157680869102478,-0.916602432727814,-0.379283785820007,0.126427918672562,-0.951782763004303,-0.117989592254162,0.283174991607666,
- -0.997529208660126,-0.0628364831209183,0.0314182415604591,-0.930317163467407,-0.331129819154739,-0.157680869102478,-0.916602432727814,-0.379283785820007,0.126427918672562,-0.930317163467407,-0.331129819154739,-0.157680869102478,-0.841841459274292,-0.432722240686417,-0.322574734687805,-0.930317163467407,-0.331129819154739,-0.157680869102478,-0.997529208660126,-0.0628364831209183,0.0314182415604591,-0.920917332172394,-0.283359169960022,-0.267616987228394,-0.920917332172394,-0.283359169960022,-0.267616987228394,-0.841841459274292,-0.432722240686417,-0.322574734687805,-0.930317163467407,-0.331129819154739,-0.157680869102478,-0.997529208660126,-0.0628364831209183,0.0314182415604591,-0.994224011898041,-0.0631253346800804,-0.0867973417043686,-0.920917332172394,-0.283359169960022,-0.267616987228394,-0.894868075847626,-0.251191049814224,-0.368936836719513,-0.841841459274292,-0.432722240686417,-0.322574734687805,-0.920917332172394,-0.283359169960022,-0.267616987228394,-0.920917332172394,-0.283359169960022,-0.267616987228394,-0.994224011898041,-0.0631253346800804,-0.0867973417043686,-0.894868075847626,-0.251191049814224,-0.368936836719513,-0.988820910453796,-3.31086087753168e-017,0.149107918143272,-0.972218096256256,0.0474252738058567,0.229222148656845,-0.981547594070435,0.180604755878448,0.0628190487623215,-0.909447312355042,-0.0156801268458366,0.415523380041122,-0.972218096256256,0.0474252738058567,0.229222148656845,-0.988820910453796,-3.31086087753168e-017,0.149107918143272,-0.996975898742676,0.0549514293670654,-0.0549514293670654,-0.988820910453796,-3.31086087753168e-017,0.149107918143272,-0.981547594070435,0.180604755878448,0.0628190487623215,-0.988820910453796,-3.31086087753168e-017,0.149107918143272,-0.98349004983902,-0.180962175130844,-4.01816746833026e-017,-0.909447312355042,-0.0156801268458366,0.415523380041122,-0.996975898742676,0.0549514293670654,-0.0549514293670654,-0.98349004983902,-0.180962175130844,-4.01816746833026e-017,-0.988820910453796,-3.31086087753168e-017,0.149107918143272,-0.971823513507843,-0.150119081139565,0.181723102927208,
- -0.909447312355042,-0.0156801268458366,0.415523380041122,-0.98349004983902,-0.180962175130844,-4.01816746833026e-017,-0.920917332172394,-0.283359169960022,-0.267616987228394,-0.98349004983902,-0.180962175130844,-4.01816746833026e-017,-0.996975898742676,0.0549514293670654,-0.0549514293670654,-0.971823513507843,-0.150119081139565,0.181723102927208,-0.98349004983902,-0.180962175130844,-4.01816746833026e-017,-0.920917332172394,-0.283359169960022,-0.267616987228394,-0.923035740852356,0.1025595292449,0.370792120695114,-0.956051468849182,-0.28444504737854,0.071111261844635,-0.915117979049683,-0.205112636089325,0.347113728523254,-0.923035740852356,0.1025595292449,0.370792120695114,-0.991265952587128,0.0393359512090683,0.125875040888786,-0.956051468849182,-0.28444504737854,0.071111261844635,-0.915117979049683,-0.205112636089325,0.347113728523254,-0.956051468849182,-0.28444504737854,0.071111261844635,-0.889212667942047,-0.456410020589828,-0.031476553529501,-0.956051468849182,-0.28444504737854,0.071111261844635,-0.991265952587128,0.0393359512090683,0.125875040888786,-0.955544531345367,-0.292191296815872,-0.0394853092730045,-0.956051468849182,-0.28444504737854,0.071111261844635,-0.955544531345367,-0.292191296815872,-0.0394853092730045,-0.889212667942047,-0.456410020589828,-0.031476553529501,-0.991265952587128,0.0393359512090683,0.125875040888786,-0.999597251415253,-0.0157416891306639,0.0236125327646732,-0.955544531345367,-0.292191296815872,-0.0394853092730045,-0.939516067504883,-0.307908624410629,-0.150006771087646,-0.889212667942047,-0.456410020589828,-0.031476553529501,-0.955544531345367,-0.292191296815872,-0.0394853092730045,-0.955544531345367,-0.292191296815872,-0.0394853092730045,-0.999597251415253,-0.0157416891306639,0.0236125327646732,-0.939516067504883,-0.307908624410629,-0.150006771087646,-0.990163564682007,-0.110018171370029,-0.0864428505301476,-0.993883728981018,-0.110431522130966,-2.45207237028402e-017,-0.991051256656647,0.0943858325481415,-0.0943858325481415,-0.950343310832977,-0.30630898475647,0.0549785383045673,
- -0.993883728981018,-0.110431522130966,-2.45207237028402e-017,-0.990163564682007,-0.110018171370029,-0.0864428505301476,-0.967036128044128,0.039310410618782,-0.251586616039276,-0.990163564682007,-0.110018171370029,-0.0864428505301476,-0.991051256656647,0.0943858325481415,-0.0943858325481415,-0.990163564682007,-0.110018171370029,-0.0864428505301476,-0.936253547668457,-0.196691930294037,-0.291104078292847,-0.950343310832977,-0.30630898475647,0.0549785383045673,-0.967036128044128,0.039310410618782,-0.251586616039276,-0.936253547668457,-0.196691930294037,-0.291104078292847,-0.990163564682007,-0.110018171370029,-0.0864428505301476,-0.873799085617065,-0.425091445446014,-0.236161917448044,-0.950343310832977,-0.30630898475647,0.0549785383045673,-0.936253547668457,-0.196691930294037,-0.291104078292847,-0.813828945159912,-0.11851878464222,-0.56889009475708,-0.936253547668457,-0.196691930294037,-0.291104078292847,-0.967036128044128,0.039310410618782,-0.251586616039276,-0.873799085617065,-0.425091445446014,-0.236161917448044,-0.936253547668457,-0.196691930294037,-0.291104078292847,-0.813828945159912,-0.11851878464222,-0.56889009475708,-0.858640432357788,-0.0236323066055775,0.51203328371048,-0.898445844650269,-0.157622084021568,0.409817397594452,-0.817580759525299,-0.361622273921967,0.448097139596939,-0.858640432357788,-0.0236323066055775,0.51203328371048,-0.960243046283722,0.102320969104767,0.259737849235535,-0.898445844650269,-0.157622084021568,0.409817397594452,-0.817580759525299,-0.361622273921967,0.448097139596939,-0.898445844650269,-0.157622084021568,0.409817397594452,-0.93226033449173,-0.30811995267868,0.18961226940155,-0.898445844650269,-0.157622084021568,0.409817397594452,-0.960243046283722,0.102320969104767,0.259737849235535,-0.989461004734039,-0.0942343771457672,0.109940111637115,-0.898445844650269,-0.157622084021568,0.409817397594452,-0.989461004734039,-0.0942343771457672,0.109940111637115,-0.93226033449173,-0.30811995267868,0.18961226940155,-0.738169312477112,-0.61252349615097,0.282703131437302,-0.886636018753052,-0.447241187095642,0.117695055902004,
- -0.777769446372986,-0.628500580787659,0.00785625725984573,-0.738169312477112,-0.61252349615097,0.282703131437302,-0.881125390529633,-0.330422013998032,0.338289201259613,-0.886636018753052,-0.447241187095642,0.117695055902004,-0.777769446372986,-0.628500580787659,0.00785625725984573,-0.886636018753052,-0.447241187095642,0.117695055902004,-0.9026899933815,-0.41602236032486,-0.109892696142197,-0.886636018753052,-0.447241187095642,0.117695055902004,-0.881125390529633,-0.330422013998032,0.338289201259613,-0.960302531719208,-0.267625272274017,0.0787133201956749,-0.9026899933815,-0.41602236032486,-0.109892696142197,-0.886636018753052,-0.447241187095642,0.117695055902004,-0.960302531719208,-0.267625272274017,0.0787133201956749,-0.851132810115814,-0.307353526353836,0.425566405057907,-0.890288293361664,-0.36241826415062,0.275753021240234,-0.807377755641937,-0.556541919708252,0.195965483784676,-0.851132810115814,-0.307353526353836,0.425566405057907,-0.954384505748749,-0.0630998015403748,0.291836589574814,-0.890288293361664,-0.36241826415062,0.275753021240234,-0.807377755641937,-0.556541919708252,0.195965483784676,-0.890288293361664,-0.36241826415062,0.275753021240234,-0.926295399665833,-0.376798123121262,-8.36659903849538e-017,-0.890288293361664,-0.36241826415062,0.275753021240234,-0.954384505748749,-0.0630998015403748,0.291836589574814,-0.987132668495178,-0.150044173002243,0.0552794300019741,-0.890288293361664,-0.36241826415062,0.275753021240234,-0.987132668495178,-0.150044173002243,0.0552794300019741,-0.926295399665833,-0.376798123121262,-8.36659903849538e-017,-0.788747549057007,-0.339161425828934,0.512685894966125,-0.826541066169739,-0.417206436395645,0.377847343683243,-0.738328695297241,-0.604801177978516,0.298473298549652,-0.788747549057007,-0.339161425828934,0.512685894966125,-0.924100279808044,-0.118474401533604,0.363321483135223,-0.826541066169739,-0.417206436395645,0.377847343683243,-0.738328695297241,-0.604801177978516,0.298473298549652,-0.826541066169739,-0.417206436395645,0.377847343683243,-0.881780445575714,-0.456636279821396,0.118095599114895,
- -0.826541066169739,-0.417206436395645,0.377847343683243,-0.924100279808044,-0.118474401533604,0.363321483135223,-0.963021218776703,-0.228914856910706,0.142085090279579,-0.826541066169739,-0.417206436395645,0.377847343683243,-0.963021218776703,-0.228914856910706,0.142085090279579,-0.881780445575714,-0.456636279821396,0.118095599114895,-0.77824991941452,-0.51883327960968,0.353749990463257,-0.827773153781891,-0.528198063373566,0.189205288887024,-0.741146147251129,-0.670185327529907,0.0394226685166359,-0.77824991941452,-0.51883327960968,0.353749990463257,-0.912933111190796,-0.259713739156723,0.314804524183273,-0.827773153781891,-0.528198063373566,0.189205288887024,-0.741146147251129,-0.670185327529907,0.0394226685166359,-0.827773153781891,-0.528198063373566,0.189205288887024,-0.888305485248566,-0.455944418907166,-0.0550277754664421,-0.827773153781891,-0.528198063373566,0.189205288887024,-0.912933111190796,-0.259713739156723,0.314804524183273,-0.962871313095093,-0.260448783636093,0.0710314884781837,-0.827773153781891,-0.528198063373566,0.189205288887024,-0.962871313095093,-0.260448783636093,0.0710314884781837,-0.888305485248566,-0.455944418907166,-0.0550277754664421,-0.723333954811096,-0.684022307395935,0.0943479016423225,-0.754970073699951,-0.652734458446503,-0.0629141703248024,-0.622471928596497,-0.748542189598084,-0.228502348065376,-0.723333954811096,-0.684022307395935,0.0943479016423225,-0.888168394565582,-0.448014140129089,0.102178663015366,-0.754970073699951,-0.652734458446503,-0.0629141703248024,-0.622471928596497,-0.748542189598084,-0.228502348065376,-0.754970073699951,-0.652734458446503,-0.0629141703248024,-0.791846394538879,-0.533124327659607,-0.297922432422638,-0.754970073699951,-0.652734458446503,-0.0629141703248024,-0.888168394565582,-0.448014140129089,0.102178663015366,-0.912904858589172,-0.385623604059219,-0.133787781000137,-0.754970073699951,-0.652734458446503,-0.0629141703248024,-0.912904858589172,-0.385623604059219,-0.133787781000137,-0.791846394538879,-0.533124327659607,-0.297922432422638,-0.616086065769196,-0.213260561227798,0.758259773254395,
- -0.804747819900513,-0.236690551042557,0.544388234615326,-0.669125378131866,-0.440835565328598,0.598276853561401,-0.616086065769196,-0.213260561227798,0.758259773254395,-0.795250952243805,-1.34621302117511e-016,0.606280446052551,-0.804747819900513,-0.236690551042557,0.544388234615326,-0.669125378131866,-0.440835565328598,0.598276853561401,-0.804747819900513,-0.236690551042557,0.544388234615326,-0.836958050727844,-0.394791513681412,0.37899985909462,-0.804747819900513,-0.236690551042557,0.544388234615326,-0.795250952243805,-1.34621302117511e-016,0.606280446052551,-0.90388810634613,-0.149338036775589,0.400854706764221,-0.836958050727844,-0.394791513681412,0.37899985909462,-0.804747819900513,-0.236690551042557,0.544388234615326,-0.90388810634613,-0.149338036775589,0.400854706764221,-0.739721953868866,-0.661028146743774,0.125910133123398,-0.812031149864197,-0.583401083946228,-0.0157675947993994,-0.742671310901642,-0.632060647010803,-0.22122123837471,-0.739721953868866,-0.661028146743774,0.125910133123398,-0.876710534095764,-0.418609529733658,0.236948788166046,-0.812031149864197,-0.583401083946228,-0.0157675947993994,-0.742671310901642,-0.632060647010803,-0.22122123837471,-0.812031149864197,-0.583401083946228,-0.0157675947993994,-0.897721290588379,-0.401612162590027,-0.181119218468666,-0.812031149864197,-0.583401083946228,-0.0157675947993994,-0.876710534095764,-0.418609529733658,0.236948788166046,-0.953791439533234,-0.299537807703018,0.0236477218568325,-0.812031149864197,-0.583401083946228,-0.0157675947993994,-0.953791439533234,-0.299537807703018,0.0236477218568325,-0.897721290588379,-0.401612162590027,-0.181119218468666,-0.732260763645172,-0.125980347394943,0.669270575046539,-0.89206200838089,-0.149992734193802,0.426295131444931,-0.786621630191803,-0.346113532781601,0.511304080486298,-0.732260763645172,-0.125980347394943,0.669270575046539,-0.872475445270538,0.0943216681480408,0.479468494653702,-0.89206200838089,-0.149992734193802,0.426295131444931,-0.786621630191803,-0.346113532781601,0.511304080486298,-0.89206200838089,-0.149992734193802,0.426295131444931,
- -0.913272678852081,-0.307048588991165,0.267683357000351,-0.89206200838089,-0.149992734193802,0.426295131444931,-0.872475445270538,0.0943216681480408,0.479468494653702,-0.960868239402771,-0.070883721113205,0.267782926559448,-0.913272678852081,-0.307048588991165,0.267683357000351,-0.89206200838089,-0.149992734193802,0.426295131444931,-0.960868239402771,-0.070883721113205,0.267782926559448,-0.971368849277496,0.0868703871965408,-0.221124619245529,-0.911550879478455,-0.180738538503647,-0.369335293769836,-0.946762144565582,-0.260359585285187,-0.189352422952652,-0.971368849277496,0.0868703871965408,-0.221124619245529,-0.946762144565582,-0.260359585285187,-0.189352422952652,-0.993605554103851,-0.102514855563641,-0.0473145507276058,-0.911550879478455,-0.180738538503647,-0.369335293769836,-0.850288271903992,-0.488128453493118,-0.196825981140137,-0.946762144565582,-0.260359585285187,-0.189352422952652,-0.946762144565582,-0.260359585285187,-0.189352422952652,-0.935587763786316,-0.345931649208069,-0.0707587376236916,-0.993605554103851,-0.102514855563641,-0.0473145507276058,-0.946762144565582,-0.260359585285187,-0.189352422952652,-0.850288271903992,-0.488128453493118,-0.196825981140137,-0.935587763786316,-0.345931649208069,-0.0707587376236916,-0.993605554103851,-0.102514855563641,-0.0473145507276058,-0.935587763786316,-0.345931649208069,-0.0707587376236916,-0.975441098213196,-0.22026090323925,-4.89077452401899e-017,-0.850288271903992,-0.488128453493118,-0.196825981140137,-0.881234347820282,-0.472089856863022,-0.023604491725564,-0.935587763786316,-0.345931649208069,-0.0707587376236916,-0.935587763786316,-0.345931649208069,-0.0707587376236916,-0.881234347820282,-0.472089856863022,-0.023604491725564,-0.975441098213196,-0.22026090323925,-4.89077452401899e-017,-0.552432715892792,-0.789189636707306,0.268324464559555,-0.757386147975922,-0.639044523239136,0.134120464324951,-0.628519952297211,-0.77779346704483,-1.7270484310324e-016,-0.552432715892792,-0.789189636707306,0.268324464559555,-0.741146147251129,-0.559801876544952,0.370573073625565,
- -0.757386147975922,-0.639044523239136,0.134120464324951,-0.628519952297211,-0.77779346704483,-1.7270484310324e-016,-0.757386147975922,-0.639044523239136,0.134120464324951,-0.809619307518005,-0.581668317317963,-0.0786038190126419,-0.757386147975922,-0.639044523239136,0.134120464324951,-0.741146147251129,-0.559801876544952,0.370573073625565,-0.870889604091644,-0.470751166343689,0.141225337982178,-0.809619307518005,-0.581668317317963,-0.0786038190126419,-0.757386147975922,-0.639044523239136,0.134120464324951,-0.870889604091644,-0.470751166343689,0.141225337982178,-0.684318482875824,-0.668587028980255,0.291032016277313,-0.717046916484833,-0.68552827835083,0.126074180006981,-0.597462892532349,-0.801858007907867,-0.00786135345697403,-0.684318482875824,-0.668587028980255,0.291032016277313,-0.868947744369507,-0.434473872184753,0.236985757946968,-0.717046916484833,-0.68552827835083,0.126074180006981,-0.597462892532349,-0.801858007907867,-0.00786135345697403,-0.717046916484833,-0.68552827835083,0.126074180006981,-0.779237747192383,-0.613944888114929,-0.125937417149544,-0.717046916484833,-0.68552827835083,0.126074180006981,-0.868947744369507,-0.434473872184753,0.236985757946968,-0.894399762153625,-0.447199881076813,-0.00784561224281788,-0.717046916484833,-0.68552827835083,0.126074180006981,-0.894399762153625,-0.447199881076813,-0.00784561224281788,-0.779237747192383,-0.613944888114929,-0.125937417149544,-0.637281835079193,-0.684487879276276,0.354045480489731,-0.693257331848145,-0.693257331848145,0.19694809615612,-0.588185608386993,-0.807774901390076,0.0392123721539974,-0.637281835079193,-0.684487879276276,0.354045480489731,-0.823992073535919,-0.455157518386841,0.337444365024567,-0.693257331848145,-0.693257331848145,0.19694809615612,-0.588185608386993,-0.807774901390076,0.0392123721539974,-0.693257331848145,-0.693257331848145,0.19694809615612,-0.787890315055847,-0.614554464817047,-0.0393945164978504,-0.693257331848145,-0.693257331848145,0.19694809615612,-0.823992073535919,-0.455157518386841,0.337444365024567,-0.888855040073395,-0.448360502719879,0.0943916887044907,
- -0.693257331848145,-0.693257331848145,0.19694809615612,-0.888855040073395,-0.448360502719879,0.0943916887044907,-0.787890315055847,-0.614554464817047,-0.0393945164978504,-0.621893048286438,-0.676997482776642,-0.393603175878525,-0.686317145824432,-0.552209198474884,-0.473322242498398,-0.589947998523712,-0.464092403650284,-0.660741686820984,-0.621893048286438,-0.676997482776642,-0.393603175878525,-0.810898065567017,-0.551095724105835,-0.196819916367531,-0.686317145824432,-0.552209198474884,-0.473322242498398,-0.589947998523712,-0.464092403650284,-0.660741686820984,-0.686317145824432,-0.552209198474884,-0.473322242498398,-0.788894772529602,-0.299780040979385,-0.53644847869873,-0.686317145824432,-0.552209198474884,-0.473322242498398,-0.810898065567017,-0.551095724105835,-0.196819916367531,-0.883397221565247,-0.339161425828934,-0.323386490345001,-0.686317145824432,-0.552209198474884,-0.473322242498398,-0.883397221565247,-0.339161425828934,-0.323386490345001,-0.788894772529602,-0.299780040979385,-0.53644847869873,-0.545186340808868,-0.821730077266693,-0.165926277637482,-0.757598459720612,-0.631332039833069,-0.165724650025368,-0.645089626312256,-0.66869044303894,-0.369746506214142,-0.545186340808868,-0.821730077266693,-0.165926277637482,-0.717425584793091,-0.693774223327637,0.0630703791975975,-0.757598459720612,-0.631332039833069,-0.165724650025368,-0.645089626312256,-0.66869044303894,-0.369746506214142,-0.757598459720612,-0.631332039833069,-0.165724650025368,-0.827361881732941,-0.464898556470871,-0.315185457468033,-0.757598459720612,-0.631332039833069,-0.165724650025368,-0.717425584793091,-0.693774223327637,0.0630703791975975,-0.86603444814682,-0.496001541614532,-0.062984324991703,-0.827361881732941,-0.464898556470871,-0.315185457468033,-0.757598459720612,-0.631332039833069,-0.165724650025368,-0.86603444814682,-0.496001541614532,-0.062984324991703,-0.941357553005219,-0.007844646461308,-0.337319761514664,-0.928472101688385,-0.298999488353729,-0.220315411686897,-0.977226555347443,-0.204902336001396,-0.0551660135388374,-0.941357553005219,-0.007844646461308,-0.337319761514664,
- -0.977226555347443,-0.204902336001396,-0.0551660135388374,-0.996239423751831,0.00784440524876118,-0.0862884521484375,-0.928472101688385,-0.298999488353729,-0.220315411686897,-0.919607877731323,-0.369415134191513,0.133618235588074,-0.977226555347443,-0.204902336001396,-0.0551660135388374,-0.977226555347443,-0.204902336001396,-0.0551660135388374,-0.981789767742157,-0.164940670132637,0.0942518189549446,-0.996239423751831,0.00784440524876118,-0.0862884521484375,-0.977226555347443,-0.204902336001396,-0.0551660135388374,-0.919607877731323,-0.369415134191513,0.133618235588074,-0.981789767742157,-0.164940670132637,0.0942518189549446,-0.996239423751831,0.00784440524876118,-0.0862884521484375,-0.981789767742157,-0.164940670132637,0.0942518189549446,-0.998731434345245,-0.031456109136343,0.039320133626461,-0.919607877731323,-0.369415134191513,0.133618235588074,-0.950401842594147,-0.219927683472633,0.219927683472633,-0.981789767742157,-0.164940670132637,0.0942518189549446,-0.981789767742157,-0.164940670132637,0.0942518189549446,-0.950401842594147,-0.219927683472633,0.219927683472633,-0.998731434345245,-0.031456109136343,0.039320133626461,-0.683262407779694,-0.235607758164406,0.691116094589233,-0.857815802097321,-0.220356345176697,0.46432226896286,-0.753596365451813,-0.423897951841354,0.502397537231445,-0.683262407779694,-0.235607758164406,0.691116094589233,-0.828288018703461,0.015776913613081,0.560080409049988,-0.857815802097321,-0.220356345176697,0.46432226896286,-0.753596365451813,-0.423897951841354,0.502397537231445,-0.857815802097321,-0.220356345176697,0.46432226896286,-0.897304177284241,-0.338456809520721,0.283359199762344,-0.857815802097321,-0.220356345176697,0.46432226896286,-0.828288018703461,0.015776913613081,0.560080409049988,-0.938755571842194,-0.0946644321084023,0.331325501203537,-0.897304177284241,-0.338456809520721,0.283359199762344,-0.857815802097321,-0.220356345176697,0.46432226896286,-0.938755571842194,-0.0946644321084023,0.331325501203537,-0.792723953723907,-0.125580027699471,0.596505165100098,-0.826362013816834,-0.251843631267548,0.503687262535095,
- -0.725760638713837,-0.449656039476395,0.520654380321503,-0.792723953723907,-0.125580027699471,0.596505165100098,-0.931678950786591,0.00789558421820402,0.363196909427643,-0.826362013816834,-0.251843631267548,0.503687262535095,-0.725760638713837,-0.449656039476395,0.520654380321503,-0.826362013816834,-0.251843631267548,0.503687262535095,-0.873528480529785,-0.401350915431976,0.275436878204346,-0.826362013816834,-0.251843631267548,0.503687262535095,-0.931678950786591,0.00789558421820402,0.363196909427643,-0.958848118782043,-0.188625857234001,0.212204083800316,-0.826362013816834,-0.251843631267548,0.503687262535095,-0.958848118782043,-0.188625857234001,0.212204083800316,-0.873528480529785,-0.401350915431976,0.275436878204346,-0.745815277099609,-0.0942082405090332,0.659457683563232,-0.803348958492279,-0.204775229096413,0.559193849563599,-0.719643115997314,-0.419132798910141,0.553571581840515,-0.745815277099609,-0.0942082405090332,0.659457683563232,-0.891063034534454,0.0630841106176376,0.44947424530983,-0.803348958492279,-0.204775229096413,0.559193849563599,-0.719643115997314,-0.419132798910141,0.553571581840515,-0.803348958492279,-0.204775229096413,0.559193849563599,-0.881125390529633,-0.330422013998032,0.338289201259613,-0.803348958492279,-0.204775229096413,0.559193849563599,-0.891063034534454,0.0630841106176376,0.44947424530983,-0.952637791633606,-0.110222548246384,0.28342941403389,-0.803348958492279,-0.204775229096413,0.559193849563599,-0.952637791633606,-0.110222548246384,0.28342941403389,-0.881125390529633,-0.330422013998032,0.338289201259613,-0.730925261974335,-0.660190522670746,0.172907054424286,-0.770698487758636,-0.637005865573883,0.0157285407185555,-0.662712872028351,-0.733717858791351,-0.1498993486166,-0.730925261974335,-0.660190522670746,0.172907054424286,-0.894868016242981,-0.408185392618179,0.180543541908264,-0.770698487758636,-0.637005865573883,0.0157285407185555,-0.662712872028351,-0.733717858791351,-0.1498993486166,-0.770698487758636,-0.637005865573883,0.0157285407185555,-0.829217433929443,-0.513325035572052,-0.22112463414669,
- -0.770698487758636,-0.637005865573883,0.0157285407185555,-0.894868016242981,-0.408185392618179,0.180543541908264,-0.929364383220673,-0.362294584512711,-0.070883721113205,-0.770698487758636,-0.637005865573883,0.0157285407185555,-0.929364383220673,-0.362294584512711,-0.070883721113205,-0.829217433929443,-0.513325035572052,-0.22112463414669,-0.676578342914581,-0.590039253234863,0.440562635660172,-0.857099413871765,-0.440344661474228,0.267352104187012,-0.751791775226593,-0.634324312210083,0.180116772651672,-0.676578342914581,-0.590039253234863,0.440562635660172,-0.826336264610291,-0.306924909353256,0.472192168235779,-0.857099413871765,-0.440344661474228,0.267352104187012,-0.751791775226593,-0.634324312210083,0.180116772651672,-0.857099413871765,-0.440344661474228,0.267352104187012,-0.896859645843506,-0.440562635660172,0.0393359512090683,-0.857099413871765,-0.440344661474228,0.267352104187012,-0.826336264610291,-0.306924909353256,0.472192168235779,-0.937822282314301,-0.267949223518372,0.220664069056511,-0.896859645843506,-0.440562635660172,0.0393359512090683,-0.857099413871765,-0.440344661474228,0.267352104187012,-0.937822282314301,-0.267949223518372,0.220664069056511,-0.941995322704315,0.329698354005814,-0.0627996847033501,-0.929133951663971,0.165354341268539,-0.330708682537079,-0.976983845233917,0.015757804736495,-0.21273036301136,-0.941995322704315,0.329698354005814,-0.0627996847033501,-0.976983845233917,0.015757804736495,-0.21273036301136,-0.996239423751831,0.0862884521484375,-0.00784440524876118,-0.929133951663971,0.165354341268539,-0.330708682537079,-0.920290350914001,-0.196643248200417,-0.33822637796402,-0.976983845233917,0.015757804736495,-0.21273036301136,-0.976983845233917,0.015757804736495,-0.21273036301136,-0.981759488582611,-0.117811143398285,-0.149227440357208,-0.996239423751831,0.0862884521484375,-0.00784440524876118,-0.976983845233917,0.015757804736495,-0.21273036301136,-0.920290350914001,-0.196643248200417,-0.33822637796402,-0.981759488582611,-0.117811143398285,-0.149227440357208,-0.996239423751831,0.0862884521484375,-0.00784440524876118,
- -0.981759488582611,-0.117811143398285,-0.149227440357208,-0.998607933521271,-0.047178328037262,-0.023589164018631,-0.920290350914001,-0.196643248200417,-0.33822637796402,-0.948939442634583,-0.25880166888237,-0.180376917123795,-0.981759488582611,-0.117811143398285,-0.149227440357208,-0.981759488582611,-0.117811143398285,-0.149227440357208,-0.948939442634583,-0.25880166888237,-0.180376917123795,-0.998607933521271,-0.047178328037262,-0.023589164018631,-0.682925581932068,-0.722174227237701,-0.109896086156368,-0.858001887798309,-0.495909333229065,-0.133816793560982,-0.755086719989777,-0.566314995288849,-0.330350428819656,-0.682925581932068,-0.722174227237701,-0.109896086156368,-0.826976895332336,-0.551317870616913,0.110263586044312,-0.858001887798309,-0.495909333229065,-0.133816793560982,-0.755086719989777,-0.566314995288849,-0.330350428819656,-0.858001887798309,-0.495909333229065,-0.133816793560982,-0.897304177284241,-0.338456809520721,-0.283359199762344,-0.858001887798309,-0.495909333229065,-0.133816793560982,-0.826976895332336,-0.551317870616913,0.110263586044312,-0.93975031375885,-0.3395736515522,-0.0394853092730045,-0.897304177284241,-0.338456809520721,-0.283359199762344,-0.858001887798309,-0.495909333229065,-0.133816793560982,-0.93975031375885,-0.3395736515522,-0.0394853092730045,-0.795029163360596,-0.606111347675323,-0.0236147288233042,-0.827773153781891,-0.536081612110138,-0.165554612874985,-0.724746525287628,-0.590825974941254,-0.354495584964752,-0.795029163360596,-0.606111347675323,-0.0236147288233042,-0.929364383220673,-0.362294584512711,0.070883721113205,-0.827773153781891,-0.536081612110138,-0.165554612874985,-0.724746525287628,-0.590825974941254,-0.354495584964752,-0.827773153781891,-0.536081612110138,-0.165554612874985,-0.872286856174469,-0.345771372318268,-0.345771372318268,-0.827773153781891,-0.536081612110138,-0.165554612874985,-0.929364383220673,-0.362294584512711,0.070883721113205,-0.958345055580139,-0.243513911962509,-0.149250462651253,-0.827773153781891,-0.536081612110138,-0.165554612874985,-0.958345055580139,-0.243513911962509,-0.149250462651253,
- -0.872286856174469,-0.345771372318268,-0.345771372318268,-0.7450350522995,-0.666610300540924,0.0235274229198694,-0.80447244644165,-0.583636879920959,-0.110417790710926,-0.716690957546234,-0.622182250022888,-0.315028995275497,-0.7450350522995,-0.666610300540924,0.0235274229198694,-0.890067338943481,-0.433218628168106,0.141780629754066,-0.80447244644165,-0.583636879920959,-0.110417790710926,-0.716690957546234,-0.622182250022888,-0.315028995275497,-0.80447244644165,-0.583636879920959,-0.110417790710926,-0.882656276226044,-0.386162102222443,-0.267949223518372,-0.80447244644165,-0.583636879920959,-0.110417790710926,-0.890067338943481,-0.433218628168106,0.141780629754066,-0.952165842056274,-0.299027293920517,-0.0629531145095825,-0.80447244644165,-0.583636879920959,-0.110417790710926,-0.952165842056274,-0.299027293920517,-0.0629531145095825,-0.882656276226044,-0.386162102222443,-0.267949223518372,-0.7309929728508,-0.282965004444122,-0.620950996875763,-0.772324204444885,-0.126093745231628,-0.622587919235229,-0.662218391895294,0.0236506592482328,-0.748937547206879,-0.7309929728508,-0.282965004444122,-0.620950996875763,-0.896609961986542,-0.243814989924431,-0.369654983282089,-0.772324204444885,-0.126093745231628,-0.622587919235229,-0.662218391895294,0.0236506592482328,-0.748937547206879,-0.772324204444885,-0.126093745231628,-0.622587919235229,-0.829010546207428,0.126325413584709,-0.544778347015381,-0.772324204444885,-0.126093745231628,-0.622587919235229,-0.896609961986542,-0.243814989924431,-0.369654983282089,-0.929018676280975,8.21638039227779e-017,-0.370032876729965,-0.772324204444885,-0.126093745231628,-0.622587919235229,-0.929018676280975,8.21638039227779e-017,-0.370032876729965,-0.829010546207428,0.126325413584709,-0.544778347015381,-0.67743843793869,-0.535649001598358,-0.504140257835388,-0.855593025684357,-0.337527513504028,-0.392473846673965,-0.755718111991882,-0.283394277095795,-0.590404808521271,-0.67743843793869,-0.535649001598358,-0.504140257835388,-0.825850546360016,-0.519106030464172,-0.220226794481277,-0.855593025684357,-0.337527513504028,-0.392473846673965,
- -0.755718111991882,-0.283394277095795,-0.590404808521271,-0.855593025684357,-0.337527513504028,-0.392473846673965,-0.894399762153625,-0.117684185504913,-0.431508660316467,-0.855593025684357,-0.337527513504028,-0.392473846673965,-0.825850546360016,-0.519106030464172,-0.220226794481277,-0.938113749027252,-0.26014918088913,-0.228615954518318,-0.894399762153625,-0.117684185504913,-0.431508660316467,-0.855593025684357,-0.337527513504028,-0.392473846673965,-0.938113749027252,-0.26014918088913,-0.228615954518318,-0.969406008720398,-0.244321838021278,-0.0236440505832434,-0.939428150653839,-0.26840803027153,-0.213147565722466,-0.948881089687347,-0.282311707735062,-0.141155853867531,-0.939428150653839,-0.26840803027153,-0.213147565722466,-0.969406008720398,-0.244321838021278,-0.0236440505832434,-0.967754244804382,-0.157358407974243,-0.196698009967804,-0.948881089687347,-0.282311707735062,-0.141155853867531,-0.931591868400574,-0.300004154443741,0.205265998840332,-0.969406008720398,-0.244321838021278,-0.0236440505832434,-0.969406008720398,-0.244321838021278,-0.0236440505832434,-0.954503297805786,-0.181434512138367,-0.236653715372086,-0.967754244804382,-0.157358407974243,-0.196698009967804,-0.931591868400574,-0.300004154443741,0.205265998840332,-0.941995322704315,-0.329698354005814,0.0627996847033501,-0.969406008720398,-0.244321838021278,-0.0236440505832434,-0.954503297805786,-0.181434512138367,-0.236653715372086,-0.969406008720398,-0.244321838021278,-0.0236440505832434,-0.941995322704315,-0.329698354005814,0.0627996847033501,-0.941995322704315,-0.329698354005814,0.0627996847033501,-0.931591868400574,-0.300004154443741,0.205265998840332,-0.911241471767426,-0.33778777718544,0.235665902495384,-0.941995322704315,-0.329698354005814,0.0627996847033501,-0.833689987659454,-0.448304980993271,-0.322464972734451,-0.954503297805786,-0.181434512138367,-0.236653715372086,-0.867865383625031,-0.418153345584869,0.268249303102493,-0.941995322704315,-0.329698354005814,0.0627996847033501,-0.911241471767426,-0.33778777718544,0.235665902495384,-0.833689987659454,-0.448304980993271,-0.322464972734451,
- -0.941995322704315,-0.329698354005814,0.0627996847033501,-0.89214551448822,-0.450020313262939,0.0394754633307457,-0.89214551448822,-0.450020313262939,0.0394754633307457,-0.941995322704315,-0.329698354005814,0.0627996847033501,-0.867865383625031,-0.418153345584869,0.268249303102493,-0.519041836261749,-0.770698487758636,0.369620710611343,-0.764300942420959,-0.575195610523224,0.291537493467331,-0.794635474681854,-0.605811178684235,0.0393383875489235,-0.764300942420959,-0.575195610523224,0.291537493467331,-0.942082405090332,-0.314027458429337,-0.117760300636292,-0.794635474681854,-0.605811178684235,0.0393383875489235,-0.519041836261749,-0.770698487758636,0.369620710611343,-0.259963423013687,-0.724746525287628,0.638092041015625,-0.764300942420959,-0.575195610523224,0.291537493467331,-0.939428150653839,-0.299985468387604,-0.165781438350677,-0.942082405090332,-0.314027458429337,-0.117760300636292,-0.764300942420959,-0.575195610523224,0.291537493467331,-0.764300942420959,-0.575195610523224,0.291537493467331,-0.259963423013687,-0.724746525287628,0.638092041015625,-0.801264047622681,-0.597020268440247,0.0392776504158974,-0.764300942420959,-0.575195610523224,0.291537493467331,-0.801264047622681,-0.597020268440247,0.0392776504158974,-0.939428150653839,-0.299985468387604,-0.165781438350677,-0.385802865028381,-0.889708638191223,0.244079366326332,-0.801264047622681,-0.597020268440247,0.0392776504158974,-0.259963423013687,-0.724746525287628,0.638092041015625,-0.801264047622681,-0.597020268440247,0.0392776504158974,-0.885410070419312,-0.347839683294296,-0.308312445878983,-0.939428150653839,-0.299985468387604,-0.165781438350677,-0.801264047622681,-0.597020268440247,0.0392776504158974,-0.385802865028381,-0.889708638191223,0.244079366326332,-0.702948093414307,-0.710846364498138,-0.0236948784440756,-0.885410070419312,-0.347839683294296,-0.308312445878983,-0.801264047622681,-0.597020268440247,0.0392776504158974,-0.702948093414307,-0.710846364498138,-0.0236948784440756,-0.981033563613892,0.164813637733459,0.102027483284473,-0.999845147132874,-0.00787279661744833,-0.0157455932348967,
- -0.97795569896698,0.0394336953759193,0.205055221915245,-0.981033563613892,0.164813637733459,0.102027483284473,-0.98248702287674,0.165057823061943,-0.0864588618278503,-0.999845147132874,-0.00787279661744833,-0.0157455932348967,-0.97795569896698,0.0394336953759193,0.205055221915245,-0.999845147132874,-0.00787279661744833,-0.0157455932348967,-0.979327261447906,-0.157956004142761,0.126364797353745,-0.999845147132874,-0.00787279661744833,-0.0157455932348967,-0.98248702287674,0.165057823061943,-0.0864588618278503,-0.983216226100922,0.0235971882939339,-0.180911779403687,-0.979327261447906,-0.157956004142761,0.126364797353745,-0.999845147132874,-0.00787279661744833,-0.0157455932348967,-0.988973200321198,-0.125583902001381,-0.0784899368882179,-0.988973200321198,-0.125583902001381,-0.0784899368882179,-0.999845147132874,-0.00787279661744833,-0.0157455932348967,-0.983216226100922,0.0235971882939339,-0.180911779403687,-0.979510545730591,0.0394963920116425,-0.197481960058212,-0.999876022338867,-3.49633197622281e-018,0.0157460793852806,-0.975803375244141,0.188865169882774,-0.110171347856522,-0.979510545730591,0.0394963920116425,-0.197481960058212,-0.983947098255157,-0.133816793560982,-0.118073657155037,-0.999876022338867,-3.49633197622281e-018,0.0157460793852806,-0.975803375244141,0.188865169882774,-0.110171347856522,-0.999876022338867,-3.49633197622281e-018,0.0157460793852806,-0.978046953678131,0.181411936879158,0.102537177503109,-0.999876022338867,-3.49633197622281e-018,0.0157460793852806,-0.983947098255157,-0.133816793560982,-0.118073657155037,-0.984099447727203,-0.173201501369476,0.0393639765679836,-0.978046953678131,0.181411936879158,0.102537177503109,-0.999876022338867,-3.49633197622281e-018,0.0157460793852806,-0.989918947219849,-0.00785649940371513,0.141416981816292,-0.989918947219849,-0.00785649940371513,0.141416981816292,-0.999876022338867,-3.49633197622281e-018,0.0157460793852806,-0.984099447727203,-0.173201501369476,0.0393639765679836,-0.981305718421936,-0.188410699367523,-0.0392522290349007,-0.999721229076386,0.023615462705493,5.243686086563e-018,
- -0.976620197296143,-0.102387592196465,-0.18902325630188,-0.981305718421936,-0.188410699367523,-0.0392522290349007,-0.984832227230072,-0.110301204025745,0.133937180042267,-0.999721229076386,0.023615462705493,5.243686086563e-018,-0.976620197296143,-0.102387592196465,-0.18902325630188,-0.999721229076386,0.023615462705493,5.243686086563e-018,-0.977226555347443,0.110332027077675,-0.181259766221046,-0.999721229076386,0.023615462705493,5.243686086563e-018,-0.984832227230072,-0.110301204025745,0.133937180042267,-0.983764111995697,0.0472206771373749,0.173142492771149,-0.977226555347443,0.110332027077675,-0.181259766221046,-0.999721229076386,0.023615462705493,5.243686086563e-018,-0.987409830093384,0.15798556804657,0.00789927877485752,-0.987409830093384,0.15798556804657,0.00789927877485752,-0.999721229076386,0.023615462705493,5.243686086563e-018,-0.983764111995697,0.0472206771373749,0.173142492771149,-0.979999899864197,0.0237096734344959,-0.197580605745316,-0.999876022338867,-3.49633197622281e-018,0.0157460793852806,-0.976771771907806,0.173298224806786,-0.126035064458847,-0.979999899864197,0.0237096734344959,-0.197580605745316,-0.982638835906982,-0.149361103773117,-0.110055543482304,-0.999876022338867,-3.49633197622281e-018,0.0157460793852806,-0.976771771907806,0.173298224806786,-0.126035064458847,-0.999876022338867,-3.49633197622281e-018,0.0157460793852806,-0.978716969490051,0.189429089426994,0.0789287835359573,-0.999876022338867,-3.49633197622281e-018,0.0157460793852806,-0.982638835906982,-0.149361103773117,-0.110055543482304,-0.984221458435059,-0.165349200367928,0.0629901736974716,-0.978716969490051,0.189429089426994,0.0789287835359573,-0.999876022338867,-3.49633197622281e-018,0.0157460793852806,-0.989949524402618,-3.14018473127668e-017,0.141421347856522,-0.989949524402618,-3.14018473127668e-017,0.141421347856522,-0.999876022338867,-3.49633197622281e-018,0.0157460793852806,-0.984221458435059,-0.165349200367928,0.0629901736974716,-0.981547594070435,-0.180604755878448,-0.0628190487623215,-0.999721229076386,0.023615462705493,5.243686086563e-018,
- -0.976256906986237,-0.0708573535084724,-0.204699024558067,-0.981547594070435,-0.180604755878448,-0.0628190487623215,-0.984832227230072,-0.133937180042267,0.110301204025745,-0.999721229076386,0.023615462705493,5.243686086563e-018,-0.976256906986237,-0.0708573535084724,-0.204699024558067,-0.999721229076386,0.023615462705493,5.243686086563e-018,-0.977074861526489,0.133953809738159,-0.165472343564034,-0.999721229076386,0.023615462705493,5.243686086563e-018,-0.984832227230072,-0.133937180042267,0.110301204025745,-0.984587788581848,0.0236301068216562,0.173287451267242,-0.977074861526489,0.133953809738159,-0.165472343564034,-0.999721229076386,0.023615462705493,5.243686086563e-018,-0.986948072910309,0.157911688089371,0.0315823368728161,-0.986948072910309,0.157911688089371,0.0315823368728161,-0.999721229076386,0.023615462705493,5.243686086563e-018,-0.984587788581848,0.0236301068216562,0.173287451267242,-0.981547594070435,-0.180604755878448,-0.0628190487623215,-0.999721229076386,0.023615462705493,5.243686086563e-018,-0.976256906986237,-0.0708573535084724,-0.204699024558067,-0.981547594070435,-0.180604755878448,-0.0628190487623215,-0.984832227230072,-0.133937180042267,0.110301204025745,-0.999721229076386,0.023615462705493,5.243686086563e-018,-0.976256906986237,-0.0708573535084724,-0.204699024558067,-0.999721229076386,0.023615462705493,5.243686086563e-018,-0.977074861526489,0.133953809738159,-0.165472343564034,-0.999721229076386,0.023615462705493,5.243686086563e-018,-0.984832227230072,-0.133937180042267,0.110301204025745,-0.984587788581848,0.0236301068216562,0.173287451267242,-0.977074861526489,0.133953809738159,-0.165472343564034,-0.999721229076386,0.023615462705493,5.243686086563e-018,-0.986948072910309,0.157911688089371,0.0315823368728161,-0.986948072910309,0.157911688089371,0.0315823368728161,-0.999721229076386,0.023615462705493,5.243686086563e-018,-0.984587788581848,0.0236301068216562,0.173287451267242,-0.980822145938873,0.125545233488083,0.149084970355034,-0.999845147132874,-0.00787279661744833,-0.0157455932348967,-0.978229522705078,-0.0315557904541492,0.205112636089325,
- -0.980822145938873,0.125545233488083,0.149084970355034,-0.98157787322998,0.188462942838669,-0.0314104929566383,-0.999845147132874,-0.00787279661744833,-0.0157455932348967,-0.978229522705078,-0.0315557904541492,0.205112636089325,-0.999845147132874,-0.00787279661744833,-0.0157455932348967,-0.980128526687622,-0.188184678554535,0.062728226184845,-0.999845147132874,-0.00787279661744833,-0.0157455932348967,-0.98157787322998,0.188462942838669,-0.0314104929566383,-0.981820046901703,0.0785456076264381,-0.172800332307816,-0.980128526687622,-0.188184678554535,0.062728226184845,-0.999845147132874,-0.00787279661744833,-0.0157455932348967,-0.988577425479889,-0.0941502302885056,-0.117687791585922,-0.988577425479889,-0.0941502302885056,-0.117687791585922,-0.999845147132874,-0.00787279661744833,-0.0157455932348967,-0.981820046901703,0.0785456076264381,-0.172800332307816,-0.980459988117218,-0.180404648184776,-0.0784367993474007,-0.999721229076386,0.023615462705493,5.243686086563e-018,-0.976256906986237,-0.0708573535084724,-0.204699024558067,-0.980459988117218,-0.180404648184776,-0.0784367993474007,-0.984832227230072,-0.133937180042267,0.110301204025745,-0.999721229076386,0.023615462705493,5.243686086563e-018,-0.976256906986237,-0.0708573535084724,-0.204699024558067,-0.999721229076386,0.023615462705493,5.243686086563e-018,-0.977257013320923,0.141859874129295,-0.157622098922729,-0.999721229076386,0.023615462705493,5.243686086563e-018,-0.984832227230072,-0.133937180042267,0.110301204025745,-0.983216226100922,0.0235971882939339,0.180911779403687,-0.977257013320923,0.141859874129295,-0.157622098922729,-0.999721229076386,0.023615462705493,5.243686086563e-018,-0.987872242927551,0.150156587362289,0.0395148880779743,-0.987872242927551,0.150156587362289,0.0395148880779743,-0.999721229076386,0.023615462705493,5.243686086563e-018,-0.983216226100922,0.0235971882939339,0.180911779403687,-0.981789767742157,-0.164940670132637,-0.0942518189549446,-0.96482652425766,-0.253069251775742,-0.071175716817379,-0.925139665603638,-0.221400961279869,-0.308379918336868,
- -0.981789767742157,-0.164940670132637,-0.0942518189549446,-0.909335672855377,-0.282207608222961,0.305724918842316,-0.96482652425766,-0.253069251775742,-0.071175716817379,-0.925139665603638,-0.221400961279869,-0.308379918336868,-0.948772251605988,-0.166035130620003,-0.268818795681,-0.981789767742157,-0.164940670132637,-0.0942518189549446,-0.909335672855377,-0.282207608222961,0.305724918842316,-0.981789767742157,-0.164940670132637,-0.0942518189549446,-0.976347684860229,-0.0393688566982746,0.212591841816902,-0.986057102680206,-0.165657594799995,0.015776913613081,-0.981789767742157,-0.164940670132637,-0.0942518189549446,-0.948772251605988,-0.166035130620003,-0.268818795681,-0.986057102680206,-0.165657594799995,0.015776913613081,-0.976347684860229,-0.0393688566982746,0.212591841816902,-0.981789767742157,-0.164940670132637,-0.0942518189549446,-0.986057102680206,-0.165657594799995,0.015776913613081,-0.948772251605988,-0.166035130620003,-0.268818795681,-0.96048104763031,-0.196819886565208,-0.196819886565208,-0.976347684860229,-0.0393688566982746,0.212591841816902,-0.986057102680206,-0.165657594799995,0.015776913613081,-0.973455131053925,-0.0863548964262009,0.211962014436722,-0.944794058799744,-0.267691612243652,0.188958793878555,-0.986057102680206,-0.165657594799995,0.015776913613081,-0.96048104763031,-0.196819886565208,-0.196819886565208,-0.986057102680206,-0.165657594799995,0.015776913613081,-0.934692680835724,-0.251345932483673,0.251345932483673,-0.973455131053925,-0.0863548964262009,0.211962014436722,-0.934692680835724,-0.251345932483673,0.251345932483673,-0.986057102680206,-0.165657594799995,0.015776913613081,-0.944794058799744,-0.267691612243652,0.188958793878555,-0.968594014644623,-0.0472484864294529,-0.244117185473442,-0.984832227230072,-0.173330470919609,0.00787865743041039,-0.99138867855072,-0.110154293477535,-0.0708134695887566,-0.99138867855072,-0.110154293477535,-0.0708134695887566,-0.984832227230072,-0.173330470919609,0.00787865743041039,-0.954503297805786,-0.236653715372086,0.181434512138367,-0.99138867855072,-0.110154293477535,-0.0708134695887566,
- -0.940601229667664,0.0711379051208496,-0.331976920366287,-0.968594014644623,-0.0472484864294529,-0.244117185473442,-0.949903845787048,-0.28261598944664,0.13345755636692,-0.99138867855072,-0.110154293477535,-0.0708134695887566,-0.954503297805786,-0.236653715372086,0.181434512138367,-0.940601229667664,0.0711379051208496,-0.331976920366287,-0.99138867855072,-0.110154293477535,-0.0708134695887566,-0.978046953678131,-0.102537177503109,-0.181411936879158,-0.978046953678131,-0.102537177503109,-0.181411936879158,-0.99138867855072,-0.110154293477535,-0.0708134695887566,-0.949903845787048,-0.28261598944664,0.13345755636692,-0.978046953678131,-0.102537177503109,-0.181411936879158,-0.913499116897583,0.102374896407127,-0.393749624490738,-0.940601229667664,0.0711379051208496,-0.331976920366287,-0.920062720775604,-0.385325402021408,-0.0707740485668182,-0.978046953678131,-0.102537177503109,-0.181411936879158,-0.949903845787048,-0.28261598944664,0.13345755636692,-0.913499116897583,0.102374896407127,-0.393749624490738,-0.978046953678131,-0.102537177503109,-0.181411936879158,-0.953317582607269,-0.0787865743041039,-0.291510343551636,-0.953317582607269,-0.0787865743041039,-0.291510343551636,-0.978046953678131,-0.102537177503109,-0.181411936879158,-0.920062720775604,-0.385325402021408,-0.0707740485668182,-0.98869913816452,-0.109855458140373,0.102008640766144,-0.939662396907806,-0.11054852604866,0.323749244213104,-0.971490025520325,-0.205355599522591,0.118474394083023,-0.907426774501801,-0.347189396619797,-0.236720040440559,-0.98869913816452,-0.109855458140373,0.102008640766144,-0.971490025520325,-0.205355599522591,0.118474394083023,-0.939662396907806,-0.11054852604866,0.323749244213104,-0.98869913816452,-0.109855458140373,0.102008640766144,-0.957223474979401,-0.0627687498927116,0.282459378242493,-0.98869913816452,-0.109855458140373,0.102008640766144,-0.907426774501801,-0.347189396619797,-0.236720040440559,-0.969918131828308,-0.102511666715145,-0.22079436480999,-0.988790571689606,-0.149103343486786,-0.00784754473716021,-0.957223474979401,-0.0627687498927116,0.282459378242493,
- -0.98869913816452,-0.109855458140373,0.102008640766144,-0.969918131828308,-0.102511666715145,-0.22079436480999,-0.988790571689606,-0.149103343486786,-0.00784754473716021,-0.98869913816452,-0.109855458140373,0.102008640766144,-0.969105064868927,-0.110304646193981,0.220609292387962,-0.957223474979401,-0.0627687498927116,0.282459378242493,-0.988790571689606,-0.149103343486786,-0.00784754473716021,-0.988790571689606,-0.149103343486786,-0.00784754473716021,-0.969918131828308,-0.102511666715145,-0.22079436480999,-0.966916620731354,-0.141499981284142,-0.212249979376793,-0.944764852523804,-0.299175530672073,-0.133841678500175,-0.969105064868927,-0.110304646193981,0.220609292387962,-0.988790571689606,-0.149103343486786,-0.00784754473716021,-0.935501039028168,-0.298731446266174,-0.188672482967377,-0.988790571689606,-0.149103343486786,-0.00784754473716021,-0.966916620731354,-0.141499981284142,-0.212249979376793,-0.988790571689606,-0.149103343486786,-0.00784754473716021,-0.935501039028168,-0.298731446266174,-0.188672482967377,-0.944764852523804,-0.299175530672073,-0.133841678500175,-0.981033563613892,0.180510178208351,0.0706344097852707,-0.999752104282379,-0.0157441273331642,-0.0157441273331642,-0.977803647518158,0.0709696188569069,0.197137832641602,-0.981033563613892,0.180510178208351,0.0706344097852707,-0.982881903648376,0.141534984111786,-0.117945834994316,-0.999752104282379,-0.0157441273331642,-0.0157441273331642,-0.977803647518158,0.0709696188569069,0.197137832641602,-0.999752104282379,-0.0157441273331642,-0.0157441273331642,-0.97957170009613,-0.142195880413055,0.142195880413055,-0.999752104282379,-0.0157441273331642,-0.0157441273331642,-0.982881903648376,0.141534984111786,-0.117945834994316,-0.982032120227814,-0.00785625725984573,-0.188550174236298,-0.97957170009613,-0.142195880413055,0.142195880413055,-0.999752104282379,-0.0157441273331642,-0.0157441273331642,-0.988273561000824,-0.142311379313469,-0.0553433187305927,-0.988273561000824,-0.142311379313469,-0.0553433187305927,-0.999752104282379,-0.0157441273331642,-0.0157441273331642,
- -0.982032120227814,-0.00785625725984573,-0.188550174236298,-0.979999899864197,0.0237096734344959,-0.197580605745316,-0.999938011169434,-0.0078735277056694,0.0078735277056694,-0.977712452411652,0.173465117812157,-0.118271671235561,-0.979999899864197,0.0237096734344959,-0.197580605745316,-0.981941223144531,-0.141399532556534,-0.125688478350639,-0.999938011169434,-0.0078735277056694,0.0078735277056694,-0.977712452411652,0.173465117812157,-0.118271671235561,-0.999938011169434,-0.0078735277056694,0.0078735277056694,-0.978808522224426,0.181553184986115,0.0947234109044075,-0.999938011169434,-0.0078735277056694,0.0078735277056694,-0.981941223144531,-0.141399532556534,-0.125688478350639,-0.983764111995697,-0.173142492771149,0.0472206771373749,-0.978808522224426,0.181553184986115,0.0947234109044075,-0.999938011169434,-0.0078735277056694,0.0078735277056694,-0.989827394485474,-0.0157115459442139,0.141403913497925,-0.989827394485474,-0.0157115459442139,0.141403913497925,-0.999938011169434,-0.0078735277056694,0.0078735277056694,-0.983764111995697,-0.173142492771149,0.0472206771373749,-0.978595018386841,0.110486537218094,-0.173621699213982,-0.999938011169434,-0.0078735277056694,0.0078735277056694,-0.976620197296143,0.212651163339615,-0.0315038748085499,-0.978595018386841,0.110486537218094,-0.173621699213982,-0.983124971389771,-0.0786499977111816,-0.165164992213249,-0.999938011169434,-0.0078735277056694,0.0078735277056694,-0.976620197296143,0.212651163339615,-0.0315038748085499,-0.999938011169434,-0.0078735277056694,0.0078735277056694,-0.980520606040955,0.126518785953522,0.150241062045097,-0.999938011169434,-0.0078735277056694,0.0078735277056694,-0.983124971389771,-0.0786499977111816,-0.165164992213249,-0.983216226100922,-0.180911779403687,-0.0235971882939339,-0.980520606040955,0.126518785953522,0.150241062045097,-0.999938011169434,-0.0078735277056694,0.0078735277056694,-0.989552557468414,-0.0706823170185089,0.125657469034195,-0.989552557468414,-0.0706823170185089,0.125657469034195,-0.999938011169434,-0.0078735277056694,0.0078735277056694,
- -0.983216226100922,-0.180911779403687,-0.0235971882939339,-0.982638835906982,-0.149361103773117,0.110055543482304,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.97795569896698,-0.205055221915245,-0.0394336953759193,-0.982638835906982,-0.149361103773117,0.110055543482304,-0.984587788581848,0.0236301068216562,0.173287451267242,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.97795569896698,-0.205055221915245,-0.0394336953759193,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.977803647518158,-0.0709696188569069,-0.197137832641602,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.984587788581848,0.0236301068216562,0.173287451267242,-0.983703315258026,0.165262147784233,0.0708266347646713,-0.977803647518158,-0.0709696188569069,-0.197137832641602,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.987687170505524,0.110620968043804,-0.110620968043804,-0.987687170505524,0.110620968043804,-0.110620968043804,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.983703315258026,0.165262147784233,0.0708266347646713,-0.968594014644623,-0.244117185473442,0.0472484864294529,-0.9393110871315,-0.315734833478928,-0.134187296032906,-0.949903845787048,-0.306167334318161,-0.0628035590052605,-0.9393110871315,-0.315734833478928,-0.134187296032906,-0.968594014644623,-0.244117185473442,0.0472484864294529,-0.967394948005676,-0.204489976167679,-0.149434998631477,-0.949903845787048,-0.306167334318161,-0.0628035590052605,-0.931446731090546,-0.236808508634567,0.276276558637619,-0.968594014644623,-0.244117185473442,0.0472484864294529,-0.968594014644623,-0.244117185473442,0.0472484864294529,-0.955842554569244,-0.236985757946968,-0.17378956079483,-0.967394948005676,-0.204489976167679,-0.149434998631477,-0.931446731090546,-0.236808508634567,0.276276558637619,-0.942663609981537,-0.298510134220123,0.149255067110062,-0.968594014644623,-0.244117185473442,0.0472484864294529,-0.955842554569244,-0.236985757946968,-0.17378956079483,-0.968594014644623,-0.244117185473442,0.0472484864294529,-0.942663609981537,-0.298510134220123,0.149255067110062,
- -0.942663609981537,-0.298510134220123,0.149255067110062,-0.931446731090546,-0.236808508634567,0.276276558637619,-0.910651624202728,-0.259064674377441,0.321868240833282,-0.942663609981537,-0.298510134220123,0.149255067110062,-0.834852874279022,-0.519814014434814,-0.181147307157516,-0.955842554569244,-0.236985757946968,-0.17378956079483,-0.867649257183075,-0.331284254789352,0.370722889900208,-0.942663609981537,-0.298510134220123,0.149255067110062,-0.910651624202728,-0.259064674377441,0.321868240833282,-0.834852874279022,-0.519814014434814,-0.181147307157516,-0.942663609981537,-0.298510134220123,0.149255067110062,-0.893958270549774,-0.419290155172348,0.158222705125809,-0.893958270549774,-0.419290155172348,0.158222705125809,-0.942663609981537,-0.298510134220123,0.149255067110062,-0.867649257183075,-0.331284254789352,0.370722889900208,-0.517810344696045,-0.635494470596313,0.572729647159576,-0.763400971889496,-0.472206801176071,0.440726339817047,-0.795645773410797,-0.56719297170639,0.212697386741638,-0.763400971889496,-0.472206801176071,0.440726339817047,-0.941125929355621,-0.337236762046814,-0.0235281493514776,-0.795645773410797,-0.56719297170639,0.212697386741638,-0.517810344696045,-0.635494470596313,0.572729647159576,-0.258785724639893,-0.517571449279785,0.815567135810852,-0.763400971889496,-0.472206801176071,0.440726339817047,-0.938113749027252,-0.338982254266739,-0.0709497779607773,-0.941125929355621,-0.337236762046814,-0.0235281493514776,-0.763400971889496,-0.472206801176071,0.440726339817047,-0.763400971889496,-0.472206801176071,0.440726339817047,-0.258785724639893,-0.517571449279785,0.815567135810852,-0.803348958492279,-0.559193849563599,0.204775229096413,-0.763400971889496,-0.472206801176071,0.440726339817047,-0.803348958492279,-0.559193849563599,0.204775229096413,-0.938113749027252,-0.338982254266739,-0.0709497779607773,-0.384446769952774,-0.784585237503052,0.486442863941193,-0.803348958492279,-0.559193849563599,0.204775229096413,-0.258785724639893,-0.517571449279785,0.815567135810852,-0.803348958492279,-0.559193849563599,0.204775229096413,
- -0.883095145225525,-0.42577800154686,-0.197119444608688,-0.938113749027252,-0.338982254266739,-0.0709497779607773,-0.803348958492279,-0.559193849563599,0.204775229096413,-0.384446769952774,-0.784585237503052,0.486442863941193,-0.704179227352142,-0.688354909420013,0.174066781997681,-0.883095145225525,-0.42577800154686,-0.197119444608688,-0.803348958492279,-0.559193849563599,0.204775229096413,-0.704179227352142,-0.688354909420013,0.174066781997681,-0.980973124504089,0.188346847891808,0.0470867119729519,-0.999845147132874,-0.00787279661744833,-0.0157455932348967,-0.977378308773041,0.0945850014686584,0.189170002937317,-0.980973124504089,0.188346847891808,0.0470867119729519,-0.982001841068268,0.133552238345146,-0.133552238345146,-0.999845147132874,-0.00787279661744833,-0.0157455932348967,-0.977378308773041,0.0945850014686584,0.189170002937317,-0.999845147132874,-0.00787279661744833,-0.0157455932348967,-0.979021966457367,-0.118430078029633,0.165802091360092,-0.999845147132874,-0.00787279661744833,-0.0157455932348967,-0.982001841068268,0.133552238345146,-0.133552238345146,-0.983216226100922,-0.0235971882939339,-0.180911779403687,-0.979021966457367,-0.118430078029633,0.165802091360092,-0.999845147132874,-0.00787279661744833,-0.0157455932348967,-0.988060593605042,-0.148993268609047,-0.0392087511718273,-0.988060593605042,-0.148993268609047,-0.0392087511718273,-0.999845147132874,-0.00787279661744833,-0.0157455932348967,-0.983216226100922,-0.0235971882939339,-0.180911779403687,-0.978595018386841,-0.0157837904989719,-0.205189272761345,-0.999876022338867,-3.49633197622281e-018,0.0157460793852806,-0.976135909557343,0.14956921339035,-0.157441273331642,-0.978595018386841,-0.0157837904989719,-0.205189272761345,-0.983124971389771,-0.165164992213249,-0.0786499977111816,-0.999876022338867,-3.49633197622281e-018,0.0157460793852806,-0.976135909557343,0.14956921339035,-0.157441273331642,-0.999876022338867,-3.49633197622281e-018,0.0157460793852806,-0.979174554347992,0.197414219379425,0.0473794117569923,-0.999876022338867,-3.49633197622281e-018,0.0157460793852806,
- -0.983124971389771,-0.165164992213249,-0.0786499977111816,-0.983733773231506,-0.157397404313087,0.08656857162714,-0.979174554347992,0.197414219379425,0.0473794117569923,-0.999876022338867,-3.49633197622281e-018,0.0157460793852806,-0.989461004734039,0.0314114615321159,0.141351565718651,-0.989461004734039,0.0314114615321159,0.141351565718651,-0.999876022338867,-3.49633197622281e-018,0.0157460793852806,-0.983733773231506,-0.157397404313087,0.08656857162714,-0.980459988117218,-0.196091994643211,0.0156873594969511,-0.999690115451813,0.023614726960659,-0.00787157565355301,-0.977317631244659,-0.149750277400017,-0.149750277400017,-0.980459988117218,-0.196091994643211,0.0156873594969511,-0.984954476356506,-0.0709167197346687,0.157592713832855,-0.999690115451813,0.023614726960659,-0.00787157565355301,-0.977317631244659,-0.149750277400017,-0.149750277400017,-0.999690115451813,0.023614726960659,-0.00787157565355301,-0.977226555347443,0.0551660135388374,-0.204902336001396,-0.999690115451813,0.023614726960659,-0.00787157565355301,-0.984954476356506,-0.0709167197346687,0.157592713832855,-0.984221458435059,0.0944852605462074,0.149601668119431,-0.977226555347443,0.0551660135388374,-0.204902336001396,-0.999690115451813,0.023614726960659,-0.00787157565355301,-0.988150000572205,0.150198802351952,-0.0316208004951477,-0.988150000572205,0.150198802351952,-0.0316208004951477,-0.999690115451813,0.023614726960659,-0.00787157565355301,-0.984221458435059,0.0944852605462074,0.149601668119431,-0.979510545730591,-0.0394963920116425,-0.197481960058212,-0.999876022338867,-3.49633197622281e-018,0.0157460793852806,-0.976771771907806,0.126035064458847,-0.173298224806786,-0.979510545730591,-0.0394963920116425,-0.197481960058212,-0.982912182807922,-0.172992557287216,-0.062906377017498,-0.999876022338867,-3.49633197622281e-018,0.0157460793852806,-0.976771771907806,0.126035064458847,-0.173298224806786,-0.999876022338867,-3.49633197622281e-018,0.0157460793852806,-0.978442788124084,0.205157354474068,0.0236720032989979,-0.999876022338867,-3.49633197622281e-018,0.0157460793852806,
- -0.982912182807922,-0.172992557287216,-0.062906377017498,-0.984587788581848,-0.141780629754066,0.102397121489048,-0.978442788124084,0.205157354474068,0.0236720032989979,-0.999876022338867,-3.49633197622281e-018,0.0157460793852806,-0.989186525344849,0.0392534323036671,0.141312345862389,-0.989186525344849,0.0392534323036671,0.141312345862389,-0.999876022338867,-3.49633197622281e-018,0.0157460793852806,-0.984587788581848,-0.141780629754066,0.102397121489048,-0.981941342353821,-0.188532739877701,-0.0157110616564751,-0.999690115451813,0.023614726960659,-0.00787157565355301,-0.976771771907806,-0.126035064458847,-0.173298224806786,-0.981941342353821,-0.188532739877701,-0.0157110616564751,-0.985352337360382,-0.0945938304066658,0.141890734434128,-0.999690115451813,0.023614726960659,-0.00787157565355301,-0.976771771907806,-0.126035064458847,-0.173298224806786,-0.999690115451813,0.023614726960659,-0.00787157565355301,-0.977226555347443,0.0788085907697678,-0.197021469473839,-0.999690115451813,0.023614726960659,-0.00787157565355301,-0.985352337360382,-0.0945938304066658,0.141890734434128,-0.984954476356506,0.0709167197346687,0.157592713832855,-0.977226555347443,0.0788085907697678,-0.197021469473839,-0.999690115451813,0.023614726960659,-0.00787157565355301,-0.987409830093384,0.15798556804657,-0.00789927877485752,-0.987409830093384,0.15798556804657,-0.00789927877485752,-0.999690115451813,0.023614726960659,-0.00787157565355301,-0.984954476356506,0.0709167197346687,0.157592713832855,-0.981941342353821,-0.188532739877701,-0.0157110616564751,-0.999690115451813,0.023614726960659,-0.00787157565355301,-0.976771771907806,-0.126035064458847,-0.173298224806786,-0.981941342353821,-0.188532739877701,-0.0157110616564751,-0.985352337360382,-0.0945938304066658,0.141890734434128,-0.999690115451813,0.023614726960659,-0.00787157565355301,-0.976771771907806,-0.126035064458847,-0.173298224806786,-0.999690115451813,0.023614726960659,-0.00787157565355301,-0.977226555347443,0.0788085907697678,-0.197021469473839,-0.999690115451813,0.023614726960659,-0.00787157565355301,
- -0.985352337360382,-0.0945938304066658,0.141890734434128,-0.984954476356506,0.0709167197346687,0.157592713832855,-0.977226555347443,0.0788085907697678,-0.197021469473839,-0.999690115451813,0.023614726960659,-0.00787157565355301,-0.987409830093384,0.15798556804657,-0.00789927877485752,-0.987409830093384,0.15798556804657,-0.00789927877485752,-0.999690115451813,0.023614726960659,-0.00787157565355301,-0.984954476356506,0.0709167197346687,0.157592713832855,-0.980218827724457,0.164676755666733,0.109784506261349,-0.999845147132874,-0.00787279661744833,-0.0157455932348967,-0.978442788124084,0.0236720032989979,0.205157354474068,-0.980218827724457,0.164676755666733,0.109784506261349,-0.981184661388397,0.172688513994217,-0.0863442569971085,-0.999845147132874,-0.00787279661744833,-0.0157455932348967,-0.978442788124084,0.0236720032989979,0.205157354474068,-0.999845147132874,-0.00787279661744833,-0.0157455932348967,-0.981456816196442,-0.157033085823059,0.109923161566257,-0.999845147132874,-0.00787279661744833,-0.0157455932348967,-0.981184661388397,0.172688513994217,-0.0863442569971085,-0.98157787322998,0.0314104929566383,-0.188462942838669,-0.981456816196442,-0.157033085823059,0.109923161566257,-0.999845147132874,-0.00787279661744833,-0.0157455932348967,-0.988334119319916,-0.125502735376358,-0.0862831398844719,-0.988334119319916,-0.125502735376358,-0.0862831398844719,-0.999845147132874,-0.00787279661744833,-0.0157455932348967,-0.98157787322998,0.0314104929566383,-0.188462942838669,-0.981789767742157,-0.188503637909889,-0.0235629547387362,-0.999690115451813,0.023614726960659,-0.00787157565355301,-0.976771771907806,-0.126035064458847,-0.173298224806786,-0.981789767742157,-0.188503637909889,-0.0235629547387362,-0.985352337360382,-0.0945938304066658,0.141890734434128,-0.999690115451813,0.023614726960659,-0.00787157565355301,-0.976771771907806,-0.126035064458847,-0.173298224806786,-0.999690115451813,0.023614726960659,-0.00787157565355301,-0.976589918136597,0.0866329744458199,-0.196893110871315,-0.999690115451813,0.023614726960659,-0.00787157565355301,
- -0.985352337360382,-0.0945938304066658,0.141890734434128,-0.983703315258026,0.0708266347646713,0.165262147784233,-0.976589918136597,0.0866329744458199,-0.196893110871315,-0.999690115451813,0.023614726960659,-0.00787157565355301,-0.987440645694733,0.157990500330925,3.50809382278883e-017,-0.987440645694733,0.157990500330925,3.50809382278883e-017,-0.999690115451813,0.023614726960659,-0.00787157565355301,-0.983703315258026,0.0708266347646713,0.165262147784233,-0.969556510448456,-0.204946890473366,0.134003728628159,-0.940454363822937,-0.339828044176102,-0.00790297798812389,-0.949903845787048,-0.306167334318161,0.0628035590052605,-0.940454363822937,-0.339828044176102,-0.00790297798812389,-0.969556510448456,-0.204946890473366,0.134003728628159,-0.967754244804382,-0.243905529379845,-0.0629433616995811,-0.949903845787048,-0.306167334318161,0.0628035590052605,-0.931243658065796,-0.110486537218094,0.347243428230286,-0.969556510448456,-0.204946890473366,0.134003728628159,-0.969556510448456,-0.204946890473366,0.134003728628159,-0.956051468849182,-0.28444504737854,-0.071111261844635,-0.967754244804382,-0.243905529379845,-0.0629433616995811,-0.931243658065796,-0.110486537218094,0.347243428230286,-0.942576348781586,-0.219934478402138,0.251353681087494,-0.969556510448456,-0.204946890473366,0.134003728628159,-0.956051468849182,-0.28444504737854,-0.071111261844635,-0.969556510448456,-0.204946890473366,0.134003728628159,-0.942576348781586,-0.219934478402138,0.251353681087494,-0.942576348781586,-0.219934478402138,0.251353681087494,-0.931243658065796,-0.110486537218094,0.347243428230286,-0.911916971206665,-0.117920309305191,0.39306765794754,-0.942576348781586,-0.219934478402138,0.251353681087494,-0.834232032299042,-0.550907909870148,0.0236103385686874,-0.956051468849182,-0.28444504737854,-0.071111261844635,-0.869029104709625,-0.165905550122261,0.466115593910217,-0.942576348781586,-0.219934478402138,0.251353681087494,-0.911916971206665,-0.117920309305191,0.39306765794754,-0.834232032299042,-0.550907909870148,0.0236103385686874,-0.942576348781586,-0.219934478402138,0.251353681087494,
- -0.891839742660522,-0.331480234861374,0.307803094387054,-0.891839742660522,-0.331480234861374,0.307803094387054,-0.942576348781586,-0.219934478402138,0.251353681087494,-0.869029104709625,-0.165905550122261,0.466115593910217,-0.51752370595932,-0.376380890607834,0.768444299697876,-0.764229774475098,-0.275752991437912,0.583020687103271,-0.794659972190857,-0.448471486568451,0.409131854772568,-0.764229774475098,-0.275752991437912,0.583020687103271,-0.941357553005219,-0.321630477905273,0.101980395615101,-0.794659972190857,-0.448471486568451,0.409131854772568,-0.51752370595932,-0.376380890607834,0.768444299697876,-0.25916051864624,-0.172773689031601,0.950255274772644,-0.764229774475098,-0.275752991437912,0.583020687103271,-0.939047932624817,-0.339319825172424,0.0552381165325642,-0.941357553005219,-0.321630477905273,0.101980395615101,-0.764229774475098,-0.275752991437912,0.583020687103271,-0.764229774475098,-0.275752991437912,0.583020687103271,-0.25916051864624,-0.172773689031601,0.950255274772644,-0.800055384635925,-0.44708976149559,0.400027692317963,-0.764229774475098,-0.275752991437912,0.583020687103271,-0.800055384635925,-0.44708976149559,0.400027692317963,-0.939047932624817,-0.339319825172424,0.0552381165325642,-0.385731130838394,-0.551044464111328,0.739974021911621,-0.800055384635925,-0.44708976149559,0.400027692317963,-0.25916051864624,-0.172773689031601,0.950255274772644,-0.800055384635925,-0.44708976149559,0.400027692317963,-0.884305477142334,-0.465839475393295,-0.0315823368728161,-0.939047932624817,-0.339319825172424,0.0552381165325642,-0.800055384635925,-0.44708976149559,0.400027692317963,-0.385731130838394,-0.551044464111328,0.739974021911621,-0.70231306552887,-0.576054573059082,0.41823136806488,-0.884305477142334,-0.465839475393295,-0.0315823368728161,-0.800055384635925,-0.44708976149559,0.400027692317963,-0.70231306552887,-0.576054573059082,0.41823136806488,-0.981789767742157,0.188503637909889,-0.0235629547387362,-0.999845147132874,-0.0157455932348967,-0.00787279661744833,-0.977257013320923,0.157622098922729,0.141859874129295,
- -0.981789767742157,0.188503637909889,-0.0235629547387362,-0.981820046901703,0.0785456076264381,-0.172800332307816,-0.999845147132874,-0.0157455932348967,-0.00787279661744833,-0.977257013320923,0.157622098922729,0.141859874129295,-0.999845147132874,-0.0157455932348967,-0.00787279661744833,-0.979174554347992,-0.0473794117569923,0.197414219379425,-0.999845147132874,-0.0157455932348967,-0.00787279661744833,-0.981820046901703,0.0785456076264381,-0.172800332307816,-0.983033776283264,-0.0943712368607521,-0.157285392284393,-0.979174554347992,-0.0473794117569923,0.197414219379425,-0.999845147132874,-0.0157455932348967,-0.00787279661744833,-0.98869913816452,-0.149089559912682,0.015693636611104,-0.98869913816452,-0.149089559912682,0.015693636611104,-0.999845147132874,-0.0157455932348967,-0.00787279661744833,-0.983033776283264,-0.0943712368607521,-0.157285392284393,-0.979510545730591,-0.0868920683860779,-0.181683406233788,-0.999938011169434,0.0078735277056694,0.0078735277056694,-0.975682556629181,0.078684076666832,-0.204578593373299,-0.979510545730591,-0.0868920683860779,-0.181683406233788,-0.983368337154388,-0.18093977868557,-0.0157338920980692,-0.999938011169434,0.0078735277056694,0.0078735277056694,-0.975682556629181,0.078684076666832,-0.204578593373299,-0.999938011169434,0.0078735277056694,0.0078735277056694,-0.978229522705078,0.205112636089325,-0.0315557904541492,-0.999938011169434,0.0078735277056694,0.0078735277056694,-0.983368337154388,-0.18093977868557,-0.0157338920980692,-0.983764171600342,-0.110181584954262,0.141662031412125,-0.978229522705078,0.205112636089325,-0.0315557904541492,-0.999938011169434,0.0078735277056694,0.0078735277056694,-0.989918947219849,0.0785649940371513,0.117847494781017,-0.989918947219849,0.0785649940371513,0.117847494781017,-0.999938011169434,0.0078735277056694,0.0078735277056694,-0.983764171600342,-0.110181584954262,0.141662031412125,-0.981184661388397,-0.172688513994217,0.0863442569971085,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.976589918136597,-0.196893110871315,-0.0866329744458199,
- -0.981184661388397,-0.172688513994217,0.0863442569971085,-0.984832227230072,-0.00787865743041039,0.173330470919609,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.976589918136597,-0.196893110871315,-0.0866329744458199,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.978442788124084,-0.0236720032989979,-0.205157354474068,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.984832227230072,-0.00787865743041039,0.173330470919609,-0.983459711074829,0.149485886096954,0.102279812097549,-0.978442788124084,-0.0236720032989979,-0.205157354474068,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.988150000572205,0.126483201980591,-0.0869572013616562,-0.988150000572205,0.126483201980591,-0.0869572013616562,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.983459711074829,0.149485886096954,0.102279812097549,-0.979908049106598,-0.110634781420231,-0.165952160954475,-0.999938011169434,0.0078735277056694,0.0078735277056694,-0.977226555347443,0.0551660135388374,-0.204902336001396,-0.979908049106598,-0.110634781420231,-0.165952160954475,-0.98349004983902,-0.180962175130844,-4.01816746833026e-017,-0.999938011169434,0.0078735277056694,0.0078735277056694,-0.977226555347443,0.0551660135388374,-0.204902336001396,-0.999938011169434,0.0078735277056694,0.0078735277056694,-0.978777945041656,0.197334259748459,-0.055253591388464,-0.999938011169434,0.0078735277056694,0.0078735277056694,-0.98349004983902,-0.180962175130844,-4.01816746833026e-017,-0.984924018383026,-0.0866733118891716,0.149708449840546,-0.978777945041656,0.197334259748459,-0.055253591388464,-0.999938011169434,0.0078735277056694,0.0078735277056694,-0.989278018474579,0.0863655433058739,0.117771193385124,-0.989278018474579,0.0863655433058739,0.117771193385124,-0.999938011169434,0.0078735277056694,0.0078735277056694,-0.984924018383026,-0.0866733118891716,0.149708449840546,-0.982001841068268,-0.180688336491585,0.054992102086544,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.976347684860229,-0.181096747517586,-0.118106573820114,
- -0.982001841068268,-0.180688336491585,0.054992102086544,-0.984099447727203,-0.0393639765679836,0.173201501369476,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.976347684860229,-0.181096747517586,-0.118106573820114,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.97710520029068,4.72414957753202e-017,-0.212756782770157,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.984099447727203,-0.0393639765679836,0.173201501369476,-0.984954476356506,0.126074180006981,0.118194542825222,-0.97710520029068,4.72414957753202e-017,-0.212756782770157,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.987286627292633,0.142169266939163,-0.0710846334695816,-0.987286627292633,0.142169266939163,-0.0710846334695816,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.984954476356506,0.126074180006981,0.118194542825222,-0.982001841068268,-0.180688336491585,0.054992102086544,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.976347684860229,-0.181096747517586,-0.118106573820114,-0.982001841068268,-0.180688336491585,0.054992102086544,-0.984099447727203,-0.0393639765679836,0.173201501369476,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.976347684860229,-0.181096747517586,-0.118106573820114,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.97710520029068,4.72414957753202e-017,-0.212756782770157,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.984099447727203,-0.0393639765679836,0.173201501369476,-0.984954476356506,0.126074180006981,0.118194542825222,-0.97710520029068,4.72414957753202e-017,-0.212756782770157,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.987286627292633,0.142169266939163,-0.0710846334695816,-0.987286627292633,0.142169266939163,-0.0710846334695816,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.984954476356506,0.126074180006981,0.118194542825222,-0.981305718421936,0.188410699367523,0.0392522290349007,-0.999845147132874,-0.0157455932348967,-0.00787279661744833,-0.978808522224426,0.0947234109044075,0.181553184986115,
- -0.981305718421936,0.188410699367523,0.0392522290349007,-0.981941223144531,0.125688478350639,-0.141399532556534,-0.999845147132874,-0.0157455932348967,-0.00787279661744833,-0.978808522224426,0.0947234109044075,0.181553184986115,-0.999845147132874,-0.0157455932348967,-0.00787279661744833,-0.980218827724457,-0.109784506261349,0.164676755666733,-0.999845147132874,-0.0157455932348967,-0.00787279661744833,-0.981941223144531,0.125688478350639,-0.141399532556534,-0.981305718421936,-0.0392522290349007,-0.188410699367523,-0.980218827724457,-0.109784506261349,0.164676755666733,-0.999845147132874,-0.0157455932348967,-0.00787279661744833,-0.988334119319916,-0.149034515023232,-0.0313756838440895,-0.988334119319916,-0.149034515023232,-0.0313756838440895,-0.999845147132874,-0.0157455932348967,-0.00787279661744833,-0.981305718421936,-0.0392522290349007,-0.188410699367523,-0.980973124504089,-0.188346847891808,0.0470867119729519,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.976347684860229,-0.181096747517586,-0.118106573820114,-0.980973124504089,-0.188346847891808,0.0470867119729519,-0.984099447727203,-0.0393639765679836,0.173201501369476,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.976347684860229,-0.181096747517586,-0.118106573820114,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.977074861526489,0.00787963625043631,-0.212750166654587,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.984099447727203,-0.0393639765679836,0.173201501369476,-0.984007954597473,0.125953018665314,0.125953018665314,-0.977074861526489,0.00787963625043631,-0.212750166654587,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.987810552120209,0.142244711518288,-0.0632198750972748,-0.987810552120209,0.142244711518288,-0.0632198750972748,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.984007954597473,0.125953018665314,0.125953018665314,-0.969406008720398,-0.165508329868317,0.181271031498909,-0.9400435090065,-0.331780046224594,0.0789952501654625,-0.948881089687347,-0.282311707735062,0.141155853867531,
- -0.9400435090065,-0.331780046224594,0.0789952501654625,-0.969406008720398,-0.165508329868317,0.181271031498909,-0.967754244804382,-0.251773446798325,0.00786792021244764,-0.948881089687347,-0.282311707735062,0.141155853867531,-0.931591868400574,-0.0157896932214499,0.363162934780121,-0.969406008720398,-0.165508329868317,0.181271031498909,-0.969406008720398,-0.165508329868317,0.181271031498909,-0.956260442733765,-0.292410224676132,0.00790297891944647,-0.967754244804382,-0.251773446798325,0.00786792021244764,-0.931591868400574,-0.0157896932214499,0.363162934780121,-0.942663609981537,-0.149255067110062,0.298510134220123,-0.969406008720398,-0.165508329868317,0.181271031498909,-0.956260442733765,-0.292410224676132,0.00790297891944647,-0.969406008720398,-0.165508329868317,0.181271031498909,-0.942663609981537,-0.149255067110062,0.298510134220123,-0.942663609981537,-0.149255067110062,0.298510134220123,-0.931591868400574,-0.0157896932214499,0.363162934780121,-0.912396430969238,-0.0157309733331203,0.409005284309387,-0.942663609981537,-0.149255067110062,0.298510134220123,-0.833689987659454,-0.52695494890213,0.165164992213249,-0.956260442733765,-0.292410224676132,0.00790297891944647,-0.867083132266998,-0.0394128672778606,0.496602147817612,-0.942663609981537,-0.149255067110062,0.298510134220123,-0.912396430969238,-0.0157309733331203,0.409005284309387,-0.833689987659454,-0.52695494890213,0.165164992213249,-0.942663609981537,-0.149255067110062,0.298510134220123,-0.892395794391632,-0.244816541671753,0.37907075881958,-0.892395794391632,-0.244816541671753,0.37907075881958,-0.942663609981537,-0.149255067110062,0.298510134220123,-0.867083132266998,-0.0394128672778606,0.496602147817612,-0.517810344696045,-0.164757832884789,0.839480400085449,-0.76222163438797,-0.117869324982166,0.636494338512421,-0.793775975704193,-0.330085068941116,0.510845959186554,-0.76222163438797,-0.117869324982166,0.636494338512421,-0.942082524299622,-0.2826247215271,0.180565804243088,-0.793775975704193,-0.330085068941116,0.510845959186554,-0.517810344696045,-0.164757832884789,0.839480400085449,
- -0.260448783636093,0.0710314884781837,0.962871313095093,-0.76222163438797,-0.117869324982166,0.636494338512421,-0.938288569450378,-0.31539112329483,0.141926005482674,-0.942082524299622,-0.2826247215271,0.180565804243088,-0.76222163438797,-0.117869324982166,0.636494338512421,-0.76222163438797,-0.117869324982166,0.636494338512421,-0.260448783636093,0.0710314884781837,0.962871313095093,-0.801858067512512,-0.322315484285355,0.503126621246338,-0.76222163438797,-0.117869324982166,0.636494338512421,-0.801858067512512,-0.322315484285355,0.503126621246338,-0.938288569450378,-0.31539112329483,0.141926005482674,-0.385802835226059,-0.338561683893204,0.858214497566223,-0.801858067512512,-0.322315484285355,0.503126621246338,-0.260448783636093,0.0710314884781837,0.962871313095093,-0.801858067512512,-0.322315484285355,0.503126621246338,-0.884002387523651,-0.457786947488785,0.0947145447134972,-0.938288569450378,-0.31539112329483,0.141926005482674,-0.801858067512512,-0.322315484285355,0.503126621246338,-0.385802835226059,-0.338561683893204,0.858214497566223,-0.702072739601135,-0.449642091989517,0.552192032337189,-0.884002387523651,-0.457786947488785,0.0947145447134972,-0.801858067512512,-0.322315484285355,0.503126621246338,-0.702072739601135,-0.449642091989517,0.552192032337189,-0.981033563613892,0.180510178208351,-0.0706344097852707,-0.999845147132874,-0.0157455932348967,-0.00787279661744833,-0.977378308773041,0.189170002937317,0.0945850014686584,-0.981033563613892,0.180510178208351,-0.0706344097852707,-0.98157787322998,0.0314104929566383,-0.188462942838669,-0.999845147132874,-0.0157455932348967,-0.00787279661744833,-0.977378308773041,0.189170002937317,0.0945850014686584,-0.999845147132874,-0.0157455932348967,-0.00787279661744833,-0.980244815349579,0.00790520012378693,0.197630003094673,-0.999845147132874,-0.0157455932348967,-0.00787279661744833,-0.98157787322998,0.0314104929566383,-0.188462942838669,-0.982001841068268,-0.133552238345146,-0.133552238345146,-0.980244815349579,0.00790520012378693,0.197630003094673,-0.999845147132874,-0.0157455932348967,-0.00787279661744833,
- -0.988455832004547,-0.141207963228226,0.0549142137169838,-0.988455832004547,-0.141207963228226,0.0549142137169838,-0.999845147132874,-0.0157455932348967,-0.00787279661744833,-0.982001841068268,-0.133552238345146,-0.133552238345146,-0.978320896625519,-0.134124636650085,-0.157793685793877,-0.999938011169434,0.0078735277056694,0.0078735277056694,-0.975169479846954,0.023592809215188,-0.220199555158615,-0.978320896625519,-0.134124636650085,-0.157793685793877,-0.983003377914429,-0.180872619152069,0.0314561054110527,-0.999938011169434,0.0078735277056694,0.0078735277056694,-0.975169479846954,0.023592809215188,-0.220199555158615,-0.999938011169434,0.0078735277056694,0.0078735277056694,-0.978716969490051,0.189429089426994,-0.0789287835359573,-0.999938011169434,0.0078735277056694,0.0078735277056694,-0.983003377914429,-0.180872619152069,0.0314561054110527,-0.983703315258026,-0.0708266347646713,0.165262147784233,-0.978716969490051,0.189429089426994,-0.0789287835359573,-0.999938011169434,0.0078735277056694,0.0078735277056694,-0.989461004734039,0.109940111637115,0.0942343771457672,-0.989461004734039,0.109940111637115,0.0942343771457672,-0.999938011169434,0.0078735277056694,0.0078735277056694,-0.983703315258026,-0.0708266347646713,0.165262147784233,-0.980822145938873,-0.149084970355034,0.125545233488083,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.976620197296143,-0.212651163339615,-0.0315038748085499,-0.980822145938873,-0.149084970355034,0.125545233488083,-0.984099447727203,0.0393639765679836,0.173201501369476,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.976620197296143,-0.212651163339615,-0.0315038748085499,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.977226555347443,-0.0788085907697678,-0.197021469473839,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.984099447727203,0.0393639765679836,0.173201501369476,-0.984221458435059,0.165349200367928,0.0629901736974716,-0.977226555347443,-0.0788085907697678,-0.197021469473839,-0.999752104282379,0.0157441273331642,-0.0157441273331642,
- -0.987625539302826,0.102713048458099,-0.118515066802502,-0.987625539302826,0.102713048458099,-0.118515066802502,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.984221458435059,0.165349200367928,0.0629901736974716,-0.979510545730591,-0.150086298584938,-0.134287729859352,-0.999938011169434,0.0078735277056694,0.0078735277056694,-0.97710520029068,4.72414957753202e-017,-0.212756782770157,-0.979510545730591,-0.150086298584938,-0.134287729859352,-0.983764111995697,-0.173142492771149,0.0472206771373749,-0.999938011169434,0.0078735277056694,0.0078735277056694,-0.97710520029068,4.72414957753202e-017,-0.212756782770157,-0.999938011169434,0.0078735277056694,0.0078735277056694,-0.979418873786926,0.173767864704132,-0.102681003510952,-0.999938011169434,0.0078735277056694,0.0078735277056694,-0.983764111995697,-0.173142492771149,0.0472206771373749,-0.98507684469223,-0.0472836866974831,0.165492907166481,-0.979418873786926,0.173767864704132,-0.102681003510952,-0.999938011169434,0.0078735277056694,0.0078735277056694,-0.989278018474579,0.117771193385124,0.0863655433058739,-0.989278018474579,0.117771193385124,0.0863655433058739,-0.999938011169434,0.0078735277056694,0.0078735277056694,-0.98507684469223,-0.0472836866974831,0.165492907166481,-0.982274770736694,-0.157163962721825,0.102156579494476,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.976771771907806,-0.204806983470917,-0.0630175322294235,-0.982274770736694,-0.157163962721825,0.102156579494476,-0.984832227230072,0.00787865743041039,0.173330470919609,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.976771771907806,-0.204806983470917,-0.0630175322294235,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.977226555347443,-0.0551660135388374,-0.204902336001396,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.984832227230072,0.00787865743041039,0.173330470919609,-0.984374046325684,0.157499849796295,0.0787499248981476,-0.977226555347443,-0.0551660135388374,-0.204902336001396,-0.999752104282379,0.0157441273331642,-0.0157441273331642,
- -0.987625539302826,0.118515066802502,-0.102713048458099,-0.987625539302826,0.118515066802502,-0.102713048458099,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.984374046325684,0.157499849796295,0.0787499248981476,-0.982274770736694,-0.157163962721825,0.102156579494476,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.976771771907806,-0.204806983470917,-0.0630175322294235,-0.982274770736694,-0.157163962721825,0.102156579494476,-0.984832227230072,0.00787865743041039,0.173330470919609,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.976771771907806,-0.204806983470917,-0.0630175322294235,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.977226555347443,-0.0551660135388374,-0.204902336001396,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.984832227230072,0.00787865743041039,0.173330470919609,-0.984374046325684,0.157499849796295,0.0787499248981476,-0.977226555347443,-0.0551660135388374,-0.204902336001396,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.987625539302826,0.118515066802502,-0.102713048458099,-0.987625539302826,0.118515066802502,-0.102713048458099,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.984374046325684,0.157499849796295,0.0787499248981476,-0.980550527572632,0.196110099554062,-0.0078444043174386,-0.999845147132874,-0.0157455932348967,-0.00787279661744833,-0.978442788124084,0.142032012343407,0.14992268383503,-0.980550527572632,0.196110099554062,-0.0078444043174386,-0.981184661388397,0.0863442569971085,-0.172688513994217,-0.999845147132874,-0.0157455932348967,-0.00787279661744833,-0.978442788124084,0.142032012343407,0.14992268383503,-0.999845147132874,-0.0157455932348967,-0.00787279661744833,-0.980128526687622,-0.062728226184845,0.188184678554535,-0.999845147132874,-0.0157455932348967,-0.00787279661744833,-0.981184661388397,0.0863442569971085,-0.172688513994217,-0.98248702287674,-0.0864588618278503,-0.165057823061943,-0.980128526687622,-0.062728226184845,0.188184678554535,-0.999845147132874,-0.0157455932348967,-0.00787279661744833,
- -0.988790571689606,-0.149103343486786,0.00784754473716021,-0.988790571689606,-0.149103343486786,0.00784754473716021,-0.999845147132874,-0.0157455932348967,-0.00787279661744833,-0.98248702287674,-0.0864588618278503,-0.165057823061943,-0.981789767742157,-0.164940670132637,0.0942518189549446,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.976771771907806,-0.204806983470917,-0.0630175322294235,-0.981789767742157,-0.164940670132637,0.0942518189549446,-0.984832227230072,0.00787865743041039,0.173330470919609,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.976771771907806,-0.204806983470917,-0.0630175322294235,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.97762131690979,-0.0473042577505112,-0.204985097050667,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.984832227230072,0.00787865743041039,0.173330470919609,-0.983733773231506,0.157397404313087,0.08656857162714,-0.97762131690979,-0.0473042577505112,-0.204985097050667,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.988397121429443,0.11860765516758,-0.0948861241340637,-0.988397121429443,0.11860765516758,-0.0948861241340637,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.983733773231506,0.157397404313087,0.08656857162714,-0.969646871089935,-0.086716391146183,0.228615924715996,-0.938376188278198,-0.28387850522995,0.197137862443924,-0.950343310832977,-0.212060078978539,0.227768227458,-0.938376188278198,-0.28387850522995,0.197137862443924,-0.969646871089935,-0.086716391146183,0.228615924715996,-0.967185616493225,-0.235898926854134,0.0943595692515373,-0.950343310832977,-0.212060078978539,0.227768227458,-0.931243658065796,0.110486537218094,0.347243428230286,-0.969646871089935,-0.086716391146183,0.228615924715996,-0.969646871089935,-0.086716391146183,0.228615924715996,-0.95474100112915,-0.27616474032402,0.11046589165926,-0.967185616493225,-0.235898926854134,0.0943595692515373,-0.931243658065796,0.110486537218094,0.347243428230286,-0.940923392772675,-0.0313641130924225,0.3371641933918,-0.969646871089935,-0.086716391146183,0.228615924715996,
- -0.95474100112915,-0.27616474032402,0.11046589165926,-0.969646871089935,-0.086716391146183,0.228615924715996,-0.940923392772675,-0.0313641130924225,0.3371641933918,-0.940923392772675,-0.0313641130924225,0.3371641933918,-0.931243658065796,0.110486537218094,0.347243428230286,-0.912904858589172,0.133787781000137,0.385623604059219,-0.940923392772675,-0.0313641130924225,0.3371641933918,-0.835137724876404,-0.433326154947281,0.338782250881195,-0.95474100112915,-0.27616474032402,0.11046589165926,-0.869925439357758,0.134443014860153,0.474504798650742,-0.940923392772675,-0.0313641130924225,0.3371641933918,-0.912904858589172,0.133787781000137,0.385623604059219,-0.835137724876404,-0.433326154947281,0.338782250881195,-0.940923392772675,-0.0313641130924225,0.3371641933918,-0.891978740692139,-0.0947234109044075,0.4420425593853,-0.891978740692139,-0.0947234109044075,0.4420425593853,-0.940923392772675,-0.0313641130924225,0.3371641933918,-0.869925439357758,0.134443014860153,0.474504798650742,-0.519685029983521,0.141732275485992,0.842519700527191,-0.76222163438797,0.117869324982166,0.636494338512421,-0.796436846256256,-0.126168221235275,0.591413497924805,-0.76222163438797,0.117869324982166,0.636494338512421,-0.941357553005219,-0.196116149425507,0.27456259727478,-0.796436846256256,-0.126168221235275,0.591413497924805,-0.519685029983521,0.141732275485992,0.842519700527191,-0.25996345281601,0.40963938832283,0.874422550201416,-0.76222163438797,0.117869324982166,0.636494338512421,-0.938346922397614,-0.244443327188492,0.244443327188492,-0.941357553005219,-0.196116149425507,0.27456259727478,-0.76222163438797,0.117869324982166,0.636494338512421,-0.76222163438797,0.117869324982166,0.636494338512421,-0.25996345281601,0.40963938832283,0.874422550201416,-0.802975356578827,-0.125956922769547,0.582550764083862,-0.76222163438797,0.117869324982166,0.636494338512421,-0.802975356578827,-0.125956922769547,0.582550764083862,-0.938346922397614,-0.244443327188492,0.244443327188492,-0.386246085166931,-0.0157651454210281,0.92226105928421,-0.802975356578827,-0.125956922769547,0.582550764083862,
- -0.25996345281601,0.40963938832283,0.874422550201416,-0.802975356578827,-0.125956922769547,0.582550764083862,-0.885299444198608,-0.395222961902618,0.245038241147995,-0.938346922397614,-0.244443327188492,0.244443327188492,-0.802975356578827,-0.125956922769547,0.582550764083862,-0.386246085166931,-0.0157651454210281,0.92226105928421,-0.701396524906158,-0.22066405415535,0.677753865718842,-0.885299444198608,-0.395222961902618,0.245038241147995,-0.802975356578827,-0.125956922769547,0.582550764083862,-0.701396524906158,-0.22066405415535,0.677753865718842,-0.980942964553833,0.141255781054497,-0.133408233523369,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.976832389831543,0.212697386741638,0.0236330423504114,-0.980942964553833,0.141255781054497,-0.133408233523369,-0.982729911804199,-0.0393091961741447,-0.180822312831879,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.976832389831543,0.212697386741638,0.0236330423504114,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.978716969490051,0.0789287835359573,0.189429089426994,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.982729911804199,-0.0393091961741447,-0.180822312831879,-0.983124971389771,-0.165164992213249,-0.0786499977111816,-0.978716969490051,0.0789287835359573,0.189429089426994,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.987817645072937,-0.117597341537476,0.101917684078217,-0.987817645072937,-0.117597341537476,0.101917684078217,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.983124971389771,-0.165164992213249,-0.0786499977111816,-0.978808522224426,-0.181553184986115,-0.0947234109044075,-0.999938011169434,0.0078735277056694,0.0078735277056694,-0.975622236728668,-0.0550754480063915,-0.212433889508247,-0.978808522224426,-0.181553184986115,-0.0947234109044075,-0.983033776283264,-0.157285392284393,0.0943712368607521,-0.999938011169434,0.0078735277056694,0.0078735277056694,-0.975622236728668,-0.0550754480063915,-0.212433889508247,-0.999938011169434,0.0078735277056694,0.0078735277056694,
- -0.978442788124084,0.14992268383503,-0.142032012343407,-0.999938011169434,0.0078735277056694,0.0078735277056694,-0.983033776283264,-0.157285392284393,0.0943712368607521,-0.98345959186554,-0.00786767713725567,0.180956572294235,-0.978442788124084,0.14992268383503,-0.142032012343407,-0.999938011169434,0.0078735277056694,0.0078735277056694,-0.989522039890289,0.133506938815117,0.0549734458327293,-0.989522039890289,0.133506938815117,0.0549734458327293,-0.999938011169434,0.0078735277056694,0.0078735277056694,-0.98345959186554,-0.00786767713725567,0.180956572294235,-0.980490148067474,-0.0941270589828491,0.172566279768944,-0.999690115451813,0.00787157565355301,-0.023614726960659,-0.976015031337738,-0.212519407272339,0.0472265370190144,-0.980490148067474,-0.0941270589828491,0.172566279768944,-0.985352337360382,0.0945938304066658,0.141890734434128,-0.999690115451813,0.00787157565355301,-0.023614726960659,-0.976015031337738,-0.212519407272339,0.0472265370190144,-0.999690115451813,0.00787157565355301,-0.023614726960659,-0.977257013320923,-0.141859874129295,-0.157622098922729,-0.999690115451813,0.00787157565355301,-0.023614726960659,-0.985352337360382,0.0945938304066658,0.141890734434128,-0.98349004983902,0.180962175130844,4.01816746833026e-017,-0.977257013320923,-0.141859874129295,-0.157622098922729,-0.999690115451813,0.00787157565355301,-0.023614726960659,-0.988273561000824,0.0553433187305927,-0.142311379313469,-0.988273561000824,0.0553433187305927,-0.142311379313469,-0.999690115451813,0.00787157565355301,-0.023614726960659,-0.98349004983902,0.180962175130844,4.01816746833026e-017,-0.98015296459198,-0.181802555918694,-0.0790445879101753,-0.999938011169434,0.0078735277056694,0.0078735277056694,-0.977803647518158,-0.0709696188569069,-0.197137832641602,-0.98015296459198,-0.181802555918694,-0.0790445879101753,-0.982638835906982,-0.149361103773117,0.110055543482304,-0.999938011169434,0.0078735277056694,0.0078735277056694,-0.977803647518158,-0.0709696188569069,-0.197137832641602,-0.999938011169434,0.0078735277056694,0.0078735277056694,
- -0.979327261447906,0.126364797353745,-0.157956004142761,-0.999938011169434,0.0078735277056694,0.0078735277056694,-0.982638835906982,-0.149361103773117,0.110055543482304,-0.984740495681763,0.0157558489590883,0.173314332962036,-0.979327261447906,0.126364797353745,-0.157956004142761,-0.999938011169434,0.0078735277056694,0.0078735277056694,-0.989186525344849,0.141312345862389,0.0392534323036671,-0.989186525344849,0.141312345862389,0.0392534323036671,-0.999938011169434,0.0078735277056694,0.0078735277056694,-0.984740495681763,0.0157558489590883,0.173314332962036,-0.982638835906982,-0.110055543482304,0.149361103773117,-0.999690115451813,0.00787157565355301,-0.023614726960659,-0.975320279598236,-0.220233619213104,0.0157309714704752,-0.982638835906982,-0.110055543482304,0.149361103773117,-0.984954476356506,0.0709167197346687,0.157592713832855,-0.999690115451813,0.00787157565355301,-0.023614726960659,-0.975320279598236,-0.220233619213104,0.0157309714704752,-0.999690115451813,0.00787157565355301,-0.023614726960659,-0.976771771907806,-0.126035064458847,-0.173298224806786,-0.999690115451813,0.00787157565355301,-0.023614726960659,-0.984954476356506,0.0709167197346687,0.157592713832855,-0.984587788581848,0.173287451267242,0.0236301068216562,-0.976771771907806,-0.126035064458847,-0.173298224806786,-0.999690115451813,0.00787157565355301,-0.023614726960659,-0.986702144145966,0.0789361670613289,-0.14208510518074,-0.986702144145966,0.0789361670613289,-0.14208510518074,-0.999690115451813,0.00787157565355301,-0.023614726960659,-0.984587788581848,0.173287451267242,0.0236301068216562,-0.982638835906982,-0.110055543482304,0.149361103773117,-0.999690115451813,0.00787157565355301,-0.023614726960659,-0.975320279598236,-0.220233619213104,0.0157309714704752,-0.982638835906982,-0.110055543482304,0.149361103773117,-0.984954476356506,0.0709167197346687,0.157592713832855,-0.999690115451813,0.00787157565355301,-0.023614726960659,-0.975320279598236,-0.220233619213104,0.0157309714704752,-0.999690115451813,0.00787157565355301,-0.023614726960659,-0.976771771907806,-0.126035064458847,-0.173298224806786,
- -0.999690115451813,0.00787157565355301,-0.023614726960659,-0.984954476356506,0.0709167197346687,0.157592713832855,-0.984587788581848,0.173287451267242,0.0236301068216562,-0.976771771907806,-0.126035064458847,-0.173298224806786,-0.999690115451813,0.00787157565355301,-0.023614726960659,-0.986702144145966,0.0789361670613289,-0.14208510518074,-0.986702144145966,0.0789361670613289,-0.14208510518074,-0.999690115451813,0.00787157565355301,-0.023614726960659,-0.984587788581848,0.173287451267242,0.0236301068216562,-0.980459988117218,0.180404648184776,-0.0784367993474007,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.979510545730591,0.181683406233788,0.0868920683860779,-0.980459988117218,0.180404648184776,-0.0784367993474007,-0.981789767742157,0.0235629547387362,-0.188503637909889,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.979510545730591,0.181683406233788,0.0868920683860779,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.980550527572632,0.0078444043174386,0.196110099554062,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.981789767742157,0.0235629547387362,-0.188503637909889,-0.981941223144531,-0.141399532556534,-0.125688478350639,-0.980550527572632,0.0078444043174386,0.196110099554062,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.989064633846283,-0.133445218205452,0.0627977550029755,-0.989064633846283,-0.133445218205452,0.0627977550029755,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.981941223144531,-0.141399532556534,-0.125688478350639,-0.980822145938873,-0.125545233488083,0.149084970355034,-0.999690115451813,0.00787157565355301,-0.023614726960659,-0.975320279598236,-0.220233619213104,0.0157309714704752,-0.980822145938873,-0.125545233488083,0.149084970355034,-0.984954476356506,0.0709167197346687,0.157592713832855,-0.999690115451813,0.00787157565355301,-0.023614726960659,-0.975320279598236,-0.220233619213104,0.0157309714704752,-0.999690115451813,0.00787157565355301,-0.023614726960659,-0.976347684860229,-0.118106573820114,-0.181096747517586,
- -0.999690115451813,0.00787157565355301,-0.023614726960659,-0.984954476356506,0.0709167197346687,0.157592713832855,-0.983003377914429,0.180872619152069,0.0314561054110527,-0.976347684860229,-0.118106573820114,-0.181096747517586,-0.999690115451813,0.00787157565355301,-0.023614726960659,-0.98777973651886,0.0790223777294159,-0.134338036179543,-0.98777973651886,0.0790223777294159,-0.134338036179543,-0.999690115451813,0.00787157565355301,-0.023614726960659,-0.983003377914429,0.180872619152069,0.0314561054110527,-0.945938169956207,-0.291664272546768,-0.141890704631805,-0.913612425327301,-0.378046542406082,-0.149643421173096,-0.892201066017151,-0.268449872732162,-0.36319687962532,-0.945938169956207,-0.291664272546768,-0.141890704631805,-0.833638429641724,-0.519057869911194,0.188748314976692,-0.913612425327301,-0.378046542406082,-0.149643421173096,-0.892201066017151,-0.268449872732162,-0.36319687962532,-0.921231389045715,-0.228339403867722,-0.314950913190842,-0.945938169956207,-0.291664272546768,-0.141890704631805,-0.833638429641724,-0.519057869911194,0.188748314976692,-0.945938169956207,-0.291664272546768,-0.141890704631805,-0.939809024333954,-0.284311980009079,0.189541324973106,-0.943129301071167,-0.330095231533051,-0.0392970517277718,-0.945938169956207,-0.291664272546768,-0.141890704631805,-0.921231389045715,-0.228339403867722,-0.314950913190842,-0.943129301071167,-0.330095231533051,-0.0392970517277718,-0.939809024333954,-0.284311980009079,0.189541324973106,-0.945938169956207,-0.291664272546768,-0.141890704631805,-0.943129301071167,-0.330095231533051,-0.0392970517277718,-0.921231389045715,-0.228339403867722,-0.314950913190842,-0.927869081497192,-0.275215417146683,-0.251625537872314,-0.939809024333954,-0.284311980009079,0.189541324973106,-0.943129301071167,-0.330095231533051,-0.0392970517277718,-0.931533813476563,-0.323668509721756,0.165781438350677,-0.876382529735565,-0.47372031211853,0.086848720908165,-0.943129301071167,-0.330095231533051,-0.0392970517277718,-0.927869081497192,-0.275215417146683,-0.251625537872314,-0.943129301071167,-0.330095231533051,-0.0392970517277718,
- -0.8647221326828,-0.479527741670609,0.149361103773117,-0.931533813476563,-0.323668509721756,0.165781438350677,-0.8647221326828,-0.479527741670609,0.149361103773117,-0.943129301071167,-0.330095231533051,-0.0392970517277718,-0.876382529735565,-0.47372031211853,0.086848720908165,-0.96048104763031,-0.133837521076202,-0.244056656956673,-0.942431092262268,-0.329850852489471,-0.0549751482903957,-0.964073002338409,-0.244969367980957,-0.102729082107544,-0.964073002338409,-0.244969367980957,-0.102729082107544,-0.942431092262268,-0.329850852489471,-0.0549751482903957,-0.891978740692139,-0.4420425593853,0.0947234109044075,-0.964073002338409,-0.244969367980957,-0.102729082107544,-0.956840693950653,0.0156859122216702,-0.290189385414124,-0.96048104763031,-0.133837521076202,-0.244056656956673,-0.881043493747711,-0.47198760509491,0.0314658395946026,-0.964073002338409,-0.244969367980957,-0.102729082107544,-0.891978740692139,-0.4420425593853,0.0947234109044075,-0.956840693950653,0.0156859122216702,-0.290189385414124,-0.964073002338409,-0.244969367980957,-0.102729082107544,-0.956798315048218,-0.205593019723892,-0.205593019723892,-0.956798315048218,-0.205593019723892,-0.205593019723892,-0.964073002338409,-0.244969367980957,-0.102729082107544,-0.881043493747711,-0.47198760509491,0.0314658395946026,-0.956798315048218,-0.205593019723892,-0.205593019723892,-0.940601229667664,0.0711379051208496,-0.331976920366287,-0.956840693950653,0.0156859122216702,-0.290189385414124,-0.844774901866913,-0.497390806674957,-0.197377294301987,-0.956798315048218,-0.205593019723892,-0.205593019723892,-0.881043493747711,-0.47198760509491,0.0314658395946026,-0.940601229667664,0.0711379051208496,-0.331976920366287,-0.956798315048218,-0.205593019723892,-0.205593019723892,-0.941502332687378,-0.141225337982178,-0.305988252162933,-0.941502332687378,-0.141225337982178,-0.305988252162933,-0.956798315048218,-0.205593019723892,-0.205593019723892,-0.844774901866913,-0.497390806674957,-0.197377294301987,-0.949573934078217,-0.308611512184143,0.0553918108344078,-0.889625906944275,-0.370021402835846,0.267675042152405,
- -0.914719521999359,-0.402161180973053,0.0394275672733784,-0.853468418121338,-0.39512425661087,-0.339806854724884,-0.949573934078217,-0.308611512184143,0.0553918108344078,-0.914719521999359,-0.402161180973053,0.0394275672733784,-0.889625906944275,-0.370021402835846,0.267675042152405,-0.949573934078217,-0.308611512184143,0.0553918108344078,-0.916573703289032,-0.316059917211533,0.24494643509388,-0.949573934078217,-0.308611512184143,0.0553918108344078,-0.853468418121338,-0.39512425661087,-0.339806854724884,-0.951312065124512,-0.188690006732941,-0.243724584579468,-0.950343310832977,-0.30630898475647,-0.0549785383045673,-0.916573703289032,-0.316059917211533,0.24494643509388,-0.949573934078217,-0.308611512184143,0.0553918108344078,-0.951312065124512,-0.188690006732941,-0.243724584579468,-0.950343310832977,-0.30630898475647,-0.0549785383045673,-0.949573934078217,-0.308611512184143,0.0553918108344078,-0.923064351081848,-0.347135335206985,0.165678218007088,-0.916573703289032,-0.316059917211533,0.24494643509388,-0.950343310832977,-0.30630898475647,-0.0549785383045673,-0.950343310832977,-0.30630898475647,-0.0549785383045673,-0.951312065124512,-0.188690006732941,-0.243724584579468,-0.942750871181488,-0.227831438183784,-0.243543967604637,-0.887510597705841,-0.40055787563324,-0.227768197655678,-0.923064351081848,-0.347135335206985,0.165678218007088,-0.950343310832977,-0.30630898475647,-0.0549785383045673,-0.881479978561401,-0.377777129411697,-0.283332824707031,-0.950343310832977,-0.30630898475647,-0.0549785383045673,-0.942750871181488,-0.227831438183784,-0.243543967604637,-0.950343310832977,-0.30630898475647,-0.0549785383045673,-0.881479978561401,-0.377777129411697,-0.283332824707031,-0.887510597705841,-0.40055787563324,-0.227768197655678,-0.991542160511017,-0.0314775295555592,0.125910118222237,-0.983368337154388,-0.18093977868557,-0.0157338920980692,-0.963171243667603,-0.173686623573303,0.205265983939171,-0.991542160511017,-0.0314775295555592,0.125910118222237,-0.998021900653839,1.39593941383265e-017,-0.0628675222396851,-0.983368337154388,-0.18093977868557,-0.0157338920980692,
- -0.963171243667603,-0.173686623573303,0.205265983939171,-0.983368337154388,-0.18093977868557,-0.0157338920980692,-0.933426260948181,-0.348057270050049,0.0870143175125122,-0.983368337154388,-0.18093977868557,-0.0157338920980692,-0.998021900653839,1.39593941383265e-017,-0.0628675222396851,-0.976347684860229,-0.118106573820114,-0.181096747517586,-0.933426260948181,-0.348057270050049,0.0870143175125122,-0.983368337154388,-0.18093977868557,-0.0157338920980692,-0.951282560825348,-0.290888071060181,-0.102203905582428,-0.951282560825348,-0.290888071060181,-0.102203905582428,-0.983368337154388,-0.18093977868557,-0.0157338920980692,-0.976347684860229,-0.118106573820114,-0.181096747517586,-0.981820046901703,-0.0785456076264381,-0.172800332307816,-0.98345959186554,-0.180956572294235,0.00786767713725567,-0.99799108505249,0.0314327888190746,-0.0550073832273483,-0.981820046901703,-0.0785456076264381,-0.172800332307816,-0.951517939567566,-0.25950488448143,-0.165139466524124,-0.98345959186554,-0.180956572294235,0.00786767713725567,-0.99799108505249,0.0314327888190746,-0.0550073832273483,-0.98345959186554,-0.180956572294235,0.00786767713725567,-0.988334119319916,-0.0313756838440895,0.149034515023232,-0.98345959186554,-0.180956572294235,0.00786767713725567,-0.951517939567566,-0.25950488448143,-0.165139466524124,-0.937822341918945,-0.346757858991623,-0.0157617200165987,-0.988334119319916,-0.0313756838440895,0.149034515023232,-0.98345959186554,-0.180956572294235,0.00786767713725567,-0.962302029132843,-0.236631661653519,0.134091258049011,-0.962302029132843,-0.236631661653519,0.134091258049011,-0.98345959186554,-0.180956572294235,0.00786767713725567,-0.937822341918945,-0.346757858991623,-0.0157617200165987,-0.991910755634308,-0.0157446153461933,-0.125956922769547,-0.98345959186554,-0.180956572294235,0.00786767713725567,-0.998453617095947,0.0393091961741447,0.0393091961741447,-0.991910755634308,-0.0157446153461933,-0.125956922769547,-0.96482652425766,-0.189801946282387,-0.181893512606621,-0.98345959186554,-0.180956572294235,0.00786767713725567,
- -0.998453617095947,0.0393091961741447,0.0393091961741447,-0.98345959186554,-0.180956572294235,0.00786767713725567,-0.976620197296143,-0.102387592196465,0.18902325630188,-0.98345959186554,-0.180956572294235,0.00786767713725567,-0.96482652425766,-0.189801946282387,-0.181893512606621,-0.939428150653839,-0.331562876701355,-0.0868379026651382,-0.976620197296143,-0.102387592196465,0.18902325630188,-0.98345959186554,-0.180956572294235,0.00786767713725567,-0.956290185451508,-0.276612848043442,0.0948386937379837,-0.956290185451508,-0.276612848043442,0.0948386937379837,-0.98345959186554,-0.180956572294235,0.00786767713725567,-0.939428150653839,-0.331562876701355,-0.0868379026651382,-0.936514437198639,-0.34627428650856,0.0550890862941742,-0.987409830093384,-0.15798556804657,-0.00789927877485752,-0.931243658065796,-0.347243428230286,-0.110486537218094,-0.936514437198639,-0.34627428650856,0.0550890862941742,-0.963171243667603,-0.205265983939171,0.173686623573303,-0.987409830093384,-0.15798556804657,-0.00789927877485752,-0.931243658065796,-0.347243428230286,-0.110486537218094,-0.987409830093384,-0.15798556804657,-0.00789927877485752,-0.962871193885803,-0.165740117430687,-0.213094443082809,-0.987409830093384,-0.15798556804657,-0.00789927877485752,-0.963171243667603,-0.205265983939171,0.173686623573303,-0.991880118846893,-0.0472323894500732,0.118080973625183,-0.962871193885803,-0.165740117430687,-0.213094443082809,-0.987409830093384,-0.15798556804657,-0.00789927877485752,-0.997529208660126,-0.0314182415604591,-0.0628364831209183,-0.997529208660126,-0.0314182415604591,-0.0628364831209183,-0.987409830093384,-0.15798556804657,-0.00789927877485752,-0.991880118846893,-0.0472323894500732,0.118080973625183,-0.982062458992004,-0.188555985689163,-4.18678393486001e-017,-0.962871313095093,-0.260448783636093,0.0710314884781837,-0.924244523048401,-0.347579151391983,-0.157990515232086,-0.982062458992004,-0.188555985689163,-4.18678393486001e-017,-0.911353945732117,-0.0942779928445816,0.400681465864182,-0.962871313095093,-0.260448783636093,0.0710314884781837,
- -0.924244523048401,-0.347579151391983,-0.157990515232086,-0.949098646640778,-0.276820421218872,-0.150273948907852,-0.982062458992004,-0.188555985689163,-4.18678393486001e-017,-0.911353945732117,-0.0942779928445816,0.400681465864182,-0.982062458992004,-0.188555985689163,-4.18678393486001e-017,-0.976256906986237,0.0708573535084724,0.204699024558067,-0.985658526420593,-0.13404954969883,0.10250848531723,-0.982062458992004,-0.188555985689163,-4.18678393486001e-017,-0.949098646640778,-0.276820421218872,-0.150273948907852,-0.985658526420593,-0.13404954969883,0.10250848531723,-0.976256906986237,0.0708573535084724,0.204699024558067,-0.982062458992004,-0.188555985689163,-4.18678393486001e-017,-0.985658526420593,-0.13404954969883,0.10250848531723,-0.949098646640778,-0.276820421218872,-0.150273948907852,-0.960302531719208,-0.267625272274017,-0.0787133201956749,-0.976256906986237,0.0708573535084724,0.204699024558067,-0.985658526420593,-0.13404954969883,0.10250848531723,-0.97324526309967,0.0313950069248676,0.227613806724548,-0.944764852523804,-0.133841678500175,0.299175530672073,-0.985658526420593,-0.13404954969883,0.10250848531723,-0.960302531719208,-0.267625272274017,-0.0787133201956749,-0.985658526420593,-0.13404954969883,0.10250848531723,-0.933771431446075,-0.0941618233919144,0.345260053873062,-0.97324526309967,0.0313950069248676,0.227613806724548,-0.933771431446075,-0.0941618233919144,0.345260053873062,-0.985658526420593,-0.13404954969883,0.10250848531723,-0.944764852523804,-0.133841678500175,0.299175530672073,-0.969225406646729,-0.157597616314888,-0.189117163419724,-0.984924018383026,-0.149708449840546,0.0866733118891716,-0.992002964019775,-0.125968635082245,-0.0078730396926403,-0.992002964019775,-0.125968635082245,-0.0078730396926403,-0.984924018383026,-0.149708449840546,0.0866733118891716,-0.95474100112915,-0.11046589165926,0.27616474032402,-0.992002964019775,-0.125968635082245,-0.0078730396926403,-0.940454363822937,-0.102738715708256,-0.324022114276886,-0.969225406646729,-0.157597616314888,-0.189117163419724,-0.950255274772644,-0.172773689031601,0.25916051864624,
- -0.992002964019775,-0.125968635082245,-0.0078730396926403,-0.95474100112915,-0.11046589165926,0.27616474032402,-0.940454363822937,-0.102738715708256,-0.324022114276886,-0.992002964019775,-0.125968635082245,-0.0078730396926403,-0.978046953678131,-0.181411936879158,-0.102537177503109,-0.978046953678131,-0.181411936879158,-0.102537177503109,-0.992002964019775,-0.125968635082245,-0.0078730396926403,-0.950255274772644,-0.172773689031601,0.25916051864624,-0.978046953678131,-0.181411936879158,-0.102537177503109,-0.912735283374786,-0.110157705843449,-0.393420368432999,-0.940454363822937,-0.102738715708256,-0.324022114276886,-0.919607877731323,-0.369415134191513,0.133618235588074,-0.978046953678131,-0.181411936879158,-0.102537177503109,-0.950255274772644,-0.172773689031601,0.25916051864624,-0.912735283374786,-0.110157705843449,-0.393420368432999,-0.978046953678131,-0.181411936879158,-0.102537177503109,-0.9520183801651,-0.220301762223244,-0.212433844804764,-0.9520183801651,-0.220301762223244,-0.212433844804764,-0.978046953678131,-0.181411936879158,-0.102537177503109,-0.919607877731323,-0.369415134191513,0.133618235588074,-0.988851487636566,-0.0470881685614586,0.141264483332634,-0.940601229667664,0.0711379051208496,0.331976920366287,-0.971490025520325,-0.118474394083023,0.205355599522591,-0.907737612724304,-0.418348640203476,-0.0315734818577766,-0.988851487636566,-0.0470881685614586,0.141264483332634,-0.971490025520325,-0.118474394083023,0.205355599522591,-0.940601229667664,0.0711379051208496,0.331976920366287,-0.988851487636566,-0.0470881685614586,0.141264483332634,-0.95763623714447,0.0863442495465279,0.274731695652008,-0.988851487636566,-0.0470881685614586,0.141264483332634,-0.907737612724304,-0.418348640203476,-0.0315734818577766,-0.970038890838623,-0.197162374854088,-0.141956895589828,-0.988546967506409,-0.133375376462936,0.0706104934215546,-0.95763623714447,0.0863442495465279,0.274731695652008,-0.988851487636566,-0.0470881685614586,0.141264483332634,-0.970038890838623,-0.197162374854088,-0.141956895589828,-0.988546967506409,-0.133375376462936,0.0706104934215546,
- -0.988851487636566,-0.0470881685614586,0.141264483332634,-0.969556570053101,0.0157651472836733,0.244359791278839,-0.95763623714447,0.0863442495465279,0.274731695652008,-0.988546967506409,-0.133375376462936,0.0706104934215546,-0.988546967506409,-0.133375376462936,0.0706104934215546,-0.970038890838623,-0.197162374854088,-0.141956895589828,-0.967394948005676,-0.228084981441498,-0.110109992325306,-0.945556342601776,-0.32306507229805,0.0393981784582138,-0.969556570053101,0.0157651472836733,0.244359791278839,-0.988546967506409,-0.133375376462936,0.0706104934215546,-0.932623744010925,-0.360510021448135,-0.0156743489205837,-0.988546967506409,-0.133375376462936,0.0706104934215546,-0.967394948005676,-0.228084981441498,-0.110109992325306,-0.988546967506409,-0.133375376462936,0.0706104934215546,-0.932623744010925,-0.360510021448135,-0.0156743489205837,-0.945556342601776,-0.32306507229805,0.0393981784582138,-0.98157787322998,0.188462942838669,-0.0314104929566383,-0.999721229076386,-0.023615462705493,-5.243686086563e-018,-0.978320896625519,0.157793685793877,0.134124636650085,-0.98157787322998,0.188462942838669,-0.0314104929566383,-0.982912182807922,0.062906377017498,-0.172992557287216,-0.999721229076386,-0.023615462705493,-5.243686086563e-018,-0.978320896625519,0.157793685793877,0.134124636650085,-0.999721229076386,-0.023615462705493,-5.243686086563e-018,-0.979174554347992,-0.0473794117569923,0.197414219379425,-0.999721229076386,-0.023615462705493,-5.243686086563e-018,-0.982912182807922,0.062906377017498,-0.172992557287216,-0.982274770736694,-0.102156579494476,-0.157163962721825,-0.979174554347992,-0.0473794117569923,0.197414219379425,-0.999721229076386,-0.023615462705493,-5.243686086563e-018,-0.988366305828094,-0.150231674313545,0.0237207934260368,-0.988366305828094,-0.150231674313545,0.0237207934260368,-0.999721229076386,-0.023615462705493,-5.243686086563e-018,-0.982274770736694,-0.102156579494476,-0.157163962721825,-0.980735242366791,-0.0711823925375938,-0.181910574436188,-0.999876022338867,-3.49633197622281e-018,0.0157460793852806,
- -0.977378308773041,0.0945850014686584,-0.189170002937317,-0.980735242366791,-0.0711823925375938,-0.181910574436188,-0.982729911804199,-0.180822312831879,-0.0393091961741447,-0.999876022338867,-3.49633197622281e-018,0.0157460793852806,-0.977378308773041,0.0945850014686584,-0.189170002937317,-0.999876022338867,-3.49633197622281e-018,0.0157460793852806,-0.978686571121216,0.205208465456963,-0.00789263378828764,-0.999876022338867,-3.49633197622281e-018,0.0157460793852806,-0.982729911804199,-0.180822312831879,-0.0393091961741447,-0.984007954597473,-0.125953018665314,0.125953018665314,-0.978686571121216,0.205208465456963,-0.00789263378828764,-0.999876022338867,-3.49633197622281e-018,0.0157460793852806,-0.989522039890289,0.0549734458327293,0.133506938815117,-0.989522039890289,0.0549734458327293,0.133506938815117,-0.999876022338867,-3.49633197622281e-018,0.0157460793852806,-0.984007954597473,-0.125953018665314,0.125953018665314,-0.978686571121216,0.00789263378828764,-0.205208465456963,-0.999876022338867,-3.49633197622281e-018,0.0157460793852806,-0.977074861526489,0.165472343564034,-0.133953809738159,-0.978686571121216,0.00789263378828764,-0.205208465456963,-0.982274770736694,-0.157163962721825,-0.102156579494476,-0.999876022338867,-3.49633197622281e-018,0.0157460793852806,-0.977074861526489,0.165472343564034,-0.133953809738159,-0.999876022338867,-3.49633197622281e-018,0.0157460793852806,-0.979296684265137,0.189541295170784,0.0710779801011086,-0.999876022338867,-3.49633197622281e-018,0.0157460793852806,-0.982274770736694,-0.157163962721825,-0.102156579494476,-0.982396006584167,-0.172901704907417,0.0707325115799904,-0.979296684265137,0.189541295170784,0.0710779801011086,-0.999876022338867,-3.49633197622281e-018,0.0157460793852806,-0.989949524402618,-3.14018473127668e-017,0.141421347856522,-0.989949524402618,-3.14018473127668e-017,0.141421347856522,-0.999876022338867,-3.49633197622281e-018,0.0157460793852806,-0.982396006584167,-0.172901704907417,0.0707325115799904,-0.982396006584167,-0.0707325115799904,0.172901704907417,-0.999690115451813,0.00787157565355301,-0.023614726960659,
- -0.977803647518158,-0.197137832641602,0.0709696188569069,-0.982396006584167,-0.0707325115799904,0.172901704907417,-0.984832227230072,0.110301204025745,0.133937180042267,-0.999690115451813,0.00787157565355301,-0.023614726960659,-0.977803647518158,-0.197137832641602,0.0709696188569069,-0.999690115451813,0.00787157565355301,-0.023614726960659,-0.977257013320923,-0.157622098922729,-0.141859874129295,-0.999690115451813,0.00787157565355301,-0.023614726960659,-0.984832227230072,0.110301204025745,0.133937180042267,-0.984587788581848,0.173287451267242,-0.0236301068216562,-0.977257013320923,-0.157622098922729,-0.141859874129295,-0.999690115451813,0.00787157565355301,-0.023614726960659,-0.987872242927551,0.0395148880779743,-0.150156587362289,-0.987872242927551,0.0395148880779743,-0.150156587362289,-0.999690115451813,0.00787157565355301,-0.023614726960659,-0.984587788581848,0.173287451267242,-0.0236301068216562,-0.983003377914429,-0.0314561054110527,-0.180872619152069,-0.963261306285858,-0.110538177192211,-0.244763121008873,-0.923754572868347,0.0947440639138222,-0.371080905199051,-0.983003377914429,-0.0314561054110527,-0.180872619152069,-0.909307718276978,-0.415459603071213,-0.0235165804624558,-0.963261306285858,-0.110538177192211,-0.244763121008873,-0.923754572868347,0.0947440639138222,-0.371080905199051,-0.948298156261444,0.102732293307781,-0.300294399261475,-0.983003377914429,-0.0314561054110527,-0.180872619152069,-0.909307718276978,-0.415459603071213,-0.0235165804624558,-0.983003377914429,-0.0314561054110527,-0.180872619152069,-0.975803375244141,-0.188865169882774,0.110171347856522,-0.986794292926788,-0.11841531842947,-0.110520958900452,-0.983003377914429,-0.0314561054110527,-0.180872619152069,-0.948298156261444,0.102732293307781,-0.300294399261475,-0.986794292926788,-0.11841531842947,-0.110520958900452,-0.975803375244141,-0.188865169882774,0.110171347856522,-0.983003377914429,-0.0314561054110527,-0.180872619152069,-0.986794292926788,-0.11841531842947,-0.110520958900452,-0.948298156261444,0.102732293307781,-0.300294399261475,
- -0.960749089717865,0.0314999669790268,-0.275624722242355,-0.975803375244141,-0.188865169882774,0.110171347856522,-0.986794292926788,-0.11841531842947,-0.110520958900452,-0.973005533218384,-0.219710916280746,0.0706213638186455,-0.945732593536377,-0.315244197845459,-0.0788110494613647,-0.986794292926788,-0.11841531842947,-0.110520958900452,-0.960749089717865,0.0314999669790268,-0.275624722242355,-0.986794292926788,-0.11841531842947,-0.110520958900452,-0.934894561767578,-0.3535315990448,-0.0314250290393829,-0.973005533218384,-0.219710916280746,0.0706213638186455,-0.934894561767578,-0.3535315990448,-0.0314250290393829,-0.986794292926788,-0.11841531842947,-0.110520958900452,-0.945732593536377,-0.315244197845459,-0.0788110494613647,-0.969225406646729,0.157597616314888,-0.189117163419724,-0.983947098255157,-0.118073657155037,-0.133816793560982,-0.991910755634308,-0.0157446153461933,-0.125956922769547,-0.991910755634308,-0.0157446153461933,-0.125956922769547,-0.983947098255157,-0.118073657155037,-0.133816793560982,-0.954384505748749,-0.291836589574814,-0.0630998015403748,-0.991910755634308,-0.0157446153461933,-0.125956922769547,-0.940630733966827,0.300369501113892,-0.158089205622673,-0.969225406646729,0.157597616314888,-0.189117163419724,-0.950871348381042,-0.282903850078583,-0.125735059380531,-0.991910755634308,-0.0157446153461933,-0.125956922769547,-0.954384505748749,-0.291836589574814,-0.0630998015403748,-0.940630733966827,0.300369501113892,-0.158089205622673,-0.991910755634308,-0.0157446153461933,-0.125956922769547,-0.977803647518158,0.0709696188569069,-0.197137832641602,-0.977803647518158,0.0709696188569069,-0.197137832641602,-0.991910755634308,-0.0157446153461933,-0.125956922769547,-0.950871348381042,-0.282903850078583,-0.125735059380531,-0.977803647518158,0.0709696188569069,-0.197137832641602,-0.912820041179657,0.369849503040314,-0.173121050000191,-0.940630733966827,0.300369501113892,-0.158089205622673,-0.917823493480682,-0.196116134524345,-0.34516441822052,-0.977803647518158,0.0709696188569069,-0.197137832641602,-0.950871348381042,-0.282903850078583,-0.125735059380531,
- -0.912820041179657,0.369849503040314,-0.173121050000191,-0.977803647518158,0.0709696188569069,-0.197137832641602,-0.952165842056274,0.173121064901352,-0.25181245803833,-0.952165842056274,0.173121064901352,-0.25181245803833,-0.977803647518158,0.0709696188569069,-0.197137832641602,-0.917823493480682,-0.196116134524345,-0.34516441822052,-0.988547086715698,-0.149066627025604,-0.0235368367284536,-0.940278232097626,-0.316059917211533,0.126423969864845,-0.971368849277496,-0.221124619245529,-0.0868703871965408,-0.907483279705048,-0.0394557937979698,-0.418231457471848,-0.988547086715698,-0.149066627025604,-0.0235368367284536,-0.971368849277496,-0.221124619245529,-0.0868703871965408,-0.940278232097626,-0.316059917211533,0.126423969864845,-0.988547086715698,-0.149066627025604,-0.0235368367284536,-0.958611309528351,-0.251439034938812,0.133576974272728,-0.988547086715698,-0.149066627025604,-0.0235368367284536,-0.907483279705048,-0.0394557937979698,-0.418231457471848,-0.969918131828308,0.102511666715145,-0.22079436480999,-0.988577425479889,-0.0941502302885056,-0.117687791585922,-0.958611309528351,-0.251439034938812,0.133576974272728,-0.988547086715698,-0.149066627025604,-0.0235368367284536,-0.969918131828308,0.102511666715145,-0.22079436480999,-0.988577425479889,-0.0941502302885056,-0.117687791585922,-0.988547086715698,-0.149066627025604,-0.0235368367284536,-0.968203842639923,-0.244018852710724,0.0551010295748711,-0.958611309528351,-0.251439034938812,0.133576974272728,-0.988577425479889,-0.0941502302885056,-0.117687791585922,-0.988577425479889,-0.0941502302885056,-0.117687791585922,-0.969918131828308,0.102511666715145,-0.22079436480999,-0.967245399951935,0.0707740485668182,-0.24377728998661,-0.944442808628082,-0.0944442823529243,-0.314814269542694,-0.968203842639923,-0.244018852710724,0.0551010295748711,-0.988577425479889,-0.0941502302885056,-0.117687791585922,-0.9343181848526,-0.0471084825694561,-0.353313624858856,-0.988577425479889,-0.0941502302885056,-0.117687791585922,-0.967245399951935,0.0707740485668182,-0.24377728998661,
- -0.988577425479889,-0.0941502302885056,-0.117687791585922,-0.9343181848526,-0.0471084825694561,-0.353313624858856,-0.944442808628082,-0.0944442823529243,-0.314814269542694,-0.981547594070435,0.0628190487623215,0.180604755878448,-0.999721229076386,5.243686086563e-018,-0.023615462705493,-0.979418873786926,-0.102681003510952,0.173767864704132,-0.981547594070435,0.0628190487623215,0.180604755878448,-0.983003377914429,0.180872619152069,0.0314561054110527,-0.999721229076386,5.243686086563e-018,-0.023615462705493,-0.979418873786926,-0.102681003510952,0.173767864704132,-0.999721229076386,5.243686086563e-018,-0.023615462705493,-0.978595018386841,-0.205189272761345,-0.0157837904989719,-0.999721229076386,5.243686086563e-018,-0.023615462705493,-0.983003377914429,0.180872619152069,0.0314561054110527,-0.983003377914429,0.133688449859619,-0.125824421644211,-0.978595018386841,-0.205189272761345,-0.0157837904989719,-0.999721229076386,5.243686086563e-018,-0.023615462705493,-0.988273561000824,-0.0553433187305927,-0.142311379313469,-0.988273561000824,-0.0553433187305927,-0.142311379313469,-0.999721229076386,5.243686086563e-018,-0.023615462705493,-0.983003377914429,0.133688449859619,-0.125824421644211,-0.980735242366791,0.166092246770859,-0.102819010615349,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.977226555347443,0.204902336001396,0.0551660135388374,-0.980735242366791,0.166092246770859,-0.102819010615349,-0.982032120227814,0.00785625725984573,-0.188550174236298,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.977226555347443,0.204902336001396,0.0551660135388374,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.979174554347992,0.0473794117569923,0.197414219379425,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.982032120227814,0.00785625725984573,-0.188550174236298,-0.984587788581848,-0.141780629754066,-0.102397121489048,-0.979174554347992,0.0473794117569923,0.197414219379425,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.989918947219849,-0.117847494781017,0.0785649940371513,
- -0.989918947219849,-0.117847494781017,0.0785649940371513,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.984587788581848,-0.141780629754066,-0.102397121489048,-0.979999899864197,0.197580605745316,-0.0237096734344959,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.976014971733093,0.165292844176292,0.141679584980011,-0.979999899864197,0.197580605745316,-0.0237096734344959,-0.981820046901703,0.0785456076264381,-0.172800332307816,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.976014971733093,0.165292844176292,0.141679584980011,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.979785799980164,-0.0316059924662113,0.197537466883659,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.981820046901703,0.0785456076264381,-0.172800332307816,-0.983033776283264,-0.0943712368607521,-0.157285392284393,-0.979785799980164,-0.0316059924662113,0.197537466883659,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.989674627780914,-0.141382083296776,0.0235636811703444,-0.989674627780914,-0.141382083296776,0.0235636811703444,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.983033776283264,-0.0943712368607521,-0.157285392284393,-0.982729911804199,-0.180822312831879,-0.0393091961741447,-0.999721229076386,0.023615462705493,5.243686086563e-018,-0.976620197296143,-0.102387592196465,-0.18902325630188,-0.982729911804199,-0.180822312831879,-0.0393091961741447,-0.983947098255157,-0.118073657155037,0.133816793560982,-0.999721229076386,0.023615462705493,5.243686086563e-018,-0.976620197296143,-0.102387592196465,-0.18902325630188,-0.999721229076386,0.023615462705493,5.243686086563e-018,-0.977226555347443,0.110332027077675,-0.181259766221046,-0.999721229076386,0.023615462705493,5.243686086563e-018,-0.983947098255157,-0.118073657155037,0.133816793560982,-0.983764111995697,0.0472206771373749,0.173142492771149,-0.977226555347443,0.110332027077675,-0.181259766221046,-0.999721229076386,0.023615462705493,5.243686086563e-018,-0.987317442893982,0.157970786094666,0.0157970786094666,
- -0.987317442893982,0.157970786094666,0.0157970786094666,-0.999721229076386,0.023615462705493,5.243686086563e-018,-0.983764111995697,0.0472206771373749,0.173142492771149
- }
- NormalsW: *5193 {
- 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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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: *15579 {
- a: 0.120289087295532,-0.81295371055603,0.569769203662872,0.11752250790596,-0.813764691352844,0.569188475608826,-0.0833820030093193,-0.853354036808014,0.514620542526245,0.123023346066475,-0.99074774980545,-0.0573081523180008,0.107703916728497,-0.992688596248627,-0.0544909872114658,0.175542548298836,-0.982196152210236,-0.0669007524847984,0.108952730894089,-0.663249671459198,0.740424990653992,-0.0138746351003647,-0.689144849777222,0.724490761756897,-0.159478679299355,-0.705553352832794,0.690478920936584,0.124053105711937,-0.990836083889008,-0.0534291975200176,0.0703323855996132,-0.996785879135132,-0.0383589491248131,0.107997305691242,-0.992946326732636,-0.0489312224090099,0.0349875167012215,-0.999274373054504,0.0150536857545376,0.110023222863674,-0.993891894817352,-0.00859341770410538,0.0824042186141014,-0.996599078178406,0.000129465013742447,0.0878699123859406,-0.995974779129028,0.0176976546645164,0.0440030731260777,-0.998477637767792,0.0332615375518799,0.0389645136892796,-0.998625993728638,0.0350424125790596,0.0933358892798424,-0.887089312076569,0.452063113451004,0.119656033813953,-0.87949925661087,0.460611969232559,0.0228838268667459,-0.903732657432556,0.427485287189484,0.0488629527390003,-0.995174646377563,0.0850868374109268,0.0494905337691307,-0.995143532752991,0.0850883200764656,0.11403151601553,-0.989829063415527,0.0850608721375465,0.0418123677372932,-0.980139672756195,0.193850815296173,0.0141483079642057,-0.981768190860748,0.189555063843727,0.166034549474716,-0.963214337825775,0.211307391524315,0.104981690645218,-0.994095087051392,-0.0274570528417826,0.221675574779511,-0.974957644939423,-0.0178174506872892,0.0630191266536713,-0.997536897659302,-0.0308005176484585,0.038350161164999,-0.995888710021973,0.0820666998624802,-0.0978525131940842,-0.994820833206177,0.0275036003440619,0.0725862830877304,-0.992774128913879,0.0955550968647003,-0.056768611073494,-0.996189475059509,-0.0662105083465576,0.0588714256882668,-0.998198509216309,-0.0115802884101868,-0.00924650207161903,-0.998995900154114,-0.0438385494053364,
- 0.0435368195176125,-0.997330546379089,0.0586202777922153,0.0512562245130539,-0.996962010860443,0.0586491450667381,-0.0246196202933788,-0.99800056219101,0.0582142695784569,-0.0107873007655144,-0.999375104904175,-0.0336605422198772,0.0842242017388344,-0.996444284915924,0.002296062419191,-0.0625594928860664,-0.996626436710358,-0.0531247928738594,0.0470563918352127,-0.996002912521362,0.0759214982390404,-0.0162911098450422,-0.997062027454376,0.0748467221856117,0.0501041784882545,-0.995850801467896,0.0759655758738518,-0.0288134329020977,-0.995856642723084,0.0862515345215797,0.0500961355865002,-0.995842099189758,0.0760857537388802,-0.0163561347872019,-0.996273815631866,0.0846814587712288,0.0254741832613945,-0.997715413570404,0.06257064640522,-0.0161639451980591,-0.998286008834839,0.0562489330768585,0.0449986085295677,-0.996837496757507,0.0654990449547768,0.0237708110362291,-0.998400807380676,0.0512921027839184,0.0411210879683495,-0.998098909854889,0.0459096319973469,0.047508642077446,-0.997904717922211,0.0439231805503368,-0.016353590413928,-0.996306896209717,0.084292009472847,0.0223008207976818,-0.996636807918549,0.0788530334830284,-0.0287779085338116,-0.995878338813782,0.0860136598348618,-0.0161665193736553,-0.998265087604523,0.0566176809370518,0.0255501158535481,-0.997681856155396,0.0630737319588661,0.0225835423916578,-0.997782051563263,0.0626180991530418,0.0475168228149414,-0.997903227806091,0.0439480878412724,-0.020931102335453,-0.997637212276459,0.0654362365603447,0.0237917341291904,-0.998393177986145,0.0514305531978607,0.0226716119796038,-0.998088896274567,0.0574858412146568,0.0247469879686832,-0.998024165630341,0.0577539578080177,-0.0232992693781853,-0.998401939868927,0.0514856539666653,-0.0195771884173155,-0.997110784053802,0.0733949691057205,0.0496514812111855,-0.997491776943207,0.0504465512931347,-0.0412292703986168,-0.995901584625244,0.0804992243647575,-0.0415068976581097,-0.995962023735046,0.0796043574810028,-0.143688082695007,-0.98359203338623,0.109089218080044,-0.0196127258241177,-0.997125446796417,0.0731862336397171,
- -0.15622378885746,-0.98747181892395,0.0222168043255806,0.0227250196039677,-0.998263001441956,0.0543557442724705,-0.0242138970643282,-0.998643934726715,0.0460875369608402,-0.144584059715271,-0.984101116657257,0.103152766823769,-0.0428928732872009,-0.996250510215759,0.0751342177391052,-0.184674650430679,-0.976165652275085,0.113999858498573,-0.193148523569107,-0.978308379650116,0.0748757869005203,-0.306964129209518,-0.948154747486115,0.0823144391179085,-0.149223133921623,-0.986194908618927,0.0717781409621239,-0.212474972009659,-0.975810945034027,0.0514534115791321,0.0225709527730942,-0.997736155986786,0.0633487328886986,-0.151656344532967,-0.986909091472626,0.0548702999949455,-0.306831806898117,-0.94718199968338,0.0932765156030655,-0.211967691779137,-0.973481237888336,0.0860466659069061,-0.147907301783562,-0.985695958137512,0.0807890295982361,-0.307049989700317,-0.951369941234589,0.0248113386332989,-0.132004603743553,-0.990132689476013,0.0470322892069817,-0.212610632181168,-0.976433992385864,0.0370596051216125,-0.134361177682877,-0.988457918167114,0.0699872747063637,0.0225128401070833,-0.997518360614777,0.0667121261358261,-0.212220087647438,-0.974640369415283,0.0709842070937157,-0.129947394132614,-0.991139054298401,0.0275142900645733,-0.306901723146439,-0.951693475246429,0.00953138899058104,-0.197252720594406,-0.980131268501282,0.0208339113742113,-0.0280101876705885,-0.996330618858337,0.0808748677372932,0.0223540272563696,-0.996870517730713,0.0758250579237938,0.0398127399384975,-0.996461153030396,0.0740278214216232,-0.136493116617203,-0.986420094966888,0.0913513153791428,0.0398640111088753,-0.996494829654694,0.073546439409256,0.022361071780324,-0.996900856494904,0.0754232183098793,0.111920841038227,-0.991506814956665,-0.0662431344389915,0.00353490328416228,-0.991788506507874,-0.127840772271156,0.0573725774884224,-0.993580877780914,-0.09749685972929,-0.188426867127419,-0.981837332248688,-0.0221545118838549,0.00801184866577387,-0.999496221542358,0.0307131875306368,-0.12637560069561,-0.991968274116516,-0.00532443402335048,
- 0.0435058102011681,-0.998288750648499,0.0390769727528095,-0.12927719950676,-0.991380751132965,0.0212540980428457,0.00675893854349852,-0.999351382255554,0.0353743433952332,0.0536118410527706,-0.996783494949341,-0.0595685541629791,0.0344193316996098,-0.997101068496704,-0.0678598657250404,0.100952543318272,-0.994128108024597,-0.0389617830514908,0.0186966042965651,-0.9997838139534,-0.00909438449889421,-0.177757352590561,-0.981447219848633,-0.0718591138720512,0.0567701384425163,-0.998382389545441,0.00314447097480297,0.0538190305233002,-0.998471796512604,0.0125578716397285,0.0776927545666695,-0.996809601783752,0.0182926002889872,0.0153669565916061,-0.999876439571381,0.00332173146307468,0.287212491035461,-0.922448098659515,0.25806713104248,0.282435208559036,-0.924338400363922,0.256571292877197,0.0875547453761101,-0.977545857429504,0.1916723549366,0.283065676689148,-0.874787390232086,-0.393218547105789,0.264227092266083,-0.881793975830078,-0.390670537948608,0.334855705499649,-0.853408396244049,-0.399456709623337,0.259849280118942,-0.84412544965744,0.46896755695343,0.137027233839035,-0.885502219200134,0.443969964981079,-0.00139707315247506,-0.913262784481049,0.407368540763855,0.28421288728714,-0.875889122486115,-0.389924824237823,0.230444461107254,-0.897006630897522,-0.377192884683609,0.264900177717209,-0.883872985839844,-0.385482013225555,0.193104311823845,-0.925418555736542,-0.326054066419601,0.269486635923386,-0.897979259490967,-0.347865223884583,0.24453467130661,-0.907719552516937,-0.340951651334763,0.250825971364975,-0.91211324930191,-0.324246376752853,0.207692980766296,-0.927752912044525,-0.310061872005463,0.198099479079247,-0.930919349193573,-0.306831806898117,0.260103285312653,-0.958096921443939,0.119986236095428,0.288674831390381,-0.94827789068222,0.132045134902,0.197101160883904,-0.975927948951721,0.0933583527803421,0.209657147526741,-0.942427515983582,-0.260526865720749,0.218205034732819,-0.940530359745026,-0.260363578796387,0.27840867638588,-0.924986124038696,-0.258629739284515,0.214589938521385,-0.964690566062927,-0.152719885110855,
- 0.179642722010612,-0.970862209796906,-0.158603355288506,0.330784916877747,-0.934521794319153,-0.131340801715851,0.260117501020432,-0.893423914909363,-0.366241216659546,0.375088304281235,-0.858208656311035,-0.350409299135208,0.218250215053558,-0.902794361114502,-0.37057963013649,0.200085490942001,-0.943116784095764,-0.265511840581894,0.0707384943962097,-0.947005569934845,-0.313331425189972,0.235489338636398,-0.938832998275757,-0.251271516084671,0.10601232945919,-0.90964549779892,-0.401629745960236,0.215588390827179,-0.909896016120911,-0.354416370391846,0.153988301753998,-0.911350607872009,-0.38174295425415,0.203803151845932,-0.936271905899048,-0.286110520362854,0.218678683042526,-0.933000147342682,-0.285815209150314,0.145045176148415,-0.946998775005341,-0.286627382040024,0.153175979852676,-0.915294885635376,-0.372521758079529,0.244970306754112,-0.908356308937073,-0.338937222957611,0.101227320730686,-0.915346205234528,-0.389736145734787,0.207471251487732,-0.94038850069046,-0.269490748643875,0.152092978358269,-0.950581073760986,-0.270672023296356,0.218385621905327,-0.938010454177856,-0.269154608249664,0.14232125878334,-0.955077528953552,-0.25994548201561,0.21838866174221,-0.937964737415314,-0.269311219453812,0.152502164244652,-0.953138589859009,-0.261285305023193,0.189498588442802,-0.940284967422485,-0.282762289047241,0.151275828480721,-0.945473909378052,-0.288434952497482,0.204787850379944,-0.937795460224152,-0.280360013246536,0.187388509511948,-0.937664330005646,-0.292696356773376,0.200696885585785,-0.933658003807068,-0.296653985977173,0.211656510829926,-0.930202126502991,-0.299875825643539,0.152485474944115,-0.953034281730652,-0.261675119400024,0.187899589538574,-0.945322394371033,-0.266569972038269,0.142349243164063,-0.954999923706055,-0.260215133428574,0.151292741298676,-0.945579648017883,-0.288079410791397,0.189599379897118,-0.940408229827881,-0.282284677028656,0.187405988574028,-0.94074422121048,-0.282629281282425,0.211666226387024,-0.930208086967468,-0.299850732088089,0.145195737481117,-0.949113965034485,-0.279465436935425,
- 0.18741849064827,-0.937702119350433,-0.29255610704422,0.187244519591331,-0.939290821552277,-0.287527740001678,0.188526049256325,-0.93908679485321,-0.287357091903687,0.142102301120758,-0.945431411266327,-0.293200224637985,0.146912276744843,-0.951085686683655,-0.271758705377579,0.214092403650284,-0.931657314300537,-0.293562799692154,0.126498520374298,-0.955943286418915,-0.26489731669426,0.126184374094009,-0.955743312835693,-0.265767186880112,0.0268495865166187,-0.971783518791199,-0.234341412782669,0.146860986948013,-0.951027512550354,-0.27198988199234,0.0100222863256931,-0.94848096370697,-0.31667572259903,0.187141269445419,-0.938371598720551,-0.290580332279205,0.140922576189041,-0.943984091281891,-0.298387050628662,0.0256951078772545,-0.970413148403168,-0.240079507231712,0.124621853232384,-0.95473724603653,-0.270085632801056,-0.0191128849983215,-0.974019646644592,-0.225655719637871,-0.0294369123876095,-0.96412992477417,-0.263793438673019,-0.143252044916153,-0.958410799503326,-0.246835082769394,0.0196293871849775,-0.962657332420349,-0.270010501146317,-0.0503651648759842,-0.957105755805969,-0.285328090190887,0.187433630228043,-0.940994918346405,-0.281775116920471,0.0163634195923805,-0.958097100257874,-0.285975873470306,-0.142674431204796,-0.961172640323639,-0.236201494932175,-0.0482730269432068,-0.966634392738342,-0.251570761203766,0.0213831327855587,-0.964995265007019,-0.261394143104553,-0.145996496081352,-0.942031383514404,-0.3020960688591,0.0312825739383698,-0.955085813999176,-0.294673681259155,-0.0512191615998745,-0.952783465385437,-0.299299955368042,0.0301459934562445,-0.961785793304443,-0.27213853597641,0.187539219856262,-0.941958487033844,-0.278465956449509,-0.0491955950856209,-0.962612867355347,-0.266376584768295,0.0322141647338867,-0.949113726615906,-0.313281655311584,-0.146640598773956,-0.937178611755371,-0.316532582044601,-0.0351661741733551,-0.948208332061768,-0.315696597099304,0.142853930592537,-0.953581571578979,-0.265094101428986,0.187811464071274,-0.944488286972046,-0.269571423530579,0.205050379037857,-0.940443694591522,-0.271145880222321,
- 0.0290789101272821,-0.9675133228302,-0.251142144203186,0.205076605081558,-0.940305292606354,-0.271605432033539,0.187800094485283,-0.94438111782074,-0.269954830408096,0.267776101827621,-0.875810980796814,-0.401560842990875,0.160232305526733,-0.874308168888092,-0.458160281181335,0.211401611566544,-0.876632869243622,-0.43223163485527,-0.028767291456461,-0.93366265296936,-0.35699674487114,0.171486094594002,-0.934036552906036,-0.313318163156509,0.033784557133913,-0.938015043735504,-0.344944149255753,0.206856220960617,-0.929666459560394,-0.304845809936523,0.0325130596756935,-0.947102904319763,-0.319278955459595,0.170479476451874,-0.935760498046875,-0.308689326047897,0.210538387298584,-0.893128216266632,-0.397486448287964,0.190957829356194,-0.893940389156342,-0.405470013618469,0.258855938911438,-0.889370918273926,-0.376846253871918,0.179571077227592,-0.919014275074005,-0.350951611995697,-0.0213290601968765,-0.914647877216339,-0.403688579797745,0.221318081021309,-0.914834976196289,-0.337780147790909,0.219039440155029,-0.918530344963074,-0.329125732183456,0.23942269384861,-0.915270686149597,-0.323969662189484,0.177065879106522,-0.923899352550507,-0.339201480150223,0.117154911160469,-0.420249044895172,0.899814248085022,0.115745313465595,-0.420753002166748,0.899761080741882,-0.0860562175512314,-0.482369095087051,0.87173068523407,0.124181292951107,-0.886645078659058,0.445465624332428,0.106161579489708,-0.886962175369263,0.449475049972534,0.176365464925766,-0.88400274515152,0.432936817407608,0.10727421194315,-0.204561948776245,0.972957789897919,-0.0164539143443108,-0.235113307833672,0.971828699111938,-0.160965010523796,-0.26602378487587,0.950432419776917,0.125174954533577,-0.88483065366745,0.448782712221146,0.0729100108146667,-0.882605969905853,0.464425534009933,0.106457471847534,-0.884335696697235,0.454551666975021,0.032703310251236,-0.857580006122589,0.513310134410858,0.108449131250381,-0.864946901798248,0.490005791187286,0.0849283263087273,-0.863240122795105,0.497598081827164,0.090352900326252,-0.853962659835815,0.512429654598236,
- 0.0385793596506119,-0.847265303134918,0.529767036437988,0.0366113036870956,-0.846960484981537,0.530393779277802,0.0903044641017914,-0.543437778949738,0.834578096866608,0.117858707904816,-0.532127320766449,0.838421046733856,0.0296151731163263,-0.56651645898819,0.82351815700531,0.0461301244795322,-0.819411516189575,0.571346461772919,0.0574374198913574,-0.818888008594513,0.571072161197662,0.112363934516907,-0.814840316772461,0.56869113445282,0.0494723357260227,-0.750814497470856,0.658657789230347,0.0161236226558685,-0.7552290558815,0.655262589454651,0.162603810429573,-0.729329824447632,0.664558470249176,0.108123816549778,-0.874228835105896,0.473321497440338,0.2182337641716,-0.85406106710434,0.472179740667343,0.0656226873397827,-0.87905079126358,0.472190052270889,0.0405171662569046,-0.82087516784668,0.569668650627136,-0.10000941157341,-0.84806752204895,0.520364761352539,0.0749918967485428,-0.811291754245758,0.579812109470367,-0.0583468675613403,-0.896083950996399,0.440033286809921,0.0612297728657722,-0.869589328765869,0.489964693784714,-0.00616359617561102,-0.886427879333496,0.46282571554184,0.045955203473568,-0.834305703639984,0.549383401870728,0.0592377707362175,-0.833673655986786,0.549071192741394,-0.0211044326424599,-0.835242629051209,0.549476504325867,-0.00764055922627449,-0.881785869598389,0.471588104963303,0.0847956463694572,-0.861652970314026,0.500363707542419,-0.0642729178071022,-0.889867961406708,0.451668262481689,0.0443577989935875,-0.824724078178406,0.563793122768402,-0.0153765417635441,-0.826051592826843,0.563384652137756,0.0580569207668304,-0.824003279209137,0.563602685928345,-0.0251727923750877,-0.819659948348999,0.572297155857086,0.0581300817430019,-0.824605524539948,0.56271368265152,-0.015459124930203,-0.82053530216217,0.571386754512787,0.026367474347353,-0.832648694515228,0.553173542022705,-0.015215402469039,-0.836332023143768,0.54801207780838,0.0422788895666599,-0.830848157405853,0.554891049861908,0.0245474688708782,-0.839110672473907,0.54340660572052,0.038706224411726,-0.841103613376617,0.539487361907959,
- 0.0419992581009865,-0.8415407538414,0.538558483123779,-0.0154556799679995,-0.8207688331604,0.571051299571991,0.0259498842060566,-0.823908805847168,0.566128015518188,-0.0251298658549786,-0.81982809305191,0.572058141231537,-0.0152187086641788,-0.836127281188965,0.548324286937714,0.0264464356005192,-0.832365334033966,0.553596019744873,0.0262170135974884,-0.832390129566193,0.553569674491882,0.0420150458812714,-0.841514110565186,0.538598954677582,-0.021945895627141,-0.831070423126221,0.555734276771545,0.0245682150125504,-0.839037716388702,0.543518304824829,0.0263086184859276,-0.835298597812653,0.549166798591614,0.0256071053445339,-0.835364282131195,0.549100160598755,-0.024376854300499,-0.838960409164429,0.543646156787872,-0.0205955673009157,-0.826617479324341,0.562387347221375,0.0441671162843704,-0.837854444980621,0.544104099273682,-0.0449248924851418,-0.821396470069885,0.568585574626923,-0.0452424958348274,-0.821963787078857,0.567739903926849,-0.143540039658546,-0.797315299510956,0.586246371269226,-0.0206372532993555,-0.826755702495575,0.562182664871216,-0.15629780292511,-0.84406566619873,0.512956261634827,0.0263596661388874,-0.83691942691803,0.546690940856934,-0.025292132049799,-0.841888904571533,0.539058029651642,-0.144453078508377,-0.800728142261505,0.581349909305573,-0.0466570071876049,-0.824480414390564,0.563964009284973,-0.187420919537544,-0.787496984004974,0.587130188941956,-0.195838361978531,-0.809237539768219,0.553879082202911,-0.307330161333084,-0.779857099056244,0.545317351818085,-0.14916755259037,-0.818194210529327,0.555254340171814,-0.212110310792923,-0.819398522377014,0.532536685466766,0.026211554184556,-0.832216858863831,0.55383038520813,-0.151640638709068,-0.827245712280273,0.540989577770233,-0.307171016931534,-0.773524343967438,0.55435186624527,-0.211771011352539,-0.800070941448212,0.561283826828003,-0.147824734449387,-0.813246786594391,0.562829911708832,-0.307552725076675,-0.811405956745148,0.497022986412048,-0.132415726780891,-0.833951711654663,0.535715222358704,-0.212176501750946,-0.82714706659317,0.520393133163452,
- -0.134745061397552,-0.820994079113007,0.554808676242828,0.0261575784534216,-0.830503106117249,0.556399524211884,-0.211950451135635,-0.808630228042603,0.548811614513397,-0.130387976765633,-0.844571352005005,0.519324839115143,-0.307440251111984,-0.819307684898376,0.483958035707474,-0.200540512800217,-0.837999701499939,0.507484138011932,-0.0243907459080219,-0.822710812091827,0.567936539649963,0.0260016471147537,-0.82555228471756,0.563726305961609,0.0363745018839836,-0.825874626636505,0.562679290771484,-0.13684855401516,-0.808533191680908,0.572316825389862,0.0364202633500099,-0.826127111911774,0.562305688858032,0.0260087866336107,-0.825778961181641,0.563393831253052,0.112687014043331,-0.891498208045959,0.438785403966904,0.00637875404208899,-0.922186672687531,0.386692434549332,0.0534119755029678,-0.910318076610565,0.41044881939888,-0.191511660814285,-0.861260235309601,0.470695495605469,0.00882423669099808,-0.850105881690979,0.526537895202637,-0.126854762434959,-0.861741423606873,0.491232752799988,0.0399664863944054,-0.845293164253235,0.532805919647217,-0.129730865359306,-0.847889065742493,0.51405668258667,0.00761859770864248,-0.847697675228119,0.530424833297729,0.0497563779354095,-0.893913865089417,0.445468842983246,0.0347419083118439,-0.897344648838043,0.439961016178131,0.101642891764641,-0.880185425281525,0.463618844747543,0.0193250179290771,-0.870291411876678,0.492158025503159,-0.180690780282021,-0.885841846466064,0.427358329296112,0.0579147264361382,-0.862826406955719,0.502171635627747,0.0550166070461273,-0.858232617378235,0.510303676128387,0.078232616186142,-0.854025959968567,0.514314532279968,0.0160651877522469,-0.864176750183105,0.502931952476501,0.119843780994415,-0.95904016494751,-0.25667005777359,0.113354206085205,-0.95920330286026,-0.258998066186905,-0.0837731882929802,-0.942676544189453,-0.323021620512009,0.122795775532722,-0.592984676361084,-0.795795440673828,0.10576044023037,-0.596759796142578,-0.795419692993164,0.179921075701714,-0.578934013843536,-0.795275986194611,0.104402326047421,-0.993978142738342,-0.0332825519144535,
- -0.013001499697566,-0.997990250587463,-0.0620199777185917,-0.159322068095207,-0.982486546039581,-0.0966261178255081,0.123852156102657,-0.59602302312851,-0.793358206748962,0.0664507001638412,-0.612364590167999,-0.787777900695801,0.106038719415665,-0.601337492465973,-0.791927337646484,0.0314574018120766,-0.654747009277344,-0.755193293094635,0.107894062995911,-0.632927775382996,-0.76665598154068,0.0784808397293091,-0.641831576824188,-0.762819170951843,0.0839558020234108,-0.65499609708786,-0.750953733921051,0.0410028696060181,-0.668131470680237,-0.742912650108337,0.0353759825229645,-0.669747352600098,-0.741745948791504,0.0948512852191925,-0.916640162467957,-0.388296574354172,0.115786746144295,-0.917995095252991,-0.379313319921494,0.0218905806541443,-0.908242344856262,-0.417871654033661,0.0448312014341354,-0.705004572868347,-0.707784414291382,0.0501863844692707,-0.70484983921051,-0.707579076290131,0.11148826032877,-0.70162558555603,-0.70376980304718,0.0419764146208763,-0.778540074825287,-0.626189529895782,0.0106042539700866,-0.77595317363739,-0.6307013630867,0.168069958686829,-0.780957698822021,-0.601546049118042,0.10548173636198,-0.617934346199036,-0.77912175655365,0.22399115562439,-0.612833321094513,-0.757801651954651,0.0607916787266731,-0.617538511753082,-0.784187853336334,0.0356037467718124,-0.702270090579987,-0.711019814014435,-0.0955070853233337,-0.661349952220917,-0.74397224187851,0.072775699198246,-0.711354613304138,-0.699055433273315,-0.0538525283336639,-0.590808928012848,-0.805012285709381,0.0567069500684738,-0.63202315568924,-0.772871971130371,-0.00808806717395782,-0.608980238437653,-0.793144226074219,0.0406819954514503,-0.686053991317749,-0.726412355899811,0.052080724388361,-0.685744822025299,-0.725976407527924,-0.0236501134932041,-0.6861252784729,-0.727098941802979,-0.00964178144931793,-0.616951704025269,-0.786942005157471,0.0838387310504913,-0.642172932624817,-0.761961340904236,-0.0596389770507813,-0.600918650627136,-0.797082245349884,0.0430529117584229,-0.698476076126099,-0.714337229728699,-0.0166311971843243,-0.698251187801361,-0.715659737586975,
- 0.0508432798087597,-0.698321521282196,-0.713976263999939,-0.0278957188129425,-0.706116616725922,-0.707545876502991,0.0508464947342873,-0.698289334774017,-0.714007556438446,-0.0166872907429934,-0.705273389816284,-0.708739042282104,0.0244853869080544,-0.689169943332672,-0.724185943603516,-0.0165203362703323,-0.684742450714111,-0.728597939014435,0.0409282445907593,-0.690613269805908,-0.722065269947052,0.0228136498481035,-0.681263506412506,-0.73168271780014,0.0374630242586136,-0.677644371986389,-0.734434962272644,0.0444811545312405,-0.675853192806244,-0.735692799091339,-0.0166851561516523,-0.705003678798676,-0.709007441997528,0.022357527166605,-0.701013386249542,-0.712797582149506,-0.0278587006032467,-0.705944299697876,-0.707719326019287,-0.0165225770324469,-0.685011029243469,-0.728345274925232,0.0245623216032982,-0.689532160758972,-0.72383850812912,0.0225323513150215,-0.689336597919464,-0.724090695381165,0.0444935783743858,-0.675880670547485,-0.735666871070862,-0.0260410830378532,-0.692448019981384,-0.72099769115448,0.0228355024009943,-0.68136727809906,-0.731585443019867,0.0225866287946701,-0.685590267181396,-0.7276371717453,0.0237461104989052,-0.68568217754364,-0.727513670921326,-0.0287866182625294,-0.680578947067261,-0.732109069824219,-0.024668674916029,-0.69829922914505,-0.715380847454071,0.0466631092131138,-0.680660545825958,-0.731111407279968,-0.0427516102790833,-0.702148854732513,-0.710745573043823,-0.0430447198450565,-0.701464653015137,-0.711403250694275,-0.143306732177734,-0.71578049659729,-0.683462917804718,-0.0247334465384483,-0.698024213314056,-0.715646862983704,-0.155612796545029,-0.651914894580841,-0.742153465747833,0.0226192120462656,-0.683312177658081,-0.729775965213776,-0.0297374948859215,-0.676417112350464,-0.73591822385788,-0.14419250190258,-0.711543798446655,-0.687687397003174,-0.0444415062665939,-0.698193073272705,-0.714528799057007,-0.187073975801468,-0.714942276477814,-0.673691987991333,-0.195551574230194,-0.686016380786896,-0.700814604759216,-0.305998772382736,-0.672678649425507,-0.673697412014008,
- -0.148746892809868,-0.688922464847565,-0.709408342838287,-0.212025791406631,-0.666762292385101,-0.714474081993103,0.0225243270397186,-0.689885318279266,-0.723568141460419,-0.151128038764,-0.676504790782928,-0.720764577388763,-0.3059241771698,-0.680455207824707,-0.665876269340515,-0.211769133806229,-0.691696643829346,-0.690441727638245,-0.147448033094406,-0.695521056652069,-0.703213751316071,-0.305785804986954,-0.630896925926209,-0.713066697120667,-0.136150345206261,-0.671715974807739,-0.728190064430237,-0.212057739496231,-0.656131207942963,-0.724239945411682,-0.138467833399773,-0.688640058040619,-0.711759448051453,0.0224891789257526,-0.692274510860443,-0.721283733844757,-0.211912781000137,-0.680882096290588,-0.701065421104431,-0.134183466434479,-0.657488286495209,-0.741420209407806,-0.305559128522873,-0.619415640830994,-0.723158359527588,-0.202381953597069,-0.644906759262085,-0.73697817325592,-0.0270830988883972,-0.702325820922852,-0.711340248584747,0.022390577942133,-0.698849856853485,-0.714917957782745,0.0349235236644745,-0.69769412279129,-0.715544044971466,-0.140539303421974,-0.703928709030151,-0.696227788925171,0.0349703840911388,-0.697358906269073,-0.715868473052979,0.0223950184881687,-0.698557734489441,-0.71520322561264,0.111913859844208,-0.586661398410797,-0.802062153816223,0.00485356105491519,-0.540286779403687,-0.841466963291168,0.0518948659300804,-0.561671018600464,-0.825731575489044,-0.193307146430016,-0.612515568733215,-0.766457378864288,0.00941840559244156,-0.666293203830719,-0.745630383491516,-0.130665346980095,-0.632320940494537,-0.763607740402222,0.0385075099766254,-0.67144638299942,-0.740052044391632,-0.133542329072952,-0.65287584066391,-0.745600163936615,0.0082089751958847,-0.66963267326355,-0.742647171020508,0.0482540540397167,-0.593474686145782,-0.803404867649078,0.0358749553561211,-0.589493155479431,-0.806976318359375,0.100785374641418,-0.609196186065674,-0.786589026451111,0.0201652646064758,-0.635964214801788,-0.771455109119415,-0.182456880807877,-0.573976993560791,-0.798285663127899,0.0609448701143265,-0.644962072372437,-0.761780560016632,
- 0.0581133514642715,-0.65199887752533,-0.755989670753479,0.0772137865424156,-0.654634535312653,-0.751991927623749,0.0168470423668623,-0.645454585552216,-0.763612806797028,-0.0564094409346581,-0.708367884159088,-0.703585743904114,-0.227663651108742,-0.688491106033325,-0.688584983348846,-0.135856956243515,-0.701821684837341,-0.699277639389038,0.00507251126691699,-0.708943605422974,-0.705246984958649,-0.0547504909336567,-0.697928071022034,-0.714071989059448,-0.131261706352234,-0.679915964603424,-0.721446216106415,-0.228801786899567,-0.648468792438507,-0.726042687892914,-0.0545766949653625,-0.696829915046692,-0.715156972408295,-0.158421829342842,-0.670841991901398,-0.724481642246246,-0.197618156671524,-0.733150720596313,-0.650720477104187,-0.225396409630775,-0.733752846717834,-0.640939354896545,-0.153695404529572,-0.730924069881439,-0.664926886558533,-0.0545639023184776,-0.696749031543732,-0.715236723423004,0.00537445349618793,-0.708118915557861,-0.706072866916656,0.0271072685718536,-0.711576640605927,-0.702085435390472,0.0590170174837112,-0.717331230640411,-0.69422835111618,0.0270352624356747,-0.711938142776489,-0.701721608638763,0.00546932918950915,-0.707859575748444,-0.706332147121429,-0.154765501618385,-0.718904912471771,-0.677660226821899,-0.0765499249100685,-0.71613872051239,-0.693747401237488,-0.202642172574997,-0.718319654464722,-0.665547251701355,-0.0159286987036467,-0.710661470890045,-0.703353881835938,-0.198272526264191,-0.731253325939178,-0.652653455734253,-0.075881615281105,-0.720276534557343,-0.689524292945862,-0.156106978654861,-0.702677130699158,-0.694172561168671,-0.0564915426075459,-0.708882510662079,-0.703060686588287,0.005551403388381,-0.709157586097717,-0.705028235912323,-0.0781410411000252,-0.70611572265625,-0.703771650791168,-0.156635850667953,-0.695873379707336,-0.700874805450439,0.00552774872630835,-0.71213173866272,-0.702024102210999,-0.0566363632678986,-0.709789752960205,-0.702133059501648,0.0278804413974285,-0.707680284976959,-0.705982565879822,0.00555477850139141,-0.708731174468994,-0.705456852912903,
- -0.0147040914744139,-0.713450133800507,-0.700551748275757,-0.0747412815690041,-0.727240443229675,-0.68230140209198,0.0217792764306068,-0.703640341758728,-0.710222542285919,0.0240267142653465,-0.712375521659851,-0.701387166976929,-0.0784139856696129,-0.704371690750122,-0.705486953258514,0.00553289288654923,-0.711487114429474,-0.702677428722382,0.0827737897634506,-0.680886268615723,-0.727696716785431,-0.0134097337722778,-0.716383874416351,-0.697577595710754,0.021943524479866,-0.70428204536438,-0.709581136703491,0.00555455451831222,-0.708759427070618,-0.705428421497345,0.0278878137469292,-0.70764297246933,-0.706019580364227,0.0279395766556263,-0.707639992237091,-0.706020593643188,0.0274745188653469,-0.709729194641113,-0.703938722610474,0.0598313957452774,-0.715664029121399,-0.695877313613892,0.0276529900729656,-0.709764182567596,-0.703896462917328,0.0280327051877975,-0.709716260433197,-0.703929722309113,0.0233141928911209,-0.709616839885712,-0.704201996326447,0.00555185554549098,-0.709100425243378,-0.705085635185242,0.089733712375164,-0.697823286056519,-0.710626840591431,0.0237647257745266,-0.711362361907959,-0.702423572540283,0.0280937235802412,-0.710574924945831,-0.703060507774353,0.00617645680904388,-0.705657958984375,-0.708525717258453,0.0275203734636307,-0.710744261741638,-0.702911972999573,0.0589022785425186,-0.717565715312958,-0.693995714187622,0.056191086769104,-0.723076343536377,-0.688478946685791,0.0612006783485413,-0.724610209465027,-0.686436116695404,0.00591549277305603,-0.706449568271637,-0.707738757133484,-0.00559835229068995,-0.710990726947784,-0.703179061412811,0.00554270297288895,-0.710254430770874,-0.703923285007477,0.02782167121768,-0.708514928817749,-0.705147206783295,0.0279814824461937,-0.707328677177429,-0.7063307762146,0.00505039794370532,-0.709066867828369,-0.705123245716095,-0.00558854732662439,-0.709745526313782,-0.704436004161835,-0.00568612245842814,-0.72213751077652,-0.691726207733154,0.0292071048170328,-0.72615921497345,-0.686905980110168,0.00543530797585845,-0.723518013954163,-0.690284132957459,
- 0.0639573335647583,-0.719320476055145,-0.691727936267853,0.10908816754818,-0.727725207805634,-0.677137970924377,0.00601828098297119,-0.706137895584106,-0.708048820495605,0.00545375049114227,-0.707847893238068,-0.706343948841095,0.111909478902817,-0.698694109916687,-0.706613659858704,-0.00557743525132537,-0.708334267139435,-0.705855131149292,0.161388754844666,-0.733188152313232,-0.660597324371338,0.109235413372517,-0.726286470890045,-0.678657233715057,0.0643329322338104,-0.718595623970032,-0.692446172237396,0.162738084793091,-0.660604178905487,-0.73288369178772,0.114512957632542,-0.668770790100098,-0.734596788883209,0.161955088376999,-0.660749912261963,-0.732925713062286,0.0399070121347904,-0.708118975162506,-0.704964578151703,0.0887317135930061,-0.695403516292572,-0.713120400905609,0.0281174387782812,-0.710908532142639,-0.702722251415253,0.0465882569551468,-0.738337457180023,-0.672820508480072,0.0299597587436438,-0.736602127552032,-0.675662517547607,-0.0057650487869978,-0.732161164283752,-0.681106984615326,0.0924084484577179,-0.704251825809479,-0.70391058921814,0.041412279009819,-0.715018510818481,-0.697877883911133,0.0802109465003014,-0.707008600234985,-0.702641546726227,0.110143393278122,-0.717236459255219,-0.688069999217987,0.113351449370384,-0.717043519020081,-0.687750041484833,-0.0056629441678524,-0.719193935394287,-0.694786369800568,0.116158366203308,-0.73942619562149,-0.663141250610352,0.0464634709060192,-0.737782776355743,-0.673437297344208,-0.00578080490231514,-0.734162211418152,-0.678949534893036,0.112437300384045,-0.69289219379425,-0.712220728397369,0.166701093316078,-0.684993088245392,-0.709221601486206,0.110328547656536,-0.693156123161316,-0.71229362487793,0.112497963011265,-0.710277497768402,-0.694874286651611,0.0827665030956268,-0.715669691562653,-0.693517625331879,0.0429149940609932,-0.721853673458099,-0.690713822841644,0.0801391527056694,-0.706764221191406,-0.70289546251297,0.111302427947521,-0.700829029083252,-0.70459246635437,0.167238429188728,-0.688331663608551,-0.705854654312134,-0.0563431158661842,-0.876756608486176,-0.477622538805008,
- -0.226420253515244,-0.853740513324738,-0.468893378973007,-0.137541502714157,-0.869042575359344,-0.475234091281891,0.00891400035470724,-0.878179669380188,-0.478247761726379,-0.0546856485307217,-0.869671285152435,-0.490592837333679,-0.132852390408516,-0.854050517082214,-0.502939403057098,-0.228048920631409,-0.825749516487122,-0.515879273414612,-0.0545087940990925,-0.86890709400177,-0.491964876651764,-0.15984334051609,-0.84616881608963,-0.508378386497498,-0.197749376296997,-0.885770499706268,-0.4198879301548,-0.223590657114983,-0.883787453174591,-0.411007225513458,-0.154936596751213,-0.887585461139679,-0.433804869651794,-0.0544986799359322,-0.86886328458786,-0.492043197154999,0.00920501258224249,-0.877629518508911,-0.479251086711884,0.0224121380597353,-0.878975510597229,-0.476340174674988,0.0530070140957832,-0.88224071264267,-0.46780526638031,0.0223665349185467,-0.879130125045776,-0.476056694984436,0.00925895478576422,-0.877527415752411,-0.479436993598938,-0.156044349074364,-0.879550457000732,-0.449489861726761,-0.0768565535545349,-0.881472110748291,-0.465940058231354,-0.202774465084076,-0.875666320323944,-0.438281953334808,-0.0109126195311546,-0.878299713134766,-0.477985948324203,-0.198401138186455,-0.884493470191956,-0.422265708446503,-0.076192244887352,-0.884287238121033,-0.460685193538666,-0.157437518239021,-0.868478775024414,-0.470061630010605,-0.0564237348735332,-0.87709766626358,-0.476986467838287,0.00376982893794775,-0.877933204174042,-0.47876825928688,-0.078435093164444,-0.874606072902679,-0.478447586297989,-0.157988756895065,-0.863758444786072,-0.478498548269272,0.00374163617379963,-0.879876434803009,-0.475187808275223,-0.0565692335367203,-0.877712249755859,-0.475837349891663,0.0229954943060875,-0.87698769569397,-0.479962289333344,0.00377357820980251,-0.877673387527466,-0.479244440793991,-0.00980847328901291,-0.879985451698303,-0.474899381399155,-0.0750615745782852,-0.888979852199554,-0.451752811670303,0.0210745930671692,-0.874236881732941,-0.485042005777359,0.0231925249099731,-0.879965424537659,-0.4744713306427,
- -0.0787046849727631,-0.873408377170563,-0.480586647987366,0.00374821410514414,-0.879424750804901,-0.476023197174072,0.0815366804599762,-0.857535362243652,-0.507922232151031,-0.00863541662693024,-0.881763100624084,-0.471613466739655,0.0212488323450089,-0.874712765216827,-0.484175652265549,0.00377324572764337,-0.877696454524994,-0.479202210903168,0.0229999497532845,-0.876972496509552,-0.479989916086197,0.0248413886874914,-0.876886129379272,-0.480056077241898,0.0228204224258661,-0.87758606672287,-0.4788758456707,0.0538600608706474,-0.881049692630768,-0.469947576522827,0.0246578436344862,-0.877816736698151,-0.478361517190933,0.0302088223397732,-0.878142416477203,-0.477444678544998,0.0225035473704338,-0.878115296363831,-0.477919667959213,0.00377130229026079,-0.877831161022186,-0.478955388069153,0.0884739831089973,-0.868844926357269,-0.487114906311035,0.0229856967926025,-0.879411339759827,-0.475507497787476,0.0302357375621796,-0.878438591957092,-0.476897686719894,0.00924969371408224,-0.87604683637619,-0.482137352228165,0.02453837916255,-0.878420472145081,-0.477258116006851,0.0530164018273354,-0.882227540016174,-0.467828869819641,0.0505509823560715,-0.885633707046509,-0.461624771356583,0.0574325621128082,-0.886908173561096,-0.458361685276031,0.00888281222432852,-0.876803874969482,-0.480766117572784,-0.006922940723598,-0.879213511943817,-0.476377665996552,0.00375801441259682,-0.878749847412109,-0.47726783156395,0.0247112382203341,-0.877546370029449,-0.478854566812515,0.0248726289719343,-0.876727283000946,-0.480344474315643,0.0084556182846427,-0.877682447433472,-0.479168027639389,-0.00691622495651245,-0.878360569477081,-0.477948635816574,-0.00698060402646661,-0.886536717414856,-0.462605535984039,0.0312344953417778,-0.889278888702393,-0.456297606229782,0.00362932286225259,-0.887432217597961,-0.460923999547958,0.0600084438920021,-0.883521318435669,-0.464531064033508,0.106132544577122,-0.887761890888214,-0.447900414466858,0.00908730179071426,-0.876382291316986,-0.481530547142029,0.0088416775688529,-0.876888632774353,-0.480612337589264,
- 0.10884901881218,-0.868691921234131,-0.483245730400085,-0.00690845865756273,-0.877374291419983,-0.479756861925125,0.155376493930817,-0.888540208339691,-0.431687891483307,0.106274418532848,-0.886829555034637,-0.449710041284561,0.0603562742471695,-0.883059918880463,-0.465362787246704,0.160870030522347,-0.839442789554596,-0.519092202186584,0.111429646611214,-0.847863495349884,-0.518373370170593,0.155821084976196,-0.840403079986572,-0.519078552722931,0.0443530678749084,-0.876098036766052,-0.4800885617733,0.0874848738312721,-0.867259442806244,-0.49010968208313,0.0302501581609249,-0.878597259521484,-0.476604521274567,0.0513358041644096,-0.897129714488983,-0.438774347305298,0.0318844020366669,-0.896169245243073,-0.442565381526947,-0.00703300721943378,-0.893191933631897,-0.449620723724365,0.0911768972873688,-0.873131096363068,-0.478882998228073,0.0458951853215694,-0.880882799625397,-0.471104323863983,0.0790266990661621,-0.875400722026825,-0.476894617080688,0.10711245238781,-0.881185173988342,-0.460477650165558,0.114840544760227,-0.880528807640076,-0.459870189428329,-0.00696586584672332,-0.884664952754974,-0.466175258159637,0.11764969676733,-0.895192980766296,-0.429869949817657,0.0511593334376812,-0.8966184258461,-0.439838647842407,-0.00704370299354196,-0.894550263881683,-0.446911871433258,0.109371736645699,-0.864704251289368,-0.490228891372681,0.164731442928314,-0.8562371134758,-0.489613711833954,0.111811921000481,-0.864389181137085,-0.490234136581421,0.113964319229126,-0.875892639160156,-0.46885421872139,0.0816057473421097,-0.88111937046051,-0.465799599885941,0.0474379472434521,-0.885590732097626,-0.462037593126297,0.0789376869797707,-0.875201284885406,-0.477275192737579,0.112769283354282,-0.869525372982025,-0.480841785669327,0.165278986096382,-0.858604848384857,-0.485263407230377,-0.0587293803691864,-0.991380095481873,-0.117116808891296,-0.225943595170975,-0.967022180557251,-0.117548212409019,-0.134615570306778,-0.983879506587982,-0.117728278040886,0.00640687253326178,-0.993025898933411,-0.11772259324789,-0.0570345818996429,-0.989568889141083,-0.132289454340935,
- -0.129873976111412,-0.980364561080933,-0.148385584354401,-0.227511465549469,-0.958559989929199,-0.171467795968056,-0.0568564422428608,-0.989365875720978,-0.133875533938408,-0.160686165094376,-0.974405467510223,-0.157206550240517,-0.194189101457596,-0.979054689407349,-0.0611774250864983,-0.223191678524017,-0.973345756530762,-0.0527607351541519,-0.155526682734489,-0.985187649726868,-0.0722267553210258,-0.0568468607962132,-0.989354908466339,-0.133960798382759,0.0067114382982254,-0.992886006832123,-0.118880160152912,0.0242570228874683,-0.993112504482269,-0.114626243710518,0.0535704307258129,-0.992946028709412,-0.105775237083435,0.0242008529603481,-0.993159472942352,-0.114230446517468,0.00679262913763523,-0.99284839630127,-0.119188711047173,-0.15668623149395,-0.983555436134338,-0.0898226872086525,-0.0754317566752434,-0.991633176803589,-0.104755759239197,-0.199159011244774,-0.976556599140167,-0.081687331199646,-0.0119883213192225,-0.993109345436096,-0.116576708853245,-0.194854289293289,-0.978748261928558,-0.063903383910656,-0.0747852921485901,-0.992274940013886,-0.0989831909537315,-0.158149242401123,-0.980913102626801,-0.113130547106266,-0.058818094432354,-0.991468846797943,-0.116318367421627,0.00874656718224287,-0.992996871471405,-0.117817103862762,-0.076971136033535,-0.989956617355347,-0.118580728769302,-0.158730357885361,-0.979658126831055,-0.122779130935669,0.00871549639850855,-0.993516862392426,-0.113351255655289,-0.0589701011776924,-0.991619527339935,-0.114949449896812,0.0249166283756495,-0.992548644542694,-0.119274824857712,0.0087513467296958,-0.992914855480194,-0.118506141006947,-0.0108602000400424,-0.993533551692963,-0.11301801353693,-0.0736745372414589,-0.993293285369873,-0.0891096815466881,0.025325583294034,-0.99163681268692,-0.126551061868668,0.0278625637292862,-0.993252336978912,-0.112576968967915,-0.0772372707724571,-0.989645302295685,-0.120982274413109,0.0087214345112443,-0.993419110774994,-0.114203065633774,0.0789951905608177,-0.985333621501923,-0.151252701878548,-0.00965737644582987,-0.993970453739166,-0.109222464263439,
- 0.0254278834909201,-0.99170583486557,-0.125988602638245,0.00875116139650345,-0.992918014526367,-0.118479482829571,0.0249222926795483,-0.992543637752533,-0.119314752519131,0.0271274596452713,-0.992472410202026,-0.119426257908344,0.0246482118964195,-0.992780804634094,-0.117382995784283,0.0544126927852631,-0.992639362812042,-0.108196295797825,0.0268731191754341,-0.992803514003754,-0.116700485348701,0.0335903950035572,-0.992655754089355,-0.116216450929642,0.0271336920559406,-0.992808640003204,-0.116597279906273,0.00874543935060501,-0.993016123771667,-0.117654718458653,0.0857322886586189,-0.988027215003967,-0.128266766667366,0.0273924265056849,-0.992967963218689,-0.115170642733574,0.033571757376194,-0.992614269256592,-0.116576358675957,0.0121741434559226,-0.99263721704483,-0.120512701570988,0.0267469696700573,-0.99296498298645,-0.115349017083645,0.0535676851868629,-0.992947101593018,-0.105767339468002,0.0511034652590752,-0.993805587291718,-0.0986858308315277,0.0598873123526573,-0.993749260902405,-0.0942123234272003,0.0117215923964977,-0.992873728275299,-0.118593968451023,-0.00691566942259669,-0.993336081504822,-0.115046091377735,0.00873745791614056,-0.993151605129242,-0.116505548357964,0.0270105414092541,-0.992625594139099,-0.118173085153103,0.0271670948714018,-0.992420196533203,-0.119851119816303,0.011697550304234,-0.992886066436768,-0.118492007255554,-0.00690006790682673,-0.993129134178162,-0.116820603609085,-0.00705121411010623,-0.995011866092682,-0.0995077639818192,0.0348343327641487,-0.995152652263641,-0.0919671580195427,0.00859831925481558,-0.995275378227234,-0.0967112109065056,0.0625610426068306,-0.992866098880768,-0.101503759622574,0.108889132738113,-0.990464627742767,-0.084398940205574,0.0120111461728811,-0.992722868919373,-0.119821645319462,0.0120575930923224,-0.992698431015015,-0.120018571615219,0.111666135489941,-0.985794246196747,-0.125460833311081,-0.00688220234587789,-0.992888569831848,-0.118848912417889,0.159224838018417,-0.984848201274872,-0.0687138363718987,0.109034344553947,-0.990268766880035,-0.0864833742380142,
- 0.0629244819283485,-0.992741286754608,-0.102495208382607,0.163827687501907,-0.971783399581909,-0.169698789715767,0.114227175712585,-0.979503273963928,-0.165908187627792,0.1596699655056,-0.972527861595154,-0.169396370649338,0.0376820042729378,-0.992335259914398,-0.117689304053783,0.0847979113459587,-0.98768675327301,-0.131469309329987,0.0335769280791283,-0.992625772953033,-0.11647642403841,0.0444168522953987,-0.996208310127258,-0.0748079791665077,0.0356124527752399,-0.996428787708282,-0.0765603929758072,-0.00717618642374873,-0.996356785297394,-0.0849810689687729,0.0884210541844368,-0.988946437835693,-0.119024373590946,0.039210245013237,-0.993375360965729,-0.108018256723881,0.0801492109894753,-0.989869773387909,-0.117192156612873,0.109925784170628,-0.988954603672028,-0.099423959851265,0.110624112188816,-0.9888796210289,-0.0993951112031937,-0.00701627088710666,-0.994601130485535,-0.103534743189812,0.113267906010151,-0.991337954998016,-0.0664792135357857,0.044311136007309,-0.996161878108978,-0.07548638433218,-0.00720197986811399,-0.996609807014465,-0.0819583833217621,0.112184539437294,-0.984688282012939,-0.133430436253548,0.167939051985741,-0.976370275020599,-0.136006250977516,0.107772082090378,-0.985210955142975,-0.133209228515625,0.109854340553284,-0.987987637519836,-0.108685202896595,0.0827951803803444,-0.99105316400528,-0.10468353331089,0.0407364889979362,-0.994320213794708,-0.0983252823352814,0.0800749585032463,-0.989834249019623,-0.117542028427124,0.108721099793911,-0.98654043674469,-0.122138686478138,0.16847987473011,-0.976902663707733,-0.131437852978706,-0.0561584271490574,-0.988226115703583,0.142322048544884,-0.225623577833176,-0.964735329151154,0.13557231426239,-0.134425148367882,-0.981022119522095,0.139733761548996,0.0121294353157282,-0.98958957195282,0.143407002091408,-0.0545038282871246,-0.990310490131378,0.127728626132011,-0.129764795303345,-0.98551082611084,0.109222956001759,-0.226970255374908,-0.97049355506897,0.081405408680439,-0.0543250218033791,-0.990521848201752,0.126156225800514,-0.161790236830711,-0.98186320066452,0.0988362655043602,
- -0.198119834065437,-0.960780143737793,0.194036155939102,-0.223135590553284,-0.954097092151642,0.199772968888283,-0.157095089554787,-0.970214486122131,0.184404402971268,-0.054316658526659,-0.99053156375885,0.126082733273506,0.0124166328459978,-0.98974597454071,0.142297744750977,0.0198244620114565,-0.989370822906494,0.144057184457779,0.0554890967905521,-0.986489415168762,0.154141753911972,0.0197942405939102,-0.98934006690979,0.144272133708,0.0124382115900517,-0.989757776260376,0.142214402556419,-0.158162534236908,-0.973219096660614,0.166820898652077,-0.0778447687625885,-0.984899044036865,0.154642194509506,-0.203146785497665,-0.9637051820755,0.1732157766819,-0.0133389439433813,-0.989547431468964,0.143589720129967,-0.198771819472313,-0.961181700229645,0.191362425684929,-0.0771418660879135,-0.983996748924255,0.160622105002403,-0.159501552581787,-0.976727545261383,0.143396303057671,-0.056237131357193,-0.988121032714844,0.14301823079586,0.00667559914290905,-0.989838778972626,0.142037644982338,-0.0795189961791039,-0.986914217472076,0.140275180339813,-0.160031363368034,-0.978023409843445,0.133642628788948,0.00663706660270691,-0.98921662569046,0.146309241652489,-0.0563820861279964,-0.987926244735718,0.144300773739815,0.020294239744544,-0.989842295646667,0.140713959932327,0.0066812327131629,-0.989928305149078,0.141411796212196,-0.0121851488947868,-0.989022254943848,0.147263586521149,-0.0759570449590683,-0.982402503490448,0.170634105801582,0.0235616415739059,-0.990718364715576,0.133872970938683,0.0258656237274408,-0.988803625106812,0.146963775157928,-0.0798024237155914,-0.987236440181732,0.137825503945351,0.00664507411420345,-0.989347279071808,0.145422905683517,0.0803297013044357,-0.991002023220062,0.107061460614204,-0.0109575120732188,-0.98844712972641,0.15116947889328,0.0236905217170715,-0.990616142749786,0.134605243802071,0.00668091187253594,-0.989923238754272,0.141447454690933,0.0202970746904612,-0.989845097064972,0.140693783760071,0.0270259100943804,-0.989738464355469,0.140311598777771,0.0202498883008957,-0.989798247814178,0.141029745340347,
- 0.0563204661011696,-0.986812591552734,0.151752695441246,0.0267776418477297,-0.989362597465515,0.142984554171562,0.0312667787075043,-0.989180326461792,0.143334344029427,0.0251718908548355,-0.989399433135986,0.143022105097771,0.00667555863037705,-0.989838123321533,0.142042174935341,0.087025098502636,-0.987646579742432,0.130310624837875,0.0255180671811104,-0.989104211330414,0.144989013671875,0.0312825217843056,-0.98913562297821,0.143639013171196,0.00875347852706909,-0.990381240844727,0.138088390231133,0.0266528464853764,-0.989171147346497,0.144326984882355,0.0554476864635944,-0.986473083496094,0.154260665178299,0.0529037527740002,-0.985444188117981,0.161558076739311,0.0579574257135391,-0.984750092029572,0.164037317037582,0.00841632019728422,-0.99017995595932,0.139545574784279,-0.00893186964094639,-0.989399015903473,0.144948408007622,0.00666241301223636,-0.989627778530121,0.14350126683712,0.026909101754427,-0.989562571048737,0.141569674015045,0.0270645879209042,-0.98979640007019,0.139894917607307,0.00792637653648853,-0.989883303642273,0.141662359237671,-0.00891993567347527,-0.98965722322464,0.143174603581429,-0.00903104618191719,-0.987101495265961,0.159841358661652,0.032488327473402,-0.985401809215546,0.167116075754166,0.00648880004882813,-0.986671805381775,0.162594258785248,0.0605478510260582,-0.985736608505249,0.157026618719101,0.106949739158154,-0.979101538658142,0.172979548573494,0.00859550107270479,-0.990287125110626,0.138771191239357,0.00830182712525129,-0.99011105298996,0.140040323138237,0.109880477190018,-0.985018968582153,0.132906213402748,-0.00890597607940435,-0.989954650402069,0.141104206442833,0.158119946718216,-0.969548106193542,0.187014937400818,0.107101820409298,-0.979438841342926,0.170964583754539,0.0608967244625092,-0.985865235328674,0.156081050634384,0.162473797798157,-0.982908964157104,0.0865575894713402,0.11265555024147,-0.989344894886017,0.0922249555587769,0.158748552203178,-0.983479380607605,0.0869907215237617,0.0384994335472584,-0.989160001277924,0.141705453395844,0.0860853493213654,-0.988154828548431,0.1270412504673,
- 0.0312955975532532,-0.989098370075226,0.143892228603363,0.0452334582805634,-0.981785356998444,0.184530571103096,0.033261101692915,-0.982679665088654,0.182303011417389,-0.00912498403340578,-0.984667003154755,0.174205929040909,0.0896595865488052,-0.986156523227692,0.139486983418465,0.0400221757590771,-0.987666428089142,0.151371940970421,0.0786957889795303,-0.986712217330933,0.142148271203041,0.108017444610596,-0.981401920318604,0.158690109848976,0.109822534024715,-0.981197953224182,0.158712565898895,-0.00900654122233391,-0.987694501876831,0.156136274337769,0.112583808600903,-0.975089967250824,0.191113814711571,0.0451207719743252,-0.981925249099731,0.183812335133553,-0.00914523843675852,-0.984107613563538,0.177337691187859,0.110442519187927,-0.986003398895264,0.124899163842201,0.16644760966301,-0.97868937253952,0.120259054005146,0.106854893267155,-0.986362814903259,0.125181779265404,0.109033785760403,-0.982704639434814,0.149677023291588,0.0812742114067078,-0.984652519226074,0.154447644948959,0.0415440239012241,-0.986072659492493,0.161042898893356,0.0786057934165001,-0.986780941486359,0.141719713807106,0.107853412628174,-0.984775722026825,0.136324748396873,0.166990995407104,-0.978004097938538,0.12498851120472,-0.0542960055172443,-0.874361276626587,0.482228606939316,-0.223897770047188,-0.855027377605438,0.467758387327194,-0.138145565986633,-0.868050038814545,0.476870059967041,0.00793395284563303,-0.875700354576111,0.48278996348381,-0.0526438988745213,-0.88128137588501,0.469650775194168,-0.133318170905113,-0.883407831192017,0.449240177869797,-0.225303694605827,-0.879381418228149,0.419436097145081,-0.0524627268314362,-0.882026255130768,0.468270599842072,-0.159037753939629,-0.883793532848358,0.440018385648727,-0.197963505983353,-0.830388784408569,0.520830988883972,-0.221359819173813,-0.822668612003326,0.523656606674194,-0.154046088457108,-0.843410730361938,0.514711678028107,-0.0524543970823288,-0.882060468196869,0.468207150697708,0.00822625402361155,-0.876251101493835,0.481784760951996,0.0224798303097487,-0.874390184879303,0.484702408313751,
- 0.0529699474573135,-0.868968665599823,0.492024004459381,0.0224344804883003,-0.874233424663544,0.484987407922745,0.00829042494297028,-0.876371800899506,0.481563925743103,-0.155170366168022,-0.8522669672966,0.499563187360764,-0.0787779167294502,-0.86667937040329,0.492606461048126,-0.203025460243225,-0.84046483039856,0.502393782138824,-0.0164266899228096,-0.874622821807861,0.484525829553604,-0.198622301220894,-0.83171159029007,0.518464088439941,-0.078056737780571,-0.863678276538849,0.497962862253189,-0.156584829092026,-0.86358505487442,0.479272454977036,-0.0543691031634808,-0.874049723148346,0.482784777879715,0.00689681665971875,-0.875895738601685,0.482451170682907,-0.0804966315627098,-0.873747408390045,0.479672759771347,-0.157144486904144,-0.868124842643738,0.470813184976578,0.00688030803576112,-0.87379914522171,0.486238330602646,-0.0545109622180462,-0.873443841934204,0.483864068984985,0.0230575557798147,-0.876380622386932,0.481066793203354,0.0068992511369288,-0.87620484828949,0.481889456510544,-0.0151777863502502,-0.872689425945282,0.48803985118866,-0.0768468305468559,-0.858597695827484,0.506857752799988,0.0235321782529354,-0.87958812713623,0.475153684616089,0.0258785709738731,-0.873194396495819,0.486684620380402,-0.0807861164212227,-0.874925971031189,0.477470576763153,0.00688375486060977,-0.874236822128296,0.485450893640518,0.0816189050674438,-0.889514207839966,0.449558466672897,-0.0138614550232887,-0.870635449886322,0.491733521223068,0.0236654207110405,-0.879229545593262,0.475810199975967,0.0068991151638329,-0.87618762254715,0.481920778751373,0.0230619143694639,-0.876395642757416,0.481039315462112,0.0212760772556067,-0.87638396024704,0.481142967939377,0.0228835921734571,-0.875782787799835,0.482162743806839,0.0538181737065315,-0.870137929916382,0.489860773086548,0.0212134514003992,-0.876061320304871,0.481732964515686,0.0335367694497108,-0.874704480171204,0.483495026826859,0.0251690894365311,-0.875145554542542,0.483204782009125,0.00689680827781558,-0.875894665718079,0.482453167438507,0.088411308825016,-0.878042042255402,0.470346540212631,
- 0.0255220159888268,-0.874176859855652,0.484936535358429,0.0335215218365192,-0.874871015548706,0.483194589614868,0.0095589542761445,-0.877662062644959,0.479184865951538,0.0211117174476385,-0.875536382198334,0.48269060254097,0.0529829859733582,-0.86898672580719,0.491990804672241,0.0505581125617027,-0.865614652633667,0.498151749372482,0.0560978129506111,-0.863956212997437,0.50043249130249,0.00919623766094446,-0.876924097537994,0.48054113984108,-0.00381585117429495,-0.874720275402069,0.484613090753555,0.00689128274098039,-0.875192940235138,0.483724981546402,0.0211365837603807,-0.87566477060318,0.482456594705582,0.0212964341044426,-0.8764888048172,0.480951130390167,0.00879597757011652,-0.876107215881348,0.482036292552948,-0.00380356749519706,-0.875582873821259,0.483053088188171,-0.00392875261604786,-0.866621077060699,0.498951554298401,0.0346071943640709,-0.86263632774353,0.504639625549316,0.00681609055027366,-0.865643501281738,0.500614523887634,0.0586302578449249,-0.867231011390686,0.494441956281662,0.111154071986675,-0.853768408298492,0.508649468421936,0.00940301176160574,-0.877344906330109,0.479768067598343,0.00917523261159658,-0.876881182193756,0.480619549751282,0.114219516515732,-0.87431675195694,0.471724659204483,-0.00379013130441308,-0.876522123813629,0.481346666812897,0.158352121710777,-0.840979278087616,0.517376601696014,0.111313335597515,-0.854840695858002,0.506810307502747,0.0589680969715118,-0.867664754390717,0.493640273809433,0.16532190144062,-0.888709425926209,0.427626192569733,0.117000371217728,-0.892770648002625,0.43505334854126,0.158933758735657,-0.889371335506439,0.428670853376389,0.0382436253130436,-0.875358104705811,0.48196017742157,0.0874440595507622,-0.879714071750641,0.467393755912781,0.0335262715816498,-0.874819159507751,0.483288168907166,0.0447947941720486,-0.853424549102783,0.519287943840027,0.0352749936282635,-0.854722082614899,0.51788604259491,-0.00402824487537146,-0.859221994876862,0.511587083339691,0.0910625234246254,-0.873392939567566,0.478427231311798,0.0397332869470119,-0.87053918838501,0.490492403507233,
- 0.0804592072963715,-0.873002111911774,0.481033951044083,0.112324237823486,-0.861635088920593,0.494942605495453,0.110734380781651,-0.861813843250275,0.494989693164825,-0.00389802572317421,-0.868856191635132,0.495049268007278,0.113358035683632,-0.844666123390198,0.523153126239777,0.0446844398975372,-0.853810131549835,0.518663465976715,-0.00404705293476582,-0.857795178890228,0.513975739479065,0.114780910313129,-0.878057718276978,0.464585840702057,0.169368401169777,-0.872804760932922,0.457740277051926,0.107898607850075,-0.8785280585289,0.465345501899719,0.109967172145844,-0.866511940956116,0.486892521381378,0.0831156149506569,-0.866678416728973,0.491894632577896,0.0412139743566513,-0.865651607513428,0.498947560787201,0.0803833901882172,-0.873180031776428,0.480723589658737,0.108840219676495,-0.873172521591187,0.475103735923767,0.169881299138069,-0.870655596256256,0.461626678705215,-0.167106777429581,0.985653936862946,0.0237016528844833,-0.0898938775062561,0.995456755161285,0.0313836000859737,-0.205785304307938,0.97839766740799,0.0197595488280058,-0.283296167850494,0.958825826644897,0.0199076160788536,-0.166658893227577,0.985883176326752,0.0161019042134285,-0.205721214413643,0.978456079959869,0.0173934698104858,-0.282189220190048,0.958852887153625,0.0311507899314165,-0.335989415645599,0.940802395343781,0.0447439812123775,-0.207123696804047,0.978236198425293,0.0124057959765196,-0.205372422933578,0.978670239448547,0.00518842507153749,-0.236924007534981,0.971436738967896,0.0133302137255669,-0.282773911952972,0.958853960037231,0.0252581834793091,-0.335287541151047,0.941243171691895,0.0405400320887566,-0.282582134008408,0.958857357501984,0.0272020995616913,-0.237745314836502,0.971196353435516,0.0159667301923037,-0.320741385221481,0.94633537530899,-0.0396778136491776,-0.237191706895828,0.971359252929688,0.0141889899969101,-0.385229110717773,0.919124007225037,-0.0825208351016045,-0.205087840557098,0.978735148906708,-0.00405529094859958,-0.162096917629242,0.986738204956055,0.00850478559732437,-0.229211434721947,0.973312735557556,-0.0111543377861381,
- -0.382412731647491,0.919864892959595,-0.0872303992509842,-0.235527500510216,0.971827387809753,0.0088602090254426,-0.236562445759773,0.971581697463989,0.00820174068212509,-0.235562086105347,0.971817910671234,0.00897081941366196,-0.183370694518089,0.982073724269867,0.0436628572642803,-0.236604243516922,0.97157096862793,0.0082712396979332,-0.235311537981033,0.971900701522827,0.00612228363752365,-0.180879265069962,0.982710897922516,0.0395223200321198,-0.182347849011421,0.98247492313385,0.0386293940246105,-0.319562256336212,0.876482963562012,0.360079944133759,-0.248878479003906,0.895081996917725,0.369983643293381,-0.367120236158371,0.860941290855408,0.35214039683342,-0.436576694250107,0.830283284187317,0.34645414352417,-0.319643348455429,0.8795565366745,0.352432370185852,-0.367175787687302,0.861497700214386,0.350718706846237,-0.434722930192947,0.82654482126236,0.357546836137772,-0.480659365653992,0.797931134700775,0.363692909479141,-0.362861335277557,0.865127384662628,0.346246123313904,-0.367544442415237,0.865376114845276,0.340639650821686,-0.396601408720016,0.850413680076599,0.345693349838257,-0.435659259557724,0.828432202339172,0.351995944976807,-0.480267822742462,0.799908578395844,0.359845906496048,-0.435357064008713,0.827822923660278,0.353798776865005,-0.397182464599609,0.849190831184387,0.348024547100067,-0.471373170614243,0.833808422088623,0.287351429462433,-0.395782232284546,0.852117121219635,0.342422008514404,-0.535154640674591,0.811102628707886,0.236055478453636,-0.367922008037567,0.869795143604279,0.328770220279694,-0.323838621377945,0.881269752979279,0.344226956367493,-0.390193045139313,0.863131880760193,0.320550680160522,-0.532771646976471,0.813865661621094,0.231898605823517,-0.394556373357773,0.8546222448349,0.337559014558792,-0.393935084342957,0.854738593101501,0.337989926338196,-0.394550889730453,0.854633390903473,0.337537288665771,-0.341499477624893,0.861954212188721,0.374717354774475,-0.393932700157166,0.854741334915161,0.337985813617706,-0.392901748418808,0.855919122695923,0.33620023727417,-0.339457392692566,0.86429089307785,0.371173828840256,
- -0.336201101541519,0.86467981338501,0.373226284980774,-0.167422518134117,0.865391612052917,-0.472299784421921,-0.0858907103538513,0.878274917602539,-0.47037860751152,-0.210657209157944,0.856057941913605,-0.472004681825638,-0.284296691417694,0.840080320835114,-0.461996257305145,-0.167004466056824,0.86180579662323,-0.478957563638687,-0.210613295435905,0.855240523815155,-0.473503619432449,-0.283113598823547,0.845852851867676,-0.452083557844162,-0.330197989940643,0.838240921497345,-0.433960199356079,-0.210261151194572,0.853195309638977,-0.477334320545197,-0.210312336683273,0.849857032299042,-0.483230590820313,-0.23785188794136,0.847864747047424,-0.473869025707245,-0.283729165792465,0.84288626909256,-0.457209467887878,-0.329469859600067,0.836495816707611,-0.437863379716873,-0.283528864383698,0.843860328197479,-0.455534011125565,-0.238678961992264,0.848971545696259,-0.471465408802032,-0.315563440322876,0.803021907806396,-0.50554484128952,-0.237906113266945,0.847937405109406,-0.473711729049683,-0.385476410388947,0.75452733039856,-0.531127512454987,-0.209959656000137,0.843949735164642,-0.493625372648239,-0.162573426961899,0.858641862869263,-0.486111223697662,-0.229931771755219,0.837064683437347,-0.496441602706909,-0.382661372423172,0.752831697463989,-0.535550832748413,-0.236237987875938,0.845693469047546,-0.478533536195755,-0.234256863594055,0.846728563308716,-0.477676153182983,-0.236266374588013,0.845731735229492,-0.478451639413834,-0.183660566806793,0.872205317020416,-0.453350514173508,-0.234333693981171,0.846774935722351,-0.477556198835373,-0.232981935143471,0.845956563949585,-0.47966331243515,-0.181187689304352,0.870681583881378,-0.457257807254791,-0.185149654746056,0.86891782283783,-0.45902219414711,-0.163978338241577,0.615488469600677,0.770898818969727,-0.0896260440349579,0.61580902338028,0.782781183719635,-0.210445284843445,0.61348956823349,0.761146128177643,-0.287093341350555,0.600240767002106,0.746517598628998,-0.163496106863022,0.621791005134583,0.765927493572235,-0.21039767563343,0.614846706390381,0.760063409805298,
- -0.285867691040039,0.591034114360809,0.754293262958527,-0.332602202892303,0.571905672550201,0.749866425991058,-0.210601359605789,0.618135809898376,0.757334291934967,-0.210075095295906,0.623565375804901,0.75301718711853,-0.239435240626335,0.613352596759796,0.752641618251801,-0.286474376916885,0.595562815666199,0.750491380691528,-0.331860333681107,0.575456321239471,0.74747496843338,-0.286277741193771,0.594088912010193,0.751733601093292,-0.240263342857361,0.611175656318665,0.754147231578827,-0.317361503839493,0.637786686420441,0.701790452003479,-0.239127442240715,0.614159405231476,0.752081334590912,-0.388848632574081,0.654767334461212,0.648133099079132,-0.209703847765923,0.632730841636658,0.745436787605286,-0.163432702422142,0.628009140491486,0.760851144790649,-0.231228798627853,0.634421944618225,0.737592101097107,-0.386027038097382,0.658858954906464,0.645668685436249,-0.23744498193264,0.618546068668365,0.749013125896454,-0.241383418440819,0.619854331016541,0.746669113636017,-0.237463548779488,0.618497908115387,0.749046981334686,-0.184458345174789,0.598264276981354,0.779778838157654,-0.241354525089264,0.619895696640015,0.746644020080566,-0.240160569548607,0.621607542037964,0.745605111122131,-0.181991964578629,0.601828813552856,0.777612388134003,-0.184373810887337,0.602689266204834,0.776383936405182,-0.014793592505157,0.657929956912994,0.75293380022049,-0.101019337773323,0.655027449131012,0.74882185459137,-0.0362943112850189,0.657666027545929,0.75243479013443,-0.140081867575645,0.652081191539764,0.745095431804657,-0.0147937852889299,0.6579350233078,0.752929449081421,-0.0362940952181816,0.657669961452484,0.752431511878967,-0.132240861654282,0.645333468914032,0.752367615699768,-0.0157260224223137,0.682078659534454,0.731109738349915,-0.141110807657242,0.642099142074585,0.753522753715515,-0.139097571372986,0.661317646503448,0.737096309661865,-0.0374548099935055,0.636397778987885,0.770451188087463,-0.2203668653965,0.675681054592133,0.703486800193787,-0.131420329213142,0.643721461296082,0.753890931606293,-0.141386032104492,0.639369547367096,0.755788743495941,
- -0.321781724691391,0.545169055461884,0.774110615253448,-0.33536559343338,0.626304149627686,0.70375645160675,-0.140159621834755,0.651338815689087,0.745729923248291,-0.23206090927124,0.642949461936951,0.729906678199768,-0.210985705256462,0.971169710159302,0.110970288515091,-0.210133850574493,0.971415638923645,0.110432595014572,-0.115291081368923,0.992036402225494,0.0507132969796658,-0.210249066352844,0.971100568771362,0.112955391407013,-0.107798427343369,0.991756618022919,0.0692699775099754,-0.174491882324219,0.979795455932617,0.0977425128221512,-0.365808039903641,0.925988137722015,0.0934373736381531,-0.208717867732048,0.970943331718445,0.117072120308876,-0.169916823506355,0.977839469909668,0.12230372428894,-0.105080507695675,0.991557836532593,0.0759681910276413,-0.0797133147716522,0.994566202163696,0.0669627040624619,-0.174021497368813,0.979620754718781,0.100297786295414,-0.361390829086304,0.929841637611389,0.0692196115851402,-0.168546229600906,0.977144956588745,0.129537835717201,-0.113814428448677,0.98282390832901,0.145270735025406,-0.17135401070118,0.978514969348907,0.114657998085022,-0.0667935609817505,0.991286337375641,0.11353400349617,-0.113289311528206,0.986978471279144,0.114188604056835,-0.0114025957882404,0.842137813568115,0.539141833782196,-0.107134290039539,0.837656497955322,0.535587310791016,-0.0363195277750492,0.841717958450317,0.538694620132446,-0.143454864621162,0.833909392356873,0.532931387424469,-0.0114027773961425,0.842141568660736,0.539135992527008,-0.0363193154335022,0.841720700263977,0.538690328598022,-0.127687975764275,0.83126175403595,0.541017293930054,-0.0122745651751757,0.859868586063385,0.510367870330811,-0.144536599516869,0.825985848903656,0.544845402240753,-0.142405956983566,0.841235935688019,0.521577000617981,-0.0374799557030201,0.826323509216309,0.561947345733643,-0.222240954637527,0.845353066921234,0.485785245895386,-0.126998841762543,0.830321192741394,0.542621433734894,-0.144825175404549,0.823805153369904,0.548060834407806,-0.322951972484589,0.739087104797363,0.591144859790802,-0.336939811706543,0.797542214393616,0.500397861003876,
- -0.143525063991547,0.833406865596771,0.533698081970215,-0.233994245529175,0.820917129516602,0.520904779434204,-0.210860550403595,0.963506698608398,-0.164902240037918,-0.214365690946579,0.963142514228821,-0.162492543458939,-0.112867034971714,0.966612815856934,-0.230045258998871,-0.210111737251282,0.964000880718231,-0.162958085536957,-0.105288207530975,0.971637308597565,-0.211743786931038,-0.17342084646225,0.968177974224091,-0.180434793233871,-0.364901423454285,0.915580868721008,-0.168993040919304,-0.208543241024017,0.965019822120667,-0.158891394734383,-0.168699488043785,0.973291337490082,-0.155706956982613,-0.102529548108578,0.973358750343323,-0.205086514353752,-0.0774809494614601,0.973659515380859,-0.214438810944557,-0.172933205962181,0.968741655349731,-0.177858412265778,-0.360487699508667,0.912538707256317,-0.193188190460205,-0.167279943823814,0.974682211875916,-0.148364290595055,-0.117114968597889,0.983765721321106,-0.135974958539009,-0.170180886983871,0.97176867723465,-0.163414195179939,-0.0643459483981133,0.983670771121979,-0.168081849813461,-0.116572342813015,0.979207694530487,-0.166021749377251,-0.01104954816401,0.982280671596527,0.187089622020721,-0.105217762291431,0.976994037628174,0.185504630208015,-0.0320225767791271,0.98186057806015,0.18688091635704,-0.143630251288414,0.972304046154022,0.184378147125244,-0.0110497297719121,0.982281982898712,0.187082782387733,-0.0320223495364189,0.981861591339111,0.186875551939011,-0.130423203110695,0.972331881523132,0.193805530667305,-0.0119294794276357,0.988048017024994,0.153684049844742,-0.144720509648323,0.969360709190369,0.198483973741531,-0.14257501065731,0.974892795085907,0.171045526862144,-0.0332477204501629,0.975869476795197,0.215808674693108,-0.223030045628548,0.96527624130249,0.136012732982636,-0.129648983478546,0.972024857997894,0.195854067802429,-0.145010143518448,0.968529939651489,0.202291384339333,-0.31954488158226,0.907564580440521,0.272429138422012,-0.333146780729294,0.927760899066925,0.168145686388016,-0.143699198961258,0.972126126289368,0.185260027647018,
- -0.234983950853348,0.955568730831146,0.177963554859161,-0.213996365666389,0.833476662635803,-0.509433329105377,-0.212349325418472,0.833215177059174,-0.510549187660217,-0.108582608401775,0.810430467128754,-0.575684368610382,-0.213468164205551,0.834311485290527,-0.508287131786346,-0.100688487291336,0.82234513759613,-0.560009181499481,-0.177389189600945,0.831864833831787,-0.525865077972412,-0.363417357206345,0.787563562393188,-0.497665971517563,-0.21263262629509,0.835626542568207,-0.50647383928299,-0.173019960522652,0.844591557979584,-0.506684601306915,-0.0977984592318535,0.826598227024078,-0.554230153560638,-0.0816892236471176,0.82453578710556,-0.559881806373596,-0.17694453895092,0.833194196224213,-0.523906707763672,-0.359014183282852,0.775895476341248,-0.518743693828583,-0.171717077493668,0.848245680332184,-0.500991463661194,-0.119240395724773,0.862052798271179,-0.492591857910156,-0.17440576851368,0.840634763240814,-0.512753188610077,-0.0687387585639954,0.850321590900421,-0.521754920482636,-0.118783257901669,0.846946954727173,-0.518238842487335,-0.0174130275845528,0.997228562831879,-0.072332464158535,-0.102359890937805,0.992103636264801,-0.0724766403436661,-0.0363897979259491,0.996710896492004,-0.072410099208355,-0.137616321444511,0.987837553024292,-0.0723792836070061,-0.0174131747335196,0.99722808599472,-0.0723389685153961,-0.0363895781338215,0.996710598468781,-0.0724152326583862,-0.132771551609039,0.98918092250824,-0.0623931251466274,-0.0181141551584005,0.994424641132355,-0.103882819414139,-0.138490006327629,0.988527595996857,-0.0602803751826286,-0.136785373091698,0.987064778804779,-0.0836241841316223,-0.0375477112829685,0.998299598693848,-0.0445877611637115,-0.220934703946114,0.968311488628387,-0.116450995206833,-0.131940737366676,0.989431500434875,-0.0601421855390072,-0.138723254203796,0.988689541816711,-0.0570004284381866,-0.321489155292511,0.946426808834076,0.0303494744002819,-0.335125297307968,0.939055323600769,-0.0765910893678665,-0.13769942522049,0.987908720970154,-0.0712409168481827,-0.232673183083534,0.969722986221313,-0.0741658061742783,
- -0.212067693471909,0.673422515392303,-0.708187520503998,-0.214480400085449,0.674213588237762,-0.706706583499908,-0.114575177431107,0.637209832668304,-0.762126088142395,-0.211401164531708,0.674834370613098,-0.70704185962677,-0.107023775577545,0.651967883110046,-0.75065553188324,-0.17225207388401,0.667243897914886,-0.724648118019104,-0.362236052751541,0.633136332035065,-0.684049248695374,-0.210154682397842,0.677463591098785,-0.704895853996277,-0.167312875390053,0.686641395092011,-0.707481503486633,-0.104282170534134,0.657239675521851,-0.746432363986969,-0.083461731672287,0.652845025062561,-0.752879559993744,-0.171739920973778,0.669299066066742,-0.722872138023376,-0.357889950275421,0.616526663303375,-0.701291441917419,-0.165815070271492,0.692342400550842,-0.702258825302124,-0.117140978574753,0.706570744514465,-0.697879493236542,-0.168851152062416,0.6807000041008,-0.712837219238281,-0.0707979872822762,0.687119007110596,-0.723087191581726,-0.11660498380661,0.68496185541153,-0.719187438488007,-0.0132234636694193,0.907499551773071,-0.41984498500824,-0.102552317082882,0.902567446231842,-0.418156772851944,-0.0329364910721779,0.907036542892456,-0.419761747121811,-0.140391707420349,0.89826899766922,-0.416417092084885,-0.01322365924716,0.907496690750122,-0.419851154088974,-0.03293626755476,0.907034277915955,-0.41976660490036,-0.131897032260895,0.903390645980835,-0.408030092716217,-0.0141619779169559,0.893096208572388,-0.449642807245255,-0.141341552138329,0.903603732585907,-0.404379636049271,-0.139479517936707,0.893128514289856,-0.42762964963913,-0.0341270081698895,0.918881952762604,-0.39305391907692,-0.219030275940895,0.865549623966217,-0.45038828253746,-0.131085097789764,0.904388546943665,-0.406076490879059,-0.141594365239143,0.905020356178284,-0.401109963655472,-0.320791304111481,0.896277248859406,-0.306235283613205,-0.334146291017532,0.851847112178802,-0.403364479541779,-0.140468895435333,0.898703217506409,-0.415452778339386,-0.230549871921539,0.88155996799469,-0.411945372819901,-0.213075697422028,0.380562573671341,-0.899872779846191,
- -0.213741570711136,0.380911022424698,-0.899567306041718,-0.110863536596298,0.325027287006378,-0.939184010028839,-0.212500527501106,0.382026612758636,-0.899388194084167,-0.103071868419647,0.34339314699173,-0.933518826961517,-0.173346683382988,0.368722587823868,-0.913233041763306,-0.363392412662506,0.350452125072479,-0.863208711147308,-0.211482360959053,0.384612560272217,-0.898525774478912,-0.168542549014091,0.392327606678009,-0.904252409934998,-0.10022196918726,0.35004797577858,-0.931354939937592,-0.0793895348906517,0.343625098466873,-0.935745239257813,-0.1728515625,0.371193051338196,-0.912325620651245,-0.359008938074112,0.32866159081459,-0.873552560806274,-0.167088285088539,0.399316936731339,-0.901458501815796,-0.119390547275543,0.4139184653759,-0.902450919151306,-0.17003545165062,0.385078281164169,-0.907084703445435,-0.0661516785621643,0.387535750865936,-0.919478118419647,-0.118908733129501,0.386821419000626,-0.914456129074097,-0.395764648914337,0.913470804691315,0.0945603996515274,-0.548938274383545,0.835805475711823,-0.00980427116155624,-0.587810754776001,0.808061897754669,-0.0389161370694637,-0.49223980307579,0.859941005706787,0.134912937879562,-0.566962778568268,0.818724036216736,0.0907977074384689,-0.431455671787262,0.886331617832184,0.168114542961121,-0.584677278995514,0.757594645023346,0.290177285671234,-0.506131887435913,0.81507283449173,0.281934082508087,-0.475470006465912,0.834600806236267,0.278154492378235,-0.505816519260406,0.81718385219574,0.276333630084991,-0.479840844869614,0.832043647766113,0.278309464454651,-0.475399821996689,0.834485650062561,0.278619199991226,-0.506837844848633,0.809692025184631,0.29582816362381,-0.425212770700455,0.853416621685028,0.301453620195389,-0.478637427091599,0.82585996389389,0.29809644818306,-0.452973812818527,0.865127444267273,0.21533527970314,-0.388074606657028,0.884378969669342,0.259368419647217,-0.498002737760544,0.84771853685379,0.182665139436722,-0.425038069486618,0.851058661937714,0.308288514614105,-0.506528258323669,0.812180757522583,0.289467692375183,-0.399836272001266,0.861330568790436,0.313433527946472,
- -0.39721891283989,0.86698853969574,0.300912082195282,-0.470878899097443,0.844032227993011,0.256676644086838,-0.362703174352646,0.87515652179718,0.320230424404144,-0.33243054151535,0.891481757164001,0.307815283536911,-0.425263553857803,0.854155659675598,0.299280881881714,-0.397490262985229,0.866417586803436,0.302195608615875,-0.341030657291412,0.888611435890198,0.306704759597778,-0.39263916015625,0.876126348972321,0.27970877289772,-0.354164153337479,0.885759353637695,0.299997180700302,-0.39233523607254,0.876701176166534,0.278331011533737,-0.339987546205521,0.889939188957214,0.304001212120056,-0.332367330789566,0.891579747200012,0.307599812746048,-0.393458336591721,0.90472137928009,-0.16330873966217,-0.545469760894775,0.802675604820251,-0.241194099187851,-0.588937342166901,0.76391988992691,-0.263779073953629,-0.494733422994614,0.861816942691803,-0.111849665641785,-0.563429236412048,0.814181208610535,-0.140201911330223,-0.429137140512466,0.899193227291107,-0.0853982046246529,-0.581230223178864,0.811068952083588,0.0658675506711006,-0.509129106998444,0.859571933746338,0.0438612475991249,-0.474120289087296,0.879823207855225,0.033482164144516,-0.508769631385803,0.860096633434296,0.0372462049126625,-0.480121672153473,0.876513004302979,0.0347587242722511,-0.474008530378342,0.879854738712311,0.0342288985848427,-0.509824633598328,0.858317613601685,0.0580505132675171,-0.424125254154205,0.90417218208313,0.0508958213031292,-0.478952676057816,0.876085221767426,0.0554902479052544,-0.450859159231186,0.891952633857727,-0.0338617712259293,-0.388398587703705,0.921490073204041,0.00163984298706055,-0.500572741031647,0.863389253616333,-0.0631352514028549,-0.423900723457336,0.903830885887146,0.0582911483943462,-0.50947779417038,0.858988165855408,0.0507121607661247,-0.399887830018997,0.914580941200256,0.0602618157863617,-0.397341191768646,0.916485667228699,0.0466280430555344,-0.468820452690125,0.883216500282288,0.0116630047559738,-0.36569020152092,0.928698599338531,0.0615594908595085,-0.334203153848648,0.94135320186615,0.0465023890137672,
- -0.424188405275345,0.904265344142914,0.0486679002642632,-0.39761346578598,0.916293144226074,0.048066683113575,-0.344799846410751,0.937617301940918,0.0445762239396572,-0.39287731051445,0.919286727905273,0.0236517712473869,-0.357186108827591,0.933208584785461,0.0392425693571568,-0.392577797174454,0.91945207118988,0.0221488028764725,-0.343793302774429,0.938119113445282,0.0417001359164715,-0.333951324224472,0.941487729549408,0.0455778688192368,-0.393727004528046,0.778810203075409,-0.488296926021576,-0.547846257686615,0.65298855304718,-0.522944033145905,-0.589277386665344,0.610552847385406,-0.529128909111023,-0.493376463651657,0.759345471858978,-0.42423352599144,-0.565995693206787,0.701368451118469,-0.433279573917389,-0.42930406332016,0.802775800228119,-0.413822650909424,-0.584034621715546,0.775732636451721,-0.239044904708862,-0.50709193944931,0.815098822116852,-0.280128091573715,-0.476298809051514,0.828238666057587,-0.295229405164719,-0.506775617599487,0.81323367357254,-0.286058485507965,-0.480805516242981,0.826183319091797,-0.293678909540176,-0.476257026195526,0.828353583812714,-0.294973731040955,-0.507759928703308,0.819371402263641,-0.266102343797684,-0.425602227449417,0.857584416866302,-0.288811206817627,-0.479693681001663,0.833471059799194,-0.274262666702271,-0.450937151908875,0.815286457538605,-0.363268047571182,-0.388866424560547,0.855680584907532,-0.34145799279213,-0.499054551124573,0.779157817363739,-0.379285752773285,-0.425390899181366,0.859930515289307,-0.28206792473793,-0.507453799247742,0.817348122596741,-0.272824019193649,-0.400332540273666,0.871139109134674,-0.284342676401138,-0.397764682769775,0.867785453796387,-0.297878593206406,-0.468787610530853,0.824151039123535,-0.317825764417648,-0.368310958147049,0.883571743965149,-0.289219826459885,-0.334023833274841,0.891115248203278,-0.307151168584824,-0.425666868686676,0.856804311275482,-0.291022598743439,-0.398076415061951,0.868196249008179,-0.296260833740234,-0.343261271715164,0.887618899345398,-0.307090640068054,-0.393324732780457,0.861832320690155,-0.320219933986664,
- -0.35991495847702,0.879434585571289,-0.311538428068161,-0.393036633729935,0.861439824104309,-0.321626663208008,-0.342254757881165,0.887009024620056,-0.3099624812603,-0.333802253007889,0.890923798084259,-0.307946473360062,-0.39652681350708,0.624650955200195,-0.672738909721375,-0.548260450363159,0.495750069618225,-0.673529803752899,-0.587464034557343,0.45549613237381,-0.668886661529541,-0.493255972862244,0.624565958976746,-0.605488121509552,-0.566454708576202,0.565731346607208,-0.599230527877808,-0.432233572006226,0.667205035686493,-0.606639623641968,-0.584498882293701,0.687796354293823,-0.430461704730988,-0.506577908992767,0.715586721897125,-0.480951637029648,-0.475180506706238,0.724529504776001,-0.499260008335114,-0.506275117397308,0.712241590023041,-0.486207187175751,-0.478990107774735,0.723287403583527,-0.497417151927948,-0.475121796131134,0.724780559539795,-0.498951345682144,-0.507211863994598,0.72333699464798,-0.468529433012009,-0.425516963005066,0.75420618057251,-0.500108540058136,-0.477894455194473,0.735330402851105,-0.48052704334259,-0.453658670186996,0.69213330745697,-0.561378061771393,-0.39118018746376,0.737321197986603,-0.550759077072144,-0.498821079730988,0.655400335788727,-0.567122638225555,-0.425313532352448,0.758251428604126,-0.494128704071045,-0.506928563117981,0.719726622104645,-0.474359750747681,-0.403180688619614,0.767334997653961,-0.498640567064285,-0.40034419298172,0.760156095027924,-0.511749267578125,-0.471512645483017,0.712474942207336,-0.519668459892273,-0.366177886724472,0.780449032783508,-0.506767332553864,-0.333004772663116,0.782173156738281,-0.526605188846588,-0.425576120615005,0.752929031848907,-0.501978933811188,-0.400916248559952,0.761599183082581,-0.509149134159088,-0.344179332256317,0.778056442737579,-0.525517582893372,-0.395798057317734,0.748764872550964,-0.531690776348114,-0.357704550027847,0.770714700222015,-0.527300953865051,-0.395514637231827,0.748059093952179,-0.532893836498261,-0.343160480260849,0.776740789413452,-0.528123676776886,-0.332890450954437,0.78196781873703,-0.526982247829437,
- -0.392929911613464,0.349463820457459,-0.850576937198639,-0.545135080814362,0.228839099407196,-0.806511402130127,-0.587992608547211,0.189554840326309,-0.786341905593872,-0.492882877588272,0.370681464672089,-0.787186026573181,-0.563296020030975,0.320008516311646,-0.761769235134125,-0.428607523441315,0.412144273519516,-0.804010391235352,-0.581525266170502,0.4918412566185,-0.648012816905975,-0.506545066833496,0.499618589878082,-0.702704429626465,-0.477576076984406,0.501404106616974,-0.721467256546021,-0.506231904029846,0.494697421789169,-0.706401944160461,-0.480949908494949,0.500625312328339,-0.719764888286591,-0.477580845355988,0.501376092433929,-0.721483588218689,-0.507215857505798,0.511313199996948,-0.693751275539398,-0.423041641712189,0.529500722885132,-0.735299170017242,-0.479837000370026,0.517858445644379,-0.708222448825836,-0.450378835201263,0.451764702796936,-0.770108819007874,-0.388256788253784,0.497297674417496,-0.775855422019959,-0.498559176921844,0.413049668073654,-0.762121200561523,-0.422802031040192,0.535755038261414,-0.73089325428009,-0.506918251514435,0.505898714065552,-0.697925865650177,-0.400020033121109,0.542809247970581,-0.738472878932953,-0.397388398647308,0.532301843166351,-0.747487246990204,-0.468291103839874,0.485329180955887,-0.73834890127182,-0.367834717035294,0.550224781036377,-0.749633550643921,-0.333664059638977,0.545747637748718,-0.768653273582459,-0.423102915287018,0.527781963348389,-0.736498653888702,-0.397685259580612,0.533476769924164,-0.746491074562073,-0.345023781061172,0.54185962677002,-0.766385555267334,-0.392817616462708,0.514518857002258,-0.762210309505463,-0.359341830015183,0.533904373645782,-0.765388488769531,-0.392513692378998,0.513356029987335,-0.76315039396286,-0.344018429517746,0.53972190618515,-0.768343389034271,-0.333459585905075,0.545170962810516,-0.769151091575623,0.599837005138397,-0.386277765035629,-0.700703263282776,0.367666482925415,-0.438564747571945,-0.820050239562988,0.508565068244934,-0.411367893218994,-0.756398141384125,0.596315860748291,-0.354384034872055,-0.720291137695313,
- 0.37734454870224,-0.474384784698486,-0.795342803001404,0.368801921606064,-0.478183925151825,-0.797073006629944,0.508286476135254,-0.413337677717209,-0.755510926246643,0.366626143455505,-0.414583384990692,-0.832890152931213,0.257598459720612,-0.408712267875671,-0.875555455684662,0.368862926959991,-0.481516510248184,-0.795035839080811,0.378226637840271,-0.477119386196136,-0.793285369873047,0.181793212890625,-0.555344343185425,-0.811507165431976,0.253413677215576,-0.435057371854782,-0.864006161689758,0.367290586233139,-0.429189801216125,-0.825162887573242,0.172216087579727,-0.435421168804169,-0.88360059261322,0.430282294750214,-0.642017781734467,-0.634563088417053,0.377405345439911,-0.658335626125336,-0.651275336742401,0.494946926832199,-0.618367195129395,-0.610450267791748,0.426422953605652,-0.625707149505615,-0.653187572956085,0.14928337931633,-0.742631852626801,-0.652849555015564,0.377314686775208,-0.652014553546906,-0.657655417919159,0.488039016723633,-0.650591731071472,-0.581849098205566,0.377465069293976,-0.664546132087708,-0.644901990890503,0.238536715507507,-0.666966915130615,-0.705872058868408,0.377384066581726,-0.656647443771362,-0.652989625930786,0.14211168885231,-0.718771398067474,-0.680567383766174,0.0650957152247429,-0.729569435119629,-0.680801689624786,0.377438902854919,-0.66144323348999,-0.648099362850189,0.0683344975113869,-0.677491009235382,-0.732349872589111,0.235706299543381,-0.677697777748108,-0.696540176868439,0.318950533866882,-0.112136043608189,-0.941114366054535,0.26259434223175,-0.12556616961956,-0.956701278686523,0.390727162361145,-0.0940131098031998,-0.91569310426712,0.3105488717556,-0.0900060012936592,-0.946286678314209,0.0518970191478729,-0.228838503360748,-0.972080051898956,0.261107116937637,-0.118333429098129,-0.958029329776764,0.391608953475952,-0.137845024466515,-0.909747898578644,0.264059156179428,-0.132754281163216,-0.955326676368713,0.124014645814896,-0.124724499881268,-0.984410583972931,0.262226790189743,-0.123772583901882,-0.957035779953003,0.0381103008985519,-0.1957618445158,-0.979910731315613,
- -0.0402076654136181,-0.218205943703651,-0.975074112415314,0.263312518596649,-0.129082188010216,-0.956035733222961,-0.050784956663847,-0.146595448255539,-0.987892031669617,0.123672060668468,-0.138680204749107,-0.982584953308105,-0.0650471299886703,0.678571760654449,0.73164838552475,-0.0622112676501274,0.678838849067688,0.731647133827209,0.134482219815254,0.68384861946106,0.7171231508255,-0.178594589233398,0.649029850959778,0.739502727985382,-0.0622927248477936,0.67923629283905,0.731271266937256,-0.0650522634387016,0.678636014461517,0.731588304042816,0.0686085596680641,0.677586555480957,0.732235848903656,-0.0648860037326813,0.676555335521698,0.733527541160584,0.135043635964394,0.673566281795502,0.726685464382172,-0.0669694468379021,0.70271223783493,0.708315312862396,-0.174834564328194,0.666645169258118,0.724580705165863,-0.184651449322701,0.66288149356842,0.725597679615021,0.0678552836179733,0.672537624835968,0.736945629119873,-0.168696343898773,0.696644902229309,0.69730007648468,-0.0660455673933029,0.691090643405914,0.719744265079498,-0.210043460130692,0.646596312522888,0.733345091342926,-0.182622388005257,0.658252477645874,0.730310082435608,-0.1759332716465,0.660996198654175,0.729473471641541,-0.186340898275375,0.685484051704407,0.703838586807251,-0.171738117933273,0.682098388671875,0.710807859897614,0.0581336282193661,0.606483697891235,0.792967975139618,-0.211731165647507,0.689541578292847,0.692605435848236,-0.171853125095367,0.681536316871643,0.711319088935852,-0.186825916171074,0.684693992137909,0.704478740692139,-0.186303943395615,0.755304872989655,0.628335356712341,-0.255882650613785,0.714694559574127,0.650949895381927,-0.364182949066162,0.638741075992584,0.677776217460632,-0.187336340546608,0.756436884403229,0.626664459705353,-0.0636616125702858,0.806715667247772,0.587500691413879,-0.255861788988113,0.721425712108612,0.643490195274353,-0.391357660293579,0.702910125255585,0.59393322467804,-0.255553364753723,0.746026933193207,0.614928007125854,-0.316950142383575,0.728661894798279,0.607119858264923,-0.255719274282455,0.736387312412262,0.626371622085571,
- -0.0580777674913406,0.794027507305145,0.60510116815567,-0.181739151477814,0.762081980705261,0.621451497077942,-0.255139261484146,0.762052357196808,0.595130562782288,-0.181073725223541,0.766521036624908,0.616163790225983,-0.308400571346283,0.755907595157623,0.577488422393799,-0.0566957890987396,0.790836155414581,0.60939633846283,-0.0245184041559696,0.795962333679199,0.604849338531494,-0.181658789515495,0.762623190879822,0.620810806751251,-0.120912328362465,0.755877315998077,0.643451392650604,-0.29710727930069,0.787825345993042,0.539498507976532,-0.180510506033897,0.770205318927765,0.611718714237213,-0.181134179234505,0.766121625900269,0.616642653942108,-0.0180260371416807,0.766890525817871,0.641524732112885,-0.117118299007416,0.76893013715744,0.628513932228088,-0.202915206551552,0.56169581413269,0.802074432373047,-0.275827974081039,0.532570660114288,0.800179719924927,-0.396436661481857,0.475205391645432,0.785504817962646,-0.203473463654518,0.563631355762482,0.800573706626892,-0.0722455680370331,0.597412109375,0.798673570156097,-0.273412585258484,0.540870845317841,0.795427203178406,-0.396938323974609,0.563969075679779,0.724140107631683,-0.264106035232544,0.571565210819244,0.776892006397247,-0.324022710323334,0.569628477096558,0.755336165428162,-0.267839223146439,0.559489548206329,0.784368276596069,-0.0721288919448853,0.580453455448151,0.811092615127563,-0.193041115999222,0.570273399353027,0.798450589179993,-0.19072487950325,0.575782656669617,0.795046150684357,-0.306323736906052,0.6015944480896,0.737732946872711,-0.257615864276886,0.591850936412811,0.763771295547485,-0.072095051407814,0.576212227344513,0.814114153385162,-0.0347145572304726,0.576114416122437,0.816631674766541,-0.192762181162834,0.570939600467682,0.798041939735413,-0.144119068980217,0.54948627948761,0.822979092597961,-0.283717691898346,0.639791786670685,0.71426248550415,-0.188793867826462,0.580338656902313,0.792189359664917,-0.190941005945206,0.575270712375641,0.795364797115326,-0.0394176319241524,0.537442922592163,0.842378497123718,-0.136611253023148,0.563334226608276,0.814857125282288,
- -0.0547317527234554,0.612083315849304,0.788897037506104,-0.0401535667479038,0.614294409751892,0.788054585456848,0.141487941145897,0.630497217178345,0.763186991214752,-0.163447514176369,0.575936496257782,0.80098819732666,-0.0406958423554897,0.616089522838593,0.786624133586884,-0.0547232255339623,0.612038016319275,0.788932740688324,0.0746482759714127,0.6190305352211,0.781811237335205,-0.0543328635394573,0.609964430332184,0.790563941001892,0.143215119838715,0.619615495204926,0.771729409694672,-0.0595729872584343,0.637606680393219,0.768055319786072,-0.171868234872818,0.590237319469452,0.788721323013306,-0.171246573328972,0.590527713298798,0.788639187812805,0.0744606927037239,0.614309966564178,0.78554368019104,-0.168995693325996,0.626535773277283,0.760850429534912,-0.057284627109766,0.625587046146393,0.778048455715179,-0.206734880805016,0.566186428070068,0.797930836677551,-0.168664515018463,0.585709691047668,0.79277765750885,-0.172324627637863,0.583886802196503,0.79333508014679,-0.174236372113228,0.613633453845978,0.77012699842453,-0.170135676860809,0.612816095352173,0.771693050861359,0.0715068355202675,0.544906258583069,0.835442304611206,-0.21466726064682,0.619344413280487,0.755202293395996,-0.170198887586594,0.612030923366547,0.772302091121674,-0.174603641033173,0.612815678119659,0.770694851875305,-0.191766798496246,0.853970170021057,0.483694612979889,-0.262271046638489,0.823780655860901,0.50259256362915,-0.38161763548851,0.758612036705017,0.528086841106415,-0.192575216293335,0.854960799217224,0.481618851423264,-0.0665835291147232,0.88965916633606,0.451744765043259,-0.260955899953842,0.829103052616119,0.494459450244904,-0.394231140613556,0.810764491558075,0.432715445756912,-0.255791425704956,0.848382711410522,0.463484108448029,-0.316309601068497,0.834370851516724,0.451412826776505,-0.257887631654739,0.840850651264191,0.47588250041008,-0.0642068162560463,0.880181193351746,0.47027525305748,-0.184242740273476,0.859966814517975,0.475932568311691,-0.252101570367813,0.860769689083099,0.442177027463913,-0.182664379477501,0.863541543483734,0.470031708478928,
- -0.302679181098938,0.855599701404572,0.419921904802322,-0.0636159554123878,0.877782702445984,0.474816411733627,-0.0314519330859184,0.880216658115387,0.473528861999512,-0.184051066637039,0.860404372215271,0.475215345621109,-0.125581592321396,0.853181540966034,0.506271183490753,-0.28513440489769,0.879934906959534,0.380016982555389,-0.181331023573875,0.866511821746826,0.465055137872696,-0.182809799909592,0.86321485042572,0.470574975013733,-0.0310633685439825,0.858145475387573,0.512466073036194,-0.11892232298851,0.863687872886658,0.489796727895737,-0.119866840541363,0.202679753303528,0.971881210803986,-0.106857061386108,0.201990082859993,0.973540723323822,0.0845078229904175,0.187983080744743,0.978529989719391,-0.295978099107742,0.172378182411194,0.939512014389038,-0.106778122484684,0.194563433527946,0.975060760974884,-0.120640836656094,0.193199783563614,0.973714411258698,0.0158609542995691,0.18381954729557,0.982832074165344,-0.120058663189411,0.200344741344452,0.972341477870941,0.0830533280968666,0.174355149269104,0.981174111366272,-0.119849622249603,0.202888712286949,0.971839666366577,-0.236721336841583,0.18074956536293,0.954616546630859,-0.295650005340576,0.168314322829247,0.940351724624634,0.0142835397273302,0.177895575761795,0.983945727348328,-0.216258928179741,0.251245468854904,0.943455219268799,-0.118297435343266,0.221437126398087,0.967972755432129,-0.460027307271957,0.158907204866409,0.873569309711456,-0.29578697681427,0.170003309845924,0.940004765987396,-0.239009216427803,0.172512218356133,0.955570042133331,-0.190168440341949,0.214517533779144,0.958028316497803,-0.221304848790169,0.234364420175552,0.946624219417572,-0.00754360109567642,0.0954302325844765,0.995407581329346,-0.41748896241188,0.347754865884781,0.839505612850189,-0.221582621335983,0.233426064252853,0.946791112422943,-0.190171211957932,0.214513346552849,0.958028674125671,0.491798907518387,-0.867805659770966,-0.0710451230406761,0.442307472229004,-0.893816590309143,-0.07386414706707,0.55305814743042,-0.830436110496521,-0.0671007707715034,0.488208293914795,-0.867464005947113,-0.0957017987966537,
- 0.21952186524868,-0.975313365459442,-0.0239593982696533,0.44231253862381,-0.89299201965332,-0.0832155346870422,0.546155571937561,-0.837310194969177,-0.0250142812728882,0.442264437675476,-0.894551515579224,-0.0646524950861931,0.302368670701981,-0.946484744548798,-0.112871661782265,0.442312717437744,-0.893600404262543,-0.0764056444168091,0.21295040845871,-0.975202977657318,-0.0602606162428856,0.129146695137024,-0.990169286727905,-0.0537219569087029,0.4422906935215,-0.894193351268768,-0.0692616254091263,0.132925689220428,-0.98283863067627,-0.12790222465992,0.29932102560997,-0.949060201644897,-0.0984462350606918,0.6726154088974,-0.533811450004578,-0.512478172779083,0.455523192882538,-0.603917598724365,-0.654050707817078,0.586579561233521,-0.568278014659882,-0.577048122882843,0.67361706495285,-0.50573194026947,-0.538957595825195,0.460738360881805,-0.633522689342499,-0.621586084365845,0.451061099767685,-0.637962400913239,-0.624137818813324,0.586064398288727,-0.570033848285675,-0.575838506221771,0.457723915576935,-0.583128154277802,-0.671155989170074,0.35868576169014,-0.583302021026611,-0.728768348693848,0.450635552406311,-0.640815794467926,-0.621516466140747,0.461134612560272,-0.635791122913361,-0.618970632553101,0.270483046770096,-0.709751486778259,-0.650455057621002,0.351650327444077,-0.606349468231201,-0.71321976184845,0.456425547599792,-0.595819473266602,-0.660813748836517,0.277566343545914,-0.608722031116486,-0.743245899677277,0.505480408668518,-0.681935787200928,-0.528633296489716,0.451539516448975,-0.70488578081131,-0.547035813331604,0.569392442703247,-0.650077104568481,-0.503182053565979,0.501798450946808,-0.668572843074799,-0.548824787139893,0.242008700966835,-0.799538314342499,-0.549700260162354,0.451457887887955,-0.700393080711365,-0.552843034267426,0.562637031078339,-0.679277896881104,-0.471191197633743,0.451596558094025,-0.709323346614838,-0.541221857070923,0.322462201118469,-0.727317214012146,-0.60582822561264,0.451521337032318,-0.703763663768768,-0.548493564128876,0.235490277409554,-0.780341267585754,-0.579320192337036,
- 0.151253014802933,-0.798329710960388,-0.582916975021362,0.451570570468903,-0.707070529460907,-0.544183254241943,0.154194667935371,-0.752538323402405,-0.640242218971252,0.319594830274582,-0.73703521490097,-0.595515191555023,0.603304028511047,-0.673355340957642,-0.427336990833282,0.561927855014801,-0.698257565498352,-0.443478852510452,0.660610795021057,-0.634077727794647,-0.401919066905975,0.59997034072876,-0.662368953227997,-0.448668152093887,0.35106286406517,-0.819784998893738,-0.452446132898331,0.561802089214325,-0.692851305007935,-0.452034890651703,0.654365181922913,-0.660375118255615,-0.368389904499054,0.561995506286621,-0.703511238098145,-0.435009270906448,0.436836957931519,-0.742267668247223,-0.508145928382874,0.561898529529572,-0.696755588054657,-0.445871829986572,0.344898879528046,-0.803746104240417,-0.484806180000305,0.265399485826492,-0.829453766345978,-0.491497337818146,0.561968564987183,-0.700887382030487,-0.439258694648743,0.267865598201752,-0.788771569728851,-0.553251922130585,0.434398293495178,-0.750786483287811,-0.497612327337265,0.605654418468475,-0.402413308620453,-0.686473846435547,0.557091474533081,-0.42224532365799,-0.715093016624451,0.665232062339783,-0.374643176794052,-0.64583957195282,0.601252794265747,-0.383360087871552,-0.701092123985291,0.353373944759369,-0.533925592899323,-0.768147349357605,0.556709110736847,-0.415685892105103,-0.719221949577332,0.660670280456543,-0.413937151432037,-0.62623542547226,0.557437598705292,-0.428727120161057,-0.710954546928406,0.435774087905884,-0.435979247093201,-0.787415444850922,0.55699622631073,-0.420558631420136,-0.716160416603088,0.345477908849716,-0.505460143089294,-0.790667414665222,0.269351571798325,-0.527647614479065,-0.805628776550293,0.557266652584076,-0.425452202558517,-0.713052809238434,0.269083648920059,-0.464420646429062,-0.843746066093445,0.433848738670349,-0.448554635047913,-0.781392335891724,0.690075755119324,-0.289369851350784,-0.663370609283447,0.646673381328583,-0.296239852905273,-0.702890872955322,0.749591529369354,-0.277413636445999,-0.600961089134216,
- 0.689760863780975,-0.268267512321472,-0.672504663467407,0.459264039993286,-0.366622388362885,-0.809113502502441,0.647359788417816,-0.290097892284393,-0.704818069934845,0.738763689994812,-0.320727378129959,-0.592758178710938,0.645964741706848,-0.302328020334244,-0.700947523117065,0.546848714351654,-0.279408186674118,-0.78923225402832,0.646835148334503,-0.294815301895142,-0.703340888023376,0.457629173994064,-0.334090113639832,-0.823989868164063,0.376527339220047,-0.344823747873306,-0.859839379787445,0.64633721113205,-0.299158096313477,-0.701963484287262,0.387444943189621,-0.274339288473129,-0.880127549171448,0.543137490749359,-0.292197376489639,-0.787161111831665,0.787452280521393,-0.613631904125214,0.0580933392047882,0.591291904449463,-0.806266069412231,0.0175762660801411,0.711095690727234,-0.701879918575287,0.0413219034671783,0.788461327552795,-0.614819347858429,0.0180544536560774,0.598648965358734,-0.798596441745758,0.0621549114584923,0.587470889091492,-0.806682646274567,0.064352422952652,0.710645854473114,-0.702208757400513,0.043421134352684,0.592949032783508,-0.805174112319946,-0.0103044025599957,0.503382682800293,-0.862795829772949,-0.0467887334525585,0.587085127830505,-0.806635856628418,0.0683351904153824,0.599004209041595,-0.798053205013275,0.0656128004193306,0.419886320829391,-0.90178519487381,0.102367304265499,0.497082084417343,-0.867498815059662,-0.018846308812499,0.591994822025299,-0.805914163589478,0.00667674653232098,0.425799012184143,-0.904070138931274,-0.0367743708193302,0.612663984298706,0.0591587722301483,-0.788126409053802,0.565823793411255,0.0511434376239777,-0.822938561439514,0.670714259147644,0.0693316906690598,-0.738468408584595,0.605639815330505,0.0825555846095085,-0.791444897651672,0.374419271945953,-0.0391816906630993,-0.92643129825592,0.564548015594482,0.0593042559921741,-0.823266983032227,0.671082556247711,0.0250541120767593,-0.740959286689758,0.567047417163849,0.0430693067610264,-0.822558403015137,0.437233507633209,0.0625161305069923,-0.897172570228577,0.565502762794495,0.0532208383083344,-0.823027431964874,
- 0.362998753786087,-0.00514819473028183,-0.931775391101837,0.287772506475449,-0.0253880843520164,-0.957362174987793,0.566427886486053,0.0471886917948723,-0.82275915145874,0.279806852340698,0.0473776310682297,-0.958886563777924,0.436753422021866,0.0478822961449623,-0.898306012153625,0.680473864078522,-0.728581011295319,0.0782634317874908,0.448637247085571,-0.892168581485748,0.0525345504283905,0.582973778247833,-0.809684753417969,0.0674709677696228,0.680198132991791,-0.732060849666595,0.0376489721238613,0.462131887674332,-0.881482303142548,0.0970728918910027,0.445937007665634,-0.889360427856445,0.100886963307858,0.582814574241638,-0.809731602668762,0.0682785511016846,0.449743002653122,-0.892843425273895,0.0237062461674213,0.355891913175583,-0.934508562088013,-0.00589596480131149,0.445657551288605,-0.88902336359024,0.105008020997047,0.46269166469574,-0.880804121494293,0.100501589477062,0.273907423019409,-0.950587630271912,0.146143183112144,0.349849343299866,-0.936539888381958,0.0223296135663986,0.449114948511124,-0.892521560192108,0.0412463061511517,0.275816261768341,-0.96117240190506,0.00855430494993925,-0.157423630356789,0.54795241355896,0.821563184261322,-0.359469652175903,0.582375645637512,0.729122877120972,-0.208623006939888,0.559153020381927,0.80238664150238,-0.15799506008625,0.546360671520233,0.822512984275818,-0.208372578024864,0.553640007972717,0.806265234947205,-0.0356753617525101,0.522609531879425,0.851825416088104,-0.366972804069519,0.491037547588348,0.790071606636047,-0.278278142213821,0.515616416931152,0.810370922088623,-0.207291200757027,0.531627893447876,0.821219980716705,-0.208134949207306,0.548570096492767,0.809784352779388,-0.1056844368577,0.550439834594727,0.828158676624298,-0.033322136849165,0.54820305109024,0.835681140422821,-0.206282049417496,0.513072669506073,0.833189189434052,-0.265147864818573,0.479455858469009,0.83655172586441,-0.108076199889183,0.562896907329559,0.819430649280548,-0.0333882048726082,0.54749584197998,0.836142063140869,-0.104984849691391,0.546796083450317,0.830657720565796,-0.00606951490044594,0.547020137310028,0.837097465991974,
- -0.262376099824905,0.471889764070511,0.84171187877655,-0.100704029202461,0.546865403652191,0.831142067909241,-0.104686751961708,0.545243501663208,0.831715226173401,-0.104771107435226,0.545682907104492,0.831416428089142,-0.100664339959621,0.546762645244598,0.831214427947998,-0.00742632523179054,0.568511486053467,0.822641849517822,0.728222787380219,-0.556471228599548,0.400039196014404,0.514841079711914,-0.708356916904449,0.482875823974609,0.639966130256653,-0.629434943199158,0.440743833780289,0.725823521614075,-0.580522477626801,0.369017601013184,0.523950338363647,-0.678028106689453,0.51551342010498,0.514325022697449,-0.681164026260376,0.52104264497757,0.639827132225037,-0.628936111927032,0.441656738519669,0.514614284038544,-0.723704695701599,0.45980829000473,0.417330026626587,-0.780330002307892,0.465747445821762,0.514228224754334,-0.678763449192047,0.524260997772217,0.524639844894409,-0.675575077533722,0.518026351928711,0.340241849422455,-0.714657723903656,0.61114639043808,0.413101494312286,-0.766969501972198,0.491024374961853,0.514799296855927,-0.714438259601593,0.473877280950546,0.334139883518219,-0.799285471439362,0.499493211507797,0.605312287807465,-0.622780025005341,0.495723813772202,0.561564445495605,-0.649639070034027,0.512459397315979,0.666104912757874,-0.58023476600647,0.468648940324783,0.603137254714966,-0.638998031616211,0.477395981550217,0.351024448871613,-0.707495033740997,0.613378047943115,0.561946928501129,-0.65532261133194,0.504745364189148,0.657465994358063,-0.557913959026337,0.506429195404053,0.561137080192566,-0.643982410430908,0.520011484622955,0.433014243841171,-0.732919335365295,0.524717092514038,0.561674356460571,-0.651202380657196,0.510350227355957,0.346519231796265,-0.731906354427338,0.586717665195465,0.263797432184219,-0.750547647476196,0.605878829956055,0.561357617378235,-0.646826148033142,0.516230225563049,0.27028951048851,-0.79341846704483,0.545372128486633,0.429617702960968,-0.725830614566803,0.537213683128357,0.633137345314026,-0.679820120334625,0.37011045217514,0.587182283401489,-0.708177983760834,0.39204728603363,
- 0.69306480884552,-0.63685816526413,0.337746739387512,0.628030180931091,-0.694159150123596,0.351740211248398,0.393710076808929,-0.762666940689087,0.513158559799194,0.58649069070816,-0.712244212627411,0.385664165019989,0.690373301506042,-0.617135167121887,0.377530068159103,0.587836682796478,-0.704091787338257,0.398375362157822,0.464671522378922,-0.783471167087555,0.412617713212967,0.587012887001038,-0.709196090698242,0.39045712351799,0.384858399629593,-0.784925818443298,0.485567212104797,0.307116746902466,-0.801485121250153,0.513128638267517,0.587507486343384,-0.706178307533264,0.395154535770416,0.304348051548004,-0.83959972858429,0.449938386678696,0.463319838047028,-0.777256548404694,0.425684124231339,0.680103600025177,-0.674002885818481,-0.288408368825912,0.635505378246307,-0.708042025566101,-0.307911336421967,0.731794476509094,-0.628753125667572,-0.262957185506821,0.678092420101166,-0.665105819702148,-0.312769949436188,0.431201785802841,-0.84348464012146,-0.320310354232788,0.635906755924225,-0.703900694847107,-0.316459268331528,0.723513722419739,-0.652264952659607,-0.226005345582962,0.635053157806396,-0.712065100669861,-0.299450904130936,0.514263987541199,-0.768222510814667,-0.381269782781601,0.635620951652527,-0.706915378570557,-0.310252755880356,0.4271200299263,-0.831414341926575,-0.355413287878037,0.35806804895401,-0.859430074691772,-0.364920884370804,0.635286331176758,-0.710060954093933,-0.303685337305069,0.364840924739838,-0.826190292835236,-0.429302573204041,0.510952293872833,-0.776264905929565,-0.369243294000626,0.735191106796265,-0.677589476108551,0.0191467441618443,0.517964482307434,-0.855400443077087,0.00170212471857667,0.64337432384491,-0.76546722650528,0.0113766342401505,0.73271906375885,-0.680174469947815,-0.0220361817628145,0.52988475561142,-0.846878826618195,0.0449269525706768,0.517669916152954,-0.854205012321472,0.0484944209456444,0.643216550350189,-0.765581727027893,0.0125395357608795,0.517602801322937,-0.855223894119263,-0.0260691754519939,0.417213529348373,-0.907205581665039,-0.0539523623883724,
- 0.517592012882233,-0.854015827178955,0.0524927563965321,0.530547618865967,-0.846277713775635,0.048303946852684,0.350269228219986,-0.931049823760986,0.102262899279594,0.412644982337952,-0.910544574260712,-0.0251563787460327,0.517870366573334,-0.855409920215607,-0.00917784869670868,0.344787329435349,-0.938034355640411,-0.0348320081830025,0.599656581878662,-0.566791772842407,-0.564941704273224,0.37230509519577,-0.649094223976135,-0.663374423980713,0.508115410804749,-0.606524646282196,-0.611511707305908,0.596086144447327,-0.541729927062988,-0.592629849910736,0.380236685276031,-0.67632669210434,-0.630874276161194,0.373248815536499,-0.679733395576477,-0.631385684013367,0.507859110832214,-0.608085215091705,-0.610173463821411,0.371399819850922,-0.630313575267792,-0.681738317012787,0.258869498968124,-0.637054860591888,-0.726049423217773,0.373295485973358,-0.682291507720947,-0.628592729568481,0.381086468696594,-0.678340613842011,-0.628193497657776,0.184620499610901,-0.759104430675507,-0.624240100383759,0.254535734653473,-0.659053385257721,-0.707714855670929,0.371980786323547,-0.641783833503723,-0.670629441738129,0.174628257751465,-0.664882719516754,-0.726247847080231,0.433350920677185,-0.792494595050812,-0.42913818359375,0.378731429576874,-0.813640415668488,-0.441080361604691,0.494487822055817,-0.764557003974915,-0.413442194461823,0.429255664348602,-0.781707525253296,-0.452407836914063,0.148878052830696,-0.895595133304596,-0.419219166040421,0.378636389970779,-0.809167265892029,-0.449313700199127,0.48745259642601,-0.787456631660461,-0.377229481935501,0.378792554140091,-0.817980825901031,-0.432924717664719,0.240074336528778,-0.837517559528351,-0.490845024585724,0.378708809614182,-0.81242823600769,-0.443328350782394,0.141740545630455,-0.880382478237152,-0.452588498592377,0.0599270910024643,-0.891255736351013,-0.449524194002151,0.378765761852264,-0.815802752971649,-0.437038242816925,0.0634040087461472,-0.855030298233032,-0.514687597751617,0.237286239862442,-0.845099925994873,-0.479063093662262,0.320698618888855,-0.370111107826233,-0.871877431869507,
- 0.266405999660492,-0.386808544397354,-0.882840275764465,0.392760902643204,-0.345433175563812,-0.852299809455872,0.312128812074661,-0.349874794483185,-0.883268535137177,0.0508243814110756,-0.491875648498535,-0.869180798530579,0.264696389436722,-0.379207968711853,-0.886643707752228,0.393495082855225,-0.386406809091568,-0.834177196025848,0.26807501912117,-0.394287556409836,-0.879018247127533,0.128060266375542,-0.394930899143219,-0.909741818904877,0.265952110290527,-0.384784698486328,-0.883861005306244,0.0371290743350983,-0.462057560682297,-0.886072397232056,-0.0368982367217541,-0.481193542480469,-0.875837504863739,0.26723450422287,-0.390513747930527,-0.880956709384918,-0.047355193644762,-0.416748821735382,-0.907787442207336,0.127761974930763,-0.407366573810577,-0.904283821582794,-0.0665753036737442,0.855848729610443,0.512923717498779,-0.060395173728466,0.856406092643738,0.512758314609528,0.136840134859085,0.856799125671387,0.497162044048309,-0.178650140762329,0.829796135425568,0.528699040412903,-0.0605172142386436,0.856824338436127,0.512044727802277,-0.0665647387504578,0.855756044387817,0.513079643249512,0.0691859573125839,0.855154395103455,0.513735592365265,-0.0664170309901237,0.854459643363953,0.515254855155945,0.137499883770943,0.849499940872192,0.509356141090393,-0.0684675350785255,0.872294306755066,0.484164118766785,-0.172021850943565,0.843483924865723,0.508864939212799,-0.184760227799416,0.83918160200119,0.511505424976349,0.0683785751461983,0.851578831672668,0.519747853279114,-0.16623517870903,0.86387026309967,0.47549369931221,-0.0675925686955452,0.864727914333344,0.497671514749527,-0.20877468585968,0.826243996620178,0.523196160793304,-0.182710185647011,0.836058735847473,0.517322719097137,-0.173080682754517,0.839500308036804,0.515055656433105,-0.183002606034279,0.854588329792023,0.485992878675461,-0.169309064745903,0.853323459625244,0.493126422166824,0.0581236071884632,0.803916037082672,0.591895818710327,-0.210631489753723,0.855578303337097,0.472884982824326,-0.169411703944206,0.852960348129272,0.493718862533569,
- -0.18344534933567,0.854053735733032,0.486764878034592,-0.188962653279305,0.899663865566254,0.393570899963379,-0.253270596265793,0.869466483592987,0.424125254154205,-0.361265480518341,0.804697036743164,0.471115559339523,-0.190097510814667,0.900356888771057,0.391433775424957,-0.0630998313426971,0.938864588737488,0.338454931974411,-0.253268271684647,0.873697340488434,0.41534098982811,-0.387702584266663,0.842453360557556,0.374111175537109,-0.253044307231903,0.888856172561646,0.381972849369049,-0.316034615039825,0.869627416133881,0.379302352666855,-0.253173738718033,0.882992684841156,0.395255774259567,-0.0575264096260071,0.931570053100586,0.358981907367706,-0.17873615026474,0.906207978725433,0.383197754621506,-0.252699762582779,0.898440599441528,0.359092563390732,-0.17819932103157,0.908468306064606,0.378061175346375,-0.307369738817215,0.887425005435944,0.343512326478958,-0.0561415702104568,0.929690659046173,0.364037662744522,-0.031209010630846,0.932594537734985,0.359574019908905,-0.178673148155212,0.906475961208344,0.382592916488647,-0.121009677648544,0.905588209629059,0.406530231237412,-0.295977503061295,0.907326638698578,0.298589676618576,-0.177745938301086,0.910336971282959,0.3737553358078,-0.178243964910507,0.908282458782196,0.378486633300781,-0.0249588042497635,0.915792882442474,0.400874614715576,-0.11722370237112,0.913931369781494,0.388571888208389,-0.204140067100525,0.763003647327423,0.613312602043152,-0.278871983289719,0.733644366264343,0.619674444198608,-0.403099477291107,0.672030806541443,0.621196866035461,-0.20472826063633,0.76449716091156,0.611253201961517,-0.0675603970885277,0.797640323638916,0.599337756633759,-0.276461184024811,0.740465998649597,0.612600445747375,-0.4035325050354,0.742312908172607,0.534914076328278,-0.267093569040298,0.765564143657684,0.585296928882599,-0.328590124845505,0.757265210151672,0.564427137374878,-0.270871251821518,0.755702614784241,0.59627366065979,-0.067508339881897,0.78425520658493,0.616754710674286,-0.189968377351761,0.771158516407013,0.607640147209167,-0.188109368085861,0.774651110172272,0.60376363992691,
- -0.310254633426666,0.783827543258667,0.537918627262115,-0.260546058416367,0.781880795955658,0.566372752189636,-0.0674904063344002,0.780879020690918,0.621025800704956,-0.0332920961081982,0.78135484457016,0.623198390007019,-0.189747050404549,0.771576166152954,0.607178926467896,-0.139679655432701,0.755315780639648,0.640302777290344,-0.286810487508774,0.814810991287231,0.503808438777924,-0.186537861824036,0.777576684951782,0.600481688976288,-0.188253924250603,0.774380803108215,0.604065358638763,-0.0381849855184555,0.751164257526398,0.659010052680969,-0.131114929914474,0.767849087715149,0.627069890499115,-0.0515080541372299,0.80858439207077,0.586121380329132,-0.0430675633251667,0.809676170349121,0.585294485092163,0.139686942100525,0.818698704242706,0.556973934173584,-0.160329252481461,0.777870237827301,0.607628524303436,-0.0434890203177929,0.810727417469025,0.583806276321411,-0.0515762567520142,0.808857798576355,0.585737884044647,0.0731039047241211,0.812844455242157,0.577875256538391,-0.0510902032256126,0.80690598487854,0.588466227054596,0.141507163643837,0.810685694217682,0.568123519420624,-0.0563788302242756,0.827767550945282,0.558231472969055,-0.165602743625641,0.789680004119873,0.590746462345123,-0.168259650468826,0.788599252700806,0.591438889503479,0.072916641831398,0.809536516666412,0.582523584365845,-0.162809461355209,0.814688801765442,0.556574583053589,-0.0538872629404068,0.818043231964111,0.572626829147339,-0.20674492418766,0.766595959663391,0.607936918735504,-0.165713280439377,0.785181224346161,0.596682190895081,-0.166074007749558,0.785025894641876,0.596786260604858,-0.171620398759842,0.804156184196472,0.569104015827179,-0.164116904139519,0.803490459918976,0.572248816490173,0.0698457434773445,0.757139146327972,0.649508953094482,-0.21446430683136,0.805682301521301,0.552160441875458,-0.164172202348709,0.802998483181,0.572923302650452,-0.171963781118393,0.803568005561829,0.569830656051636,-0.19174337387085,0.955111980438232,0.225822478532791,-0.262071430683136,0.931473433971405,0.252340823411942,-0.380342185497284,0.876647591590881,0.294667184352875,
- -0.192543715238571,0.955484747886658,0.223552688956261,-0.0590286329388618,0.981379508972168,0.182783678174019,-0.260710507631302,0.934321701526642,0.243049502372742,-0.392469495534897,0.900095283985138,0.18919874727726,-0.255384147167206,0.944199979305267,0.208003252744675,-0.319689184427261,0.926212728023529,0.199822038412094,-0.257536172866821,0.940438628196716,0.221924439072609,-0.0564274787902832,0.977182984352112,0.20476670563221,-0.185849472880363,0.958365142345428,0.216786175966263,-0.251596182584763,0.950140953063965,0.184205070137978,-0.184111163020134,0.960327684879303,0.209460869431496,-0.305903524160385,0.938043236732483,0.162782147526741,-0.0557812750339508,0.976071298122406,0.210174828767776,-0.030787480995059,0.977502524852753,0.208664685487747,-0.185640260577202,0.958605110645294,0.21590268611908,-0.130564779043198,0.96096670627594,0.243917614221573,-0.288093596696854,0.950490891933441,0.11648690700531,-0.182658895850182,0.961913585662842,0.203366905450821,-0.184284940361977,0.960134625434875,0.210191607475281,-0.0304609835147858,0.967136204242706,0.252427577972412,-0.124646253883839,0.965800285339355,0.227361425757408,-0.117861054837704,0.46614682674408,0.876821458339691,-0.109506323933601,0.466020554304123,0.877971172332764,0.0788413137197495,0.454517513513565,0.887241721153259,-0.296572893857956,0.427917897701263,0.853774428367615,-0.109467968344688,0.458955764770508,0.881689548492432,-0.118602067232132,0.457843959331512,0.881085991859436,0.0157344713807106,0.451173543930054,0.892297565937042,-0.118056587874889,0.463970929384232,0.877948462963104,0.0774598717689514,0.442478775978088,0.89342737197876,-0.117807179689407,0.466744691133499,0.876510679721832,-0.231855228543282,0.441513508558273,0.866780817508698,-0.296244412660599,0.424188792705536,0.855747103691101,0.0141365900635719,0.445801973342896,0.895020008087158,-0.212195977568626,0.504074454307556,0.837186813354492,-0.116349063813686,0.482619076967239,0.868067800998688,-0.45842769742012,0.397026717662811,0.795118749141693,-0.296387195587158,0.425803244113922,0.854895412921906,
- -0.234348490834236,0.433125734329224,0.870334923267365,-0.184813261032104,0.470896065235138,0.862612843513489,-0.217540711164474,0.487662881612778,0.845494508743286,-0.00793542712926865,0.370025962591171,0.928987503051758,-0.416775315999985,0.568248927593231,0.709500968456268,-0.217782855033875,0.486909210681915,0.845866441726685,-0.184727400541306,0.471017062664032,0.862565159797668,0.490010738372803,-0.85408079624176,0.174457803368568,0.441467493772507,-0.879258930683136,0.178914025425911,0.55669778585434,-0.813716411590576,0.167192310094833,0.486495643854141,-0.860487341880798,0.151273086667061,0.214435413479805,-0.943898618221283,0.251143127679825,0.44146129488945,-0.88102799654007,0.170004591345787,0.549362480640411,-0.80861496925354,0.210577696561813,0.441437900066376,-0.877443909645081,0.187682613730431,0.30738753080368,-0.938499569892883,0.157262608408928,0.441469430923462,-0.879742860794067,0.176514253020287,0.207619845867157,-0.954208612442017,0.215360298752785,0.132559418678284,-0.965367376804352,0.224708542227745,0.441457211971283,-0.878362715244293,0.183288425207138,0.136219561100006,-0.978910803794861,0.152242705225945,0.304495513439178,-0.937004625797272,0.171186313033104,0.675008118152618,-0.654131352901459,-0.341286361217499,0.453368246555328,-0.763355374336243,-0.460158377885818,0.583520531654358,-0.708472669124603,-0.396951228380203,0.676084756851196,-0.634034514427185,-0.375379323959351,0.460684686899185,-0.782030940055847,-0.419758498668671,0.44897449016571,-0.78803551197052,-0.421214789152145,0.583178222179413,-0.709364712238312,-0.395859599113464,0.45552009344101,-0.747902572154999,-0.482849031686783,0.356218785047531,-0.763952553272247,-0.538037776947021,0.448553740978241,-0.790069222450256,-0.417839884757996,0.461082637310028,-0.783481001853943,-0.416605740785599,0.264699310064316,-0.865047335624695,-0.426177680492401,0.349105596542358,-0.781939268112183,-0.51642644405365,0.454252332448959,-0.757369697093964,-0.469090521335602,0.271803557872772,-0.792759835720062,-0.54557740688324,0.502992808818817,-0.803832352161407,-0.317571699619293,
- 0.453955233097076,-0.82853490114212,-0.327802717685699,0.571635007858276,-0.763347148895264,-0.300889730453491,0.499540954828262,-0.796831905841827,-0.339879065752029,0.234622061252594,-0.923661053180695,-0.302989691495895,0.453868508338928,-0.825571775436401,-0.335312992334366,0.564991056919098,-0.782638788223267,-0.261269301176071,0.454012215137482,-0.831428170204163,-0.320312738418579,0.319927662611008,-0.868109703063965,-0.379515200853348,0.453935712575912,-0.827776491641998,-0.329740047454834,0.227801755070686,-0.913123428821564,-0.338100612163544,0.151277348399162,-0.929428517818451,-0.3365678191185,0.453987121582031,-0.829973220825195,-0.32409930229187,0.154216274619102,-0.901444911956787,-0.404493063688278,0.316998720169067,-0.874717772006989,-0.366579711437225,0.600976467132568,-0.767628133296967,-0.222653418779373,0.563177287578583,-0.793553352355957,-0.230443820357323,0.663292825222015,-0.718861520290375,-0.208040207624435,0.597748935222626,-0.763198554515839,-0.245406270027161,0.346741408109665,-0.915387511253357,-0.20453916490078,0.56307727098465,-0.79060423374176,-0.240601152181625,0.657037675380707,-0.735009491443634,-0.16751891374588,0.563214242458344,-0.796367764472961,-0.220427185297012,0.43806990981102,-0.854245364665985,-0.279927611351013,0.563155472278595,-0.792731523513794,-0.233307957649231,0.340406537055969,-0.90889835357666,-0.240888267755508,0.264860093593597,-0.933912873268127,-0.240116506814957,0.563203513622284,-0.794979214668274,-0.225410848855972,0.267425507307053,-0.912050366401672,-0.310882240533829,0.435600608587265,-0.859441161155701,-0.267606288194656,0.604024648666382,-0.579174995422363,-0.547458291053772,0.560061931610107,-0.603691160678864,-0.567351460456848,0.665481209754944,-0.54002320766449,-0.515276432037354,0.599828064441681,-0.565202176570892,-0.566350400447845,0.350762397050858,-0.728599607944489,-0.588309824466705,0.559597373008728,-0.597861409187317,-0.573944807052612,0.660818338394165,-0.5724076628685,-0.485457092523575,0.560479998588562,-0.609429657459259,-0.560765266418457,
- 0.433706283569336,-0.639023125171661,-0.635254502296448,0.559941172599792,-0.602126240730286,-0.569130897521973,0.342913061380386,-0.707222521305084,-0.618261337280273,0.268079459667206,-0.732140779495239,-0.626181423664093,0.560276508331299,-0.606568992137909,-0.564060568809509,0.268036067485809,-0.681848287582397,-0.680617153644562,0.431696474552155,-0.649642944335938,-0.625781297683716,0.691064357757568,-0.462777405977249,-0.555218040943146,0.650211572647095,-0.479504883289337,-0.589321732521057,0.74972677230835,-0.434221804141998,-0.499360948801041,0.690756440162659,-0.444718241691589,-0.570158958435059,0.459509491920471,-0.577946901321411,-0.674409747123718,0.651031017303467,-0.472970902919769,-0.593681156635284,0.7386834025383,-0.473637700080872,-0.479597955942154,0.64936226606369,-0.485930263996124,-0.584979057312012,0.544086754322052,-0.48881459236145,-0.681931018829346,0.650429785251617,-0.477798968553543,-0.590465307235718,0.457916498184204,-0.550899803638458,-0.697726249694824,0.379251569509506,-0.570708453655243,-0.728327035903931,0.649798095226288,-0.48267388343811,-0.587186813354492,0.38995772600174,-0.509394645690918,-0.767105162143707,0.540284931659698,-0.50089967250824,-0.676159501075745,0.788277328014374,-0.571853697299957,0.227161198854446,0.593090295791626,-0.767858564853668,0.242151439189911,0.713305413722992,-0.660051226615906,0.235643446445465,0.789295971393585,-0.584324955940247,0.188616901636124,0.599446535110474,-0.7488973736763,0.282518267631531,0.589203834533691,-0.755472004413605,0.286532580852509,0.712733924388886,-0.659705638885498,0.238325223326683,0.594800472259521,-0.774447441101074,0.215507715940475,0.508087337017059,-0.838422656059265,0.197217285633087,0.588813781738281,-0.754339993000031,0.290292114019394,0.599801898002625,-0.747419774532318,0.285659670829773,0.419458150863647,-0.837419450283051,0.35040482878685,0.501880466938019,-0.835225999355316,0.224752128124237,0.593813478946686,-0.770508110523224,0.231738716363907,0.425623148679733,-0.878419756889343,0.217309966683388,0.611604452133179,-0.163823857903481,-0.774016678333282,
- 0.56631475687027,-0.180661886930466,-0.80414479970932,0.671920001506805,-0.139253318309784,-0.727414608001709,0.604758203029633,-0.142537474632263,-0.783550024032593,0.37392857670784,-0.296732276678085,-0.878707766532898,0.565026938915253,-0.172710344195366,-0.806793451309204,0.672300577163696,-0.18287393450737,-0.717334687709808,0.567538022994995,-0.188446074724197,-0.801491677761078,0.437379032373428,-0.190637543797493,-0.878838360309601,0.565971910953522,-0.17852121591568,-0.804864048957825,0.362508833408356,-0.2653668820858,-0.893402338027954,0.289011895656586,-0.291353851556778,-0.91191291809082,0.566922247409821,-0.184498026967049,-0.802844822406769,0.281410455703735,-0.222286328673363,-0.933486461639404,0.436931997537613,-0.205000519752502,-0.875822603702545,0.679610550403595,-0.678502559661865,0.27886176109314,0.451089262962341,-0.840673446655273,0.299644291400909,0.584820866584778,-0.757227778434753,0.290844798088074,0.679246604442596,-0.693131864070892,0.241230875253677,0.46329003572464,-0.818771541118622,0.339080780744553,0.448378056287766,-0.824790298938751,0.344497174024582,0.584576487541199,-0.756945848464966,0.292067468166351,0.45221471786499,-0.849204063415527,0.272679835557938,0.354693353176117,-0.899465084075928,0.255255073308945,0.448099166154861,-0.823346495628357,0.348292499780655,0.463836282491684,-0.817181944847107,0.342154264450073,0.272541999816895,-0.872143089771271,0.406309455633163,0.348540782928467,-0.893531441688538,0.283056378364563,0.451572477817535,-0.844090163707733,0.289126455783844,0.274081826210022,-0.92105907201767,0.276639640331268,0.601559698581696,-0.735014855861664,-0.312856435775757,0.371578693389893,-0.84956431388855,-0.374392539262772,0.506754636764526,-0.791207015514374,-0.342331945896149,0.598035931587219,-0.721695721149445,-0.348580569028854,0.376418471336365,-0.864331066608429,-0.333528071641922,0.372646600008011,-0.86612993478775,-0.333096832036972,0.506529152393341,-0.792035520076752,-0.340746223926544,0.370596021413803,-0.838928997516632,-0.398568242788315,0.264448881149292,-0.860646963119507,-0.435147792100906,
- 0.372703641653061,-0.867465496063232,-0.329538702964783,0.377298206090927,-0.865228354930878,-0.330190867185593,0.18010176718235,-0.938030064105988,-0.296079277992249,0.260235130786896,-0.873943090438843,-0.410488963127136,0.371224850416183,-0.845470607280731,-0.383890211582184,0.170465335249901,-0.887840270996094,-0.427412241697311,0.430566370487213,-0.896586716175079,-0.103657178580761,0.377747803926468,-0.919734060764313,-0.106751032173634,0.493981301784515,-0.863778114318848,-0.0993468090891838,0.426622927188873,-0.895264744758606,-0.128429129719734,0.149990394711494,-0.987088084220886,-0.0562148317694664,0.377629488706589,-0.918692648410797,-0.115757398307323,0.486993014812469,-0.871522784233093,-0.057324007153511,0.377834409475327,-0.92069149017334,-0.097817450761795,0.241771250963211,-0.959674894809723,-0.14342574775219,0.377718865871429,-0.919459819793701,-0.109188452363014,0.142903238534927,-0.985391557216644,-0.0926404520869255,0.0595366880297661,-0.994547605514526,-0.0856179520487785,0.377794831991196,-0.920220971107483,-0.102295279502869,0.0630981773138046,-0.985159695148468,-0.159621492028236,0.23897796869278,-0.962298989295959,-0.129885360598564,0.321682274341583,-0.667556405067444,-0.671482741832733,0.268522769212723,-0.686800062656403,-0.675426721572876,0.389223098754883,-0.639343023300171,-0.663133502006531,0.313067436218262,-0.652759432792664,-0.689850687980652,0.0459673255681992,-0.781607806682587,-0.62207418680191,0.266673862934113,-0.680699110031128,-0.682300388813019,0.390034288167953,-0.669888734817505,-0.631761431694031,0.27031621336937,-0.692734956741333,-0.668616056442261,0.127922162413597,-0.705090463161469,-0.697483658790588,0.268019109964371,-0.685136437416077,-0.677313685417175,0.0317606627941132,-0.759711921215057,-0.649483740329742,-0.036501694470644,-0.772436916828156,-0.634041726589203,0.269410312175751,-0.689734935760498,-0.672074198722839,-0.0467634312808514,-0.724595725536346,-0.687585830688477,0.127676635980606,-0.714577913284302,-0.687805950641632,-0.0706506296992302,0.984927296638489,0.157882109284401,
- -0.0575047060847282,0.98590475320816,0.157115265727043,0.13360570371151,0.980670928955078,0.142947927117348,-0.175834581255913,0.967562854290009,0.1813954859972,-0.0576955452561378,0.986098170280457,0.155825778841972,-0.0706001669168472,0.984795808792114,0.15872286260128,0.0696144178509712,0.984879970550537,0.158635646104813,-0.0705041959881783,0.984544157981873,0.160318717360497,0.134205520153046,0.978470087051392,0.156796634197235,-0.0725103467702866,0.989351093769073,0.126201137900352,-0.169191226363182,0.972898662090302,0.157615303993225,-0.182014241814613,0.969909489154816,0.161699160933495,0.0687935724854469,0.983780384063721,0.165661111474037,-0.16351780295372,0.979150831699371,0.120522491633892,-0.071746364235878,0.987635672092438,0.13938570022583,-0.209342584013939,0.961425185203552,0.17843022942543,-0.179993957281113,0.96918511390686,0.168173640966415,-0.170257911086082,0.971530020236969,0.164747402071953,-0.182211086153984,0.97415292263031,0.133511289954185,-0.166753321886063,0.975791454315186,0.141507625579834,0.0585293732583523,0.966368615627289,0.250411808490753,-0.211212143301964,0.970011353492737,0.120280578732491,-0.166847541928291,0.975685596466064,0.14212529361248,-0.182651251554489,0.97394722700119,0.134407356381416,-0.187817335128784,0.981749653816223,0.0298709757626057,-0.252761602401733,0.965003490447998,0.0698559060692787,-0.362730920314789,0.921495795249939,0.138823285698891,-0.188905835151672,0.981603622436523,0.0277299098670483,-0.065587006509304,0.997269213199615,-0.0339474081993103,-0.252699196338654,0.96567302942276,0.0601553805172443,-0.389998555183411,0.920188307762146,0.0339797027409077,-0.252253115177155,0.967369258403778,0.0237733647227287,-0.319835841655731,0.947035431861877,0.0287945307791233,-0.252469420433044,0.966852426528931,0.0381535291671753,-0.0601152330636978,0.998110353946686,-0.0127312801778317,-0.18436361849308,0.982654571533203,0.020002506673336,-0.251763045787811,0.967788636684418,-0.000792340375483036,-0.183567598462105,0.982934892177582,0.0119138490408659,-0.311208337545395,0.950265169143677,-0.0120628252625465,
- -0.0587558373808861,0.99824446439743,-0.00747677311301231,-0.0258520506322384,0.999562501907349,-0.0143706118687987,-0.184268370270729,0.982691764831543,0.0190281253308058,-0.120221331715584,0.991907179355621,0.0408298335969448,-0.299760431051254,0.951954483985901,-0.0626605004072189,-0.182903379201889,0.983116924762726,0.00525617646053433,-0.18364842236042,0.982909560203552,0.0127295106649399,-0.0192201398313046,0.999302744865417,0.032009482383728,-0.116294644773006,0.99299818277359,0.0207424964755774,-0.207786709070206,0.935358703136444,0.286232441663742,-0.274932950735092,0.913013577461243,0.301360756158829,-0.397160887718201,0.858085989952087,0.325502216815948,-0.208434104919434,0.936056554317474,0.283467054367065,-0.0723298192024231,0.962786674499512,0.260403960943222,-0.272547036409378,0.916577398777008,0.292581677436829,-0.397188305854797,0.890421807765961,0.22223973274231,-0.263351052999496,0.929184377193451,0.259350448846817,-0.321551859378815,0.914897978305817,0.244061931967735,-0.267035990953445,0.924340605735779,0.272554934024811,-0.0722449794411659,0.957099556922913,0.280608415603638,-0.186250731348991,0.942571520805359,0.277253985404968,-0.184914350509644,0.943856179714203,0.273755729198456,-0.303898125886917,0.929007530212402,0.211165904998779,-0.256933480501175,0.936997473239899,0.236687928438187,-0.0722190216183662,0.955624520778656,0.285598009824753,-0.0319757834076881,0.957162022590637,0.287782073020935,-0.186090975999832,0.942725956439972,0.276835650205612,-0.139996826648712,0.939393520355225,0.312954813241959,-0.281487613916397,0.944352865219116,0.17018361389637,-0.183763712644577,0.944948375225067,0.270746231079102,-0.184992998838425,0.943781137466431,0.273961514234543,-0.0369608998298645,0.942326426506042,0.332648098468781,-0.131499335169792,0.946032643318176,0.296192795038223,-0.053628571331501,0.968425393104553,0.243467539548874,-0.0415055230259895,0.969442427158356,0.241782605648041,0.142195016145706,0.966892719268799,0.21189396083355,-0.161873400211334,0.947721123695374,0.274994313716888,
- -0.0419948063790798,0.969921886920929,0.239766716957092,-0.0536458492279053,0.968453705310822,0.243350893259048,0.0726551413536072,0.969519317150116,0.233995079994202,-0.0532287433743477,0.967765867710114,0.246162697672844,0.143980264663696,0.963574707508087,0.225374385714531,-0.0583936050534248,0.975745677947998,0.210975512862206,-0.171279117465019,0.95118921995163,0.256714850664139,-0.169779494404793,0.951616585254669,0.256126403808594,0.072465755045414,0.968203067779541,0.239439979195595,-0.168420240283012,0.962491869926453,0.212706357240677,-0.0560728386044502,0.972305655479431,0.226886630058289,-0.203319951891899,0.93893575668335,0.277598023414612,-0.167202830314636,0.950388431549072,0.262307167053223,-0.171735852956772,0.949042677879334,0.26424378156662,-0.168271064758301,0.958423018455505,0.23045639693737,-0.1695756316185,0.958325386047363,0.229905411601067,0.0693191736936569,0.9445481300354,0.320973068475723,-0.210934698581696,0.953743100166321,0.214197680354118,-0.169637948274612,0.958086371421814,0.230853945016861,-0.168585747480392,0.958171606063843,0.231270551681519,-0.190325304865837,0.97073769569397,-0.146440386772156,-0.264230787754059,0.95801317691803,-0.111323997378349,-0.382988572120667,0.922327637672424,-0.0512988604605198,-0.191096499562263,0.970262825489044,-0.148567095398903,-0.0634808838367462,0.978947281837463,-0.193990886211395,-0.262847691774368,0.957191646099091,-0.121224120259285,-0.395358026027679,0.90461277961731,-0.159272730350494,-0.25741907954216,0.953248023986816,-0.158283561468124,-0.319840908050537,0.934009790420532,-0.159146368503571,-0.259622067213058,0.95497864484787,-0.143570080399513,-0.0609709322452545,0.983042538166046,-0.172945275902748,-0.184403195977211,0.970458209514618,-0.15558348596096,-0.25355988740921,0.949832618236542,-0.183099582791328,-0.18278931081295,0.969629764556885,-0.162499874830246,-0.30602365732193,0.93121737241745,-0.197948858141899,-0.0603455677628517,0.98398494720459,-0.167726069688797,-0.0259518325328827,0.985035181045532,-0.17038868367672,-0.184209525585175,0.970361232757568,-0.156416013836861,
- -0.130471259355545,0.982750415802002,-0.131068721413612,-0.288169473409653,0.925551772117615,-0.245585918426514,-0.181440189480782,0.968903124332428,-0.168244913220406,-0.182944193482399,0.969711184501648,-0.161838203668594,-0.0253885537385941,0.991920828819275,-0.12429204583168,-0.124531254172325,0.981071949005127,-0.148289531469345,-0.121526017785072,0.758779644966125,0.639910042285919,-0.107042476534843,0.75932502746582,0.641847014427185,0.0798982009291649,0.751901268959045,0.65441632270813,-0.295826345682144,0.715082168579102,0.633359611034393,-0.106980204582214,0.754397749900818,0.647641360759735,-0.12233642488718,0.752277433872223,0.647389054298401,0.0168706327676773,0.750676155090332,0.660454928874969,-0.121710874140263,0.757311701774597,0.641611754894257,0.0785213708877563,0.742984533309937,0.664686679840088,-0.121543347835541,0.758642435073853,0.640069484710693,-0.235920265316963,0.731150209903717,0.640125751495361,-0.295494049787521,0.7123863697052,0.636544585227966,0.0152217317372561,0.746553957462311,0.665150821208954,-0.215802505612373,0.779541075229645,0.58800083398819,-0.119888603687286,0.771413087844849,0.624938905239105,-0.459204852581024,0.664073884487152,0.590031206607819,-0.295631170272827,0.713495314121246,0.635237514972687,-0.238209068775177,0.725176870822906,0.646045625209808,-0.185633704066277,0.758301496505737,0.62491512298584,-0.220827788114548,0.768108785152435,0.601035892963409,-0.00682789925485849,0.68859738111496,0.725111782550812,-0.417668342590332,0.79144012928009,0.446291089057922,-0.22109916806221,0.767479479312897,0.601739525794983,-0.185562998056412,0.758379697799683,0.624841451644897,0.491186708211899,-0.727277994155884,0.479377090930939,0.442820966243744,-0.748984754085541,0.492880821228027,0.556785404682159,-0.693027496337891,0.457933276891708,0.487545073032379,-0.742120981216431,0.459952503442764,0.214189410209656,-0.782687127590179,0.584400415420532,0.442796736955643,-0.754202902317047,0.484880357980728,0.549498796463013,-0.672071516513824,0.496357649564743,0.442805260419846,-0.743775308132172,0.500721216201782,
- 0.304641604423523,-0.813752949237823,0.49497464299202,0.442818403244019,-0.750414550304413,0.490703582763672,0.207491934299469,-0.805567622184753,0.554984629154205,0.134066373109818,-0.812338531017303,0.56756716966629,0.442817986011505,-0.746393263339996,0.496799021959305,0.137720942497253,-0.851682782173157,0.505637645721436,0.301693975925446,-0.807017862796783,0.507644474506378,0.671510577201843,-0.737216174602509,-0.0747399032115936,0.454486459493637,-0.879227995872498,-0.142829954624176,0.58481752872467,-0.804408550262451,-0.104477658867836,0.672677218914032,-0.731353282928467,-0.112373784184456,0.456920564174652,-0.884049892425537,-0.0983837023377419,0.450184971094131,-0.887555003166199,-0.0978750884532928,0.584399402141571,-0.804923295974731,-0.102839171886444,0.456589072942734,-0.87339985370636,-0.169408246874809,0.355501115322113,-0.90949821472168,-0.215480715036392,0.449773669242859,-0.888179421424866,-0.0940262675285339,0.45733243227005,-0.884226858615875,-0.0948150902986526,0.267169237136841,-0.960803329944611,-0.0740118250250816,0.34834960103035,-0.918182611465454,-0.18866229057312,0.455350309610367,-0.877023220062256,-0.153252616524696,0.274504244327545,-0.93822181224823,-0.210683092474937,0.504493832588196,-0.863404452800751,0.00432635843753815,0.456660807132721,-0.889631748199463,0.00402876501902938,0.572272181510925,-0.820050060749054,0.00474158674478531,0.500946819782257,-0.865258812904358,-0.0194786265492439,0.237102299928665,-0.969522774219513,0.0617096200585365,0.456595927476883,-0.889660358428955,-0.00496046245098114,0.565529942512512,-0.8232781291008,0.0488779284060001,0.456688642501831,-0.889533042907715,0.0129049401730299,0.319928139448166,-0.946990430355072,-0.0292461775243282,0.4566470682621,-0.889646470546722,0.00162495416589081,0.230403944849968,-0.972756564617157,0.0256677269935608,0.156621530652046,-0.987110495567322,0.0329038165509701,0.456679165363312,-0.889591574668884,0.00843594782054424,0.159399539232254,-0.986433386802673,-0.0392549820244312,0.316944003105164,-0.948328673839569,-0.014806155115366,
- 0.602088093757629,-0.794524013996124,0.0788767784833908,0.562539875507355,-0.82275265455246,0.0814055055379868,0.662726759910584,-0.745154678821564,0.0744159817695618,0.598823964595795,-0.798941195011139,0.0557030066847801,0.352710455656052,-0.92383348941803,0.14875116944313,0.562444090843201,-0.823773801326752,0.0710869282484055,0.656331956386566,-0.745223641395569,0.1177713945508,0.562575042247772,-0.821664392948151,0.0915266200900078,0.437751024961472,-0.897227823734283,0.0579353645443916,0.562519013881683,-0.823049306869507,0.0785010159015656,0.346518337726593,-0.931125581264496,0.113710880279541,0.264468252658844,-0.956306159496307,0.124639727175236,0.562564730644226,-0.822218894958496,0.0864696428179741,0.267338961362839,-0.962262988090515,0.0507926978170872,0.435339748859406,-0.897434711456299,0.0713472962379456,0.604591846466064,-0.740868747234344,-0.292544394731522,0.556062161922455,-0.774018228054047,-0.302804619073868,0.66606080532074,-0.692470788955688,-0.277213394641876,0.600276708602905,-0.734956204891205,-0.315447747707367,0.354271560907364,-0.893585503101349,-0.275674909353256,0.55570262670517,-0.771518766880035,-0.309763461351395,0.66124427318573,-0.711612820625305,-0.237409472465515,0.556389391422272,-0.776461541652679,-0.295868843793869,0.436369955539703,-0.828559517860413,-0.350813895463943,0.555976331233978,-0.773405849933624,-0.304522067308426,0.346648961305618,-0.885022461414337,-0.310757130384445,0.269616901874542,-0.912095785140991,-0.308849602937698,0.556226193904877,-0.775219857692719,-0.299410611391068,0.26950067281723,-0.885789930820465,-0.377816915512085,0.434433728456497,-0.83470630645752,-0.338426768779755,0.691691040992737,-0.63566255569458,-0.342777848243713,0.648481428623199,-0.665461242198944,-0.369639217853546,0.749504089355469,-0.589028775691986,-0.302140414714813,0.691372454166412,-0.624367773532867,-0.363550662994385,0.456969887018204,-0.788715720176697,-0.411225080490112,0.649215519428253,-0.661431312561035,-0.375536739826202,0.738566219806671,-0.618154585361481,-0.269081771373749,
- 0.647714138031006,-0.669455647468567,-0.363724648952484,0.54390025138855,-0.707503616809845,-0.451232999563217,0.648661017417908,-0.664495229721069,-0.371059238910675,0.45528781414032,-0.772102177143097,-0.443363815546036,0.37899911403656,-0.800846219062805,-0.463686317205429,0.648109316825867,-0.667424321174622,-0.366741240024567,0.389811098575592,-0.758279263973236,-0.522551417350769,0.540048360824585,-0.716609656810761,-0.44138240814209,0.788336634635925,-0.446224957704544,0.42356675863266,0.59236353635788,-0.623148500919342,0.510677516460419,0.710882604122162,-0.527275264263153,0.46543163061142,0.789260387420654,-0.472240686416626,0.392500549554825,0.599956333637238,-0.589788019657135,0.540557622909546,0.588468372821808,-0.594955086708069,0.547479152679443,0.710445523262024,-0.526271164417267,0.467232227325439,0.594073414802551,-0.639289855957031,0.488247185945511,0.506321549415588,-0.706078469753265,0.495067477226257,0.588076531887054,-0.592486619949341,0.550568521022797,0.60030335187912,-0.587259352207184,0.542920231819153,0.419302701950073,-0.64695531129837,0.636894106864929,0.499994933605194,-0.692796349525452,0.519652128219604,0.593086898326874,-0.629523813724518,0.501943945884705,0.425353765487671,-0.73464173078537,0.528560042381287,0.611989915370941,-0.43979275226593,-0.657305717468262,0.564902186393738,-0.467669665813446,-0.679831385612488,0.672333002090454,-0.39958980679512,-0.623134255409241,0.605099856853485,-0.423497349023819,-0.674169301986694,0.375104010105133,-0.601640164852142,-0.705213487148285,0.563688278198242,-0.461667478084564,-0.684922397136688,0.672560274600983,-0.436553508043289,-0.597564876079559,0.566067337989807,-0.473576337099075,-0.674754202365875,0.437378793954849,-0.503960907459259,-0.74479740858078,0.564597368240356,-0.466148644685745,-0.681127965450287,0.363794296979904,-0.578179478645325,-0.730316579341888,0.288361787796021,-0.610022902488709,-0.738051176071167,0.565479099750519,-0.470575511455536,-0.677341997623444,0.280616253614426,-0.553820669651031,-0.783924221992493,0.436945676803589,-0.516161262989044,-0.736651957035065,
- 0.677151083946228,-0.528038024902344,0.512486398220062,0.450825154781342,-0.668960869312286,0.590972244739532,0.587473034858704,-0.592943906784058,0.550720512866974,0.676820755004883,-0.554872810840607,0.483766406774521,0.465752273797989,-0.633209705352783,0.61815881729126,0.448164045810699,-0.637441098690033,0.626751780509949,0.587109506130219,-0.591903686523438,0.552225053310394,0.451919764280319,-0.686974883079529,0.569064199924469,0.356035530567169,-0.739272594451904,0.571589648723602,0.447889149188995,-0.634679138660431,0.629744172096252,0.466289460659027,-0.630639553070068,0.620377242565155,0.272246509790421,-0.658359050750732,0.701744437217712,0.349965572357178,-0.723474085330963,0.595070838928223,0.451295912265778,-0.676061272621155,0.582471609115601,0.27449557185173,-0.751858115196228,0.599467694759369,0.600981771945953,-0.791235625743866,-0.112991973757744,0.369363009929657,-0.918203949928284,-0.143082231283188,0.505788207054138,-0.853252768516541,-0.12703549861908,0.597467064857483,-0.787604987621307,-0.150703519582748,0.380880326032639,-0.919135689735413,-0.100596822798252,0.370398849248886,-0.923672437667847,-0.0981521308422089,0.505593657493591,-0.853596091270447,-0.125494450330734,0.368390083312988,-0.914067804813385,-0.169613897800446,0.259913563728333,-0.944713711738586,-0.199902281165123,0.370452165603638,-0.924052000045776,-0.0943033769726753,0.381736636161804,-0.919138967990875,-0.0972658172249794,0.178405940532684,-0.982974767684937,-0.0439538322389126,0.255703747272491,-0.951305389404297,-0.172144040465355,0.369013756513596,-0.91666305065155,-0.153485313057899,0.167845726013184,-0.968380033969879,-0.18457493185997,0.42906129360199,-0.893734753131866,0.130937486886978,0.374523043632507,-0.917486250400543,0.133982807397842,0.490954846143723,-0.861910343170166,0.126783445477486,0.425172358751297,-0.898748993873596,0.107138864696026,0.146500796079636,-0.968564867973328,0.201046526432037,0.374445050954819,-0.918645203113556,0.126023545861244,0.484076738357544,-0.858659029006958,0.168447211384773,0.374576538801193,-0.916276395320892,0.141880378127098,
- 0.23594231903553,-0.965838968753815,0.107173897325993,0.374505370855331,-0.917789041996002,0.131943374872208,0.1393723487854,-0.976433098316193,0.164784073829651,0.0628355070948601,-0.982885241508484,0.173171311616898,0.374552488327026,-0.916895806789398,0.137886211276054,0.0664152950048447,-0.992765426635742,0.100029081106186,0.233034580945969,-0.964824438095093,0.121690779924393,0.323498487472534,-0.817296504974365,-0.476838827133179,0.263048678636551,-0.839480519294739,-0.47547647356987,0.395661979913712,-0.785527527332306,-0.475813269615173,0.314689368009567,-0.807539284229279,-0.498849540948868,0.0471079647541046,-0.915231108665466,-0.400166034698486,0.261559247970581,-0.836104929447174,-0.482198417186737,0.396447628736496,-0.807922422885895,-0.435993939638138,0.264507353305817,-0.842772305011749,-0.468797087669373,0.127902239561081,-0.860981941223145,-0.492291659116745,0.262676864862442,-0.838639140129089,-0.477163761854172,0.0331447832286358,-0.901198029518127,-0.432138234376907,-0.0405263304710388,-0.910078346729279,-0.412450134754181,0.263761788606644,-0.841091513633728,-0.472223192453384,-0.0511115305125713,-0.877170741558075,-0.477450788021088,0.127654507756233,-0.867662072181702,-0.480486065149307,-0.0694428905844688,0.992429792881012,-0.101295679807663,-0.0552873536944389,0.993209660053253,-0.102361634373665,0.136918172240257,0.983918249607086,-0.114709734916687,-0.173608154058456,0.981985986232758,-0.0745905637741089,-0.0555320046842098,0.993023633956909,-0.10402013361454,-0.0694064050912857,0.992497742176056,-0.100653067231178,0.0671066269278526,0.992676794528961,-0.100446544587612,-0.0692995563149452,0.992693960666656,-0.0987739413976669,0.137574404478073,0.985371649265289,-0.100578367710114,-0.0712325274944305,0.988496959209442,-0.133415222167969,-0.176487013697624,0.979639410972595,-0.0957033410668373,-0.179858162999153,0.979146540164948,-0.094462051987648,0.0663612708449364,0.993371188640594,-0.0938615128397942,-0.170104876160622,0.975866258144379,-0.136928558349609,-0.0704677104949951,0.990325331687927,-0.119541086256504,
- -0.208712756633759,0.975052654743195,-0.0755731537938118,-0.177859276533127,0.980105817317963,-0.0880837589502335,-0.177615284919739,0.980141222476959,-0.0881819725036621,-0.186174362897873,0.974681258201599,-0.123837418854237,-0.173127472400665,0.977844417095184,-0.117674097418785,0.0564178675413132,0.998375236988068,-0.00800169538706541,-0.210588872432709,0.968428432941437,-0.133411765098572,-0.173250630497932,0.977917909622192,-0.116879470646381,-0.186654701828957,0.974717795848846,-0.122822530567646,-0.186095610260963,0.956376731395721,-0.225193157792091,-0.248647570610046,0.950972735881805,-0.183916509151459,-0.364605575799942,0.925570428371429,-0.101893082261086,-0.187110528349876,0.955731630325317,-0.22708298265934,-0.0605083107948303,0.954431712627411,-0.292230784893036,-0.248637273907661,0.949176490306854,-0.192985594272614,-0.391616493463516,0.897233188152313,-0.203983753919601,-0.248409643769264,0.941725015640259,-0.226818531751633,-0.318900018930435,0.922765672206879,-0.216347590088844,-0.248534873127937,0.944794237613678,-0.213527992367744,-0.0548400469124317,0.961056172847748,-0.27085742354393,-0.181179150938988,0.955004990100861,-0.23481822013855,-0.248084217309952,0.9360072016716,-0.249689266085625,-0.180559441447258,0.953495919704437,-0.241337656974792,-0.310026556253433,0.915508329868317,-0.256374776363373,-0.0534374229609966,0.962611317634583,-0.265563279390335,-0.0235700756311417,0.962041318416595,-0.271884024143219,-0.181105136871338,0.9548259973526,-0.235602274537086,-0.12129221111536,0.96868097782135,-0.216669231653214,-0.298334300518036,0.904363334178925,-0.305161595344543,-0.180035054683685,0.952201128005981,-0.246780067682266,-0.180616244673729,0.953635275363922,-0.240744143724442,-0.0168670993298292,0.973915636539459,-0.226282522082329,-0.117537423968315,0.964640855789185,-0.235908776521683,-0.202442333102226,0.97870534658432,0.0339577682316303,-0.276420772075653,0.959380626678467,0.0563961267471313,-0.402027994394302,0.910694420337677,0.0949163213372231,-0.202991306781769,0.978671967983246,0.0315544381737709,
- -0.0706885010004044,0.997493386268616,0.00321012153290212,-0.274000823497772,0.96058714389801,0.0468619428575039,-0.402198016643524,0.915418386459351,-0.0156831983476877,-0.264654248952866,0.96428120136261,0.0109470402821898,-0.326401144266129,0.945230960845947,-0.000838398816995323,-0.268409132957459,0.962975203990936,0.0252078920602798,-0.070667564868927,0.997197985649109,0.0245404448360205,-0.185727223753929,0.982282102108002,0.02504912763834,-0.184472143650055,0.982601225376129,0.021559426560998,-0.308377116918564,0.950526058673859,-0.0374674648046494,-0.25814551115036,0.966014921665192,-0.0132737196981907,-0.070657417178154,0.997054696083069,0.029823113232851,-0.034945048391819,0.998897552490234,0.0313450843095779,-0.18557895720005,0.982320427894592,0.0246365629136562,-0.141251668334007,0.988202095031738,0.0592011660337448,-0.285340696573257,0.954849481582642,-0.0827237367630005,-0.18338942527771,0.982865214347839,0.0185543708503246,-0.184539914131165,0.982584357261658,0.0217476841062307,-0.0396357886493206,0.996193170547485,0.0776412710547447,-0.133108720183373,0.990217626094818,0.04184665158391,-0.0496795065701008,0.99865448474884,-0.0148717369884253,-0.0443091616034508,0.998894393444061,-0.0157087966799736,0.136929228901863,0.989622354507446,-0.0435654558241367,-0.161128997802734,0.986703753471375,0.0212879739701748,-0.0446899868547916,0.998850584030151,-0.0173315703868866,-0.0497899018228054,0.998637080192566,-0.0156502779573202,0.0714078992605209,0.997168719768524,-0.02357142791152,-0.0492539033293724,0.998715698719025,-0.0118720773607492,0.138704061508179,0.989879786968231,-0.0299892667680979,-0.0545258969068527,0.997297048568726,-0.049248892813921,-0.165706813335419,0.986174941062927,0.000459806062281132,-0.169090211391449,0.985598623752594,0.00198997557163239,0.0712477937340736,0.997292518615723,-0.0182095803320408,-0.162923395633698,0.985748171806335,-0.0419109202921391,-0.0519400350749493,0.998173415660858,-0.0308557618409395,-0.203647762537003,0.978686094284058,0.0264774560928345,-0.166513830423355,0.986004590988159,0.00825484097003937,
- -0.166176304221153,0.98606288433075,0.00808980315923691,-0.174967020750046,0.984208106994629,-0.0268508344888687,-0.164224237203598,0.986162483692169,-0.0226725414395332,0.0684488266706467,0.99543708562851,0.0664828792214394,-0.211188644170761,0.976673126220703,-0.03884681686759,-0.164279326796532,0.986172199249268,-0.0218375511467457,-0.175339996814728,0.984168767929077,-0.0258393920958042,-0.191249504685402,0.900235891342163,-0.391150951385498,-0.259660601615906,0.897374451160431,-0.356784820556641,-0.382177531719208,0.878167510032654,-0.287684291601181,-0.192035496234894,0.899195551872253,-0.393153578042984,-0.062960721552372,0.895874559879303,-0.439823508262634,-0.258311033248901,0.894166707992554,-0.365706741809845,-0.394204914569855,0.833528578281403,-0.387082189321518,-0.253059327602386,0.881456434726715,-0.398742377758026,-0.320236891508102,0.861349940299988,-0.39436599612236,-0.255169659852982,0.886605083942413,-0.385771691799164,-0.060572661459446,0.905301570892334,-0.420428365468979,-0.188525408506393,0.897103607654572,-0.399578988552094,-0.249323219060898,0.872219026088715,-0.420799285173416,-0.186514496803284,0.893887460231781,-0.407648891210556,-0.30642506480217,0.84860372543335,-0.43124857544899,-0.0599789656698704,0.907562375068665,-0.41561171412468,-0.0313207618892193,0.907902359962463,-0.418009877204895,-0.188282698392868,0.89671790599823,-0.40055787563324,-0.129122912883759,0.916374802589417,-0.378925561904907,-0.288579106330872,0.830789029598236,-0.475932538509369,-0.184848412871361,0.891187310218811,-0.414265930652618,-0.18673050403595,0.894235193729401,-0.406786441802979,-0.0307701602578163,0.925769686698914,-0.37683367729187,-0.123018637299538,0.910089015960693,-0.395732998847961,-0.117912039160728,0.898301362991333,0.423262864351273,-0.109577938914299,0.898887515068054,0.424256891012192,0.0821614563465118,0.894876480102539,0.438686281442642,-0.293244063854218,0.854924023151398,0.427916884422302,-0.109510004520416,0.895450294017792,0.431481629610062,-0.118685409426689,0.894192099571228,0.431664615869522,
- 0.0152928326278925,0.89560204744339,0.44459342956543,-0.118116587400436,0.89722740650177,0.425477832555771,0.0807578265666962,0.888847053050995,0.45103132724762,-0.11785838752985,0.898581564426422,0.422682732343674,-0.232308477163315,0.872424006462097,0.43001064658165,-0.29292032122612,0.853233695030212,0.431497395038605,0.0137397721409798,0.892967939376831,0.449910581111908,-0.212386965751648,0.904942870140076,0.36874133348465,-0.116339504718781,0.906256258487701,0.406404495239258,-0.458695471286774,0.793900609016418,0.399149477481842,-0.293024927377701,0.853778541088104,0.430347055196762,-0.234804272651672,0.867872357368469,0.437795042991638,-0.185462266206741,0.893678665161133,0.408585697412491,-0.217763260006905,0.896801173686981,0.385132163763046,-0.00804930180311203,0.852573990821838,0.522544622421265,-0.416066944599152,0.880093574523926,0.228743523359299,-0.218010455369949,0.896416068077087,0.385888248682022,-0.185388475656509,0.893737196922302,0.408491194248199,0.49051496386528,-0.579485654830933,0.65083909034729,0.440727472305298,-0.597428917884827,0.6699538230896,0.55563485622406,-0.552181899547577,0.621582806110382,0.487032294273376,-0.598608016967773,0.635978102684021,0.21482340991497,-0.605732142925262,0.766119778156281,0.440689206123352,-0.603994607925415,0.664065897464752,0.548617899417877,-0.522170603275299,0.652959704399109,0.440731525421143,-0.590884625911713,0.675730049610138,0.303832769393921,-0.659133851528168,0.687915861606598,0.440720587968826,-0.599195897579193,0.668378472328186,0.20812976360321,-0.635366082191467,0.743634283542633,0.135209992527962,-0.638689517974854,0.757491946220398,0.440733730792999,-0.594164669513702,0.672846376895905,0.138507306575775,-0.692492783069611,0.708003878593445,0.300874829292297,-0.64925479888916,0.69852888584137,0.675057053565979,-0.728228807449341,0.118240617215633,0.451154947280884,-0.888087272644043,0.0880923047661781,0.581935584545136,-0.806301891803741,0.105963669717312,0.676101863384247,-0.732577323913574,0.0788461565971375,0.460511684417725,-0.877791523933411,0.13195113837719,
- 0.446794986724854,-0.884423851966858,0.134791433811188,0.581678092479706,-0.806346535682678,0.107031904160976,0.453276991844177,-0.889335215091705,0.0601905509829521,0.357763290405273,-0.933424353599548,0.0269161239266396,0.446376413106918,-0.88401985168457,0.138769596815109,0.460912197828293,-0.877064347267151,0.135345086455345,0.267457783222198,-0.947364747524261,0.175972446799278,0.350597769021988,-0.934922993183136,0.0547747202217579,0.452029347419739,-0.888659775257111,0.0771588161587715,0.2746921479702,-0.96077299118042,0.038204737007618,0.502576291561127,-0.834220230579376,0.226922333240509,0.452074021100998,-0.860824346542358,0.233688950538635,0.572008788585663,-0.791316747665405,0.215925186872482,0.499031513929367,-0.84197610616684,0.205046385526657,0.238900974392891,-0.920622706413269,0.308836847543716,0.452007293701172,-0.862781345844269,0.226490586996078,0.565213561058044,-0.78314071893692,0.259276509284973,0.452115446329117,-0.858831942081451,0.240830540657043,0.320621490478516,-0.92228502035141,0.215852335095406,0.452059745788574,-0.861314833164215,0.231902435421944,0.232394635677338,-0.932898163795471,0.275125414133072,0.151352316141129,-0.94595193862915,0.286823332309723,0.452097356319427,-0.859856903553009,0.237179398536682,0.154272839426994,-0.964205265045166,0.215657293796539,0.317655593156815,-0.919874250888824,0.230057567358017,0.600802183151245,-0.748278856277466,0.281274914741516,0.559757173061371,-0.775766789913177,0.291303783655167,0.660622477531433,-0.702559173107147,0.264553606510162,0.597570240497589,-0.758322358131409,0.260493725538254,0.350738555192947,-0.854745328426361,0.382613271474838,0.55966329574585,-0.779057323932648,0.28257167339325,0.654533982276917,-0.69146865606308,0.305706530809402,0.559801995754242,-0.772458791732788,0.299881964921951,0.440283924341202,-0.850606739521027,0.287433952093124,0.559736430644989,-0.776670813560486,0.288925230503082,0.344533532857895,-0.870984673500061,0.350260376930237,0.262440234422684,-0.892334461212158,0.367238819599152,0.55978536605835,-0.774130523204803,0.295571148395538,
- 0.26517191529274,-0.917357623577118,0.296881824731827,0.437910407781601,-0.847444713115692,0.300119996070862,0.605339407920837,-0.79066276550293,-0.0917419716715813,0.558326244354248,-0.824382781982422,-0.0930854082107544,0.668126046657562,-0.738666474819183,-0.0893279239535332,0.600940406322479,-0.790890574455261,-0.115597978234291,0.35438460111618,-0.934401512145996,-0.0361330434679985,0.557935297489166,-0.823690235614777,-0.101205661892891,0.663490116596222,-0.746821701526642,-0.0451478101313114,0.558676958084106,-0.825014889240265,-0.0850328281521797,0.433025538921356,-0.89245468378067,-0.126544266939163,0.558228373527527,-0.824208378791809,-0.0951937064528465,0.346612721681595,-0.935223281383514,-0.0722299069166183,0.269364416599274,-0.960949897766113,-0.0633886009454727,0.558504700660706,-0.824702858924866,-0.0890934839844704,0.269053131341934,-0.953347325325012,-0.136891514062881,0.43096798658371,-0.895325779914856,-0.112509861588478,0.692424714565277,-0.701874613761902,-0.167093142867088,0.648387372493744,-0.73830634355545,-0.185735240578651,0.748482644557953,-0.648061454296112,-0.14067754149437,0.692164123058319,-0.696191668510437,-0.190331310033798,0.458791643381119,-0.867073774337769,-0.194147706031799,0.649119853973389,-0.735948085784912,-0.192416131496429,0.737596750259399,-0.667543888092041,-0.101667553186417,0.647622764110565,-0.740625083446503,-0.17905130982399,0.544082045555115,-0.799785375595093,-0.253610461950302,0.648566901683807,-0.737741470336914,-0.187346205115318,0.457278728485107,-0.859302580356598,-0.229118421673775,0.377113342285156,-0.893998563289642,-0.24197593331337,0.648016214370728,-0.739448845386505,-0.182456627488136,0.387616395950317,-0.867975294589996,-0.310439020395279,0.540248692035675,-0.806030988693237,-0.241755336523056,0.788204550743103,-0.322146594524384,0.524361789226532,0.591313302516937,-0.471161901950836,0.654488444328308,0.712054371833801,-0.388630867004395,0.584760427474976,0.789102017879486,-0.355219602584839,0.50113582611084,0.597312331199646,-0.43132084608078,0.676151216030121,
- 0.587238252162933,-0.434117257595062,0.683149695396423,0.711551368236542,-0.386996120214462,0.586454391479492,0.593114733695984,-0.492666870355606,0.636784315109253,0.508385360240936,-0.55334484577179,0.659813582897186,0.586829841136932,-0.430907428264618,0.685528635978699,0.597667574882507,-0.428196012973785,0.677821278572083,0.42249196767807,-0.460605561733246,0.780604302883148,0.502204656600952,-0.534306287765503,0.679931879043579,0.592073857784271,-0.479629307985306,0.647614359855652,0.428440511226654,-0.572201550006866,0.699302673339844,0.613369584083557,-0.593296527862549,-0.521322429180145,0.565540730953217,-0.626628160476685,-0.536191165447235,0.671087563037872,-0.547719299793243,-0.499644964933395,0.606340229511261,-0.58170348405838,-0.54219251871109,0.376263201236725,-0.762360274791718,-0.52652895450592,0.564277470111847,-0.622060656547546,-0.542799651622772,0.671249032020569,-0.576553761959076,-0.465843856334686,0.566754221916199,-0.631108105182648,-0.529615163803101,0.438834428787231,-0.67838180065155,-0.589255928993225,0.565216720104218,-0.625447690486908,-0.537908256053925,0.364974409341812,-0.746265411376953,-0.556670188903809,0.288868427276611,-0.779387235641479,-0.55597722530365,0.566144227981567,-0.628844320774078,-0.532949864864349,0.281226307153702,-0.736945271492004,-0.614673435688019,0.438313215970993,-0.687997102737427,-0.57839560508728,0.677862405776978,-0.377673238515854,0.630765855312347,0.451157033443451,-0.493963271379471,0.743274986743927,0.585302948951721,-0.432160317897797,0.686045229434967,0.67758446931839,-0.411275327205658,0.609698176383972,0.465573906898499,-0.452588200569153,0.760529398918152,0.448480010032654,-0.454410970211029,0.769659817218781,0.585032761096954,-0.431113302707672,0.686933755874634,0.452262878417969,-0.516928374767303,0.726803481578827,0.355000287294388,-0.567503154277802,0.742909848690033,0.448204338550568,-0.45098602771759,0.771831929683685,0.466122090816498,-0.449534296989441,0.762003421783447,0.269399553537369,-0.455275386571884,0.84861558675766,0.348871320486069,-0.546128451824188,0.761598646640778,
- 0.45163232088089,-0.502988815307617,0.736906051635742,0.271414935588837,-0.572993814945221,0.773312330245972,0.600366353988647,-0.780617356300354,0.173772498965263,0.369446635246277,-0.909539043903351,0.190388903021812,0.507785558700562,-0.841971158981323,0.182314038276672,0.596645176410675,-0.790629327297211,0.137549236416817,0.37618350982666,-0.896972298622131,0.232221335172653,0.370551317930222,-0.898772835731506,0.234305426478386,0.507539033889771,-0.841687977313995,0.184297680854797,0.368432819843292,-0.915052771568298,0.164121344685555,0.259191453456879,-0.954653680324554,0.146479457616806,0.370610564947128,-0.897768497467041,0.238033056259155,0.377059578895569,-0.895758152008057,0.235464543104172,0.176509618759155,-0.935327291488647,0.30660605430603,0.254862874746323,-0.951037526130676,0.174850180745125,0.369081497192383,-0.911775529384613,0.18012247979641,0.166603729128838,-0.971396625041962,0.169209226965904,0.432361841201782,-0.788528263568878,0.437363088130951,0.373386234045029,-0.811469614505768,0.4495550096035,0.49540975689888,-0.759384751319885,0.421786695718765,0.428325116634369,-0.802166283130646,0.416012912988663,0.149447351694107,-0.835224807262421,0.529211640357971,0.373312264680862,-0.815188229084015,0.442838758230209,0.488388657569885,-0.740996956825256,0.460868746042252,0.373438209295273,-0.807700753211975,0.45624914765358,0.238728925585747,-0.864789426326752,0.441755354404449,0.373369932174683,-0.812396883964539,0.447890967130661,0.142447784543037,-0.855090439319611,0.498526901006699,0.0635816529393196,-0.858391106128693,0.509040594100952,0.373414874076843,-0.809600353240967,0.452889263629913,0.0668488368391991,-0.893405258655548,0.444250255823135,0.235903054475784,-0.858850300312042,0.454671323299408,0.320617079734802,-0.934097230434418,-0.15705806016922,0.268551349639893,-0.951637208461761,-0.149220675230026,0.393464624881744,-0.903963267803192,-0.167439803481102,0.312034726142883,-0.932819128036499,-0.180230155587196,0.0472319833934307,-0.997570037841797,-0.0512167364358902,0.266732841730118,-0.950673162937164,-0.158348232507706,
- 0.394427895545959,-0.91067099571228,-0.122902818024158,0.270315051078796,-0.952503263950348,-0.140240594744682,0.122888430953026,-0.979917526245117,-0.157035738229752,0.268056154251099,-0.951381742954254,-0.151719301939011,0.0332231745123863,-0.995734572410584,-0.0860753580927849,-0.0413425154983997,-0.997076749801636,-0.0642552748322487,0.269428700208664,-0.952076733112335,-0.144769638776779,-0.0520424544811249,-0.989221453666687,-0.136866524815559,0.122591279447079,-0.982101857662201,-0.142994582653046,-0.0672304257750511,0.892780840396881,-0.445446401834488,-0.0571281164884567,0.893031179904938,-0.446353852748871,0.136552542448044,0.880070209503174,-0.454785704612732,-0.176228761672974,0.892225384712219,-0.415785133838654,-0.0573318228125572,0.892411708831787,-0.447565048933029,-0.0672121867537498,0.892909824848175,-0.445190519094467,0.0635493770241737,0.893467366695404,-0.444609612226486,-0.0670614987611771,0.893970966339111,-0.443078637123108,0.137156769633293,0.886412560939789,-0.442109555006027,-0.069285973906517,0.877497911453247,-0.474549174308777,-0.174702659249306,0.882731437683105,-0.436192840337753,-0.182405069470406,0.882676601409912,-0.433140218257904,0.0629000961780548,0.896120667457581,-0.439330667257309,-0.168637365102768,0.864978611469269,-0.472624033689499,-0.0683553218841553,0.884604752063751,-0.461304694414139,-0.21055006980896,0.885494112968445,-0.414208620786667,-0.180377468466759,0.885866701602936,-0.427439033985138,-0.175787687301636,0.885839283466339,-0.42940366268158,-0.18201245367527,0.86979866027832,-0.45860880613327,-0.171640411019325,0.873846352100372,-0.454897969961166,0.0532974936068058,0.930831730365753,-0.361540794372559,-0.212557062506676,0.858084499835968,-0.467451065778732,-0.171754017472267,0.874178886413574,-0.454215705394745,-0.182445526123047,0.870152592658997,-0.457764506340027,-0.189856559038162,0.815914750099182,-0.546111464500427,-0.24720111489296,0.824567437171936,-0.508901000022888,-0.360991030931473,0.83003705739975,-0.425116389989853,-0.191036552190781,0.814441323280334,-0.547896325588226,
- -0.0648574829101563,0.790819108486176,-0.608603954315186,-0.247151598334312,0.819758594036102,-0.516635239124298,-0.388208001852036,0.768444359302521,-0.508711814880371,-0.246786534786224,0.801240980625153,-0.545077383518219,-0.315905690193176,0.787622570991516,-0.529012799263,-0.246963411569595,0.808604717254639,-0.534010827541351,-0.0593451634049416,0.80396956205368,-0.591701924800873,-0.183409556746483,0.810543239116669,-0.55621999502182,-0.246374428272247,0.788080334663391,-0.564117908477783,-0.182675212621689,0.806306838989258,-0.562582433223724,-0.307246834039688,0.767049252986908,-0.563236057758331,-0.0579785108566284,0.807158529758453,-0.58748060464859,-0.0243686661124229,0.80412220954895,-0.593964338302612,-0.18332114815712,0.810032486915588,-0.556992590427399,-0.121262766420841,0.829766273498535,-0.544778287410736,-0.295856297016144,0.739900171756744,-0.604166209697723,-0.182054668664932,0.802738070487976,-0.567862272262573,-0.182743743062019,0.806701600551605,-0.561994016170502,-0.0177960004657507,0.831172585487366,-0.555729806423187,-0.117438212037086,0.819186270236969,-0.561375200748444,-0.207743853330612,0.927106261253357,-0.311955988407135,-0.278081715106964,0.917180180549622,-0.285396248102188,-0.39912223815918,0.886498868465424,-0.23413959145546,-0.208401620388031,0.926064252853394,-0.314601004123688,-0.0698628425598145,0.934344232082367,-0.349456876516342,-0.275663524866104,0.914905309677124,-0.294886261224747,-0.399279654026031,0.852301359176636,-0.337873190641403,-0.266286104917526,0.905486345291138,-0.330433368682861,-0.326232641935349,0.884093284606934,-0.334591299295425,-0.270068615674973,0.909395754337311,-0.316326230764389,-0.0696875527501106,0.94167423248291,-0.329231381416321,-0.191299617290497,0.926840603351593,-0.323064923286438,-0.189217656850815,0.925315678119659,-0.328614622354507,-0.308283686637878,0.876093983650208,-0.370702803134918,-0.259747445583344,0.898400247097015,-0.354130506515503,-0.0696390941739082,0.943424642086029,-0.324191838502884,-0.0318185426294804,0.94574511051178,-0.32334765791893,
- -0.191050633788109,0.926659822463989,-0.323730260133743,-0.143350422382355,0.944557249546051,-0.295401811599731,-0.285320281982422,0.864127576351166,-0.41457924246788,-0.187483862042427,0.924023330211639,-0.333212584257126,-0.189402222633362,0.925452053546906,-0.328123986721039,-0.0366625152528286,0.959847033023834,-0.278118133544922,-0.135652601718903,0.940562427043915,-0.311353266239166,-0.0551440715789795,0.929100930690765,-0.365692228078842,-0.0414302796125412,0.928936004638672,-0.367915213108063,0.142329946160316,0.909437000751495,-0.390725880861282,-0.165416121482849,0.930458903312683,-0.326931148767471,-0.0419232957065105,0.928147852420807,-0.369843184947968,-0.0551254563033581,0.929150462150574,-0.365568816661835,0.0715867280960083,0.924576103687286,-0.374211668968201,-0.0547676868736744,0.930101573467255,-0.36319625377655,0.144103676080704,0.914591670036316,-0.377831161022186,-0.0597236938774586,0.916279375553131,-0.39606237411499,-0.169793844223022,0.922792613506317,-0.345866799354553,-0.173183470964432,0.922778010368347,-0.344221234321594,0.0714227482676506,0.926593899726868,-0.369218677282333,-0.166826620697975,0.906666398048401,-0.387459635734558,-0.0575729683041573,0.922450184822083,-0.381799668073654,-0.202952891588211,0.924998998641968,-0.321227222681046,-0.17056180536747,0.92542177438736,-0.338383495807648,-0.170277267694473,0.925419926643372,-0.338531583547592,-0.172537997364998,0.912064015865326,-0.371981084346771,-0.168073117733002,0.913440823554993,-0.37064453959465,0.0685715451836586,0.954777419567108,-0.289306312799454,-0.210325285792351,0.90031623840332,-0.381043523550034,-0.168135970830917,0.913782477378845,-0.369772881269455,-0.172893136739731,0.912364780902863,-0.371077537536621,-0.195599868893623,0.704833567142487,-0.681872844696045,-0.260693818330765,0.713683545589447,-0.650149643421173,-0.381312549114227,0.72000640630722,-0.579820215702057,-0.196521371603012,0.702876627445221,-0.683625519275665,-0.065231017768383,0.683294057846069,-0.727223634719849,-0.259385347366333,0.707466065883636,-0.657427668571472,
- -0.393320441246033,0.643442511558533,-0.656719744205475,-0.254267692565918,0.683584690093994,-0.684149146080017,-0.318552166223526,0.667072534561157,-0.673452854156494,-0.256330281496048,0.693131029605865,-0.673694431781769,-0.0627868473529816,0.698594927787781,-0.712757349014282,-0.184977546334267,0.698362767696381,-0.691428124904633,-0.250603348016739,0.666860938072205,-0.70177948474884,-0.183275058865547,0.693513333797455,-0.696742177009583,-0.304828941822052,0.642384052276611,-0.703151524066925,-0.0621785335242748,0.702327489852905,-0.709133267402649,-0.0278677307069302,0.701679229736328,-0.711947798728943,-0.18477039039135,0.697773277759552,-0.692078411579132,-0.128889545798302,0.723616063594818,-0.678061485290527,-0.287133008241653,0.610329985618591,-0.738276362419128,-0.1818558126688,0.689463496208191,-0.701119482517242,-0.183442503213882,0.693990707397461,-0.696222484111786,-0.0275922361761332,0.733639717102051,-0.678978264331818,-0.122827440500259,0.711729884147644,-0.691631436347961,-0.116884380578995,0.990010976791382,0.078843466937542,-0.110082596540451,0.990743339061737,0.0794333517551422,0.0854494646191597,0.991839408874512,0.0946200639009476,-0.300091832876205,0.948782742023468,0.0987733155488968,-0.110008172690868,0.990073561668396,0.0874799340963364,-0.117587842047215,0.989156782627106,0.0879885256290436,0.0145407728850842,0.994924783706665,0.0995658934116364,-0.117078699171543,0.989784598350525,0.0813575237989426,0.0840060040354729,0.990542829036713,0.108479730784893,-0.116815693676472,0.990089297294617,0.0779571682214737,-0.232660308480263,0.967980980873108,0.0942446514964104,-0.299716413021088,0.948423564434052,0.103261694312096,0.0130182132124901,0.994352221488953,0.105328775942326,-0.213021010160446,0.976723253726959,0.0251734331250191,-0.115444906055927,0.99146980047226,0.0604982636868954,-0.455821216106415,0.885176301002502,0.0932212173938751,-0.299920201301575,0.948620200157166,0.100834354758263,-0.235095024108887,0.966490745544434,0.103082105517387,-0.188041687011719,0.98001891374588,0.0648334696888924,
- -0.218266308307648,0.974930286407471,0.0432549193501472,-0.00880015641450882,0.98226261138916,0.187304154038429,-0.414452195167542,0.905036687850952,-0.0955928862094879,-0.218514055013657,0.97483617067337,0.0441153161227703,-0.188010632991791,0.980027854442596,0.0647872015833855,0.492959797382355,-0.311795026063919,0.812265157699585,0.43908429145813,-0.322668701410294,0.838504493236542,0.556582629680634,-0.296868205070496,0.775941371917725,0.489251464605331,-0.335708230733871,0.804942846298218,0.219691663980484,-0.297095000743866,0.929230928421021,0.439068496227264,-0.330428302288055,0.835485458374023,0.549496293067932,-0.257411360740662,0.79485422372818,0.439069956541061,-0.3149593770504,0.841438233852386,0.302056461572647,-0.374416917562485,0.876683473587036,0.439083188772202,-0.324680685997009,0.837728261947632,0.213197305798531,-0.331865668296814,0.918918967247009,0.135234758257866,-0.330023527145386,0.934235513210297,0.439080893993378,-0.318848997354507,0.839966237545013,0.138658165931702,-0.397843271493912,0.906914889812469,0.299034297466278,-0.361250936985016,0.883219301700592,0.673163652420044,-0.641307353973389,0.368205904960632,0.454931616783142,-0.797712802886963,0.395842730998993,0.582732796669006,-0.716334521770477,0.38378033041954,0.674374401569366,-0.658785462379456,0.333498001098633,0.457703977823257,-0.77571040391922,0.434488594532013,0.450655192136765,-0.77838808298111,0.437060683965683,0.5824334025383,-0.715949475765228,0.38495147228241,0.457026094198227,-0.808426380157471,0.370909661054611,0.35546201467514,-0.864899218082428,0.35439532995224,0.450245589017868,-0.776659488677979,0.440543800592422,0.458126187324524,-0.773782193660736,0.437471717596054,0.270404040813446,-0.823672652244568,0.498442649841309,0.348259925842285,-0.856365978717804,0.381250888109207,0.455793768167496,-0.801987767219543,0.386092811822891,0.277253210544586,-0.884470224380493,0.375290960073471,0.505393624305725,-0.698980510234833,0.505967915058136,0.455290198326111,-0.721484541893005,0.521700024604797,0.573759436607361,-0.663071095943451,0.480766952037811,
- 0.501777231693268,-0.714537441730499,0.487499624490738,0.237644836306572,-0.752263963222504,0.61451119184494,0.45518958568573,-0.726482629776001,0.514806389808655,0.566951751708984,-0.639764845371246,0.518909156322479,0.45535734295845,-0.716485202312469,0.528487265110016,0.32008096575737,-0.786865770816803,0.527627229690552,0.455266863107681,-0.722808182239532,0.519885063171387,0.230847299098969,-0.775837600231171,0.587184369564056,0.152830123901367,-0.783614695072174,0.602155268192291,0.455327302217484,-0.71902859210968,0.525047600269318,0.155859291553497,-0.82558673620224,0.542323172092438,0.317108303308487,-0.779557943344116,0.540121912956238,0.601007997989655,-0.60063111782074,0.527287125587463,0.562828481197357,-0.621344864368439,0.545119047164917,0.661536931991577,-0.563268721103668,0.495072990655899,0.597829282283783,-0.617375075817108,0.511319994926453,0.345585614442825,-0.664904296398163,0.662172853946686,0.562721848487854,-0.628195881843567,0.537321209907532,0.655226588249207,-0.538346707820892,0.529963254928589,0.56287407875061,-0.614538311958313,0.55273449420929,0.436843723058701,-0.696263432502747,0.569547951221466,0.562804758548737,-0.623268067836761,0.542943716049194,0.339187324047089,-0.692245960235596,0.636983156204224,0.264647901058197,-0.704837203025818,0.658153533935547,0.562858700752258,-0.617942750453949,0.548941552639008,0.267664343118668,-0.752670168876648,0.601534307003021,0.434348732233047,-0.68855756521225,0.580714821815491,0.603648364543915,-0.773337543010712,0.193798094987869,0.559306502342224,-0.80350923538208,0.203835964202881,0.665178656578064,-0.725132882595062,0.1781005859375,0.599382877349854,-0.781747460365295,0.172079399228096,0.354439377784729,-0.886944770812988,0.29614469408989,0.55890816450119,-0.805820047855377,0.19564226269722,0.66052782535553,-0.717448949813843,0.221291869878769,0.55966055393219,-0.801166415214539,0.211925536394119,0.437938541173935,-0.877054750919342,0.19744573533535,0.55920547246933,-0.804124057292938,0.201677650213242,0.346733927726746,-0.900433003902435,0.262671083211899,
- 0.269857734441757,-0.921304881572723,0.279953688383102,0.559487700462341,-0.802350401878357,0.207863837480545,0.269674628973007,-0.940076947212219,0.20864063501358,0.435992181301117,-0.874887526035309,0.210909098386765,0.690478801727295,-0.717559814453125,0.0913622751832008,0.64740377664566,-0.757178723812103,0.0868833214044571,0.750394344329834,-0.653765082359314,0.0974666848778725,0.690172433853149,-0.720409750938416,0.0683517307043076,0.458253622055054,-0.880035281181335,0.12466536462307,0.64809650182724,-0.757329940795898,0.0801394805312157,0.73944216966629,-0.658147573471069,0.141658306121826,0.646685123443604,-0.756993770599365,0.0935885384678841,0.54592353105545,-0.836570620536804,0.0460138469934464,0.647574841976166,-0.757218718528748,0.0852447673678398,0.456731200218201,-0.885133922100067,0.0890763774514198,0.376433134078979,-0.92212986946106,0.0893009603023529,0.647058665752411,-0.75709331035614,0.0901383683085442,0.38708969950676,-0.921904385089874,0.0159358121454716,0.542140483856201,-0.838213443756104,0.0590086653828621,0.786638081073761,-0.117112942039967,0.606205463409424,0.589465498924255,-0.210361838340759,0.779922068119049,0.713582694530487,-0.15630903840065,0.682910799980164,0.787624657154083,-0.155499145388603,0.596210896968842,0.597996175289154,-0.164746448397636,0.784384548664093,0.585456430912018,-0.164924845099449,0.793750882148743,0.712998628616333,-0.153832823038101,0.68408215045929,0.591216921806335,-0.237196147441864,0.770844042301178,0.504185557365417,-0.286913633346558,0.814541399478912,0.585052192211151,-0.161024689674377,0.794849038124084,0.598346054553986,-0.161253318190575,0.784843504428864,0.421805828809738,-0.155233398079872,0.893298745155334,0.49782007932663,-0.261553943157196,0.826900660991669,0.590208888053894,-0.220904275774956,0.776437222957611,0.427594780921936,-0.288681119680405,0.856636464595795,0.613262236118317,-0.739262104034424,-0.278210312128067,0.563650727272034,-0.776962220668793,-0.280406147241592,0.669341206550598,-0.690514862537384,-0.274174600839615,0.606184244155884,-0.735835731029511,-0.301805347204208,
- 0.370799869298935,-0.901926040649414,-0.221443176269531,0.562501609325409,-0.775168776512146,-0.287585437297821,0.669598162174225,-0.705265402793884,-0.232892841100693,0.564760386943817,-0.778699815273285,-0.273262441158295,0.439704716205597,-0.842416822910309,-0.311438173055649,0.563366949558258,-0.776518821716309,-0.282198846340179,0.359182775020599,-0.897364616394043,-0.256367862224579,0.285028964281082,-0.926875472068787,-0.2442547082901,0.564200878143311,-0.777822971343994,-0.276891738176346,0.277241736650467,-0.907670319080353,-0.315073937177658,0.439263790845871,-0.847495257854462,-0.297991812229156,0.681011378765106,-0.129392221570015,0.720750391483307,0.449635446071625,-0.200002491474152,0.87053257226944,0.586815595626831,-0.161539405584335,0.793443441390991,0.680611073970795,-0.169610381126404,0.712741911411285,0.462931990623474,-0.154626429080963,0.872802734375,0.446935564279556,-0.153200030326843,0.88135027885437,0.586485743522644,-0.159955754876137,0.794007956981659,0.450748682022095,-0.227645695209503,0.863135695457459,0.353157788515091,-0.269324868917465,0.895959734916687,0.44665664434433,-0.149181038141251,0.882180690765381,0.463479042053223,-0.151168987154961,0.873118042945862,0.274968177080154,-0.127033263444901,0.95302414894104,0.347070038318634,-0.242516756057739,0.905940413475037,0.450115948915482,-0.210862353444099,0.86771696805954,0.276969134807587,-0.261570066213608,0.924591362476349,-0.199954673647881,0.203699097037315,0.958396971225739,-0.404342919588089,0.230801790952683,0.885007083415985,-0.247102677822113,0.210697129368782,0.945804953575134,-0.200247257947922,0.201470881700516,0.958806872367859,-0.245742037892342,0.204503923654556,0.947517335414886,-0.0662667900323868,0.190198138356209,0.97950667142868,-0.393746107816696,0.124852761626244,0.910700678825378,-0.307294547557831,0.156817764043808,0.938604474067688,-0.240261882543564,0.17994624376297,0.953883409500122,-0.24454528093338,0.199089050292969,0.948979020118713,-0.151189371943474,0.211381331086159,0.965639531612396,-0.0690785348415375,0.220480114221573,0.972942292690277,
- -0.235659033060074,0.15976893901825,0.95861291885376,-0.287573248147964,0.11766666918993,0.95050323009491,-0.154955178499222,0.22218531370163,0.962612390518188,-0.0690161138772964,0.219802260398865,0.973100066184998,-0.149647951126099,0.206967949867249,0.966834902763367,-0.0502571277320385,0.222567275166512,0.973621189594269,-0.283233970403671,0.109175071120262,0.952816486358643,-0.138046652078629,0.209283977746964,0.968061625957489,-0.14813257753849,0.202634215354919,0.9679856300354,-0.148641154170036,0.204088106751442,0.96760219335556,-0.137921020388603,0.209046006202698,0.968130946159363,-0.0555249862372875,0.245896369218826,0.96770453453064,0.833532214164734,-0.520506381988525,0.185194671154022,0.651892602443695,-0.728237748146057,0.211437448859215,0.762331247329712,-0.616025269031525,0.198403507471085,0.833117127418518,-0.533214211463928,0.146963939070702,0.66021341085434,-0.707857251167297,0.251110553741455,0.649443089962006,-0.71592503786087,0.256271362304688,0.762027561664581,-0.615779876708984,0.200322359800339,0.652677774429321,-0.73479300737381,0.184637412428856,0.563968062400818,-0.808015525341034,0.170443877577782,0.649168133735657,-0.714799344539642,0.26008215546608,0.660633027553558,-0.706354081630707,0.254220545291901,0.489768266677856,-0.807306110858917,0.32921701669693,0.558980405330658,-0.804937422275543,0.199039489030838,0.652259051799774,-0.730869293212891,0.200968161225319,0.490704089403152,-0.848972678184509,0.196099504828453,0.728999674320221,-0.63624906539917,0.252481043338776,0.690852344036102,-0.674956738948822,0.259145796298981,0.776842653751373,-0.581199765205383,0.242326989769936,0.72835236787796,-0.645783543586731,0.229055434465408,0.492928504943848,-0.80254191160202,0.336077660322189,0.691755056381226,-0.677688598632813,0.249425783753395,0.76732611656189,-0.574525713920593,0.284835040569305,0.68989360332489,-0.672197759151459,0.268695175647736,0.576014339923859,-0.780760288238525,0.242117583751678,0.691110372543335,-0.675723075866699,0.256446599960327,0.49093371629715,-0.817257940769196,0.301784038543701,
- 0.422691971063614,-0.850858390331268,0.312044024467468,0.690378546714783,-0.673576951026917,0.263953804969788,0.432262003421783,-0.868763625621796,0.241659417748451,0.572252988815308,-0.778934597969055,0.256490588188171,0.756068766117096,-0.644239068031311,0.115394994616508,0.719124555587769,-0.683423280715942,0.125668466091156,0.806676089763641,-0.582554459571838,0.0995186865329742,0.752317488193512,-0.652155101299286,0.0933385044336319,0.539698839187622,-0.811828315258026,0.222845122218132,0.718695759773254,-0.685339629650116,0.117413640022278,0.803306996822357,-0.577953517436981,0.143762812018394,0.719497740268707,-0.681479215621948,0.133825048804283,0.606913387775421,-0.785747885704041,0.119400128722191,0.719016134738922,-0.683935225009918,0.123484626412392,0.532913327217102,-0.824862241744995,0.188695147633553,0.458020865917206,-0.863893866539001,0.209533840417862,0.719316422939301,-0.682462871074677,0.129724502563477,0.45765420794487,-0.878722369670868,0.135645672678947,0.60527765750885,-0.784605205059052,0.134289368987083,0.762414634227753,-0.408662021160126,-0.501716494560242,0.722351729869843,-0.44173926115036,-0.532047390937805,0.806968152523041,-0.366894572973251,-0.462807565927505,0.757527232170105,-0.392670273780823,-0.521500289440155,0.54720151424408,-0.594882309436798,-0.588800132274628,0.72154575586319,-0.435246527194977,-0.53845351934433,0.804953336715698,-0.402229189872742,-0.436190247535706,0.723092198371887,-0.448149919509888,-0.525641977787018,0.609506070613861,-0.493070781230927,-0.620792806148529,0.722142040729523,-0.440006107091904,-0.533765375614166,0.53927618265152,-0.573152601718903,-0.616990566253662,0.468262791633606,-0.611729681491852,-0.637586712837219,0.722727239131927,-0.4449303150177,-0.528869092464447,0.465637028217316,-0.557469189167023,-0.687321186065674,0.608280837535858,-0.505085468292236,-0.612276971340179,0.83321624994278,-0.509353995323181,-0.21519573032856,0.649234175682068,-0.702649533748627,-0.291167706251144,0.762215793132782,-0.597161591053009,-0.24985034763813,0.828876197338104,-0.498766213655472,-0.253370404243469,
- 0.66222757101059,-0.707291841506958,-0.247372150421143,0.651684701442719,-0.717307448387146,-0.246530368924141,0.762104511260986,-0.598065316677094,-0.248021736741066,0.647099375724792,-0.693210422992706,-0.317367047071457,0.557504415512085,-0.747947931289673,-0.36022612452507,0.651827037334442,-0.718484938144684,-0.242695346474648,0.662982702255249,-0.707763969898224,-0.243975818157196,0.4967320561409,-0.839201211929321,-0.221356600522995,0.555278658866882,-0.761432826519012,-0.33449313044548,0.648460686206818,-0.699028193950653,-0.301427096128464,0.483875691890717,-0.799736201763153,-0.355367869138718,-0.163288161158562,0.885453820228577,0.435095995664597,-0.360383450984955,0.86871725320816,0.339785397052765,-0.209084659814835,0.885403454303741,0.415143996477127,-0.164005249738693,0.884321987628937,0.437123417854309,-0.208834633231163,0.882558465003967,0.421282142400742,-0.0343794785439968,0.878351747989655,0.476776838302612,-0.368093639612198,0.819815754890442,0.438644766807556,-0.277689844369888,0.851884543895721,0.444050818681717,-0.207749724388123,0.870886266231537,0.445418000221252,-0.208597019314766,0.87991464138031,0.426892846822739,-0.107228994369507,0.890702068805695,0.44175985455513,-0.0319225154817104,0.892606019973755,0.449705958366394,-0.206740617752075,0.860770165920258,0.465116202831268,-0.264562398195267,0.833832383155823,0.484489738941193,-0.109505251049995,0.896787106990814,0.428697675466537,-0.0319870449602604,0.892244517803192,0.45041811466217,-0.106510527431965,0.888754963874817,0.44583648443222,-0.0103379189968109,0.892324388027191,0.451276391744614,-0.261740356683731,0.82982462644577,0.492831707000732,-0.10225373506546,0.888741374015808,0.446859061717987,-0.106106236577034,0.887653768062592,0.448120772838593,-0.106231816112995,0.887996315956116,0.447412014007568,-0.102297455072403,0.888801217079163,0.446729987859726,-0.0115562155842781,0.903211116790771,0.429041057825089,0.728620231151581,-0.281695753335953,0.624307692050934,0.513950765132904,-0.372323513031006,0.772806465625763,0.644007980823517,-0.322982579469681,0.693495512008667,
- 0.726174235343933,-0.318185269832611,0.609449863433838,0.524569690227509,-0.329424649477005,0.785051763057709,0.513500332832336,-0.329367876052856,0.792359948158264,0.643741190433502,-0.321276485919952,0.69453489780426,0.513678431510925,-0.397340178489685,0.760430991649628,0.417585074901581,-0.442816436290741,0.79343318939209,0.513408422470093,-0.325650602579117,0.793954312801361,0.525268197059631,-0.326056957244873,0.785989880561829,0.343993633985519,-0.313703238964081,0.88501912355423,0.413275361061096,-0.41863289475441,0.808671653270721,0.513891994953156,-0.382134437561035,0.768041908740997,0.33789649605751,-0.441400796175003,0.831258952617645,0.604174196720123,-0.291902214288712,0.741462588310242,0.561770021915436,-0.306322664022446,0.768492639064789,0.665743887424469,-0.268335700035095,0.696262180805206,0.602042973041534,-0.314701974391937,0.733830392360687,0.343609482049942,-0.305386930704117,0.888071715831757,0.562121570110321,-0.315140336751938,0.764660656452179,0.657350957393646,-0.230079412460327,0.717602431774139,0.561371743679047,-0.297587156295776,0.772207021713257,0.430702924728394,-0.373621165752411,0.821524322032928,0.561871588230133,-0.308744430541992,0.767448484897614,0.338898718357086,-0.341215848922729,0.876766562461853,0.26720267534256,-0.346840888261795,0.899057388305664,0.561577677726746,-0.301968812942505,0.770354032516479,0.273540467023849,-0.413497656583786,0.868444204330444,0.427226215600967,-0.360940873622894,0.828975081443787,0.634189426898956,-0.40337997674942,0.659612357616425,0.588467240333557,-0.416953772306442,0.692716419696808,0.692934155464172,-0.382738918066025,0.611026406288147,0.629058957099915,-0.425333231687546,0.650673866271973,0.389211088418961,-0.403254598379135,0.828191101551056,0.587712228298187,-0.424077302217484,0.689023077487946,0.690281867980957,-0.345748633146286,0.635585427284241,0.589183866977692,-0.409804731607437,0.696363866329193,0.464665442705154,-0.472193986177444,0.749078750610352,0.588280558586121,-0.418751269578934,0.691789925098419,0.380208283662796,-0.437106907367706,0.815094590187073,
- 0.302557855844498,-0.43748265504837,0.846798479557037,0.588827669620514,-0.413408666849136,0.69453239440918,0.299407660961151,-0.503161728382111,0.810668468475342,0.463339984416962,-0.460260778665543,0.757281959056854,0.679017424583435,-0.728919565677643,0.0872446671128273,0.635707318782806,-0.766970098018646,0.0873676165938377,0.730437219142914,-0.677457690238953,0.0866757929325104,0.677044570446014,-0.733315706253052,0.0621194466948509,0.434521645307541,-0.889168918132782,0.143421173095703,0.636095106601715,-0.767674684524536,0.0778371840715408,0.722453713417053,-0.679092884063721,0.129975259304047,0.635267436504364,-0.766205906867981,0.0967669486999512,0.515093743801117,-0.855418980121613,0.0541924871504307,0.635819911956787,-0.767171263694763,0.084742359817028,0.430484980344772,-0.896160542964935,0.107606194913387,0.353274673223495,-0.928541243076324,0.114053934812546,0.635494351387024,-0.766596436500549,0.0920709222555161,0.360230207443237,-0.93198549747467,0.0404630899429321,0.511843204498291,-0.856341660022736,0.0685239508748055,0.735015034675598,-0.577417969703674,0.35544541478157,0.515072762966156,-0.741574585437775,0.429845750331879,0.646381556987762,-0.654911756515503,0.391511887311935,0.732548236846924,-0.600195944309235,0.321150928735733,0.528777599334717,-0.711376667022705,0.462965965270996,0.514912843704224,-0.716518640518188,0.470601588487625,0.64613264799118,-0.654130220413208,0.393225491046906,0.514609396457672,-0.755661129951477,0.405158758163452,0.417075157165527,-0.81271892786026,0.406861543655396,0.514844536781311,-0.714300692081451,0.47403559088707,0.529458403587341,-0.709140717983246,0.465610772371292,0.346653878688812,-0.755757510662079,0.555573344230652,0.41256982088089,-0.801169872283936,0.433489233255386,0.514941096305847,-0.747154831886292,0.420232594013214,0.340825319290161,-0.831290423870087,0.439083516597748,-0.159838482737541,-0.276161968708038,0.947726964950562,-0.358564823865891,-0.184686616063118,0.915053069591522,-0.209655225276947,-0.254828274250031,0.943984866142273,-0.160468637943268,-0.278090119361877,0.947056353092194,
- -0.209381490945816,-0.261430621147156,0.942238569259644,-0.0349069833755493,-0.316850364208221,0.947832942008972,-0.366287410259247,-0.289630204439163,0.884278118610382,-0.275137573480606,-0.289319306612015,0.916839003562927,-0.208202689886093,-0.287428915500641,0.934899091720581,-0.209120020270348,-0.267516314983368,0.940586984157562,-0.111351698637009,-0.279899001121521,0.953549921512604,-0.0324644595384598,-0.287804305553436,0.95713883638382,-0.207114830613136,-0.308733820915222,0.928324818611145,-0.262270510196686,-0.331411123275757,0.906300663948059,-0.113244071602821,-0.268125653266907,0.9567049741745,-0.0325328782200813,-0.288616716861725,0.95689183473587,-0.110610373318195,-0.284471213817596,0.952282309532166,-0.00893126521259546,-0.289520084857941,0.957130372524261,-0.259383499622345,-0.340530663728714,0.903747320175171,-0.103058181703091,-0.286085397005081,0.95264595746994,-0.109932117164135,-0.288634747266769,0.951107203960419,-0.110160879790783,-0.287232488393784,0.951505124568939,-0.103152990341187,-0.285791873931885,0.952723681926727,-0.0102358870208263,-0.265384584665298,0.964088320732117,0.728839099407196,-0.66352641582489,-0.168897688388824,0.513624370098114,-0.825910151004791,-0.232513085007668,0.642118215560913,-0.740541040897369,-0.198199898004532,0.726324379444122,-0.655265152454376,-0.20755872130394,0.527243793010712,-0.828554630279541,-0.188444674015045,0.513277649879456,-0.837651908397675,-0.186776280403137,0.64191061258316,-0.741105258464813,-0.19675812125206,0.513289093971252,-0.818076193332672,-0.259394764900208,0.417861819267273,-0.858186721801758,-0.298172831535339,0.513194620609283,-0.838571727275848,-0.182835072278976,0.527920246124268,-0.828889727592468,-0.185046210885048,0.341487914323807,-0.927041471004486,-0.154855191707611,0.413585096597672,-0.868961274623871,-0.271760314702988,0.513541042804718,-0.822919011116028,-0.243063420057297,0.335936844348907,-0.895873010158539,-0.290788978338242,0.601525187492371,-0.78280645608902,-0.159315750002861,0.559342086315155,-0.811583697795868,-0.168725460767746,
- 0.666475117206573,-0.731656074523926,-0.143144592642784,0.599547982215881,-0.779320895671844,-0.182211935520172,0.349453747272491,-0.925276458263397,-0.147463947534561,0.559707462787628,-0.809504866600037,-0.177283778786659,0.657963037490845,-0.746171832084656,-0.10154914855957,0.558939754962921,-0.813570082187653,-0.160281613469124,0.434458285570145,-0.872522115707397,-0.223497688770294,0.559443950653076,-0.811034560203552,-0.17101277410984,0.344845801591873,-0.920527279376984,-0.183605536818504,0.269030451774597,-0.94511216878891,-0.185433566570282,0.55914831161499,-0.812574148178101,-0.164549067616463,0.27532085776329,-0.926659107208252,-0.255932331085205,0.431148707866669,-0.877449870109558,-0.210220620036125,0.634643077850342,-0.719281136989594,-0.282600075006485,0.587714493274689,-0.755149602890015,-0.290414839982986,0.696154177188873,-0.665157437324524,-0.270064920186996,0.629443764686584,-0.71429306268692,-0.305918335914612,0.390382289886475,-0.885044634342194,-0.253569930791855,0.587025344371796,-0.7527996301651,-0.297815322875977,0.693533301353455,-0.683310866355896,-0.22824938595295,0.588364124298096,-0.757440090179443,-0.283041000366211,0.461286991834641,-0.821084678173065,-0.336205780506134,0.587544023990631,-0.754561007022858,-0.292283833026886,0.381356954574585,-0.878094613552094,-0.288992643356323,0.304327458143234,-0.909267067909241,-0.283933699131012,0.588039994239807,-0.756287455558777,-0.286772102117538,0.301421493291855,-0.885176599025726,-0.354411482810974,0.459879636764526,-0.827309310436249,-0.322598993778229,0.679099142551422,-0.212468102574348,-0.702624917030334,0.633763253688812,-0.219487443566322,-0.741734087467194,0.730358600616455,-0.203002214431763,-0.652201294898987,0.67716121673584,-0.188420847058296,-0.711301863193512,0.431828439235687,-0.296568483114243,-0.851804733276367,0.634119927883148,-0.210920706391335,-0.743911623954773,0.722278356552124,-0.245899274945259,-0.646411299705505,0.633361160755157,-0.227954104542732,-0.73952054977417,0.516138851642609,-0.202157586812973,-0.83230584859848,
- 0.633865892887115,-0.217142194509506,-0.742336392402649,0.427874445915222,-0.261952966451645,-0.865045726299286,0.355966240167618,-0.273100733757019,-0.893702447414398,0.633567094802856,-0.223746687173843,-0.740628242492676,0.362406551837921,-0.201977729797363,-0.909871757030487,0.51294070482254,-0.216315805912018,-0.830722153186798,0.7342249751091,-0.45082813501358,-0.507609903812408,0.517629504203796,-0.551263451576233,-0.654345810413361,0.641517460346222,-0.501641511917114,-0.580354452133179,0.731788158416748,-0.421271860599518,-0.535738945007324,0.529357016086578,-0.579133629798889,-0.619988203048706,0.517269730567932,-0.58649069070816,-0.623266160488129,0.641420781612396,-0.502240121364594,-0.579943358898163,0.51730352640152,-0.52981048822403,-0.672084748744965,0.422054469585419,-0.541414558887482,-0.727145314216614,0.517185926437378,-0.589444756507874,-0.620542943477631,0.530035853385925,-0.581336617469788,-0.617340922355652,0.346069067716599,-0.678647696971893,-0.647822201251984,0.417620331048965,-0.565140843391418,-0.711483776569366,0.517549633979797,-0.542914986610413,-0.661351382732391,0.340864777565002,-0.576779246330261,-0.742385983467102,-0.242925733327866,0.941109001636505,0.235161438584328,-0.313925743103027,0.923424184322357,0.220768257975578,-0.308242291212082,0.925046980381012,0.221979230642319,-0.314350932836533,0.92256885766983,0.223719239234924,-0.242736384272575,0.939861476421356,0.240290194749832,-0.204455614089966,0.946816444396973,0.248468518257141,-0.308453381061554,0.924246728420258,0.22499880194664,-0.256090819835663,0.94241338968277,0.215115070343018,-0.243672862648964,0.946247696876526,0.212694466114044,-0.242891326546669,0.940881073474884,0.236107289791107,-0.237724602222443,0.942087411880493,0.236555516719818,-0.203037649393082,0.949459969997406,0.239377319812775,-0.255881786346436,0.942293405532837,0.215888530015945,-0.308114230632782,0.923698008060455,0.227700710296631,-0.243661984801292,0.946169853210449,0.213052570819855,-0.241084426641464,0.936588704586029,0.254322499036789,-0.242201894521713,0.936428487300873,0.253850132226944,
- -0.308503061532974,0.92426609992981,0.224851176142693,-0.308514922857285,0.924283385276794,0.224763736128807,-0.256649553775787,0.94273167848587,0.213044509291649,-0.288442581892014,0.931812584400177,0.220286726951599,-0.307465881109238,0.922741711139679,0.232405707240105,-0.517122209072113,0.838651895523071,0.171019554138184,-0.240016996860504,0.938387393951416,0.248638287186623,-0.360587984323502,0.901621699333191,0.238860979676247,-0.308255195617676,0.923904418945313,0.226670295000076,-0.287970036268234,0.93159818649292,0.22180649638176,-0.511888921260834,0.846439599990845,0.146662682294846,-0.308131098747253,0.923722684383392,0.227577671408653,-0.436803251504898,0.881621718406677,0.178734347224236,-0.42302668094635,0.862889170646667,0.276533722877502,-0.308245211839676,0.923889815807343,0.226743385195732,-0.357153534889221,0.900471270084381,0.248179152607918,-0.174425378441811,0.518835842609406,0.83689022064209,-0.11974810063839,0.570826709270477,0.812291443347931,-0.272658348083496,0.414036601781845,0.868464827537537,-0.10187791287899,0.554120242595673,0.826178967952728,-0.267705082893372,0.492591857910156,0.828062415122986,-0.317740857601166,0.470241606235504,0.823355078697205,-0.0458410233259201,0.45690906047821,0.888331472873688,0.00982716679573059,0.658791899681091,0.75226104259491,-0.0372366160154343,0.490705937147141,0.870529294013977,-0.313057482242584,0.554093956947327,0.771346151828766,-0.285054504871368,0.564733266830444,0.774480700492859,-0.158259600400925,0.605577349662781,0.779891014099121,-0.202578648924828,0.643369674682617,0.738266468048096,-0.192536860704422,0.686447143554688,0.701227486133575,-0.243581905961037,0.385464638471603,0.889991581439972,-0.0965234041213989,0.549044013023376,0.830201148986816,-0.337276130914688,0.504932224750519,0.794536530971527,-0.305354773998261,0.512844204902649,0.802339851856232,-0.264390259981155,0.360087603330612,0.894670188426971,-0.252792447805405,0.397312134504318,0.882178664207459,-0.138678401708603,0.681983232498169,0.718099653720856,-0.293898403644562,0.449924290180206,0.843321919441223,
- -0.437940359115601,0.40203058719635,0.804101824760437,-0.292651772499084,0.450281530618668,0.843564808368683,-0.141902297735214,0.253401577472687,0.956896781921387,-0.10531260073185,0.305302292108536,0.946414172649384,-0.200550824403763,0.166139394044876,0.965493202209473,-0.390357971191406,0.196375608444214,0.899476110935211,-0.162387192249298,0.280184864997864,0.946111440658569,-0.275358587503433,0.241280034184456,0.930570602416992,0.154358327388763,0.345872521400452,0.925497651100159,-0.0175233408808708,0.359514057636261,0.932975113391876,0.206115022301674,0.339632779359818,0.917696118354797,0.152025431394577,0.327661335468292,0.932484030723572,-0.0215418916195631,0.360277384519577,0.932596445083618,-0.0175235830247402,0.359648168087006,0.932923376560211,0.204600855708122,0.377194195985794,0.903251349925995,-0.0175153203308582,0.355171680450439,0.934636950492859,0.0609921887516975,0.365041375160217,0.928991317749023,-0.0175248999148607,0.360381275415421,0.932640433311462,-0.0213788766413927,0.361085891723633,0.932287573814392,-0.158313035964966,0.382505923509598,0.910289108753204,0.0597935058176517,0.370731025934219,0.92681348323822,-0.0175155233591795,0.355278670787811,0.934596359729767,-0.116469487547874,0.332204103469849,0.935988962650299,-0.119250155985355,0.361034691333771,0.924896419048309,-0.0175287015736103,0.362532585859299,0.931806206703186,-0.160526424646378,0.359339684247971,0.919296622276306,0.163386419415474,0.729146957397461,-0.664567232131958,-0.0107153253629804,0.732741057872772,-0.680423200130463,0.214147180318832,0.72379070520401,-0.655948162078857,0.16105717420578,0.742342889308929,-0.650375008583069,-0.0176902916282415,0.731499075889587,-0.681612968444824,-0.0107215102761984,0.732376098632813,-0.680815935134888,0.212218314409256,0.696773707866669,-0.685178697109222,-0.0106536848470569,0.73635733127594,-0.676509022712708,0.0632939338684082,0.727427065372467,-0.683259606361389,-0.0107311271131039,0.731807827949524,-0.681426525115967,-0.0175111573189497,0.730824291706085,-0.682341039180756,-0.151670977473259,0.704106032848358,-0.693707883358002,
- 0.0621719062328339,0.723678886890411,-0.687330782413483,-0.0106524555012584,0.73642909526825,-0.676430940628052,-0.0999095588922501,0.746450960636139,-0.657897472381592,-0.102805927395821,0.72665011882782,-0.679272174835205,-0.0107480911538005,0.730803072452545,-0.682503759860992,-0.154003381729126,0.721624135971069,-0.674938261508942,0.157089188694954,-0.666310250759125,-0.728940188884735,-0.016075175255537,-0.680515766143799,-0.732557117938995,0.209004864096642,-0.657971441745758,-0.723457336425781,0.154874056577683,-0.652004659175873,-0.742229163646698,-0.0231585502624512,-0.681461751461029,-0.731487274169922,-0.0160798635333776,-0.680714190006256,-0.732372641563416,0.206821873784065,-0.687333166599274,-0.696274280548096,-0.0159867685288191,-0.676773250102997,-0.736018061637878,0.0576203092932701,-0.684133172035217,-0.727077543735504,-0.0160942990332842,-0.681325376033783,-0.731803774833679,-0.0229844376444817,-0.682193875312805,-0.730809986591339,-0.15717314183712,-0.692391395568848,-0.704195201396942,0.0564467906951904,-0.688261330127716,-0.723263502120972,-0.015987005084753,-0.676783204078674,-0.736008822917938,-0.110935643315315,-0.65602058172226,-0.746545612812042,-0.114331722259521,-0.678280651569366,-0.725853800773621,-0.0161287970840931,-0.682785749435425,-0.730440676212311,-0.159311264753342,-0.673983812332153,-0.721363842487335,0.164030253887177,0.658393621444702,-0.734582841396332,-0.0118232471868396,0.660450994968414,-0.750776171684265,0.209838926792145,0.654405057430267,-0.726444602012634,0.16177362203598,0.673119425773621,-0.721622943878174,-0.016070818528533,0.659493923187256,-0.751538038253784,-0.0118285054340959,0.660070955753326,-0.751110076904297,0.207997858524323,0.625375807285309,-0.752091705799103,-0.0117630511522293,0.664771914482117,-0.746953725814819,0.0659736394882202,0.654638051986694,-0.753058195114136,-0.0118380207568407,0.65938264131546,-0.751714289188385,-0.0158834364265203,0.658746778964996,-0.752197027206421,-0.15455935895443,0.63010048866272,-0.760976195335388,0.064824566245079,0.650303423404694,-0.75690370798111,
- -0.0117615666240454,0.664878070354462,-0.74685937166214,-0.104084521532059,0.676993787288666,-0.728591680526733,-0.106967955827713,0.654135167598724,-0.748775720596313,-0.0118545359000564,0.658184885978699,-0.752763032913208,-0.156746029853821,0.649608016014099,-0.743935525417328,0.154040724039078,-0.552178978919983,-0.819371581077576,-0.0133522553369403,-0.565245509147644,-0.82481461763382,0.209817200899124,-0.54421591758728,-0.812284290790558,0.151835575699806,-0.536439180374146,-0.830168128013611,-0.0154387410730124,-0.565541744232178,-0.824575126171112,-0.0133530478924513,-0.565279006958008,-0.824791669845581,0.207498520612717,-0.577179074287415,-0.789815604686737,-0.0132581647485495,-0.561262309551239,-0.827531754970551,0.0606830343604088,-0.569769620895386,-0.819561004638672,-0.0133683709427714,-0.565927684307098,-0.824346482753754,-0.015295721590519,-0.566214919090271,-0.824115693569183,-0.154565319418907,-0.58118212223053,-0.798959910869598,0.0594755411148071,-0.574553251266479,-0.816303431987762,-0.0132613591849804,-0.561397552490234,-0.827439963817596,-0.112848065793514,-0.538262903690338,-0.835187613964081,-0.116385877132416,-0.563890218734741,-0.817607581615448,-0.0134132439270616,-0.567827343940735,-0.823038399219513,-0.156559824943542,-0.560696303844452,-0.813085913658142,0.154043838381767,-0.552201449871063,-0.819355905056,-0.0133527694270015,-0.565267264842987,-0.824799835681915,0.209815740585327,-0.544239282608032,-0.812269151210785,0.151838079094887,-0.536456942558289,-0.830156207084656,-0.0154352709650993,-0.565558075904846,-0.824564039707184,-0.0133534446358681,-0.565295815467834,-0.824780166149139,0.20749394595623,-0.577239036560059,-0.789772987365723,-0.0132597489282489,-0.561329364776611,-0.827486217021942,0.0606670081615448,-0.569833278656006,-0.819517850875854,-0.0133686792105436,-0.565940737724304,-0.824337542057037,-0.0152930468320847,-0.566227555274963,-0.824107110500336,-0.154564261436462,-0.581192553043365,-0.798952519893646,0.0594631060957909,-0.574602365493774,-0.816269755363464,-0.0132625829428434,-0.561449289321899,-0.827404856681824,
- -0.112855136394501,-0.538313925266266,-0.835153818130493,-0.116382345557213,-0.563864529132843,-0.817625820636749,-0.0134126273915172,-0.567801237106323,-0.82305645942688,-0.156562283635139,-0.560670256614685,-0.813103437423706,0.155433282256126,0.0423324145376682,0.986939013004303,-0.016139654442668,0.0527849979698658,0.99847549200058,0.203849628567696,0.0390990898013115,0.978221118450165,0.153048425912857,0.0224848072975874,0.987962901592255,-0.021680973470211,0.0534673109650612,0.998334228992462,-0.0161377061158419,0.0525085255503654,0.99849009513855,0.202131047844887,0.0790155678987503,0.97616583108902,-0.0161103438585997,0.0486406423151493,0.998686492443085,0.0525753870606422,0.0584710873663425,0.996903657913208,-0.0161426849663258,0.0532160364091396,0.998452544212341,-0.0215202942490578,0.0542972981929779,0.998292922973633,-0.166308388113976,0.0828388333320618,0.982588052749634,0.0514872223138809,0.0640433728694916,0.996618032455444,-0.0161128733307123,0.0489968247711658,0.998668968677521,-0.120546385645866,0.0252539701759815,0.99238646030426,-0.123344212770462,0.0566844828426838,0.99074375629425,-0.0161626152694225,0.0560587272047997,0.998296678066254,-0.168650984764099,0.0567524395883083,0.9840407371521,0.165783032774925,-0.543111324310303,-0.823131859302521,-0.0131724728271365,-0.557634651660919,-0.829981982707977,0.210294634103775,-0.53664892911911,-0.817180573940277,0.163583874702454,-0.526236176490784,-0.834455370903015,-0.0169845074415207,-0.558237552642822,-0.829507291316986,-0.0131753329187632,-0.557755768299103,-0.829900562763214,0.208038330078125,-0.569989383220673,-0.794878780841827,-0.0130807450041175,-0.553751528263092,-0.83257919549942,0.051712516695261,-0.561431527137756,-0.825905859470367,-0.0131906867027283,-0.558405756950378,-0.829463124275208,-0.0168339759111404,-0.558951139450073,-0.829029738903046,-0.161448329687119,-0.574367105960846,-0.802519142627716,0.0506508611142635,-0.565629959106445,-0.823102235794067,-0.0130830472335219,-0.5538489818573,-0.832514405250549,-0.114202290773392,-0.530247509479523,-0.840116441249847,
- -0.117466457188129,-0.556326925754547,-0.822618961334229,-0.0132351340726018,-0.560287356376648,-0.828192591667175,-0.163632318377495,-0.552595973014832,-0.817228317260742,-0.148703470826149,0.976011395454407,-0.159025549888611,-0.235020697116852,0.951649844646454,-0.197807610034943,-0.17505544424057,0.969602465629578,-0.170958563685417,-0.147154182195663,0.974081695079803,-0.171786800026894,-0.326305717229843,0.939612150192261,-0.103216089308262,-0.241892442107201,0.960637629032135,-0.13661415874958,-0.174729257822037,0.969501078128815,-0.171864330768585,-0.12627375125885,0.979153871536255,-0.159099400043488,-0.14799827337265,0.975149571895599,-0.16486294567585,-0.333086252212524,0.934103429317474,-0.12846876680851,-0.146458148956299,0.973171830177307,-0.17744491994381,-0.0813708156347275,0.977895617485046,-0.192611247301102,-0.165916472673416,0.971445143222809,-0.169605553150177,-0.147971868515015,0.975116789340973,-0.165080532431602,-0.126146733760834,0.979102492332459,-0.159515976905823,-0.165848806500435,0.97056120634079,-0.174657747149467,-0.0842077434062958,0.974880218505859,-0.206198498606682,-0.145823493599892,0.972319722175598,-0.182564660906792,-0.165914267301559,0.97141569852829,-0.16977696120739,-0.126130819320679,0.979096114635468,-0.159568190574646,-0.164414152503014,0.971737086772919,-0.169396042823792,-0.0783514454960823,0.980871200561523,-0.178193464875221,-0.165877118706703,0.970927357673645,-0.172582849860191,-0.12482013553381,0.976553797721863,-0.175392746925354,-0.302217274904251,0.934743642807007,-0.186866328120232,-0.165912836790085,0.971396565437317,-0.169887736439705,-0.164349138736725,0.971699416637421,-0.169675663113594,-0.165885522961617,0.971037030220032,-0.171956419944763,-0.291303277015686,0.946852087974548,-0.136431962251663,-0.126217395067215,0.975088119506836,-0.182406932115555,-0.291904896497726,0.946253776550293,-0.139267519116402,-0.165930539369583,0.971632897853851,-0.16851282119751,-0.295501410961151,0.94526731967926,-0.138378620147705,-0.140180110931396,0.914647400379181,0.379170000553131,
- -0.157655760645866,0.912886917591095,0.376539826393127,-0.128935858607292,0.91562557220459,0.380795627832413,-0.128902360796928,0.91618824005127,0.379451364278793,-0.156990244984627,0.909487724304199,0.384949684143066,-0.152739465236664,0.910554349422455,0.384137213230133,-0.129561603069305,0.903679490089417,0.408138751983643,-0.0808959156274796,0.902681529521942,0.422636836767197,-0.1456638276577,0.903495073318481,0.403086483478546,-0.210305109620094,0.893850862979889,0.395982921123505,-0.129024744033813,0.914100646972656,0.384412169456482,-0.151673004031181,0.909136891365051,0.387898832559586,-0.0905782654881477,0.8897824883461,0.447306036949158,-0.130001306533813,0.892932057380676,0.431012839078903,-0.170447841286659,0.894469678401947,0.413366407155991,-0.173365861177444,0.883411526679993,0.435348570346832,-0.129854515194893,0.896817862987518,0.422913372516632,-0.198172450065613,0.874825477600098,0.442049860954285,-0.169334977865219,0.898445248603821,0.405119478702545,-0.0891309008002281,0.893951535224915,0.439211040735245,-0.0876301005482674,0.893803179264069,0.439814507961273,-0.361780136823654,0.766330420970917,0.530898094177246,-0.185053080320358,0.82763397693634,0.529884338378906,-0.172821655869484,0.830746352672577,0.529143869876862,-0.0896882265806198,0.893338024616241,0.440344512462616,-0.168721273541451,0.900583744049072,0.400602132081985,-0.193018972873688,0.901391208171844,0.387604981660843,-0.294602364301682,0.45459920167923,0.840564668178558,-0.208380967378616,0.486422210931778,0.848510980606079,-0.260816663503647,0.467642694711685,0.84456205368042,-0.125044882297516,0.979657053947449,-0.15695820748806,-0.162941455841064,0.976737201213837,-0.139407619833946,-0.218651592731476,0.969248235225677,-0.112912952899933,-0.303936302661896,0.931289911270142,-0.200802862644196,-0.123529203236103,0.982533693313599,-0.139169856905937,-0.223919063806534,0.958961009979248,-0.173937305808067,-0.162931546568871,0.976743280887604,-0.139376729726791,-0.12445842474699,0.980817496776581,-0.150024339556694,-0.109831184148788,0.981948494911194,-0.153994917869568,
- -0.123105734586716,0.983267605304718,-0.134275168180466,-0.311442047357559,0.933861613273621,-0.175802558660507,-0.0764910355210304,0.989410400390625,-0.123354867100716,-0.146438717842102,0.978694558143616,-0.143919348716736,-0.10971774160862,0.982023954391479,-0.153593689203262,-0.12443495541811,0.980862677097321,-0.149748221039772,-0.0793674662709236,0.990614891052246,-0.111278370022774,-0.146626651287079,0.979599118232727,-0.137426868081093,-0.122569650411606,0.984154999256134,-0.12812352180481,-0.144276291131973,0.978958785533905,-0.144305720925331,-0.109694913029671,0.982039093971252,-0.153512984514236,-0.146444573998451,0.978722929954529,-0.143720537424088,-0.146546646952629,0.979215502738953,-0.140218526124954,-0.0734884515404701,0.987995028495789,-0.135887667536736,-0.113606862723827,0.983845293521881,-0.138354450464249,-0.284123450517654,0.951175391674042,-0.12057950347662,-0.144151493906975,0.979065597057343,-0.14370408654213,-0.1464554220438,0.978775382041931,-0.143351539969444,-0.26840603351593,0.948124051094055,-0.170349836349487,-0.146540373563766,0.979185342788696,-0.140435114502907,-0.115006513893604,0.984499871730804,-0.132414609193802,-0.146436288952827,0.97868287563324,-0.144001305103302,-0.269023001194,0.948412954807281,-0.167748212814331,-0.275712072849274,0.946269571781158,-0.168987959623337,0.153398141264915,0.500213623046875,0.852206110954285,-0.0216020196676254,0.514525055885315,0.857203185558319,0.206205934286118,0.492723941802979,0.845400750637054,0.150996446609497,0.483168751001358,0.862408339977264,-0.0285241194069386,0.515563130378723,0.856376647949219,-0.0216026827692986,0.514630258083344,0.857140064239502,0.204527735710144,0.52753746509552,0.824544012546539,-0.0215741358697414,0.510132193565369,0.859825491905212,0.0486698225140572,0.518444240093231,0.85372531414032,-0.0216073989868164,0.515381157398224,0.856688678264618,-0.0283331647515297,0.516449451446533,0.855848908424377,-0.163675040006638,0.532779514789581,0.830275058746338,0.0476171597838402,0.522982776165009,0.851012110710144,
- -0.021573755890131,0.510072886943817,0.859860599040985,-0.118650577962399,0.487582385540009,0.864977180957794,-0.121572971343994,0.514051079750061,0.849100470542908,-0.0216180477291346,0.517084956169128,0.85566109418869,-0.166018590331078,0.511013448238373,0.84338790178299,0.15652522444725,0.704948484897614,-0.691771328449249,-0.0111348498612642,0.706846535205841,-0.7072793841362,0.206897482275963,0.700384855270386,-0.683121204376221,0.154125973582268,0.718489706516266,-0.678246140480042,-0.0112484842538834,0.706824839115143,-0.707299172878265,-0.0111348489299417,0.706839799880981,-0.70728600025177,0.20536470413208,0.673104047775269,-0.710462093353271,-0.0111347176134586,0.710495591163635,-0.703613579273224,0.0614879578351974,0.701791226863861,-0.709724187850952,-0.0111348433420062,0.706268429756165,-0.70785665512085,-0.0110984304919839,0.706273972988129,-0.707851707935333,-0.153722569346428,0.677172362804413,-0.719588041305542,0.0603629648685455,0.697815716266632,-0.713729381561279,-0.0111347241327167,0.710415065288544,-0.703694939613342,-0.109133988618851,0.721488118171692,-0.683772504329681,-0.111905157566071,0.699730336666107,-0.705588281154633,-0.0111347939819098,0.704816162586212,-0.709302604198456,-0.15603768825531,0.695215821266174,-0.701660335063934,0.165861561894417,0.922864735126495,-0.347578495740891,-0.0101910391822457,0.932033777236938,-0.362228184938431,0.210445567965508,0.915818810462952,-0.342035919427872,0.16333957016468,0.930205166339874,-0.328692495822906,-0.0136235021054745,0.931831002235413,-0.362636774778366,-0.0101903714239597,0.932087659835815,-0.362089574337006,0.208522155880928,0.901461184024811,-0.379323750734329,-0.0101717235520482,0.933577418327332,-0.358231395483017,0.0634494945406914,0.927927494049072,-0.367321163415909,-0.0101935295388103,0.931832373142242,-0.362745821475983,-0.0134804397821426,0.931552886962891,-0.363355904817581,-0.157955974340439,0.908820867538452,-0.38612762093544,0.0623267330229282,0.925794899463654,-0.372852832078934,-0.0101731847971678,0.933461785316467,-0.358532577753067,
- -0.109454929828644,0.935592949390411,-0.335686594247818,-0.112262219190598,0.924622535705566,-0.363964825868607,-0.0102052735164762,0.930875480175018,-0.365194290876389,-0.160273626446724,0.918276369571686,-0.36205118894577,0.154092043638229,-0.987408995628357,0.0357666984200478,-0.0164251103997231,-0.99889200925827,0.044102493673563,0.203824117779732,-0.978448092937469,0.0330920033156872,0.152068093419075,-0.98823094367981,0.0165801364928484,-0.0161650236696005,-0.998884677886963,0.0443648211658001,-0.0164296999573708,-0.998878419399261,0.0444075651466846,0.201895162463188,-0.976749837398529,0.0720991939306259,-0.0163476653397083,-0.999106705188751,0.0389700829982758,0.0620421655476093,-0.996764242649078,0.0511059835553169,-0.0164422784000635,-0.998840689659119,0.0452439747750759,-0.0160234551876783,-0.99885106086731,0.0451646000146866,-0.160201653838158,-0.984452486038208,0.0720327794551849,0.0608225166797638,-0.996515989303589,0.0570660531520844,-0.0163474287837744,-0.999107301235199,0.0389545001089573,-0.113046236336231,-0.993462800979614,0.0158785618841648,-0.116343908011913,-0.992111802101135,0.0466729998588562,-0.0164709035307169,-0.998751997947693,0.0471503771841526,-0.162258073687553,-0.985661864280701,0.0462930612266064,-0.245939508080482,0.968557775020599,-0.0375447571277618,-0.312389492988586,0.948846876621246,-0.0458545498549938,-0.30378195643425,0.951688647270203,-0.0447800308465958,-0.312832117080688,0.948845744132996,-0.0427533835172653,-0.245746716856956,0.968793213367462,-0.0323761999607086,-0.202931776642799,0.978853762149811,-0.0257677678018808,-0.303876161575317,0.951718032360077,-0.0434981621801853,-0.261401772499084,0.963643729686737,-0.055317010730505,-0.24668063223362,0.967277646064758,-0.0593516305088997,-0.245892181992531,0.968618750572205,-0.0362596064805985,-0.234311401844025,0.971492946147919,-0.0360505096614361,-0.201440095901489,0.978859722614288,-0.035432543605566,-0.261146545410156,0.963767886161804,-0.0543500296771526,-0.307361096143723,0.950764536857605,-0.0396988280117512,-0.246665552258492,0.967310965061188,-0.0588706135749817,
- -0.23781281709671,0.971173286437988,-0.0163567215204239,-0.245220124721527,0.969279944896698,-0.0190661586821079,-0.307676255702972,0.950559258460999,-0.0420999899506569,-0.30775585770607,0.950506389141083,-0.042708620429039,-0.261905670166016,0.963395178318024,-0.0572288855910301,-0.289168149232864,0.956041991710663,-0.0486371144652367,-0.306684345006943,0.95118260383606,-0.0345885790884495,-0.516269326210022,0.85355943441391,-0.0700161382555962,-0.23665177822113,0.971323549747467,-0.0229473058134317,-0.364525198936462,0.930951595306396,-0.0212299227714539,-0.307503640651703,0.950672507286072,-0.0407833158969879,-0.288690447807312,0.956262826919556,-0.0471078306436539,-0.511148452758789,0.854181408882141,-0.0954014882445335,-0.30731388926506,0.950794696807861,-0.0393403470516205,-0.434173583984375,0.89778995513916,-0.0739373341202736,-0.421155959367752,0.906691551208496,0.0232015829533339,-0.307522863149643,0.950660049915314,-0.0409296825528145,-0.360894680023193,0.932537972927094,-0.0113153317943215,-0.172799095511436,0.7333664894104,0.657505989074707,-0.120532602071762,0.774475276470184,0.621015310287476,-0.268262922763824,0.644733965396881,0.715788543224335,-0.103091612458229,0.762644410133362,0.638549625873566,-0.268708288669586,0.704019725322723,0.657382786273956,-0.31181338429451,0.684511542320251,0.658950984477997,-0.0452446788549423,0.68887734413147,0.723464548587799,0.00987632665783167,0.842867612838745,0.538030564785004,-0.0375045724213123,0.713571608066559,0.699577748775482,-0.31425866484642,0.747096478939056,0.585737466812134,-0.286330282688141,0.758191525936127,0.585799038410187,-0.15958896279335,0.799051880836487,0.579696118831635,-0.202903851866722,0.823091268539429,0.530425071716309,-0.192584529519081,0.855024099349976,0.481502860784531,-0.243228137493134,0.621985018253326,0.744294762611389,-0.0978437513113022,0.758983075618744,0.643716812133789,-0.334079682826996,0.707852900028229,0.622362613677979,-0.306262314319611,0.716342687606812,0.626942336559296,-0.263544976711273,0.598290264606476,0.756698787212372,
- -0.251849740743637,0.630631029605865,0.734081864356995,-0.138706505298615,0.855490684509277,0.498894929885864,-0.290964186191559,0.668604671955109,0.684330105781555,-0.440890371799469,0.609327554702759,0.659041404724121,-0.293084114789963,0.667908430099487,0.684105396270752,-0.140544250607491,0.512186467647552,0.847297072410584,-0.103052139282227,0.560120820999146,0.821976184844971,-0.200972080230713,0.428366780281067,0.880972266197205,-0.392140328884125,0.439094185829163,0.808345377445221,-0.16025473177433,0.534183442592621,0.830039978027344,-0.276219129562378,0.491430819034576,0.825953245162964,0.151519596576691,0.591105878353119,0.792234599590302,-0.017296152189374,0.605888783931732,0.795361280441284,0.208449319005013,0.582125842571259,0.785925149917603,0.14914558827877,0.575838804244995,0.803844153881073,-0.0254709422588348,0.607004106044769,0.79429042339325,-0.0172958169132471,0.605970203876495,0.795299232006073,0.206819444894791,0.614525139331818,0.761304497718811,-0.0173110980540514,0.602211177349091,0.798149108886719,0.0600187480449677,0.610009670257568,0.790117740631104,-0.0172932725399733,0.606585919857025,0.794829845428467,-0.0252866074442863,0.607775390148163,0.793706357479095,-0.156172588467598,0.621486902236938,0.767700612545013,0.0588219687342644,0.614809215068817,0.786479294300079,-0.0173106528818607,0.602322459220886,0.79806512594223,-0.119409836828709,0.579776227474213,0.805978238582611,-0.122434884309769,0.604869067668915,0.786856532096863,-0.0172855164855719,0.608445107936859,0.793407678604126,-0.158441320061684,0.602072834968567,0.782562911510468,0.168052896857262,0.514211714267731,-0.841037750244141,-0.0135136470198631,0.513277053833008,-0.858116567134857,0.212671786546707,0.511770665645599,-0.832383036613464,0.165639162063599,0.531289756298065,-0.830839872360229,-0.0172993037849665,0.511945366859436,-0.858843922615051,-0.0135207204148173,0.512525141239166,-0.858565747737885,0.210768774151802,0.477920770645142,-0.852741658687592,-0.0134656894952059,0.518335819244385,-0.855071246623993,0.0608289875090122,0.507931113243103,-0.859247326850891,
- -0.0135280787944794,0.511741518974304,-0.859032988548279,-0.0171175841242075,0.511103987693787,-0.85934853553772,-0.15302287042141,0.481863141059875,-0.862781465053558,0.059771690517664,0.503350615501404,-0.862012505531311,-0.0134629858657718,0.518618762493134,-0.85489958524704,-0.103014394640923,0.533321559429169,-0.839616715908051,-0.106023073196411,0.507701873779297,-0.854984164237976,-0.0135355442762375,0.510944843292236,-0.859507024288177,-0.155421763658524,0.504153549671173,-0.849513649940491,0.160368070006371,-0.842926263809204,-0.513573288917542,-0.0162291098386049,-0.858104944229126,-0.513217806816101,0.206162720918655,-0.834504783153534,-0.510978221893311,0.158055618405342,-0.832729399204254,-0.530641436576843,-0.0201660096645355,-0.858525574207306,-0.512374043464661,-0.0162347964942455,-0.858259439468384,-0.512959182262421,0.204088196158409,-0.854798197746277,-0.477145850658417,-0.0161320902407169,-0.855462849140167,-0.517612874507904,0.05774100497365,-0.860049903392792,-0.506932079792023,-0.0162506382912397,-0.858689725399017,-0.512238204479218,-0.0200063697993755,-0.858997523784637,-0.5115886926651,-0.156121507287025,-0.861630499362946,-0.482927471399307,0.0565673485398293,-0.862948775291443,-0.5021151304245,-0.0161319598555565,-0.855459272861481,-0.517618775367737,-0.110397934913635,-0.838604629039764,-0.53343653678894,-0.113591596484184,-0.854149043560028,-0.507470607757568,-0.0162872150540352,-0.859682083129883,-0.510569751262665,-0.158160626888275,-0.84885448217392,-0.504411816596985,0.162141233682632,0.42696413397789,-0.889613330364227,-0.0142588494345546,0.424241572618485,-0.905436873435974,0.211025893688202,0.425311684608459,-0.880101084709167,0.15977968275547,0.444509297609329,-0.881409049034119,-0.0164978168904781,0.423157840967178,-0.905905783176422,-0.0142642091959715,0.423513919115067,-0.905777275562286,0.209411323070526,0.389984369277954,-0.896693408489227,-0.0142168719321489,0.429885804653168,-0.902771353721619,0.0657612606883049,0.418167471885681,-0.905986428260803,-0.0142707591876388,0.422623008489609,-0.906193196773529,
- -0.0163098815828562,0.422245919704437,-0.906334578990936,-0.150951638817787,0.39325287938118,-0.906954169273376,0.0646078661084175,0.412951946258545,-0.908458292484283,-0.0142145548015833,0.430194765329361,-0.902624189853668,-0.109073162078857,0.447230786085129,-0.887743055820465,-0.11213606595993,0.418587684631348,-0.901226937770844,-0.0142782302573323,0.421604067087173,-0.906667590141296,-0.153137400746346,0.416105926036835,-0.896328508853912,0.15582250058651,-0.758882939815521,-0.632310032844543,-0.0132727492600679,-0.773214817047119,-0.6340052485466,0.208175152540207,-0.749845683574677,-0.628008544445038,0.153706595301628,-0.746617436408997,-0.647253274917603,-0.0169625729322433,-0.773556709289551,-0.633500158786774,-0.0132729094475508,-0.773219704627991,-0.633999466896057,0.205999374389648,-0.774987459182739,-0.597460210323334,-0.0131710320711136,-0.770149528980255,-0.637727558612823,0.0638509392738342,-0.776239395141602,-0.627196490764618,-0.0132895037531853,-0.773718893527985,-0.63338965177536,-0.0168144479393959,-0.774103403091431,-0.632835984230042,-0.15307080745697,-0.781284689903259,-0.6051145195961,0.0626038387417793,-0.780075788497925,-0.622545301914215,-0.013174582272768,-0.770256638526917,-0.637598037719727,-0.114743448793888,-0.749732375144959,-0.651717185974121,-0.118137173354626,-0.76972484588623,-0.627349436283112,-0.0133383311331272,-0.775186538696289,-0.631591558456421,-0.155003070831299,-0.765748262405396,-0.624182522296906,0.155821263790131,-0.758875787258148,-0.632319033145905,-0.0132724735885859,-0.773206532001495,-0.634015381336212,0.208175718784332,-0.749838471412659,-0.628016948699951,0.153708174824715,-0.746626615524292,-0.647242248058319,-0.0169603731483221,-0.77356481552124,-0.633490264415741,-0.0132731888443232,-0.773228108882904,-0.633989214897156,0.205994725227356,-0.77503627538681,-0.597398519515991,-0.0131727568805218,-0.770201563835144,-0.637664616107941,0.0638346076011658,-0.776289939880371,-0.627135694026947,-0.0132896304130554,-0.77372270822525,-0.633385002613068,-0.0168134719133377,-0.774106979370117,-0.632831573486328,
- -0.15307055413723,-0.781286895275116,-0.605111837387085,0.0625919327139854,-0.780112206935883,-0.622500896453857,-0.0131758321076632,-0.770294308662415,-0.637552320957184,-0.114749640226364,-0.749768912792206,-0.651674091815948,-0.118133254349232,-0.769701778888702,-0.627378463745117,-0.0133375469595194,-0.775162994861603,-0.631620526313782,-0.155005887150764,-0.76572448015213,-0.624210834503174,0.157884806394577,0.316134095191956,0.935484707355499,-0.0174610633403063,0.329721480607986,0.943916738033295,0.20223742723465,0.31105187535286,0.928626358509064,0.155434414744377,0.297139674425125,0.942097783088684,-0.0247975774109364,0.330793380737305,0.943377375602722,-0.0174608658999205,0.329638063907623,0.94394588470459,0.20041711628437,0.348527520895004,0.915620803833008,-0.0174510851502419,0.325582355260849,0.945352613925934,0.0518433228135109,0.334625959396362,0.940923869609833,-0.0174625292420387,0.330340504646301,0.94370025396347,-0.0246192142367363,0.331657409667969,0.943078637123108,-0.165409877896309,0.353985488414764,0.920507371425629,0.0508045926690102,0.339846611022949,0.939107656478882,-0.0174516532570124,0.32581502199173,0.945272445678711,-0.120851241052151,0.301477432250977,0.94578343629837,-0.123727358877659,0.331274390220642,0.935387015342712,-0.0174682792276144,0.332799702882767,0.942835807800293,-0.167844623327255,0.329517900943756,0.929110407829285,0.159801304340363,-0.752423226833344,-0.639001429080963,-0.0130781419575214,-0.767342686653137,-0.641103982925415,0.208625763654709,-0.743944644927979,-0.634839951992035,0.157741114497185,-0.739810407161713,-0.654062926769257,-0.0184776019304991,-0.767928421497345,-0.640269041061401,-0.0130810886621475,-0.767431795597076,-0.640997111797333,0.206511110067368,-0.769502460956573,-0.604333639144897,-0.012979406863451,-0.764351427555084,-0.644669413566589,0.0596676766872406,-0.770300149917603,-0.63488382101059,-0.0130976755172014,-0.767933487892151,-0.640395760536194,-0.0183225050568581,-0.768507778644562,-0.63957816362381,-0.158470496535301,-0.77575695514679,-0.610809504985809,
- 0.0584732592105865,-0.773935496807098,-0.630559027194977,-0.0129819959402084,-0.764429867267609,-0.644576132297516,-0.118837103247643,-0.742731928825378,-0.658959031105042,-0.12217490375042,-0.763593137264252,-0.634033739566803,-0.0131461545825005,-0.76939857006073,-0.638633847236633,-0.160608038306236,-0.759330689907074,-0.630572855472565,-0.241938412189484,0.886176705360413,-0.39516669511795,-0.309164851903915,0.864797055721283,-0.395655393600464,-0.3053317964077,0.866146266460419,-0.395680725574493,-0.309622913599014,0.865995228290558,-0.392665416002274,-0.241733998060226,0.88837593793869,-0.390324175357819,-0.201431885361671,0.899366080760956,-0.388028293848038,-0.305462419986725,0.866921126842499,-0.393878847360611,-0.257139801979065,0.874445080757141,-0.411369621753693,-0.242755547165871,0.876213729381561,-0.416316330432892,-0.241905212402344,0.886540710926056,-0.394369781017303,-0.234883487224579,0.888193309307098,-0.394895255565643,-0.199910923838615,0.895696699619293,-0.397194027900696,-0.256923913955688,0.874839544296265,-0.410665184259415,-0.30672699213028,0.867836058139801,-0.390869706869125,-0.24274531006813,0.876352488994598,-0.416030138731003,-0.238316759467125,0.895173251628876,-0.376656264066696,-0.241155177354813,0.894119560718536,-0.377351820468903,-0.306985110044479,0.866962373256683,-0.392602145671844,-0.307127475738525,0.866477251052856,-0.393560498952866,-0.257696837186813,0.873422801494598,-0.413188755512238,-0.285834133625031,0.86979067325592,-0.402198016643524,-0.305994838476181,0.870275259017944,-0.385989755392075,-0.516662538051605,0.765980362892151,-0.382536470890045,-0.237185761332512,0.892891824245453,-0.382736533880234,-0.36088028550148,0.85703045129776,-0.367782950401306,-0.306872725486755,0.867343664169312,-0.391847044229507,-0.285373896360397,0.870537877082825,-0.400906085968018,-0.511492431163788,0.757130265235901,-0.406361162662506,-0.306623309850693,0.868184924125671,-0.390175640583038,-0.437791526317596,0.803748965263367,-0.402897208929062,-0.424035608768463,0.849589943885803,-0.313673049211502,
- -0.306901395320892,0.867246568202972,-0.392039448022842,-0.357464969158173,0.861883580684662,-0.359688013792038,-0.1724883466959,0.925515532493591,0.337148129940033,-0.121763691306114,0.949419736862183,0.289440631866455,-0.26890754699707,0.864285111427307,0.425088286399841,-0.104947835206985,0.945108652114868,0.309444040060043,-0.269057542085648,0.897929847240448,0.348324626684189,-0.312809556722641,0.880106329917908,0.357159614562988,-0.0451157987117767,0.90881609916687,0.414750337600708,0.0108426855877042,0.983287572860718,0.181736662983894,-0.0380354262888432,0.921683430671692,0.386074066162109,-0.313768774271011,0.911581635475159,0.265646815299988,-0.286544978618622,0.921638667583466,0.261675953865051,-0.16138157248497,0.956990897655487,0.241090059280396,-0.203263536095619,0.960898280143738,0.188038840889931,-0.191834717988968,0.973475813865662,0.124677039682865,-0.24380923807621,0.851556599140167,0.464121222496033,-0.100080423057079,0.943741083145142,0.315177470445633,-0.338593721389771,0.886953711509705,0.314113736152649,-0.306025475263596,0.89825451374054,0.315415948629379,-0.264847010374069,0.834421277046204,0.483318984508514,-0.253217190504074,0.856147408485413,0.450436174869537,-0.137195765972137,0.980478525161743,0.140851780772209,-0.29502609372139,0.873805344104767,0.386553764343262,-0.440862834453583,0.810786962509155,0.385051548480988,-0.293233305215836,0.87442684173584,0.386512577533722,-0.14225672185421,0.789158821105957,0.597487568855286,-0.106088228523731,0.823214411735535,0.557730615139008,-0.201877027750015,0.724562048912048,0.658980667591095,-0.39362895488739,0.707429468631744,0.587026357650757,-0.163047879934311,0.803740859031677,0.572202801704407,-0.277804344892502,0.762714684009552,0.584030032157898,0.149629905819893,0.843753933906555,0.515451490879059,-0.0175548009574413,0.858335852622986,0.512787938117981,0.208754658699036,0.832701921463013,0.512863457202911,0.147366121411324,0.833997488021851,0.531724989414215,-0.0214253440499306,0.858689427375793,0.512048304080963,-0.017554983496666,0.8584064245224,0.512669801712036,
- 0.207061797380447,0.853640854358673,0.477936029434204,-0.0175484474748373,0.855926811695099,0.516799092292786,0.0604632869362831,0.860207200050354,0.506347596645355,-0.0175560060888529,0.858808159828186,0.511996388435364,-0.0212602838873863,0.859132289886475,0.511311769485474,-0.159655660390854,0.862386643886566,0.480415940284729,0.0592660531401634,0.863324344158173,0.501157462596893,-0.0175486095249653,0.855986714363098,0.516699910163879,-0.117970667779446,0.838353753089905,0.532208502292633,-0.120812423527241,0.854378461837769,0.505412697792053,-0.0175589248538017,0.859972894191742,0.51003760099411,-0.161883503198624,0.849561333656311,0.502035200595856,0.165785923600197,0.164297193288803,-0.972379267215729,-0.00653530098497868,0.157512232661247,-0.987495422363281,0.215145468711853,0.165350660681725,-0.962482035160065,0.16349071264267,0.183709472417831,-0.969289243221283,-0.0129707548767328,0.156372621655464,-0.987613022327423,-0.0065357843413949,0.157459273934364,-0.987503886222839,0.213295087218285,0.125855401158333,-0.968847572803497,-0.00649468833580613,0.161951869726181,-0.986777305603027,0.0635501071810722,0.151325240731239,-0.986439168453217,-0.00654221838340163,0.156754240393639,-0.987615942955017,-0.012811959721148,0.155521467328072,-0.987749397754669,-0.155184864997864,0.125777542591095,-0.979845762252808,0.06242785602808,0.145834788680077,-0.987337350845337,-0.00649681128561497,0.161720231175423,-0.986815333366394,-0.101944208145142,0.182392790913582,-0.977926552295685,-0.104825213551521,0.153144955635071,-0.982628345489502,-0.00656284391880035,0.154491171240807,-0.987972378730774,-0.15751388669014,0.151800125837326,-0.97577977180481,0.157087951898575,-0.974041521549225,-0.162992849946022,-0.013074847869575,-0.987476527690887,-0.157223716378212,0.208910465240479,-0.964116394519806,-0.163817420601845,0.154851362109184,-0.970976591110229,-0.182278841733933,-0.0195988398045301,-0.987523972988129,-0.156244486570358,-0.0130732990801334,-0.987462997436523,-0.15730844438076,0.206690236926079,-0.970473229885101,-0.124341785907745,
- -0.01299365516752,-0.986760437488556,-0.161663308739662,0.0555156618356705,-0.98699152469635,-0.150883391499519,-0.0130868488922715,-0.987580835819244,-0.156565874814987,-0.019440945237875,-0.987667560577393,-0.155353903770447,-0.161906123161316,-0.978675067424774,-0.126418188214302,0.0544061213731766,-0.987862467765808,-0.145491242408752,-0.0129981134086847,-0.986800193786621,-0.161419928073883,-0.108982607722282,-0.97709333896637,-0.182787969708443,-0.112186267971992,-0.981801688671112,-0.153231292963028,-0.0131330136209726,-0.987978518009186,-0.154032155871391,-0.163976073265076,-0.974652051925659,-0.152201503515244,0.159461319446564,0.0652014315128326,-0.985048770904541,-0.00740999169647694,0.0572626702487469,-0.998331665992737,0.208383977413177,0.0672159120440483,-0.975734651088715,0.15713432431221,0.0842094719409943,-0.983980476856232,-0.0104375900700688,0.0567260310053825,-0.998335242271423,-0.00741020077839494,0.0572376251220703,-0.998333096504211,0.206685572862625,0.028774730861187,-0.977984189987183,-0.00736970733851194,0.0620905980467796,-0.998043358325958,0.0665189847350121,0.0509183406829834,-0.996485114097595,-0.00741674425080419,0.0564512796700001,-0.998377799987793,-0.0102831162512302,0.0558864995837212,-0.998384177684784,-0.152559712529182,0.0272274445742369,-0.987919092178345,0.0653658583760262,0.0450989939272404,-0.996841728687286,-0.00737138604745269,0.06188989803195,-0.998055875301361,-0.110454320907593,0.085110142827034,-0.9902303814888,-0.113464988768101,0.0531967431306839,-0.992116868495941,-0.00743695721030235,0.0540186762809753,-0.998512268066406,-0.154597356915474,0.052711945027113,-0.986570358276367,0.155843183398247,-0.939661800861359,-0.304546415805817,-0.0102782100439072,-0.953592240810394,-0.300925850868225,0.209161803126335,-0.929461002349854,-0.303897380828857,0.153739303350449,-0.933836698532104,-0.322975665330887,-0.0147472228854895,-0.953657865524292,-0.300531476736069,-0.0102716526016593,-0.953492283821106,-0.301242351531982,0.206816777586937,-0.941519558429718,-0.266022145748138,
- -0.0101948725059628,-0.952316343784332,-0.304941892623901,0.0638700053095818,-0.953875660896301,-0.293328911066055,-0.0102855172008276,-0.953703343868256,-0.3005730509758,-0.0146038271486759,-0.953899264335632,-0.299771547317505,-0.15411651134491,-0.950244128704071,-0.270710438489914,0.0626187920570374,-0.955706655979156,-0.287582576274872,-0.0102029126137495,-0.952440142631531,-0.304555207490921,-0.111779943108559,-0.938947737216949,-0.325396090745926,-0.115231305360794,-0.948214054107666,-0.295993238687515,-0.0103426845744252,-0.954569458961487,-0.29780900478363,-0.156013488769531,-0.942865133285522,-0.294389486312866,0.15584260225296,-0.939660310745239,-0.304551601409912,-0.010278076864779,-0.953590214252472,-0.300932347774506,0.209162071347237,-0.929459393024445,-0.30390202999115,0.153741329908371,-0.933842360973358,-0.322958320379257,-0.0147443078458309,-0.953662812709808,-0.30051600933075,-0.0102719841524959,-0.953497350215912,-0.301226317882538,0.206812828779221,-0.941537439823151,-0.265961945056915,-0.010196247138083,-0.952337503433228,-0.304875880479813,0.06385637819767,-0.953895807266235,-0.293266326189041,-0.0102857258170843,-0.953706562519073,-0.300562918186188,-0.0146020092070103,-0.953902304172516,-0.299761921167374,-0.154115945100784,-0.950246334075928,-0.270703315734863,0.0626091063022614,-0.955720663070679,-0.287538111209869,-0.010203879326582,-0.95245498418808,-0.304508715867996,-0.111785359680653,-0.938962697982788,-0.325351029634476,-0.115227557718754,-0.948204278945923,-0.296025723218918,-0.0103420130908489,-0.95455938577652,-0.297841578722,-0.156016007065773,-0.942854762077332,-0.294421583414078,0.153343185782433,0.642194092273712,0.751047730445862,-0.0162833128124475,0.657235741615295,0.753509104251862,0.199880361557007,0.634678184986115,0.746479511260986,0.15101632475853,0.627393662929535,0.763918340206146,-0.0241575539112091,0.657989025115967,0.752639949321747,-0.0162817537784576,0.657060205936432,0.753662288188934,0.197981745004654,0.664252161979675,0.720813691616058,-0.0162552893161774,0.654089689254761,0.756242394447327,
- 0.0518122538924217,0.660691440105438,0.748867332935333,-0.0162865165621042,0.65759664773941,0.753194093704224,-0.0239859819412231,0.658667623996735,0.752051651477814,-0.165592104196548,0.67108690738678,0.722649157047272,0.0507363826036453,0.664860427379608,0.745242595672607,-0.0162576418370008,0.654352903366089,0.75601452589035,-0.119614794850349,0.632046937942505,0.765642881393433,-0.122517973184586,0.655629277229309,0.745076954364777,-0.0163054205477238,0.659732282161713,0.751323759555817,-0.168094053864479,0.651546537876129,0.739750981330872,0.164555758237839,-0.935344457626343,-0.313132852315903,-0.0100956372916698,-0.950778841972351,-0.309705823659897,0.209648460149765,-0.926515221595764,-0.312437266111374,0.162430375814438,-0.929072797298431,-0.332325428724289,-0.0163317061960697,-0.950948357582092,-0.308918386697769,-0.0100914044305682,-0.95071280002594,-0.309908598661423,0.207364469766617,-0.938977241516113,-0.27444788813591,-0.0100152064114809,-0.949518084526062,-0.313552498817444,0.0582864806056023,-0.95123291015625,-0.302916914224625,-0.0101052047684789,-0.950927913188934,-0.309247404336929,-0.016180956736207,-0.951209545135498,-0.308121263980865,-0.156946867704391,-0.947475373744965,-0.27867192029953,0.0571235865354538,-0.952967584133148,-0.297640442848206,-0.0100224744528532,-0.949632585048676,-0.313205420970917,-0.113340049982071,-0.935642302036285,-0.334256649017334,-0.116631411015987,-0.945314943790436,-0.304592698812485,-0.0101621272042394,-0.951811254024506,-0.306516110897064,-0.159042567014694,-0.939676105976105,-0.302843987941742,-0.242844834923744,0.754244744777679,-0.610033810138702,-0.30972945690155,0.733521282672882,-0.604991137981415,-0.308391392230988,0.733976423740387,-0.605122745037079,-0.310177117586136,0.735383868217468,-0.60249537229538,-0.242655396461487,0.757542729377747,-0.606009483337402,-0.204776734113693,0.768153309822083,-0.606635868549347,-0.308599591255188,0.735899925231934,-0.602675437927246,-0.255543023347855,0.738970458507538,-0.623394250869751,-0.243607819080353,0.739327192306519,-0.627734541893005,
- -0.242813125252724,0.754806220531464,-0.609351575374603,-0.236270248889923,0.756174921989441,-0.610226154327393,-0.203369140625,0.762506902217865,-0.614185929298401,-0.255331724882126,0.739520609378815,-0.622828304767609,-0.307159274816513,0.737812757492065,-0.601070284843445,-0.243596017360687,0.739582657814026,-0.627438187599182,-0.239575028419495,0.767401337623596,-0.594726145267487,-0.242112040519714,0.766328155994415,-0.59508228302002,-0.307451486587524,0.73633337020874,-0.60273277759552,-0.307567358016968,0.735743522644043,-0.60339367389679,-0.25612872838974,0.737440943717957,-0.624963223934174,-0.28714919090271,0.736695945262909,-0.61222916841507,-0.306460678577423,0.741303563117981,-0.597118854522705,-0.517496287822723,0.64108794927597,-0.5667484998703,-0.238506391644478,0.763769268989563,-0.599809408187866,-0.362799316644669,0.733098566532135,-0.575276672840118,-0.307314276695251,0.737029552459717,-0.601951360702515,-0.286685854196548,0.737768054008484,-0.61115425825119,-0.512304067611694,0.626349210739136,-0.587563872337341,-0.307087749242783,0.738173186779022,-0.60066419839859,-0.437881946563721,0.672781884670258,-0.596342206001282,-0.424592167139053,0.740011096000671,-0.52163690328598,-0.307330399751663,0.736947894096375,-0.602043151855469,-0.359228372573853,0.740121960639954,-0.568484365940094,-0.171825647354126,0.981312870979309,0.0866082161664963,-0.123022899031639,0.991738557815552,0.0363315790891647,-0.270443111658096,0.943869948387146,0.189658254384995,-0.106716118752956,0.992709159851074,0.0560391694307327,-0.267305731773376,0.957907438278198,0.104694694280624,-0.314977020025253,0.941609740257263,0.118998922407627,-0.0449142046272755,0.985162079334259,0.165645480155945,0.0093042403459549,0.997428417205811,-0.0710640698671341,-0.0384359695017338,0.989788234233856,0.137265861034393,-0.315517842769623,0.948659718036652,0.0222091469913721,-0.284689158201218,0.958503603935242,0.0149315986782312,-0.163515329360962,0.986453294754028,-0.0131381154060364,-0.203748226165771,0.97698962688446,-0.0630707964301109,
- -0.193011179566383,0.973328292369843,-0.124010846018791,-0.242701545357704,0.945134401321411,0.218671098351479,-0.102169409394264,0.992863357067108,0.0615125745534897,-0.331268787384033,0.940582633018494,0.0746011212468147,-0.307763010263443,0.948627293109894,0.0734050944447517,-0.263896584510803,0.931861698627472,0.24898274242878,-0.250620543956757,0.945808887481689,0.206482276320457,-0.139579355716705,0.984043180942535,-0.110348418354988,-0.287791132926941,0.946261405944824,0.147531598806381,-0.439872980117798,0.883139193058014,0.163024857640266,-0.294861644506454,0.943958282470703,0.148321941494942,-0.138143390417099,0.919221937656403,0.368710517883301,-0.104043141007423,0.940264046192169,0.324158191680908,-0.202352404594421,0.869440317153931,0.450696170330048,-0.391660511493683,0.835879683494568,0.384587019681931,-0.156136885285378,0.925804138183594,0.344250112771988,-0.27879935503006,0.88709545135498,0.367875754833221,0.154095187783241,0.947331070899963,0.280746310949326,-0.0173016358166933,0.961468398571014,0.274370819330215,0.208507746458054,0.936774075031281,0.281031787395477,0.151758626103401,0.941959142684937,0.299470186233521,-0.0217380709946156,0.961629033088684,0.273490637540817,-0.0173012688755989,0.961499154567719,0.274262666702271,0.206891000270844,0.947988390922546,0.241896778345108,-0.0173163935542107,0.960195958614349,0.278790056705475,0.0616729110479355,0.961600601673126,0.267433643341064,-0.0172987412661314,0.961711645126343,0.273516714572906,-0.021570447832346,0.961869299411774,0.272657632827759,-0.162918403744698,0.956693708896637,0.241235792636871,0.0604945346713066,0.963300168514252,0.261520862579346,-0.0173159744590521,0.960232794284821,0.278663098812103,-0.118714988231659,0.947038233280182,0.298371374607086,-0.121622800827026,0.955657064914703,0.268193244934082,-0.0172910504043102,0.962349593639374,0.271264135837555,-0.165334910154343,0.949684917926788,0.266012936830521,0.170767933130264,-0.0914109498262405,-0.98106187582016,-0.00863812305033207,-0.10232837498188,-0.994713246822357,0.217379242181778,-0.0880210027098656,-0.972110331058502,
- 0.168347924947739,-0.0713084414601326,-0.98314505815506,-0.0128140244632959,-0.103326365351677,-0.994564950466156,-0.00864023342728615,-0.102627411484718,-0.994682371616364,0.215486854314804,-0.128284782171249,-0.968043684959412,-0.00860351789742708,-0.0974427834153175,-0.995203971862793,0.0592638179659843,-0.107326909899712,-0.992455959320068,-0.00864566303789616,-0.1033965498209,-0.994602680206299,-0.0126542057842016,-0.104179821908474,-0.994477987289429,-0.15507934987545,-0.13089981675148,-0.979191303253174,0.0582149997353554,-0.112531408667564,-0.991941392421722,-0.00860392767935991,-0.0975005328655243,-0.995198309421539,-0.102849066257477,-0.0755040124058723,-0.991827249526978,-0.10585705935955,-0.105166934430599,-0.988804459571838,-0.00865877140313387,-0.105256579816341,-0.994407415390015,-0.157430663704872,-0.104710079729557,-0.981963098049164,0.16127060353756,-0.982498824596405,0.0932092741131783,-0.0172794852405787,-0.994564056396484,0.102683372795582,0.209115520119667,-0.973731100559235,0.0901035740971565,0.159033358097076,-0.984548628330231,0.0732966586947441,-0.0215126946568489,-0.994369506835938,0.103761836886406,-0.0172851830720901,-0.994522154331207,0.103087067604065,0.206950515508652,-0.969686806201935,0.129919454455376,-0.0172040089964867,-0.995101273059845,0.0973532050848007,0.0580786466598511,-0.992357552051544,0.108872935175896,-0.0172973927110434,-0.994431853294373,0.103952556848526,-0.0213418453931808,-0.994273722171783,0.104710809886456,-0.156257435679436,-0.979253768920898,0.129018515348434,0.0568995662033558,-0.991793036460876,0.114495374262333,-0.0172027498483658,-0.995109856128693,0.0972647294402123,-0.111980244517326,-0.990923702716827,0.0743682309985161,-0.115310415625572,-0.987781047821045,0.104843340814114,-0.0173219125717878,-0.994247853755951,0.105693653225899,-0.158291354775429,-0.981884777545929,0.104145005345345,0.161943390965462,-0.190592050552368,-0.968219518661499,-0.00930182728916407,-0.201988086104393,-0.979343891143799,0.209028288722038,-0.186393111944199,-0.959981739521027,
- 0.15958060324192,-0.1716588139534,-0.972145736217499,-0.0113528156653047,-0.202551513910294,-0.979205906391144,-0.0093032568693161,-0.202217027544975,-0.979296565055847,0.207340240478516,-0.224208816885948,-0.952229201793671,-0.00926957186311483,-0.196844607591629,-0.980390965938568,0.0655347853899002,-0.207385808229446,-0.976061701774597,-0.00930842198431492,-0.203044250607491,-0.979125320911407,-0.01119439676404,-0.203403890132904,-0.979030907154083,-0.150667414069176,-0.227924332022667,-0.961951076984406,0.0644143745303154,-0.213026687502861,-0.974920809268951,-0.00926985032856464,-0.196888983249664,-0.980381965637207,-0.106175735592842,-0.173930123448372,-0.979017376899719,-0.109246417880058,-0.204285994172096,-0.972796261310577,-0.00932100880891085,-0.205063864588737,-0.978704214096069,-0.1527199447155,-0.203299641609192,-0.967132866382599,0.152496859431267,-0.986932754516602,-0.0520421303808689,-0.01502376049757,-0.998879849910736,-0.0448710285127163,0.208258390426636,-0.976574420928955,-0.0541380345821381,0.150393337011337,-0.986076951026917,-0.0709516555070877,-0.0158243142068386,-0.998883783817291,-0.0445070639252663,-0.0150276087224483,-0.998890280723572,-0.0446370169520378,0.206094846129417,-0.978423237800598,-0.0145948249846697,-0.0149385379627347,-0.998635590076447,-0.0500383488833904,0.0641851052641869,-0.997228384017944,-0.0376290157437325,-0.0150413298979402,-0.998926997184753,-0.0438025631010532,-0.0156791750341654,-0.998922526836395,-0.0436806567013264,-0.159199059009552,-0.987120926380157,-0.0157464537769556,0.0629336312413216,-0.997517943382263,-0.0315825007855892,-0.0149389700964093,-0.998636901378632,-0.0500123053789139,-0.111403353512287,-0.991132438182831,-0.0724283009767532,-0.114764206111431,-0.992516756057739,-0.0417096652090549,-0.0150737464427948,-0.999011158943176,-0.0418281964957714,-0.161091461777687,-0.986066102981567,-0.0415109395980835,0.152496710419655,-0.986932814121246,-0.0520437397062778,-0.0150237111374736,-0.998879730701447,-0.0448740608990192,0.208258450031281,-0.97657436132431,-0.0541391633450985,
- 0.150394752621651,-0.986077606678009,-0.0709390118718147,-0.0158223770558834,-0.998884320259094,-0.0444960333406925,-0.015027797780931,-0.998890817165375,-0.0446256324648857,0.206091061234474,-0.978425025939941,-0.0145301567390561,-0.0149397188797593,-0.998639166355133,-0.0499670058488846,0.0641711428761482,-0.997231781482697,-0.0375615134835243,-0.0150414379313588,-0.998927295207977,-0.0437959544360638,-0.015678059309721,-0.998922824859619,-0.0436742976307869,-0.159198805689812,-0.987121045589447,-0.0157429575920105,0.0629237145185471,-0.99752002954483,-0.0315346643328667,-0.014939796179533,-0.998639404773712,-0.0499623082578182,-0.111408762633801,-0.99113541841507,-0.0723798051476479,-0.114760503172874,-0.992515742778778,-0.0417440757155418,-0.0150732044130564,-0.999009728431702,-0.0418611913919449,-0.161093950271606,-0.986064255237579,-0.0415458641946316,0.158164501190186,0.813224375247955,0.560044765472412,-0.0174573287367821,0.829201996326447,0.558676481246948,0.202305316925049,0.805079996585846,0.557600975036621,0.155771031975746,0.801925539970398,0.576758980751038,-0.0251140370965004,0.829750776290894,0.557568728923798,-0.0174570791423321,0.829141199588776,0.558766603469849,0.200497463345528,0.827316880226135,0.524735808372498,-0.017447205260396,0.826742827892303,0.562309324741364,0.0530012398958206,0.831377983093262,0.553174138069153,-0.017458762973547,0.829556584358215,0.558149635791779,-0.0249340906739235,0.830268740653992,0.556805372238159,-0.161881640553474,0.834716498851776,0.526348650455475,0.0519068464636803,0.834523022174835,0.548522531986237,-0.0174478013068438,0.826885640621185,0.56209933757782,-0.117340117692947,0.808501660823822,0.576676905155182,-0.1201331615448,0.825682818889618,0.551194965839386,-0.0174646209925413,0.831017374992371,0.555972158908844,-0.164168104529381,0.820664942264557,0.547318935394287,0.159631118178368,-0.985265970230103,-0.0613911598920822,-0.0148718329146504,-0.998426675796509,-0.0540652088820934,0.208705857396126,-0.975937902927399,-0.0631428360939026,0.157567158341408,-0.98418128490448,-0.0809924826025963,
- -0.0173707604408264,-0.998426675796509,-0.0533144734799862,-0.0148775391280651,-0.998445212841034,-0.0537213906645775,0.206604033708572,-0.978145062923431,-0.0233910772949457,-0.0147883649915457,-0.99814361333847,-0.0590824224054813,0.0582367777824402,-0.997165977954865,-0.0476294122636318,-0.0148913031443954,-0.998489320278168,-0.0528916604816914,-0.0172184240072966,-0.99847537279129,-0.0524467118084431,-0.160047680139542,-0.986804366111755,-0.0245338473469019,0.057089950889349,-0.99748158454895,-0.0420870929956436,-0.014788075350225,-0.998142600059509,-0.0590997636318207,-0.111042194068432,-0.990476071834564,-0.0814055427908897,-0.114184856414795,-0.992161154747009,-0.0507757961750031,-0.0149234235286713,-0.998589634895325,-0.0509522184729576,-0.162121117115021,-0.985477447509766,-0.050508052110672,-0.241294756531715,0.490490198135376,-0.837374567985535,-0.315521627664566,0.470848053693771,-0.823861718177795,-0.303853869438171,0.474160820245743,-0.826343953609467,-0.31596252322197,0.47346568107605,-0.822190880775452,-0.241077035665512,0.495182603597641,-0.834671258926392,-0.204868152737617,0.504444301128387,-0.838787853717804,-0.303943425416946,0.475302070379257,-0.825655102729797,-0.258460700511932,0.471469432115555,-0.843157589435577,-0.242162227630615,0.469837486743927,-0.848887622356415,-0.241259068250656,0.491270989179611,-0.836927056312561,-0.239081710577011,0.491595059633255,-0.837361514568329,-0.203430742025375,0.496527701616287,-0.843846023082733,-0.258239686489105,0.47222176194191,-0.842804193496704,-0.310334473848343,0.478257864713669,-0.821560621261597,-0.242153063416481,0.470075339078903,-0.848758578300476,-0.242273718118668,0.506597578525543,-0.827443242073059,-0.240473359823227,0.507400274276733,-0.827476561069489,-0.310964792966843,0.474147498607636,-0.823702037334442,-0.310736238956451,0.475644320249558,-0.822924911975861,-0.25899201631546,0.469656825065613,-0.844005703926086,-0.2832390666008,0.472635447978973,-0.834500670433044,-0.309837192296982,0.481462746858597,-0.819874703884125,-0.515210866928101,0.400573909282684,-0.757692873477936,
- -0.241269409656525,0.501854479312897,-0.830621004104614,-0.360746145248413,0.482591927051544,-0.798102259635925,-0.310466736555099,0.477400034666061,-0.8220095038414,-0.282791614532471,0.473960041999817,-0.833900928497314,-0.510115504264832,0.379793524742126,-0.771711766719818,-0.31050705909729,0.477137804031372,-0.822146475315094,-0.438572585582733,0.418525099754334,-0.795292854309082,-0.425166547298431,0.508095502853394,-0.749047756195068,-0.310434222221375,0.477611243724823,-0.821899056434631,-0.357442677021027,0.491026341915131,-0.794435679912567,-0.171784460544586,0.94866931438446,-0.265549719333649,-0.120670683681965,0.940172553062439,-0.318612903356552,-0.268209278583527,0.950237274169922,-0.158471167087555,-0.103231325745583,0.948563754558563,-0.299282670021057,-0.264875024557114,0.933608829975128,-0.241279467940331,-0.311616778373718,0.923773050308228,-0.222572326660156,-0.0449600741267204,0.980240404605865,-0.192632615566254,0.0100819962099195,0.906658947467804,-0.421743780374527,-0.037475660443306,0.973597586154938,-0.225174114108086,-0.315163880586624,0.895459413528442,-0.314363092184067,-0.282827228307724,0.902384042739868,-0.325133442878723,-0.15993794798851,0.918503165245056,-0.361623823642731,-0.203021585941315,0.890138626098633,-0.407965123653412,-0.192421287298203,0.86541885137558,-0.462627768516541,-0.242941796779633,0.961700558662415,-0.126930460333824,-0.098027877509594,0.950923323631287,-0.293488323688507,-0.332334995269775,0.905984282493591,-0.262194871902466,-0.307378888130188,0.913536071777344,-0.266402214765549,-0.264432549476624,0.959779024124146,-0.0943387821316719,-0.251163095235825,0.957900166511536,-0.139084219932556,-0.138390257954597,0.880403101444244,-0.453584134578705,-0.289084821939468,0.937052845954895,-0.195862263441086,-0.438925176858902,0.88423365354538,-0.15961092710495,-0.294450491666794,0.935626745223999,-0.194683164358139,-0.139302954077721,0.990004539489746,0.0220428723841906,-0.105217285454273,0.994080781936646,-0.0270725227892399,-0.199552476406097,0.973638474941254,0.110484942793846,
- -0.391809374094009,0.917768597602844,0.0647026896476746,-0.158026173710823,0.987425565719604,-0.00432243244722486,-0.273937493562698,0.961295366287231,0.0294864252209663,0.151753261685371,0.985788464546204,-0.0720568150281906,-0.0156920682638884,0.996446251869202,-0.0827562436461449,0.210703566670418,0.975201010704041,-0.0677286386489868,0.149378195405006,0.987362623214722,-0.0529262870550156,-0.0243561416864395,0.996152460575104,-0.0841845497488976,-0.0156921613961458,0.996452271938324,-0.0826849341392517,0.208983018994331,0.971855401992798,-0.108734421432018,-0.0156974904239178,0.996790587902069,-0.0785003751516342,0.0628294795751572,0.993998885154724,-0.08954718708992,-0.0156912077218294,0.996391654014587,-0.0834114924073219,-0.0241811648011208,0.996077299118042,-0.0851191729307175,-0.156025350093842,0.981512367725372,-0.110858887434006,0.0615869052708149,0.993497550487518,-0.095758281648159,-0.0156971663236618,0.996769964694977,-0.078761875629425,-0.1235491335392,0.990858376026154,-0.054178100079298,-0.126571908593178,0.988172233104706,-0.0865751057863235,-0.0156876742839813,0.996167361736298,-0.0860496908426285,-0.158320739865303,0.983589112758636,-0.0865277796983719,0.165997549891472,-0.432589650154114,-0.886177718639374,-0.010563213378191,-0.44711297750473,-0.894415140151978,0.215382725000381,-0.425960183143616,-0.87873101234436,0.163590043783188,-0.415014028549194,-0.894986927509308,-0.0141158401966095,-0.448099374771118,-0.893872320652008,-0.0105650555342436,-0.447580993175507,-0.894180953502655,0.213522151112556,-0.461821377277374,-0.860888659954071,-0.0105443652719259,-0.442357569932938,-0.896776795387268,0.0601610690355301,-0.450997084379196,-0.890495479106903,-0.010567975230515,-0.448324024677277,-0.893808722496033,-0.0139489397406578,-0.44890233874321,-0.893471956253052,-0.156257122755051,-0.468400776386261,-0.869588732719421,0.0590950399637222,-0.455734252929688,-0.888152003288269,-0.0105439750477672,-0.442259788513184,-0.896825015544891,-0.106725126504898,-0.419911086559296,-0.901268243789673,-0.10967555642128,-0.447417408227921,-0.887574732303619,
- -0.0105731645599008,-0.449649125337601,-0.893142819404602,-0.158645629882813,-0.444660633802414,-0.881537556648254,0.161489337682724,-0.886250913143158,0.434143483638763,-0.0176072437316179,-0.894208908081055,0.447303742170334,0.212021872401237,-0.878670692443848,0.427767097949982,0.159197494387627,-0.895212829113007,0.416233241558075,-0.0212517697364092,-0.893678605556488,0.448204040527344,-0.0176151879131794,-0.894006550312042,0.447707444429398,0.209837421774864,-0.860561013221741,0.464115411043167,-0.0175116769969463,-0.896620154380798,0.442454308271408,0.0563000440597534,-0.890185356140137,0.452106475830078,-0.0176306422799826,-0.893612384796143,0.448493033647537,-0.0210891906172037,-0.893256723880768,0.449051827192307,-0.160027295351028,-0.869713544845581,0.46689361333847,0.0551469698548317,-0.887731313705444,0.457046896219254,-0.0175096914172173,-0.896669745445251,0.44235372543335,-0.110897675156593,-0.900813043117523,0.419806569814682,-0.114052042365074,-0.887237906455994,0.446991235017776,-0.0176602695137262,-0.892853975296021,0.450000107288361,-0.162155896425247,-0.881282091140747,0.443900376558304,0.16405288875103,-0.519995152950287,-0.838267087936401,-0.0108642289415002,-0.534931004047394,-0.84482604265213,0.205223798751831,-0.514034867286682,-0.832857489585876,0.161819562315941,-0.503386616706848,-0.84877347946167,-0.0131696835160255,-0.535548269748688,-0.844401955604553,-0.0108651034533978,-0.53523451089859,-0.844633638858795,0.203479647636414,-0.546000361442566,-0.81269896030426,-0.0108503568917513,-0.530178844928741,-0.847816407680511,0.0659461170434952,-0.538760244846344,-0.839874148368835,-0.0108672697097063,-0.5359867811203,-0.844156444072723,-0.0129962433129549,-0.536327004432678,-0.843910336494446,-0.152980923652649,-0.553135871887207,-0.818924725055695,0.0648163482546806,-0.543666660785675,-0.83679473400116,-0.0108501743525267,-0.53011691570282,-0.847855150699615,-0.106534898281097,-0.508378088474274,-0.854518592357636,-0.109628662467003,-0.534639954566956,-0.837938904762268,-0.0108715258538723,-0.537472724914551,-0.843211054801941,
- -0.155062109231949,-0.531551122665405,-0.832711935043335,0.151089712977409,-0.941905915737152,0.29997530579567,-0.0148241864517331,-0.95037055015564,0.310767024755478,0.215063631534576,-0.931462287902832,0.293471843004227,0.14902925491333,-0.947731256484985,0.282127350568771,-0.018560566008091,-0.950057506561279,0.311522334814072,-0.0148283541202545,-0.950305759906769,0.310965061187744,0.212833240628242,-0.918802797794342,0.332420885562897,-0.0147214271128178,-0.95195335149765,0.305889278650284,0.0658019706606865,-0.946081340312958,0.317175328731537,-0.0148449568077922,-0.950046896934509,0.311754196882248,-0.0184032544493675,-0.949778914451599,0.312380164861679,-0.155651122331619,-0.929845809936523,0.3334059715271,0.0645145773887634,-0.944180607795715,0.323049157857895,-0.0147222885861993,-0.9519402384758,0.305930137634277,-0.116657286882401,-0.952625513076782,0.280883699655533,-0.120238050818443,-0.942683219909668,0.311273604631424,-0.0148852095007896,-0.949415922164917,0.313668549060822,-0.157609358429909,-0.937722325325012,0.309574097394943,0.15108934044838,-0.941906988620758,0.299972146749496,-0.0148240895941854,-0.950372099876404,0.310762405395508,0.215063765645027,-0.931463122367859,0.293469220399857,0.149030268192291,-0.947728455066681,0.282136052846909,-0.0185592845082283,-0.950055301189423,0.311529338359833,-0.0148285068571568,-0.950303375720978,0.310972332954407,0.212829634547234,-0.918782770633698,0.332478225231171,-0.0147227924317122,-0.951932370662689,0.305954128503799,0.0657886043190956,-0.946061789989471,0.317236393690109,-0.0148450303822756,-0.950045764446259,0.31175771355629,-0.0184026435017586,-0.949777781963348,0.312383502721787,-0.155651047825813,-0.929845452308655,0.333406925201416,0.0645050927996635,-0.944166481494904,0.323092401027679,-0.0147232478484511,-0.951925456523895,0.305975705385208,-0.116662636399269,-0.95261162519455,0.280928552150726,-0.120234966278076,-0.942692279815674,0.311247169971466,-0.0148846469819546,-0.949424803256989,0.31364181637764,-0.157611489295959,-0.937730848789215,0.309547543525696,
- 0.157464370131493,0.958723247051239,0.236759096384048,-0.0153240226209164,0.973075449466705,0.229976788163185,0.197475284337997,0.95114803314209,0.237320795655251,0.155047073960304,0.954081356525421,0.256298869848251,-0.0206877291202545,0.973115205764771,0.22938796877861,-0.0153227467089891,0.972994387149811,0.230319768190384,0.195795342326164,0.960105538368225,0.199654132127762,-0.0153095461428165,0.972156167030334,0.233833432197571,0.0525863282382488,0.973168253898621,0.224004909396172,-0.015325223095715,0.973151683807373,0.229654043912888,-0.0205332394689322,0.973302364349365,0.228606760501862,-0.164400517940521,0.966510117053986,0.197055250406265,0.0515096932649612,0.97446084022522,0.218570023775101,-0.0153111098334193,0.972255408763886,0.233420580625534,-0.113537326455116,0.960705578327179,0.253286302089691,-0.116308651864529,0.967571377754211,0.224227756261826,-0.0153361121192575,0.973843097686768,0.226703241467476,-0.166764259338379,0.960654497146606,0.222109511494637,0.164754390716553,-0.942728042602539,0.290034294128418,-0.0146394651383162,-0.953193664550781,0.302006155252457,0.21550577878952,-0.934037268161774,0.284836143255234,0.162603870034218,-0.948814451694489,0.270760595798492,-0.0200970564037561,-0.952738702297211,0.30312579870224,-0.0146458763629198,-0.953097224235535,0.302309721708298,0.213342398405075,-0.921651721000671,0.324103862047195,-0.0145389884710312,-0.954687535762787,0.297254681587219,0.0578493811190128,-0.949776411056519,0.307535767555237,-0.0146624818444252,-0.952847301959991,0.30309596657753,-0.0199327040463686,-0.952455341815948,0.304025501012802,-0.16100686788559,-0.931674957275391,0.325666487216949,0.056674100458622,-0.948127746582031,0.312796860933304,-0.0145390341058373,-0.954686999320984,0.297256797552109,-0.113547749817371,-0.955298066139221,0.272969931364059,-0.116847582161427,-0.945870876312256,0.302778750658035,-0.0147023210301995,-0.952244102954865,0.304983556270599,-0.163270547986031,-0.939636945724487,0.300707757472992,-0.314760088920593,0.931053519248962,0.184568628668785,
- -0.398063480854034,0.906638979911804,0.139825731515884,-0.346147775650024,0.922996520996094,0.168104752898216,-0.313690662384033,0.933888494968414,0.171611428260803,-0.478192508220673,0.84931480884552,0.223598644137383,-0.402416706085205,0.893345415592194,0.199987053871155,-0.346188068389893,0.922958195209503,0.168231993913651,-0.29550701379776,0.937292277812958,0.184821113944054,-0.314288347959518,0.932342708110809,0.178773447871208,-0.485335826873779,0.851560831069946,0.198225528001785,-0.313208818435669,0.935068488121033,0.165973544120789,-0.257362723350525,0.953853011131287,0.154689401388168,-0.33178323507309,0.927357196807861,0.172998860478401,-0.314270585775375,0.932390153408051,0.178557693958282,-0.295402050018311,0.937401413917542,0.184434980154037,-0.331889659166336,0.928291976451874,0.167699933052063,-0.260321855545044,0.955050528049469,0.141813293099403,-0.312758803367615,0.936120688915253,0.160810753703117,-0.331788331270218,0.927400350570679,0.172757908701897,-0.295370399951935,0.937434256076813,0.18431855738163,-0.32338809967041,0.929856419563293,0.175463184714317,-0.254196763038635,0.952410161495209,0.168223112821579,-0.331846565008163,0.927906334400177,0.169904783368111,-0.296459257602692,0.939924836158752,0.169272556900978,-0.459403097629547,0.876391530036926,0.144522786140442,-0.331791281700134,0.927425563335419,0.172616064548492,-0.323169678449631,0.93014258146286,0.174344703555107,-0.331834822893143,0.927802979946136,0.170491293072701,-0.44953179359436,0.871573150157928,0.195656105875969,-0.297832131385803,0.94061553478241,0.162906676530838,-0.450192838907242,0.871871471405029,0.192786782979965,-0.331763237714767,0.927187323570251,0.173944935202599,-0.451704502105713,0.871039032936096,0.193013101816177,-0.266643345355988,0.693977534770966,0.668802261352539,-0.280670762062073,0.690870761871338,0.66627436876297,-0.248865008354187,0.697686433792114,0.671788573265076,-0.249167114496231,0.699881911277771,0.669388592243195,-0.279074341058731,0.685232698917389,0.672735989093781,-0.270393073558807,0.689580023288727,0.671838581562042,
- -0.245894029736519,0.676677346229553,0.694005787372589,-0.202867165207863,0.678937196731567,0.705612659454346,-0.268672794103622,0.674918532371521,0.687240839004517,-0.328239977359772,0.65790182352066,0.677808105945587,-0.248649403452873,0.696126937866211,0.673484086990356,-0.268796741962433,0.687049925327301,0.67506355047226,-0.208864480257034,0.657185614109039,0.724211752414703,-0.243222743272781,0.658560633659363,0.712138116359711,-0.290665030479431,0.659016788005829,0.693693518638611,-0.290379494428635,0.639887154102325,0.711494386196136,-0.244556367397308,0.667523145675659,0.70328164100647,-0.310402125120163,0.627048313617706,0.714465498924255,-0.290718466043472,0.665669620037079,0.687289416790009,-0.203786849975586,0.66377580165863,0.719633758068085,-0.207035601139069,0.663947701454163,0.718546986579895,-0.452101469039917,0.466061025857925,0.76052051782608,-0.287005364894867,0.554682493209839,0.780996382236481,-0.272735059261322,0.561202228069305,0.781452298164368,-0.204271703958511,0.662444412708282,0.720722198486328,-0.290737181901932,0.669275343418121,0.683770835399628,-0.318409562110901,0.670217990875244,0.670390367507935,-0.319321423768997,0.0835761278867722,0.94395387172699,-0.234528288245201,0.1277846544981,0.963673949241638,-0.283244073390961,0.102678291499615,0.953535497188568,-0.293618828058243,0.937217950820923,0.18817725777626,-0.323925048112869,0.924419283866882,0.201299354434013,-0.383754968643188,0.895106613636017,0.226972028613091,-0.459167242050171,0.878531873226166,0.131708636879921,-0.291724592447281,0.934349179267883,0.204666703939438,-0.391216218471527,0.905785501003265,0.162796303629875,-0.323673576116562,0.92434698343277,0.202035084366798,-0.292871356010437,0.936102688312531,0.194777399301529,-0.274195551872253,0.942655742168427,0.190307974815369,-0.291122615337372,0.933409214019775,0.209749490022659,-0.465371072292328,0.871317267417908,0.155679404735565,-0.244212329387665,0.943852782249451,0.222491070628166,-0.311046004295349,0.929295718669891,0.199147880077362,-0.274062752723694,0.942606627941132,0.19074147939682,
- -0.292841762304306,0.936058044433594,0.195035949349403,-0.246535837650299,0.9404017329216,0.234232023358345,-0.31096163392067,0.927698910236359,0.206585466861725,-0.29042050242424,0.932296931743622,0.215588495135307,-0.313263326883316,0.928393185138702,0.199880599975586,-0.274030327796936,0.942594647407532,0.190847426652908,-0.311043679714203,0.929247617721558,0.199375778436661,-0.311000823974609,0.928405404090881,0.20332732796669,-0.241752982139587,0.947290182113647,0.210230499505997,-0.27993506193161,0.937530279159546,0.206575199961662,-0.446747690439224,0.869085609912872,0.212383642792702,-0.313202202320099,0.928356826305389,0.200144991278648,-0.311038136482239,0.929133176803589,0.19991709291935,-0.43246066570282,0.88678777217865,0.163049623370171,-0.311000049114227,0.928391098976135,0.20339347422123,-0.281065970659256,0.935863494873047,0.21251218020916,-0.311039686203003,0.92916476726532,0.199767574667931,-0.432997852563858,0.886027693748474,0.165734231472015,-0.440389364957809,0.882793724536896,0.163500726222992,0.117051064968109,0.202193513512611,0.972325503826141,-0.0496045649051666,0.184230834245682,0.981630563735962,0.168155089020729,0.206615552306175,0.963864028453827,0.118129760026932,0.182927027344704,0.976003646850586,-0.0617977008223534,0.183696985244751,0.981038510799408,-0.0495328493416309,0.183834299445152,0.981708526611328,0.159694492816925,0.244670778512955,0.956364929676056,-0.0488828830420971,0.180241167545319,0.982407093048096,0.0162113141268492,0.201369494199753,0.979381144046783,-0.0496622920036316,0.184550061821938,0.981567621231079,-0.0617854297161102,0.184738472104073,0.980843663215637,-0.200809553265572,0.184934392571449,0.962015986442566,0.0142183061689138,0.206457167863846,0.978352308273315,-0.0489354766905308,0.180531844496727,0.982351124286652,-0.147477149963379,0.138189196586609,0.979364216327667,-0.155963599681854,0.168050959706306,0.973362326622009,-0.0501685030758381,0.187349557876587,0.98101145029068,-0.198666900396347,0.159604460000992,0.966983914375305,-0.00105501711368561,0.912610590457916,-0.408828556537628,
- -0.167262017726898,0.890649735927582,-0.422807842493057,0.050955206155777,0.914184868335724,-0.402081698179245,-0.00473652081564069,0.920221149921417,-0.391370326280594,-0.169348552823067,0.890147984027863,-0.423033773899078,-0.167269855737686,0.89069676399231,-0.42270565032959,0.0523872412741184,0.897699296474457,-0.437483251094818,-0.167603880167007,0.892702758312225,-0.41831910610199,-0.0929723754525185,0.89935714006424,-0.427215278148651,-0.167215600609779,0.890371143817902,-0.423412472009659,-0.169137120246887,0.889839351177216,-0.423767030239105,-0.304073125123978,0.842584550380707,-0.444511890411377,-0.0936931818723679,0.896729171276093,-0.432548671960831,-0.167590543627739,0.892622709274292,-0.418495029211044,-0.270886540412903,0.878080546855927,-0.394455283880234,-0.271531164646149,0.864251554012299,-0.423485636711121,-0.167058423161507,0.8894282579422,-0.425451517105103,-0.308232665061951,0.852792263031006,-0.42158967256546,-0.0144251799210906,0.999831199645996,-0.0113806072622538,-0.18108657002449,0.983233094215393,-0.0214587803930044,0.039020448923111,0.999205708503723,-0.00808627251535654,-0.016903942450881,0.999824047088623,0.00814053695648909,-0.188905984163284,0.981739640235901,-0.0224008653312922,-0.181084796786308,0.983243227005005,-0.0210045203566551,0.0373925305902958,0.998129844665527,-0.0483595319092274,-0.181070789694786,0.983310878276825,-0.0176972392946482,-0.10957895219326,0.99358457326889,-0.0279663149267435,-0.181087255477905,0.983229100704193,-0.0216356068849564,-0.188752830028534,0.981750011444092,-0.0232240669429302,-0.328064799308777,0.943207800388336,-0.052274189889431,-0.110710054636002,0.993271708488464,-0.0339798331260681,-0.181073158979416,0.983300685882568,-0.0182291623204947,-0.277508348226547,0.960715413093567,0.0038771778345108,-0.280129313468933,0.959616720676422,-0.0257551725953817,-0.181098312139511,0.983152985572815,-0.0247699152678251,-0.330554813146591,0.943424105644226,-0.026162663474679,0.314587414264679,-0.899196445941925,-0.30410623550415,0.153037205338478,-0.941463768482208,-0.300376087427139,
- 0.364306718111038,-0.880431890487671,-0.30351334810257,0.311548948287964,-0.893881916999817,-0.322354644536972,0.146903157234192,-0.942724287509918,-0.299483776092529,0.153032675385475,-0.94143009185791,-0.300483554601669,0.364343136548996,-0.892495095729828,-0.265907198190689,0.152859374880791,-0.940142393112183,-0.304575651884079,0.224842935800552,-0.929228544235229,-0.293223649263382,0.153062045574188,-0.941648602485657,-0.299783170223236,0.147103980183601,-0.942958414554596,-0.298646867275238,0.0136358477175236,-0.96262139081955,-0.270507454872131,0.223952770233154,-0.93117082118988,-0.287690877914429,0.152870401740074,-0.940224170684814,-0.304317593574524,0.0502244457602501,-0.944328308105469,-0.325148910284042,0.0486604161560535,-0.954127311706543,-0.295420497655869,0.153165459632874,-0.942419230937958,-0.297298431396484,0.0105214491486549,-0.955769836902618,-0.293927758932114,-0.147153049707413,0.766422152519226,-0.625254511833191,-0.242930740118027,0.721171677112579,-0.64876514673233,-0.175402358174324,0.754096269607544,-0.632908165454865,-0.145433664321899,0.757467031478882,-0.636469006538391,-0.325003683567047,0.762164294719696,-0.559891283512115,-0.25047555565834,0.763743162155151,-0.594943940639496,-0.175097346305847,0.753594875335693,-0.633589446544647,-0.124946616590023,0.76882940530777,-0.627128124237061,-0.146415933966637,0.762583017349243,-0.630102813243866,-0.331585466861725,0.744918286800385,-0.578919589519501,-0.144770964980125,0.754015505313873,-0.640704452991486,-0.0829416811466217,0.750693559646606,-0.655423402786255,-0.168591156601906,0.75569486618042,-0.632852554321289,-0.146388217806816,0.762438654899597,-0.630284070968628,-0.124817177653313,0.768571317195892,-0.627470195293427,-0.168565094470978,0.75350821018219,-0.635461449623108,-0.0857281684875488,0.741447329521179,-0.665512263774872,-0.144105464220047,0.750549376010895,-0.644910335540771,-0.168589472770691,0.755549192428589,-0.633026957511902,-0.124790161848068,0.768517374992371,-0.627541542053223,-0.159544870257378,0.75836718082428,-0.63200056552887,
- -0.0799791812896729,0.760306298732758,-0.644622087478638,-0.168574512004852,0.754279494285584,-0.634543359279633,-0.125255241990089,0.757991671562195,-0.640124797821045,-0.300795197486877,0.716593086719513,-0.629298508167267,-0.168591022491455,0.755682647228241,-0.632867097854614,-0.159346222877502,0.757851004600525,-0.632669508457184,-0.168583542108536,0.755040884017944,-0.633634686470032,-0.294112861156464,0.751559734344482,-0.590470671653748,-0.126639664173126,0.753278732299805,-0.645394265651703,-0.29474264383316,0.749534785747528,-0.592726290225983,-0.168607965111732,0.757195949554443,-0.631051242351532,-0.293978244066238,0.749622344970703,-0.59299510717392,-0.134684786200523,0.982520163059235,-0.128507241606712,-0.160207226872444,0.978411793708801,-0.13055257499218,-0.123945571482182,0.984047770500183,-0.127623036503792,-0.123865447938442,0.983623385429382,-0.130928710103035,-0.15954415500164,0.979792475700378,-0.120633065700531,-0.149267166852951,0.981038689613342,-0.12362252920866,-0.124618984758854,0.987442791461945,-0.0970925763249397,-0.0792485177516937,0.993231892585754,-0.0849132090806961,-0.140382692217827,0.984902501106262,-0.101290658116341,-0.205591082572937,0.972968578338623,-0.105188310146332,-0.123999990522861,0.98433381319046,-0.125343710184097,-0.148151755332947,0.981719017028809,-0.119494222104549,-0.0890151113271713,0.994401574134827,-0.0569371283054352,-0.125095129013062,0.989579916000366,-0.071293331682682,-0.172491550445557,0.98088151216507,-0.0901017412543297,-0.175531625747681,0.982404410839081,-0.0637984424829483,-0.124868787825108,0.988599896430969,-0.0841322913765907,-0.193492919206619,0.979473948478699,-0.0564913973212242,-0.171405047178268,0.980189621448517,-0.0992411151528358,-0.0908829569816589,0.993581295013428,-0.067354291677475,-0.0860581994056702,0.994138896465302,-0.0654360800981522,-0.362048178911209,0.929000914096832,0.0766708850860596,-0.186784833669662,0.98135107755661,0.0454033091664314,-0.167638331651688,0.984955072402954,0.0419628769159317,-0.0913919061422348,0.993613302707672,-0.066182516515255,
- -0.170785471796989,0.979762256145477,-0.104394845664501,-0.198840260505676,0.972919821739197,-0.117854870855808,-0.299681752920151,0.811832070350647,0.501118361949921,-0.208369597792625,0.845476150512695,0.491683095693588,-0.260114729404449,0.827496707439423,0.497583657503128,-0.125999569892883,0.7701655626297,-0.625275254249573,-0.157221779227257,0.775377154350281,-0.611613869667053,-0.218588352203369,0.782984972000122,-0.582369029521942,-0.303334593772888,0.706441164016724,-0.639475584030151,-0.124619163572788,0.78096878528595,-0.612011253833771,-0.223866879940033,0.743552267551422,-0.630090177059174,-0.156922429800034,0.776000797748566,-0.610899388790131,-0.125457987189293,0.774465918540955,-0.620050668716431,-0.109414592385292,0.773366451263428,-0.624446034431458,-0.124205991625786,0.784103810787201,-0.608074009418488,-0.310798168182373,0.721105575561523,-0.619202077388763,-0.0737630352377892,0.795733571052551,-0.601138234138489,-0.148471236228943,0.775696337223053,-0.613393366336823,-0.109299317002296,0.773638069629669,-0.62412965297699,-0.125435873866081,0.77463972568512,-0.619837939739227,-0.0767365247011185,0.803038716316223,-0.590965509414673,-0.148609906435013,0.7788947224617,-0.609293282032013,-0.123706921935081,0.787832617759705,-0.603337645530701,-0.142395690083504,0.775543868541718,-0.615024447441101,-0.109290577471256,0.773658692836761,-0.624105632305145,-0.148475393652916,0.775791168212891,-0.613272428512573,-0.148553922772408,0.77759450674057,-0.610965311527252,-0.0706531330943108,0.78798496723175,-0.611627221107483,-0.114909812808037,0.782687306404114,-0.611715912818909,-0.284953564405441,0.763302981853485,-0.579801917076111,-0.14222739636898,0.776076793670654,-0.614391028881073,-0.148478984832764,0.775872707366943,-0.61316841840744,-0.273272395133972,0.733977317810059,-0.621771216392517,-0.148537799715996,0.777222573757172,-0.61144232749939,-0.116239480674267,0.786090552806854,-0.607083380222321,-0.148443594574928,0.775066673755646,-0.614195704460144,-0.273965507745743,0.73566997051239,-0.61946165561676,
- -0.276802897453308,0.734611451625824,-0.61945641040802,0.149487167596817,0.85992032289505,0.488047778606415,-0.0206497851759195,0.874174177646637,0.48517319560051,0.203704506158829,0.849927186965942,0.485930323600769,0.147133842110634,0.850488185882568,0.504996538162231,-0.0291597619652748,0.874715447425842,0.48375877737999,-0.0206501632928848,0.874190151691437,0.485144406557083,0.202042177319527,0.869422912597656,0.450868993997574,-0.0205935947597027,0.871795415878296,0.489437222480774,0.054238073527813,0.875995695590973,0.479259818792343,-0.0206598173826933,0.874598920345306,0.484406769275665,-0.0289671495556831,0.87522429227829,0.482849359512329,-0.163588687777519,0.876538932323456,0.452678948640823,0.0530965253710747,0.878779113292694,0.47426575422287,-0.0205937772989273,0.871803224086761,0.489423334598541,-0.117826610803604,0.854938805103302,0.505169868469238,-0.120731063187122,0.869816303253174,0.478375911712646,-0.0206846687942743,0.875650942325592,0.482501268386841,-0.165868327021599,0.864264249801636,0.474905222654343,0.157272025942802,0.264610528945923,-0.951444625854492,-0.0152119463309646,0.258249163627625,-0.965958595275879,0.207883924245834,0.264973253011703,-0.941580295562744,0.154993653297424,0.283226788043976,-0.946445822715759,-0.00899798888713121,0.258873701095581,-0.96586936712265,-0.0152138015255332,0.257807940244675,-0.966076374053955,0.206217423081398,0.227554485201836,-0.951679289340973,-0.015187120065093,0.264076828956604,-0.964382112026215,0.0608422309160233,0.25303441286087,-0.965542316436768,-0.0152175715193152,0.256909012794495,-0.966315805912018,-0.00886128935962915,0.258171886205673,-0.966058433055878,-0.152185350656509,0.22702257335186,-0.961925446987152,0.0597240068018436,0.247644945979118,-0.967008352279663,-0.0151862213388085,0.264285176992416,-0.96432501077652,-0.112724728882313,0.28364023566246,-0.952282190322876,-0.115535348653793,0.253067463636398,-0.960525095462799,-0.0152226081117988,0.255703121423721,-0.966635584831238,-0.154474556446075,0.251340091228485,-0.955492436885834,
- 0.164942532777786,0.625498533248901,-0.762591302394867,-0.0122797964140773,0.625949323177338,-0.779767036437988,0.20881475508213,0.622258186340332,-0.75444757938385,0.162424892187119,0.641208529472351,-0.749979913234711,-0.0188160967081785,0.624907493591309,-0.780472040176392,-0.0122808404266834,0.625866651535034,-0.779833376407623,0.207003504037857,0.591398298740387,-0.779357194900513,-0.0122334761545062,0.629596829414368,-0.776825726032257,0.0632326900959015,0.619977533817291,-0.782067477703094,-0.0122883673757315,0.625270545482636,-0.780311346054077,-0.0186430942267179,0.624197840690613,-0.781043827533722,-0.161186769604683,0.593144953250885,-0.788795351982117,0.0620747841894627,0.615386307239532,-0.785777688026428,-0.0122350417077541,0.629474103450775,-0.776925146579742,-0.108393579721451,0.642293989658356,-0.758755147457123,-0.111088067293167,0.61884731054306,-0.777616560459137,-0.0123103763908148,0.623521983623505,-0.781708896160126,-0.163640484213829,0.613841593265533,-0.772282600402832,0.152666732668877,-0.837387681007385,0.524856865406036,-0.0193392168730497,-0.842896640300751,0.537728011608124,0.205040499567986,-0.830628156661987,0.517701983451843,0.150578230619431,-0.847607970237732,0.508809447288513,-0.0211092308163643,-0.84236353635788,0.538496136665344,-0.0193493776023388,-0.842547535896301,0.538274466991425,0.203186437487602,-0.809504747390747,0.550833284854889,-0.0192490536719561,-0.845967173576355,0.532887637615204,0.0565376803278923,-0.838415622711182,0.542091190814972,-0.0193637758493423,-0.842051565647125,0.539049327373505,-0.0209456756711006,-0.841862201690674,0.539285957813263,-0.157147109508514,-0.817281782627106,0.554396450519562,0.0553798079490662,-0.835448741912842,0.546771049499512,-0.0192451719194651,-0.846098124980927,0.532679617404938,-0.111740820109844,-0.852393209934235,0.510822892189026,-0.11499796807766,-0.835983395576477,0.536569893360138,-0.0193848591297865,-0.84132319688797,0.540184676647186,-0.159034833312035,-0.830895483493805,0.533217191696167,-0.143173351883888,0.748043835163116,0.648021459579468,
- -0.239906579256058,0.763806283473969,0.599203646183014,-0.176558673381805,0.754464387893677,0.632147610187531,-0.141104534268379,0.759728372097015,0.634745836257935,-0.328480809926987,0.681949198246002,0.653487265110016,-0.247404307126999,0.719819903373718,0.648575723171234,-0.176343470811844,0.754875421524048,0.631716847419739,-0.124015487730503,0.751001834869385,0.648549556732178,-0.142374008893967,0.752617120742798,0.642881870269775,-0.33524763584137,0.697927474975586,0.632855713367462,-0.140515670180321,0.762965619564056,0.630982398986816,-0.0797071754932404,0.776462972164154,0.625101625919342,-0.16178272664547,0.754074990749359,0.636551022529602,-0.142342075705528,0.752798318862915,0.642676770687103,-0.12388177216053,0.75130021572113,0.648229360580444,-0.161714449524879,0.75917661190033,0.630475461483002,-0.0826378390192986,0.785060167312622,0.613882303237915,-0.13978236913681,0.766943633556366,0.626305341720581,-0.161780938506126,0.754220426082611,0.636379361152649,-0.123849838972092,0.751371502876282,0.648152887821198,-0.158180579543114,0.754000663757324,0.637543797492981,-0.0765757635235786,0.767153024673462,0.636877059936523,-0.161745578050613,0.756950438022614,0.633138597011566,-0.125941082835197,0.761938333511353,0.635286509990692,-0.297966152429581,0.744555532932281,0.597371995449066,-0.161775931715965,0.754622340202332,0.635904014110565,-0.157942593097687,0.75468510389328,0.636792480945587,-0.161743968725204,0.757068634033203,0.632997572422028,-0.291132926940918,0.713206052780151,0.637635409832001,-0.1273073554039,0.766233384609222,0.629824757575989,-0.291727513074875,0.714979469776154,0.635373532772064,-0.161775290966034,0.754672825336456,0.635844111442566,-0.291324734687805,0.715125918388367,0.635393559932709,-0.136059254407883,0.297288239002228,0.945043742656708,-0.163709551095963,0.298677116632462,0.94020801782608,-0.124934263527393,0.296664863824844,0.946774184703827,-0.124867230653763,0.299490630626678,0.945893108844757,-0.162895292043686,0.287943840026855,0.943691372871399,-0.151564747095108,0.29144024848938,0.944505631923676,
- -0.125562235713005,0.267349034547806,0.955384016036987,-0.0800396502017975,0.256333142518997,0.963268876075745,-0.141683161258698,0.271121233701706,0.952060461044312,-0.205402418971062,0.272630393505096,0.939937472343445,-0.124992989003658,0.294148564338684,0.947551250457764,-0.150473266839981,0.287577301263809,0.945863246917725,-0.0897245332598686,0.229150474071503,0.969246923923492,-0.125999361276627,0.242515161633492,0.961930632591248,-0.172757759690285,0.259290039539337,0.950222849845886,-0.175896883010864,0.233179241418839,0.95639306306839,-0.125806972384453,0.254052817821503,0.958973288536072,-0.193398162722588,0.225670978426933,0.954813957214355,-0.171654671430588,0.268181055784225,0.947952330112457,-0.0871894732117653,0.237648621201515,0.967430174350739,-0.0867683216929436,0.237492054700851,0.967506468296051,-0.366528660058975,0.0846256837248802,0.926550209522247,-0.187313541769981,0.125489801168442,0.974251508712769,-0.167780250310898,0.129585638642311,0.977270364761353,-0.0878769308328629,0.236100226640701,0.967747032642365,-0.171045586466789,0.273030698299408,0.946677148342133,-0.196550369262695,0.284006506204605,0.9384605884552,-0.298632621765137,-0.352421939373016,0.886914491653442,-0.20951834321022,-0.337655603885651,0.917654991149902,-0.264248043298721,-0.347052693367004,0.899848520755768,-0.128383621573448,0.748697578907013,0.650361180305481,-0.159067928791046,0.736302852630615,0.65768951177597,-0.221196055412292,0.708345592021942,0.670312583446503,-0.302396297454834,0.752426087856293,0.585159301757813,-0.12715245783329,0.73870712518692,0.661924600601196,-0.226290553808212,0.74979430437088,0.621772587299347,-0.158822014927864,0.735813856124878,0.658295929431915,-0.127864360809326,0.744475483894348,0.655291497707367,-0.1058055087924,0.750153660774231,0.652743935585022,-0.126716360449791,0.735184609889984,0.665917873382568,-0.309871882200241,0.73508608341217,0.603015720844269,-0.0772271454334259,0.730580151081085,0.678445756435394,-0.148618400096893,0.738734245300293,0.657407224178314,-0.10568281263113,0.749869763851166,0.653090059757233,
- -0.127844572067261,0.744314908981323,0.65547788143158,-0.0800744071602821,0.722180902957916,0.687053740024567,-0.148744285106659,0.735318779945374,0.661196947097778,-0.126252844929695,0.731449484825134,0.670105874538422,-0.148720622062683,0.738568603992462,0.65757018327713,-0.105662919580936,0.749823689460754,0.653146088123322,-0.148623615503311,0.73859578371048,0.657561659812927,-0.148694068193436,0.736696779727936,0.659672677516937,-0.0742704272270203,0.739148318767548,0.669435381889343,-0.113514885306358,0.738377511501312,0.664765477180481,-0.287222146987915,0.702800571918488,0.650826275348663,-0.148702725768089,0.738512754440308,0.657637000083923,-0.148626148700714,0.73852813243866,0.657637119293213,-0.27026754617691,0.739885449409485,0.616056084632874,-0.148677617311478,0.737143278121948,0.659177422523499,-0.114905744791031,0.7342489361763,0.669085383415222,-0.148590385913849,0.7394779920578,0.656576871871948,-0.270914137363434,0.738012313842773,0.618015766143799,-0.278791666030884,0.737491250038147,0.615127563476563,0.15018904209137,-0.331322401762009,0.931487321853638,-0.0223260372877121,-0.325915068387985,0.945135474205017,0.198380514979362,-0.331049740314484,0.922524392604828,0.147839277982712,-0.349719792604446,0.925116062164307,-0.0294482465833426,-0.324468791484833,0.945437908172607,-0.0223278738558292,-0.325689315795898,0.945213258266449,0.196774959564209,-0.294133991003037,0.935288727283478,-0.0222856067121029,-0.330839395523071,0.943423986434937,0.0518886856734753,-0.320231944322586,0.945917129516602,-0.0223347153514624,-0.324846714735031,0.945502936840057,-0.0292545631527901,-0.323476344347,0.945783913135529,-0.160618260502815,-0.294322550296783,0.942112565040588,0.0507638901472092,-0.31500706076622,0.947730779647827,-0.0222846493124962,-0.330954819917679,0.943383455276489,-0.11445115506649,-0.348457396030426,0.930310964584351,-0.117433413863182,-0.320215314626694,0.94003814458847,-0.0223489385098219,-0.323087990283966,0.946105003356934,-0.162782818078995,-0.317798256874084,0.934080302715302,0.156489223241806,0.983065247535706,0.0953618735074997,
- -0.015686945989728,0.996121108531952,0.0865832045674324,0.209507286548615,0.972931087017059,0.0975281074643135,0.154204592108727,0.981388509273529,0.114445202052593,-0.00878313928842545,0.996147692203522,0.0872516632080078,-0.0156876798719168,0.996167659759521,0.0860457345843315,0.208026826381683,0.976370513439178,0.0585277080535889,-0.0156783442944288,0.99557489156723,0.0926546379923821,0.0644517466425896,0.994630634784698,0.0809693336486816,-0.0156889464706182,0.996248066425323,0.0851098373532295,-0.00864552240818739,0.996211171150208,0.0865375548601151,-0.14814130961895,0.987298667430878,0.0574067831039429,0.0632995441555977,0.995162963867188,0.075126625597477,-0.0156779736280441,0.995551347732544,0.0929067358374596,-0.108601257205009,0.987633585929871,0.113074541091919,-0.111351802945137,0.99035120010376,0.0824941322207451,-0.0156905073672533,0.996347188949585,0.0839422792196274,-0.150370597839355,0.985249876976013,0.0816793069243431,0.161725252866745,0.860194444656372,0.483642935752869,-0.0138055672869086,0.876653492450714,0.480924099683762,0.213840186595917,0.849954545497894,0.481507778167725,0.15937851369381,0.850638806819916,0.50101113319397,-0.0144384652376175,0.876824676990509,0.480593383312225,-0.0138075463473797,0.876779198646545,0.480694860219955,0.212002754211426,0.86959582567215,0.445935010910034,-0.0137672973796725,0.874223351478577,0.485328674316406,0.0672715753316879,0.877882122993469,0.474128156900406,-0.0138136586174369,0.877167284488678,0.479986160993576,-0.0142855439335108,0.87720775604248,0.479898631572723,-0.156235590577126,0.88005143404007,0.448441684246063,0.0660765171051025,0.880892157554626,0.468682259321213,-0.0137676270678639,0.874244272708893,0.485291212797165,-0.110680729150772,0.858281910419464,0.501100897789001,-0.113428868353367,0.873045861721039,0.474262416362762,-0.0138283194974065,0.878098249435425,0.478280514478683,-0.158647522330284,0.867832720279694,0.470847487449646,0.151242896914482,-0.662483215332031,-0.733649492263794,-0.0159648433327675,-0.675844967365265,-0.73687082529068,
- 0.209314256906509,-0.65330958366394,-0.727581083774567,0.1491918861866,-0.648565948009491,-0.746394038200378,-0.0189788397401571,-0.676353394985199,-0.736332774162292,-0.0159691870212555,-0.676028907299042,-0.736702144145966,0.207176879048347,-0.682919085025787,-0.700499415397644,-0.0158769711852074,-0.672125160694122,-0.740267395973206,0.0588923022150993,-0.679625511169434,-0.731191456317902,-0.0159835312515497,-0.676636099815369,-0.736144125461578,-0.0188208352774382,-0.677000522613525,-0.735741913318634,-0.157709047198296,-0.687898874282837,-0.708465278148651,0.0576998889446259,-0.683852255344391,-0.727335512638092,-0.0158773772418499,-0.672142326831818,-0.740251779556274,-0.116014823317528,-0.649989128112793,-0.751035809516907,-0.119391292333603,-0.6732217669487,-0.729738533496857,-0.0160183515399694,-0.678110241889954,-0.734785676002502,-0.159830957651138,-0.669305264949799,-0.725592613220215
- }
- BinormalsW: *5193 {
- 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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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: *15579 {
- a: 0.119968056678772,-0.811587035655975,0.571781635284424,0.117460802197456,-0.812322735786438,0.571257174015045,-0.0841811969876289,-0.85210132598877,0.516562461853027,0.124182857573032,-0.990846157073975,-0.0529398061335087,0.107943251729012,-0.992900907993317,-0.0499603934586048,0.175415307283401,-0.982522368431091,-0.0622840449213982,0.108872160315514,-0.66206556558609,0.741495847702026,-0.0143718868494034,-0.688017129898071,0.725552141666412,-0.159970074892044,-0.704392910003662,0.691549241542816,0.124331846833229,-0.990857303142548,-0.0523777455091476,0.0706601291894913,-0.996802091598511,-0.0373196080327034,0.10805569589138,-0.99299430847168,-0.0478171296417713,0.0346303023397923,-0.999312281608582,0.0132615715265274,0.109932623803616,-0.993883848190308,-0.0104770744219422,0.0818615108728409,-0.996642529964447,-0.00161006697453558,0.0872912704944611,-0.996057033538818,0.0158335138112307,0.0433936342597008,-0.998564183712006,0.0314093232154846,0.0385807864367962,-0.998706877231598,0.0331108421087265,0.0929306373000145,-0.886518716812134,0.453264206647873,0.119642183184624,-0.878809988498688,0.461929380893707,0.0227661151438951,-0.903108716011047,0.428808033466339,0.0492063090205193,-0.995007157325745,0.0868303999304771,0.0493727996945381,-0.994998872280121,0.086830772459507,0.114096499979496,-0.989671111106873,0.0867940485477448,0.0418123677372932,-0.980139672756195,0.193850815296173,0.0141483079642057,-0.981768190860748,0.189555063843727,0.166034549474716,-0.963214337825775,0.211307391524315,0.104981690645218,-0.994095087051392,-0.0274570528417826,0.221675574779511,-0.974957644939423,-0.0178174506872892,0.0630191266536713,-0.997536897659302,-0.0308005176484585,0.0381060130894184,-0.995806813240051,0.083166740834713,-0.0983051955699921,-0.994746804237366,0.0285477209836245,0.0722972005605698,-0.992691576480865,0.0966262593865395,-0.0576199926435947,-0.996266484260559,-0.0642891228199005,0.0584227442741394,-0.998246669769287,-0.00950716808438301,-0.00957321375608444,-0.999085128307343,-0.0416813269257545,
- 0.0436180494725704,-0.997348606586456,0.0582519173622131,0.0512805506587029,-0.996982276439667,0.0582806766033173,-0.0245644152164459,-0.998023271560669,0.0578457713127136,-0.0110306404531002,-0.99942535161972,-0.0320520959794521,0.0836248397827148,-0.996490180492401,0.00376658700406551,-0.0632013753056526,-0.996662259101868,-0.0516718365252018,0.0473758168518543,-0.995862901210785,0.0775410458445549,-0.0163019429892302,-0.996938705444336,0.0764693915843964,0.0499960295855999,-0.995731949806213,0.0775784701108933,-0.0288902334868908,-0.995809733867645,0.0867657884955406,0.0500620640814304,-0.995804846286774,0.0765940099954605,-0.0163594335317612,-0.996230721473694,0.0851865485310555,0.0257015936076641,-0.997613906860352,0.0640774518251419,-0.0161742214113474,-0.998201727867126,0.0577225387096405,0.0452979803085327,-0.996723234653473,0.0670142024755478,0.0233626253902912,-0.998545467853546,0.0485914349555969,0.0405926033854485,-0.998239517211914,0.043244693428278,0.04666493460536,-0.998054146766663,0.0413560159504414,-0.0163612868636847,-0.996206343173981,0.0854706764221191,0.0222800057381392,-0.996543109416962,0.0800342485308647,-0.0289573855698109,-0.99576860666275,0.0872154459357262,-0.0161759275943041,-0.998187482357025,0.0579678118228912,0.0257587842643261,-0.997588038444519,0.0644564181566238,0.0225603207945824,-0.997697114944458,0.0639653503894806,0.0466055572032928,-0.998064398765564,0.041175365447998,-0.0214241072535515,-0.997812867164612,0.0625351443886757,0.0233501624315977,-0.99854987859726,0.048508994281292,0.022652892395854,-0.998025715351105,0.0585798211395741,0.024915823712945,-0.997954547405243,0.0588720552623272,-0.0231089927256107,-0.998347818851471,0.0526079460978508,-0.0197431929409504,-0.997178792953491,0.0724198222160339,0.0493461601436138,-0.997553646564484,0.0495167672634125,-0.0415187925100327,-0.995964586734772,0.0795660093426704,-0.0417270734906197,-0.996009349822998,0.0788945704698563,-0.143800526857376,-0.983657717704773,0.108346328139305,-0.0197380147874355,-0.997176706790924,0.0724502205848694,
- -0.15601871907711,-0.987469553947449,0.0237099677324295,0.0226996708661318,-0.998181581497192,0.0558432228863239,-0.0239542163908482,-0.998578190803528,0.0476207323372364,-0.144502177834511,-0.984055936336517,0.103696934878826,-0.0427312701940537,-0.996217966079712,0.0756556689739227,-0.184556901454926,-0.976125538349152,0.11453278362751,-0.193098187446594,-0.978300154209137,0.0751129537820816,-0.306961625814438,-0.948134481906891,0.0825566649436951,-0.149188756942749,-0.986182868480682,0.0720147788524628,-0.212483376264572,-0.975849568843842,0.0506808906793594,0.0225849840790033,-0.997787237167358,0.06253432482481,-0.151769429445267,-0.986935615539551,0.0540766306221485,-0.306850492954254,-0.947310566902161,0.0918989256024361,-0.211992651224136,-0.973595857620239,0.084677591919899,-0.148104086518288,-0.985775530338287,0.0794471427798271,-0.307063728570938,-0.951312601566315,0.0267626084387302,-0.132201701402664,-0.990014672279358,0.0489270202815533,-0.212594896554947,-0.976361691951752,0.0390036962926388,-0.134468853473663,-0.988367259502411,0.0710521191358566,0.0224939417093992,-0.997445166110992,0.0678023472428322,-0.212204232811928,-0.974567592144012,0.072023943066597,-0.129910916090012,-0.991153359413147,0.0271722767502069,-0.30689749121666,-0.951698303222656,0.00918114464730024,-0.197183981537819,-0.980152368545532,0.0204919651150703,-0.0278696194291115,-0.996410548686981,0.0799342542886734,0.0223703011870384,-0.99694037437439,0.074896477162838,0.0399124920368195,-0.996526420116425,0.0730910897254944,-0.136424109339714,-0.986494362354279,0.0906501486897469,0.0399395674467087,-0.996543884277344,0.0728367492556572,0.0223733875900507,-0.996953547000885,0.074720062315464,0.111823037266731,-0.991534113883972,-0.0659990534186363,0.00349330762401223,-0.991823554039001,-0.127568617463112,0.0573447942733765,-0.993610143661499,-0.0972141027450562,-0.188238590955734,-0.981852769851685,-0.0230522602796555,0.00824830029159784,-0.999520897865295,0.0298333577811718,-0.126273140311241,-0.991975843906403,-0.00624806340783834,
- 0.0435289442539215,-0.99829626083374,0.0388562008738518,-0.129253685474396,-0.991388499736786,0.0210352819412947,0.00681736879050732,-0.999358594417572,0.0351569913327694,0.0535727590322495,-0.99680894613266,-0.0591779872775078,0.0343221612274647,-0.997129023075104,-0.0674959942698479,0.10081160068512,-0.994156062602997,-0.0386124178767204,0.0188276935368776,-0.999776840209961,-0.00958341546356678,-0.177648067474365,-0.981430470943451,-0.0723564028739929,0.0569204464554787,-0.998375177383423,0.00266452599316835,0.0539351403713226,-0.99847012758255,0.0121878609061241,0.0778413116931915,-0.996804594993591,0.017929432913661,0.0154667291790247,-0.999876141548157,0.00294983619824052,0.286777883768082,-0.921921968460083,0.260419517755508,0.282264709472656,-0.923710405826569,0.259009182453156,0.0866752192378044,-0.977180063724518,0.193924307823181,0.284483551979065,-0.876147866249084,-0.389145314693451,0.264770686626434,-0.883473217487335,-0.386486262083054,0.335044205188751,-0.855300486087799,-0.395229786634445,0.259641945362091,-0.843403697013855,0.470378875732422,0.136411875486374,-0.884902536869049,0.445353120565414,-0.00200901925563812,-0.912635028362274,0.408770471811295,0.284553349018097,-0.876214563846588,-0.388944268226624,0.23083022236824,-0.897315382957459,-0.376221418380737,0.265032649040222,-0.884281933307648,-0.384451597929001,0.192657381296158,-0.924911797046661,-0.327751964330673,0.269282549619675,-0.897354066371918,-0.349632173776627,0.24390634894371,-0.907267212867737,-0.342601865530014,0.250161379575729,-0.911660969257355,-0.326026946306229,0.206999644637108,-0.927314102649689,-0.311832815408707,0.197625309228897,-0.930410265922546,-0.308676153421402,0.259677052497864,-0.958045959472656,0.121308743953705,0.288628548383713,-0.948085486888886,0.133519604802132,0.196960300207138,-0.975816130638123,0.0948138833045959,0.210067927837372,-0.942803263664246,-0.258831292390823,0.218168362975121,-0.94100421667099,-0.258676916360855,0.278551667928696,-0.925412058830261,-0.256946891546249,0.214589938521385,-0.964690566062927,-0.152719885110855,
- 0.179642722010612,-0.970862209796906,-0.158603355288506,0.330784916877747,-0.934521794319153,-0.131340801715851,0.260117501020432,-0.893423914909363,-0.366241216659546,0.375088304281235,-0.858208656311035,-0.350409299135208,0.218250215053558,-0.902794361114502,-0.37057963013649,0.199892044067383,-0.943455815315247,-0.264450967311859,0.070340096950531,-0.947367310523987,-0.312326103448868,0.23525458574295,-0.939168453216553,-0.250235736370087,0.105296656489372,-0.910511195659637,-0.399852633476257,0.215267539024353,-0.910720527172089,-0.352488368749619,0.153813302516937,-0.912214696407318,-0.379744529724121,0.203866124153137,-0.936150431632996,-0.286462992429733,0.218684211373329,-0.932890713214874,-0.286168396472931,0.145080715417862,-0.946886122226715,-0.286981403827667,0.153043061494827,-0.915924549102783,-0.371025860309601,0.244466632604599,-0.90899932384491,-0.33757421374321,0.100683942437172,-0.915980756282806,-0.388383835554123,0.20785591006279,-0.94075208902359,-0.267920613288879,0.152162373065948,-0.951014816761017,-0.269104987382889,0.218354940414429,-0.938462615013123,-0.267598658800125,0.142269462347031,-0.955220937728882,-0.259446501731873,0.218379095196724,-0.93810760974884,-0.268821060657501,0.152523070573807,-0.953269183635712,-0.260796129703522,0.189804717898369,-0.940658688545227,-0.281310319900513,0.151342943310738,-0.945893466472626,-0.287020772695541,0.20515088737011,-0.938151955604553,-0.278897970914841,0.186835318803787,-0.936964571475983,-0.295279413461685,0.200048014521599,-0.932981789112091,-0.299208521842957,0.210701256990433,-0.929621040821075,-0.302340447902679,0.152534261345863,-0.953339159488678,-0.260533630847931,0.187932580709457,-0.945637047290802,-0.265427768230438,0.142228156328201,-0.955334901809692,-0.259048908948898,0.151354178786278,-0.945963621139526,-0.286783486604691,0.189880147576332,-0.940750479698181,-0.280952095985413,0.18744783103466,-0.941123902797699,-0.281334459781647,0.210634395480156,-0.92958015203476,-0.302512675523758,0.144571423530579,-0.948383986949921,-0.282253175973892,
- 0.186820045113564,-0.936945259571075,-0.295350581407547,0.187279537320137,-0.939604461193085,-0.286478281021118,0.188754141330719,-0.939369261264801,-0.286281883716583,0.142345517873764,-0.945726931095123,-0.29212749004364,0.146703615784645,-0.950848758220673,-0.272698849439621,0.213747963309288,-0.931453943252563,-0.294458091259003,0.126173421740532,-0.955736398696899,-0.26579749584198,0.125937059521675,-0.955585360527039,-0.2664515376091,0.0267048142850399,-0.971613585948944,-0.235061764717102,0.146703466773033,-0.950848579406738,-0.272699475288391,0.0103142261505127,-0.948945641517639,-0.315270960330963,0.187189728021622,-0.938802063465118,-0.289155244827271,0.14125582575798,-0.944395422935486,-0.296924650669098,0.0258011780679226,-0.970540523529053,-0.239552900195122,0.124803729355335,-0.954855382442474,-0.269583642482758,-0.0189739279448986,-0.974141538143158,-0.225140661001205,-0.0293755531311035,-0.96419358253479,-0.263567537069321,-0.143239468336105,-0.958473145961761,-0.24660037457943,0.0196755472570658,-0.962719798088074,-0.269784092903137,-0.0504104644060135,-0.956883013248444,-0.286066323518753,0.187408328056335,-0.940765380859375,-0.28255769610405,0.0162083934992552,-0.957874059677124,-0.286731153726578,-0.142748057842255,-0.960831582546234,-0.237541034817696,-0.0483560264110565,-0.966283917427063,-0.2528977394104,0.0211214236915112,-0.96465128660202,-0.262681841850281,-0.14591158926487,-0.942636668682098,-0.30024316906929,0.0311910025775433,-0.955649077892303,-0.292851358652115,-0.0511063933372498,-0.953369081020355,-0.297448396682739,0.0300937965512276,-0.962078452110291,-0.271107941865921,0.187572240829468,-0.942261576652527,-0.277416616678238,-0.0491334572434425,-0.962892413139343,-0.265375465154648,0.0322304554283619,-0.949005365371704,-0.313608169555664,-0.14665499329567,-0.937064528465271,-0.316863358020782,-0.0351159051060677,-0.948100805282593,-0.316025227308273,0.142947822809219,-0.953313887119293,-0.266004979610443,0.187784776091576,-0.944237172603607,-0.27046811580658,0.205101862549782,-0.940171837806702,-0.272048383951187,
- 0.0291137769818306,-0.967334568500519,-0.25182580947876,0.205115526914597,-0.940099060535431,-0.27228906750679,0.187779828906059,-0.944190740585327,-0.270633667707443,0.267697423696518,-0.875935614109039,-0.401341646909714,0.160213798284531,-0.874439537525177,-0.457916051149368,0.211396366357803,-0.876760303974152,-0.431975841522217,-0.028634000569582,-0.9333416223526,-0.357845723628998,0.171667665243149,-0.933722317218781,-0.314154446125031,0.033827506005764,-0.937692582607269,-0.345815420150757,0.206866711378098,-0.929595112800598,-0.305055886507034,0.0325234234333038,-0.947032272815704,-0.319487184286118,0.17052449285984,-0.935684025287628,-0.308896124362946,0.210527986288071,-0.893290281295776,-0.397128015756607,0.190889522433281,-0.894105672836304,-0.405137240886688,0.25874051451683,-0.889539122581482,-0.376528382301331,0.179668307304382,-0.918820321559906,-0.351409375667572,-0.0212543997913599,-0.914445757865906,-0.40415021777153,0.221435829997063,-0.914640665054321,-0.338228702545166,0.219131112098694,-0.918383955955505,-0.329473048448563,0.23954875767231,-0.915117681026459,-0.324308693408966,0.177140682935715,-0.92375659942627,-0.33955106139183,0.116821132600307,-0.418063193559647,0.900875210762024,0.115684308111668,-0.418469488620758,0.900833189487457,-0.0868436694145203,-0.480310559272766,0.872788608074188,0.125330090522766,-0.884545981884003,0.449300527572632,0.106396645307541,-0.884880423545837,0.45350456237793,0.176209583878517,-0.881980061531067,0.437105894088745,0.107194609940052,-0.202999919652939,0.973293542861938,-0.0169476643204689,-0.233604252338409,0.972184121608734,-0.161447554826736,-0.264481782913208,0.950780808925629,0.125451162457466,-0.884323358535767,0.449704617261887,0.0732370764017105,-0.882100164890289,0.465333849191666,0.106514796614647,-0.883819758892059,0.455540657043457,0.0323539562523365,-0.85850989818573,0.511775374412537,0.108360208570957,-0.865882515907288,0.488370358943939,0.0843868628144264,-0.864147663116455,0.496112793684006,0.0897757411003113,-0.85496586561203,0.510855853557587,
- 0.0379740335047245,-0.848267018795013,0.528205513954163,0.0362358540296555,-0.847998023033142,0.528759241104126,0.0899007171392441,-0.542342126369476,0.835333943367004,0.117844983935356,-0.530871748924255,0.839218556880951,0.0294915810227394,-0.565315723419189,0.824347257614136,0.0464658588171005,-0.818395614624023,0.572773575782776,0.0573172718286514,-0.817892730236053,0.572508752346039,0.112427741289139,-0.813836932182312,0.570113599300385,0.0494723357260227,-0.750814497470856,0.658657789230347,0.0161236226558685,-0.7552290558815,0.655262589454651,0.162603810429573,-0.729329824447632,0.664558470249176,0.108123816549778,-0.874228835105896,0.473321497440338,0.2182337641716,-0.85406106710434,0.472179740667343,0.0656226873397827,-0.87905079126358,0.472190052270889,0.0402703508734703,-0.820254981517792,0.570578813552856,-0.100468099117279,-0.847482025623322,0.521229863166809,0.07469841837883,-0.810686111450195,0.580696284770966,-0.0592093840241432,-0.895191729068756,0.441730946302414,0.0607765540480614,-0.86859542131424,0.49178072810173,-0.00648542121052742,-0.885424196720123,0.464738667011261,0.0460374131798744,-0.834505319595337,0.549073338508606,0.0592625439167023,-0.833875358104706,0.548762321472168,-0.0210499446839094,-0.835446417331696,0.549168586730957,-0.00788038969039917,-0.881023466587067,0.473006933927536,0.0841905102133751,-0.86095929145813,0.501658499240875,-0.0649232789874077,-0.889173567295074,0.452941000461578,0.0446701757609844,-0.823793888092041,0.565126776695251,-0.01539047062397,-0.825133442878723,0.564728140830994,0.0579467043280602,-0.823095321655273,0.564939200878143,-0.025248609483242,-0.819362699985504,0.572719275951386,0.0580953806638718,-0.824319958686829,0.56313544511795,-0.015463394112885,-0.820245385169983,0.571802794933319,0.0266020894050598,-0.831806182861328,0.554428398609161,-0.0152284540235996,-0.83552211523056,0.549245715141296,0.0425714403390884,-0.82999324798584,0.556146442890167,0.024127222597599,-0.840584337711334,0.541143238544464,0.0381891541182995,-0.84255987405777,0.537247061729431,
- 0.0411610081791878,-0.842954218387604,0.536408424377441,-0.0154656432569027,-0.820092380046844,0.572022080421448,0.0259287469089031,-0.823237657546997,0.567104458808899,-0.0253070704638958,-0.819133341312408,0.57304459810257,-0.0152306593954563,-0.835384905338287,0.549454391002655,0.0266617387533188,-0.831591725349426,0.55474728345871,0.0261934604495764,-0.831642329692841,0.554693579673767,0.0411095023155212,-0.843040823936462,0.53627622127533,-0.0224358607083559,-0.832673788070679,0.553309261798859,0.0241136290132999,-0.84063184261322,0.54106992483139,0.0262896567583084,-0.834696590900421,0.550082206726074,0.0257812589406967,-0.834744334220886,0.550033986568451,-0.0241878591477871,-0.838352918624878,0.544591128826141,-0.0207605734467506,-0.827164232730865,0.561576664447784,0.0438636243343353,-0.838373184204102,0.543329060077667,-0.0452163256704807,-0.821917235851288,0.567809641361237,-0.0454642660915852,-0.822359561920166,0.567148983478546,-0.143654331564903,-0.797743022441864,0.585636079311371,-0.0207617972046137,-0.827168345451355,0.561570703983307,-0.15608873963356,-0.843317270278931,0.514249205589294,0.0263339970260859,-0.836104393005371,0.547938108444214,-0.0250342302024364,-0.841066122055054,0.540352880954742,-0.144369855523109,-0.800417423248291,0.581798315048218,-0.0464942790567875,-0.824191629886627,0.564399123191834,-0.187305361032486,-0.787195146083832,0.587571799755096,-0.195789039134979,-0.809111654758453,0.554080426692963,-0.307327061891556,-0.779718637466431,0.545517086982727,-0.149132564663887,-0.818065524101257,0.555453240871429,-0.21211501955986,-0.81981897354126,0.531887471675873,0.0262257810682058,-0.832668542861938,0.553150415420532,-0.151755794882774,-0.827665209770203,0.5403151512146,-0.307193040847778,-0.774323582649231,0.553222894668579,-0.211789309978485,-0.800856351852417,0.560155749320984,-0.148024991154671,-0.813986122608185,0.561707556247711,-0.307561904191971,-0.810381770133972,0.498685359954834,-0.132610112428665,-0.832902193069458,0.537297487258911,-0.212170124053955,-0.826111257076263,0.522038340568542,
- -0.134851142764091,-0.820383369922638,0.55568540096283,0.0261384174227715,-0.829894721508026,0.557307422161102,-0.211939662694931,-0.808046340942383,0.549675166606903,-0.130351960659027,-0.844754636287689,0.519035696983337,-0.307436883449554,-0.819486856460571,0.483656942844391,-0.20047102868557,-0.83818918466568,0.507198631763458,-0.0242519713938236,-0.823249578475952,0.567161440849304,0.026018163189292,-0.826076686382294,0.562956869602203,0.0364697501063347,-0.826399981975555,0.561901450157166,-0.136780560016632,-0.808947920799255,0.571746826171875,0.0364924147725105,-0.826524794101715,0.561716198921204,0.0260212868452072,-0.8261758685112,0.562811136245728,0.112588286399841,-0.891400098800659,0.43901002407074,0.0063377944752574,-0.922080516815186,0.386946052312851,0.0533853471279144,-0.910202324390411,0.410709083080292,-0.191321313381195,-0.8617222905159,0.469926416873932,0.00905657652765512,-0.850567877292633,0.525787472724915,-0.126753553748131,-0.862209975719452,0.490436255931854,0.0399886220693588,-0.845410346984863,0.532618463039398,-0.129707634449005,-0.848005056381226,0.51387095451355,0.00767597556114197,-0.84781277179718,0.530240178108215,0.0497189275920391,-0.893740594387054,0.445820331573486,0.0346463769674301,-0.897186517715454,0.440290838479996,0.101500578224659,-0.880035281181335,0.463935017585754,0.0194538235664368,-0.870530188083649,0.491730451583862,-0.180580317974091,-0.886075854301453,0.426919788122177,0.0580636337399483,-0.863060474395752,0.501752138137817,0.0551316142082214,-0.858416378498077,0.509982168674469,0.0783827155828476,-0.85420286655426,0.513997673988342,0.0161632057279348,-0.864362597465515,0.502609312534332,0.119504764676094,-0.959704101085663,-0.254335939884186,0.113287270069122,-0.959864854812622,-0.25656458735466,-0.0845669731497765,-0.943359971046448,-0.320812255144119,0.123979434370995,-0.596388816833496,-0.793063282966614,0.105980083346367,-0.6003697514534,-0.792669117450714,0.179765790700912,-0.582691133022308,-0.792562484741211,0.104319855570793,-0.994038939476013,-0.0316852107644081,
- -0.0135023705661297,-0.998078405857086,-0.0604750402271748,-0.159809708595276,-0.98256129026413,-0.0950483977794647,0.124136574566364,-0.596840441226959,-0.792698979377747,0.066776342689991,-0.613171815872192,-0.787122189998627,0.106092274188995,-0.602222919464111,-0.791247129440308,0.0311077013611794,-0.653397381305695,-0.756375670433044,0.107811488211155,-0.631477653980255,-0.767862319946289,0.0779414176940918,-0.640526175498962,-0.763970851898193,0.0833804160356522,-0.653619945049286,-0.75221586227417,0.0403923541307449,-0.666768789291382,-0.744169354438782,0.0350000932812691,-0.668318212032318,-0.743051648139954,0.0944436639547348,-0.917192876338959,-0.387088626623154,0.11576908826828,-0.918563485145569,-0.377939939498901,0.0217661373317242,-0.908854007720947,-0.416546076536179,0.0451675280928612,-0.70623391866684,-0.70653635263443,0.0500602498650551,-0.706091821193695,-0.706348598003387,0.111546285450459,-0.702852725982666,-0.702535152435303,0.0419764146208763,-0.778540074825287,-0.626189529895782,0.0106042539700866,-0.77595317363739,-0.6307013630867,0.168069958686829,-0.780957698822021,-0.601546049118042,0.10548173636198,-0.617934346199036,-0.77912175655365,0.22399115562439,-0.612833321094513,-0.757801651954651,0.0607916787266731,-0.617538511753082,-0.784187853336334,0.0353530645370483,-0.703059494495392,-0.710251688957214,-0.0959671139717102,-0.662099540233612,-0.743245959281921,0.072484165430069,-0.712121546268463,-0.698304355144501,-0.0547164604067802,-0.592324614524841,-0.803839325904846,0.0562458336353302,-0.633639812469482,-0.771580815315247,-0.00841985642910004,-0.610687494277954,-0.791826963424683,0.0407655835151672,-0.685783505439758,-0.726663053035736,0.0521068200469017,-0.685475528240204,-0.726228773593903,-0.0235939286649227,-0.685857653617859,-0.72735321521759,-0.00988901499658823,-0.618214726448059,-0.785947203636169,0.0832305699586868,-0.643326818943024,-0.76105409860611,-0.060291051864624,-0.602051734924316,-0.796177625656128,0.0433658249676228,-0.699628353118896,-0.713189780712128,-0.0166405662894249,-0.699414968490601,-0.714522123336792,
- 0.0507273748517036,-0.699480652809143,-0.712848901748657,-0.0279739461839199,-0.70648068189621,-0.707179307937622,0.0508099533617496,-0.698655009269714,-0.71365225315094,-0.0166901294142008,-0.705632567405701,-0.708381414413452,0.0247169807553291,-0.690259754657745,-0.723139405250549,-0.0165292974561453,-0.685817301273346,-0.727586090564728,0.0412212982773781,-0.691701769828796,-0.721005916595459,0.0223985686898232,-0.679289638996124,-0.733528435230255,0.0369452908635139,-0.675691366195679,-0.736258268356323,0.0436357781291008,-0.673983037471771,-0.737457036972046,-0.0166917834430933,-0.705841779708862,-0.708172917366028,0.0223445575684309,-0.701857089996338,-0.711967289447784,-0.0280415005981922,-0.706794857978821,-0.706862568855286,-0.0165307801216841,-0.685995638370514,-0.727417886257172,0.0247748345136642,-0.6905317902565,-0.722877681255341,0.0225180350244045,-0.690315008163452,-0.723158538341522,0.0435804016888142,-0.673860371112823,-0.737572371959686,-0.0265323966741562,-0.690340161323547,-0.722998261451721,0.0223864540457726,-0.679231941699982,-0.733582198619843,0.0225751399993896,-0.686388254165649,-0.726884782314301,0.0239180363714695,-0.686494469642639,-0.726741552352905,-0.0285971611738205,-0.681405007839203,-0.731347680091858,-0.0248341485857964,-0.697596549987793,-0.716060280799866,0.0463571436703205,-0.679988145828247,-0.731756269931793,-0.043040506541729,-0.70147442817688,-0.711393773555756,-0.0432644672691822,-0.700951159000397,-0.711895883083344,-0.143417507410049,-0.715253412723541,-0.683991253376007,-0.0248584374785423,-0.697493374347687,-0.71615993976593,-0.155411094427109,-0.653056383132935,-0.741191506385803,0.0226036868989468,-0.684400320053101,-0.728756010532379,-0.0294791236519814,-0.677550554275513,-0.734885215759277,-0.144111827015877,-0.711931824684143,-0.687302649021149,-0.0442802011966705,-0.698571801185608,-0.714168548583984,-0.186957463622093,-0.715324640274048,-0.673318326473236,-0.195501789450645,-0.686192810535431,-0.70065575838089,-0.305997490882874,-0.672850966453552,-0.673525869846344,
- -0.148713052272797,-0.689095973968506,-0.709246933460236,-0.212028622627258,-0.666196286678314,-0.715000987052917,0.0225329697132111,-0.689294278621674,-0.724130988121033,-0.151239320635796,-0.67591404914856,-0.721295297145844,-0.305935591459274,-0.679483652114868,-0.666862368583679,-0.211784154176712,-0.690722405910492,-0.691411674022675,-0.147641777992249,-0.694544494152069,-0.704137742519379,-0.305809587240219,-0.632351517677307,-0.711766839027405,-0.136339947581291,-0.673093914985657,-0.72688102722168,-0.212056010961533,-0.657570600509644,-0.722933828830719,-0.138570845127106,-0.689396739006042,-0.71100652217865,0.0224775094538927,-0.693062484264374,-0.720527052879334,-0.211904436349869,-0.681630790233612,-0.700339913368225,-0.134148314595222,-0.657235026359558,-0.741651117801666,-0.305553078651428,-0.619150936603546,-0.723387479782104,-0.202312558889389,-0.644658505916595,-0.73721444606781,-0.0269399434328079,-0.701656341552734,-0.712006151676178,0.0224006921052933,-0.698183953762054,-0.715567946434021,0.035017803311348,-0.697019517421722,-0.716196656227112,-0.140473410487175,-0.703439891338348,-0.696735024452209,0.0350417941808701,-0.696847677230835,-0.716362655162811,0.0224026702344418,-0.698053359985352,-0.715695261955261,0.111814700067043,-0.586865365505219,-0.801926791667938,0.00481133162975311,-0.540517628192902,-0.841319024562836,0.0518684685230255,-0.561907231807709,-0.825572550296783,-0.193117022514343,-0.611838519573212,-0.767045915126801,0.00965599715709686,-0.665635406970978,-0.746214628219604,-0.130566269159317,-0.63161689043045,-0.764207243919373,0.038529422134161,-0.671282052993774,-0.740199983119965,-0.133519694209099,-0.652713119983673,-0.745746612548828,0.00826771557331085,-0.66947078704834,-0.742792427539825,0.0482169575989246,-0.593790829181671,-0.803173422813416,0.0357773527503014,-0.589789867401123,-0.806763887405396,0.100642383098602,-0.60948121547699,-0.786386609077454,0.0202969461679459,-0.635585248470306,-0.771763920783997,-0.182346448302269,-0.573585689067841,-0.798592090606689,0.0610938668251038,-0.644589781761169,-0.76208370923996,
- 0.0582285672426224,-0.651713967323303,-0.756226360797882,0.0773646235466003,-0.654353380203247,-0.752220988273621,0.016947329044342,-0.64516943693161,-0.763851583003998,-0.0564133748412132,-0.708392560482025,-0.703560650348663,-0.227662727236748,-0.68851637840271,-0.68856006860733,-0.135862112045288,-0.701846122741699,-0.699252128601074,0.00507712317630649,-0.708931028842926,-0.705259621143341,-0.0547484159469604,-0.697915017604828,-0.714084982872009,-0.131258979439735,-0.679902911186218,-0.721459031105042,-0.22880245745182,-0.648433387279511,-0.726074159145355,-0.0545717105269432,-0.696798384189606,-0.715188145637512,-0.158424153923988,-0.670807003974915,-0.724513471126556,-0.197597503662109,-0.733210384845734,-0.650659501552582,-0.225392609834671,-0.733812987804413,-0.64087188243866,-0.153689876198769,-0.730984330177307,-0.664861917495728,-0.0544919222593308,-0.696293890476227,-0.715685367584229,0.00553405983373523,-0.707682549953461,-0.706508934497833,0.0271961353719234,-0.711130082607269,-0.702534258365631,0.0592655092477798,-0.716823041439056,-0.694731891155243,0.0271411836147308,-0.711406230926514,-0.702256739139557,0.00565803796052933,-0.707343399524689,-0.706847548484802,-0.154767885804176,-0.71887731552124,-0.677688956260681,-0.0765543654561043,-0.716111123561859,-0.693775534629822,-0.202651336789131,-0.718292057514191,-0.665574252605438,-0.0160266906023026,-0.710437774658203,-0.703577637672424,-0.198350086808205,-0.731027901172638,-0.65288245677948,-0.075919471681118,-0.720043301582336,-0.68976366519928,-0.156097263097763,-0.702799677848816,-0.694050669670105,-0.0565112009644508,-0.70900571346283,-0.702934920787811,0.00555041851475835,-0.709281861782074,-0.704903125762939,-0.0781558975577354,-0.706021070480347,-0.703865051269531,-0.156642988324165,-0.695779919624329,-0.700966060161591,0.00552849471569061,-0.712038397789001,-0.702118813991547,-0.0567209497094154,-0.710319399833679,-0.701590359210968,0.0277737006545067,-0.708219707012177,-0.70544558763504,0.00555055681616068,-0.709264397621155,-0.704920709133148,
- -0.0149060636758804,-0.712991118431091,-0.701014697551727,-0.0748215988278389,-0.726753950119019,-0.68281078338623,0.0216567721217871,-0.703161299228668,-0.710700452327728,0.0239727050065994,-0.712166726589203,-0.701600968837738,-0.0784468948841095,-0.704161047935486,-0.705693602561951,0.00553454039618373,-0.711280405521393,-0.702886581420898,0.0825809761881828,-0.680412769317627,-0.728161334991455,-0.0136090945452452,-0.715932905673981,-0.698036551475525,0.021819218993187,-0.70379638671875,-0.710066616535187,0.00555000407621264,-0.709334135055542,-0.704850494861603,0.0277727916836739,-0.708224356174469,-0.705440998077393,0.0278615392744541,-0.708219230175018,-0.705442607402802,0.027613203972578,-0.709029972553253,-0.70463752746582,0.0601556301116943,-0.71499890089035,-0.696532845497131,0.0277485884726048,-0.709056496620178,-0.704605519771576,0.0280201956629753,-0.709540069103241,-0.704107761383057,0.0232685431838036,-0.709439754486084,-0.704381883144379,0.00555325159803033,-0.708924114704132,-0.705262959003448,0.0898473784327507,-0.698097407817841,-0.710343241691589,0.0238370448350906,-0.711642146110535,-0.702137649059296,0.0281143076717854,-0.71086448431015,-0.702766895294189,0.00639835838228464,-0.704984128475189,-0.709194302558899,0.0276152193546295,-0.710043489933014,-0.703616201877594,0.0592192709445953,-0.716917634010315,-0.694638192653656,0.0563487038016319,-0.722757458686829,-0.688800752162933,0.0613661706447601,-0.724294185638428,-0.686754822731018,0.00602692365646362,-0.706111669540405,-0.708074927330017,-0.00560291111469269,-0.711569726467133,-0.702593207359314,0.00553809478878975,-0.71083402633667,-0.703338027000427,0.0277424305677414,-0.709102153778076,-0.704559922218323,0.0279719792306423,-0.707399308681488,-0.706260442733765,0.00502678053453565,-0.709138154983521,-0.705051720142365,-0.00558909540995955,-0.709815144538879,-0.704365849494934,-0.00569813139736652,-0.723662734031677,-0.690130293369293,0.0293168127536774,-0.727686047554016,-0.685283541679382,0.00542272068560123,-0.725039899349213,-0.688685536384583,
- 0.0627511143684387,-0.721641659736633,-0.689416825771332,0.108831658959389,-0.730212688446045,-0.674496233463287,0.00522346794605255,-0.708544075489044,-0.705647230148315,0.00470682187005877,-0.710103392601013,-0.70408171415329,0.111702658236027,-0.700933694839478,-0.704424917697906,-0.00559491431340575,-0.710554122924805,-0.703620374202728,0.161312401294708,-0.736774384975433,-0.656614005565643,0.108863398432732,-0.729906260967255,-0.674822688102722,0.0625649094581604,-0.721999108791351,-0.689059436321259,0.162811309099197,-0.661051273345947,-0.732464134693146,0.11447474360466,-0.669235050678253,-0.734179854393005,0.161956757307053,-0.661210417747498,-0.732509970664978,0.0400674268603325,-0.708856761455536,-0.704213619232178,0.0890233442187309,-0.696108460426331,-0.712395906448364,0.0281715653836727,-0.711669683456421,-0.701949238777161,0.0468274019658566,-0.739399552345276,-0.671636521816254,0.0300358720123768,-0.737653970718384,-0.674510598182678,-0.0057733291760087,-0.733212828636169,-0.679974794387817,0.0930428057909012,-0.705769777297974,-0.702304840087891,0.0417596139013767,-0.716603100299835,-0.696229994297028,0.0806697160005569,-0.708568692207336,-0.701015651226044,0.11024734377861,-0.716180145740509,-0.689152836799622,0.113220222294331,-0.71600204706192,-0.688855767250061,-0.00565451756119728,-0.718123733997345,-0.695892512798309,0.116067655384541,-0.738699615001678,-0.663966357707977,0.0462946854531765,-0.737031936645508,-0.674270570278168,-0.00577488960698247,-0.733411014080048,-0.679760992527008,0.112528048455715,-0.691881895065308,-0.713187873363495,0.166543006896973,-0.684012413024902,-0.710204482078552,0.110203593969345,-0.692173182964325,-0.713268160820007,0.112559959292412,-0.710768401622772,-0.694361984729767,0.0829076617956162,-0.716145992279053,-0.693008840084076,0.0430212058126926,-0.722334802150726,-0.69020402431488,0.0802620947360992,-0.707182645797729,-0.702460527420044,0.111357294023037,-0.701261878013611,-0.704153001308441,0.167307943105698,-0.688764214515686,-0.705416142940521,-0.05634705722332,-0.876773357391357,-0.47759160399437,
- -0.226418972015381,-0.853757858276367,-0.468862444162369,-0.137546703219414,-0.869058907032013,-0.475202709436417,0.00891854614019394,-0.87817120552063,-0.4782634973526,-0.0546835623681545,-0.869662344455719,-0.490608960390091,-0.132849648594856,-0.854041576385498,-0.502955257892609,-0.228050023317337,-0.825724124908447,-0.51591944694519,-0.0545037910342216,-0.868885397911072,-0.492003560066223,-0.159845724701881,-0.846144080162048,-0.508418679237366,-0.197728723287582,-0.885810792446136,-0.419812619686127,-0.223586082458496,-0.883826434612274,-0.410925924777985,-0.154930919408798,-0.887625277042389,-0.433725714683533,-0.0544266626238823,-0.868551552295685,-0.492601156234741,0.00936202611774206,-0.877332210540771,-0.479792177677155,0.0225015692412853,-0.878671765327454,-0.476895779371262,0.0532559156417847,-0.881893873214722,-0.468430608510971,0.02247304469347,-0.878768742084503,-0.476718544960022,0.0094447722658515,-0.877175390720367,-0.48007720708847,-0.156046807765961,-0.879532098770142,-0.449525207281113,-0.0768609195947647,-0.881453335285187,-0.465974658727646,-0.20278362929821,-0.875647306442261,-0.438315659761429,-0.0110117783769965,-0.878147721290588,-0.478262841701508,-0.198478639125824,-0.884340941905975,-0.422548621892929,-0.0762295722961426,-0.88413017988205,-0.460980325937271,-0.157427534461021,-0.868562459945679,-0.469910383224487,-0.0564433969557285,-0.877180755138397,-0.476831316947937,0.00376861030235887,-0.878017723560333,-0.478613495826721,-0.0784497335553169,-0.874541282653809,-0.478563696146011,-0.157996118068695,-0.863694190979004,-0.478612333536148,0.00374255748465657,-0.879813253879547,-0.475304812192917,-0.0566538535058498,-0.878069221973419,-0.475168198347092,0.0228880532085896,-0.877355098724365,-0.479295581579208,0.00376835209317505,-0.878035604953766,-0.478580713272095,-0.0100126946344972,-0.879674673080444,-0.475470751523972,-0.0751408040523529,-0.888655066490173,-0.452378302812576,0.0209550708532333,-0.873910009860992,-0.485635906457901,0.0231399461627007,-0.879824638366699,-0.474734842777252,
- -0.0787371024489403,-0.873263776302338,-0.480843901634216,0.00375024997629225,-0.879284739494324,-0.476281762123108,0.0813418999314308,-0.857211410999298,-0.50849986076355,-0.00883734319359064,-0.881458163261414,-0.472179651260376,0.0211275592446327,-0.8743816614151,-0.484778702259064,0.00376761169172823,-0.878086805343628,-0.478486686944962,0.0228841435164213,-0.87736850976944,-0.479271352291107,0.0247637033462524,-0.877280533313751,-0.479339003562927,0.022959878668189,-0.87710964679718,-0.479741305112839,0.054184801876545,-0.880594491958618,-0.470762491226196,0.0247529521584511,-0.877335011959076,-0.479239761829376,0.030197985470295,-0.878023087978363,-0.477664768695831,0.0224591046571732,-0.877995491027832,-0.478141814470291,0.00377303059212863,-0.877711355686188,-0.479174882173538,0.0885889157652855,-0.869028508663177,-0.486766278743744,0.02305618673563,-0.879600286483765,-0.475154459476471,0.0302536096423864,-0.878635227680206,-0.476534307003021,0.00947195198386908,-0.875587046146393,-0.482967466115952,0.0246327631175518,-0.877943634986877,-0.478129923343658,0.0533341094851494,-0.881784737110138,-0.468626976013184,0.0507088527083397,-0.885417222976685,-0.462022632360458,0.0575971603393555,-0.886693358421326,-0.458756417036057,0.0089944452047348,-0.876573860645294,-0.481183499097824,-0.00692602805793285,-0.87960559129715,-0.475653320550919,0.00375231285579503,-0.879142880439758,-0.476543724536896,0.0246323738247156,-0.877945601940155,-0.47812631726265,0.0248631741851568,-0.87677538394928,-0.48025718331337,0.00843196269124746,-0.877731025218964,-0.479079484939575,-0.00691659655421972,-0.878407776355743,-0.477861821651459,-0.00698863156139851,-0.887556195259094,-0.460646629333496,0.0313290730118752,-0.890289843082428,-0.454315453767776,0.00361389364115894,-0.888447284698486,-0.458964496850967,0.0588095486164093,-0.885104417800903,-0.461661905050278,0.10587851703167,-0.889414846897125,-0.444669663906097,0.00829071458429098,-0.878020823001862,-0.478550761938095,0.00809337850660086,-0.878425002098084,-0.477811694145203,
- 0.108643427491188,-0.870230138301849,-0.480516493320465,-0.00692032417282462,-0.87888115644455,-0.476990848779678,0.155308678746223,-0.890881299972534,-0.426860332489014,0.105905875563622,-0.889237761497498,-0.445017039775848,0.0585986003279686,-0.885381758213043,-0.461156636476517,0.160941541194916,-0.839755237102509,-0.518564343452454,0.111391618847847,-0.848192393779755,-0.517843186855316,0.15582312643528,-0.840728640556335,-0.518550455570221,0.044512789696455,-0.876597285270691,-0.47916167974472,0.0877797901630402,-0.867733120918274,-0.489217668771744,0.0302971508353949,-0.879113733768463,-0.475648134946823,0.0515732765197754,-0.897816121578217,-0.437340438365936,0.0319498777389526,-0.896856009960175,-0.441167235374451,-0.00703847128897905,-0.893885850906372,-0.448239386081696,0.0918186753988266,-0.87413877248764,-0.476918011903763,0.046240821480751,-0.881944417953491,-0.469079941511154,0.0794929638504982,-0.876442968845367,-0.474898517131805,0.107215657830238,-0.88047331571579,-0.461813390254974,0.114709690213203,-0.879838287830353,-0.461222529411316,-0.00696020713075995,-0.883946299552917,-0.467536628246307,0.117559358477592,-0.894726395606995,-0.430865108966827,0.0509917475283146,-0.896131932735443,-0.440848529338837,-0.00703980587422848,-0.894055366516113,-0.44790118932724,0.109461903572083,-0.864005386829376,-0.49143972992897,0.164577201008797,-0.85556948184967,-0.490831196308136,0.111687168478966,-0.863717615604401,-0.491444677114487,0.114026203751564,-0.876221001148224,-0.468225181102753,0.0817492455244064,-0.881434202194214,-0.465178370475769,0.0475436635315418,-0.885910391807556,-0.461413413286209,0.0790626332163811,-0.875481188297272,-0.476740926504135,0.112824060022831,-0.869818270206451,-0.480298787355423,0.165346816182137,-0.858897984027863,-0.484721332788467,-0.0587332621216774,-0.991384029388428,-0.117081850767136,-0.225942358374596,-0.967026770114899,-0.117513030767441,-0.134620919823647,-0.983882904052734,-0.117693066596985,0.00641153566539288,-0.993023753166199,-0.117740318179131,-0.0570325255393982,-0.989566624164581,-0.132307812571526,
- -0.129871129989624,-0.980362117290497,-0.148403629660606,-0.227512523531914,-0.958551406860352,-0.171514421701431,-0.0568514950573444,-0.989360213279724,-0.133919537067413,-0.160688683390617,-0.974397540092468,-0.157253190875053,-0.194168344140053,-0.979063987731934,-0.0610926039516926,-0.223187193274498,-0.973351657390594,-0.0526707172393799,-0.155520737171173,-0.985195100307465,-0.0721384957432747,-0.0567755848169327,-0.989272832870483,-0.134594768285751,0.00687248073518276,-0.992811381816864,-0.119492165744305,0.0243462473154068,-0.993037521839142,-0.115254983305931,0.0538174621760845,-0.992856800556183,-0.106485299766064,0.0243071466684341,-0.993070423603058,-0.114979453384876,0.0069830697029829,-0.992759943008423,-0.119912430644035,-0.156688794493675,-0.983551442623138,-0.0898623242974281,-0.0754361301660538,-0.991628646850586,-0.104794882237911,-0.199168235063553,-0.976551592350006,-0.0817256942391396,-0.0120877344161272,-0.993071377277374,-0.116890259087086,-0.194932132959366,-0.978711843490601,-0.0642227455973625,-0.0748225748538971,-0.992238879203796,-0.0993155762553215,-0.158138751983643,-0.98093444108963,-0.112959071993828,-0.0588375255465508,-0.991488218307495,-0.116143465042114,0.00874535087496042,-0.993017673492432,-0.11764195561409,-0.0769857689738274,-0.989939749240875,-0.118712656199932,-0.158738076686859,-0.97964072227478,-0.122908622026443,0.00871641840785742,-0.993501663208008,-0.113483376801014,-0.0590537339448929,-0.991701602935791,-0.114195674657822,0.0248094387352467,-0.992641806602478,-0.118519328534603,0.00874613877385855,-0.993004202842712,-0.117755278944969,-0.0110649513080716,-0.993457674980164,-0.113664001226425,-0.0737536400556564,-0.993224263191223,-0.0898109748959541,0.0252034701406956,-0.991553962230682,-0.127222254872322,0.0278087239712477,-0.993220090866089,-0.112874068319798,-0.0772696733474731,-0.989606976509094,-0.121274918317795,0.00872347038239241,-0.993385493755341,-0.11449521780014,0.0788015946745873,-0.985248148441315,-0.151909664273262,-0.00985973235219717,-0.993898034095764,-0.109861098229885,
- 0.0253037679940462,-0.991622030735016,-0.126670956611633,0.00874554831534624,-0.993014276027679,-0.117670230567455,0.024806771427393,-0.992644131183624,-0.118500515818596,0.0270516984164715,-0.992571949958801,-0.118614166975021,0.024787375703454,-0.992660880088806,-0.118363820016384,0.0547349788248539,-0.992520213127136,-0.109122797846794,0.0269659981131554,-0.992683529853821,-0.117695733904839,0.0335775092244148,-0.992627024650574,-0.116465210914612,0.0270881988108158,-0.992780327796936,-0.116848029196262,0.00874716229736805,-0.992986679077148,-0.117902956902981,0.0858465507626534,-0.988067984580994,-0.127874746918678,0.0274645872414112,-0.993012130260468,-0.114772699773312,0.0335929878056049,-0.992661535739899,-0.116166412830353,0.0123962322250009,-0.992519617080688,-0.121454209089279,0.0268391333520412,-0.992847263813019,-0.116336338222027,0.0538829900324345,-0.992833018302917,-0.106673642992973,0.0512602254748344,-0.993752717971802,-0.0991362482309341,0.0600511506199837,-0.993696868419647,-0.0946589931845665,0.0118331639096141,-0.992815792560577,-0.119067028164864,-0.00692285876721144,-0.993430495262146,-0.114227503538132,0.00873176753520966,-0.993247330188751,-0.115687221288681,0.0269336178898811,-0.992725491523743,-0.117348738014698,0.0271578654646873,-0.992432296276093,-0.119752213358879,0.0116739170625806,-0.992898404598236,-0.118391811847687,-0.00690093217417598,-0.993140697479248,-0.116722390055656,-0.00707020796835423,-0.99522876739502,-0.097312331199646,0.0349469780921936,-0.995351135730743,-0.0897483006119728,0.00858268793672323,-0.995486438274384,-0.0945149213075638,0.0613676644861698,-0.993267953395844,-0.0982488170266151,0.108636178076267,-0.990793704986572,-0.0807840973138809,0.0112146874889731,-0.993133902549744,-0.116444438695908,0.0113098602741957,-0.993085384368896,-0.116848051548004,0.111462406814098,-0.98620742559433,-0.12235664576292,-0.00690974900498986,-0.993257939815521,-0.115719802677631,0.159155607223511,-0.985218048095703,-0.0633634030818939,0.108667500317097,-0.990753769874573,-0.0812307000160217,
- 0.0611752010881901,-0.993331611156464,-0.0977239534258842,0.163903504610062,-0.97187614440918,-0.169092908501625,0.114189572632313,-0.97961151599884,-0.165293708443642,0.159672245383263,-0.972633719444275,-0.168785139918327,0.0378473587334156,-0.992452383041382,-0.116644561290741,0.0850912556052208,-0.987794876098633,-0.130464404821396,0.0336327031254768,-0.992749691009521,-0.115399152040482,0.0446643009781837,-0.996315240859985,-0.073219433426857,0.0356904827058315,-0.996544241905212,-0.0750050470232964,-0.00718932505697012,-0.996486663818359,-0.0834424123167992,0.0890594571828842,-0.989151418209076,-0.11682403087616,0.0395685285329819,-0.993605613708496,-0.105745948851109,0.0806240141391754,-0.99009370803833,-0.114953622221947,0.110028252005577,-0.98879086971283,-0.100927785038948,0.110499449074268,-0.98874032497406,-0.100908197462559,-0.00700295343995094,-0.994440674781799,-0.105065509676933,0.113181851804256,-0.991273581981659,-0.0675766691565514,0.0441365540027618,-0.996084094047546,-0.0766062885522842,-0.007192587479949,-0.996518611907959,-0.0830599889159203,0.112273886799812,-0.984489500522614,-0.13481467962265,0.167775079607964,-0.976205408573151,-0.137384578585625,0.107653312385082,-0.985037207603455,-0.134582370519638,0.109913252294064,-0.988058567047119,-0.10797867923975,0.0829413533210754,-0.99111396074295,-0.103990137577057,0.0408460907638073,-0.994384527206421,-0.0976279005408287,0.0802022367715836,-0.989894986152649,-0.116942308843136,0.108773231506348,-0.986610352993011,-0.12152536958456,0.168551981449127,-0.976972281932831,-0.130826339125633,-0.0561623461544514,-0.988220751285553,0.142356798052788,-0.225622475147247,-0.964730620384216,0.135607466101646,-0.134430408477783,-0.981016397476196,0.139768660068512,0.012134013697505,-0.9895920753479,0.143389299511909,-0.0545017346739769,-0.990312933921814,0.127710297703743,-0.12976199388504,-0.985513210296631,0.109204888343811,-0.22697114944458,-0.970497369766235,0.0813581869006157,-0.0543200299143791,-0.990527749061584,0.126112312078476,-0.161792486906052,-0.981867551803589,0.0987892225384712,
- -0.198099240660667,-0.960767447948456,0.19412063062191,-0.223131477832794,-0.954079508781433,0.199861541390419,-0.157089665532112,-0.9701988697052,0.184491738677025,-0.0542445927858353,-0.990615963935852,0.125449240207672,0.0125748179852962,-0.989831686019897,0.1416866928339,0.0199126470834017,-0.989460170269012,0.143429860472679,0.0557359755039215,-0.986586034297943,0.15343251824379,0.0198992285877466,-0.989446580410004,0.143525302410126,0.0126254707574844,-0.989859104156494,0.141491025686264,-0.158164858818054,-0.973225474357605,0.166781529784203,-0.0778493285179138,-0.984904706478119,0.154603257775307,-0.2031559497118,-0.963710188865662,0.173177406191826,-0.0134372338652611,-0.989591479301453,0.143276616930962,-0.198849201202393,-0.961228907108307,0.191044524312019,-0.0771807432174683,-0.984047532081604,0.160292088985443,-0.15949210524559,-0.976704001426697,0.143567427992821,-0.0562568120658398,-0.988094806671143,0.143192276358604,0.0066740270704031,-0.989813685417175,0.142212241888046,-0.0795342624187469,-0.98693174123764,0.140143349766731,-0.16003829240799,-0.978039979934692,0.133513122797012,0.00663825450465083,-0.989236056804657,0.146177709102631,-0.0564667843282223,-0.987811684608459,0.145050436258316,0.0201883539557457,-0.989736974239349,0.141467809677124,0.00667449412867427,-0.989821135997772,0.142160385847092,-0.0123876854777336,-0.989115536212921,0.146618872880936,-0.0760395228862762,-0.982516467571259,0.169939830899239,0.0234434455633163,-0.990811765193939,0.133201405405998,0.0258136596530676,-0.988848924636841,0.146668523550034,-0.0798362568020821,-0.987274527549744,0.137532785534859,0.00664770044386387,-0.989389955997467,0.145132020115852,0.080139584839344,-0.991088449954987,0.10640275478363,-0.0111576206982136,-0.988542079925537,0.150533020496368,0.023570416495204,-0.990711450576782,0.133922815322876,0.00667364848777652,-0.989807665348053,0.142254307866097,0.0201829355210066,-0.989731669425964,0.141506388783455,0.0269506871700287,-0.98962539434433,0.141121849417686,0.0203873664140701,-0.98993444442749,0.140050828456879,
- 0.0566425696015358,-0.986936151981354,0.150826528668404,0.0268698967993259,-0.989503085613251,0.141991689801216,0.0312539786100388,-0.98921662569046,0.143086522817612,0.0251279715448618,-0.989436566829681,0.142772555351257,0.00667778635397553,-0.989873588085175,0.141794711351395,0.0871371179819107,-0.987585186958313,0.130700498819351,0.025587810203433,-0.98904412984848,0.145385280251503,0.031303595751524,-0.989075660705566,0.144047126173973,0.00897133070975542,-0.990510106086731,0.137146636843681,0.0267443880438805,-0.989311754703522,0.143342345952988,0.0557627566158772,-0.986596465110779,0.153355553746223,0.0530604310333729,-0.985509276390076,0.16110922396183,0.0581219829618931,-0.984814405441284,0.163592487573624,0.00852580275386572,-0.990245580673218,0.139072448015213,-0.00893734395503998,-0.989279210567474,0.145763456821442,0.00665505975484848,-0.989509284496307,0.144316747784615,0.0268327239900827,-0.989446640014648,0.142391815781593,0.0270554274320602,-0.989782691001892,0.139993593096733,0.00790324062108994,-0.989869177341461,0.141762286424637,-0.00892059504985809,-0.989643096923828,0.143272459506989,-0.00904539972543716,-0.986746072769165,0.162019684910774,0.0326004065573215,-0.985023260116577,0.169311687350273,0.00646882271394134,-0.986310839653015,0.164770424365997,0.0593491904437542,-0.985286951065063,0.160272940993309,0.106678888201714,-0.978493392467499,0.176551416516304,0.00781474262475967,-0.989815056324005,0.142144545912743,0.00756979826837778,-0.989664554595947,0.143202424049377,0.109660230576992,-0.984619140625,0.136014014482498,-0.00892698857933283,-0.989504992961884,0.144222483038902,0.158041372895241,-0.968530833721161,0.192278444766998,0.106708817183971,-0.978561103343964,0.176157742738724,0.0591393932700157,-0.985207080841064,0.160840764641762,0.162547245621681,-0.982842922210693,0.0871672034263611,0.112614631652832,-0.989291369915009,0.0928468853235245,0.158749625086784,-0.983424246311188,0.087608739733696,0.0386633351445198,-0.989004015922546,0.142745435237885,0.0863729789853096,-0.988000512123108,0.128041684627533,
- 0.0313509851694107,-0.988940000534058,0.144965022802353,0.0454784855246544,-0.981479167938232,0.186092615127563,0.0333387963473797,-0.98239141702652,0.183836117386818,-0.00913483183830976,-0.984396517276764,0.175727114081383,0.0902852043509483,-0.985788345336914,0.141668483614922,0.0403772406280041,-0.987303674221039,0.153627380728722,0.0791623592376709,-0.9863520860672,0.144371092319489,0.108127743005753,-0.981630444526672,0.15719448029995,0.109692305326462,-0.981453597545624,0.157214388251305,-0.00899645127356052,-0.987933814525604,0.154615581035614,0.112493649125099,-0.975310981273651,0.190036043524742,0.0449478775262833,-0.982138812541962,0.182710349559784,-0.00913820788264275,-0.98430323600769,0.176249131560326,0.110539212822914,-0.98616749048233,0.123510211706162,0.166289016604424,-0.978884339332581,0.118884429335594,0.106731198728085,-0.986549198627472,0.123810827732086,0.109095230698586,-0.982590854167938,0.150377526879311,0.0814178064465523,-0.98453277349472,0.155133739113808,0.0416526421904564,-0.985955059528351,0.161733508110046,0.0787308141589165,-0.986685276031494,0.142315164208412,0.107907757163048,-0.984685182571411,0.136934950947762,0.167060732841492,-0.977914094924927,0.125597774982452,-0.0543000362813473,-0.874344110488892,0.482259273529053,-0.223896637558937,-0.855010628700256,0.467789649963379,-0.138150915503502,-0.868032395839691,0.4769007563591,0.0079385032877326,-0.875708878040314,0.482774257659912,-0.0526417642831802,-0.881290197372437,0.469634532928467,-0.133315354585648,-0.883416593074799,0.449224203824997,-0.225304633378983,-0.879401564598084,0.419393211603165,-0.0524576082825661,-0.882047235965729,0.468231588602066,-0.159040212631226,-0.883814215660095,0.43997585773468,-0.197942763566971,-0.830347061157227,0.520905435085297,-0.221355617046356,-0.822620928287506,0.523733198642731,-0.154040291905403,-0.84336531162262,0.51478773355484,-0.0523805767297745,-0.882363080978394,0.46764475107193,0.00838368386030197,-0.876547157764435,0.481242954730988,0.0225681569427252,-0.874695420265198,0.484147310256958,
- 0.0532168596982956,-0.869309604167938,0.491394758224487,0.0225396733731031,-0.874597072601318,0.484326303005219,0.00847667455673218,-0.876721918582916,0.480922907590866,-0.155172854661942,-0.852286756038666,0.499528527259827,-0.0787825286388397,-0.866698384284973,0.492572009563446,-0.203034698963165,-0.840483069419861,0.502359688282013,-0.0165251567959785,-0.874774515628815,0.484248340129852,-0.198700219392776,-0.831867814064026,0.518183410167694,-0.0780960246920586,-0.863842248916626,0.497672140598297,-0.156574606895447,-0.863502562046051,0.479424357414246,-0.0543892905116081,-0.87396365404129,0.482938379049301,0.0068961470387876,-0.87581068277359,0.48260560631752,-0.0805120542645454,-0.873810172080994,0.479555547237396,-0.157151997089386,-0.868185997009277,0.470697641372681,0.00688081746920943,-0.873863816261292,0.486122101545334,-0.054597869515419,-0.873071789741516,0.484525203704834,0.0229514893144369,-0.87601625919342,0.481735080480576,0.00689638033509254,-0.875840306282043,0.48255181312561,-0.0153807420283556,-0.873004674911499,0.487469494342804,-0.0769301727414131,-0.858949482440948,0.506248712539673,0.0234115496277809,-0.879912197589874,0.474559098482132,0.0258254557847977,-0.873340964317322,0.486424267292023,-0.0808202996850014,-0.875064969062805,0.477210223674774,0.00688487850129604,-0.874379575252533,0.485193699598312,0.081428088247776,-0.88982754945755,0.448972821235657,-0.0140616893768311,-0.870948910713196,0.491172313690186,0.0235428921878338,-0.879559397697449,0.47520649433136,0.00689602131024003,-0.87579470872879,0.482634603977203,0.0229476001113653,-0.876002907752991,0.481759607791901,0.0211998503655195,-0.87599116563797,0.481860935688019,0.0230213385075331,-0.876256287097931,0.481295049190521,0.0541403144598007,-0.870580613613129,0.489038109779358,0.0213067568838596,-0.876541972160339,0.480853825807571,0.0335256606340408,-0.874825835227966,0.483276158571243,0.0251241996884346,-0.875268459320068,0.482984393835068,0.00689775869250298,-0.876015305519104,0.48223415017128,0.0885237157344818,-0.877846777439117,0.470689505338669,
- 0.0255932286381722,-0.873980939388275,0.48528578877449,0.0335398651659489,-0.874670624732971,0.483556061983109,0.0097818011417985,-0.878114402294159,0.478350937366486,0.0212043542414904,-0.876014411449432,0.481818556785584,0.0532981753349304,-0.869421780109406,0.491187453269959,0.0507147908210754,-0.865833878517151,0.497754722833633,0.0562642589211464,-0.86417281627655,0.50003981590271,0.00930813699960709,-0.877151906490326,0.480122774839401,-0.00382152455858886,-0.874320805072784,0.485333621501923,0.00688814325258136,-0.874794185161591,0.484445720911026,0.0210592113435268,-0.87526524066925,0.483184635639191,0.021287152543664,-0.876440942287445,0.48103854060173,0.00877225399017334,-0.876058638095856,0.482124805450439,-0.00380424922332168,-0.875535070896149,0.483139663934708,-0.00394380278885365,-0.865517616271973,0.500862956047058,0.0347039997577667,-0.861507594585419,0.50655722618103,0.00680737104266882,-0.864536106586456,0.502524673938751,0.0574173182249069,-0.865667819976807,0.497315406799316,0.110881857573986,-0.851934611797333,0.511774003505707,0.00860432628542185,-0.875715136528015,0.48275163769722,0.00842475239187479,-0.875347256660461,0.483421564102173,0.113999381661415,-0.87284779548645,0.474490076303482,-0.00381185323931277,-0.875001430511475,0.484105378389359,0.158275991678238,-0.838168144226074,0.521941423416138,0.110918529331684,-0.852181792259216,0.511354446411133,0.0571894198656082,-0.865372955799103,0.49785441160202,0.165396496653557,-0.888432264328003,0.42817297577858,0.116959571838379,-0.892501354217529,0.435616582632065,0.158935144543648,-0.889101564884186,0.429229527711868,0.0384038463234901,-0.874844491481781,0.482879102230072,0.0877326130867004,-0.879216492176056,0.468274831771851,0.0335744805634022,-0.874291837215424,0.48423820734024,0.0450338497757912,-0.852587521076202,0.520640432834625,0.0353419408202171,-0.853911817073822,0.519216358661652,-0.00403869058936834,-0.858430683612823,0.512913703918457,0.0916901379823685,-0.872278094291687,0.48033732175827,0.040080301463604,-0.869402587413788,0.492476344108582,
- 0.0809356570243835,-0.871880769729614,0.482983738183975,0.112434692680836,-0.86237633228302,0.493624955415726,0.110610522329807,-0.862581551074982,0.493678420782089,-0.0038874929305166,-0.86961704492569,0.493711620569229,0.113272562623024,-0.845252692699432,0.52222341299057,0.0445157214999199,-0.854398369789124,0.5177081823349,-0.00403958465903997,-0.858362853527069,0.513027250766754,0.114877618849278,-0.878701448440552,0.463343292474747,0.169207379221916,-0.873473167419434,0.456523269414902,0.107780560851097,-0.879186391830444,0.464127868413925,0.110025703907013,-0.866158246994019,0.48750826716423,0.0832623094320297,-0.866324186325073,0.492493689060211,0.0413200780749321,-0.865297615528107,0.499552488327026,0.0805111229419708,-0.872880220413208,0.481246471405029,0.108892038464546,-0.872872352600098,0.475643187761307,0.169952139258385,-0.870356202125549,0.462164729833603,-0.0554536730051041,-0.0498111993074417,0.997218012809753,-0.090113140642643,-0.0527413710951805,0.994534134864807,-0.02236732468009,-0.0469629317522049,0.998646199703217,0.0889901965856552,0.0327256694436073,0.995494723320007,-0.060647688806057,-0.0191827546805143,0.997974872589111,-0.030419209972024,-0.00869291834533215,0.999499499797821,0.0951249301433563,0.0120719252154231,0.995392143726349,-0.183434933423996,-0.0468448624014854,0.98191511631012,0.232076615095139,0.0412831492722034,0.971821069717407,-0.0302053596824408,-0.00971236452460289,0.999496519565582,-0.302846968173981,-0.0593992881476879,0.951186418533325,0.0947974547743797,0.0131783401593566,0.995409309864044,-0.174162730574608,-0.0735602304339409,0.981965482234955,0.103760674595833,-0.0172669868916273,0.994452476501465,-0.293815791606903,-0.096804104745388,0.950947642326355,-0.176369979977608,-0.0672421976923943,0.982024550437927,-0.287913382053375,-0.120254099369049,0.950076341629028,-0.474946051836014,-0.209815159440041,0.854636669158936,-0.0276283454149961,-0.0219842679798603,0.999376475811005,-0.521757841110229,-0.0676111578941345,0.850410163402557,-0.305432438850403,-0.0483180359005928,0.950987100601196,
- -0.479042738676071,-0.201028123497963,0.854462265968323,-0.290282785892487,-0.110929027199745,0.950489699840546,-0.490845888853073,-0.20671458542347,0.846368491649628,-0.302781045436859,-0.0596793778240681,0.951189875602722,-0.517699062824249,-0.0933384895324707,0.850456058979034,-0.519612193107605,-0.0936347097158432,0.849256038665771,-0.519088208675385,-0.0959898084402084,0.84931355714798,-0.517309486865997,-0.0956937223672867,0.850431382656097,-0.52630889415741,-0.0971912816166878,0.844720542430878,0.319525986909866,-0.875306367874146,-0.362962752580643,0.248952567577362,-0.893868029117584,-0.372857421636581,0.367004722356796,-0.859805107116699,-0.355024993419647,0.436184763908386,-0.829492330551147,-0.348834455013275,0.319620937108994,-0.878626942634583,-0.35476341843605,0.367083579301834,-0.860577762126923,-0.353065967559814,0.434722930192947,-0.82654482126236,-0.357546836137772,0.480659365653992,-0.797931134700775,-0.363692909479141,0.362861335277557,-0.865127384662628,-0.346246123313904,0.366610616445541,-0.856106638908386,-0.364250063896179,0.402626663446426,-0.837106466293335,-0.370330333709717,0.431690514087677,-0.820443749427795,-0.374853640794754,0.481815576553345,-0.791705548763275,-0.375574380159378,0.432708919048309,-0.822490811347961,-0.369150221347809,0.401221632957459,-0.840338051319122,-0.364490300416946,0.475040107965469,-0.821826696395874,-0.314543843269348,0.401826709508896,-0.838956475257874,-0.36699777841568,0.54703563451767,-0.796646595001221,-0.257111638784409,0.367639034986496,-0.866433560848236,-0.33783820271492,0.328190892934799,-0.876693606376648,-0.351708889007568,0.392302751541138,-0.859094619750977,-0.328717321157455,0.526951491832733,-0.820434093475342,-0.221833854913712,0.391541242599487,-0.860568284988403,-0.325757384300232,0.38820344209671,-0.86119532585144,-0.328086704015732,0.391376316547394,-0.86088490486145,-0.325118213891983,0.335500985383987,-0.868739604949951,-0.364322185516357,0.3879314661026,-0.861496031284332,-0.327618300914764,0.382249355316162,-0.867669224739075,-0.317860692739487,
- 0.328806638717651,-0.876036524772644,-0.352769106626511,0.325350821018219,-0.876447319984436,-0.354946672916412,-0.1675915569067,0.866850912570953,-0.469555735588074,-0.0861715972423553,0.879716455936432,-0.467625290155411,-0.210735410451889,0.857536792755127,-0.469277381896973,-0.284039407968521,0.841360926628113,-0.459818810224533,-0.167144194245338,0.863000571727753,-0.476752460002899,-0.210677921772003,0.856446743011475,-0.471289545297623,-0.283113598823547,0.845852851867676,-0.452083557844162,-0.330197989940643,0.838240921497345,-0.433960199356079,-0.210261151194572,0.853195309638977,-0.477334320545197,-0.210960894823074,0.861984610557556,-0.460953652858734,-0.246349394321442,0.859037578105927,-0.448738843202591,-0.281128764152527,0.854914784431458,-0.435990005731583,-0.332421004772186,0.843562960624695,-0.42177939414978,-0.281793653964996,0.851960897445679,-0.441310673952103,-0.244361072778702,0.856463253498077,-0.454706937074661,-0.321211308240891,0.816647350788116,-0.479489803314209,-0.246305406093597,0.858980894088745,-0.448871493339539,-0.399682849645615,0.762836933135986,-0.508265137672424,-0.210247457027435,0.848740816116333,-0.485216557979584,-0.167596876621246,0.86198902130127,-0.478420555591583,-0.232774645090103,0.840982675552368,-0.488430202007294,-0.375791847705841,0.74862802028656,-0.546202003955841,-0.232161700725555,0.840141773223877,-0.490166187286377,-0.227505415678024,0.842591345310211,-0.488140434026718,-0.231972068548203,0.839881181716919,-0.49070218205452,-0.176645770668983,0.867836177349091,-0.464388608932495,-0.227254658937454,0.842435359954834,-0.488526314496994,-0.25776943564415,0.860167920589447,-0.440074950456619,-0.205820828676224,0.885043323040009,-0.417535722255707,-0.210306853055954,0.883042752742767,-0.419531345367432,-0.163585618138313,0.620634853839874,0.766845703125,-0.0890327170491219,0.620978176593781,0.778754949569702,-0.210262715816498,0.618591666221619,0.75705623626709,-0.28683990240097,0.598317980766296,0.748156726360321,-0.16364786028862,0.619826972484589,0.767485439777374,
- -0.210466593503952,0.612875044345856,0.76163512468338,-0.285867691040039,0.591034114360809,0.754293262958527,-0.332602202892303,0.571905672550201,0.749866425991058,-0.210601359605789,0.618135809898376,0.757334291934967,-0.209344759583473,0.640894651412964,0.738531529903412,-0.231685504317284,0.63327294588089,0.738435685634613,-0.288616687059402,0.612022399902344,0.736294090747833,-0.330372422933578,0.582456469535828,0.742696821689606,-0.287075906991959,0.600108027458191,0.746631026268005,-0.237490087747574,0.618429124355316,0.749095439910889,-0.307629406452179,0.673611044883728,0.672021090984344,-0.225327640771866,0.649026274681091,0.726630866527557,-0.365768790245056,0.687167823314667,0.627704977989197,-0.207826778292656,0.670136749744415,0.712548077106476,-0.137188106775284,0.663150489330292,0.735806286334991,-0.216217786073685,0.670723378658295,0.709492802619934,-0.401701420545578,0.635644674301147,0.659235835075378,-0.24677748978138,0.59371030330658,0.765904009342194,-0.256948351860046,0.597048819065094,0.759941101074219,-0.246302619576454,0.595004200935364,0.765052318572998,-0.199032425880432,0.576781570911407,0.792280972003937,-0.255961656570435,0.598521769046783,0.759114861488342,-0.227669909596443,0.639204740524292,0.734563589096069,-0.169566094875336,0.619481384754181,0.766479074954987,-0.171673685312271,0.620243489742279,0.7653928399086,-0.0147760901600122,0.657473921775818,0.753332495689392,-0.101022012531757,0.654569447040558,0.749221861362457,-0.0363198705017567,0.657208681106567,0.752833127975464,-0.140130057930946,0.651621282100677,0.745488703250885,-0.0147760901600122,0.657473921775818,0.753332495689392,-0.0363198705017567,0.657208681106567,0.752833127975464,-0.136226877570152,0.653133511543274,0.744888544082642,-0.0160674676299095,0.690847516059875,0.722821891307831,-0.140119776129723,0.651719570159912,0.745404720306396,-0.139421209692955,0.658313035964966,0.739719986915588,-0.0376194044947624,0.633296489715576,0.772994458675385,-0.221412226557732,0.672853767871857,0.705864310264587,-0.136973679065704,0.654589176177979,0.743472516536713,
- -0.139953032135963,0.653307020664215,0.74404513835907,-0.324163645505905,0.558327853679657,0.763667464256287,-0.338113009929657,0.645194053649902,0.685130894184113,-0.138070821762085,0.670647382736206,0.728813171386719,-0.224926263093948,0.663211286067963,0.713834047317505,-0.21533277630806,0.97148996591568,0.0991928353905678,-0.216651037335396,0.971111476421356,0.100024834275246,-0.119907714426517,0.992010474205017,0.0392120145261288,-0.20591077208519,0.97060763835907,0.124585285782814,-0.103127151727676,0.99138331413269,0.0807713866233826,-0.17217580974102,0.978876352310181,0.110257685184479,-0.357849478721619,0.932406902313232,0.0506087392568588,-0.225374057888985,0.971640288829803,0.0715671181678772,-0.177979066967964,0.980892539024353,0.0785712823271751,-0.100115790963173,0.991062581539154,0.0881585776805878,-0.0762084797024727,0.99390321969986,0.079678900539875,-0.17160639166832,0.978627800941467,0.11330871284008,-0.351758420467377,0.935876131057739,0.0200465079396963,-0.178655490279198,0.981063902378082,0.0748052671551704,-0.112899027764797,0.989108085632324,0.0944409146904945,-0.176226437091827,0.98038512468338,0.0882568135857582,-0.074149452149868,0.993434488773346,0.0871206074953079,-0.112754873931408,0.98974871635437,0.0876578316092491,-0.0113868555054069,0.841811299324036,0.53965175151825,-0.10713816434145,0.837328374385834,0.536099433898926,-0.0363450683653355,0.841390013694763,0.539204895496368,-0.143501207232475,0.833577871322632,0.533437252044678,-0.0113868555054069,0.841811299324036,0.53965175151825,-0.0363450683653355,0.841390013694763,0.539204895496368,-0.131681516766548,0.836660861968994,0.531656444072723,-0.012582691386342,0.865964949131012,0.499946445226669,-0.14358776807785,0.832956552505493,0.534383714199066,-0.142718717455864,0.839086413383484,0.524943172931671,-0.0376444682478905,0.824056267738342,0.565255880355835,-0.223275691270828,0.843303561210632,0.488863259553909,-0.13255587220192,0.837831377983093,0.529591917991638,-0.14345346391201,0.833919405937195,0.532916009426117,-0.325385332107544,0.748779833316803,0.577454030513763,
- -0.339764058589935,0.81045013666153,0.477211654186249,-0.141511276364326,0.847227394580841,0.512035369873047,-0.226944223046303,0.835882484912872,0.499796956777573,-0.215230256319046,0.96052086353302,-0.176282793283463,-0.22088485956192,0.959942102432251,-0.17239810526371,-0.117441430687904,0.96336817741394,-0.241100236773491,-0.205748945474625,0.966780781745911,-0.151665389537811,-0.10066095739603,0.97449254989624,-0.200578510761261,-0.17109027504921,0.970797419548035,-0.168168485164642,-0.356906116008759,0.90978866815567,-0.211902275681496,-0.225315719842911,0.952948570251465,-0.202785670757294,-0.176819741725922,0.964010179042816,-0.198542788624763,-0.0976115390658379,0.976287066936493,-0.193223997950554,-0.0739732310175896,0.976578652858734,-0.202045068144798,-0.170502424240112,0.971428513526917,-0.165093138813972,-0.350816965103149,0.904612362384796,-0.242082446813583,-0.177467867732048,0.963167011737823,-0.202026307582855,-0.116137847304344,0.975557923316956,-0.186544373631477,-0.175089120864868,0.966184973716736,-0.189289599657059,-0.0717079788446426,0.978367984294891,-0.194046780467033,-0.116007268428802,0.974461019039154,-0.19227097928524,-0.0110337138175964,0.982167422771454,0.187684431672096,-0.105220213532448,0.976880073547363,0.18610206246376,-0.0320480056107044,0.981746256351471,0.187476366758347,-0.143676623702049,0.972184598445892,0.184971064329147,-0.0110337138175964,0.982167422771454,0.187684431672096,-0.0320480056107044,0.981746256351471,0.187476366758347,-0.13444621860981,0.973854184150696,0.18311819434166,-0.0122395949438214,0.989827930927277,0.141742452979088,-0.143770918250084,0.971939980983734,0.186178788542748,-0.142888069152832,0.97415018081665,0.174969658255577,-0.0334117338061333,0.974990844726563,0.219719588756561,-0.224074587225914,0.964517831802368,0.139627769589424,-0.135249748826027,0.974143505096436,0.180974990129471,-0.143637344241142,0.972285747528076,0.184468865394592,-0.321947008371353,0.911462903022766,0.25609678030014,-0.335944890975952,0.931142032146454,0.141830012202263,-0.141683578491211,0.976894319057465,0.160010531544685,
- -0.227860108017921,0.961628615856171,0.152808234095573,-0.212359800934792,0.836054503917694,-0.505881726741791,-0.209900423884392,0.835665106773376,-0.507548630237579,-0.106866344809532,0.813058078289032,-0.572290241718292,-0.216398730874062,0.829645693302155,-0.514645099639893,-0.103823691606522,0.817665636539459,-0.566254079341888,-0.178975313901901,0.827057957649231,-0.532863020896912,-0.364972114562988,0.791709899902344,-0.489888668060303,-0.209193244576454,0.840969920158386,-0.499006867408752,-0.171309053897858,0.8493772149086,-0.499210953712463,-0.0981824770569801,0.826036334037781,-0.55499929189682,-0.0819660201668739,0.823959827423096,-0.560688614845276,-0.177135527133942,0.832624137401581,-0.524747669696808,-0.362257689237595,0.784480273723602,-0.503348827362061,-0.167932733893394,0.858509182929993,-0.484520971775055,-0.119467303156853,0.870889663696289,-0.476737678050995,-0.173620522022247,0.842885732650757,-0.509312808513641,-0.0675720497965813,0.852534592151642,-0.518284499645233,-0.118853218853474,0.849095582962036,-0.51469475030899,-0.0173994451761246,0.997272431850433,-0.0717282369732857,-0.102364391088486,0.992147266864777,-0.0718700587749481,-0.0364152975380421,0.996753752231598,-0.0718051120638847,-0.137660458683968,0.987875461578369,-0.0717750787734985,-0.0173994451761246,0.997272431850433,-0.0717282369732857,-0.0364152975380421,0.996753752231598,-0.0718051120638847,-0.136727273464203,0.987905442714691,-0.0731344223022461,-0.0183771308511496,0.993090391159058,-0.115904964506626,-0.137584283947945,0.987809896469116,-0.0728175640106201,-0.13708221912384,0.987353384494781,-0.0796354115009308,-0.0377119742333889,0.998464345932007,-0.0405801981687546,-0.221978306770325,0.968509376049042,-0.112761668860912,-0.137453898787498,0.98765617609024,-0.0751117765903473,-0.137414768338203,0.987660229206085,-0.0751297548413277,-0.323881715536118,0.946000397205353,0.0135608147829771,-0.337893158197403,0.935543775558472,-0.102888286113739,-0.135785683989525,0.985994517803192,-0.0968362390995026,-0.225552871823311,0.969082713127136,-0.100024223327637,
- -0.210452362895012,0.676837027072906,-0.705408751964569,-0.212049439549446,0.677359998226166,-0.7044278383255,-0.112846814095974,0.640618503093719,-0.759521901607513,-0.214292168617249,0.668679594993591,-0.712001740932465,-0.110180333256722,0.645841419696808,-0.755479454994202,-0.17384372651577,0.660790026187897,-0.730160892009735,-0.363780647516251,0.639151275157928,-0.67760556936264,-0.206771314144135,0.684526801109314,-0.699048399925232,-0.165595278143883,0.693172156810761,-0.701491713523865,-0.10466867685318,0.656499207019806,-0.747029602527618,-0.0837362259626389,0.652080297470093,-0.753511548042297,-0.171931713819504,0.668530762195587,-0.723537266254425,-0.361112743616104,0.628800272941589,-0.688627541065216,-0.162010997533798,0.706460237503052,-0.688960433006287,-0.117409765720367,0.719172596931458,-0.684840023517609,-0.168061569333076,0.683760583400726,-0.710089266300201,-0.0696413069963455,0.690152943134308,-0.720304846763611,-0.116684541106224,0.687950909137726,-0.716315746307373,-0.0132061522454023,0.907753884792328,-0.419295340776443,-0.102554731070995,0.902822732925415,-0.417604774236679,-0.0329614877700806,0.907290279865265,-0.419211000204086,-0.140435889363289,0.898517549037933,-0.415865391492844,-0.0132061522454023,0.907753884792328,-0.419295340776443,-0.0329614877700806,0.907290279865265,-0.419211000204086,-0.135884657502174,0.898404896259308,-0.417617201805115,-0.0145002854987979,0.887601435184479,-0.460384041070938,-0.140436232089996,0.898519515991211,-0.415861040353775,-0.139777600765228,0.894810080528259,-0.42400124669075,-0.0342881418764591,0.920446515083313,-0.38936173915863,-0.220070883631706,0.867038249969482,-0.447004973888397,-0.136640161275864,0.897444188594818,-0.419432252645493,-0.140286296606064,0.89767587184906,-0.417729437351227,-0.323147833347321,0.889951109886169,-0.321811527013779,-0.336860090494156,0.839299082756042,-0.426734745502472,-0.138549312949181,0.887870192527771,-0.438737660646439,-0.223450168967247,0.871815860271454,-0.435898095369339,0.349774926900864,0.888898551464081,0.295832514762878,
- 0.533910572528839,0.815898299217224,0.221922814846039,0.377139091491699,0.880875945091248,0.286048531532288,0.350979655981064,0.886700987815857,0.300956130027771,0.377905756235123,0.878203451633453,0.293165385723114,0.18543840944767,0.921317517757416,0.341740608215332,-0.13823227584362,0.846368491649628,0.514346361160278,0.345993429422379,0.895484268665314,0.279993623495102,0.190794140100479,0.909080982208252,0.370363742113113,0.378825604915619,0.874819219112396,0.301964432001114,0.271062016487122,0.907056570053101,0.322139531373978,0.184161260724068,0.924042165279388,0.335008472204208,-0.160607427358627,0.870831489562988,0.464605033397675,0.188998311758041,0.913334429264069,0.360693544149399,-0.0132401287555695,0.90376079082489,0.42783311009407,0.184397950768471,0.923542737960815,0.336253464221954,0.271034717559814,0.907182812690735,0.321806490421295,-0.0221574567258358,0.932936728000641,0.359358012676239,-0.348546177148819,0.937281131744385,0.00443084537982941,-0.522513389587402,0.844205439090729,-0.119569852948189,-0.53960520029068,0.831414818763733,-0.132573053240776,-0.484949320554733,0.870418429374695,0.0848288685083389,-0.558632075786591,0.828442454338074,0.0401671975851059,-0.411437153816223,0.902658402919769,0.126203209161758,-0.584839284420013,0.728318750858307,0.357092320919037,-0.508529186248779,0.786489725112915,0.350474089384079,-0.46403706073761,0.815705835819244,0.345388978719711,-0.505338490009308,0.820124983787537,0.26838031411171,-0.480268478393555,0.83444082736969,0.270279169082642,-0.476602494716644,0.836457252502441,0.270535528659821,-0.506541967391968,0.812074780464172,0.289740711450577,-0.425350487232208,0.855493366718292,0.295310169458389,-0.479034870862961,0.827826499938965,0.29193976521492,-0.429639905691147,0.887938976287842,0.164237931370735,-0.374276608228683,0.905092000961304,0.201805680990219,-0.490263938903809,0.863211333751678,0.120446860790253,-0.425339877605438,0.85532420873642,0.295814841985703,-0.505864918231964,0.81686943769455,0.277173340320587,-0.397354662418365,0.8667032122612,0.301553845405579,
- -0.405764102935791,0.847153127193451,0.343055754899979,-0.486492604017258,0.822527527809143,0.294573336839676,-0.378387629985809,0.853496193885803,0.358283579349518,-0.335776150226593,0.88617479801178,0.319294273853302,-0.424963712692261,0.85012423992157,0.310957551002502,-0.399878144264221,0.861237287521362,0.313636362552643,-0.356367647647858,0.867453694343567,0.347168922424316,-0.401869356632233,0.856693387031555,0.323384344577789,-0.370820343494415,0.864318668842316,0.339772701263428,-0.392590343952179,0.876218914985657,0.279487252235413,-0.340403318405151,0.889411568641663,0.305078148841858,-0.332695126533508,0.891070783138275,0.308717966079712,-0.346177488565445,0.902453422546387,-0.256396144628525,-0.519099533557892,0.780231237411499,-0.348962843418121,-0.540614783763886,0.760264575481415,-0.360185235738754,-0.487299293279648,0.857918739318848,-0.162834018468857,-0.555092036724091,0.809444785118103,-0.191499054431915,-0.409071236848831,0.903174698352814,-0.130139127373695,-0.581581354141235,0.801627576351166,0.138406246900558,-0.511614859104156,0.851118505001068,0.117675870656967,-0.462485998868942,0.880592167377472,0.103267043828964,-0.508277416229248,0.860712170600891,0.0287871789187193,-0.480535238981247,0.876578629016876,0.0263772420585155,-0.475237250328064,0.879475891590118,0.025918785482645,-0.509518325328827,0.858914911746979,0.0515399351716042,-0.424302726984024,0.904430210590363,0.04442023858428,-0.479339361190796,0.876259207725525,0.0490282326936722,-0.427448809146881,0.899622023105621,-0.0892620757222176,-0.374902546405792,0.925147771835327,-0.0595788136124611,-0.492657244205475,0.860896527767181,-0.127067074179649,-0.424284517765045,0.904404282569885,0.0451164953410625,-0.508789420127869,0.860069453716278,0.0376006104052067,-0.39747753739357,0.916389524936676,0.0473478958010674,-0.405648410320282,0.909311413764954,0.0927488431334496,-0.484506160020828,0.873117387294769,0.0540352463722229,-0.381360322237015,0.918539524078369,0.104161106050015,-0.337579667568207,0.939445614814758,0.0590077042579651,
- -0.423812389373779,0.903693079948425,0.0610063448548317,-0.399931341409683,0.914546370506287,0.0604979991912842,-0.360069453716278,0.928635120391846,0.0893697589635849,-0.401863008737564,0.912933111190796,0.0711283162236214,-0.373826920986176,0.923738718032837,0.0834282040596008,-0.392826467752457,0.919314980506897,0.0233963504433632,-0.344207435846329,0.93791389465332,0.0428823679685593,-0.334282159805298,0.941310703754425,0.0467926748096943,-0.346600592136383,0.741959810256958,-0.573902189731598,-0.521295428276062,0.592106819152832,-0.614541053771973,-0.541292726993561,0.570931315422058,-0.617284059524536,-0.486147403717041,0.736638188362122,-0.470132887363434,-0.557593405246735,0.677887856960297,-0.479121804237366,-0.4093157351017,0.789776027202606,-0.456852674484253,-0.584343194961548,0.793877124786377,-0.168233096599579,-0.509347140789032,0.83489316701889,-0.208611637353897,-0.464708060026169,0.854875922203064,-0.23072424530983,-0.506312549114227,0.810638964176178,-0.294129610061646,-0.481195986270905,0.823136925697327,-0.301489919424057,-0.47747814655304,0.824911653995514,-0.302548140287399,-0.507475733757019,0.817488849163055,-0.272361040115356,-0.425775229930878,0.855416715145111,-0.29491975903511,-0.4800626039505,0.831236839294434,-0.280330508947372,-0.427617818117142,0.801729142665863,-0.417580395936966,-0.375414222478867,0.836263537406921,-0.399659156799316,-0.491392701864243,0.75289511680603,-0.437815189361572,-0.425764262676239,0.855562627315521,-0.294512212276459,-0.506812214851379,0.813445210456848,-0.285391479730606,-0.397933602333069,0.868008196353912,-0.297002732753754,-0.406036555767059,0.878313839435577,-0.252386838197708,-0.484403759241104,0.83059287071228,-0.27471536397934,-0.383841514587402,0.890069544315338,-0.245849281549454,-0.337417930364609,0.893993437290192,-0.294830590486526,-0.425299882888794,0.860859930515289,-0.279356598854065,-0.400382667779922,0.8712038397789,-0.284073293209076,-0.358455777168274,0.895984470844269,-0.262147545814514,-0.402273297309875,0.8736252784729,-0.273779302835464,
- -0.376407891511917,0.887156665325165,-0.266964644193649,-0.393284380435944,0.861777365207672,-0.320417493581772,-0.342666774988174,0.887259423732758,-0.308788299560547,-0.334134548902512,0.891210794448853,-0.306753367185593,-0.349368393421173,0.566932618618011,-0.74600887298584,-0.521688759326935,0.413326323032379,-0.746325850486755,-0.539126694202423,0.394895732402802,-0.7439084649086,-0.486149400472641,0.590716004371643,-0.643982470035553,-0.558049917221069,0.531232237815857,-0.63747364282608,-0.412254989147186,0.643534362316132,-0.644910335540771,-0.584788918495178,0.723563849925995,-0.366711467504501,-0.508665919303894,0.753212332725525,-0.417049437761307,-0.46368196606636,0.766873121261597,-0.443739414215088,-0.5058314204216,0.707644879817963,-0.493328839540482,-0.479374349117279,0.71833211183548,-0.504181861877441,-0.476332366466522,0.719506919384003,-0.505388259887695,-0.506942391395569,0.71989768743515,-0.4740851521492,-0.425680607557297,0.750540256500244,-0.505455672740936,-0.47825825214386,0.731608867645264,-0.485816329717636,-0.430378407239914,0.665023148059845,-0.610343158245087,-0.377389818429947,0.703768312931061,-0.601902842521667,-0.491311758756638,0.614826560020447,-0.616928815841675,-0.425668209791183,0.75083315372467,-0.505030870437622,-0.506317794322968,0.712701618671417,-0.485488206148148,-0.400710612535477,0.761080145835876,-0.510086357593536,-0.408868968486786,0.781923830509186,-0.470554172992706,-0.487086474895477,0.72982931137085,-0.47968327999115,-0.381825029850006,0.797832548618317,-0.466554164886475,-0.336339682340622,0.788147568702698,-0.515460014343262,-0.42522668838501,0.75984650850296,-0.491747468709946,-0.403289437294006,0.767611265182495,-0.498127102851868,-0.35962101817131,0.797585189342499,-0.484283685684204,-0.405005782842636,0.771986126899719,-0.489905834197998,-0.374318987131119,0.78959459066391,-0.486236155033112,-0.395769238471985,0.74869304895401,-0.531813383102417,-0.343579173088074,0.777281880378723,-0.52705442905426,-0.333217442035675,0.782555103302002,-0.52590274810791,
- -0.40761810541153,0.374966621398926,-0.832614898681641,-0.552377462387085,0.262110650539398,-0.791313648223877,-0.602377891540527,0.21669539809227,-0.768234312534332,-0.497753232717514,0.406498581171036,-0.766159653663635,-0.569011569023132,0.356414258480072,-0.741076827049255,-0.444167941808701,0.440340399742126,-0.780266046524048,-0.579688966274261,0.456333428621292,-0.675070703029633,-0.503805637359619,0.463131010532379,-0.729170441627502,-0.483333706855774,0.464237421751022,-0.742207705974579,-0.505908787250519,0.489889234304428,-0.709975361824036,-0.481229573488235,0.495664924383163,-0.723003745079041,-0.478429824113846,0.496289223432541,-0.724432170391083,-0.506800830364227,0.503867924213409,-0.699478507041931,-0.423299729824066,0.521845996379852,-0.740603923797607,-0.48036140203476,0.510162949562073,-0.713433146476746,-0.47075167298317,0.490018337965012,-0.733672201633453,-0.399743288755417,0.541694283485413,-0.73944079875946,-0.503848075866699,0.463614135980606,-0.72883403301239,-0.422639667987823,0.539648950099945,-0.728117227554321,-0.507128596305847,0.509682297706604,-0.69501405954361,-0.400901108980179,0.546375036239624,-0.735358834266663,-0.390757203102112,0.506678521633148,-0.768495738506317,-0.456474930047989,0.463080704212189,-0.759728193283081,-0.356140673160553,0.527776300907135,-0.771113514900208,-0.330694288015366,0.537396192550659,-0.775787770748138,-0.423387795686722,0.518938601016998,-0.742593765258789,-0.395560324192047,0.525122046470642,-0.753511011600494,-0.333921819925308,0.518350124359131,-0.787279784679413,-0.385896980762482,0.488570898771286,-0.782548367977142,-0.347305715084076,0.510925471782684,-0.786342144012451,-0.38987523317337,0.503353357315063,-0.771124243736267,-0.339733183383942,0.530630052089691,-0.776539206504822,-0.330062031745911,0.53562468290329,-0.777280807495117,0.600903868675232,-0.39770233631134,-0.693359553813934,0.368061929941177,-0.449741929769516,-0.813795208930969,0.506816804409027,-0.423429846763611,-0.750895380973816,0.597198903560638,-0.361751049757004,-0.715883910655975,
- 0.379424750804901,-0.480847954750061,-0.790456891059875,0.368928551673889,-0.485491245985031,-0.792584419250488,0.506892561912537,-0.422921568155289,-0.751130759716034,0.367080926895142,-0.424348920583725,-0.827755749225616,0.256099373102188,-0.41834831237793,-0.871434390544891,0.368971794843674,-0.488420516252518,-0.790762484073639,0.380165755748749,-0.483162194490433,-0.788687825202942,0.182234615087509,-0.561899304389954,-0.806882739067078,0.252576619386673,-0.440128117799759,-0.861679971218109,0.367491483688354,-0.434075772762299,-0.822513461112976,0.172678112983704,-0.440537005662918,-0.88097071647644,-0.129794180393219,0.61444479227066,-0.778210163116455,-0.00907525420188904,0.702012062072754,-0.712107241153717,0.126296192407608,0.777832210063934,-0.615651190280914,-0.16474886238575,0.666699767112732,-0.726890087127686,-0.195806056261063,0.657245337963104,-0.727797091007233,-0.00958073232322931,0.702891528606415,-0.711232602596283,0.161874458193779,0.733838140964508,-0.659756302833557,-0.00627708528190851,0.697121381759644,-0.716925740242004,0.195789277553558,0.738399863243103,-0.645315587520599,-0.00825940072536469,0.700589954853058,-0.713516294956207,-0.200810268521309,0.682835698127747,-0.702431976795197,0.0450152270495892,0.700869858264923,-0.711867332458496,-0.00881496071815491,0.701558709144592,-0.712557137012482,0.0446784161031246,0.70448362827301,-0.708312571048737,0.208360388875008,0.700670540332794,-0.682383239269257,-0.325204193592072,0.904672503471375,-0.275336146354675,-0.195324659347534,0.962631702423096,-0.18758587539196,-0.042154960334301,0.995721340179443,-0.0822318568825722,-0.344198971986771,0.912496984004974,-0.22108006477356,-0.375407159328461,0.899656295776367,-0.222908034920692,-0.189395070075989,0.959439337253571,-0.20881974697113,-0.020940450951457,0.991025269031525,-0.132024377584457,-0.198402136564255,0.964118003845215,-0.176389068365097,0.0231568217277527,0.992463707923889,-0.120330989360809,-0.197707071900368,0.96379280090332,-0.178928881883621,-0.377914428710938,0.913087725639343,-0.153138890862465,
- -0.144375875592232,0.972039759159088,-0.185187324881554,-0.200362652540207,0.965002119541168,-0.169191241264343,-0.143765702843666,0.974575340747833,-0.171855553984642,0.030213575810194,0.983847439289093,-0.176441416144371,0.0651781409978867,-0.680212199687958,-0.73011177778244,0.0625439584255219,-0.680461287498474,-0.730110049247742,-0.13438805937767,-0.685514092445374,-0.715548932552338,0.178186938166618,-0.648093938827515,-0.74042135477066,0.0620931573212147,-0.678262412548065,-0.732191681861877,0.0649723038077354,-0.677635133266449,-0.732522547245026,-0.0684437155723572,-0.676482558250427,-0.733271360397339,0.0647991299629211,-0.675468564033508,-0.734536111354828,-0.135102599859238,-0.672448992729187,-0.727708458900452,0.0672577023506165,-0.706346035003662,-0.70466423034668,0.174002826213837,-0.6708624958992,-0.720878958702087,0.186122894287109,-0.666231155395508,-0.722145736217499,-0.0687880590558052,-0.678788125514984,-0.731105268001556,0.167389124631882,-0.702713906764984,-0.691501259803772,0.0665487423539162,-0.69741553068161,-0.713570535182953,0.210148066282272,-0.648857295513153,-0.7313152551651,0.183471128344536,-0.660190165042877,-0.728345632553101,0.175453424453735,-0.663474380970001,-0.727336168289185,0.190566390752792,-0.678558349609375,-0.709396243095398,0.173274338245392,-0.674515902996063,-0.71763801574707,-0.056954950094223,-0.598369061946869,-0.799193680286407,0.211478292942047,-0.681876659393311,-0.700229406356812,0.173344895243645,-0.674163699150085,-0.717951834201813,0.190979719161987,-0.677875757217407,-0.709937512874603,-0.174513056874275,0.74217814207077,0.647083401679993,-0.255786895751953,0.693739473819733,0.673274636268616,-0.356736034154892,0.621565282344818,0.697421014308929,-0.17261765897274,0.740034222602844,0.65004026889801,-0.0555005446076393,0.788059711456299,0.613091766834259,-0.255817890167236,0.697083353996277,0.669800043106079,-0.397314637899399,0.717378199100494,0.572284638881683,-0.25512632727623,0.762460172176361,0.594613313674927,-0.311319470405579,0.74693351984024,0.587512254714966,
- -0.255585104227066,0.744424164295197,0.616854012012482,-0.061114139854908,0.80096822977066,0.595579445362091,-0.180491283535957,0.770329892635345,0.611567556858063,-0.25467449426651,0.774864137172699,0.578555583953857,-0.17903944849968,0.779528260231018,0.600233793258667,-0.303903788328171,0.76912522315979,0.562217772006989,-0.0564534738659859,0.790274500846863,0.610146999359131,-0.0243856515735388,0.795383393764496,0.605615973472595,-0.181754395365715,0.761979222297668,0.621573030948639,-0.12484023720026,0.741850078105927,0.658842504024506,-0.301910996437073,0.774761319160461,0.555513024330139,-0.18262891471386,0.755994319915771,0.628585159778595,-0.18110953271389,0.766284465789795,0.616447389125824,-0.0180628038942814,0.767059445381165,0.641321659088135,-0.117069497704506,0.769095003604889,0.628321349620819,-0.20646008849144,0.574001967906952,0.792398869991302,-0.271142095327377,0.548543691635132,0.79093724489212,-0.396821320056915,0.489518225193024,0.776469469070435,-0.207337751984596,0.577054500579834,0.78994882106781,-0.0723196268081665,0.611615657806396,0.787842690944672,-0.268521577119827,0.557248592376709,0.785728991031647,-0.396348357200623,0.584951519966125,0.7076296210289,-0.257324546575546,0.592741191387177,0.763178825378418,-0.312140822410584,0.591296792030334,0.743596792221069,-0.274089127779007,0.538560330867767,0.796760857105255,-0.0719521194696426,0.560307025909424,0.825153887271881,-0.201743990182877,0.549130618572235,0.811020910739899,-0.19283252954483,0.570771515369415,0.798145055770874,-0.309091955423355,0.596718966960907,0.740532755851746,-0.259277790784836,0.586739242076874,0.767145395278931,-0.0719950944185257,0.564805686473846,0.822077512741089,-0.0361257791519165,0.564707100391388,0.824500381946564,-0.197585090994835,0.559322595596313,0.805058002471924,-0.117186814546585,0.597993552684784,0.79288774728775,-0.254378616809845,0.685381710529327,0.682307481765747,-0.166096895933151,0.631470084190369,0.757401704788208,-0.180381625890732,0.599801242351532,0.77955174446106,-0.0361570864915848,0.564452111721039,0.824673533439636,
- -0.123221933841705,0.587402701377869,0.79985898733139,0.0550128892064095,-0.613575220108032,-0.787717580795288,0.0405981577932835,-0.61576634645462,-0.786882221698761,-0.141243040561676,-0.632016479969025,-0.761974811553955,0.166181474924088,-0.581064522266388,-0.796710669994354,0.0423273332417011,-0.621474206447601,-0.78229033946991,0.0557750500738621,-0.617613852024078,-0.784501314163208,-0.0747352540493011,-0.621235251426697,-0.780052185058594,0.0547354705631733,-0.61210310459137,-0.788881361484528,-0.142869502305985,-0.621816635131836,-0.770021021366119,0.0621641576290131,-0.651118040084839,-0.756426513195038,0.170671448111534,-0.606073260307312,-0.776882588863373,0.177832096815109,-0.602757692337036,-0.777855336666107,-0.0744688510894775,-0.614514410495758,-0.785382986068726,0.168978601694107,-0.626735210418701,-0.760689973831177,0.0573235712945461,-0.625792264938354,-0.777880549430847,0.209023088216782,-0.581134378910065,-0.786506295204163,0.17543613910675,-0.598317921161652,-0.781817018985748,0.171105280518532,-0.600461602210999,-0.781133055686951,0.179414823651314,-0.601998627185822,-0.778079688549042,0.17111599445343,-0.600321173667908,-0.781238615512848,-0.0709077045321465,-0.531731247901917,-0.843939542770386,0.212904393672943,-0.607185006141663,-0.765505135059357,0.171122461557388,-0.600236356258392,-0.781302392482758,0.179533675312996,-0.601728916168213,-0.778260827064514,-0.197066619992256,0.860397160053253,0.469980269670486,-0.259699553251266,0.834022521972656,0.486788004636765,-0.383871465921402,0.767288267612457,0.513723015785217,-0.196379169821739,0.85957258939743,0.471773445606232,-0.0679019764065742,0.894797265529633,0.441279143095016,-0.259191393852234,0.835968554019928,0.483711123466492,-0.390678882598877,0.7950040102005,0.464045882225037,-0.260638564825058,0.830360651016235,0.492512822151184,-0.328104674816132,0.814160645008087,0.479050874710083,-0.258399605751038,0.838952243328094,0.478945583105087,-0.0638001263141632,0.8785320520401,0.473403632640839,-0.185080289840698,0.858043670654297,0.479068160057068,
- -0.258115530014038,0.840008556842804,0.477244168519974,-0.191597044467926,0.84244042634964,0.503572165966034,-0.316415429115295,0.834197521209717,0.451659142971039,-0.0635051280260086,0.877330958843231,0.475665301084518,-0.0314441844820976,0.879757165908813,0.474382549524307,-0.184273585677147,0.859896302223206,0.476048022508621,-0.13234905898571,0.842039883136749,0.522926867008209,-0.292678505182266,0.869859516620636,0.397094011306763,-0.186278164386749,0.855261325836182,0.483558118343353,-0.182752668857574,0.863343238830566,0.470361560583115,-0.0310658756643534,0.858282327651978,0.512236833572388,-0.118838682770729,0.863816976547241,0.489589273929596,-0.120139695703983,0.199355661869049,0.972534775733948,-0.106822207570076,0.198640629649162,0.974233567714691,0.084147997200489,0.18460077047348,0.979204595088959,-0.296248614788055,0.175775900483131,0.938796877861023,-0.106814794242382,0.197943866252899,0.974376142024994,-0.120363116264343,0.196619257330894,0.973064064979553,0.0183477643877268,0.193148955702782,0.980997920036316,-0.119285449385643,0.209699347615242,0.970462441444397,0.084074579179287,0.183911457657814,0.979340612888336,-0.121461667120457,0.182971075177193,0.975586354732513,-0.242526262998581,0.159697905182838,0.95691043138504,-0.294007033109665,0.14880134165287,0.944149434566498,0.0103325843811035,0.163036599755287,0.986565947532654,-0.220600366592407,0.236740171909332,0.946197390556335,-0.119612447917461,0.205761596560478,0.971264660358429,-0.462731242179871,0.143127739429474,0.874868094921112,-0.294524788856506,0.154808700084686,0.943021476268768,-0.243186265230179,0.157272174954414,0.957144618034363,-0.183649376034737,0.224323064088821,0.957053959369659,-0.217820763587952,0.246053814888,0.944463729858398,-0.00441395305097103,0.107310831546783,0.994215726852417,-0.414066016674042,0.359916180372238,0.836068093776703,-0.21799224615097,0.245481818914413,0.944572925567627,-0.183468490839005,0.224594131112099,0.957024931907654,-0.118011228740215,-0.0321295447647572,-0.992492318153381,-0.000630777387414128,0.0902057811617851,-0.995923042297363,
- 0.122119881212711,0.215342789888382,-0.968872666358948,-0.146961316466331,0.018798865377903,-0.988963603973389,-0.179277509450912,0.00817984435707331,-0.9837646484375,0.00976130366325378,0.0691962242126465,-0.997555375099182,0.175176694989204,0.13561050593853,-0.975152850151062,0.0138232447206974,0.0609708800911903,-0.998043835163116,0.21008637547493,0.151522859930992,-0.965869903564453,0.0146975573152304,0.0591994374990463,-0.998137950897217,-0.185916274785995,0.0386452525854111,-0.981805324554443,0.0552598088979721,0.063068151473999,-0.996478259563446,0.0107709616422653,0.0671523809432983,-0.997684597969055,0.0538204647600651,0.0740638896822929,-0.995800137519836,0.225648328661919,0.100388370454311,-0.969022810459137,0.67257833480835,-0.534488916397095,-0.511820316314697,0.455445110797882,-0.604593873023987,-0.653479993343353,0.58636200428009,-0.569020986557007,-0.57653683423996,0.673696756362915,-0.482847571372986,-0.559455990791321,0.457120031118393,-0.61380261182785,-0.643651783466339,0.454168915748596,-0.615181088447571,-0.644424498081207,0.585596740245819,-0.571617066860199,-0.574743747711182,0.457568228244781,-0.584725141525269,-0.66987156867981,0.358210861682892,-0.584904193878174,-0.727717041969299,0.453956544399261,-0.616862773895264,-0.642964780330658,0.4573894739151,-0.615216314792633,-0.642108857631683,0.27259561419487,-0.687345921993256,-0.673236429691315,0.353321552276611,-0.601004302501678,-0.71690845489502,0.456963241100311,-0.590728223323822,-0.664999902248383,0.27778348326683,-0.603359222412109,-0.747525274753571,0.505480408668518,-0.681935787200928,-0.528633296489716,0.451539516448975,-0.70488578081131,-0.547035813331604,0.569392442703247,-0.650077104568481,-0.503182053565979,0.503334105014801,-0.674062728881836,-0.540642499923706,0.243788748979568,-0.80476051568985,-0.541227877140045,0.451566189527512,-0.706738114356995,-0.544618487358093,0.565384864807129,-0.668110013008118,-0.483703404664993,0.451415359973907,-0.698451340198517,-0.555328726768494,0.325734406709671,-0.715743601322174,-0.617744505405426,
- 0.451516568660736,-0.703484058380127,-0.548856139183044,0.235400095582008,-0.780074894428253,-0.579715549945831,0.151275396347046,-0.798037886619568,-0.583310663700104,0.451381683349609,-0.697038173675537,-0.557128727436066,0.154754474759102,-0.741415917873383,-0.652957439422607,0.32289907336235,-0.725802659988403,-0.607409834861755,0.603304028511047,-0.673355340957642,-0.427336990833282,0.561927855014801,-0.698257565498352,-0.443478852510452,0.660610795021057,-0.634077727794647,-0.401919066905975,0.596838057041168,-0.652658879756927,-0.466712832450867,0.347584128379822,-0.810717821121216,-0.471085906028748,0.561342835426331,-0.681111574172974,-0.470086395740509,0.648847460746765,-0.679412484169006,-0.342630684375763,0.561805129051209,-0.72093665599823,-0.40574061870575,0.43095475435257,-0.762126982212067,-0.483156800270081,0.561632752418518,-0.687742412090302,-0.459977209568024,0.341733485460281,-0.795554995536804,-0.500310361385345,0.26613375544548,-0.81996738910675,-0.50678026676178,0.561731457710266,-0.723170042037964,-0.401849329471588,0.266531944274902,-0.814163327217102,-0.515847861766815,0.425931811332703,-0.777408242225647,-0.46283745765686,-0.147503837943077,0.758082151412964,-0.635259091854095,-0.050079919397831,0.84587550163269,-0.531024158000946,0.0581293851137161,0.914718985557556,-0.399887681007385,-0.216937273740768,0.803004264831543,-0.555087804794312,-0.232787162065506,0.795610010623932,-0.559298515319824,-0.0678048655390739,0.858762085437775,-0.507868349552155,0.0924260094761848,0.896382391452789,-0.433539211750031,-0.0568028762936592,0.850860118865967,-0.522312641143799,0.127194806933403,0.902916491031647,-0.410564541816711,-0.0676290914416313,0.858638286590576,-0.508100926876068,-0.244881153106689,0.812333464622498,-0.529289603233337,-0.00970855355262756,0.867388844490051,-0.497536391019821,-0.0635753348469734,0.855761885643005,-0.513448894023895,-0.00904486328363419,0.866210579872131,-0.499597191810608,0.149164631962776,0.880396902561188,-0.450167953968048,0.690075755119324,-0.289369851350784,-0.663370609283447,
- 0.646673381328583,-0.296239852905273,-0.702890872955322,0.749591529369354,-0.277413636445999,-0.600961089134216,0.689256608486176,-0.251560688018799,-0.679442822933197,0.458500504493713,-0.350022852420807,-0.816860675811768,0.649204671382904,-0.272139519453049,-0.710262894630432,0.73711895942688,-0.326765298843384,-0.591506719589233,0.645199954509735,-0.308641880750656,-0.698897182941437,0.545105695724487,-0.28546354174614,-0.788270473480225,0.646884202957153,-0.294380366802216,-0.703477799892426,0.457602977752686,-0.333646446466446,-0.824184119701386,0.376606434583664,-0.344363301992416,-0.85998922586441,0.648053705692291,-0.28361439704895,-0.70681631565094,0.389636367559433,-0.258054316043854,-0.884076654911041,0.547713577747345,-0.276370018720627,-0.789702177047729,0.787838459014893,-0.614037752151489,0.0476269796490669,0.59192818403244,-0.80595338344574,0.0077592208981514,0.713182508945465,-0.70027619600296,0.0313687846064568,0.788456857204437,-0.61481112241745,0.0185215603560209,0.598695158958435,-0.798527002334595,0.0626003220677376,0.587426662445068,-0.806677877902985,0.0648141503334045,0.714995265007019,-0.698769986629486,0.0224115923047066,0.593949913978577,-0.80383175611496,-0.0328341424465179,0.507803797721863,-0.858816862106323,-0.067593976855278,0.586614191532135,-0.806563556194305,0.0730687603354454,0.599457085132599,-0.797328889369965,0.0701285153627396,0.419543266296387,-0.901401281356812,0.107047572731972,0.498951494693756,-0.8662109375,-0.0269471444189548,0.592482268810272,-0.805581867694855,-0.00161667913198471,0.425893753767014,-0.903634488582611,-0.0453795492649078,0.612663984298706,0.0591587722301483,-0.788126409053802,0.565823793411255,0.0511434376239777,-0.822938561439514,0.670714259147644,0.0693316906690598,-0.738468408584595,0.606154322624207,0.0808842852711678,-0.791223526000977,0.374969065189362,-0.0408566780388355,-0.926136612892151,0.564835131168365,0.0574892908334732,-0.823198854923248,0.671091198921204,0.026487173512578,-0.740901529788971,0.56682562828064,0.0445516295731068,-0.822632253170013,
- 0.437275230884552,0.0639397129416466,-0.897051930427551,0.564885914325714,0.0571669191122055,-0.82318639755249,0.36163255572319,-0.00116936129052192,-0.932320058345795,0.287348330020905,-0.0211283098906279,-0.957593083381653,0.56690376996994,0.0440301485359669,-0.822606444358826,0.280199527740479,0.0440919250249863,-0.958928644657135,0.436633735895157,0.044623576104641,-0.898531973361969,0.680314004421234,-0.727148115634918,0.0918077826499939,0.448028296232224,-0.891632497310638,0.065285362303257,0.58034873008728,-0.81037575006485,0.0805391445755959,0.680350840091705,-0.731425583362579,0.0462536886334419,0.463445395231247,-0.879861950874329,0.105173408985138,0.44535169005394,-0.888647735118866,0.109394110739231,0.580724716186523,-0.810287177562714,0.0786991566419601,0.449364125728607,-0.892673015594482,0.034738902002573,0.353714793920517,-0.935342907905579,0.00443475740030408,0.445087641477585,-0.888318359851837,0.113082811236382,0.46391037106514,-0.879263401031494,0.108088478446007,0.273634850978851,-0.949410498142242,0.154089957475662,0.34863755106926,-0.936844408512115,0.0278285853564739,0.448886513710022,-0.892361640930176,0.0468140281736851,0.275841742753983,-0.961096346378326,0.0143239730969071,-0.155561745166779,0.553113162517548,0.818453669548035,-0.358874022960663,0.587693274021149,0.72513872385025,-0.208869814872742,0.564776539802551,0.798373937606812,-0.153601676225662,0.558503985404968,0.815156280994415,-0.208938449621201,0.566376924514771,0.79722136259079,-0.0345062725245953,0.535429358482361,0.84387481212616,-0.365542471408844,0.5140181183815,0.775992333889008,-0.285620093345642,0.536084949970245,0.79437655210495,-0.208359330892563,0.553353428840637,0.80646538734436,-0.208559036254883,0.557727158069611,0.80339503288269,-0.107478559017181,0.559784173965454,0.821638643741608,-0.0324450433254242,0.557530105113983,0.829522430896759,-0.208476379513741,0.555903017520905,0.804679751396179,-0.278576493263245,0.516444563865662,0.809740841388702,-0.115526877343655,0.601702511310577,0.790321230888367,-0.0336538702249527,0.5446457862854,0.837990701198578,
- -0.104443952441216,0.543978989124298,0.832573235034943,-0.00589031912386417,0.544159114360809,0.83896142244339,-0.262037128210068,0.470965951681137,0.842334628105164,-0.100353755056858,0.545958638191223,0.831780195236206,-0.104499734938145,0.544269502162933,0.832376420497894,-0.105993621051311,0.552050113677979,0.827046573162079,-0.103013813495636,0.552834868431091,0.826898992061615,-0.00784099940210581,0.575019061565399,0.818102538585663,0.728266596794128,-0.555882751941681,0.400777012109756,0.514841854572296,-0.707856714725494,0.483608067035675,0.63984352350235,-0.628994822502136,0.441549360752106,0.72316712141037,-0.598693490028381,0.34437695145607,0.517950415611267,-0.698107898235321,0.494340717792511,0.514790654182434,-0.699134886264801,0.496186465024948,0.639562487602234,-0.627991676330566,0.443380504846573,0.514644682407379,-0.722586929798126,0.461529076099396,0.417052328586578,-0.779438138008118,0.467486321926117,0.514772474765778,-0.697806656360626,0.49807146191597,0.518402338027954,-0.696668326854706,0.495895564556122,0.339438199996948,-0.735234618186951,0.586695671081543,0.414113759994507,-0.770127713680267,0.485194027423859,0.514744102954865,-0.718100726604462,0.468369424343109,0.333670735359192,-0.803038358688354,0.493754237890244,0.605312287807465,-0.622780025005341,0.495723813772202,0.561564445495605,-0.649639070034027,0.512459397315979,0.666104912757874,-0.58023476600647,0.468648940324783,0.604064583778381,-0.632457673549652,0.484874546527863,0.352192133665085,-0.700554430484772,0.620632171630859,0.561530113220215,-0.649161994457245,0.513100981712341,0.655060112476349,-0.552061438560486,0.515872597694397,0.560526907444,-0.63676780462265,0.52946811914444,0.430413782596588,-0.727488696575165,0.534325957298279,0.559994161128998,-0.63106107711792,0.536813199520111,0.35089522600174,-0.708245992660522,0.612584829330444,0.260159134864807,-0.728474617004395,0.633752346038818,0.560790240764618,-0.639778316020966,0.525545477867126,0.269333928823471,-0.786733627319336,0.555436253547668,0.426793485879898,-0.719963729381561,0.547265589237213,
- -0.163188129663467,-0.653828740119934,-0.738835334777832,-0.0753419250249863,-0.55377733707428,-0.829249203205109,0.0313254296779633,-0.416566014289856,-0.908565640449524,-0.240383148193359,-0.571639657020569,-0.784502387046814,-0.258093923330307,-0.576768219470978,-0.775065124034882,-0.100251823663712,-0.523778855800629,-0.845934629440308,0.0713212788105011,-0.453116357326508,-0.888593792915344,-0.0811988413333893,-0.546828091144562,-0.833298146724701,0.0975317060947418,-0.43523833155632,-0.895016849040985,-0.0955461412668228,-0.529534816741943,-0.84289014339447,-0.269054383039474,-0.553203701972961,-0.788400530815125,-0.0369151048362255,-0.517676770687103,-0.854779541492462,-0.0898607447743416,-0.536433696746826,-0.839144706726074,-0.0353797152638435,-0.521783947944641,-0.852343678474426,0.119015641510487,-0.470952540636063,-0.874093234539032,0.680103600025177,-0.674002885818481,-0.288408368825912,0.635505378246307,-0.708042025566101,-0.307911336421967,0.731794476509094,-0.628753125667572,-0.262957185506821,0.676163911819458,-0.657703399658203,-0.332007199525833,0.42897954583168,-0.836839020252228,-0.340113610029221,0.636604130268097,-0.694271266460419,-0.335742056369781,0.723452806472778,-0.652419567108154,-0.225753962993622,0.635037004947662,-0.712199449539185,-0.299165666103363,0.514198064804077,-0.768387079238892,-0.381027191877365,0.636262118816376,-0.699540913105011,-0.325289219617844,0.424960553646088,-0.825240731239319,-0.372003138065338,0.359923601150513,-0.85161566734314,-0.381058722734451,0.636109232902527,-0.701518774032593,-0.321304261684418,0.366384267807007,-0.816147804260254,-0.446839511394501,0.515395998954773,-0.765368640422821,-0.385457932949066,0.0456526465713978,0.0756009817123413,0.996092617511749,-0.00200504390522838,0.01846026442945,0.99982762336731,-0.115793623030186,-0.118441052734852,0.986186385154724,0.0632299035787582,0.0593632236123085,0.996231913566589,0.187483221292496,0.175629794597626,0.966438949108124,0.0057804468087852,0.00560452928766608,0.999967575073242,-0.148056417703629,-0.0800856053829193,0.98573100566864,
- -1.94949079741491e-005,0.0151819661259651,0.999884724617004,-0.165774255990982,-0.0915200859308243,0.981907784938812,0.0101449666544795,-0.00160385016351938,0.999947309494019,0.235426217317581,0.0972605794668198,0.967013478279114,0.0524698421359062,0.016941836103797,0.998478829860687,-0.176923647522926,-0.066625751554966,0.981966912746429,0.01449956279248,-0.00879691168665886,0.999856173992157,0.0571846589446068,0.00417068600654602,0.998354911804199,0.600744664669037,-0.575698375701904,-0.554686665534973,0.372653663158417,-0.658101141452789,-0.654241740703583,0.506423532962799,-0.6165452003479,-0.602832734584808,0.596981644630432,-0.547561287879944,-0.586335837841034,0.382284969091415,-0.68118554353714,-0.624375283718109,0.373347043991089,-0.685522973537445,-0.625036180019379,0.506509065628052,-0.616053879261017,-0.603263020515442,0.371811091899872,-0.638251304626465,-0.674085915088654,0.257310628890991,-0.6451575756073,-0.719418525695801,0.373377591371536,-0.68774551153183,-0.622571587562561,0.38299423456192,-0.682871699333191,-0.622094571590424,0.185088858008385,-0.764102697372437,-0.617971837520599,0.253666460514069,-0.663275122642517,-0.704073488712311,0.3721604347229,-0.645730972290039,-0.666729509830475,0.175111144781113,-0.66905689239502,-0.722287356853485,-0.129012957215309,0.362739413976669,-0.922917008399963,-0.00566071271896362,0.467736333608627,-0.883849918842316,0.133843049407005,0.570687294006348,-0.810186505317688,-0.165158957242966,0.428959369659424,-0.888097167015076,-0.193204984068871,0.420497864484787,-0.886483788490295,-0.00637897755950689,0.469284772872925,-0.883023858070374,0.160741746425629,0.529437303543091,-0.832981586456299,-0.0100550353527069,0.477183818817139,-0.878745973110199,0.193249121308327,0.537493824958801,-0.820825934410095,-0.0121796578168869,0.481729686260223,-0.876235246658325,-0.20067510008812,0.467899024486542,-0.860697448253632,0.0467854961752892,0.482505768537521,-0.874642372131348,-0.0129245966672897,0.483320087194443,-0.875348329544067,0.0464097149670124,0.48782804608345,-0.871705174446106,
- 0.205995798110962,0.491299331188202,-0.846280515193939,-0.324642181396484,0.792070090770721,-0.516945362091064,-0.194235175848007,0.872403740882874,-0.448535859584808,-0.0390024743974209,0.933974981307983,-0.355203539133072,-0.359549283981323,0.832308351993561,-0.421885281801224,-0.372592151165009,0.826972246170044,-0.421060830354691,-0.201209455728531,0.882431149482727,-0.425241023302078,-0.0171477776020765,0.915123224258423,-0.402809351682663,-0.197236150503159,0.87676876783371,-0.438605129718781,0.0207885354757309,0.91909646987915,-0.393483847379684,-0.2008957862854,0.881989181041718,-0.426305115222931,-0.373372822999954,0.84217357635498,-0.389019787311554,-0.143666118383408,0.888704478740692,-0.435389965772629,-0.199138879776001,0.879497170448303,-0.432236552238464,-0.143759205937386,0.8877312541008,-0.437340319156647,0.0279961489140987,0.895427465438843,-0.444326519966125,-0.0667059943079948,0.856994092464447,0.510990619659424,-0.0607249774038792,0.857535362243652,0.51082855463028,0.136731222271919,0.857959508895874,0.495187133550644,-0.17823837697506,0.829155147075653,0.52984219789505,-0.0603194758296013,0.856146454811096,0.513200581073761,-0.0664849057793617,0.855055570602417,0.514256536960602,0.0690115243196487,0.854384183883667,0.515038967132568,-0.0663303732872009,0.853698194026947,0.516526520252228,0.137568548321724,0.848711788654327,0.510649681091309,-0.0687550827860832,0.874766051769257,0.479642778635025,-0.17120935022831,0.846485197544098,0.504133105278015,-0.186246201395988,0.841428399085999,0.50725781917572,0.0693642869591713,0.855940520763397,0.51240086555481,-0.164956763386726,0.868077993392944,0.46821990609169,-0.06809401512146,0.869072496891022,0.489975720643997,-0.208888992667198,0.827842950820923,0.520616412162781,-0.183567181229591,0.837367415428162,0.514896929264069,-0.17261178791523,0.841274499893188,0.512310802936554,-0.187190353870392,0.849486291408539,0.493287861347198,-0.170810908079147,0.847939968109131,0.501818299293518,0.0568834729492664,0.797885000705719,0.600119829177856,-0.210340365767479,0.850343227386475,0.482362419366837,
- -0.170869112014771,0.847728192806244,0.50215619802475,-0.187557980418205,0.84903347492218,0.493927478790283,-0.196180373430252,0.903986275196075,0.37989753484726,-0.253243803977966,0.877638220787048,0.406963020563126,-0.365719765424728,0.811280131340027,0.456150829792023,-0.197976395487785,0.905030250549316,0.376464903354645,-0.0675028190016747,0.944318890571594,0.322033077478409,-0.253190636634827,0.881963014602661,0.397537350654602,-0.393587946891785,0.850341260433197,0.349296897649765,-0.252677321434021,0.898929715156555,0.357881993055344,-0.310283720493317,0.881720542907715,0.35537713766098,-0.253271520137787,0.872418463230133,0.418018877506256,-0.0514050796627998,0.923063576221466,0.381196975708008,-0.181144952774048,0.895379245281219,0.406795293092728,-0.252802789211273,0.896040380001068,0.364969283342361,-0.178794771432877,0.905957818031311,0.383761465549469,-0.308731406927109,0.884793043136597,0.349036008119583,-0.0526739656925201,0.924869000911713,0.376620173454285,-0.0292807966470718,0.927595019340515,0.372438013553619,-0.180020108819008,0.900580883026123,0.395660072565079,-0.108994200825691,0.930476129055023,0.349763423204422,-0.280741184949875,0.928878366947174,0.241597533226013,-0.170995384454727,0.934331595897675,0.312706112861633,-0.175188660621643,0.920226633548737,0.349988460540771,-0.0294634886085987,0.928075850009918,0.371223926544189,-0.111238703131676,0.926173269748688,0.360318064689636,-0.195470795035362,0.740803480148315,0.642651915550232,-0.2891925573349,0.702570140361786,0.65020215511322,-0.401730895042419,0.644833624362946,0.650232315063477,-0.197395771741867,0.745762348175049,0.636296629905701,-0.0674709379673004,0.777556002140045,0.625183463096619,-0.28484445810318,0.716047883033752,0.637290477752686,-0.403916478157043,0.723466992378235,0.55986350774765,-0.274623066186905,0.745564043521881,0.607220351696014,-0.342308193445206,0.735927581787109,0.584153890609741,-0.267792642116547,0.76376485824585,0.587324738502502,-0.06754120439291,0.791717052459717,0.607142746448517,-0.185616880655289,0.779279768466949,0.598556041717529,
- -0.181125342845917,0.787466883659363,0.589143037796021,-0.300970196723938,0.796480894088745,0.524437963962555,-0.2551009953022,0.794747471809387,0.550726771354675,-0.067487008869648,0.780276238918304,0.621783435344696,-0.0333936102688313,0.780750632286072,0.623949944972992,-0.190083190798759,0.770941615104675,0.607879400253296,-0.148616313934326,0.741819083690643,0.653924942016602,-0.296522349119186,0.802362143993378,0.517966747283936,-0.19395524263382,0.763550639152527,0.615931689739227,-0.18816801905632,0.77454149723053,0.603886008262634,-0.0381574854254723,0.75134015083313,0.658811092376709,-0.131004720926285,0.768007874488831,0.626898467540741,-0.051240261644125,0.807509362697601,0.587624967098236,-0.042644664645195,0.80861896276474,0.586785197257996,0.139938458800316,0.817607760429382,0.558511137962341,-0.158411175012589,0.775238454341888,0.611482858657837,-0.0423678644001484,0.807925581932068,0.587759494781494,-0.0508537441492081,0.805953919887543,0.589789986610413,0.0731661096215248,0.813946902751923,0.576313436031342,-0.0513577684760094,0.807981312274933,0.586965560913086,0.141258597373962,0.811796247959137,0.566597640514374,-0.056425116956234,0.827946364879608,0.557961523532867,-0.165580287575722,0.789898097515106,0.590460956096649,-0.168379694223404,0.788759768009186,0.591190576553345,0.0732326656579971,0.815128266811371,0.574632823467255,-0.162140309810638,0.820115685462952,0.548744738101959,-0.0553033724427223,0.823593080043793,0.564478397369385,-0.206696331501007,0.766353845596313,0.608258426189423,-0.165567800402641,0.78498512506485,0.596980452537537,-0.166100934147835,0.784755527973175,0.597134232521057,-0.169154480099678,0.808348298072815,0.563879311084747,-0.163617596030235,0.807864964008331,0.566201031208038,0.070135623216629,0.761959075927734,0.643816351890564,-0.215273410081863,0.809861898422241,0.545693218708038,-0.163694500923157,0.807199418544769,0.567127287387848,-0.169579952955246,0.807628989219666,0.564781546592712,-0.196996837854385,0.957464814186096,0.210840135812759,-0.259404331445694,0.936924815177917,0.234267488121986,
- -0.38253253698349,0.880992650985718,0.278425931930542,-0.198277726769447,0.958004236221313,0.207156777381897,-0.0610688328742981,0.984351575374603,0.165295600891113,-0.257906049489975,0.939761757850647,0.224348679184914,-0.39474019408226,0.904230117797852,0.162935897707939,-0.251392513513565,0.950437426567078,0.182949423789978,-0.310606241226196,0.934235751628876,0.175292253494263,-0.261116802692413,0.933486223220825,0.245808020234108,-0.0535590201616287,0.972042620182037,0.228614553809166,-0.191580057144165,0.951381742954254,0.241184294223785,-0.252579241991043,0.948678016662598,0.190299317240715,-0.185511186718941,0.958752632141113,0.215357914566994,-0.308031290769577,0.936348855495453,0.168426871299744,-0.0541563034057617,0.973156452178955,0.223682373762131,-0.0306929741054773,0.97450190782547,0.222270086407661,-0.188822761178017,0.9548419713974,0.229396462440491,-0.109934911131859,0.97630786895752,0.186379864811897,-0.265151798725128,0.962392449378967,0.0591208785772324,-0.167376667261124,0.975817203521729,0.140590965747833,-0.177247181534767,0.967405080795288,0.180861443281174,-0.0307026244699955,0.974808275699615,0.220921233296394,-0.114367924630642,0.973363757133484,0.198703706264496,0.118688099086285,-0.456869661808014,-0.88157993555069,0.109454371035099,-0.45671147108078,-0.882855892181396,-0.0777594819664955,-0.445086181163788,-0.892105221748352,0.29503071308136,-0.410839051008224,-0.862651824951172,0.109347574412823,-0.441895425319672,-0.890377223491669,0.120101377367973,-0.440547347068787,-0.889659285545349,-0.0177762489765882,-0.458014845848084,-0.888766765594482,0.117436990141869,-0.470829159021378,-0.874373257160187,-0.0782664567232132,-0.449502617120743,-0.889843761920929,0.118248283863068,-0.461827576160431,-0.879052102565765,0.233440160751343,-0.436194241046906,-0.869045734405518,0.295813262462616,-0.419371962547302,-0.858266770839691,-0.0209139361977577,-0.468478888273239,-0.883227109909058,0.204787641763687,-0.526139974594116,-0.825371861457825,0.114075750112534,-0.506290256977081,-0.854784727096558,
- 0.461072981357574,-0.382254838943481,-0.80080771446228,0.295143485069275,-0.412052810192108,-0.862034142017365,0.238485559821129,-0.418963074684143,-0.876124739646912,0.178288713097572,-0.480039834976196,-0.858938276767731,0.21408873796463,-0.498310923576355,-0.840150117874146,0.00476885586977005,-0.381077647209167,-0.924530744552612,0.413399636745453,-0.578983962535858,-0.702764868736267,0.214229732751846,-0.497879505157471,-0.840369939804077,0.178029835224152,-0.480400562286377,-0.858790278434753,0.490010738372803,-0.85408079624176,0.174457803368568,0.441467493772507,-0.879258930683136,0.178914025425911,0.55669778585434,-0.813716411590576,0.167192310094833,0.483695477247238,-0.864921629428864,0.133974894881248,0.211176514625549,-0.949055433273315,0.233876824378967,0.441332548856735,-0.884464263916016,0.151488557457924,0.548216700553894,-0.807749092578888,0.216794699430466,0.441392809152603,-0.876044034957886,0.194214463233948,0.306107223033905,-0.937857449054718,0.163467928767204,0.441469490528107,-0.879832625389099,0.176066040992737,0.20753039419651,-0.954331994056702,0.214898973703384,0.132586166262627,-0.965474963188171,0.224230319261551,0.441452145576477,-0.881555140018463,0.167273819446564,0.136953413486481,-0.98126220703125,0.13552950322628,0.307864308357239,-0.938730478286743,0.154934421181679,0.674969434738159,-0.654598534107208,-0.340465933084488,0.453293234109879,-0.763844013214111,-0.459421038627625,0.583301961421967,-0.709043025970459,-0.396253705024719,0.676190197467804,-0.617754578590393,-0.401430279016495,0.457060426473618,-0.769268989562988,-0.446453839540482,0.451987385749817,-0.77190774679184,-0.447063565254211,0.582708716392517,-0.710580825805664,-0.394367158412933,0.455371260643005,-0.749076664447784,-0.481166541576386,0.355744183063507,-0.765197038650513,-0.53658139705658,0.451777756214142,-0.773132979869843,-0.445154130458832,0.457331001758575,-0.770197033882141,-0.444572597742081,0.26678740978241,-0.849954009056091,-0.454315692186356,0.350777268409729,-0.777836799621582,-0.521464586257935,
- 0.454768776893616,-0.753652572631836,-0.474545389413834,0.27201634645462,-0.788799047470093,-0.551183462142944,0.502992808818817,-0.803832352161407,-0.317571699619293,0.453955233097076,-0.82853490114212,-0.327802717685699,0.571635007858276,-0.763347148895264,-0.300889730453491,0.501033127307892,-0.799843311309814,-0.330479115247726,0.236413821578026,-0.926295101642609,-0.293404161930084,0.453974604606628,-0.829372882843018,-0.325649559497833,0.567658424377441,-0.775461614131927,-0.276447415351868,0.453846335411072,-0.824938774108887,-0.336896926164627,0.323187291622162,-0.860328435897827,-0.394188970327377,0.453931152820587,-0.827609300613403,-0.33016574382782,0.22771081328392,-0.912977814674377,-0.338554888963699,0.151299685239792,-0.929258346557617,-0.337027341127396,0.453809946775436,-0.823964595794678,-0.339321494102478,0.154774487018585,-0.894317209720612,-0.419811278581619,0.320294231176376,-0.86725777387619,-0.381150305271149,0.600976467132568,-0.767628133296967,-0.222653418779373,0.563177287578583,-0.793553352355957,-0.230443820357323,0.663292825222015,-0.718861520290375,-0.208040207624435,0.59461498260498,-0.758923590183258,-0.265458047389984,0.343248873949051,-0.911906838417053,-0.224958494305611,0.562678515911102,-0.784321188926697,-0.261214762926102,0.651606857776642,-0.746004641056061,-0.137424886226654,0.562909185886383,-0.804968059062958,-0.187508895993233,0.432043433189392,-0.866382241249084,-0.250440061092377,0.562940180301666,-0.78798520565033,-0.249354794621468,0.337223708629608,-0.905361890792847,-0.258069813251495,0.26561763882637,-0.929070115089417,-0.257441103458405,0.562824189662933,-0.805989921092987,-0.183328047394753,0.266034245491028,-0.925993204116821,-0.267884969711304,0.426935166120529,-0.875367879867554,-0.226842731237412,-0.144061893224716,0.554620921611786,-0.819537580013275,-0.0524537116289139,0.661192774772644,-0.748380124568939,0.0597570389509201,0.767858028411865,-0.637826919555664,-0.211558610200882,0.618605256080627,-0.756683945655823,-0.228794813156128,0.609679520130157,-0.758909642696381,
- -0.0714184045791626,0.681205868721008,-0.728600025177002,0.0947057157754898,0.74035656452179,-0.665509581565857,-0.0600015819072723,0.669241428375244,-0.740618467330933,0.130095705389977,0.753184795379639,-0.644816100597382,-0.0717264711856842,0.681525230407715,-0.728271126747131,-0.240518018603325,0.633572220802307,-0.735348522663116,-0.00660776998847723,0.694315314292908,-0.719640672206879,-0.0674629956483841,0.67708945274353,-0.732801973819733,-0.00601328816264868,0.692779421806335,-0.721124529838562,0.152361780405045,0.719866812229156,-0.677183747291565,0.691064357757568,-0.462777405977249,-0.555218040943146,0.650211572647095,-0.479504883289337,-0.589321732521057,0.74972677230835,-0.434221804141998,-0.499360948801041,0.690259158611298,-0.430610746145248,-0.581477999687195,0.45876556634903,-0.56416255235672,-0.686480045318604,0.652820825576782,-0.457273632287979,-0.603925406932831,0.737011551856995,-0.479090809822083,-0.476745277643204,0.648602902889252,-0.491413772106171,-0.581228733062744,0.542359709739685,-0.494358032941818,-0.679305672645569,0.650477707386017,-0.477420628070831,-0.590718448162079,0.457890868186951,-0.55052787065506,-0.69803649187088,0.379329949617386,-0.570308148860931,-0.728599667549133,0.651491224765778,-0.469137161970139,-0.59621262550354,0.392129480838776,-0.494864016771317,-0.775463759899139,0.544826328754425,-0.48641249537468,-0.683057188987732,0.788664996623993,-0.575170278549194,0.217225044965744,0.593754291534424,-0.77028501033783,0.23263031244278,0.715387344360352,-0.661294877529144,0.225632786750793,0.789291560649872,-0.584186613559723,0.18906307220459,0.599493086338043,-0.748705983161926,0.282926499843597,0.589158415794373,-0.755339384078979,0.286975413560867,0.717078328132629,-0.662285804748535,0.217200830578804,0.595868289470673,-0.779418706893921,0.193513333797455,0.512543857097626,-0.840405285358429,0.176118791103363,0.588330984115601,-0.752958536148071,0.294822096824646,0.600258708000183,-0.745460212230682,0.289790749549866,0.419106632471085,-0.835745930671692,0.354793399572372,
- 0.503759741783142,-0.836242437362671,0.216621488332748,0.594324231147766,-0.772490501403809,0.223690196871758,0.425733059644699,-0.880397975444794,0.208927735686302,0.611604452133179,-0.163823857903481,-0.774016678333282,0.56631475687027,-0.180661886930466,-0.80414479970932,0.671920001506805,-0.139253318309784,-0.727414608001709,0.60526704788208,-0.144085064530373,-0.782873749732971,0.374475508928299,-0.29825958609581,-0.877957463264465,0.565309882164001,-0.174436926841736,-0.806223630905151,0.672309339046478,-0.181482195854187,-0.717679917812347,0.567320287227631,-0.18704329431057,-0.80197411775589,0.437417536973953,-0.189236909151077,-0.879121899604797,0.565364599227905,-0.174772545695305,-0.80611252784729,0.361149221658707,-0.261695623397827,-0.895034432411194,0.288605868816376,-0.287321805953979,-0.913319706916809,0.567389607429504,-0.187489286065102,-0.801820874214172,0.281788647174835,-0.225454419851303,-0.932612180709839,0.436819672584534,-0.208191692829132,-0.875125586986542,0.679483294487,-0.673314929008484,0.291461050510406,0.450462222099304,-0.836598217487335,0.311748623847961,0.582221746444702,-0.754222452640533,0.303589165210724,0.679417431354523,-0.690100908279419,0.249304622411728,0.464585214853287,-0.81495875120163,0.346414297819138,0.447782605886459,-0.821736335754395,0.352477192878723,0.582504987716675,-0.754550695419312,0.302227139472961,0.451818943023682,-0.84595799446106,0.283222407102585,0.352488368749619,-0.89739316701889,0.265400409698486,0.44752037525177,-0.820423603057861,0.35585230588913,0.465037524700165,-0.813590586185455,0.349013686180115,0.27229169011116,-0.868786871433258,0.413602083921433,0.347313225269318,-0.892292976379395,0.288421183824539,0.451336234807968,-0.842383861541748,0.294423162937164,0.27412286400795,-0.919370412826538,0.282160878181458,0.602600693702698,-0.739493668079376,-0.300035953521729,0.371962159872055,-0.854513943195343,-0.362560480833054,0.505044877529144,-0.79728490114212,-0.330555081367493,0.598906934261322,-0.724791049957275,-0.340570956468582,0.378473818302155,-0.866417765617371,-0.325695842504501,
- 0.372767746448517,-0.869128942489624,-0.325052440166473,0.505166053771973,-0.796868741512299,-0.331372082233429,0.371038049459457,-0.843443512916565,-0.388501882553101,0.262897700071335,-0.865700840950012,-0.425965785980225,0.372807323932648,-0.870276033878326,-0.321922838687897,0.379214942455292,-0.867161929607391,-0.322841167449951,0.180544391274452,-0.940335392951965,-0.288397461175919,0.259371608495712,-0.876505672931671,-0.405542135238647,0.371419697999954,-0.847679436206818,-0.378796845674515,0.170927628874779,-0.890248119831085,-0.422187447547913,0.430566370487213,-0.896586716175079,-0.103657178580761,0.377747803926468,-0.919734060764313,-0.106751032173634,0.493981301784515,-0.863778114318848,-0.0993468090891838,0.428219974040985,-0.895856976509094,-0.118608519434929,0.151882335543633,-0.987313866615295,-0.0462935008108616,0.377762317657471,-0.919878125190735,-0.105450414121151,0.48500457406044,-0.873287200927734,-0.0462604239583015,0.377902328968048,-0.921847939491272,-0.085942842066288,0.239521637558937,-0.961806654930115,-0.132504880428314,0.377917796373367,-0.922710776329041,-0.0760455280542374,0.14965333044529,-0.987037420272827,-0.057973500341177,0.0577122233808041,-0.997081220149994,-0.049983337521553,0.37788188457489,-0.921405971050262,-0.0906438380479813,0.0625440627336502,-0.987057089805603,-0.147670939564705,0.236566215753555,-0.964379906654358,-0.118354499340057,-0.32183963060379,0.545360684394836,-0.773951530456543,-0.194182112812996,0.643001198768616,-0.740839242935181,-0.0408426970243454,0.733889520168304,-0.678039908409119,-0.356224566698074,0.616735100746155,-0.701955795288086,-0.376624375581741,0.609461605548859,-0.69764655828476,-0.201173290610313,0.660857856273651,-0.723046481609344,-0.0194822996854782,0.699096500873566,-0.714761853218079,-0.197182476520538,0.650676965713501,-0.733306646347046,0.0170050468295813,0.706063807010651,-0.707944095134735,-0.20084947347641,0.660033047199249,-0.723889529705048,-0.37723046541214,0.636170625686646,-0.673040986061096,-0.141287237405777,0.662949621677399,-0.735211431980133,
- -0.199082911014557,0.655529260635376,-0.728455483913422,-0.141371205449104,0.661461889743805,-0.736533999443054,0.0240813046693802,0.66591089963913,-0.74564254283905,0.0707835406064987,-0.985270798206329,-0.155663534998894,0.0578320920467377,-0.986235618591309,-0.154902637004852,-0.133505180478096,-0.981012225151062,-0.140682220458984,0.175423413515091,-0.967393040657043,-0.182694733142853,0.0574994720518589,-0.985899329185486,-0.15715055167675,0.070518784224987,-0.984582543373108,-0.160076394677162,-0.0694399774074554,-0.984650194644928,-0.160132005810738,0.0704160630702972,-0.984311103820801,-0.161781191825867,-0.134268715977669,-0.978220820426941,-0.158290714025497,0.0728030949831009,-0.98996901512146,-0.121083371341228,0.168361023068428,-0.973920047283173,-0.152100443840027,0.183498471975327,-0.970414519309998,-0.156920254230499,-0.0697794035077095,-0.9850954413414,-0.157218903303146,0.162217080593109,-0.980354785919189,-0.1122060790658,0.0722555741667748,-0.988795340061188,-0.13062509894371,0.209456920623779,-0.961950302124023,-0.175440907478333,0.180850103497505,-0.969497203826904,-0.16543410718441,0.169778376817703,-0.972153306007385,-0.161534562706947,0.186451241374016,-0.972125709056854,-0.142153561115265,0.168280154466629,-0.974017381668091,-0.151564911007881,-0.0572888776659966,-0.963830173015594,-0.260287225246429,0.210922613739967,-0.968681573867798,-0.131025150418282,0.168328449130058,-0.973959267139435,-0.151884689927101,0.186815321445465,-0.971946835517883,-0.142896682024002,-0.176097631454468,0.982956826686859,0.0527787581086159,-0.252801775932312,0.9622922539711,0.100423693656921,-0.35522934794426,0.920129120349884,0.164847061038017,-0.174286484718323,0.983084440231323,0.0562955513596535,-0.0574133321642876,0.998347818851471,-0.0022939161863178,-0.252810746431351,0.962744057178497,0.0959720090031624,-0.396028637886047,0.918203115463257,0.00802392512559891,-0.251727044582367,0.967795431613922,-0.00234275660477579,-0.314259380102158,0.949334979057312,0.00209088646806777,-0.25228488445282,0.967312157154083,0.0256846603006125,
- -0.0631555616855621,0.997702777385712,-0.0245067067444324,-0.183091372251511,0.983070135116577,0.00713203568011522,-0.251225501298904,0.967684745788574,-0.0217251349240541,-0.181490227580071,0.98335474729538,-0.00864400621503592,-0.306745052337646,0.951245605945587,-0.0322379432618618,-0.0585132092237473,0.998265206813812,-0.00653963256627321,-0.0257153436541557,0.99957937002182,-0.0134108476340771,-0.184365838766098,0.982653677463531,0.0200252812355757,-0.124222584068775,0.990343451499939,0.0615517161786556,-0.304540514945984,0.951573610305786,-0.0419853180646896,-0.185069352388382,0.982346892356873,0.0272785145789385,-0.183623269200325,0.982917547225952,0.0124754626303911,-0.0192580539733171,0.999310433864594,0.0317453630268574,-0.116244852542877,0.993009209632874,0.0204893015325069,-0.211320981383324,0.939093172550201,0.271011888980865,-0.270262479782104,0.919873356819153,0.284238040447235,-0.397472947835922,0.863824546337128,0.309552103281021,-0.212280452251434,0.940074741840363,0.266826689243317,-0.072376936674118,0.967293798923492,0.243113920092583,-0.267671257257462,0.923478126525879,0.274846076965332,-0.396479487419128,0.896802544593811,0.196339696645737,-0.256592214107513,0.937391638755798,0.235494196414948,-0.309482157230377,0.924745440483093,0.221510350704193,-0.27326688170433,0.915515422821045,0.295223236083984,-0.07210523635149,0.949907124042511,0.304100751876831,-0.194992274045944,0.933727085590363,0.300219833850861,-0.187023818492889,0.94182014465332,0.279279261827469,-0.306703865528107,0.926888644695282,0.216356679797173,-0.25859010219574,0.935053765773773,0.242498800158501,-0.0721400305628777,0.95155394077301,0.298899501562119,-0.0334453955292702,0.953034818172455,0.301008552312851,-0.190935254096985,0.937927782535553,0.289543241262436,-0.112957708537579,0.95909595489502,0.259567886590958,-0.251866787672043,0.960635602474213,0.117227800190449,-0.161091342568398,0.96391761302948,0.211925610899925,-0.174408763647079,0.953354477882385,0.246367409825325,-0.0335680544376373,0.952681064605713,0.302112519741058,
- -0.11801415681839,0.95572417974472,0.269562482833862,0.143009796738625,-0.242339998483658,0.959593415260315,0.230813086032867,-0.25021356344223,0.94027578830719,0.127001598477364,-0.240704908967018,0.962253451347351,0.373043030500412,-0.150694563984871,0.915494382381439,0.228502601385117,-0.196989968419075,0.953405261039734,0.141861706972122,-0.221703678369522,0.964739739894867,-0.0325275994837284,-0.218020096421242,0.975402057170868,0.142975464463234,-0.241707146167755,0.959758162498474,0.127127289772034,-0.239860221743584,0.962447762489319,0.14254766702652,-0.233905807137489,0.961752653121948,-0.0577954798936844,-0.276176065206528,0.959367692470551,0.376561999320984,-0.169730335474014,0.910709977149963,-0.0350640006363392,-0.251888602972031,0.967120766639709,-0.0622073672711849,-0.251576274633408,0.965836226940155,0.143383845686913,-0.249302759766579,0.957752168178558,0.117303505539894,-0.231091558933258,0.965834677219391,0.379615426063538,-0.186887264251709,0.906071305274963,-0.0623010471463203,-0.251049607992172,0.965967237949371,-0.350479453802109,-0.253042787313461,0.901739120483398,-0.0631042197346687,-0.246526509523392,0.967079341411591,-0.0345295332372189,-0.244729787111282,0.968976378440857,0.112025991082191,-0.207034751772881,0.97189861536026,-0.0596007853746414,-0.266158223152161,0.962085008621216,-0.333786308765411,-0.343197077512741,0.877953588962555,-0.195655822753906,0.967336177825928,-0.161181598901749,-0.261579364538193,0.956369400024414,-0.130130305886269,-0.385198026895523,0.920326590538025,-0.0679817721247673,-0.19691963493824,0.966488242149353,-0.164691016077995,-0.0655353143811226,0.975213885307312,-0.211336255073547,-0.260059118270874,0.955301523208618,-0.140599742531776,-0.39763742685318,0.898660659790039,-0.185185164213181,-0.253437519073486,0.949716866016388,-0.183867871761322,-0.310742139816284,0.932336568832397,-0.184899508953094,-0.263185530900955,0.957399725914001,-0.11882421374321,-0.0580800026655197,0.987145602703094,-0.148897022008896,-0.190201133489609,0.973056137561798,-0.130327180027962,
- -0.254541277885437,0.950744867324829,-0.176898121833801,-0.184202790260315,0.970357894897461,-0.156444981694222,-0.308154851198196,0.931743562221527,-0.192079991102219,-0.0587083958089352,0.986308455467224,-0.154107213020325,-0.0257893800735474,0.987317502498627,-0.156649470329285,-0.187428802251816,0.971889138221741,-0.142484948039055,-0.109833747148514,0.975585699081421,-0.190181612968445,-0.265195369720459,0.915267944335938,-0.303242623806,-0.166037365794182,0.958537101745605,-0.231599241495132,-0.175835847854614,0.96556168794632,-0.191761195659637,-0.0257868263870478,0.987351357936859,-0.15643635392189,-0.114247858524323,0.977429389953613,-0.177705660462379,-0.122377477586269,0.751943290233612,0.647769272327423,-0.106954708695412,0.752498149871826,0.649851679801941,0.0788252204656601,0.744956076145172,0.662440180778503,-0.294912070035934,0.707733750343323,0.641981184482574,-0.106876701116562,0.747023701667786,0.656150162220001,-0.123250998556614,0.744728088378906,0.655888199806213,0.0189017206430435,0.755713105201721,0.65463000535965,-0.121072873473167,0.762341916561127,0.635748565196991,0.0793215036392212,0.748171746730804,0.658746600151062,-0.119436278939247,0.774789869785309,0.620834648609161,-0.228665873408318,0.74942547082901,0.621348083019257,-0.297383278608322,0.728141725063324,0.617553949356079,0.0219643637537956,0.763223171234131,0.645761549472809,-0.208416685461998,0.795612275600433,0.56882655620575,-0.117545448243618,0.788409650325775,0.60381555557251,-0.455596685409546,0.678975105285645,0.575694739818573,-0.297187507152557,0.726457357406616,0.619628429412842,-0.232743635773659,0.73927366733551,0.631905794143677,-0.179122060537338,0.76542466878891,0.618094205856323,-0.217382743954659,0.775990664958954,0.59210079908371,-0.003675676882267,0.697205245494843,0.716862201690674,-0.414304435253143,0.798892676830292,0.436030209064484,-0.217549800872803,0.775612950325012,0.592534124851227,-0.178877040743828,0.765690088272095,0.617836356163025,0.491186708211899,-0.727277994155884,0.479377090930939,0.442820966243744,-0.748984754085541,0.492880821228027,
- 0.556785404682159,-0.693027496337891,0.457933276891708,0.493078351020813,-0.718848288059235,0.490031570196152,0.220750361680985,-0.758011817932129,0.613748610019684,0.442627340555191,-0.731850326061249,0.518146812915802,0.55241584777832,-0.680249512195587,0.481764912605286,0.442802011966705,-0.75355988740921,0.485874563455582,0.307967007160187,-0.821319580078125,0.480198472738266,0.442750990390778,-0.738544762134552,0.508451879024506,0.211539879441261,-0.791999459266663,0.57270210981369,0.132776498794556,-0.799150109291077,0.586284518241882,0.442768335342407,-0.739871025085449,0.506504893302917,0.13716895878315,-0.845505475997925,0.516047656536102,0.299236357212067,-0.801383674144745,0.517920672893524,0.671992540359497,-0.7354456782341,-0.0868663862347603,0.455416679382324,-0.876843869686127,-0.154079541563988,0.58761990070343,-0.800830721855164,-0.115642331540585,0.672378599643707,-0.733534336090088,-0.0991688221693039,0.458376944065094,-0.884633958339691,-0.085518591105938,0.448762476444244,-0.88961660861969,-0.0848212093114853,0.588139593601227,-0.800141930580139,-0.117748975753784,0.457709103822708,-0.869508564472198,-0.185626640915871,0.359314531087875,-0.904382586479187,-0.230185270309448,0.448059380054474,-0.890540242195129,-0.0786188542842865,0.459000736474991,-0.884846210479736,-0.0797841474413872,0.266026318073273,-0.962183237075806,-0.0585969612002373,0.35002589225769,-0.916247606277466,-0.194864630699158,0.455859333276749,-0.875607430934906,-0.15969979763031,0.274730563163757,-0.936631858348846,-0.217356622219086,0.504493832588196,-0.863404452800751,0.00432635843753815,0.456660807132721,-0.889631748199463,0.00402876501902938,0.572272181510925,-0.820050060749054,0.00474158674478531,0.502448558807373,-0.864553451538086,-0.00963921844959259,0.238885596394539,-0.96840500831604,0.0715926587581635,0.456667602062225,-0.889620900154114,0.00543135870248079,0.568223714828491,-0.822246670722961,0.0321295149624348,0.456596612930298,-0.8896604180336,-0.00488127069547772,0.32325291633606,-0.945206522941589,-0.0457424521446228,
- 0.456644147634506,-0.889648735523224,0.00116792460903525,0.230313450098038,-0.972790360450745,0.0251919291913509,0.156643152236938,-0.987123250961304,0.032414123415947,0.456566631793976,-0.889654099941254,-0.00790210161358118,0.159930258989334,-0.985531151294708,-0.0561318695545197,0.32030513882637,-0.946803987026215,-0.031094703823328,0.602088093757629,-0.794524013996124,0.0788767784833908,0.562539875507355,-0.82275265455246,0.0814055055379868,0.662726759910584,-0.745154678821564,0.0744159817695618,0.595705091953278,-0.802418529987335,0.0354982800781727,0.349183857440948,-0.928202033042908,0.128497496247292,0.562051475048065,-0.825613081455231,0.0496107079088688,0.65077805519104,-0.744351148605347,0.149764612317085,0.562269508838654,-0.817409515380859,0.125279381871223,0.431874662637711,-0.89744621515274,0.0898583978414536,0.562306880950928,-0.824613571166992,0.0618341490626335,0.343313187360764,-0.934254169464111,0.0964645519852638,0.265300095081329,-0.958238542079926,0.10674674063921,0.562182486057281,-0.816790282726288,0.129632070660591,0.265763312578201,-0.95926034450531,0.0958615392446518,0.426886260509491,-0.896946549415588,0.115130744874477,-0.177343085408211,0.243302077054977,-0.953600406646729,-0.0783728957176209,0.378690302371979,-0.922199189662933,0.0294134914875031,0.510604321956635,-0.859312534332275,-0.183223351836205,0.250504374504089,-0.950619161128998,-0.208496943116188,0.237006336450577,-0.948871433734894,-0.0378737524151802,0.322730392217636,-0.945732831954956,0.0879659727215767,0.452209860086441,-0.887563228607178,-0.0642944872379303,0.359401047229767,-0.930965721607208,0.122179090976715,0.471193253993988,-0.873526930809021,-0.0322549268603325,0.314853221178055,-0.948592185974121,-0.219061225652695,0.263999670743942,-0.939316987991333,0.00800001621246338,0.324229210615158,-0.945944786071777,-0.0370009317994118,0.321508586406708,-0.946183502674103,0.00508098304271698,0.334078133106232,-0.942531764507294,0.170623525977135,0.37721386551857,-0.910273194313049,0.691691040992737,-0.63566255569458,-0.342777848243713,
- 0.648481428623199,-0.665461242198944,-0.369639217853546,0.749504089355469,-0.589028775691986,-0.302140414714813,0.690867722034454,-0.615491271018982,-0.379305094480515,0.456193417310715,-0.780435979366302,-0.427559703588486,0.650981187820435,-0.650704443454742,-0.390905648469925,0.736906826496124,-0.622146248817444,-0.264390707015991,0.646968901157379,-0.673147737979889,-0.358194679021835,0.542155265808105,-0.711677074432373,-0.446747779846191,0.648708403110504,-0.664238750934601,-0.371435672044754,0.455261170864105,-0.771872580051422,-0.44379049539566,0.379078209400177,-0.800576031208038,-0.46408811211586,0.649771988391876,-0.658222913742065,-0.380182981491089,0.392002940177917,-0.747898459434509,-0.535706639289856,0.544639408588409,-0.705710887908936,-0.453144609928131,0.788699865341187,-0.453028440475464,0.415593147277832,0.593023598194122,-0.628943145275116,0.502746105194092,0.7129727602005,-0.53214704990387,0.456606537103653,0.789257168769836,-0.471945434808731,0.392862170934677,0.600001990795136,-0.589458882808685,0.540865838527679,0.588423073291779,-0.594667196273804,0.547840595245361,0.714800894260406,-0.536511719226837,0.44856983423233,0.595130562782288,-0.652088761329651,0.469680607318878,0.510825753211975,-0.715728878974915,0.476223945617676,0.587594866752625,-0.589516997337341,0.554258048534393,0.600750803947449,-0.583907723426819,0.546031415462494,0.418955266475677,-0.643767893314362,0.640343129634857,0.501894891262054,-0.69675475358963,0.512478590011597,0.593594312667847,-0.634360909461975,0.495209097862244,0.425456315279007,-0.739600002765656,0.521515905857086,0.611989915370941,-0.43979275226593,-0.657305717468262,0.564902186393738,-0.467669665813446,-0.679831385612488,0.672333002090454,-0.39958980679512,-0.623134255409241,0.605609178543091,-0.424681752920151,-0.672965824604034,0.375650316476822,-0.602779388427734,-0.703948736190796,0.563971936702728,-0.463057100772858,-0.683749854564667,0.672573983669281,-0.43538823723793,-0.598399043083191,0.565848231315613,-0.472453832626343,-0.67572420835495,0.437415957450867,-0.502766668796539,-0.745582342147827,
- 0.563987612724304,-0.463133960962296,-0.683684885501862,0.362437069416046,-0.575379192829132,-0.733197271823883,0.287948697805405,-0.606806933879852,-0.740858197212219,0.565949440002441,-0.472971647977829,-0.675277054309845,0.281000077724457,-0.55643492937088,-0.781932950019836,0.436836421489716,-0.518862962722778,-0.734816431999207,0.677021503448486,-0.5185467004776,0.522256016731262,0.4502132833004,-0.660669088363647,0.600686609745026,0.584823131561279,-0.585444867610931,0.561459004878998,0.676982879638672,-0.549054563045502,0.490136086940765,0.467050760984421,-0.626937866210938,0.623548328876495,0.44757878780365,-0.631635248661041,0.633016765117645,0.584997951984406,-0.585933804512024,0.560766398906708,0.451537221670151,-0.680032908916473,0.577641308307648,0.353849172592163,-0.733563780784607,0.580237030982971,0.447319835424423,-0.62915050983429,0.635668754577637,0.467492908239365,-0.624755144119263,0.625405013561249,0.271954834461212,-0.652532517910004,0.707277774810791,0.348748683929443,-0.720325171947479,0.59958827495575,0.451066255569458,-0.672503232955933,0.586752653121948,0.274507164955139,-0.748246073722839,0.603964924812317,0.602028608322144,-0.792257010936737,-0.0994502976536751,0.369733244180679,-0.919943928718567,-0.130386546254158,0.504115104675293,-0.856067717075348,-0.114087745547295,0.598340332508087,-0.788528621196747,-0.142167180776596,0.3829565346241,-0.919124722480774,-0.0924878641963005,0.370509654283524,-0.924495995044708,-0.0896090641617775,0.504259705543518,-0.855836272239685,-0.115180268883705,0.368821948766708,-0.915846765041351,-0.15872997045517,0.258392810821533,-0.947225630283356,-0.18972846865654,0.370546072721481,-0.924803972244263,-0.0862158760428429,0.383669883012772,-0.919105887413025,-0.0896758288145065,0.178897470235825,-0.983210742473602,-0.0359518639743328,0.25485548377037,-0.952502310276031,-0.166697949171066,0.369203299283981,-0.917489528656006,-0.14799290895462,0.168343380093575,-0.969357967376709,-0.178901508450508,0.42906129360199,-0.893734753131866,0.130937486886978,0.374523043632507,-0.917486250400543,0.133982807397842,
- 0.490954846143723,-0.861910343170166,0.126783445477486,0.424640953540802,-0.899368703365326,0.103999629616737,0.145888790488243,-0.969304502010345,0.197902366518974,0.374405026435852,-0.919114470481873,0.122676596045494,0.484511107206345,-0.85889595746994,0.165971800684929,0.374561488628387,-0.916683077812195,0.139268890023232,0.236429989337921,-0.965989887714386,0.104711279273033,0.374555945396423,-0.916816532611847,0.138403162360191,0.140695750713348,-0.975093245506287,0.171458020806313,0.0624777749180794,-0.981668174266815,0.180067032575607,0.374410063028336,-0.919059038162231,0.123076431453228,0.0671184957027435,-0.99414724111557,0.0846551209688187,0.236025556921959,-0.965865194797516,0.106754347681999,-0.333563446998596,0.355260044336319,-0.87322723865509,-0.200895056128502,0.461535483598709,-0.864075422286987,-0.0529351979494095,0.560161948204041,-0.826690077781677,-0.351795077323914,0.401608914136887,-0.845547497272491,-0.372198432683945,0.39569017291069,-0.839581787586212,-0.194038599729538,0.43957707285881,-0.876995444297791,-0.00101469457149506,0.457201331853867,-0.889362692832947,-0.183531388640404,0.406163036823273,-0.895180344581604,0.0226100273430347,0.46260678768158,-0.886275231838226,-0.182224154472351,0.402024924755096,-0.897312819957733,-0.372098237276077,0.392824858427048,-0.840970575809479,-0.145880728960037,0.401993542909622,-0.903946876525879,-0.184283912181854,0.408547043800354,-0.893940031528473,-0.145505502820015,0.41070482134819,-0.900083124637604,0.0296914726495743,0.412563413381577,-0.910444974899292,-0.0695694833993912,0.992190420627594,-0.103528901934624,-0.055615421384573,0.99295961856842,-0.10458579659462,0.13680973649025,0.983665227890015,-0.116986371576786,-0.173197254538536,0.982156336307526,-0.0732914954423904,-0.0553357265889645,0.993173122406006,-0.102689489722252,-0.0693289041519165,0.992640435695648,-0.0992896631360054,0.0669365152716637,0.992839395999908,-0.0989417284727097,-0.0692156106233597,0.992845416069031,-0.0973003581166267,0.137642741203308,0.985514879226685,-0.0990704521536827,
- -0.0715109258890152,0.987774074077606,-0.138522937893867,-0.175639227032661,0.97922819852829,-0.10130663216114,-0.181341528892517,0.978403151035309,-0.0992096215486526,0.0673231407999992,0.992466330528259,-0.10236344486475,-0.168774232268333,0.974892318248749,-0.145259439945221,-0.0709520652890205,0.989193916320801,-0.128301054239273,-0.20882810652256,0.974788904190063,-0.0785965174436569,-0.17871505022049,0.979701042175293,-0.0908118039369583,-0.177126184105873,0.979930102825165,-0.0914514362812042,-0.190371066331863,0.974959373474121,-0.114948123693466,-0.17469148337841,0.978734791278839,-0.107522875070572,0.0552071630954742,0.998472511768341,0.0022136508487165,-0.210293903946877,0.969909727573395,-0.122684873640537,-0.174770057201386,0.978777050971985,-0.107009500265121,-0.190779715776443,0.974981486797333,-0.114079840481281,-0.181301787495613,0.959351360797882,-0.216274797916412,-0.248627677559853,0.953274846076965,-0.171614080667496,-0.361606150865555,0.927838683128357,-0.0914133861660957,-0.183889284729958,0.957760572433472,-0.221086859703064,-0.0587362423539162,0.95656156539917,-0.285552531480789,-0.248647406697273,0.950723528862,-0.185200691223145,-0.391194075345993,0.897807717323303,-0.202259033918381,-0.248429074883461,0.942145824432373,-0.225042924284935,-0.319295883178711,0.923061788082123,-0.214492797851563,-0.248576804995537,0.946140706539154,-0.207430779933929,-0.0533372759819031,0.962721109390259,-0.265185236930847,-0.181768149137497,0.956417381763458,-0.228530749678612,-0.247953429818153,0.934102237224579,-0.256850391626358,-0.179876238107681,0.951805830001831,-0.248415321111679,-0.308411180973053,0.914068639278412,-0.263365030288696,-0.0515864156186581,0.964613139629364,-0.258573621511459,-0.022515220567584,0.964061260223389,-0.264724433422089,-0.181811302900314,0.956519961357117,-0.22806616127491,-0.117408603429794,0.964496314525604,-0.236562952399254,-0.29341846704483,0.899217069149017,-0.324521750211716,-0.177960529923439,0.946928858757019,-0.267686009407043,-0.179130017757416,0.949929654598236,-0.256019711494446,
- -0.0191942378878593,0.970050752162933,-0.242143079638481,-0.114510983228683,0.961144030094147,-0.251175969839096,-0.205993756651878,0.978381991386414,0.0183102451264858,-0.271749287843704,0.961614429950714,0.0380809977650642,-0.402373999357224,0.912143170833588,0.0780399441719055,-0.205539643764496,0.978437721729279,0.0203243494033813,-0.0706862956285477,0.997462213039398,-0.00852293614298105,-0.270813673734665,0.96201503276825,0.0344568155705929,-0.402679681777954,0.915132284164429,0.0195480678230524,-0.273318737745285,0.960907816886902,0.0441929250955582,-0.341797560453415,0.939249515533447,0.0313810966908932,-0.26932367682457,0.962621629238129,0.028714757412672,-0.0706609487533569,0.997104525566101,0.0280988998711109,-0.187001258134842,0.981943309307098,0.0285985581576824,-0.198009550571442,0.978388488292694,0.0595672652125359,-0.326184093952179,0.945305466651917,-0.0012863501906395,-0.268720716238022,0.962856352329254,0.026401225477457,-0.0706801563501358,0.997375547885895,0.0156949255615473,-0.0335054136812687,0.999289333820343,0.0172711368650198,-0.180616125464439,0.983493506908417,0.0108800940215588,-0.150140583515167,0.985563218593597,0.0782491788268089,-0.295024693012238,0.953350484371185,-0.0639021992683411,-0.190823465585709,0.980837762355804,0.0392898619174957,-0.196428090333939,0.978969752788544,0.0550845488905907,-0.0433134362101555,0.992487013339996,0.114426515996456,-0.148232564330101,0.986168742179871,0.0741512402892113,0.0499495565891266,-0.99861091375351,0.0167765729129314,0.0447503551840782,-0.998843371868134,0.0175888668745756,-0.136673301458359,-0.989570498466492,0.0455066151916981,0.16388526558876,-0.986371040344238,-0.0146270915865898,0.0463120713829994,-0.998632669448853,0.0242490153759718,0.0507989972829819,-0.998449146747589,0.0227766092866659,-0.0714912414550781,-0.997092127799988,0.0263897720724344,0.049640566110611,-0.998660504817963,0.0145971467718482,-0.138342216610909,-0.989842057228088,0.0327736623585224,0.057014562189579,-0.996118426322937,0.0670624375343323,0.164443984627724,-0.986197113990784,0.0193301029503345,
- 0.175728499889374,-0.984335720539093,0.0142406485974789,-0.0712556093931198,-0.997287154197693,0.0184696763753891,0.162905648350716,-0.985740184783936,0.0421670004725456,0.0519773885607719,-0.998163223266602,0.0311206355690956,0.205913126468658,-0.978540420532227,-0.00764895416796207,0.173339813947678,-0.984826385974884,0.00838552787899971,0.164885476231575,-0.986233174800873,0.0125265698879957,0.180139869451523,-0.983558118343353,0.0127707496285439,0.165241301059723,-0.98622864484787,0.00695468299090862,-0.0678756237030029,-0.994306862354279,-0.0821391865611076,0.20943546295166,-0.977553248405457,0.0229452569037676,0.165236607193947,-0.986228942871094,0.00702892616391182,0.180265471339226,-0.983539462089539,0.0124275032430887,-0.196506828069687,0.89315140247345,-0.404556125402451,-0.256947934627533,0.890901386737823,-0.374529927968979,-0.384342193603516,0.87194150686264,-0.303313672542572,-0.197774782776833,0.891398012638092,-0.407792836427689,-0.0649068206548691,0.887787282466888,-0.455654501914978,-0.255460143089294,0.887309551239014,-0.383955448865891,-0.396418154239655,0.821135222911835,-0.41059672832489,-0.249021247029305,0.871465981006622,-0.422534495592117,-0.311169773340225,0.85309100151062,-0.418818593025208,-0.258804708719254,0.895343065261841,-0.362465023994446,-0.057834304869175,0.91546106338501,-0.398228853940964,-0.194309338927269,0.906083226203918,-0.375841975212097,-0.250316292047501,0.874688863754272,-0.415043592453003,-0.187928259372711,0.896153509616852,-0.401984930038452,-0.308549702167511,0.850626766681671,-0.425712764263153,-0.0584286041557789,0.913313925266266,-0.403043121099472,-0.0311566386371851,0.913643479347229,-0.405320823192596,-0.191494584083557,0.901764452457428,-0.38749298453331,-0.108642391860485,0.894195318222046,-0.434294283390045,-0.265657335519791,0.805956661701202,-0.529017865657806,-0.169416695833206,0.864744603633881,-0.472773522138596,-0.179627016186714,0.88252317905426,-0.434611320495605,-0.0311747007071972,0.913030445575714,-0.406698554754257,-0.112819887697697,0.898968577384949,-0.423234164714813,
- -0.118773266673088,0.8937166929245,0.432623893022537,-0.109487198293209,0.894357979297638,0.433746933937073,0.0810787454247475,0.890234589576721,0.44822832942009,-0.292305499315262,0.850051641464233,0.438143342733383,-0.109402470290661,0.890513956546783,0.441606163978577,-0.119610816240311,0.889094293117523,0.441819727420807,0.0173077136278152,0.898970544338226,0.43766713142395,-0.117471739649773,0.90058171749115,0.418512850999832,0.0815653502941132,0.892328441143036,0.443956166505814,-0.115728989243507,0.909206926822662,0.39993691444397,-0.224927604198456,0.885238766670227,0.407136231660843,-0.29486146569252,0.863543570041656,0.40908345580101,0.0204327926039696,0.90408581495285,0.426862180233002,-0.204906180500984,0.915548503398895,0.346098810434341,-0.113979190587997,0.917262375354767,0.381626099348068,-0.454940378665924,0.804669857025146,0.381491392850876,-0.294626086950302,0.862269461154938,0.411930710077286,-0.229253947734833,0.877842366695404,0.420518040657043,-0.178912997245789,0.898799657821655,0.400186777114868,-0.214279681444168,0.90212744474411,0.374500155448914,-0.00491958111524582,0.858770430088043,0.512337028980255,-0.412630796432495,0.884679138660431,0.216976135969162,-0.214424192905426,0.901910305023193,0.37494033575058,-0.178663641214371,0.898991763591766,0.399866461753845,0.49051496386528,-0.579485654830933,0.65083909034729,0.440727472305298,-0.597428917884827,0.6699538230896,0.55563485622406,-0.552181899547577,0.621582806110382,0.48427152633667,-0.612507343292236,0.624752581119537,0.211617395281792,-0.620203614234924,0.755357980728149,0.440493136644363,-0.617843627929688,0.651333391666412,0.54751056432724,-0.517728090286255,0.657411456108093,0.440711975097656,-0.585839867591858,0.680121064186096,0.302568525075912,-0.654901802539825,0.692499816417694,0.440718948841095,-0.599536597728729,0.668073892593384,0.208041816949844,-0.635740995407104,0.743338465690613,0.135234519839287,-0.639061868190765,0.757173478603363,0.440667182207108,-0.606339335441589,0.661940455436707,0.139163941144943,-0.704401671886444,0.696025669574738,
- 0.304206937551498,-0.660389006137848,0.686545431613922,0.675494074821472,-0.729698181152344,0.106058284640312,0.452070832252502,-0.888685047626495,0.0766215100884438,0.584708869457245,-0.805748701095581,0.0942583829164505,0.675868272781372,-0.731239378452301,0.0921476185321808,0.461970031261444,-0.875037789344788,0.144542798399925,0.445385247468948,-0.88303542137146,0.147920235991478,0.585379183292389,-0.805594384670258,0.0913720577955246,0.454374134540558,-0.889747560024261,0.0435137264430523,0.361623167991638,-0.932254672050476,0.011399894952774,0.444674760103226,-0.882307648658752,0.154265344142914,0.462581098079681,-0.873791992664337,0.150021001696587,0.266325443983078,-0.944724798202515,0.191221654415131,0.352292746305466,-0.93464320898056,0.0482900142669678,0.452530592679977,-0.888953328132629,0.070556677877903,0.274913817644119,-0.960957825183868,0.0313462354242802,0.502576291561127,-0.834220230579376,0.226922333240509,0.452074021100998,-0.860824346542358,0.233688950538635,0.572008788585663,-0.791316747665405,0.215925186872482,0.500571668148041,-0.838736414909363,0.214357733726501,0.240649074316025,-0.917001903057098,0.318112850189209,0.452093362808228,-0.860041439533234,0.236516892910004,0.567933738231659,-0.786437809467316,0.242831334471703,0.451974242925644,-0.863535463809967,0.223664879798889,0.323947727680206,-0.924811661243439,0.199452564120293,0.452056020498276,-0.86143559217453,0.23146079480648,0.232305914163589,-0.933053076267242,0.274674236774445,0.151374503970146,-0.946090698242188,0.286353379487991,0.451944679021835,-0.864139199256897,0.221380889415741,0.154826685786247,-0.967666864395142,0.199122056365013,0.32101708650589,-0.922595620155334,0.213928490877151,0.600802183151245,-0.748278856277466,0.281274914741516,0.559757173061371,-0.775766789913177,0.291303783655167,0.660622477531433,-0.702559173107147,0.264553606510162,0.594420790672302,-0.766915023326874,0.241878837347031,0.347245037555695,-0.864181041717529,0.364159375429153,0.559259831905365,-0.786401629447937,0.262299180030823,0.64913147687912,-0.682242929935455,0.336411952972412,
- 0.559556066989899,-0.759645819664001,0.331414073705673,0.4343481361866,-0.842616856098175,0.318337470293045,0.559509038925171,-0.782500267028809,0.273209005594254,0.341354548931122,-0.878442645072937,0.33438840508461,0.263233423233032,-0.898827254772186,0.350453853607178,0.559467256069183,-0.757728040218353,0.335923671722412,0.2636958360672,-0.902826368808746,0.339660495519638,0.429383784532547,-0.835744976997375,0.342286169528961,0.605339407920837,-0.79066276550293,-0.0917419716715813,0.558326244354248,-0.824382781982422,-0.0930854082107544,0.668126046657562,-0.738666474819183,-0.0893279239535332,0.597434282302856,-0.790757775306702,-0.133321449160576,0.350589036941528,-0.934968531131744,-0.0540484040975571,0.55689138174057,-0.821882843971252,-0.119919195771217,0.662725687026978,-0.747851490974426,-0.0388958528637886,0.558939337730408,-0.825496733188629,-0.0783704295754433,0.432131350040436,-0.893741011619568,-0.1203723102808,0.558206915855408,-0.824170172214508,-0.0956491678953171,0.346507340669632,-0.935225546360016,-0.0727038308978081,0.269367218017578,-0.960916697978973,-0.0638779625296593,0.557720482349396,-0.823313891887665,-0.105366632342339,0.268775254487991,-0.950875043869019,-0.15361163020134,0.433332651853561,-0.891998529434204,-0.128691270947456,0.692424714565277,-0.701874613761902,-0.167093142867088,0.648387372493744,-0.73830634355545,-0.185735240578651,0.748482644557953,-0.648061454296112,-0.14067754149437,0.691704034805298,-0.691628873348236,-0.20783443748951,0.45809143781662,-0.86323755979538,-0.212068885564804,0.650897562503815,-0.729533791542053,-0.210030496120453,0.735930442810059,-0.670200645923615,-0.0961123555898666,0.646874070167542,-0.742770552635193,-0.172759890556335,0.542342841625214,-0.802659511566162,-0.248197436332703,0.648614466190338,-0.737590372562408,-0.18777596950531,0.457254230976105,-0.859189867973328,-0.22958941757679,0.377189815044403,-0.893842101097107,-0.24243426322937,0.649688005447388,-0.734013974666595,-0.197810620069504,0.389720171689987,-0.861357033252716,-0.325856298208237,
- 0.544823408126831,-0.79853880405426,-0.255935966968536,0.788561165332794,-0.330780774354935,0.518416106700897,0.592000842094421,-0.478783577680588,0.648306548595428,0.714159905910492,-0.395600318908691,0.577473938465118,0.789098978042603,-0.354840904474258,0.501408755779266,0.597357928752899,-0.430923610925674,0.676364123821259,0.587191462516785,-0.433746308088303,0.683425426483154,0.715940177440643,-0.401664227247238,0.571047782897949,0.594232738018036,-0.509762823581696,0.62211686372757,0.51282662153244,-0.567574024200439,0.644102990627289,0.58633291721344,-0.427089393138886,0.688337385654449,0.598114967346191,-0.424153983592987,0.67996472120285,0.422146141529083,-0.456637322902679,0.783118665218353,0.504077732563019,-0.539990961551666,0.674029290676117,0.592604339122772,-0.486023813486099,0.642340302467346,0.428540647029877,-0.578811705112457,0.693779468536377,0.613369584083557,-0.593296527862549,-0.521322429180145,0.565540730953217,-0.626628160476685,-0.536191165447235,0.671087563037872,-0.547719299793243,-0.499644964933395,0.609201490879059,-0.58639132976532,-0.533871650695801,0.379347056150436,-0.766704440116882,-0.517938554286957,0.565885901451111,-0.627893090248108,-0.534343898296356,0.671343863010406,-0.565662980079651,-0.478876769542694,0.564023613929749,-0.621154069900513,-0.544100165367126,0.439325571060181,-0.666984498500824,-0.601768016815186,0.56621241569519,-0.629096150398254,-0.532580137252808,0.36718475818634,-0.749439477920532,-0.550922691822052,0.289523422718048,-0.783255934715271,-0.550169348716736,0.562761247158051,-0.616696655750275,-0.550440788269043,0.278590172529221,-0.723179042339325,-0.631980657577515,0.439067184925079,-0.673365235328674,-0.594810426235199,0.677711844444275,-0.365995109081268,0.637772917747498,0.450538456439972,-0.483448386192322,0.750528454780579,0.582678079605103,-0.422135770320892,0.694469392299652,0.67773574590683,-0.404016375541687,0.614365577697754,0.466900318861008,-0.445136070251465,0.764106035232544,0.447890549898148,-0.447186529636383,0.774221122264862,0.582941472530365,-0.423127114772797,0.693644642829895,
- 0.451874196529388,-0.508012354373932,0.733302891254425,0.352800726890564,-0.559766709804535,0.749795258045197,0.447631120681763,-0.444118589162827,0.776134669780731,0.467351496219635,-0.442550897598267,0.765330731868744,0.269123047590256,-0.448220044374466,0.852450311183929,0.347646862268448,-0.541923820972443,0.765153706073761,0.451399773359299,-0.498449414968491,0.740125954151154,0.27143669128418,-0.568343281745911,0.776729047298431,0.601499736309052,-0.776728093624115,0.186792522668839,0.369836628437042,-0.906675457954407,0.202880442142487,0.506115436553955,-0.840032935142517,0.195427134633064,0.597569763660431,-0.788442850112915,0.145836770534515,0.378226578235626,-0.894112169742584,0.239808350801468,0.370675384998322,-0.896522283554077,0.242585092782974,0.506205976009369,-0.840139150619507,0.19473497569561,0.368881791830063,-0.912865877151489,0.174934685230255,0.257632404565811,-0.953422844409943,0.156876981258392,0.370717018842697,-0.895612418651581,0.245860517024994,0.378964960575104,-0.893053770065308,0.242570593953133,0.176962643861771,-0.932722747325897,0.314185589551926,0.253993660211563,-0.950239360332489,0.180367395281792,0.369279652833939,-0.910605728626251,0.185552984476089,0.167072236537933,-0.970314681529999,0.174860790371895,0.432361841201782,-0.788528263568878,0.437363088130951,0.373386234045029,-0.811469614505768,0.4495550096035,0.49540975689888,-0.759384751319885,0.421786695718765,0.429926335811615,-0.796932399272919,0.424337267875671,0.151312157511711,-0.829631209373474,0.537416636943817,0.373407155275345,-0.810142993927002,0.451924413442612,0.486409604549408,-0.735982835292816,0.470887541770935,0.373475283384323,-0.801758825778961,0.466582298278809,0.236520364880562,-0.860154151916504,0.451877176761627,0.373459488153458,-0.795731425285339,0.476801365613937,0.149100124835968,-0.836251974105835,0.527685284614563,0.0618720687925816,-0.839723169803619,0.539478361606598,0.373468637466431,-0.803793728351593,0.463073253631592,0.0663363113999367,-0.887978672981262,0.455075353384018,0.233532607555389,-0.853810846805573,0.46526300907135,
- -0.32521253824234,-0.0100909536704421,-0.94558709859848,-0.191586643457413,0.093233697116375,-0.977037489414215,-0.0435858182609081,0.199875935912132,-0.978851318359375,-0.360224038362503,0.0920165851712227,-0.928316593170166,-0.3737852871418,0.0897515714168549,-0.923162698745728,-0.198179915547371,0.116694748401642,-0.973194301128387,-0.0224521327763796,0.151360347867012,-0.988223671913147,-0.194299876689911,0.102845050394535,-0.975535988807678,0.0197996888309717,0.162518247961998,-0.986506879329681,-0.19767926633358,0.114900648593903,-0.973509550094604,-0.374435395002365,0.125180527567863,-0.918764472007751,-0.144732877612114,0.111151807010174,-0.983207881450653,-0.195968598127365,0.108786180615425,-0.974557280540466,-0.144840091466904,0.10889758169651,-0.983444333076477,0.02668103761971,0.107173375785351,-0.993882298469543,-0.0673732161521912,0.891767263412476,-0.447450578212738,-0.0574629977345467,0.892011702060699,-0.44834491610527,0.13645227253437,0.879028260707855,-0.456826329231262,-0.175817266106606,0.892843902111053,-0.414630025625229,-0.0571314021945,0.89302122592926,-0.446373403072357,-0.0671250149607658,0.893524587154388,-0.44396847486496,0.0633833110332489,0.894149899482727,-0.443259179592133,-0.066966824233532,0.894633769989014,-0.441753178834915,0.137219712138176,0.887079775333405,-0.440749645233154,-0.069600872695446,0.875019788742065,-0.479057371616364,-0.173881039023399,0.880363762378693,-0.441276639699936,-0.183890402317047,0.88030469417572,-0.437319159507751,0.0638397112488747,0.89226758480072,-0.446970999240875,-0.167344078421593,0.861115217208862,-0.480079829692841,-0.0689049735665321,0.880445957183838,-0.469112992286682,-0.210669964551926,0.884181618690491,-0.41694238781929,-0.181234210729599,0.884525418281555,-0.429847568273544,-0.175313726067543,0.88448441028595,-0.432379990816116,-0.186211585998535,0.87319940328598,-0.450386613607407,-0.173160418868065,0.878277182579041,-0.445695698261261,0.0521157644689083,0.934547066688538,-0.352002441883087,-0.212250292301178,0.863275229930878,-0.45793628692627,
- -0.173229917883873,0.87847888469696,-0.445271044969559,-0.186568468809128,0.873485207557678,-0.449684143066406,-0.197127357125282,0.806722402572632,-0.557081520557404,-0.247074156999588,0.81443327665329,-0.525026500225067,-0.365559369325638,0.820959866046906,-0.438624292612076,-0.198973715305328,0.804344534873962,-0.559856534004211,-0.0692849531769753,0.779919385910034,-0.622033298015594,-0.246974483132362,0.809130609035492,-0.533208549022675,-0.394298374652863,0.751707255840302,-0.528644502162933,-0.246312528848648,0.786375463008881,-0.56651908159256,-0.310153305530548,0.773961782455444,-0.552076160907745,-0.247178673744202,0.822148740291595,-0.512810111045837,-0.0531878098845482,0.818116784095764,-0.572587251663208,-0.185821443796158,0.824566185474396,-0.534379005432129,-0.246500492095947,0.791728854179382,-0.558930158615112,-0.18327459692955,0.809763610363007,-0.557398796081543,-0.308608770370483,0.770289182662964,-0.558045864105225,-0.0544908419251442,0.815170168876648,-0.576652824878693,-0.0224373023957014,0.812281250953674,-0.582834362983704,-0.184670507907867,0.817852795124054,-0.544989466667175,-0.109072171151638,0.795372068881989,-0.596227049827576,-0.280617594718933,0.703455626964569,-0.652996122837067,-0.175232961773872,0.764089226722717,-0.620855212211609,-0.179670929908752,0.789117813110352,-0.587376713752747,-0.0223048124462366,0.812834501266479,-0.582067668437958,-0.111358866095543,0.801969885826111,-0.586893081665039,-0.20185586810112,0.93596875667572,-0.288473069667816,-0.285254716873169,0.923521757125854,-0.256392747163773,-0.398342549800873,0.893373429775238,-0.20786315202713,-0.201064616441727,0.9370978474617,-0.285343140363693,-0.0695836469531059,0.945313811302185,-0.318653374910355,-0.284138709306717,0.922576785087585,-0.260992825031281,-0.398593097925186,0.842385590076447,-0.362643092870712,-0.259607523679733,0.898244202136993,-0.354628324508667,-0.31434440612793,0.878934025764465,-0.358695685863495,-0.26696041226387,0.906193792819977,-0.327940464019775,-0.0697906762361526,0.937581419944763,-0.340691179037094,
- -0.186882168054581,0.923570156097412,-0.334803283214569,-0.182140201330185,0.919914245605469,-0.34725022315979,-0.299052983522415,0.871507883071899,-0.388640642166138,-0.254261553287506,0.892153918743134,-0.37338000535965,-0.069630078971386,0.943739473819733,-0.3232761323452,-0.03191789239645,0.946053683757782,-0.322434037923813,-0.191391751170158,0.926907420158386,-0.322818547487259,-0.152271941304207,0.948824644088745,-0.276667833328247,-0.294981807470322,0.869388043880463,-0.396421730518341,-0.194989681243896,0.929470479488373,-0.313151389360428,-0.189315170049667,0.925387799739838,-0.328355520963669,-0.0366355627775192,0.959773898124695,-0.278373599052429,-0.135542824864388,0.940503358840942,-0.311579287052155,0.0554102845489979,-0.928388178348541,0.367457658052444,0.0418755635619164,-0.928224444389343,0.369656592607498,-0.142079547047615,-0.908701479434967,0.392523914575577,0.168165445327759,-0.927792429924011,0.333049118518829,0.0435580685734749,-0.925502121448517,0.376229524612427,0.0561228916049004,-0.926460862159729,0.372183382511139,-0.071671761572361,-0.923508942127228,0.376821458339691,0.0551488064229488,-0.929088175296783,0.365723639726639,-0.143750160932541,-0.913572072982788,0.38042339682579,0.0621804036200047,-0.908899188041687,0.41235426068306,0.168518394231796,-0.915860772132874,0.364418208599091,0.179804354906082,-0.915865004062653,0.35897308588028,-0.0714307203888893,-0.926497161388397,0.369460135698318,0.166808620095253,-0.90656852722168,0.387696206569672,0.0576097629964352,-0.922346949577332,0.382043689489365,0.205191120505333,-0.918208539485931,0.338806331157684,0.177368089556694,-0.918448567390442,0.353543370962143,0.168975070118904,-0.918342769145966,0.357902199029922,0.177766710519791,-0.916411936283112,0.358591914176941,0.169107988476753,-0.919065117835999,0.355980068445206,-0.0679888501763344,-0.959248065948486,0.274263888597488,0.20859494805336,-0.906740486621857,0.366483092308044,0.169110774993896,-0.919080257415771,0.355939865112305,0.177869319915771,-0.916495561599731,0.35832741856575,
- -0.200894415378571,0.693471014499664,-0.691910028457642,-0.258094877004623,0.701381087303162,-0.664418399333954,-0.383479505777359,0.708658397197723,-0.59223872423172,-0.202294483780861,0.690417468547821,-0.694550752639771,-0.0672684013843536,0.670158684253693,-0.739163219928741,-0.256650477647781,0.694622278213501,-0.672034561634064,-0.39554488658905,0.623543083667755,-0.674342930316925,-0.250369340181351,0.665802478790283,-0.702867209911346,-0.309449404478073,0.650713980197906,-0.693406462669373,-0.259823471307755,0.709542512893677,-0.655012369155884,-0.0599189400672913,0.715934753417969,-0.695591270923615,-0.190903678536415,0.715168356895447,-0.672376394271851,-0.251564383506775,0.671219408512115,-0.697266042232513,-0.184716820716858,0.697620749473572,-0.692246377468109,-0.306960612535477,0.646229267120361,-0.698686599731445,-0.0605547279119492,0.712146639823914,-0.699414312839508,-0.0277903266251087,0.711536109447479,-0.702099800109863,-0.188059762120247,0.707118213176727,-0.681628465652466,-0.108604915440083,0.683187305927277,-0.722122013568878,-0.264164924621582,0.568403303623199,-0.779188394546509,-0.166178777813911,0.644324958324432,-0.746478378772736,-0.176192566752434,0.673241198062897,-0.718124330043793,-0.0277927927672863,0.711234331130981,-0.702405393123627,-0.112741649150848,0.691582262516022,-0.713444828987122,-0.117682471871376,0.989034473896027,0.0892280712723732,-0.109984256327152,0.989858329296112,0.0899111106991768,0.0843508243560791,0.990868806838989,0.105185180902481,-0.29913592338562,0.947842359542847,0.110057406127453,-0.10989236831665,0.989031374454498,0.0986954644322395,-0.1184436455369,0.987984836101532,0.0992829278111458,0.0165643841028214,0.995630741119385,0.0918979495763779,-0.116480559110641,0.990458607673645,0.0736482366919518,0.0848255977034569,0.9913010597229,0.100632265210152,-0.11484169960022,0.991971611976624,0.0529502332210541,-0.225420847535133,0.971861779689789,0.0683388113975525,-0.301696598529816,0.950152933597565,0.0786675587296486,0.0197394471615553,0.996611714363098,0.07984708994627,
- -0.205657094717026,0.978624105453491,0.000205174088478088,-0.113247334957123,0.99300628900528,0.0333705618977547,-0.452163428068161,0.888951659202576,0.0728916376829147,-0.301549762487412,0.950039684772491,0.0805751606822014,-0.229646176099777,0.969694972038269,0.0833924412727356,-0.181531548500061,0.98183798789978,0.0551413670182228,-0.214832946658134,0.976146221160889,0.0313909091055393,-0.00565861584618688,0.98445063829422,0.175570726394653,-0.411079615354538,0.905147075653076,-0.108270220458508,-0.214979469776154,0.976097643375397,0.031894963234663,-0.181321397423744,0.981894254684448,0.0548290014266968,0.492959797382355,-0.311795026063919,0.812265157699585,0.43908429145813,-0.322668701410294,0.838504493236542,0.556582629680634,-0.296868205070496,0.775941371917725,0.486411273479462,-0.352657616138458,0.799397766590118,0.216498032212257,-0.31444376707077,0.924258470535278,0.438920557498932,-0.347894370555878,0.82844340801239,0.548386335372925,-0.251684844493866,0.797450423240662,0.439036399126053,-0.308697193861008,0.843773186206818,0.3007832467556,-0.36884418129921,0.879479050636292,0.439082622528076,-0.325107276439667,0.83756297826767,0.21310980618,-0.332320779561996,0.918774843215942,0.135260134935379,-0.330484360456467,0.934068918228149,0.439050495624542,-0.334082961082459,0.834040284156799,0.139343440532684,-0.413208544254303,0.899912297725677,0.302392989397049,-0.375896245241165,0.87593400478363,0.673121631145477,-0.640870809555054,0.369041979312897,0.454857587814331,-0.797353148460388,0.396651715040207,0.58251416683197,-0.716053307056427,0.384636223316193,0.674610078334808,-0.671906530857086,0.305684357881546,0.453960418701172,-0.791383147239685,0.40942969918251,0.453623622655869,-0.791511178016663,0.409555405378342,0.581963956356049,-0.715345621109009,0.386779814958572,0.456879556179047,-0.807637155056,0.37280461192131,0.354982912540436,-0.864343523979187,0.356226801872253,0.453420221805573,-0.790573298931122,0.411587059497833,0.454246491193771,-0.790266156196594,0.411265790462494,0.272459954023361,-0.839252054691315,0.470554500818253,
- 0.349947929382324,-0.858399391174316,0.375082790851593,0.456301987171173,-0.804591298103333,0.380028009414673,0.277458310127258,-0.887074053287506,0.368939816951752,-0.115131884813309,-0.681648075580597,-0.722565233707428,-0.00617121160030365,-0.595864951610565,-0.803060948848724,0.11886228621006,-0.478729546070099,-0.869879126548767,-0.169323295354843,-0.606613159179688,-0.776756167411804,-0.19444252550602,-0.610398888587952,-0.767857730388641,-0.019026517868042,-0.575391232967377,-0.817656993865967,0.148645669221878,-0.51326709985733,-0.845258176326752,-0.0118708480149508,-0.586847186088562,-0.809610784053802,0.198004379868507,-0.486760765314102,-0.850798606872559,-0.018837109208107,-0.575696408748627,-0.817446529865265,-0.202757433056831,-0.580528497695923,-0.788591265678406,0.0406619347631931,-0.569882988929749,-0.820719301700592,-0.0156813729554415,-0.58076536655426,-0.813920080661774,0.0410219319164753,-0.571762681007385,-0.81939297914505,0.216248705983162,-0.531611382961273,-0.818917632102966,0.601007997989655,-0.60063111782074,0.527287125587463,0.562828481197357,-0.621344864368439,0.545119047164917,0.661536931991577,-0.563268721103668,0.495072990655899,0.594731628894806,-0.631968677043915,0.496900230646133,0.342083007097244,-0.680247962474823,0.648260712623596,0.562307000160217,-0.642203390598297,0.520946979522705,0.649688243865967,-0.518998205661774,0.555469274520874,0.562602579593658,-0.591400682926178,0.577688276767731,0.430844485759735,-0.677932024002075,0.595635116100311,0.56257563829422,-0.634252667427063,0.530313432216644,0.335993736982346,-0.704831719398499,0.624756336212158,0.265515297651291,-0.716823816299438,0.644721150398254,0.562520146369934,-0.588370025157928,0.580854296684265,0.266001582145691,-0.724013268947601,0.636433839797974,0.425715327262878,-0.662743508815765,0.616066217422485,0.603648364543915,-0.773337543010712,0.193798094987869,0.559306502342224,-0.80350923538208,0.203835964202881,0.665178656578064,-0.725132882595062,0.1781005859375,0.59589958190918,-0.78787362575531,0.155431061983109,
- 0.350672960281372,-0.893794536590576,0.279571086168289,0.55788379907608,-0.810718655586243,0.177485257387161,0.659748136997223,-0.716221034526825,0.227508127689362,0.559913039207459,-0.79926860332489,0.218327805399895,0.437048316001892,-0.876072645187378,0.203679829835892,0.559184491634369,-0.804248750209808,0.201238036155701,0.34662938117981,-0.900602221488953,0.262228310108185,0.269861400127411,-0.92144650220871,0.279484003782272,0.558726370334625,-0.806784987449646,0.192153260111809,0.269425988197327,-0.943661987781525,0.1921246945858,0.438337743282318,-0.877489745616913,0.194606438279152,0.690478801727295,-0.717559814453125,0.0913622751832008,0.64740377664566,-0.757178723812103,0.0868833214044571,0.750394344329834,-0.653765082359314,0.0974666848778725,0.689675509929657,-0.722364664077759,0.0503685288131237,0.457551866769791,-0.882776319980621,0.10654716193676,0.649863362312317,-0.757567167282104,0.0613974630832672,0.737791240215302,-0.658649623394012,0.147800207138062,0.645943164825439,-0.75677627325058,0.100235834717751,0.544167995452881,-0.837357878684998,0.05208870023489,0.647622168064117,-0.757229506969452,0.0847891047596931,0.456706613302231,-0.885194778442383,0.0885958895087242,0.376510471105576,-0.922145009040833,0.0888169184327126,0.648716032505035,-0.757439613342285,0.0738426819443703,0.389223396778107,-0.921143054962158,-0.00081813323777169,0.546754062175751,-0.836182594299316,0.0431121662259102,0.786827504634857,-0.121877402067184,0.605019330978394,0.589782297611237,-0.21473203599453,0.778490364551544,0.714576721191406,-0.160575941205025,0.680878460407257,0.787600636482239,-0.153222993016243,0.596831560134888,0.598223149776459,-0.162489324808121,0.784682333469391,0.585225105285645,-0.162681266665459,0.79438441991806,0.714654147624969,-0.160911321640015,0.680718004703522,0.591640472412109,-0.245034202933311,0.768062353134155,0.505868554115295,-0.293872624635696,0.811009168624878,0.584809064865112,-0.158721745014191,0.795490920543671,0.598571240901947,-0.158963888883591,0.78513890504837,0.421635448932648,-0.152912616729736,0.893779218196869,
- 0.499796688556671,-0.26927649974823,0.823221385478973,0.590737760066986,-0.229105457663536,0.773653447628021,0.427687257528305,-0.297173470258713,0.853681206703186,0.613262236118317,-0.739262104034424,-0.278210312128067,0.563650727272034,-0.776962220668793,-0.280406147241592,0.669341206550598,-0.690514862537384,-0.274174600839615,0.606698274612427,-0.736093580722809,-0.300139307975769,0.371346771717072,-0.902114391326904,-0.219752505421638,0.562786877155304,-0.77561342716217,-0.28582289814949,0.669610142707825,-0.704804241657257,-0.234250709414482,0.564539015293121,-0.778352677822113,-0.274705052375793,0.439743608236313,-0.841902315616608,-0.312771797180176,0.562752664089203,-0.775560081005096,-0.286035150289536,0.357821822166443,-0.896763920783997,-0.26034215092659,0.284618467092514,-0.925896465778351,-0.248410999774933,0.564675629138947,-0.778566896915436,-0.273815631866455,0.277623444795609,-0.908637762069702,-0.311933666467667,0.439150989055634,-0.848624765872955,-0.294928133487701,0.68089085817337,-0.115974441170692,0.723144292831421,0.449019551277161,-0.187610790133476,0.873603820800781,0.584198176860809,-0.14917978644371,0.797783136367798,0.680790305137634,-0.161175593733788,0.714525759220123,0.464224696159363,-0.146393790841103,0.873535513877869,0.446346610784531,-0.144833415746689,0.883061707019806,0.584399282932281,-0.150113135576248,0.797460675239563,0.450363218784332,-0.217009842395782,0.866071403026581,0.350988775491714,-0.259646385908127,0.899661362171173,0.44608348608017,-0.141234651207924,0.883777320384979,0.464678108692169,-0.143453761935234,0.873782157897949,0.274689704179764,-0.119074910879135,0.954131484031677,0.345861554145813,-0.237321436405182,0.907776534557343,0.449884593486786,-0.205476149916649,0.869127988815308,0.276990503072739,-0.256012380123138,0.926139235496521,-0.199141085147858,0.209848970174789,0.957238972187042,-0.404831618070602,0.237165808677673,0.883098959922791,-0.248524785041809,0.217212572693825,0.943956613540649,-0.198325529694557,0.215945661067963,0.956051528453827,-0.248966723680496,0.219246417284012,0.943369805812836,
- -0.0676411315798759,0.204936236143112,0.976435303688049,-0.396802455186844,0.151154592633247,0.90537291765213,-0.318702608346939,0.179907590150833,0.930624485015869,-0.245807558298111,0.20480127632618,0.947436034679413,-0.246870994567871,0.209639713168144,0.946100413799286,-0.154858008027077,0.221906110644341,0.962692439556122,-0.0700753033161163,0.231339335441589,0.970346212387085,-0.246623665094376,0.208512246608734,0.946413993835449,-0.308251768350601,0.158742308616638,0.937966823577881,-0.170347318053246,0.266677737236023,0.948612034320831,-0.068711169064045,0.21649457514286,0.973862946033478,-0.148544907569885,0.203812897205353,0.967674970626831,-0.0495240278542042,0.219320684671402,0.974395155906677,-0.282716780900955,0.108165860176086,0.95308518409729,-0.137520715594292,0.208287760615349,0.968351304531097,-0.14775013923645,0.201541274785995,0.968272268772125,-0.151139616966248,0.211238771677017,0.965678572654724,-0.141447320580482,0.215727269649506,0.966154456138611,-0.0572189278900623,0.253398090600967,0.965668439865112,0.833525717258453,-0.520197868347168,0.186088606715202,0.651859104633331,-0.728017807006836,0.212296485900879,0.762187898159027,-0.615909397602081,0.19931173324585,0.8318932056427,-0.542316079139709,0.117673739790916,0.656290650367737,-0.720384538173676,0.224340856075287,0.651213705539703,-0.7242032289505,0.226827085018158,0.761717259883881,-0.61552906036377,0.202264159917831,0.652636468410492,-0.734324157238007,0.18663814663887,0.563646137714386,-0.807829022407532,0.172381147742271,0.651102602481842,-0.723608136177063,0.229034543037415,0.656587064266205,-0.719520151615143,0.226239323616028,0.49082738161087,-0.818267226219177,0.299211353063583,0.560169577598572,-0.805706024169922,0.192478656768799,0.652446031570435,-0.732439935207367,0.194540441036224,0.490502864122391,-0.850603401660919,0.189422860741615,0.728999674320221,-0.63624906539917,0.252481043338776,0.690852344036102,-0.674956738948822,0.259145796298981,0.776842653751373,-0.581199765205383,0.242326989769936,0.728663146495819,-0.642075479030609,0.23830483853817,
- 0.493349641561508,-0.798369646072388,0.345271021127701,0.690828800201416,-0.674887478351593,0.259388864040375,0.764625608921051,-0.572620332241058,0.295726001262665,0.688660860061646,-0.668821215629578,0.280043840408325,0.573176741600037,-0.779393255710602,0.253011077642441,0.687712669372559,-0.666330873966217,0.288191735744476,0.492837756872177,-0.803370356559753,0.334226012229919,0.417198300361633,-0.840462982654572,0.3457852602005,0.689209282398224,-0.670302271842957,0.27510991692543,0.430837452411652,-0.866120636463165,0.253404915332794,0.569151520729065,-0.777348399162292,0.267948269844055,-0.0976474434137344,-0.383995771408081,-0.91815710067749,-0.0318450778722763,-0.243543282151222,-0.96936708688736,0.042512945830822,-0.0793028101325035,-0.995943665504456,-0.189507275819778,-0.30611789226532,-0.93294095993042,-0.204548671841621,-0.316434860229492,-0.926298439502716,-0.0612900108098984,-0.215574219822884,-0.974562168121338,0.0874640420079231,-0.111739873886108,-0.989880919456482,-0.0381995886564255,-0.237546101212502,-0.97062486410141,0.114709533751011,-0.083610013127327,-0.989874362945557,-0.0550901964306831,-0.221501469612122,-0.973602652549744,-0.219679966568947,-0.292336165904999,-0.930741786956787,-0.00410412205383182,-0.198211282491684,-0.980150699615479,-0.0482904240489006,-0.227978855371475,-0.97246789932251,-0.00176583952270448,-0.202656835317612,-0.979248225688934,0.142899140715599,-0.120229162275791,-0.982407689094543,0.762414634227753,-0.408662021160126,-0.501716494560242,0.722351729869843,-0.44173926115036,-0.532047390937805,0.806968152523041,-0.366894572973251,-0.462807565927505,0.753256440162659,-0.379701912403107,-0.537057936191559,0.542722821235657,-0.582455694675446,-0.60514235496521,0.719413042068481,-0.419841587543488,-0.553333580493927,0.804934144020081,-0.402467131614685,-0.436006009578705,0.723116815090179,-0.448372334241867,-0.525418281555176,0.609482407569885,-0.493316113948822,-0.620620965957642,0.720591604709625,-0.428079128265381,-0.545431971549988,0.535140573978424,-0.562251925468445,-0.630473911762238,
- 0.467854678630829,-0.598747253417969,-0.650087535381317,0.720989108085632,-0.431004703044891,-0.542595386505127,0.464470624923706,-0.541998386383057,-0.700360476970673,0.60990971326828,-0.488771051168442,-0.623789250850677,0.835800528526306,-0.517479538917542,-0.183446019887924,0.651004910469055,-0.71244740486145,-0.261937469244003,0.760090112686157,-0.611119091510773,-0.220899313688278,0.82553094625473,-0.491816967725754,-0.276794016361237,0.656864523887634,-0.703842520713806,-0.270434379577637,0.65058571100235,-0.709855318069458,-0.269895672798157,0.761309385299683,-0.603837370872498,-0.236195757985115,0.648208737373352,-0.697904109954834,-0.304557740688324,0.556560873985291,-0.754098236560822,-0.348677426576614,0.650915324687958,-0.711872756481171,-0.263716638088226,0.658276975154877,-0.70476633310318,-0.264529824256897,0.495371103286743,-0.834134519100189,-0.242543190717697,0.55402809381485,-0.767746567726135,-0.321897447109222,0.649436175823212,-0.703644812107086,-0.288299679756165,0.485647201538086,-0.804548144340515,-0.341831862926483,-0.161420837044716,0.888369619846344,0.429816991090775,-0.359776735305786,0.871330857276917,0.333681464195251,-0.209330022335052,0.888266444206238,0.408856511116028,-0.159605786204338,0.891160488128662,0.424686878919601,-0.209397375583649,0.889065444469452,0.407081753015518,-0.0331729762256145,0.885478317737579,0.46349510550499,-0.366624295711517,0.832700073719025,0.414966523647308,-0.285091727972031,0.861598670482636,0.419965088367462,-0.208814114332199,0.882327795028687,0.42177551984787,-0.209018975496292,0.884649276733398,0.416781634092331,-0.109030812978745,0.895529448986053,0.431438714265823,-0.0310174971818924,0.897603332996368,0.439711421728134,-0.208928272128105,0.883615732192993,0.41901358962059,-0.278081238269806,0.852407038211823,0.44280156493187,-0.11698904633522,0.915849506855011,0.384100764989853,-0.032261285930872,0.89070063829422,0.45344403386116,-0.105967327952385,0.887274563312531,0.448904037475586,-0.0101694073528051,0.890779972076416,0.454321086406708,-0.261399060487747,0.829337120056152,0.493832468986511,
- -0.101911835372448,0.888272643089294,0.447867929935455,-0.105918325483799,0.887140691280365,0.449180126190186,-0.107459641993046,0.891324520111084,0.440446585416794,-0.104587100446224,0.891912758350372,0.439947038888931,-0.0119455065578222,0.90658575296402,0.421852737665176,0.0460785962641239,0.930710554122925,0.36284264922142,-0.0057380348443985,0.907475650310516,0.420065641403198,-0.116138324141502,0.83812940120697,0.532964289188385,0.0485040992498398,0.929774045944214,0.36492133140564,0.180436030030251,0.953863739967346,0.239972651004791,-0.00899492204189301,0.909724175930023,0.415115773677826,-0.152119323611259,0.856006860733032,0.49407684803009,-0.00751960277557373,0.908710122108459,0.417360126972198,-0.163208231329918,0.850832760334015,0.499446392059326,-0.00590991973876953,0.907595157623291,0.419804841279984,0.22883403301239,0.921961307525635,0.312445849180222,0.0479487031698227,0.916283488273621,0.397649943828583,-0.184943780303001,0.871140480041504,0.454873651266098,-0.00879308488219976,0.9095858335495,0.415423005819321,0.0486911609768867,0.915434420108795,0.399510949850082,0.604174196720123,-0.291902214288712,0.741462588310242,0.561770021915436,-0.306322664022446,0.768492639064789,0.665743887424469,-0.268335700035095,0.696262180805206,0.602966845035553,-0.305295139551163,0.737038612365723,0.344782918691635,-0.29575502872467,0.890872478485107,0.561740100383759,-0.305627524852753,0.768791139125824,0.655000627040863,-0.220247179269791,0.722817718982697,0.560800194740295,-0.286585688591003,0.776770055294037,0.42810446023941,-0.36411851644516,0.827130138874054,0.560303628444672,-0.278051018714905,0.780222713947296,0.343313664197922,-0.307765692472458,0.887364625930786,0.26360285282135,-0.313794672489166,0.912165820598602,0.561048805713654,-0.291189342737198,0.774876117706299,0.272598266601563,-0.402669042348862,0.87381237745285,0.424400448799133,-0.350829303264618,0.83474737405777,0.634189426898956,-0.40337997674942,0.659612357616425,0.588467240333557,-0.416953772306442,0.692716419696808,0.692934155464172,-0.382738918066025,0.611026406288147,
- 0.624379515647888,-0.443902909755707,0.642728924751282,0.38421905040741,-0.422346949577332,0.820974290370941,0.585505902767181,-0.442989945411682,0.678927600383759,0.687481880187988,-0.318299502134323,0.652728319168091,0.591792047023773,-0.379267781972885,0.711293280124664,0.461574554443359,-0.445443272590637,0.767156600952148,0.590123474597931,-0.399744182825089,0.701397836208344,0.385728925466537,-0.416659832000732,0.823169350624084,0.303181231021881,-0.416907966136932,0.856894910335541,0.589830160140991,-0.402978509664536,0.69979202747345,0.300031006336212,-0.492738425731659,0.816817104816437,0.462175667285919,-0.450367152690887,0.763912975788116,0.679017424583435,-0.728919565677643,0.0872446671128273,0.635707318782806,-0.766970098018646,0.0873676165938377,0.730437219142914,-0.677457690238953,0.0866757929325104,0.675122916698456,-0.736522972583771,0.0417502447962761,0.432282745838165,-0.893317639827728,0.122944191098213,0.636755704879761,-0.769004762172699,0.0563371628522873,0.722394227981567,-0.679099559783936,0.130270883440971,0.635251700878143,-0.766179144382477,0.097081333398819,0.515028476715088,-0.85543966293335,0.0544851124286652,0.636433005332947,-0.768325448036194,0.0680379197001457,0.428315341472626,-0.899120092391968,0.0901610851287842,0.35514909029007,-0.929849982261658,0.096167266368866,0.636285603046417,-0.768036007881165,0.0725358799099922,0.36179181933403,-0.9320387840271,0.0202608779072762,0.516237437725067,-0.855041146278381,0.049026470631361,0.73505687713623,-0.57688444852829,0.356224298477173,0.515080511569977,-0.741125643253326,0.430609911680222,0.646260440349579,-0.654530823230743,0.392347872257233,0.730812430381775,-0.611408054828644,0.303469002246857,0.524717748165131,-0.724114716053009,0.44758152961731,0.515127718448639,-0.727668762207031,0.452925622463226,0.64434152841568,-0.648642003536224,0.405077368021011,0.514884352684021,-0.748956501483917,0.417083233594894,0.415107846260071,-0.807648479938507,0.418795228004456,0.515127837657928,-0.727676391601563,0.452913403511047,0.524671852588654,-0.724253237247467,0.447411119937897,
- 0.346104860305786,-0.770308375358582,0.535571217536926,0.413283467292786,-0.802984952926636,0.429432064294815,0.514870643615723,-0.74936044216156,0.416374027729034,0.340518623590469,-0.83352530002594,0.435066282749176,-0.157973438501358,-0.270460963249207,0.94968169927597,-0.357955306768417,-0.178224086761475,0.916571974754334,-0.209922507405281,-0.248128861188889,0.945708572864532,-0.156070455908775,-0.264652580022812,0.951630711555481,-0.209993675351143,-0.246299311518669,0.9461709856987,-0.0337038524448872,-0.30253142118454,0.952543377876282,-0.364792436361313,-0.264074832201004,0.892855584621429,-0.282545626163483,-0.263925284147263,0.922231733798981,-0.209350511431694,-0.26216185092926,0.942042231559753,-0.209577351808548,-0.256732374429703,0.943486094474792,-0.113120451569557,-0.268899321556091,0.956502437591553,-0.0315618477761745,-0.277093648910522,0.960324466228485,-0.209465280175209,-0.259435474872589,0.942771196365356,-0.275790929794312,-0.287115395069122,0.917335450649261,-0.12060908973217,-0.220835790038109,0.967824876308441,-0.0328063517808914,-0.291864514350891,0.955896854400635,-0.110076859593391,-0.287747740745544,0.951359212398529,-0.00875348132103682,-0.292786806821823,0.956137716770172,-0.259042203426361,-0.341601252555847,0.903441071510315,-0.102711237967014,-0.28715854883194,0.952360510826111,-0.109746932983398,-0.289768308401108,0.950783848762512,-0.111368745565414,-0.279793560504913,0.95357882976532,-0.105477496981621,-0.278579026460648,0.954603672027588,-0.0106467362493277,-0.257724046707153,0.96615993976593,0.728885114192963,-0.663710832595825,-0.167971774935722,0.513628482818604,-0.826147675514221,-0.231658890843391,0.641995251178741,-0.740875959396362,-0.197344750165939,0.723590135574341,-0.648152112960815,-0.237310335040092,0.52118855714798,-0.825273513793945,-0.217453584074974,0.513633131980896,-0.830246269702911,-0.216499611735344,0.641644895076752,-0.741818785667419,-0.194927752017975,0.513327360153198,-0.818672776222229,-0.257429450750351,0.417580246925354,-0.858946859836578,-0.296373248100281,
- 0.513623058795929,-0.830836474895477,-0.214248031377792,0.521632015705109,-0.82552969455719,-0.215408354997635,0.340801805257797,-0.921479403972626,-0.186359822750092,0.41461044549942,-0.866519868373871,-0.277923405170441,0.513460874557495,-0.821065247058868,-0.249419152736664,0.335493683815002,-0.893884003162384,-0.297347337007523,0.601525187492371,-0.78280645608902,-0.159315750002861,0.559342086315155,-0.811583697795868,-0.168725460767746,0.666475117206573,-0.731656074523926,-0.143144592642784,0.600437819957733,-0.780871152877808,-0.172380059957504,0.350638419389725,-0.926363706588745,-0.137488305568695,0.55927187204361,-0.81195056438446,-0.167186126112938,0.655594885349274,-0.749612808227539,-0.0909725651144981,0.558319509029388,-0.816193521022797,-0.148685544729233,0.431884557008743,-0.876381695270538,-0.213145241141319,0.557713389396667,-0.818389475345612,-0.138544082641602,0.349286556243896,-0.925118148326874,-0.148846998810768,0.265432894229889,-0.952291429042816,-0.150619849562645,0.558568060398102,-0.815195560455322,-0.153159618377686,0.274379462003708,-0.930062770843506,-0.244334265589714,0.428355842828751,-0.881366848945618,-0.199258059263229,0.634643077850342,-0.719281136989594,-0.282600075006485,0.587714493274689,-0.755149602890015,-0.290414839982986,0.696154177188873,-0.665157437324524,-0.270064920186996,0.624734342098236,-0.709723472595215,-0.325575858354568,0.385352313518524,-0.88127076625824,-0.273615926504135,0.584930539131165,-0.746052443981171,-0.318217039108276,0.693511247634888,-0.683425962924957,-0.227971807122231,0.588389873504639,-0.75753253698349,-0.282740294933319,0.461259871721268,-0.821210980415344,-0.335934430360794,0.585995137691498,-0.749415159225464,-0.308199048042297,0.376845389604568,-0.874333739280701,-0.305823624134064,0.30377933382988,-0.903900682926178,-0.301133871078491,0.586280822753906,-0.75033974647522,-0.305393368005753,0.300341337919235,-0.877772390842438,-0.373243421316147,0.461732029914856,-0.818973004817963,-0.340715140104294,0.679099142551422,-0.212468102574348,-0.702624917030334,
- 0.633763253688812,-0.219487443566322,-0.741734087467194,0.730358600616455,-0.203002214431763,-0.652201294898987,0.680056095123291,-0.226969614624977,-0.697143197059631,0.435539573431015,-0.334789752960205,-0.83559638261795,0.631928145885468,-0.252290397882462,-0.732814013957977,0.727062821388245,-0.221468508243561,-0.649870276451111,0.634423077106476,-0.202455401420593,-0.74600213766098,0.52136766910553,-0.177775204181671,-0.834608793258667,0.631278395652771,-0.261486560106277,-0.730145514011383,0.432931810617447,-0.307209074497223,-0.847462594509125,0.350543051958084,-0.32026070356369,-0.880086779594421,0.634346008300781,-0.204741820693016,-0.745443522930145,0.363847523927689,-0.182076990604401,-0.913489460945129,0.517298519611359,-0.196888744831085,-0.832848787307739,0.735294759273529,-0.47404956817627,-0.484374612569809,0.517521917819977,-0.574550151824951,-0.634084641933441,0.636948764324188,-0.527674794197083,-0.56201046705246,0.729726254940033,-0.403096228837967,-0.552279829978943,0.524556875228882,-0.563928544521332,-0.637828171253204,0.517600476741791,-0.568215131759644,-0.639704048633575,0.639621198177338,-0.512974560260773,-0.572487354278564,0.517513692378998,-0.54039466381073,-0.663440525531769,0.420074880123138,-0.552294552326202,-0.720074951648712,0.517543315887451,-0.573091685771942,-0.635385572910309,0.525817811489105,-0.567862987518311,-0.633282899856567,0.345694094896317,-0.663478791713715,-0.663544774055481,0.415314853191376,-0.576627731323242,-0.703572392463684,0.517640769481659,-0.553579032421112,-0.652379035949707,0.341715157032013,-0.587916791439056,-0.733201622962952,-0.244065657258034,0.949140310287476,0.198908552527428,-0.308661282062531,0.93287581205368,0.185663610696793,-0.305534988641739,0.933771431446075,0.18633134663105,-0.31534817814827,0.92050302028656,0.230716094374657,-0.242456331849098,0.938047587871552,0.247551620006561,-0.205528050661087,0.944734811782837,0.255410224199295,-0.306971788406372,0.92946583032608,0.204601004719734,-0.26120525598526,0.945184648036957,0.195953667163849,
- -0.244227483868599,0.950387418270111,0.192656815052032,-0.24240742623806,0.937734305858612,0.248783141374588,-0.2400833517313,0.938277006149292,0.248990461230278,-0.204992085695267,0.945784211158752,0.251933664083481,-0.262474417686462,0.945821642875671,0.191124558448792,-0.31147912144661,0.928471684455872,0.202289581298828,-0.244367405772209,0.951499104499817,0.186906442046165,-0.244345545768738,0.930778920650482,0.271929919719696,-0.241353213787079,0.931188941001892,0.273195743560791,-0.305679500102997,0.920051991939545,0.245080396533012,-0.310761332511902,0.927481651306152,0.207858592271805,-0.261043131351471,0.945101857185364,0.196568578481674,-0.293456584215164,0.933958053588867,0.203974455595016,-0.304557710886002,0.918323993682861,0.252835333347321,-0.521008133888245,0.832094490528107,0.190182462334633,-0.243467092514038,0.932391881942749,0.267150163650513,-0.365335315465927,0.903080821037292,0.225776597857475,-0.31009766459465,0.92655211687088,0.21293343603611,-0.292038887739182,0.933375775814056,0.208621546626091,-0.51241809129715,0.845700681209564,0.149058058857918,-0.307771980762482,0.923194587230682,0.230191618204117,-0.436482429504395,0.881224513053894,0.181456357240677,-0.433042138814926,0.876817226409912,0.208964094519615,-0.31677970290184,0.935215473175049,0.158185586333275,-0.379379689693451,0.906439781188965,0.185574978590012,-0.167472064495087,0.515746772289276,0.840213298797607,-0.114664226770401,0.566110849380493,0.816315293312073,-0.268044114112854,0.408254474401474,0.872628509998322,-0.103754758834839,0.555891871452332,0.824753999710083,-0.26826274394989,0.494834393262863,0.82654345035553,-0.319208562374115,0.472062170505524,0.821744084358215,-0.0212771594524384,0.44394788146019,0.895799994468689,0.0380473546683788,0.652610719203949,0.756737649440765,-0.0149676352739334,0.467796146869659,0.883709669113159,-0.315065383911133,0.565395295619965,0.762274205684662,-0.287609905004501,0.575841426849365,0.765302181243896,-0.168488532304764,0.614513039588928,0.770704507827759,-0.211038962006569,0.650305449962616,0.72977077960968,
- -0.202459514141083,0.687033236026764,0.697850584983826,-0.251518577337265,0.395674794912338,0.883277893066406,-0.0972153097391129,0.549701750278473,0.829684972763062,-0.337790936231613,0.505581557750702,0.793904662132263,-0.305498778820038,0.513588786125183,0.801808655261993,-0.283636868000031,0.366132497787476,0.886282801628113,-0.267709732055664,0.416455686092377,0.868847727775574,-0.157906785607338,0.683823466300964,0.712355971336365,-0.279651612043381,0.431739836931229,0.857552170753479,-0.433889895677567,0.380628228187561,0.816615998744965,-0.288140416145325,0.429301351308823,0.855964660644531,-0.148545280098915,0.262096345424652,0.953540682792664,-0.115437515079975,0.309035539627075,0.944018661975861,-0.20801006257534,0.173612341284752,0.962595701217651,-0.385851442813873,0.180191889405251,0.904792666435242,-0.151900112628937,0.266483992338181,0.951794505119324,-0.262478649616241,0.22831092774868,0.937538862228394,0.115214452147484,0.919083893299103,-0.376842796802521,-0.00176151958294213,0.934680819511414,-0.355483919382095,-0.0352865755558014,0.936674296855927,-0.348419517278671,0.115288004279137,0.919252753257751,-0.376408189535141,0.185671985149384,0.906229138374329,-0.379835069179535,-0.00155287189409137,0.930383563041687,-0.366584450006485,-0.0354762114584446,0.936353266239166,-0.349262177944183,-0.00175684108398855,0.934585750102997,-0.35573348402977,-0.19053527712822,0.930099546909332,-0.314024120569229,-0.00195230706594884,0.938498497009277,-0.345277786254883,0.184195697307587,0.930389225482941,-0.316935211420059,0.0839407816529274,0.938923418521881,-0.33373162150383,-0.192295417189598,0.920832693576813,-0.339248657226563,-0.00201630988158286,0.939755320549011,-0.341841965913773,-0.0915922373533249,0.935156643390656,-0.342188477516174,-0.0892717391252518,0.928419888019562,-0.360648065805435,-0.00194011465646327,0.93825775384903,-0.345931589603424,0.0831056162714958,0.940678596496582,-0.328963786363602,0.163167923688889,0.730411946773529,-0.663230538368225,-0.0106944749131799,0.733968675136566,-0.679099142551422,
- 0.214229002594948,0.725024938583374,-0.654556930065155,0.161581575870514,0.739426612854004,-0.653559267520905,-0.0169249251484871,0.728611290454865,-0.684718370437622,-0.010771949775517,0.72938483953476,-0.684018790721893,0.212212949991226,0.696703433990479,-0.685251832008362,-0.0106548415496945,0.736289858818054,-0.676582455635071,0.0632740333676338,0.727360785007477,-0.683332145214081,-0.0107647078111768,0.729816019535065,-0.683558940887451,-0.0170034673064947,0.728908181190491,-0.684400320053101,-0.151403784751892,0.702117264270782,-0.695778906345367,0.0621632114052773,0.723649799823761,-0.687362194061279,-0.010652975179255,0.736398696899414,-0.676463901996613,-0.099913977086544,0.746421635150909,-0.657930016517639,-0.102328404784203,0.730000019073486,-0.675743281841278,-0.0106926597654819,0.734075307846069,-0.678983926773071,-0.154434695839882,0.724896371364594,-0.671323478221893,0.157359406352043,-0.668064773082733,-0.727274060249329,-0.0161161683499813,-0.68225109577179,-0.730940282344818,0.208881244063377,-0.659793794155121,-0.721831500530243,0.154451534152031,-0.649290919303894,-0.744692027568817,-0.0237869098782539,-0.678812801837921,-0.733926057815552,-0.0160154569894075,-0.677987635135651,-0.734898865222931,0.206909865140915,-0.686250448226929,-0.697315335273743,-0.0159610658884048,-0.675685167312622,-0.737017571926117,0.0579235851764679,-0.683061599731445,-0.728060245513916,-0.0160251669585705,-0.678398728370667,-0.734519243240356,-0.0236571207642555,-0.679360806941986,-0.733422994613647,-0.15751388669014,-0.689543902873993,-0.706907749176025,0.0560182332992554,-0.689761638641357,-0.721866250038147,-0.0160243306308985,-0.67836332321167,-0.734551846981049,-0.111172944307327,-0.657573819160461,-0.745142459869385,-0.114551544189453,-0.679723799228668,-0.724467754364014,-0.0161628611385822,-0.684227764606476,-0.729089319705963,-0.159144580364227,-0.675466895103455,-0.720012187957764,0.165157660841942,0.65077668428421,-0.7410888671875,-0.0119247734546661,0.653047442436218,-0.757223129272461,0.209388554096222,0.646918833255768,-0.733247876167297,
- 0.161892250180244,0.672361850738525,-0.722302258014679,-0.0158831831067801,0.658745765686035,-0.752197921276093,-0.0118392230942845,0.659295558929443,-0.751790642738342,0.208440601825714,0.632007658481598,-0.746404051780701,-0.0116727519780397,0.671160936355591,-0.741219758987427,0.0676491409540176,0.660932958126068,-0.747389614582062,-0.0118651613593102,0.657412230968475,-0.753437757492065,-0.0154093783348799,0.656853675842285,-0.753860533237457,-0.154335826635361,0.62813413143158,-0.762645363807678,0.0666843727231026,0.657311916351318,-0.750662505626678,-0.0116581814363599,0.672181725502014,-0.740294516086578,-0.103157229721546,0.684053540229797,-0.722100675106049,-0.106402464210987,0.658730387687683,-0.74481737613678,-0.0117922378703952,0.662683129310608,-0.748807072639465,-0.157243669033051,0.654120922088623,-0.739865064620972,-0.11200338602066,0.809284567832947,-0.576640188694,0.0196284279227257,0.830936849117279,-0.556020379066467,0.0545367449522018,0.834145724773407,-0.548841118812561,-0.113729014992714,0.815482914447784,-0.567497432231903,-0.173049539327621,0.80446070432663,-0.568240106105804,0.0195902455598116,0.829320311546326,-0.558429956436157,0.0548529773950577,0.83331960439682,-0.55006331205368,0.019616924226284,0.83044970035553,-0.55674809217453,0.201392978429794,0.833584606647491,-0.514371156692505,0.019568869844079,0.828415393829346,-0.559772372245789,-0.172329664230347,0.829059600830078,-0.53194260597229,-0.0765468031167984,0.832659482955933,-0.548469483852386,0.204147219657898,0.810033798217773,-0.549699127674103,0.0195913296192884,0.829366266727448,-0.558361649513245,0.113891914486885,0.823097109794617,-0.556363105773926,0.111543715000153,0.811788201332092,-0.573199808597565,0.0195333268493414,0.826910793781281,-0.561993896961212,-0.0759124532341957,0.834882497787476,-0.545168399810791,-0.154029533267021,0.552098572254181,0.819427847862244,0.0133503675460815,0.565165579319,0.824869453907013,-0.209822535514832,0.544133067131042,0.812338411808014,-0.151868343353271,0.536671698093414,0.830011785030365,
- 0.0153906121850014,0.565768361091614,0.824420630931854,0.013358561322093,0.565512418746948,0.824631571769714,-0.20749631524086,0.577208042144775,0.78979504108429,0.0132590169087052,0.561298370361328,0.827507317066193,-0.0606747046113014,0.569802701473236,0.819538533687592,0.0133725050836802,0.566102743148804,0.824226200580597,0.0152598097920418,0.566383957862854,0.824000239372253,0.154548361897469,0.58135062456131,0.798840582370758,-0.0594583451747894,0.574621140956879,0.816256940364838,0.0132630513980985,0.56146913766861,0.827391445636749,0.112857840955257,0.538333356380463,0.835140943527222,0.116388402879238,0.563908636569977,0.817594468593597,0.0134136658161879,0.567845165729523,0.823026061058044,0.156558036804199,0.56071537733078,0.81307315826416,0.115782715380192,0.990626394748688,-0.0724832192063332,-0.00713666621595621,0.998903393745422,-0.0462734214961529,-0.0403953157365322,0.998420417308807,-0.0390514358878136,0.117689236998558,0.991209983825684,-0.0604318678379059,0.190213948488235,0.979399383068085,-0.0677903071045876,-0.00712237600237131,0.998861968517303,-0.0471601001918316,-0.0407110750675201,0.998347103595734,-0.0405686534941196,-0.00712179485708475,0.998860239982605,-0.047196164727211,-0.189198449254036,0.981881976127625,-0.0105798551812768,-0.00711974548175931,0.998854339122772,-0.0473233684897423,0.189173728227615,0.981710016727448,-0.0214191079139709,0.085864283144474,0.995682001113892,-0.0352824963629246,-0.1913201212883,0.980334997177124,-0.0483719855546951,-0.00716438516974449,0.998981356620789,-0.0445522218942642,-0.0892260745167732,0.994928002357483,-0.046443372964859,-0.0870128199458122,0.994123995304108,-0.0643914863467216,-0.00709736440330744,0.998787760734558,-0.0487112812697887,0.0849979370832443,0.995921909809113,-0.0302510224282742,0.166260376572609,-0.54681533575058,-0.820579349994659,-0.0132587756961584,-0.561288177967072,-0.827514231204987,0.210056409239769,-0.540464043617249,-0.81472384929657,0.163900166749954,-0.528644561767578,-0.832869529724121,-0.0164877008646727,-0.56059068441391,-0.827928900718689,
- -0.013232609257102,-0.560180425643921,-0.828265011310577,0.207935810089111,-0.571374773979187,-0.793910324573517,-0.0131134400144219,-0.555135607719421,-0.831656575202942,0.051368921995163,-0.562792479991913,-0.825000464916229,-0.0132477898150682,-0.560823082923889,-0.827829658985138,-0.0163406282663345,-0.561286270618439,-0.827460408210754,-0.161202654242516,-0.576723992824554,-0.800876498222351,0.0506418719887733,-0.565665423870087,-0.823078393936157,-0.0130839264020324,-0.553886234760284,-0.832489609718323,-0.114206895232201,-0.530284106731415,-0.840092539787292,-0.116968341171741,-0.552322208881378,-0.825384020805359,-0.0131410174071789,-0.556303024291992,-0.83087569475174,-0.164025366306305,-0.548510789871216,-0.819897294044495,-0.144806295633316,0.970910370349884,-0.19069404900074,-0.231097936630249,0.945536613464355,-0.229247137904167,-0.164615154266357,0.965940833091736,-0.199650526046753,-0.142846778035164,0.968048870563507,-0.206098049879074,-0.334551692008972,0.932797074317932,-0.134033411741257,-0.238072842359543,0.955947399139404,-0.171714544296265,-0.159330174326897,0.963764607906342,-0.213943064212799,-0.113112233579159,0.972896695137024,-0.201687067747116,-0.142407923936844,0.967382311820984,-0.209502920508385,-0.322726964950562,0.942184686660767,-0.090196929872036,-0.151440247893333,0.979081153869629,-0.13588935136795,-0.0734404176473618,0.985206723213196,-0.154836252331734,-0.165069133043289,0.961723506450653,-0.21872378885746,-0.141952559351921,0.966681122779846,-0.213019371032715,-0.111930638551712,0.972244799137115,-0.205454751849175,-0.166345462203026,0.978669226169586,-0.120564810931683,-0.0736719220876694,0.985016167163849,-0.155934706330299,-0.152589917182922,0.980233669281006,-0.125930473208427,-0.165014371275902,0.961158394813538,-0.221235141158104,-0.111238151788712,0.971855938434601,-0.207658633589745,-0.152800261974335,0.9638671875,-0.21820193529129,-0.072243943810463,0.986169993877411,-0.149162903428078,-0.16619448363781,0.975568652153015,-0.143684297800064,-0.11903589963913,0.982006669044495,-0.14660656452179,
- -0.309226095676422,0.919155240058899,-0.243994057178497,-0.164908692240715,0.960081219673157,-0.225941091775894,-0.151382148265839,0.962757408618927,-0.224012523889542,-0.166287988424301,0.977324068546295,-0.131095811724663,-0.282858073711395,0.954172313213348,-0.0977061688899994,-0.118510231375694,0.982454419136047,-0.144009947776794,-0.28294163942337,0.954109311103821,-0.0980799943208694,-0.166319951415062,0.978031516075134,-0.125666484236717,-0.289155155420303,0.952401995658875,-0.0965396761894226,-0.14749900996685,0.899565100669861,0.411128640174866,-0.154912024736404,0.8988196849823,0.410031080245972,-0.129674971103668,0.901145696640015,0.413667500019073,-0.128966748714447,0.915101230144501,0.382043659687042,-0.156786933541298,0.908447563648224,0.387480229139328,-0.152048647403717,0.90963751077652,0.386575669050217,-0.130408555269241,0.87970107793808,0.45729598402977,-0.0982991904020309,0.878860712051392,0.466841638088226,-0.15613429248333,0.879660248756409,0.449243783950806,-0.213246926665306,0.898232579231262,0.384322881698608,-0.128717601299286,0.919178426265717,0.372213453054428,-0.154956862330437,0.913462340831757,0.376264750957489,-0.102629937231541,0.872483015060425,0.477745413780212,-0.130523532629013,0.87492960691452,0.466327995061874,-0.174905747175217,0.877179861068726,0.44717276096344,-0.166005969047546,0.909607350826263,0.380862802267075,-0.128658875823021,0.92009162902832,0.369970768690109,-0.210997015237808,0.894889950752258,0.393258482217789,-0.174731642007828,0.877898871898651,0.445827752351761,-0.106681935489178,0.873680591583252,0.47465905547142,-0.102129243314266,0.873229682445526,0.476486802101135,-0.368977189064026,0.791553854942322,0.487132757902145,-0.179849162697792,0.855071306228638,0.486320406198502,-0.185613870620728,0.853664457798004,0.486625850200653,-0.0912387445569038,0.891620695590973,0.443495243787766,-0.169222861528397,0.898838758468628,0.404292702674866,-0.193939417600632,0.899693667888641,0.391073852777481,-0.291777402162552,0.489025831222534,0.822021663188934,-0.208181113004684,0.519256472587585,0.828874886035919,
- -0.271472662687302,0.496806502342224,0.824309349060059,-0.122304335236549,0.984577178955078,-0.125097364187241,-0.15360888838768,0.981928527355194,-0.110547728836536,-0.215587288141251,0.973112046718597,-0.0810882821679115,-0.313237935304642,0.934390664100647,-0.169694423675537,-0.120483122766018,0.987185478210449,-0.104636721313,-0.220994710922241,0.96533077955246,-0.13891676068306,-0.149188503623009,0.984039843082428,-0.0969969034194946,-0.12051297724247,0.987146556377411,-0.10496798157692,-0.0976729393005371,0.988983392715454,-0.111228659749031,-0.126602992415428,0.976267218589783,-0.175710573792458,-0.299770772457123,0.929624199867249,-0.21432763338089,-0.0673266127705574,0.984593689441681,-0.161376565694809,-0.147716775536537,0.98454624414444,-0.0940661951899529,-0.0965868160128593,0.989509880542755,-0.107430890202522,-0.120182476937771,0.987568974494934,-0.10130974650383,-0.0672271475195885,0.984533369541168,-0.161785498261452,-0.144872725009918,0.970798671245575,-0.191211506724358,-0.127331167459488,0.974521279335022,-0.184648424386978,-0.133935078978539,0.986411392688751,-0.0951519384980202,-0.0959370732307434,0.989816784858704,-0.105160795152187,-0.147773295640945,0.984783709049225,-0.0914562568068504,-0.145646974444389,0.9747713804245,-0.169138476252556,-0.0664754435420036,0.984072029590607,-0.164873450994492,-0.106738016009331,0.980133056640625,-0.167171031236649,-0.293368279933929,0.954009234905243,-0.0616564154624939,-0.13260343670845,0.987172365188599,-0.0889217481017113,-0.147878557443619,0.98521888256073,-0.086462639272213,-0.258926063776016,0.942971050739288,-0.209195882081985,-0.145236000418663,0.972676813602448,-0.181125625967979,-0.105836875736713,0.979585647583008,-0.170911267399788,-0.145039916038513,0.971666038036346,-0.18662403523922,-0.25895944237709,0.942991435527802,-0.209062784910202,-0.267857074737549,0.940133213996887,-0.210718378424644,0.153458952903748,0.500648319721222,0.851939976215363,-0.0216047149151564,0.51495373249054,0.856945633888245,0.206186711788177,0.49317079782486,0.845144689083099,
- 0.152203932404518,0.491708874702454,0.857354283332825,-0.0267197005450726,0.523909091949463,0.851354956626892,-0.0216558761894703,0.52323454618454,0.851913511753082,0.204981043934822,0.518873333930969,0.829911530017853,-0.0215178970247507,0.501491606235504,0.864894866943359,0.050631009042263,0.509931981563568,0.85872346162796,-0.0216565132141113,0.523339629173279,0.851849019527435,-0.0266701616346836,0.524137318134308,0.851216018199921,-0.162802755832672,0.54055243730545,0.825407922267914,0.0490596517920494,0.516758143901825,0.854724705219269,-0.0215313546359539,0.503534018993378,0.863707065582275,-0.117932677268982,0.481164127588272,0.86866158246994,-0.122063845396042,0.518553912639618,0.846287369728088,-0.0216456726193428,0.521560490131378,0.85293972492218,-0.165537491440773,0.515592217445374,0.840691387653351,0.156588271260262,0.70458447933197,-0.692127764225006,-0.0111348461359739,0.706492483615875,-0.707632958889008,0.206879034638405,0.700027704238892,-0.683492660522461,0.154254853725433,0.717777132987976,-0.67897093296051,-0.0110565796494484,0.706120193004608,-0.708005666732788,-0.0111348396167159,0.706109941005707,-0.708014726638794,0.205365926027298,0.673124253749847,-0.71044260263443,-0.0111347157508135,0.710515022277832,-0.703593909740448,0.061493381857872,0.701810359954834,-0.709704756736755,-0.0111348079517484,0.705129623413086,-0.708991050720215,-0.0108008682727814,0.705180168151855,-0.70894593000412,-0.153574958443642,0.676033139228821,-0.720689952373505,0.0608156323432922,0.699417233467102,-0.712121486663818,-0.0111345667392015,0.712086617946625,-0.702003359794617,-0.108921013772488,0.723098993301392,-0.682102799415588,-0.111695125699043,0.70143324136734,-0.703928768634796,-0.0111348461359739,0.70647794008255,-0.707647442817688,-0.156249016523361,0.696880280971527,-0.699960112571716,0.120450869202614,-0.376554667949677,-0.918530523777008,-0.00458508217707276,-0.353222638368607,-0.935528039932251,-0.0447604916989803,-0.344488590955734,-0.937722861766815,0.121832519769669,-0.368902742862701,-0.921448647975922,
- 0.182654917240143,-0.372068583965302,-0.910056233406067,-0.00453367317095399,-0.357952445745468,-0.933728933334351,-0.0451032966375351,-0.3459792137146,-0.937157452106476,-0.00457602459937334,-0.354057371616364,-0.93521249294281,-0.183243691921234,-0.313828587532043,-0.931629478931427,-0.00461062602698803,-0.35086515545845,-0.936414659023285,0.181882426142693,-0.32352215051651,-0.928575396537781,0.0849160626530647,-0.339304327964783,-0.936836123466492,-0.185912027955055,-0.351016402244568,-0.917727768421173,-0.00457663973793387,-0.354000717401505,-0.935233950614929,-0.0928855091333389,-0.354024529457092,-0.930612146854401,-0.0910880044102669,-0.369077533483505,-0.92492413520813,-0.00456521334126592,-0.355052977800369,-0.934835076332092,0.0846370160579681,-0.337709337472916,-0.937437474727631,0.154145032167435,-0.987382054328918,0.0362764336168766,-0.0164326261729002,-0.998869717121124,0.0446022152900696,0.203800693154335,-0.978435397148132,0.0336068235337734,0.152176901698112,-0.988196611404419,0.017598420381546,-0.0159881375730038,-0.998842597007751,0.045364111661911,-0.0164451915770769,-0.998831808567047,0.0454378761351109,0.201896637678146,-0.976751506328583,0.0720711126923561,-0.0163472462445498,-0.999107778072357,0.0389424525201321,0.0620477311313152,-0.996765315532684,0.0510787665843964,-0.0164664015173912,-0.998766183853149,0.0468504130840302,-0.0157490931451321,-0.998784184455872,0.0467143543064594,-0.160071566700935,-0.98435652256012,0.0736157298088074,0.0612863563001156,-0.996614694595337,0.0548009537160397,-0.016311451792717,-0.999197602272034,0.0365795604884624,-0.11279408633709,-0.993525803089142,0.0135642047971487,-0.116093754768372,-0.992249846458435,0.0443014837801456,-0.0164357051253319,-0.998860538005829,0.0448068752884865,-0.162442699074745,-0.98574036359787,0.04391223564744,-0.245380997657776,0.96915340423584,-0.0230177082121372,-0.314397633075714,0.948765158653259,-0.0316052548587322,-0.304809153079987,0.951927900314331,-0.0304098054766655,-0.313860416412354,0.948806643486023,-0.0354634448885918,
- -0.24545606970787,0.969088017940521,-0.0248949304223061,-0.204036220908165,0.978787958621979,-0.0185278113931417,-0.306289374828339,0.951905608177185,-0.00791250262409449,-0.252703130245209,0.967273354530334,-0.0228790827095509,-0.245455458760262,0.969088554382324,-0.0248796753585339,-0.245389029383659,0.969146609306335,-0.0232179705053568,-0.236635476350784,0.97132533788681,-0.0230394341051579,-0.203454673290253,0.978829324245453,-0.0223493501543999,-0.251176595687866,0.96778678894043,-0.0172922909259796,-0.302072107791901,0.953284323215485,-0.00125519931316376,-0.245223522186279,0.969277441501617,-0.0191490054130554,-0.24102383852005,0.970516741275787,0.00219921767711639,-0.244345188140869,0.969687879085541,0.000977400690317154,-0.304916977882385,0.952135801315308,-0.0215197578072548,-0.309645712375641,0.94911652803421,-0.057424109429121,-0.265609681606293,0.961433231830597,-0.0713984593749046,-0.293493628501892,0.953909814357758,-0.0625912100076675,-0.303841352462769,0.95262336730957,-0.0137514043599367,-0.520098507404327,0.852654814720154,-0.049772709608078,-0.240045309066772,0.970755338668823,-0.00350810587406158,-0.370162695646286,0.928235828876495,-0.0368509106338024,-0.309661626815796,0.949103593826294,-0.0575503893196583,-0.293596297502518,0.953856229782104,-0.0629247799515724,-0.511670231819153,0.854145407676697,-0.0928935185074806,-0.30696314573288,0.95101410150528,-0.0366864576935768,-0.433865189552307,0.898158729076386,-0.071217954158783,-0.407855868339539,0.907499730587006,0.100488394498825,-0.296296894550323,0.95436418056488,0.0373795665800571,-0.334165573120117,0.94069516658783,0.0585315451025963,-0.165837049484253,0.731336295604706,0.661547780036926,-0.115440249443054,0.771074831485748,0.626192629337311,-0.263645648956299,0.640363335609436,0.721405327320099,-0.104972332715988,0.763945281505585,0.63668566942215,-0.269274294376373,0.705744624137878,0.655298352241516,-0.313288450241089,0.685810685157776,0.65689742565155,-0.0206461530178785,0.678559303283691,0.734255492687225,0.0381026715040207,0.838202476501465,0.544026494026184,
- -0.015233563259244,0.695290505886078,0.718567430973053,-0.31635320186615,0.755376875400543,0.573869645595551,-0.288929045200348,0.7662752866745,0.573883414268494,-0.169837564229965,0.805051565170288,0.568372368812561,-0.211366549134254,0.827376544475555,0.520357847213745,-0.202508121728897,0.854636311531067,0.478107988834381,-0.251162528991699,0.629945456981659,0.734905660152435,-0.0985375493764877,0.759469747543335,0.643036544322968,-0.334592491388321,0.708301603794098,0.621576011180878,-0.306411981582642,0.716907382011414,0.626223266124725,-0.28280109167099,0.6017005443573,0.746980607509613,-0.266719371080399,0.64531397819519,0.715842723846436,-0.157941117882729,0.855639159679413,0.492885828018188,-0.27678370475769,0.65508234500885,0.7030348777771,-0.436719298362732,0.592331051826477,0.677067339420319,-0.288419902324677,0.651277899742126,0.70189106464386,-0.147165730595589,0.519622385501862,0.841626286506653,-0.113189071416855,0.563026368618011,0.818651139736176,-0.208418309688568,0.434752285480499,0.876100659370422,-0.387540817260742,0.425087928771973,0.817992925643921,-0.149827301502228,0.522598206996918,0.839311003684998,-0.263384908437729,0.480911195278168,0.836273193359375,0.151890844106674,0.593506515026093,0.790366470813751,-0.0172862857580185,0.608261823654175,0.793548226356506,0.20833820104599,0.584609031677246,0.784109473228455,0.148734524846077,0.573209762573242,0.805796921253204,-0.0260827429592609,0.604439318180084,0.796224236488342,-0.0173066183924675,0.603324890136719,0.797307789325714,0.207004100084305,0.611218690872192,0.763911783695221,-0.0173242054879665,0.598897457122803,0.800638318061829,0.0608289241790771,0.606742262840271,0.792567789554596,-0.0173006653785706,0.604789555072784,0.796197414398193,-0.025701317936182,0.6060391664505,0.795019447803497,-0.156383246183395,0.619733214378357,0.769074141979218,0.0601104497909546,0.609640598297119,0.790395498275757,-0.0173320211470127,0.596879899501801,0.802143394947052,-0.11875969171524,0.574435591697693,0.809888780117035,-0.121531493961811,0.597331881523132,0.79273247718811,
- -0.017316160723567,0.600941300392151,0.799105584621429,-0.15930213034153,0.594385743141174,0.788243889808655,0.167323976755142,0.519441485404968,-0.837963759899139,-0.0134653551504016,0.518370866775513,-0.855050027370453,0.212937280535698,0.516951382160187,-0.829107284545898,0.165187582373619,0.534410417079926,-0.828926146030426,-0.0179649237543345,0.515023529529572,-0.85698789358139,-0.0134906489402056,0.51571124792099,-0.856656193733215,0.210679903626442,0.476454019546509,-0.853584051132202,-0.0134792411699891,0.516912996768951,-0.855931758880615,0.0605052374303341,0.506529331207275,-0.860097169876099,-0.0134958038106561,0.51516717672348,-0.856983482837677,-0.0178299471735954,0.514399766921997,-0.857365131378174,-0.153392985463142,0.485261082649231,-0.860809087753296,0.059763215482235,0.503313839435577,-0.862034499645233,-0.0134633528068662,0.518580377101898,-0.854922890663147,-0.103018864989281,0.533284366130829,-0.839639782905579,-0.105539456009865,0.511906862258911,-0.852533280849457,-0.0134967006742954,0.515072345733643,-0.857040464878082,-0.155860856175423,0.508304715156555,-0.846955537796021,0.1114746555686,-0.488123178482056,0.865626573562622,-0.0189350172877312,-0.516153454780579,0.856286823749542,-0.0505846068263054,-0.521574079990387,0.851705193519592,0.114459455013275,-0.503801047801971,0.856203019618988,0.171937748789787,-0.493852227926254,0.852377474308014,-0.0190096572041512,-0.5201136469841,0.853885591030121,-0.0508856996893883,-0.520343482494354,0.852439641952515,-0.0189213380217552,-0.515428841114044,0.856723487377167,-0.202115684747696,-0.53609836101532,0.819602251052856,-0.019034480676055,-0.521433055400848,0.853079974651337,0.170939967036247,-0.533738195896149,0.82819265127182,0.0774562284350395,-0.530107617378235,0.844385266304016,-0.204305708408356,-0.505513489246368,0.838281273841858,-0.0190013442188501,-0.519672036170959,0.854154467582703,-0.10554500669241,-0.515329122543335,0.850468218326569,-0.104004979133606,-0.503696501255035,0.857597231864929,-0.0190184097737074,-0.520578742027283,0.853601813316345,
- 0.0765556395053864,-0.534862875938416,0.841463625431061,0.163337513804436,0.41783282160759,-0.893720686435699,-0.0143236899748445,0.415338188409805,-0.909554302692413,0.210638463497162,0.416220456361771,-0.884529173374176,0.159905150532722,0.443592488765717,-0.881848096847534,-0.0163117200136185,0.422254890203476,-0.906330406665802,-0.0142710749059916,0.422580063343048,-0.906213223934174,0.209801003336906,0.397953987121582,-0.893093645572662,-0.0141582367941737,0.437621057033539,-0.899048030376434,0.0674493536353111,0.425793409347534,-0.902302980422974,-0.0142881227657199,0.420250117778778,-0.907295823097229,-0.0158396326005459,0.419962674379349,-0.907403171062469,-0.150722488760948,0.390899866819382,-0.908008813858032,0.0664814859628677,0.421422213315964,-0.904424488544464,-0.0141472881659865,0.439046889543533,-0.898352742195129,-0.108124189078808,0.455812573432922,-0.883484065532684,-0.111557826399803,0.42411008477211,-0.898713290691376,-0.0142381899058819,0.427030652761459,-0.904125034809113,-0.153649687767029,0.421575516462326,-0.893681108951569,-0.105445362627506,0.614357113838196,-0.781950533390045,0.0211596023291349,0.639624357223511,-0.768396437168121,0.0522631481289864,0.644191324710846,-0.763076841831207,-0.107379958033562,0.62378591299057,-0.774183928966522,-0.169963821768761,0.612585425376892,-0.771914124488831,0.021144712343812,0.638752222061157,-0.769121885299683,0.0525061190128326,0.643308639526367,-0.763804376125336,0.0211520306766033,0.639180779457092,-0.768765509128571,0.199856728315353,0.653854370117188,-0.729747772216797,0.0211307369172573,0.637934148311615,-0.769801080226898,-0.169186621904373,0.646553039550781,-0.743871688842773,-0.0751803070306778,0.645268499851227,-0.760247766971588,0.202428191900253,0.62471479177475,-0.754157960414886,0.0211753640323877,0.640548527240753,-0.767625749111176,0.107821196317673,0.635662496089935,-0.7644003033638,0.10564573854208,0.62147182226181,-0.776280701160431,0.0211242754012346,0.637556254863739,-0.770114183425903,-0.0742113962769508,0.649985373020172,-0.756314694881439,
- 0.106010682880878,-0.617114007472992,0.779699981212616,-0.021207882091403,-0.642457783222198,0.766027688980103,-0.0515177100896835,-0.646892011165619,0.760839402675629,0.107510402798653,-0.624421179294586,0.773653566837311,0.169951990246773,-0.613250255584717,0.771388590335846,-0.0211555622518063,-0.639387667179108,0.768593549728394,-0.0517731457948685,-0.645967781543732,0.761606991291046,-0.0211990643292665,-0.641939699649811,0.766461968421936,-0.19960081577301,-0.656537294387817,0.727405190467834,-0.021139046177268,-0.638420462608337,0.769397556781769,0.169172823429108,-0.647040486335754,0.743450880050659,0.0750810354948044,-0.645753562450409,0.759845614433289,-0.202253684401512,-0.626833319664001,0.752445042133331,-0.0212102364748716,-0.642596244812012,0.765911340713501,-0.108135432004929,-0.637714266777039,0.762644946575165,-0.105662547051907,-0.621581435203552,0.77619069814682,-0.0211261939257383,-0.637668430805206,0.770021200180054,0.0741889998316765,-0.650093972682953,0.756223499774933,-0.117509551346302,-0.930589377880096,0.346691578626633,0.00233678170479834,-0.945866465568542,0.324547618627548,0.0432967580854893,-0.947818756103516,0.315855950117111,-0.120023876428604,-0.935663998126984,0.33185413479805,-0.191849380731583,-0.922284126281738,0.33553808927536,0.00239057000726461,-0.946862459182739,0.321630030870438,0.0435394309461117,-0.947435975074768,0.316969156265259,0.00232953554950655,-0.945731639862061,0.324940323829651,0.182529076933861,-0.94074410200119,0.285803914070129,0.00238640769384801,-0.946785628795624,0.321855932474136,-0.190660879015923,-0.937091171741486,0.292418479919434,-0.0896914377808571,-0.946706295013428,0.309358537197113,0.184538826346397,-0.92917811870575,0.320270895957947,0.00239375606179237,-0.946921229362488,0.321457087993622,0.0915167033672333,-0.942227363586426,0.322230190038681,0.0896303728222847,-0.937331020832062,0.336715281009674,0.00239048409275711,-0.94686084985733,0.321634709835052,-0.0885757133364677,-0.94880199432373,0.30319818854332,0.160264104604721,-0.7552689909935,-0.635518848896027,
- -0.0131714195013046,-0.770161271095276,-0.637713372707367,0.208401426672935,-0.746917963027954,-0.631413102149963,0.158047676086426,-0.741681814193726,-0.651865839958191,-0.017989968881011,-0.769747197628021,-0.638095259666443,-0.0131430039182305,-0.769303381443024,-0.638748586177826,0.206413984298706,-0.770561933517456,-0.60301548242569,-0.0130147188901901,-0.765422105789185,-0.643397092819214,0.0593219697475433,-0.771355628967285,-0.633633494377136,-0.0131594054400921,-0.769798576831818,-0.638151288032532,-0.0178380385041237,-0.770312607288361,-0.637417018413544,-0.158224880695343,-0.777561902999878,-0.608573973178864,0.0584642142057419,-0.773962914943695,-0.63052624464035,-0.0129829477518797,-0.76445871591568,-0.644541919231415,-0.118841677904129,-0.742760539054871,-0.658926010131836,-0.121683314442635,-0.760520756244659,-0.637809872627258,-0.013044448569417,-0.766322791576386,-0.642323315143585,-0.161001771688461,-0.756155133247375,-0.634277403354645,-0.242365643382072,0.881230115890503,-0.405823230743408,-0.307501554489136,0.8604416847229,-0.406304270029068,-0.304533779621124,0.861487150192261,-0.40632376074791,-0.310647398233414,0.868672609329224,-0.385883569717407,-0.241434663534164,0.891429245471954,-0.38348850607872,-0.202534109354019,0.901999056339264,-0.381284296512604,-0.305902749300003,0.869561076164246,-0.387668788433075,-0.255477279424667,0.877458989620209,-0.405952036380768,-0.24253985285759,0.879055559635162,-0.410409331321716,-0.241388112306595,0.891887605190277,-0.382450670003891,-0.237181812524796,0.892883837223053,-0.382757365703583,-0.201922625303268,0.900541067123413,-0.385036438703537,-0.257526755332947,0.873735547065735,-0.412633150815964,-0.30703729391098,0.866784811019897,-0.392953187227249,-0.242822095751762,0.875300049781799,-0.418195188045502,-0.232219770550728,0.8826704621315,-0.40861564874649,-0.242564290761948,0.878742039203644,-0.411065727472305,-0.311808675527573,0.849158585071564,-0.42626878619194,-0.303036600351334,0.87957900762558,-0.36675563454628,-0.249882608652115,0.887205362319946,-0.387847006320953,
- -0.276912778615952,0.883711338043213,-0.377324223518372,-0.310208410024643,0.85539710521698,-0.414808988571167,-0.510261595249176,0.755034565925598,-0.41177174448967,-0.231818899512291,0.881831586360931,-0.410649627447128,-0.350786000490189,0.870985746383667,-0.343995928764343,-0.302832067012787,0.880191504955292,-0.365452647209167,-0.276643931865692,0.884113013744354,-0.376580029726028,-0.510940253734589,0.7561896443367,-0.408799946308136,-0.306993514299393,0.866933822631836,-0.392658561468124,-0.438118398189545,0.802319288253784,-0.405383914709091,-0.423321425914764,0.851430237293243,-0.309621870517731,-0.306299984455109,0.869265675544739,-0.388017416000366,-0.355983644723892,0.863946080207825,-0.356192111968994,-0.165524080395699,0.925135433673859,0.341652184724808,-0.116677641868591,0.94818377494812,0.295522928237915,-0.264281868934631,0.86232203245163,0.431921005249023,-0.106823995709419,0.945621490478516,0.307227313518524,-0.269619405269623,0.89875715970993,0.345747232437134,-0.314287543296814,0.880545914173126,0.354770749807358,-0.0205073207616806,0.90326052904129,0.428602278232574,0.0390842594206333,0.981188058853149,0.189057171344757,-0.0157949179410934,0.911717653274536,0.410513609647751,-0.315790385007858,0.914879679679871,0.251538753509521,-0.289120972156525,0.924716591835022,0.247604951262474,-0.171597331762314,0.958340525627136,0.228337466716766,-0.211721584200859,0.96115505695343,0.17707334458828,-0.201764076948166,0.971847176551819,0.121672928333282,-0.251746863126755,0.855444312095642,0.452591121196747,-0.100772462785244,0.943938732147217,0.314363837242126,-0.339110106229782,0.887074112892151,0.313215494155884,-0.306170374155045,0.898512780666351,0.314538568258286,-0.284090876579285,0.834013521671295,0.47298389673233,-0.268156737089157,0.862982928752899,0.42819681763649,-0.156401127576828,0.978391706943512,0.135234549641609,-0.280731052160263,0.868289351463318,0.408978879451752,-0.436860948801041,0.801627576351166,0.408100128173828,-0.288694977760315,0.865562856197357,0.409214019775391,-0.148912638425827,0.793923199176788,0.589500665664673,
- -0.116212368011475,0.824674367904663,0.553540408611298,-0.209335789084435,0.728659629821777,0.652099430561066,-0.38914281129837,0.697953104972839,0.601189970970154,-0.152523681521416,0.79647034406662,0.585125327110291,-0.264925688505173,0.756815910339355,0.597531676292419,0.115039229393005,0.491238236427307,-0.863395094871521,-0.00139292876701802,0.516572237014771,-0.856242477893829,-0.0391861610114574,0.523215055465698,-0.851299226284027,0.115104705095291,0.491606593132019,-0.863176643848419,0.189193144440651,0.478524535894394,-0.8574498295784,-0.00118426361586899,0.506361126899719,-0.862320721149445,-0.0389693789184093,0.524085879325867,-0.850773394107819,-0.00142479955684394,0.518126249313354,-0.855302929878235,-0.191343352198601,0.540390193462372,-0.819369375705719,-0.00158613477833569,0.525970339775085,-0.850501477718353,0.187706679105759,0.537047266960144,-0.822402834892273,0.0834800750017166,0.533354043960571,-0.841762840747833,-0.193993344902992,0.50508064031601,-0.840987682342529,-0.00144008069764823,0.518870830535889,-0.854851424694061,-0.091170646250248,0.514878928661346,-0.852401196956635,-0.0902442112565041,0.508310794830322,-0.856432199478149,-0.00157441408373415,0.525401711463928,-0.850852847099304,0.0826426893472672,0.537651121616364,-0.839107573032379,0.16606380045414,0.161904722452164,-0.972733199596405,-0.0065566822886467,0.155167728662491,-0.987866401672363,0.215042367577553,0.162946566939354,-0.962915003299713,0.163055688142776,0.18732088804245,-0.968671143054962,-0.0136332865804434,0.1599230915308,-0.98703533411026,-0.00650221481919289,0.161130383610725,-0.986911714076996,0.213370814919472,0.127343758940697,-0.968636393547058,-0.00648130103945732,0.163411483168602,-0.986536741256714,0.0638434961438179,0.15276150405407,-0.986198723316193,-0.0065062171779573,0.160693392157555,-0.986983001232147,-0.0135202929377556,0.159317642450333,-0.98713481426239,-0.155539512634277,0.129668578505516,-0.979282259941101,0.0620130635797977,0.143806785345078,-0.987660884857178,-0.00651624612510204,0.159597411751747,-0.987160682678223,
- -0.102151416242123,0.180324748158455,-0.978288352489471,-0.105016522109509,0.151163905858994,-0.982914626598358,-0.00658059818670154,0.152539491653442,-0.988275468349457,-0.157340452075005,0.149822622537613,-0.976113319396973,0.156399354338646,-0.973129332065582,-0.168993324041367,-0.012967262417078,-0.986523866653442,-0.163102701306343,0.209221094846725,-0.963005542755127,-0.169843629002571,0.154424920678139,-0.970359563827515,-0.18589049577713,-0.020229134708643,-0.986942291259766,-0.159799292683601,-0.0130061721429229,-0.986872017383575,-0.160980045795441,0.20658902823925,-0.970707833766937,-0.122667893767357,-0.013023728504777,-0.987027704715729,-0.160020977258682,0.0551832541823387,-0.987255752086639,-0.149267554283142,-0.0130148306488991,-0.986948847770691,-0.160507097840309,-0.0201151091605425,-0.987048506736755,-0.159156233072281,-0.162225514650345,-0.978111147880554,-0.130313575267792,0.05439742654562,-0.987869262695313,-0.145448967814446,-0.0129989245906472,-0.986807465553284,-0.161375716328621,-0.108987361192703,-0.977100849151611,-0.182744935154915,-0.111672520637512,-0.981097042560577,-0.158044323325157,-0.013046495616436,-0.987228453159332,-0.158775985240936,-0.164350658655167,-0.973825693130493,-0.157010927796364,0.160661041736603,0.0551994629204273,-0.985464930534363,-0.00749130500480533,0.0474498905241489,-0.998845636844635,0.207967892289162,0.057129044085741,-0.976466000080109,0.157260075211525,0.0831950381398201,-0.984046638011932,-0.0102540701627731,0.0557286441326141,-0.998393297195435,-0.00741877220571041,0.0562074109911919,-0.998391568660736,0.207098230719566,0.0375076793134212,-0.977600991725922,-0.00729768583551049,0.0706671997904778,-0.997473299503326,0.068190261721611,0.0593705289065838,-0.995904266834259,-0.007438441272825,0.0538397543132305,-0.99852192401886,-0.00982004310935736,0.0533698014914989,-0.998526632785797,-0.152347952127457,0.024647518992424,-0.988019526004791,0.0672209039330482,0.05446557700634,-0.99625039100647,-0.00728903291746974,0.0716930031776428,-0.997400164604187,-0.109529182314873,0.0946641936898232,-0.989465534687042,
- -0.112902536988258,0.0592583492398262,-0.991837382316589,-0.0073872203938663,0.0599943920969963,-0.998171389102936,-0.155067563056946,0.0587746687233448,-0.986153960227966,0.104866795241833,-0.279454052448273,0.954415202140808,-0.0198246445506811,-0.307534575462341,0.951330363750458,-0.0562262535095215,-0.314796894788742,0.947492241859436,0.106791272759438,-0.291033565998077,0.95073401927948,0.177252501249313,-0.28020453453064,0.94343364238739,-0.0198145378381014,-0.306586652994156,0.951636552810669,-0.0564865097403526,-0.313634961843491,0.947862088680267,-0.019819064065814,-0.30701094865799,0.951499700546265,-0.200427770614624,-0.335469365119934,0.92048305273056,-0.0198068227618933,-0.305864214897156,0.951869130134583,0.176545336842537,-0.323803901672363,0.929506778717041,0.0730863139033318,-0.315871953964233,0.945982694625854,-0.203009933233261,-0.299208402633667,0.932341873645782,-0.0198400020599365,-0.308977842330933,0.950862288475037,-0.112059511244297,-0.305384993553162,0.94561231136322,-0.109854876995087,-0.287089288234711,0.951583743095398,-0.0198027715086937,-0.305485039949417,0.951990962028503,0.0721341893076897,-0.321575701236725,0.944132268428802,0.155842199921608,-0.939659178256989,-0.304555386304855,-0.0102779986336827,-0.953588902950287,-0.300936043262482,0.209162294864655,-0.929458141326904,-0.303905844688416,0.153761014342308,-0.933897793292999,-0.322788894176483,-0.0147128365933895,-0.953715860843658,-0.300349235534668,-0.0102755557745695,-0.953551769256592,-0.301053941249847,0.20680359005928,-0.941579103469849,-0.265821754932404,-0.0101990988478065,-0.952381491661072,-0.304738700389862,0.0638270005583763,-0.953939318656921,-0.293131411075592,-0.0102885952219367,-0.953750193119049,-0.300424367189407,-0.0145768336951733,-0.953944623470306,-0.299628496170044,-0.154104694724083,-0.950287282466888,-0.270565986633301,0.0625801533460617,-0.955762505531311,-0.287405163049698,-0.0102067682892084,-0.952499389648438,-0.304369539022446,-0.111801519989967,-0.939007461071014,-0.325215935707092,-0.115232273936272,-0.948216497898102,-0.295984745025635,
- -0.0103428447619081,-0.954571962356567,-0.297801285982132,-0.156012818217278,-0.942868053913116,-0.294380813837051,-0.114499777555466,-0.735478639602661,0.667803108692169,0.00679672323167324,-0.75781112909317,0.652438521385193,0.0459065698087215,-0.762520551681519,0.645333230495453,-0.116360574960709,-0.743288993835449,0.658772885799408,-0.188066273927689,-0.729709088802338,0.657385528087616,0.00678299041464925,-0.757259428501129,0.653079032897949,0.0461563728749752,-0.76171875,0.646261632442474,0.00678855413571,-0.757482945919037,0.652819633483887,0.188947230577469,-0.766732454299927,0.613530993461609,0.00678163720294833,-0.757205009460449,0.653142154216766,-0.186924368143082,-0.759795248508453,0.622712314128876,-0.0925259962677956,-0.762197971343994,0.640697419643402,0.191041216254234,-0.74224579334259,0.642319560050964,0.00683216284960508,-0.75923353433609,0.650782465934753,0.0931566506624222,-0.754536271095276,0.649612903594971,0.0909703150391579,-0.742896914482117,0.663195788860321,0.00677806977182627,-0.757061541080475,0.653308391571045,-0.0913933217525482,-0.766509830951691,0.635696411132813,0.165019989013672,-0.936689078807831,-0.30883976817131,-0.0101831173524261,-0.952135264873505,-0.305507332086563,0.209406137466431,-0.928004443645477,-0.308150589466095,0.162738233804703,-0.929992616176605,-0.329590678215027,-0.0158227700740099,-0.95182728767395,-0.306226462125778,-0.010149447247386,-0.95161509513855,-0.307125061750412,0.207260549068451,-0.939471125602722,-0.272831588983536,-0.0100482953712344,-0.950038313865662,-0.311971545219421,0.0579440668225288,-0.951747179031372,-0.301363408565521,-0.0101630417630076,-0.951825380325317,-0.30647224187851,-0.0156757012009621,-0.952079653739929,-0.305448234081268,-0.156703263521194,-0.948319315910339,-0.275924861431122,0.057114627212286,-0.952980756759644,-0.297599792480469,-0.0100233647972345,-0.949646592140198,-0.313162863254547,-0.113344751298428,-0.935656547546387,-0.334215342998505,-0.116125673055649,-0.943867683410645,-0.30923867225647,-0.0100668836385012,-0.950329601764679,-0.311082512140274,
- -0.159433275461197,-0.938108205795288,-0.307464241981506,-0.242798775434494,0.755059480667114,-0.609043598175049,-0.309910416603088,0.734273612499237,-0.603984951972961,-0.308476626873016,0.734761357307434,-0.604125916957855,-0.309218972921371,0.731404066085815,-0.607809007167816,-0.242902427911758,0.753215491771698,-0.611281454563141,-0.203793153166771,0.764207303524017,-0.611927807331085,-0.308673232793808,0.736584901809692,-0.601800382137299,-0.255269676446915,0.739681959152222,-0.622662127017975,-0.243575125932693,0.740031957626343,-0.626916229724884,-0.243085592985153,0.749846041202545,-0.615337669849396,-0.234906509518623,0.75154721736908,-0.61643785238266,-0.202192038297653,0.757788717746735,-0.620382726192474,-0.254831552505493,0.740818798542023,-0.621488869190216,-0.306904554367065,0.739093005657196,-0.599625825881958,-0.243535310029984,0.740881025791168,-0.625927984714508,-0.238243043422699,0.762874484062195,-0.601051390171051,-0.242442727088928,0.761092066764832,-0.601631462574005,-0.308569371700287,0.730564534664154,-0.609147310256958,-0.306660234928131,0.740312933921814,-0.598244309425354,-0.254345834255219,0.74207466840744,-0.620188236236572,-0.28513491153717,0.741331219673157,-0.607557475566864,-0.307414650917053,0.73652058839798,-0.602522790431976,-0.516113102436066,0.637105882167816,-0.572471261024475,-0.237348198890686,0.759834885597229,-0.605241119861603,-0.360509067773819,0.737621009349823,-0.57091897726059,-0.306429475545883,0.741458117961884,-0.596942961215973,-0.284738510847092,0.742235779762268,-0.606638431549072,-0.511751413345337,0.624812185764313,-0.589678049087524,-0.307452917098999,0.736326158046722,-0.602740883827209,-0.438194215297699,0.670768141746521,-0.598377823829651,-0.423897951841354,0.742831885814667,-0.518180847167969,-0.306735962629318,0.739935755729675,-0.598672091960907,-0.357734143733978,0.743014931678772,-0.565645754337311,-0.164863601326942,0.982104122638702,0.0910578370094299,-0.11791867762804,0.992112874984741,0.0425133630633354,-0.265813112258911,0.94373083114624,0.19676262140274,
- -0.108601361513138,0.992630302906036,0.0537669509649277,-0.267864793539047,0.958043038845062,0.101990051567554,-0.316455036401749,0.94141697883606,0.116577789187431,-0.0203009694814682,0.983369946479797,0.180475741624832,0.0375098623335361,0.997281610965729,-0.0634238421916962,-0.0161817073822021,0.986444294452667,0.163296788930893,-0.317555576562881,0.948208153247833,0.00773395225405693,-0.287253379821777,0.957854509353638,0.000537101121153682,-0.173777461051941,0.984447002410889,-0.0257988721132278,-0.212215960025787,0.97444099187851,-0.0736831203103065,-0.202929228544235,0.970985174179077,-0.126520738005638,-0.250653266906738,0.94581127166748,0.206431657075882,-0.102865673601627,0.99284303188324,0.0606750026345253,-0.331787288188934,0.940470695495605,0.0737030208110809,-0.307909071445465,0.948650240898132,0.0724906325340271,-0.283144623041153,0.92879045009613,0.23911839723587,-0.265514552593231,0.94653856754303,0.183212369680405,-0.158818587660789,0.980552852153778,-0.115294992923737,-0.273481577634811,0.946632027626038,0.170574873685837,-0.435758113861084,0.880286812782288,0.187643796205521,-0.290289312601089,0.941255033016205,0.172543048858643,-0.144786819815636,0.921749711036682,0.359741926193237,-0.114168860018253,0.940602004528046,0.319739550352097,-0.209811061620712,0.871627926826477,0.44299441576004,-0.387102574110031,0.830413222312927,0.400706499814987,-0.145648330450058,0.922069191932678,0.358573526144028,-0.26592144370079,0.884883761405945,0.382448077201843,-0.153877049684525,-0.946839332580566,-0.282519340515137,0.017307473346591,-0.960971057415009,-0.276106983423233,-0.208573371171951,-0.936224579811096,-0.2828089594841,-0.151748150587082,-0.941934525966644,-0.299553006887436,0.0217544455081224,-0.961605489253998,-0.273571997880936,0.0173015538603067,-0.961475133895874,-0.274346858263016,-0.206454738974571,-0.950430691242218,-0.232504099607468,0.0172853097319603,-0.962817370891571,-0.269599616527557,-0.0598669834434986,-0.964188575744629,-0.258372694253922,0.0173060689121485,-0.961091458797455,-0.275687634944916,
- 0.0219909064471722,-0.96126514673233,-0.274746835231781,0.163131713867188,-0.956112861633301,-0.243385076522827,-0.057913463562727,-0.966879606246948,-0.24857559800148,0.0172696392983198,-0.964059352874756,-0.265125423669815,0.11999986320734,-0.950919330120087,-0.285223424434662,0.12220137566328,-0.957299292087555,-0.262001723051071,0.0172698348760605,-0.964043915271759,-0.265181183815002,0.164744079113007,-0.951487898826599,-0.259865641593933,0.170048862695694,-0.0853800550103188,-0.981729984283447,-0.008596146479249,-0.0964055731892586,-0.995305061340332,0.217634752392769,-0.0819104388356209,-0.972587168216705,0.167901948094368,-0.0676625743508339,-0.983478963375092,-0.0134838297963142,-0.0997481271624565,-0.994921445846558,-0.0086140725761652,-0.0989300832152367,-0.995057106018066,0.215399980545044,-0.129964038729668,-0.967838943004608,-0.00861527398228645,-0.0990995764732361,-0.995040237903595,0.0589354783296585,-0.108957499265671,-0.992297887802124,-0.00861760322004557,-0.0994281396269798,-0.995007514953613,-0.0133702512830496,-0.10035502910614,-0.994861841201782,-0.155437275767326,-0.126995548605919,-0.979648590087891,0.0582064017653465,-0.112574025988579,-0.991937041282654,-0.00860424526035786,-0.0975451767444611,-0.995193958282471,-0.102853551506996,-0.0755475834012032,-0.991823434829712,-0.105372585356236,-0.100331641733646,-0.98935854434967,-0.00862503983080387,-0.100478075444698,-0.994901955127716,-0.157853916287422,-0.0998533666133881,-0.982400953769684,0.161764055490494,-0.981983542442322,0.0976761877536774,-0.0173411667346954,-0.994100987911224,0.107063069939613,0.208886951208115,-0.973351180553436,0.0946244448423386,0.159359604120255,-0.98427802324295,0.0761668384075165,-0.0210055653005838,-0.994082450866699,0.106578014791012,-0.0173261146992445,-0.994216024875641,0.105992242693901,0.207377642393112,-0.970555484294891,0.122542887926102,-0.017100278288126,-0.995787739753723,0.0900799110531807,0.059576041996479,-0.993028283119202,0.101714134216309,-0.0173508711159229,-0.994026184082031,0.107754088938236,
- -0.0206809770315886,-0.993894457817078,0.108379550278187,-0.155942276120186,-0.978803634643555,0.132761284708977,0.0582504868507385,-0.992437183856964,0.10805244743824,-0.0171063207089901,-0.995749413967133,0.09050203114748,-0.111247204244137,-0.991478860378265,0.0677783861756325,-0.11554679274559,-0.987517714500427,0.107041269540787,-0.0173524655401707,-0.994013845920563,0.107867665588856,-0.158114910125732,-0.981676280498505,0.106354646384716,0.162452399730682,-0.194726914167404,-0.967311024665833,-0.0093271667137742,-0.206053823232651,-0.978496313095093,0.208856627345085,-0.190596461296082,-0.959193348884583,0.160203218460083,-0.176607310771942,-0.971156418323517,-0.0104496106505394,-0.207408651709557,-0.978198647499084,-0.00933445431292057,-0.207227468490601,-0.978248298168182,0.206944793462753,-0.232139527797699,-0.950413107872009,-0.00931865256279707,-0.204685419797897,-0.978783428668976,0.063998818397522,-0.215114146471024,-0.974489688873291,-0.00932436902076006,-0.205604016780853,-0.978590846061707,-0.0107352361083031,-0.205873340368271,-0.978519797325134,-0.150451377034187,-0.230442717671394,-0.96138471364975,0.0626201629638672,-0.222021624445915,-0.973028957843781,-0.00932877417653799,-0.206312656402588,-0.978441655635834,-0.107116177678108,-0.183137357234955,-0.977234303951263,-0.108653612434864,-0.198358803987503,-0.974088430404663,-0.00928436871618032,-0.199199959635735,-0.979914903640747,-0.153200939297676,-0.19733439385891,-0.968291640281677,-0.107147619128227,0.0235965624451637,-0.993963122367859,0.0165332704782486,0.0513169877231121,-0.99854564666748,0.0519226044416428,0.0591076910495758,-0.996900379657745,-0.109070926904678,0.0359949506819248,-0.993382096290588,-0.173048034310341,0.0282049085944891,-0.984509527683258,0.0165239088237286,0.0506905801594257,-0.99857771396637,0.0521640852093697,0.0579726174473763,-0.996954381465912,0.016526049003005,0.0508335828781128,-0.998570501804352,0.19974023103714,0.0868565365672112,-0.975991725921631,0.0165241658687592,0.0507077425718308,-0.998576879501343,-0.172308549284935,0.0729196593165398,-0.982340335845947,
- -0.0698769241571426,0.0611103102564812,-0.995682120323181,0.202323332428932,0.0489159747958183,-0.97809636592865,0.0165676940232515,0.0536248274147511,-0.998423755168915,0.109417714178562,0.0515087023377419,-0.992660403251648,0.107274308800697,0.032754760235548,-0.993689835071564,0.0165217239409685,0.050544373691082,-0.998585164546967,-0.0689303129911423,0.0668743103742599,-0.995377540588379,-0.107733055949211,0.0273593217134476,-0.993803381919861,0.0165914427489042,0.0552202239632607,-0.998336374759674,0.0511338338255882,0.0628123879432678,-0.996714651584625,-0.109353460371494,0.0378251448273659,-0.993282973766327,-0.173024028539658,0.030077213421464,-0.984458267688751,0.016551299020648,0.0525250323116779,-0.998482465744019,0.0514331571757793,0.0614070296287537,-0.996786832809448,0.0165793895721436,0.0544102042913437,-0.998381078243256,0.199483916163445,0.0903971940279007,-0.97572261095047,0.0165425818413496,0.0519407913088799,-0.998513162136078,-0.172282829880714,0.0741709992289543,-0.982251167297363,-0.0696758255362511,0.0623361468315125,-0.995620131492615,0.202330142259598,0.048810139298439,-0.97810035943985,0.0165663361549377,0.0535337440669537,-0.998428642749786,0.109406560659409,0.0514102168381214,-0.992666721343994,0.107164718210697,0.0318045765161514,-0.993732452392578,0.0165071524679661,0.0495700016617775,-0.998634278774261,-0.0690857246518135,0.0659291595220566,-0.995429813861847,0.115027010440826,0.541831970214844,-0.832578420639038,-0.00243622320704162,0.566670596599579,-0.823940873146057,-0.0421781353652477,0.573218107223511,-0.818316578865051,0.11664629727602,0.550156533718109,-0.826874494552612,0.191844493150711,0.536693930625916,-0.821678459644318,-0.00239541823975742,0.564741313457489,-0.825264453887939,-0.042555708438158,0.571709632873535,-0.819351613521576,-0.00241617858409882,0.565723180770874,-0.824591755867004,-0.18884514272213,0.585422217845917,-0.788427770137787,-0.00239651813171804,0.564793407917023,-0.825228810310364,0.190644755959511,0.57465273141861,-0.795882403850555,0.0866859331727028,0.572043716907501,-0.815629661083221,
- -0.19092059135437,0.555755317211151,-0.809126257896423,-0.00250620697624981,0.569973707199097,-0.821659088134766,-0.0918221026659012,0.565798401832581,-0.819414913654327,-0.089139424264431,0.547337651252747,-0.832151293754578,-0.00237786560319364,0.563910663127899,-0.825832366943359,0.0858377292752266,0.576224982738495,-0.812770962715149,0.160095125436783,-0.98546040058136,-0.0568979308009148,-0.0149447154253721,-0.998654186725616,-0.0496646575629711,0.208483099937439,-0.976267755031586,-0.0586179718375206,0.157874494791031,-0.984364867210388,-0.0781122744083405,-0.0168740898370743,-0.998582243919373,-0.0504854135215282,-0.0149258971214294,-0.998597204685211,-0.0508026592433453,0.206507414579391,-0.978204369544983,-0.021700881421566,-0.0148160364478827,-0.998240053653717,-0.0574217364192009,0.0578987896442413,-0.997262358665466,-0.0459952093660831,-0.0149544989690185,-0.998683273792267,-0.0490726009011269,-0.0165716223418713,-0.998672902584076,-0.0487627275288105,-0.159738034009933,-0.986940979957581,-0.0207668151706457,0.0570811033248901,-0.997483849525452,-0.0420443788170815,-0.0147888204082847,-0.998145222663879,-0.0590550117194653,-0.111046746373177,-0.990479171276093,-0.0813619047403336,-0.114407405257225,-0.992246210575104,-0.0485639274120331,-0.014959511347115,-0.998698055744171,-0.0487690269947052,-0.161948472261429,-0.985616862773895,-0.0482928268611431,0.0304252877831459,0.884939134120941,0.464711785316467,-0.148628994822502,0.846414506435394,0.511362850666046,-0.0748241543769836,0.866125047206879,0.494195014238358,-0.150951415300369,0.849750459194183,0.505111873149872,0.0295407176017761,0.886601209640503,0.461590439081192,-0.157391101121902,0.847843289375305,0.506349384784698,-0.0746757239103317,0.865902602672577,0.494607180356979,0.250322371721268,0.886460840702057,0.389263302087784,0.0309394970536232,0.883967220783234,0.466524094343185,0.0513243600726128,0.841982126235962,0.537058651447296,-0.174815610051155,0.821476638317108,0.542785108089447,-0.148463264107704,0.826128304004669,0.543572247028351,0.266350209712982,0.856706500053406,0.441714286804199,
- 0.143254101276398,0.865340113639832,0.48027566075325,0.0421274937689304,0.861765146255493,0.505555152893066,-0.176009714603424,0.823946595191956,0.538639605045319,0.0474543794989586,0.850477278232574,0.523866832256317,0.153554156422615,0.847919166088104,0.507399439811707,0.144548788666725,0.863219618797302,0.483691513538361,0.26740163564682,0.854563772678375,0.445215880870819,0.306468814611435,0.848673462867737,0.431080281734467,0.115900650620461,0.905731499195099,0.407697767019272,-0.192286908626556,0.807062387466431,0.558279514312744,-0.17257533967495,0.816812217235565,0.55048668384552,0.328918874263763,0.875058531761169,0.35508468747139,0.131980434060097,0.882989525794983,0.450456112623215,0.288205534219742,0.880284547805786,0.37687760591507,-0.17236065864563,0.79106867313385,0.586943030357361,0.1225451156497,0.89667135477066,0.42539769411087,0.117366410791874,0.895754516124725,0.428776055574417,0.128791883587837,0.884038329124451,0.449320405721664,0.131186842918396,0.88417786359787,0.448351949453354,0.329365074634552,0.874493002891541,0.356062978506088,-0.164835378527641,0.950982332229614,-0.26165246963501,-0.115567982196808,0.942705154418945,-0.312971264123917,-0.263600260019302,0.952620208263397,-0.151756018400192,-0.105117626488209,0.947692155838013,-0.301380157470703,-0.265451580286026,0.932776689529419,-0.243850722908974,-0.313088148832321,0.922741889953613,-0.224773779511452,-0.0203648582100868,0.983808517456055,-0.178061991930008,0.0383035205304623,0.909218788146973,-0.4145527780056,-0.0151866059750319,0.979755163192749,-0.199622556567192,-0.317207396030426,0.889923393726349,-0.327743679285049,-0.285489320755005,0.89667272567749,-0.338340103626251,-0.170217901468277,0.912180483341217,-0.37276354432106,-0.211490601301193,0.88397479057312,-0.416965574026108,-0.202344685792923,0.862342059612274,-0.464136600494385,-0.250884085893631,0.958033204078674,-0.1386708766222,-0.0987241566181183,0.950611412525177,-0.294264376163483,-0.332850098609924,0.90556275844574,-0.262996017932892,-0.307525277137756,0.913234531879425,-0.267265737056732,
- -0.283675104379654,0.953426003456116,-0.102506227791309,-0.266037553548813,0.950386703014374,-0.161211371421814,-0.157611683011055,0.875411808490753,-0.45696035027504,-0.274854868650436,0.945533990859985,-0.174414217472076,-0.4349285364151,0.890205800533295,-0.135538920760155,-0.289869338274002,0.94165301322937,-0.171071141958237,-0.145932048559189,0.98921275138855,0.0127342659980059,-0.115340478718281,0.992831707000732,-0.0313335061073303,-0.20703062415123,0.972947955131531,0.102521121501923,-0.387335360050201,0.91830849647522,0.0817376375198364,-0.147579967975616,0.988995373249054,0.0104158008471131,-0.260997295379639,0.964342176914215,0.0438699796795845,0.152124360203743,0.985505223274231,-0.0750854313373566,-0.0156881045550108,0.99619460105896,-0.0857335031032562,0.2105872631073,0.975008010864258,-0.0707991272211075,0.148967295885086,0.987594425678253,-0.0496596395969391,-0.0249558873474598,0.996403336524963,-0.0809795781970024,-0.0156964007765055,0.99672144651413,-0.0793726295232773,0.209175407886505,0.972273588180542,-0.104545898735523,-0.0157024767249823,0.997107267379761,-0.0743676796555519,0.0636426582932472,0.994305789470673,-0.0854736194014549,-0.0156941339373589,0.996577441692352,-0.0811609402298927,-0.0245876144617796,0.996250510215759,-0.0829478576779366,-0.156238630414009,0.981726229190826,-0.108642175793648,0.0628794878721237,0.994018256664276,-0.0892968773841858,-0.0157052334398031,0.997282266616821,-0.0719831585884094,-0.122917145490646,0.991276204586029,-0.0475705899298191,-0.125697016716003,0.989071428775787,-0.0770578905940056,-0.0156997423619032,0.996933579444885,-0.0766614004969597,-0.159193113446236,0.984240770339966,-0.0769916176795959,0.165261834859848,-0.427186071872711,-0.888932347297668,-0.0105420779436827,-0.441784620285034,-0.897059261798859,0.215636879205704,-0.420412689447403,-0.881336390972137,0.163134604692459,-0.411722809076309,-0.896588861942291,-0.0147845670580864,-0.444877982139587,-0.895469188690186,-0.0105519257485867,-0.44425767660141,-0.89583694934845,0.213435962796211,-0.463320344686508,-0.860104262828827,
- -0.0105503080412745,-0.443850189447403,-0.896039009094238,0.0598308518528938,-0.452466756105423,-0.889771938323975,-0.0105539048090577,-0.44475656747818,-0.895589351654053,-0.0146640762686729,-0.445458918809891,-0.895182311534882,-0.156617432832718,-0.46491014957428,-0.871395170688629,0.0590863898396492,-0.4557726085186,-0.888132929801941,-0.0105441361665726,-0.442300081253052,-0.896805167198181,-0.106729403138161,-0.419950544834137,-0.901249349117279,-0.109215050935745,-0.443087697029114,-0.889800786972046,-0.0105562601238489,-0.445351511240005,-0.895293593406677,-0.1590715944767,-0.440270870923996,-0.883661687374115,0.161994770169258,-0.884189903736115,0.438139319419861,-0.0176845826208591,-0.892228603363037,0.451237827539444,0.211795210838318,-0.87671959400177,0.431862831115723,0.159531325101852,-0.893945574760437,0.418821275234222,-0.0207651164382696,-0.89241361618042,0.450740247964859,-0.0176665261387825,-0.892693221569061,0.450318545103073,0.20973889529705,-0.85977578163147,0.46561262011528,-0.0175410676747561,-0.895882785320282,0.443944275379181,0.0559582561254501,-0.889460504055023,0.453573197126389,-0.0176977496594191,-0.891888678073883,0.451908528804779,-0.0204549208283424,-0.891603708267212,0.452354490756989,-0.159706652164459,-0.867970943450928,0.470234453678131,0.0551380291581154,-0.887712299823761,0.457085162401199,-0.017510486766696,-0.896649956703186,0.442393928766251,-0.110902294516563,-0.900794148445129,0.419845998287201,-0.114277645945549,-0.886216700077057,0.448954999446869,-0.0176985897123814,-0.891866981983185,0.45195135474205,-0.161976620554924,-0.880307674407959,0.445894837379456,0.165166333317757,-0.528380811214447,-0.832786858081818,-0.0108876526355743,-0.543197512626648,-0.839534342288971,0.204785764217377,-0.522662222385406,-0.827579021453857,0.161936804652214,-0.504251837730408,-0.84823739528656,-0.0129817556589842,-0.536391973495483,-0.843869090080261,-0.0108676077798009,-0.536104559898376,-0.844081580638886,0.203908994793892,-0.538675665855408,-0.817465424537659,-0.0108284559100866,-0.522870600223541,-0.852343320846558,
- 0.0675946846604347,-0.531548917293549,-0.844326198101044,-0.0108735738322139,-0.538191199302673,-0.842752695083618,-0.0125217568129301,-0.538454711437225,-0.842561423778534,-0.152765527367592,-0.555291414260864,-0.817504823207855,0.0666467696428299,-0.535702884197235,-0.841772258281708,-0.0108250360935926,-0.521749377250671,-0.853030145168304,-0.105559654533863,-0.500177443027496,-0.859464764595032,-0.109032765030861,-0.529551148414612,-0.841241598129272,-0.0108569134026766,-0.532412767410278,-0.846415281295776,-0.155540853738785,-0.526378750801086,-0.835902154445648,-0.105832144618034,-0.328720152378082,-0.938478946685791,0.0201075039803982,-0.30386033654213,-0.952504456043243,0.0516465753316879,-0.296829998493195,-0.953532755374908,-0.107719831168652,-0.317024648189545,-0.942280173301697,-0.172124937176704,-0.321230798959732,-0.931227028369904,0.0200929883867502,-0.304802030324936,-0.952203869819641,0.0518951043486595,-0.297905683517456,-0.953183650970459,0.0200993288308382,-0.304390698671341,-0.952335178852081,0.201340943574905,-0.26301035284996,-0.94355046749115,0.0200806129723787,-0.305603474378586,-0.951947093009949,-0.17126801609993,-0.278872311115265,-0.944932639598846,-0.0745803266763687,-0.293803870677948,-0.952951788902283,0.204010754823685,-0.299576163291931,-0.932005226612091,0.0201288871467113,-0.302470117807388,-0.952946305274963,0.112122319638729,-0.302327334880829,-0.946586906909943,0.109823539853096,-0.320657879114151,-0.940806746482849,0.0200745668262243,-0.305994659662247,-0.951821565628052,-0.0736011639237404,-0.287988245487213,-0.954801380634308,-0.150889694690704,0.94249302148819,-0.298226863145828,0.0147879458963871,0.950932204723358,-0.309045672416687,-0.215156391263008,0.932000517845154,-0.291689544916153,-0.149143442511559,0.947421014308929,-0.283107221126556,0.0183847956359386,0.949746131896973,-0.31248077750206,0.0148491486907005,0.949981451034546,-0.311953485012054,-0.212828949093819,0.918778896331787,-0.332489252090454,0.0147230252623558,0.951928973197937,-0.305965095758438,-0.0657862424850464,0.946058332920074,-0.317247211933136,
- 0.0148680731654167,0.949685156345367,-0.312853366136551,0.0182085819542408,0.949433028697968,-0.313441246747971,0.155559971928597,0.929474711418152,-0.334481805562973,-0.0647312328219414,0.944502830505371,-0.322062373161316,0.0147004369646311,0.952272713184357,-0.304894268512726,0.11653658747673,0.952938079833984,-0.279871851205826,0.120244704186916,0.942663550376892,-0.311330735683441,0.0148863885551691,0.949397385120392,-0.313724637031555,0.157604739069939,0.937704026699066,-0.30963197350502,0.157245561480522,0.95831423997879,0.238553300499916,-0.0153174512088299,0.972658157348633,0.231735780835152,0.197548478841782,0.950681686401367,0.239121288061142,0.155171021819115,0.95432585477829,0.255311787128448,-0.0204958319664001,0.973347544670105,0.228417560458183,-0.0153264831751585,0.973231613636017,0.22931481897831,0.195794805884361,0.960107982158661,0.199642717838287,-0.0153095880523324,0.972158849239349,0.233822256326675,0.0525841414928436,0.973170936107636,0.223993882536888,-0.0153301227837801,0.973462760448456,0.228331372141838,-0.0202817413955927,0.973605453968048,0.22733473777771,-0.164274454116821,0.966797292232513,0.195747300982475,0.0518101789057255,0.974103450775146,0.220086753368378,-0.0153051009401679,0.971873879432678,0.235004484653473,-0.113386809825897,0.960315585136414,0.254828244447708,-0.116320863366127,0.967600226402283,0.224096715450287,-0.0153365861624479,0.973873198032379,0.226574450731277,-0.166752234101295,0.960686802864075,0.221979171037674,0.165223702788353,-0.941320598125458,0.294306993484497,-0.0147280730307102,-0.951851904392242,0.306204408407211,0.215285360813141,-0.932750344276428,0.289186805486679,0.162914961576462,-0.947969496250153,0.273518770933151,-0.019603431224823,-0.951885342597961,0.305826991796494,-0.0147046903148294,-0.952208161354065,0.305095821619034,0.213245719671249,-0.921109199523926,0.3257055580616,-0.0145725719630718,-0.954191505908966,0.298841685056686,0.0575009733438492,-0.94929051399231,0.309097290039063,-0.0147393625229597,-0.951679348945618,0.306739896535873,-0.0192894134670496,-0.951338589191437,0.307543516159058,
- -0.160672321915627,-0.930477559566498,0.329235553741455,0.0566649846732616,-0.948114931583405,0.31283763051033,-0.0145399384200573,-0.954673588275909,0.297299534082413,-0.113552458584309,-0.955285608768463,0.273011833429337,-0.117076858878136,-0.945167899131775,0.304878175258636,-0.0147462021559477,-0.951574623584747,0.307064324617386,-0.163083150982857,-0.938987612724304,0.302830398082733,-0.312064707279205,0.937655568122864,0.153028234839439,-0.395181268453598,0.912215828895569,0.108139991760254,-0.337064445018768,0.931037068367004,0.139848351478577,-0.310608118772507,0.940563917160034,0.137339368462563,-0.486953645944595,0.85199910402298,0.192285463213921,-0.400097578763962,0.901416957378387,0.165437087416649,-0.332738310098648,0.934471487998962,0.126682624220848,-0.283820122480392,0.948194921016693,0.142732515931129,-0.310300529003143,0.941128790378571,0.134127601981163,-0.474273324012756,0.847884356975555,0.236974656581879,-0.316486835479736,0.925731658935547,0.207019448280334,-0.248320981860161,0.949314534664154,0.192713707685471,-0.332401812076569,0.935019254684448,0.123482890427113,-0.309957325458527,0.941740214824677,0.130582883954048,-0.28276127576828,0.949064671993256,0.13900488615036,-0.330362588167191,0.917551815509796,0.221267387270927,-0.248396813869476,0.949357807636261,0.192402482032776,-0.317180573940277,0.923278629779816,0.216686606407166,-0.332411348819733,0.935358822345734,0.120858281850815,-0.282116740942001,0.949585020542145,0.136742278933525,-0.313540190458298,0.941057801246643,0.126897379755974,-0.247201606631279,0.948666214942932,0.197291493415833,-0.33113020658493,0.922437489032745,0.198650196194649,-0.290046155452728,0.936269819736481,0.198172211647034,-0.467204421758652,0.88000476360321,0.0855090096592903,-0.332422584295273,0.935963153839111,0.116052813827991,-0.312143832445145,0.942388415336609,0.120292991399765,-0.33073291182518,0.919830203056335,0.211016952991486,-0.440139263868332,0.866752684116364,0.234557539224625,-0.289275169372559,0.935785293579102,0.201558381319046,-0.440233945846558,0.866806268692017,0.234181553125381,
- -0.330543965101242,0.918652236461639,0.21637649834156,-0.444120317697525,0.864662945270538,0.234766006469727,-0.265986859798431,0.699692785739899,0.663084506988525,-0.282149821519852,0.696115255355835,0.66016298532486,-0.249607175588608,0.70310115814209,0.665841579437256,-0.248907029628754,0.697991073131561,0.671456515789032,-0.278567284345627,0.683446645736694,0.674759924411774,-0.269415408372879,0.688031077384949,0.673816502094269,-0.245672613382339,0.675149917602539,0.69556999206543,-0.203311577439308,0.677366375923157,0.706993162631989,-0.268827170133591,0.673370599746704,0.688697338104248,-0.324904233217239,0.652150213718414,0.684936046600342,-0.247695446014404,0.689295411109924,0.680822193622589,-0.265229851007462,0.681378483772278,0.682184994220734,-0.21620012819767,0.62884509563446,0.746867775917053,-0.238804131746292,0.629875957965851,0.739073038101196,-0.290180027484894,0.630877137184143,0.719576060771942,-0.28977358341217,0.616306304931641,0.732255399227142,-0.241343751549721,0.646185219287872,0.724015116691589,-0.300293326377869,0.609463691711426,0.733742475509644,-0.290339857339859,0.637942016124725,0.713255047798157,-0.213631421327591,0.635957539081573,0.741565644741058,-0.21439728140831,0.635998070240021,0.741309881210327,-0.446904182434082,0.45288810133934,0.771472036838531,-0.286109536886215,0.539893805980682,0.791616082191467,-0.26592817902565,0.549215316772461,0.7922403216362,-0.209099173545837,0.648973047733307,0.731513202190399,-0.290629148483276,0.65568220615387,0.696861207485199,-0.320364564657211,0.65685772895813,0.682572066783905,-0.32132813334465,0.102471813559532,0.941407322883606,-0.237703591585159,0.145921513438225,0.960314512252808,-0.291435152292252,0.118291266262531,0.949248552322388,-0.28990364074707,0.931467533111572,0.219827935099602,-0.313867092132568,0.921139717102051,0.230193734169006,-0.379481315612793,0.888445913791656,0.258181691169739,-0.466960966587067,0.869311034679413,0.162005484104156,-0.287530571222305,0.927551746368408,0.238692492246628,-0.387352854013443,0.900440037250519,0.197902694344521,
- -0.308801263570786,0.919202744960785,0.244352519512177,-0.287450760602951,0.927417159080505,0.239310771226883,-0.260821610689163,0.936874210834503,0.23289230465889,-0.295769661664963,0.940292477607727,0.168434977531433,-0.455496430397034,0.882380783557892,0.118013478815556,-0.236613214015961,0.953804314136505,0.185125604271889,-0.31015732884407,0.917774260044098,0.247977420687675,-0.259597420692444,0.936263501644135,0.236685171723366,-0.286988794803619,0.926634550094604,0.242870062589645,-0.236527562141418,0.953905701637268,0.184712812304497,-0.311168074607849,0.937966465950012,0.152948901057243,-0.296727508306503,0.94159072637558,0.159247756004334,-0.301530510187149,0.920466005802155,0.248639866709709,-0.258865386247635,0.935892105102539,0.238945215940475,-0.310088723897934,0.917101979255676,0.250537365674973,-0.311196565628052,0.934166491031647,0.174612760543823,-0.235891610383987,0.954650163650513,0.18165422976017,-0.274402230978012,0.944957554340363,0.178209722042084,-0.452685087919235,0.850225687026978,0.268686473369598,-0.300072014331818,0.919356644153595,0.254441350698471,-0.30994787812233,0.915764808654785,0.255552411079407,-0.424465447664261,0.896798372268677,0.124827973544598,-0.311199843883514,0.936278998851776,0.162900179624558,-0.273684769868851,0.945837318897247,0.174609377980232,-0.31118580698967,0.937241315841675,0.157296314835548,-0.424524188041687,0.896732807159424,0.125098139047623,-0.43416839838028,0.892508268356323,0.122176118195057,0.117154687643051,0.200380593538284,0.972688257694244,-0.0492887608706951,0.182484775781631,0.981972515583038,0.168545171618462,0.204823821783066,0.964178383350372,0.118468247354031,0.176692679524422,0.97711056470871,-0.0618690140545368,0.17751944065094,0.982170581817627,-0.0484154745936394,0.177657976746559,0.982900619506836,0.158254072070122,0.251001536846161,0.954962730407715,-0.0500248298048973,0.186554923653603,0.981170177459717,0.0138618722558022,0.20736625790596,0.978165149688721,-0.0482663661241531,0.176834061741829,0.983056485652924,-0.061874482780695,0.177036881446838,0.98225736618042,
- -0.200169831514359,0.177215948700905,0.963600814342499,0.0115478113293648,0.213262543082237,0.976926684379578,-0.0502719059586525,0.187921538949013,0.980896651744843,-0.149500772356987,0.145275443792343,0.978030979633331,-0.153182834386826,0.158224046230316,0.975448727607727,-0.0483813136816025,0.177469193935394,0.982936441898346,-0.197767198085785,0.149382457137108,0.968799829483032,-0.00140662502963096,0.913352310657501,-0.407167971134186,-0.167387306690216,0.891401886940002,-0.421169996261597,0.0508850738406181,0.914935052394867,-0.400380581617355,-0.00594010204076767,0.922634840011597,-0.385628879070282,-0.170959964394569,0.892485797405243,-0.417422711849213,-0.167710438370705,0.893343389034271,-0.416906476020813,0.0522581785917282,0.899281203746796,-0.434237748384476,-0.167846471071243,0.894161522388458,-0.415093928575516,-0.0925416499376297,0.900906383991241,-0.424032717943192,-0.1677036434412,0.8933025598526,-0.416996687650681,-0.170912802219391,0.892417788505554,-0.417587459087372,-0.305237293243408,0.845447719097137,-0.438233226537704,-0.0936917364597321,0.896734535694122,-0.432537913322449,-0.167591407895088,0.892627894878387,-0.418483793735504,-0.270886242389679,0.878085672855377,-0.39444425702095,-0.271489709615707,0.865397393703461,-0.421165883541107,-0.167235657572746,0.890491485595703,-0.423151552677155,-0.308644652366638,0.853799939155579,-0.419242471456528,-0.014360424131155,0.999826192855835,-0.0118899326771498,-0.181088462471962,0.983221650123596,-0.0219598524272442,0.0390000194311142,0.999202251434326,-0.00860173441469669,-0.0156446471810341,0.999876141548157,-0.00178293278440833,-0.187083393335342,0.981817781925201,-0.0321501530706882,-0.18111526966095,0.982970237731934,-0.0310924910008907,0.0378100983798504,0.998555362224579,-0.0381788201630116,-0.181016221642494,0.983450174331665,-0.00767206214368343,-0.107709735631943,0.994018197059631,-0.0180737692862749,-0.181114971637726,0.982974767684937,-0.030951539054513,-0.187075391411781,0.981817901134491,-0.0321928150951862,-0.327136486768723,0.942977786064148,-0.0614384114742279,
- -0.10934629291296,0.993644237518311,-0.0267319660633802,-0.181034356355667,0.983419120311737,-0.0106540350243449,-0.276815205812454,0.960857033729553,0.0112793706357479,-0.280572474002838,0.959330260753632,-0.0310593638569117,-0.181112870573998,0.983004689216614,-0.0299996752291918,-0.33006688952446,0.943432688713074,-0.031474094837904,-0.316132009029388,0.901846468448639,0.294505685567856,-0.153423145413399,0.94434529542923,0.290986776351929,-0.364370256662369,0.883656144142151,0.293915212154388,-0.311713576316834,0.894173145294189,0.321386277675629,-0.147131741046906,0.942990720272064,0.298531055450439,-0.153073891997337,0.941736876964569,0.299499660730362,-0.36436340212822,0.891449511051178,0.269364207983017,-0.152713924646378,0.939064204692841,0.307955920696259,-0.225374266505241,0.928045153617859,0.296544909477234,-0.153125986456871,0.942124962806702,0.298249930143356,-0.147458449006081,0.943370223045349,0.297167837619781,-0.0138371475040913,0.963044822216034,0.268985897302628,-0.223954647779465,0.931167006492615,0.287702202796936,-0.152869924902916,0.940220475196838,0.304329454898834,-0.0502250380814075,0.944324195384979,0.325160384178162,-0.0483895167708397,0.955701529979706,0.290332823991776,-0.153370276093483,0.943949460983276,0.292296081781387,-0.0111970892176032,0.957304060459137,0.288866102695465,-0.143267780542374,0.746186375617981,-0.650138735771179,-0.239008486270905,0.700101435184479,-0.672854363918304,-0.164896667003632,0.736613392829895,-0.655903935432434,-0.141133949160576,0.735072672367096,-0.663136124610901,-0.333073377609253,0.740858256816864,-0.583259105682373,-0.246727764606476,0.742209315299988,-0.623097836971283,-0.159595355391502,0.727627813816071,-0.667148411273956,-0.111811563372612,0.742116808891296,-0.660878837108612,-0.140841394662857,0.733548998832703,-0.664883136749268,-0.321447879076004,0.771025896072388,-0.54971843957901,-0.149745777249336,0.779925942420959,-0.607693791389465,-0.0750137194991112,0.775926411151886,-0.626347601413727,-0.168010070919991,0.722619652748108,-0.670517325401306,
- -0.140385389328003,0.731173932552338,-0.667590141296387,-0.110628932714462,0.73966109752655,-0.663824379444122,-0.168747365474701,0.787491381168365,-0.592774569988251,-0.0752009525895119,0.775348424911499,-0.627040505409241,-0.150867879390717,0.785770297050476,-0.599836587905884,-0.167967766523361,0.720827400684357,-0.672454297542572,-0.109924353659153,0.738194108009338,-0.665572047233582,-0.147720485925674,0.727211654186249,-0.670329689979553,-0.073878601193428,0.779412031173706,-0.62214058637619,-0.168728739023209,0.772750437259674,-0.611872017383575,-0.119447320699692,0.777108550071716,-0.617927670478821,-0.308025926351547,0.674470365047455,-0.670976758003235,-0.167892709374428,0.717751085758209,-0.675755560398102,-0.146149098873138,0.723007023334503,-0.675204634666443,-0.168751120567322,0.780896663665771,-0.601434528827667,-0.285658419132233,0.777258515357971,-0.560596525669098,-0.118900492787361,0.778855323791504,-0.615830421447754,-0.285770833492279,0.776933789253235,-0.560989201068878,-0.168751791119576,0.78415310382843,-0.597182512283325,-0.287492126226425,0.776736736297607,-0.560382425785065,-0.133009061217308,0.981684327125549,-0.136398747563362,-0.160736069083214,0.977212727069855,-0.13863343000412,-0.123749077320099,0.983000814914703,-0.135630264878273,-0.123933136463165,0.983982145786285,-0.1281398832798,-0.159359902143478,0.980153203010559,-0.117916189134121,-0.148573160171509,0.981464326381683,-0.121052980422974,-0.124662660062313,0.987649917602539,-0.0949045643210411,-0.0799549296498299,0.993345379829407,-0.0828988626599312,-0.140813410282135,0.985052883625031,-0.0992086157202721,-0.208570033311844,0.970926880836487,-0.117472186684608,-0.123677998781204,0.982617080211639,-0.138446718454361,-0.151451200246811,0.979647874832153,-0.131729304790497,-0.101097404956818,0.994634509086609,-0.0219428744167089,-0.125661343336105,0.991565823554993,-0.0317247174680233,-0.176837339997292,0.982857763767242,-0.0521460995078087,-0.168380677700043,0.977889239788055,-0.124019168317318,-0.123597085475922,0.982177257537842,-0.141603648662567,
- -0.206450074911118,0.972398459911346,-0.108717992901802,-0.175784900784492,0.982502162456512,-0.0615556426346302,-0.105466708540916,0.993855178356171,-0.0335966721177101,-0.0980982631444931,0.994704008102417,-0.0306697394698858,-0.366675853729248,0.929236769676209,0.0454737544059753,-0.183732345700264,0.982882618904114,0.0135776810348034,-0.175654411315918,0.984376549720764,0.012184876948595,-0.0560252405703068,0.987614929676056,-0.146553635597229,-0.159041404724121,0.967779457569122,-0.195214882493019,-0.177352786064148,0.962836802005768,-0.203694120049477,-0.304336369037628,0.754645943641663,0.581282079219818,-0.207155019044876,0.793051540851593,0.572849035263062,-0.231455340981483,0.784345269203186,0.575526714324951,-0.123363867402077,0.790360033512115,-0.60009378194809,-0.14788992702961,0.794314086437225,-0.589231610298157,-0.215520083904266,0.802236914634705,-0.55674684047699,-0.312624931335449,0.724683105945587,-0.614084720611572,-0.121696501970291,0.802243947982788,-0.584460973739624,-0.220937222242355,0.766578495502472,-0.602946162223816,-0.14317324757576,0.803497135639191,-0.577835440635681,-0.121662475168705,0.802479982376099,-0.584144055843353,-0.0973156988620758,0.800846815109253,-0.590909421443939,-0.127554938197136,0.757344663143158,-0.640436351299286,-0.299139201641083,0.698165893554688,-0.650446176528931,-0.0645918101072311,0.772569596767426,-0.631636023521423,-0.14964072406292,0.805663406848907,-0.573161661624908,-0.0962315574288368,0.803209125995636,-0.587872922420502,-0.121344864368439,0.804669201374054,-0.581191003322601,-0.0645767599344254,0.772530794143677,-0.631685018539429,-0.146956577897072,0.744321167469025,-0.65145206451416,-0.128260865807533,0.751281440258026,-0.647398948669434,-0.132097601890564,0.806586503982544,-0.576167047023773,-0.0956001505255699,0.804577648639679,-0.586102068424225,-0.149690464138985,0.807143211364746,-0.571062803268433,-0.147712588310242,0.75928395986557,-0.633773505687714,-0.0636269003152847,0.77007794380188,-0.634769022464752,-0.108125820755959,0.76506370306015,-0.63481217622757,
- -0.293813824653625,0.795272529125214,-0.530297160148621,-0.130731746554375,0.810475051403046,-0.570998549461365,-0.149780914187431,0.809898674488068,-0.567124366760254,-0.263554334640503,0.710187077522278,-0.652819633483887,-0.147311240434647,0.751196563243866,-0.643430709838867,-0.107173055410385,0.762554347515106,-0.637984931468964,-0.147129163146019,0.747637212276459,-0.647604644298553,-0.263647139072418,0.71041476726532,-0.652534425258636,-0.269203543663025,0.708336651325226,-0.652524888515472,0.149266511201859,0.859040200710297,0.489662528038025,-0.0206290557980537,0.873296618461609,0.486751854419708,0.203773573040962,0.848990619182587,0.487535983324051,0.146358117461205,0.84735780954361,0.510454833507538,-0.0303007178008556,0.871680080890656,0.489137679338455,-0.0205764845013618,0.871071100234985,0.490725696086884,0.20173567533493,0.872514128684998,0.444996446371078,-0.0206685457378626,0.874968409538269,0.483738660812378,0.052953876554966,0.879124641418457,0.473641157150269,-0.0205676816403866,0.870698571205139,0.491386830806732,-0.0303897447884083,0.871441662311554,0.489556849002838,-0.16430701315403,0.872793316841125,0.459603101015091,0.0516360439360142,0.882290601730347,0.467864513397217,-0.0206814464181662,0.875514507293701,0.48274901509285,-0.118544302880764,0.858636975288391,0.498687982559204,-0.119761236011982,0.864875257015228,0.487491726875305,-0.0205670055001974,0.870669960975647,0.491437524557114,-0.166769221425056,0.85908442735672,0.483902752399445,0.157057166099548,0.266391426324844,-0.950982987880707,-0.0152045832946897,0.259992003440857,-0.965491056442261,0.207956045866013,0.266759186983109,-0.941059947013855,0.154236331582069,0.289288282394409,-0.944734692573547,-0.0101605206727982,0.26483753323555,-0.964239597320557,-0.0151875708252192,0.263972193002701,-0.964410722255707,0.206385642290115,0.23105226457119,-0.950799584388733,-0.0151722878217697,0.267493188381195,-0.963440299034119,0.0615408979356289,0.256402403116226,-0.96460896730423,-0.0151885710656643,0.263739854097366,-0.964474260807037,
- -0.0101411081850529,0.264737963676453,-0.964267075061798,-0.152829468250275,0.233776152133942,-0.960204124450684,0.0597263798117638,0.247656390070915,-0.967005252838135,-0.0151861691847444,0.264297157526016,-0.964321732521057,-0.112723633646965,0.283651888370514,-0.952278852462769,-0.115311056375504,0.255564212799072,-0.959890842437744,-0.0152123207226396,0.25816011428833,-0.965982377529144,-0.154703512787819,0.2538221180439,-0.954799115657806,0.165005341172218,0.625097692012787,-0.762906312942505,-0.0122847314924002,0.625558793544769,-0.780080437660217,0.208793312311172,0.62186336517334,-0.754779040813446,0.162553504109383,0.640422165393829,-0.75062358379364,-0.0186266601085663,0.624130427837372,-0.781098186969757,-0.0122910216450691,0.625060081481934,-0.780479848384857,0.20700491964817,0.591420531272888,-0.779339969158173,-0.0122332023456693,0.629618346691132,-0.776808321475983,0.0632380321621895,0.619998633861542,-0.782050251960754,-0.0123141258955002,0.623223483562469,-0.781946957111359,-0.018164774402976,0.62223345041275,-0.782620906829834,-0.160941809415817,0.591107606887817,-0.790373027324677,0.0625203549861908,0.617154657840729,-0.784354090690613,-0.0122114941477776,0.631315648555756,-0.775429844856262,-0.108181610703468,0.644078314304352,-0.757271349430084,-0.111576117575169,0.614441514015198,-0.781032919883728,-0.0123641835525632,0.619213044643402,-0.78512567281723,-0.16313311457634,0.609516978263855,-0.775807023048401,0.152721971273422,-0.837109386920929,0.525284647941589,-0.0193470492959023,-0.842627465724945,0.538149297237396,0.205018267035484,-0.830359697341919,0.518141329288483,0.150691419839859,-0.847068727016449,0.509673178195953,-0.0209344178438187,-0.841827690601349,0.539340317249298,-0.0193655155599117,-0.841991722583771,0.539142906665802,0.203187882900238,-0.809520363807678,0.550809800624847,-0.0192486178129911,-0.845981776714325,0.532864212989807,0.0565433576703072,-0.838430047035217,0.542068183422089,-0.0193889196962118,-0.841182708740234,0.540403425693512,-0.0206741839647293,-0.8410285115242,0.540595650672913,
- -0.157024681568146,-0.816405653953552,0.555720329284668,0.0553822815418243,-0.835455119609833,0.546761035919189,-0.0192449763417244,-0.846104741096497,0.532669126987457,-0.111739501357079,-0.852399528026581,0.510812640190125,-0.115552693605423,-0.833052694797516,0.540990710258484,-0.0194664429873228,-0.838478803634644,0.544586479663849,-0.158644556999207,-0.828064262866974,0.537718653678894,-0.13938295841217,0.769086062908173,0.623762011528015,-0.235893487930298,0.783893823623657,0.574338495731354,-0.166030913591385,0.774067103862762,0.610945105552673,-0.136908188462257,0.781990826129913,0.60806792974472,-0.33664071559906,0.701225578784943,0.628455102443695,-0.243518635630608,0.743812203407288,0.6224485039711,-0.160806640982628,0.783420324325562,0.600328147411346,-0.110744722187519,0.779589474201202,0.61642187833786,-0.13693368434906,0.781861066818237,0.608228981494904,-0.32500034570694,0.673756539821625,0.663646757602692,-0.145373940467834,0.735053896903992,0.662240326404572,-0.0716509893536568,0.752257764339447,0.65496152639389,-0.161179944872856,0.785517871379852,0.597480356693268,-0.136481389403343,0.784153997898102,0.605372071266174,-0.109545022249222,0.782073199748993,0.613483011722565,-0.161978125572205,0.723070859909058,0.671514570713043,-0.0719330981373787,0.753119170665741,0.653939723968506,-0.146399468183517,0.728790700435638,0.668903112411499,-0.161137074232101,0.787114500999451,0.595386922359467,-0.108829878270626,0.783546030521393,0.611728549003601,-0.146403074264526,0.786346673965454,0.600187540054321,-0.0703648924827576,0.748317539691925,0.659598171710968,-0.161930575966835,0.737802803516388,0.655305683612823,-0.120110087096691,0.743405699729919,0.657967805862427,-0.305169582366943,0.778334856033325,0.54869532585144,-0.161048039793968,0.790290176868439,0.591189384460449,-0.144802376627922,0.790510952472687,0.595083832740784,-0.161965847015381,0.729909658432007,0.664077460765839,-0.282715231180191,0.688234865665436,0.668135464191437,-0.119536228477955,0.741564631462097,0.660146296024323,-0.282793939113617,0.688467144966125,0.667862772941589,
- -0.16197481751442,0.72606098651886,0.668281197547913,-0.284881949424744,0.687705993652344,0.667759537696838,-0.13439080119133,0.304916203022003,0.942849576473236,-0.164286345243454,0.30642893910408,0.937609434127808,-0.124748721718788,0.304369747638702,0.944349944591522,-0.124930910766125,0.296807378530502,0.946729958057404,-0.162694722414017,0.285335838794708,0.94451779127121,-0.150870844721794,0.288983881473541,0.945371031761169,-0.125602930784225,0.265229791402817,0.955969274044037,-0.0807445645332336,0.254368722438812,0.963730692863464,-0.142111912369728,0.269096732139587,0.952570796012878,-0.203134417533875,0.263652175664902,0.942986726760864,-0.125209376215935,0.284516930580139,0.950459241867065,-0.147944658994675,0.278644800186157,0.948930680751801,-0.101781003177166,0.194719463586807,0.975563943386078,-0.126510798931122,0.203877031803131,0.970787942409515,-0.177163660526276,0.222278475761414,0.958751976490021,-0.179386705160141,0.202594488859177,0.962692081928253,-0.126255884766579,0.225037917494774,0.966135382652283,-0.186557069420815,0.199493885040283,0.96197646856308,-0.176094084978104,0.23149673640728,0.956765472888947,-0.10179778188467,0.204466238617897,0.973566114902496,-0.0987821072340012,0.203346073627472,0.974111080169678,-0.363739818334579,0.0671228915452957,0.929079115390778,-0.188993841409683,0.107429519295692,0.976084113121033,-0.163205400109291,0.112949073314667,0.980105340480804,-0.0950093418359756,0.219959363341331,0.970871388912201,-0.173298627138138,0.254878222942352,0.951317369937897,-0.200774550437927,0.266802996397018,0.942605793476105,-0.297335803508759,-0.334729880094528,0.894174158573151,-0.2095085978508,-0.32003378868103,0.923950493335724,-0.269578993320465,-0.330358624458313,0.904538810253143,-0.125747293233871,0.727385878562927,0.674609124660492,-0.149734035134315,0.717548251152039,0.680223762989044,-0.218285858631134,0.686363041400909,0.693727016448975,-0.311744064092636,0.730586349964142,0.607502579689026,-0.124233931303024,0.715282261371613,0.687704384326935,-0.223568767309189,0.727097272872925,0.649112105369568,
- -0.145069226622581,0.708029568195343,0.691121637821198,-0.124067910015583,0.713959753513336,0.689107179641724,-0.0938051119446754,0.721875786781311,0.685635447502136,-0.130056843161583,0.762390613555908,0.633912980556488,-0.298139333724976,0.761874139308929,0.575031101703644,-0.0680710598826408,0.756612479686737,0.650310754776001,-0.149687200784683,0.704343676567078,0.693897545337677,-0.0927179232239723,0.719264328479767,0.688521862030029,-0.123753570020199,0.711458623409271,0.691745519638062,-0.067947581410408,0.756953418254852,0.649926662445068,-0.147197708487511,0.770840883255005,0.619787931442261,-0.130787923932076,0.768418788909912,0.626439988613129,-0.138321995735168,0.705727517604828,0.694849491119385,-0.0920814424753189,0.717731654644012,0.690204560756683,-0.149732619524002,0.702501118183136,0.695753157138824,-0.147910833358765,0.755974590778351,0.637671411037445,-0.0672658011317253,0.758831679821014,0.647803783416748,-0.106687977910042,0.758064806461334,0.643393695354462,-0.296236515045166,0.659518599510193,0.690853893756866,-0.137081027030945,0.701762914657593,0.699097752571106,-0.149813115596771,0.699115037918091,0.699138224124908,-0.260681480169296,0.766332030296326,0.587180078029633,-0.147531896829605,0.76413232088089,0.627962052822113,-0.105789363384247,0.760586082935333,0.640560209751129,-0.147360756993294,0.767619788646698,0.623734414577484,-0.260737150907516,0.766185224056244,0.587346792221069,-0.271066665649414,0.765501797199249,0.583549439907074,0.149969577789307,-0.333065539598465,0.930900871753693,-0.022312106564641,-0.327621012926102,0.944545745849609,0.198449358344078,-0.332793861627579,0.921881854534149,0.147067427635193,-0.355638921260834,0.922980010509491,-0.0305857490748167,-0.330293416976929,0.943382620811462,-0.022278280928731,-0.331722676753998,0.94311386346817,0.196472078561783,-0.287813901901245,0.937316358089447,-0.0223360992968082,-0.324676126241684,0.945561468601227,0.0505817569792271,-0.314160764217377,0.948021411895752,-0.0222726967185736,-0.332394450902939,0.942877411842346,-0.0306729823350906,-0.330739825963974,0.943223416805267,
- -0.161316394805908,-0.301796972751617,0.939625263214111,0.0492773652076721,-0.308098018169403,0.950077652931213,-0.0223437380045652,-0.32373234629631,0.945884823799133,-0.115205466747284,-0.34143477678299,0.932818353176117,-0.116410419344902,-0.330049306154251,0.93675833940506,-0.0222696866840124,-0.332755923271179,0.942750036716461,-0.1636583507061,-0.327560007572174,0.930548429489136,0.156549215316772,0.983104825019836,0.0948537141084671,-0.0156876258552074,0.996164262294769,0.0860852748155594,0.209489911794662,0.972986102104187,0.0970158129930496,0.154327407479286,0.981486797332764,0.113432444632053,-0.00859152153134346,0.996235907077789,0.0862573385238647,-0.0156890694051981,0.996255874633789,0.0850186049938202,0.208027988672256,0.976368546485901,0.0585557818412781,-0.0156783051788807,0.995572328567505,0.0926821604371071,0.0644570961594582,0.994628071784973,0.0809964910149574,-0.0156910810619593,0.996383666992188,0.0835068896412849,-0.00834856927394867,0.996346294879913,0.0849965587258339,-0.147993102669716,0.987411558628082,0.0558255836367607,0.0637456923723221,0.994961202144623,0.0773879662156105,-0.0156744532287121,0.995327770709991,0.0952736735343933,-0.108389101922512,0.987389922142029,0.115382164716721,-0.111142575740814,0.990174412727356,0.0848650932312012,-0.0156873594969511,0.996147334575653,0.0862810090184212,-0.150583475828171,0.985018134117126,0.0840468257665634,0.161784738302231,0.860435664653778,0.483193755149841,-0.0138093559071422,0.876894116401672,0.480485200881958,0.213819086551666,0.850212514400482,0.481061488389969,0.160562723875046,0.855470836162567,0.492330402135849,-0.012560123577714,0.881487488746643,0.472040504217148,-0.0138831650838256,0.881580948829651,0.471828669309616,0.212496399879456,0.864806234836578,0.454923629760742,-0.0136900888755918,0.869320631027222,0.494058966636658,0.0691671147942543,0.873021304607391,0.482752233743668,-0.0138835366815329,0.881604552268982,0.471784502267838,-0.0125583186745644,0.881491899490356,0.472032189369202,-0.155343592166901,0.884301960468292,0.44031634926796,
- 0.0674687847495079,0.877381384372711,0.475026160478592,-0.0137093355879188,0.870542764663696,0.491901785135269,-0.110000416636467,0.854589641094208,0.507519841194153,-0.113894298672676,0.875520944595337,0.469565063714981,-0.0138675756752491,0.880591034889221,0.473674327135086,-0.158154204487801,0.87042248249054,0.466210424900055,0.105223096907139,-0.7208012342453,0.685108542442322,-0.0175560563802719,-0.743206381797791,0.668832004070282,-0.0499455407261848,-0.747160851955414,0.662764072418213,0.10652981698513,-0.72653603553772,0.678820252418518,0.17779253423214,-0.713400661945343,0.677826941013336,-0.0174849648028612,-0.740196824073792,0.672163009643555,-0.0502545163035393,-0.746189415454865,0.66383421421051,-0.0175420362502337,-0.742612898349762,0.669491231441498,-0.201340943574905,-0.751846313476563,0.62784469127655,-0.0175980161875486,-0.744982719421387,0.66685163974762,0.176715821027756,-0.749242067337036,0.638285100460052,0.0793894454836845,-0.750730514526367,0.655821025371552,-0.203901410102844,-0.72476589679718,0.658132672309875,-0.0175472665578127,-0.742834329605103,0.669245362281799,-0.107317581772804,-0.737420320510864,0.666853964328766,-0.105389170348644,-0.726577758789063,0.678953528404236,-0.017530869692564,-0.742140114307404,0.670015573501587,0.0789942145347595,-0.752345204353333,0.654015779495239
- }
- BinormalsW: *5193 {
- 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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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: *15579 {
- a: 0.130685970187187,-0.55597448348999,-0.820861458778381,0.0243154224008322,-0.570630490779877,-0.820846855640411,0.326945841312408,-0.511260092258453,-0.794807851314545,-0.256767719984055,0.0240033715963364,-0.966175138950348,-0.0529400184750557,0.049005463719368,-0.997394502162933,0.0270758345723152,0.0727470368146896,-0.99698281288147,0.050319779664278,-0.740224301815033,-0.670474469661713,0.305726170539856,-0.692785143852234,-0.653131127357483,0.297342747449875,-0.701280653476715,-0.647914171218872,-0.256271779537201,0.0200260393321514,-0.966397285461426,-0.300749629735947,0.0154755329713225,-0.95357757806778,-0.0523389093577862,0.0434720143675804,-0.997682750225067,-0.195405274629593,-0.0216123312711716,-0.980484426021576,-0.0479340255260468,0.00332997622899711,-0.998844981193542,-0.297668516635895,-0.0247368235141039,-0.954348862171173,-0.296101123094559,-0.0430786125361919,-0.954184770584106,-0.312197148799896,-0.0453696846961975,-0.948933362960815,-0.194651260972023,-0.0419828183948994,-0.979973614215851,0.29146084189415,-0.409810334444046,-0.864353001117706,0.00923096295446157,-0.462939649820328,-0.886341750621796,0.0802097469568253,-0.424559146165848,-0.901840329170227,-0.192405238747597,-0.092971570789814,-0.976901590824127,0.0671413317322731,-0.0816851705312729,-0.994394183158875,-0.0374111495912075,-0.0898369178175926,-0.995253622531891,0.0721733942627907,-0.190550625324249,-0.979020774364471,0.219000682234764,-0.181928545236588,-0.958614051342011,0.257086634635925,-0.164590790867805,-0.952269017696381,0.24848011136055,0.0529546998441219,-0.96718841791153,0.210999891161919,0.0657980665564537,-0.975269138813019,0.210214331746101,0.0434370711445808,-0.976689994335175,0.216080322861671,-0.071919210255146,-0.973723232746124,0.396984905004501,-0.0643606632947922,-0.91556578874588,0.259797513484955,-0.0736797153949738,-0.962848126888275,0.404906719923019,0.0376462377607822,-0.913582682609558,0.211413338780403,0.0238042678683996,-0.977106928825378,0.149627849459648,0.0419645793735981,-0.987851440906525,
- 0.215095400810242,-0.0479425489902496,-0.975415647029877,0.0658032819628716,-0.0552272833883762,-0.996303200721741,0.147877871990204,-0.0612269267439842,-0.987108707427979,0.149524658918381,0.0316718742251396,-0.988250613212585,0.377210825681686,0.0297507178038359,-0.925649464130402,0.404052525758743,0.0233808308839798,-0.914436936378479,-0.192854985594749,-0.0836344957351685,-0.977656483650208,0.006671158131212,-0.0749633759260178,-0.997164070606232,0.0666846558451653,-0.07255569845438,-0.995132684707642,0.147118240594864,-0.0895726159214973,-0.985054910182953,0.0666906908154488,-0.0726759433746338,-0.995123386383057,0.00651013059541583,-0.0847970992326736,-0.996376991271973,-0.148922249674797,-0.0656800046563149,-0.98666524887085,0.00697359628975391,-0.056367464363575,-0.998385727405548,-0.19334551692009,-0.0730161219835281,-0.978410124778748,-0.149203598499298,-0.0542749911546707,-0.987315833568573,-0.194207116961479,-0.0530564934015274,-0.979524672031403,-0.311682939529419,-0.0565873272716999,-0.94849967956543,0.00651652598753572,-0.0844076946377754,-0.996410012245178,0.0175506696105003,-0.0784702226519585,-0.996761977672577,0.147125169634819,-0.0893321111798286,-0.98507559299469,0.00696762604638934,-0.0567361824214458,-0.998364984989166,-0.148909255862236,-0.0661887228488922,-0.98663330078125,0.0171853434294462,-0.062237374484539,-0.997913420200348,-0.311681747436523,-0.0566135346889496,-0.948498606681824,-0.167268499732018,-0.0610336847603321,-0.984020411968231,-0.149200275540352,-0.0544149987399578,-0.987308621406555,0.0170689895749092,-0.0571057982742786,-0.998222231864929,-0.149044811725616,-0.0608093440532684,-0.986958920955658,-0.166955098509789,-0.0468905903398991,-0.984848856925964,-0.167432352900505,-0.0691027268767357,-0.983458817005157,-0.311348795890808,-0.0634502395987511,-0.948175072669983,-0.295720040798187,-0.064795009791851,-0.953074753284454,-0.295681178569794,-0.0638599395751953,-0.953149795532227,-0.149137511849403,-0.087452158331871,-0.984941780567169,-0.167428195476532,-0.0688910931348801,-0.983474373817444,
- -0.135949999094009,-0.000781701877713203,-0.990715503692627,0.0169978216290474,-0.0539761260151863,-0.998397648334503,-0.166824892163277,-0.041418269276619,-0.985116243362427,-0.148269042372704,-0.0815242230892181,-0.98558109998703,-0.295483291149139,-0.0591892227530479,-0.953512609004974,-0.215123996138573,-0.0730317309498787,-0.973852157592773,-0.207549288868904,-0.0338478498160839,-0.977638781070709,-0.0103342421352863,-0.0831643119454384,-0.996482253074646,-0.143599167466164,-0.0502075552940369,-0.988361537456512,-0.0109470626339316,-0.0502753928303719,-0.998675405979156,0.0172018781304359,-0.0629679188132286,-0.997867405414581,-0.14102703332901,-0.0333399102091789,-0.989444315433502,-0.0137119963765144,-0.093594454228878,-0.995516002178192,-0.0183070097118616,-0.0840766429901123,-0.996291100978851,-0.14495413005352,-0.059199582785368,-0.987665891647339,0.00735454028472304,-0.0284419767558575,-0.999568402767181,0.103389956057072,-0.0609416328370571,-0.992772221565247,-0.0078846849501133,-0.0362111330032349,-0.999313056468964,0.100308381021023,-0.0838318169116974,-0.991418421268463,0.0172778647392988,-0.0663308650255203,-0.997648060321808,-0.0151023743674159,-0.0693590492010117,-0.997477531433105,0.105964004993439,-0.0414728112518787,-0.993504703044891,0.0120465271174908,-0.0138982534408569,-0.999830961227417,0.196677014231682,-0.0603830255568028,-0.978607296943665,0.147273272275925,-0.0841369405388832,-0.98551082611084,0.0174828488379717,-0.0754426270723343,-0.996996879577637,0.105654656887054,-0.0694730579853058,-0.991973102092743,0.0973875001072884,-0.105128802359104,-0.989678561687469,0.105635337531567,-0.0689895004034042,-0.992008984088898,0.01747384108603,-0.0750408470630646,-0.997027456760406,0.369939804077148,0.103443428874016,-0.92327892780304,0.149871602654457,0.126923069357872,-0.980524897575378,0.0972437933087349,0.102754950523376,-0.989941954612732,0.205148205161095,-0.0172895342111588,-0.978578209877014,0.259448349475861,-0.0275846086442471,-0.965362966060638,0.11019940674305,-0.00870462693274021,-0.99387139081955,
- 0.104188345372677,-0.0343671068549156,-0.993963718414307,0.106780648231506,-0.0352272503077984,-0.993658363819122,0.259484022855759,-0.0324106216430664,-0.965203404426575,0.0993666723370552,0.06468366086483,-0.992946267127991,0.25727990269661,0.0744518116116524,-0.963464558124542,0.373082220554352,0.0741319954395294,-0.924832046031952,0.258897840976715,0.0136268921196461,-0.965808689594269,0.214459344744682,0.0326316729187965,-0.976187765598297,0.298855572938919,0.0139882573857903,-0.954195857048035,0.299401074647903,0.00413810415193439,-0.954118371009827,0.378610044717789,0.0125259356573224,-0.925471544265747,0.259116768836975,0.000773651932831854,-0.965845704078674,0.177073806524277,-0.213643372058868,-0.960729598999023,0.067210927605629,-0.24773582816124,-0.966493487358093,0.359599739313126,-0.148421749472618,-0.921226918697357,-0.314166009426117,0.30279666185379,-0.899785459041595,-0.12029542028904,0.371771425008774,-0.920497179031372,-0.0414464697241783,0.410180270671844,-0.911062180995941,0.129480928182602,-0.450806826353073,-0.883180558681488,0.377808123826981,-0.367597728967667,-0.849784076213837,0.370102524757385,-0.3789142370224,-0.848203003406525,-0.313128560781479,0.29959499835968,-0.901217699050903,-0.35406881570816,0.283760696649551,-0.891131401062012,-0.118805959820747,0.366801172494888,-0.922682106494904,-0.244388312101364,0.276471257209778,-0.92942887544632,-0.107999585568905,0.330768555402756,-0.937511742115021,-0.344488263130188,0.247358545660973,-0.905616700649261,-0.339934855699539,0.230630412697792,-0.911731243133545,-0.355022817850113,0.223868012428284,-0.907657384872437,-0.240357056260109,0.257342159748077,-0.935950577259064,0.306368589401245,-0.0359540656208992,-0.951233744621277,0.0308836493641138,-0.128622099757195,-0.991212785243988,0.0958890989422798,-0.0755793899297714,-0.992518544197083,-0.230344980955124,0.211343809962273,-0.949881672859192,0.0207399539649487,0.271201491355896,-0.962299227714539,-0.0823138281702995,0.24530653655529,-0.965944707393646,0.0446625575423241,0.16589093208313,-0.985132217407227,
- 0.192387998104095,0.192785918712616,-0.962195754051209,0.228247195482254,0.214269325137138,-0.949732542037964,0.1793602257967,0.417403966188431,-0.890844464302063,0.14430595934391,0.427457869052887,-0.892443716526031,0.147144436836243,0.405835300683975,-0.902023434638977,0.171027556061745,0.300450682640076,-0.938338398933411,0.34935051202774,0.317744076251984,-0.881472051143646,0.210656091570854,0.301703423261642,-0.929838299751282,0.340310275554657,0.412705540657043,-0.844904184341431,0.151017472147942,0.389652639627457,-0.908495783805847,0.0799570083618164,0.396577507257462,-0.914512515068054,0.166580036282539,0.321146100759506,-0.932264029979706,0.014940588735044,0.296071469783783,-0.95504903793335,0.0952230021357536,0.301706790924072,-0.948633551597595,0.0815024077892303,0.387387365102768,-0.918307363986969,0.31678694486618,0.405393064022064,-0.857497811317444,0.341764152050018,0.399902552366257,-0.8504558801651,-0.232315734028816,0.22023943066597,-0.947377443313599,-0.0427636094391346,0.267272561788559,-0.962671637535095,0.0187432188540697,0.279792904853821,-0.95987743139267,0.0992480963468552,0.275064796209335,-0.956289291381836,0.0187075845897198,0.279945969581604,-0.959833443164825,-0.0412805899977684,0.258003711700439,-0.96526163816452,-0.200193345546722,0.244931355118752,-0.948647081851959,-0.0455699861049652,0.284812390804291,-0.957499504089355,-0.234684616327286,0.231031611561775,-0.944217920303345,-0.202169820666313,0.254779815673828,-0.945629239082336,-0.238192528486252,0.247221872210503,-0.939226090908051,-0.352674216032028,0.213462308049202,-0.911073386669159,-0.0413421764969826,0.258388638496399,-0.965156018733978,-0.0279748179018497,0.26614311337471,-0.963527500629425,0.0992079600691795,0.275334089994431,-0.956215918064117,-0.0455138087272644,0.284461289644241,-0.957606554031372,-0.200097903609276,0.244457930326462,-0.948789298534393,-0.0311099421232939,0.281898438930511,-0.958939850330353,-0.35266837477684,0.21343669295311,-0.911081671714783,-0.211520612239838,0.246151521801949,-0.945869147777557,
- -0.202142030000687,0.254640728235245,-0.945672631263733,-0.0320675559341908,0.286703854799271,-0.957482516765594,-0.201109483838081,0.249486044049263,-0.947265386581421,-0.213611200451851,0.259937018156052,-0.94170218706131,-0.210332006216049,0.238419517874718,-0.9481121301651,-0.351200819015503,0.207018956542015,-0.91312712430954,-0.331942707300186,0.21085424721241,-0.919431626796722,-0.332062244415283,0.211758688092232,-0.919180572032928,-0.191969379782677,0.225050166249275,-0.955248773097992,-0.210367828607559,0.238651379942894,-0.94804584980011,-0.193578660488129,0.308860391378403,-0.931199550628662,-0.0326646454632282,0.289698421955109,-0.956560432910919,-0.214391320943832,0.265144914388657,-0.940071582794189,-0.19212731719017,0.230887830257416,-0.953822791576386,-0.332651823759079,0.216249614953995,-0.91792094707489,-0.253920912742615,0.223025783896446,-0.941160798072815,-0.252932012081146,0.26250371336937,-0.931191265583038,-0.0517162084579468,0.256315767765045,-0.96520859003067,-0.192841470241547,0.261346042156219,-0.945785582065582,-0.0586635321378708,0.288032442331314,-0.955822110176086,-0.0309430100023746,0.281060427427292,-0.959191203117371,-0.193146020174026,0.277598172426224,-0.94108122587204,-0.0532890632748604,0.245756417512894,-0.967865824699402,-0.060396820306778,0.254228353500366,-0.965256631374359,-0.192654892802238,0.252576559782028,-0.948203146457672,-0.0433675497770309,0.311168879270554,-0.949364721775055,0.0479233153164387,0.295912116765976,-0.954012274742126,-0.0579194016754627,0.302022814750671,-0.951539576053619,0.0486463084816933,0.2733513712883,-0.960683405399323,-0.0302965231239796,0.277814000844955,-0.960157036781311,-0.0596477426588535,0.269055008888245,-0.961275994777679,0.0473021306097507,0.314540863037109,-0.948064625263214,-0.0411370098590851,0.325492531061172,-0.944649338722229,0.143858700990677,0.307799160480499,-0.940512835979462,0.0984798595309258,0.280206680297852,-0.954874932765961,-0.0285602658987045,0.269087880849838,-0.962692081928253,0.054613221436739,0.287594556808472,-0.956193923950195,
- 0.0492916032671928,0.252330720424652,-0.966384887695313,0.054514653980732,0.288046568632126,-0.956063449382782,-0.0286350548267365,0.269463986158371,-0.962584614753723,0.297758936882019,0.47160342335701,-0.830017983913422,0.0665667206048965,0.472672075033188,-0.878720641136169,0.0183744803071022,0.445712596178055,-0.894987523555756,0.145273640751839,0.34944748878479,-0.925625205039978,0.199254974722862,0.344339340925217,-0.917457401752472,0.0461935810744762,0.346237868070602,-0.937008798122406,0.047315701842308,0.320726245641708,-0.945989370346069,0.0470971874892712,0.32054477930069,-0.946061789989471,0.200116872787476,0.339626491069794,-0.919025063514709,0.0264923591166735,0.411663502454758,-0.910950899124146,0.180679634213448,0.43802347779274,-0.880619287490845,0.305545449256897,0.445504367351532,-0.841527104377747,0.1920006275177,0.382631182670593,-0.903730690479279,0.146550551056862,0.396558612585068,-0.906236410140991,0.234271019697189,0.386102318763733,-0.89221203327179,0.236402839422226,0.377226591110229,-0.895440578460693,0.321000307798386,0.389530748128891,-0.86326390504837,0.194313362240791,0.370680153369904,-0.908206224441528,0.135951638221741,-0.890737056732178,-0.433710366487503,0.0240272600203753,-0.904398262500763,-0.426012367010117,0.322203576564789,-0.841431140899658,-0.433795392513275,-0.254430204629898,-0.462383806705475,-0.84939181804657,-0.0520000457763672,-0.45636323094368,-0.888272941112518,0.0332165472209454,-0.434235841035843,-0.900186598300934,0.0496641919016838,-0.976280510425568,-0.210736304521561,0.303476542234421,-0.92728316783905,-0.219198331236839,0.292080640792847,-0.932693779468536,-0.211592078208923,-0.25394281744957,-0.465846419334412,-0.847643911838531,-0.300135165452957,-0.463495790958405,-0.833720922470093,-0.0513915717601776,-0.461432188749313,-0.885685741901398,-0.191059246659279,-0.50947767496109,-0.839004695415497,-0.047043289989233,-0.49682605266571,-0.866574168205261,-0.296958178281784,-0.498636215925217,-0.814357280731201,-0.295352905988693,-0.514362931251526,-0.805107116699219,
- -0.310152143239975,-0.514130890369415,-0.799671828746796,-0.190349042415619,-0.526942789554596,-0.828310668468475,0.29019621014595,-0.787278711795807,-0.544039011001587,0.00914384610950947,-0.843688189983368,-0.536755621433258,0.0843712761998177,-0.819522500038147,-0.566801905632019,-0.188268840312958,-0.568836987018585,-0.800611853599548,0.0685311257839203,-0.567433178424835,-0.820562660694122,-0.0367237292230129,-0.575329899787903,-0.817096590995789,0.0744853019714355,-0.654855370521545,-0.752074718475342,0.221801728010178,-0.636318385601044,-0.738852441310883,0.256765902042389,-0.619039833545685,-0.742200076580048,0.252319037914276,-0.436389803886414,-0.863654494285584,0.211524859070778,-0.430943161249161,-0.877237260341644,0.212484449148178,-0.450046420097351,-0.86735725402832,0.218664899468422,-0.549031913280487,-0.806690573692322,0.402096688747406,-0.512826859951019,-0.758503198623657,0.264067947864532,-0.544534504413605,-0.796084344387054,0.41021853685379,-0.423371613025665,-0.80776059627533,0.213791698217392,-0.46806675195694,-0.857441902160645,0.147353976964951,-0.45858708024025,-0.876347482204437,0.217586994171143,-0.528399467468262,-0.820639908313751,0.0669810324907303,-0.545477986335754,-0.835444390773773,0.145965024828911,-0.546284019947052,-0.824783623218536,0.147284775972366,-0.467450708150864,-0.871663391590118,0.38083615899086,-0.436017572879791,-0.815385043621063,0.409331887960434,-0.436285555362701,-0.801312863826752,-0.188694268465042,-0.561106979846954,-0.805948793888092,0.0085712568834424,-0.563539445400238,-0.826044678688049,0.0680071115493774,-0.55997908115387,-0.825710892677307,0.145318672060966,-0.569398045539856,-0.809115827083588,0.0679445862770081,-0.559091866016388,-0.826317012310028,0.00842143315821886,-0.571541607379913,-0.820529878139496,-0.1534114331007,-0.550181329250336,-0.820832192897797,0.00885412469506264,-0.548166751861572,-0.83632230758667,-0.189170926809311,-0.551998436450958,-0.812103509902954,-0.153713151812553,-0.540274560451508,-0.827330470085144,-0.189934134483337,-0.536242067813873,-0.822416841983795,
- -0.309707552194595,-0.523448407649994,-0.793777644634247,0.00842775404453278,-0.571206152439117,-0.820763349533081,0.0178219731897116,-0.565847396850586,-0.824317336082459,0.145326107740402,-0.569155931472778,-0.809284806251526,0.00884844176471233,-0.548478960990906,-0.836117565631866,-0.153397843241692,-0.550609827041626,-0.820547342300415,0.0174266193062067,-0.553295314311981,-0.832802891731262,-0.309705436229706,-0.523491322994232,-0.79375022649765,-0.166232004761696,-0.545097053050995,-0.821727514266968,-0.153709828853607,-0.540387809276581,-0.827257096767426,0.017288014292717,-0.548894584178925,-0.835712790489197,-0.153540179133415,-0.546049356460571,-0.823562681674957,-0.16589292883873,-0.532873392105103,-0.82977432012558,-0.166404694318771,-0.551826357841492,-0.817188560962677,-0.309405863285065,-0.529328882694244,-0.789986670017242,-0.297757208347321,-0.532280802726746,-0.792475759983063,-0.297709107398987,-0.531404256820679,-0.793081820011139,-0.151653945446014,-0.567662596702576,-0.809172570705414,-0.166399538516998,-0.551619291305542,-0.817329406738281,-0.138468995690346,-0.495485097169876,-0.857508540153503,0.0172100719064474,-0.546419978141785,-0.837334513664246,-0.165755853056908,-0.528234660625458,-0.832762360572815,-0.150784507393837,-0.562838137149811,-0.812697529792786,-0.29749071598053,-0.527491450309753,-0.795771360397339,-0.211125835776329,-0.551457107067108,-0.807044565677643,-0.203342258930206,-0.519029021263123,-0.830217301845551,-0.0127273099496961,-0.569631516933441,-0.821801662445068,-0.146122217178345,-0.537131905555725,-0.830745220184326,-0.00612157769501209,-0.543811559677124,-0.839185059070587,0.0174348298460245,-0.553555905818939,-0.832629501819611,-0.143554091453552,-0.523084044456482,-0.840104341506958,-0.0161176137626171,-0.578201830387115,-0.815734684467316,-0.0134647255763412,-0.571866571903229,-0.820236146450043,-0.14748053252697,-0.544593453407288,-0.825631558895111,0.00501523399725556,-0.523715317249298,-0.851878702640533,0.101977370679379,-0.549068570137024,-0.829532563686371,
- -0.00306553463451564,-0.531951904296875,-0.846769154071808,0.0988791212439537,-0.568260908126831,-0.816885828971863,0.0175157114863396,-0.556123733520508,-0.830914914608002,-0.0102596571668983,-0.559698224067688,-0.828633010387421,0.104557566344738,-0.53258889913559,-0.839890956878662,0.00971054937690496,-0.511265218257904,-0.859368145465851,0.198706433176994,-0.542032659053802,-0.816527009010315,0.145451977849007,-0.564980804920197,-0.812182545661926,0.0177463628351688,-0.563446879386902,-0.825961649417877,0.100972674787045,-0.557133138179779,-0.824261605739594,0.0959467738866806,-0.585854649543762,-0.804716467857361,0.100956179201603,-0.556758761405945,-0.824516534805298,0.0177359003573656,-0.563114643096924,-0.826188564300537,0.373534560203552,-0.371198207139969,-0.85010814666748,0.147344812750816,-0.381612628698349,-0.912502884864807,0.0930900126695633,-0.404706418514252,-0.909696102142334,0.20742230117321,-0.504255592823029,-0.838273406028748,0.254940062761307,-0.507245302200317,-0.823230087757111,0.108817175030708,-0.504334568977356,-0.856624484062195,0.0996055528521538,-0.527205586433411,-0.843879759311676,0.105371795594692,-0.527291119098663,-0.843125641345978,0.2549789249897,-0.51125955581665,-0.820731043815613,0.095094121992588,-0.439754873514175,-0.893069267272949,0.252715826034546,-0.418031632900238,-0.872573375701904,0.376689732074738,-0.397279292345047,-0.836823761463165,0.254359662532806,-0.471774011850357,-0.844233632087708,0.216913729906082,-0.459703207015991,-0.861174404621124,0.296078026294708,-0.465539991855621,-0.834032535552979,0.29663023352623,-0.473955363035202,-0.829081892967224,0.382238268852234,-0.450773656368256,-0.80665796995163,0.254586338996887,-0.482883393764496,-0.83786004781723,0.138212755322456,0.272132724523544,-0.952282011508942,0.0263864491134882,0.263492614030838,-0.964300572872162,0.324750334024429,0.280636608600616,-0.903205573558807,-0.262000799179077,0.754046320915222,-0.602303683757782,-0.0485813543200493,0.795849859714508,-0.603541970252991,0.0330711789429188,0.811572313308716,-0.583315253257751,
- 0.0514351278543472,0.0388170778751373,-0.997921764850616,0.307955414056778,0.0550138205289841,-0.949809014797211,0.295122385025024,0.0460014156997204,-0.954351544380188,-0.26150307059288,0.751647055149078,-0.605510413646698,-0.298833429813385,0.741068005561829,-0.60126268863678,-0.04797088727355,0.792396664619446,-0.608117043972015,-0.19126832485199,0.73766040802002,-0.647513389587402,-0.0436381362378597,0.767399311065674,-0.639682769775391,-0.295901775360107,0.715698480606079,-0.632627725601196,-0.294395208358765,0.703670501708984,-0.646667838096619,-0.312782466411591,0.697583019733429,-0.644627809524536,-0.190582484006882,0.724068343639374,-0.662875056266785,0.29327255487442,0.398474544286728,-0.869027733802795,0.0117835225537419,0.38312441110611,-0.923621594905853,0.0849188789725304,0.418150454759598,-0.904399812221527,-0.188582390546799,0.68978625535965,-0.699021995067596,0.0719148367643356,0.709183156490326,-0.70134699344635,-0.0334034264087677,0.705138802528381,-0.708282053470612,0.0769960731267929,0.627398788928986,-0.774882137775421,0.22449965775013,0.616482436656952,-0.754685044288635,0.25837579369545,0.623791754245758,-0.737648844718933,0.250696271657944,0.774710714817047,-0.580495238304138,0.211739271879196,0.789586186408997,-0.575951516628265,0.216372177004814,0.775113046169281,-0.593618631362915,0.221911922097206,0.699264347553253,-0.679547250270844,0.403379380702972,0.657559752464294,-0.636317729949951,0.262066185474396,0.689923346042633,-0.674779295921326,0.411018759012222,0.721604764461517,-0.557090818881989,0.217478379607201,0.763348281383514,-0.608278334140778,0.152086466550827,0.783193588256836,-0.602890968322754,0.221037343144417,0.715180933475494,-0.663067638874054,0.0705550462007523,0.727673053741455,-0.682285845279694,0.150453940033913,0.716576039791107,-0.681089103221893,0.15199588239193,0.776929676532745,-0.610964477062225,0.382695317268372,0.726764500141144,-0.570401310920715,0.410219103097916,0.713207840919495,-0.568379163742065,-0.188996270298958,0.696396231651306,-0.692324161529541,0.00577129330486059,0.715679705142975,-0.698404788970947,
- 0.0714519172906876,0.715612351894379,-0.694833517074585,0.149724915623665,0.696884751319885,-0.701380133628845,0.0714496374130249,0.715643763542175,-0.694801390171051,0.0056070713326335,0.708760559558868,-0.705426871776581,-0.151525646448135,0.713475167751312,-0.684100270271301,0.00608133617788553,0.72861510515213,-0.684896409511566,-0.18946772813797,0.70419442653656,-0.684260308742523,-0.151786342263222,0.721028447151184,-0.676076054573059,-0.190183237195015,0.716683089733124,-0.670966267585754,-0.312306821346283,0.690104484558105,-0.652855455875397,0.00561342388391495,0.709028899669647,-0.705157101154327,0.0109433913603425,0.713104665279388,-0.700972139835358,0.149731799960136,0.697059333324432,-0.701205134391785,0.0060752434656024,0.728362560272217,-0.685165107250214,-0.151513189077377,0.713125169277191,-0.684467911720276,0.0105787701904774,0.72439843416214,-0.689300417900085,-0.31230503320694,0.690077602863312,-0.652884721755981,-0.166730716824532,0.714148283004761,-0.679847836494446,-0.151783064007759,0.720930397510529,-0.676181375980377,0.0104623828083277,0.727945148944855,-0.685555636882782,-0.151643246412277,0.716827750205994,-0.680560290813446,-0.166278690099716,0.725468337535858,-0.667867541313171,-0.166939288377762,0.708428025245667,-0.685755789279938,-0.311988264322281,0.685363411903381,-0.657982051372528,-0.295119911432266,0.688526332378387,-0.662446796894073,-0.295077294111252,0.689223408699036,-0.661740481853485,-0.146888762712479,0.698325395584106,-0.700546503067017,-0.166929706931114,0.708698928356171,-0.685478150844574,-0.133782625198364,0.758292257785797,-0.63804018497467,0.010391753166914,0.73008394241333,-0.683278441429138,-0.166111260652542,0.729350388050079,-0.663667917251587,-0.146019339561462,0.702641725540161,-0.696399986743927,-0.294870167970657,0.692537307739258,-0.658364355564117,-0.212907433509827,0.699006795883179,-0.682685911655426,-0.205148294568062,0.727416217327118,-0.654812812805176,-0.00507614482194185,0.708784461021423,-0.705406963825226,-0.141377106308937,0.72483503818512,-0.674260079860687,
- -0.00374128040857613,0.731644630432129,-0.681675970554352,0.0105958348140121,0.723875820636749,-0.689848899841309,-0.138828814029694,0.7364382147789,-0.662106692790985,-0.00845081731677055,0.701322078704834,-0.712794482707977,-0.0110806943848729,0.708118379116058,-0.70600688457489,-0.142731234431267,0.71850574016571,-0.680718243122101,0.0124918138608336,0.746217787265778,-0.665584683418274,0.0993978977203369,0.722063541412354,-0.684649050235748,-0.00068021792685613,0.741193413734436,-0.671291172504425,0.0961432382464409,0.705941140651703,-0.701714754104614,0.0106702335178852,0.721591353416443,-0.692237079143524,-0.00786900520324707,0.71852308511734,-0.695458590984344,0.102037526667118,0.735042333602905,-0.670299291610718,0.0171649474650621,0.755775213241577,-0.65460616350174,0.198413148522377,0.709940969944,-0.675733685493469,0.149874031543732,0.700704991817474,-0.697531580924988,0.0108756124973297,0.715225160121918,-0.698809564113617,0.0999555885791779,0.714829206466675,-0.692118585109711,0.0930890291929245,0.690697133541107,-0.717127621173859,0.0999392047524452,0.715156257152557,-0.691783010959625,0.0108664678409696,0.715510427951813,-0.698517560958862,0.375446289777756,0.772270083427429,-0.512483179569244,0.152224034070969,0.832069337368011,-0.533374786376953,0.0922912135720253,0.82600462436676,-0.556056439876556,0.207264542579651,0.738068878650665,-0.642102718353271,0.260726511478424,0.721506953239441,-0.641443192958832,0.106505520641804,0.75680136680603,-0.644909501075745,0.0986303091049194,0.739538848400116,-0.665848672389984,0.102875202894211,0.739142239093781,-0.665646731853485,0.26076740026474,0.718408763408661,-0.644894778728485,0.0942459478974342,0.803458690643311,-0.587853789329529,0.258418291807175,0.785504221916199,-0.56231963634491,0.378585427999496,0.754620850086212,-0.535929501056671,0.260116070508957,0.74837726354599,-0.610140264034271,0.216877192258835,0.768421351909637,-0.602073848247528,0.296422064304352,0.740462899208069,-0.603198707103729,0.296990185976028,0.734274387359619,-0.610440909862518,
- 0.384086787700653,0.715560138225555,-0.583481788635254,0.260352075099945,0.740207672119141,-0.619927048683167,0.110999502241611,0.695889592170715,-0.709518730640411,-0.0270090494304895,0.711347818374634,-0.702320992946625,0.143746301531792,0.684389352798462,-0.714806497097015,0.250459223985672,0.683677613735199,-0.685459792613983,0.111827097833157,0.706359505653381,-0.698964178562164,0.147954285144806,0.706156253814697,-0.692425310611725,-0.0144906928762794,0.748013377189636,-0.663525462150574,0.1119120195508,0.707442939281464,-0.697854042053223,-0.049115464091301,0.738193511962891,-0.672798633575439,-0.23511877655983,0.679884314537048,-0.69460529088974,-0.0419128350913525,0.664561927318573,-0.746056795120239,-0.0623499862849712,0.678755223751068,-0.731712937355042,0.11191825568676,0.707522571086884,-0.697772264480591,0.250452935695648,0.684531807899475,-0.684609115123749,0.139016851782799,0.698202192783356,-0.702273488044739,0.32815083861351,0.670732915401459,-0.665157496929169,0.139030873775482,0.69783353805542,-0.702637016773224,0.250450879335403,0.684800028800964,-0.684341609477997,-0.0596442744135857,0.691472589969635,-0.71993625164032,-0.112092547118664,0.697559237480164,-0.707704961299896,-0.230802819132805,0.695535361766815,-0.68041205406189,-0.295862197875977,0.675292193889618,-0.675607919692993,-0.234567224979401,0.681924521923065,-0.692789375782013,-0.112546019256115,0.693285882472992,-0.711820244789124,-0.0560394078493118,0.707957327365875,-0.704028487205505,0.110957741737366,0.695365369319916,-0.710039019584656,0.00558374542742968,0.705050110816956,-0.709135591983795,-0.110989265143871,0.707703411579132,-0.697737216949463,-0.0545436851680279,0.714645981788635,-0.697356522083282,0.00560716260224581,0.702045917510986,-0.712109684944153,0.110883891582489,0.694439232349396,-0.710956335067749,0.138863861560822,0.702151119709015,-0.698355674743652,0.00558038800954819,0.705478668212891,-0.708709180355072,-0.295925557613373,0.672345221042633,-0.678513050079346,-0.113306514918804,0.685977399349213,-0.718746662139893,
- -0.178139746189117,0.696291744709015,-0.695301413536072,-0.177850589156151,0.687352180480957,-0.70421314239502,-0.110796608030796,0.709439277648926,-0.696002900600433,0.00560208642855287,0.702699184417725,-0.711465060710907,-0.279080480337143,0.685148179531097,-0.672819495201111,-0.295987039804459,0.66921854019165,-0.681570410728455,-0.178119584918022,0.695642650127411,-0.695955991744995,0.00558061106130481,0.705450296401978,-0.70873749256134,0.138862386345863,0.702188670635223,-0.698318183422089,0.0949298888444901,0.704982459545136,-0.702842831611633,0.138944745063782,0.700080037117004,-0.700415790081024,0.328003317117691,0.672511458396912,-0.663432121276855,0.0950137749314308,0.702843904495239,-0.704970121383667,-0.0498940087854862,0.702335298061371,-0.710095643997192,-0.177945390343666,0.690199851989746,-0.701398313045502,0.00558329466730356,0.705107510089874,-0.709078431129456,-0.276921063661575,0.667889773845673,-0.690824151039124,-0.177885785698891,0.688400745391846,-0.703179359436035,-0.049859669059515,0.70146656036377,-0.710956275463104,0.227642267942429,0.690927922725677,-0.686146914958954,0.0950522720813751,0.701852738857269,-0.705951690673828,0.32817143201828,0.670482039451599,-0.665400147438049,0.328646510839462,0.664535403251648,-0.671106696128845,0.345953434705734,0.660493969917297,-0.666381239891052,0.227649196982384,0.690118551254272,-0.686958730220795,0.00553667265921831,0.703157305717468,-0.711012780666351,0.00559238158166409,0.703945100307465,-0.710232377052307,0.094964511692524,0.704103171825409,-0.703719019889832,0.0949175432324409,0.705294787883759,-0.702531099319458,0.227670088410378,0.687429130077362,-0.689643144607544,0.00554656889289618,0.704414129257202,-0.709767520427704,0.00544649222865701,0.691704750061035,-0.722159862518311,-0.0492157451808453,0.685320913791656,-0.726576268672943,0.00569681404158473,0.690305531024933,-0.723495543003082,0.345454424619675,0.666250944137573,-0.660886466503143,0.0703133121132851,0.685146152973175,-0.725004017353058,0.227646514773369,0.690437436103821,-0.686639070510864,
- 0.227660775184631,0.688684284687042,-0.688392817974091,0.0657302141189575,0.714727759361267,-0.696307301521301,0.00555774290114641,0.705833256244659,-0.708356201648712,0.0138108404353261,0.670984625816345,-0.741342723369598,0.0700843408703804,0.686671078205109,-0.723582088947296,0.345384687185287,0.667032718658447,-0.660133898258209,-0.118639834225178,0.724294900894165,-0.679206550121307,0.0610817223787308,0.742802023887634,-0.666719019412994,-0.00276073627173901,0.742424845695496,-0.669923663139343,-0.150660783052444,0.69319611787796,-0.704826593399048,-0.277243763208389,0.67040890455246,-0.688249826431274,-0.0498462878167629,0.701128423213959,-0.711290597915649,-0.148730576038361,0.660916864871979,-0.735573351383209,-0.0487612299621105,0.674084067344666,-0.737043440341949,0.00536287948489189,0.681085884571075,-0.732183873653412,-0.27604004740715,0.661107778549194,-0.69766640663147,-0.150253996253014,0.686077117919922,-0.711844027042389,-0.199595525860786,0.679243683815002,-0.706250429153442,0.0686485767364502,0.696118593215942,-0.714637160301209,-0.0859846994280815,0.682534694671631,-0.725777566432953,0.00547058833763003,0.694764792919159,-0.719216227531433,-0.0821532607078552,0.658220291137695,-0.748329401016235,-0.148769602179527,0.661535978317261,-0.735008656978607,0.00534589262679219,0.67892849445343,-0.734184980392456,0.0648231953382492,0.720353782176971,-0.690571010112762,-0.113003715872765,0.70127409696579,-0.703878402709961,-0.0898305475711823,0.706781089305878,-0.701705753803253,-0.0870983675122261,0.689573049545288,-0.71895968914032,-0.198549419641495,0.670111954212189,-0.715211927890778,-0.149831742048264,0.678881883621216,-0.718797564506531,-0.199624359607697,0.679497897624969,-0.70599764585495,-0.088621012866497,0.699173629283905,-0.709438264369965,-0.112206943333149,0.697997391223907,-0.707254707813263,0.11103317886591,0.469912618398666,-0.87570184469223,-0.0359735414385796,0.488396525382996,-0.871879994869232,0.145059898495674,0.456947565078735,-0.877585649490356,0.246487528085709,0.465438812971115,-0.850065052509308,
- 0.111858814954758,0.482899457216263,-0.868502020835876,0.14936625957489,0.484390079975128,-0.862006962299347,-0.0235355477780104,0.534361124038696,-0.844928562641144,0.111945107579231,0.484273314476013,-0.867725551128387,-0.0506439246237278,0.521351218223572,-0.851838052272797,-0.23500844836235,0.458693981170654,-0.856954395771027,-0.0506699942052364,0.431652426719666,-0.900615870952606,-0.0641042217612267,0.447214424610138,-0.892126739025116,0.111950024962425,0.48435178399086,-0.86768114566803,0.246476843953133,0.466475307941437,-0.849499821662903,0.139850586652756,0.474531471729279,-0.869057953357697,0.328758001327515,0.457766026258469,-0.826055943965912,0.139857888221741,0.474244832992554,-0.869213223457336,0.246474802494049,0.466667383909225,-0.849394917488098,-0.0613584443926811,0.462817072868347,-0.884327709674835,-0.110517732799053,0.47197425365448,-0.874657869338989,-0.230686604976654,0.477700769901276,-0.847694337368011,-0.299517214298248,0.458937585353851,-0.83646023273468,-0.234458476305008,0.461151629686356,-0.855785250663757,-0.110976710915565,0.466678380966187,-0.877436876296997,-0.0576899163424969,0.483273476362228,-0.873566746711731,0.110992230474949,0.469275802373886,-0.876048505306244,0.0069126458838582,0.47878310084343,-0.877906024456024,-0.109403111040592,0.484578967094421,-0.867879152297974,-0.0561626926064491,0.491660445928574,-0.868973970413208,0.00692794565111399,0.475202530622482,-0.879849195480347,0.110918149352074,0.468125283718109,-0.876673221588135,0.139755845069885,0.478195041418076,-0.867062747478485,0.00691060023382306,0.47925928235054,-0.877646148204803,-0.299555420875549,0.455696910619736,-0.838216483592987,-0.111744552850723,0.45767617225647,-0.882068991661072,-0.173616752028465,0.474578440189362,-0.862920939922333,-0.173346549272537,0.46387043595314,-0.868777990341187,-0.109209336340427,0.486734569072723,-0.86669647693634,0.00692438986152411,0.476038008928299,-0.879397571086884,-0.282145857810974,0.468912690877914,-0.836967527866364,-0.299591511487961,0.452247619628906,-0.840069651603699,
- -0.173595502972603,0.473700731992722,-0.8634073138237,0.00691078184172511,0.479217052459717,-0.877669215202332,0.139755114912987,0.478222995996475,-0.867047429084778,0.094488650560379,0.480113953351974,-0.872102320194244,0.139784544706345,0.477096110582352,-0.867663264274597,0.328619331121445,0.460054159164429,-0.824839055538177,0.094536729156971,0.478410214185715,-0.873033046722412,-0.0432396903634071,0.476067423820496,-0.878345131874084,-0.173437342047691,0.467363297939301,-0.866885840892792,0.0069118426181376,0.478970289230347,-0.877804040908813,-0.280047982931137,0.447609692811966,-0.849245965480804,-0.173374086618423,0.464919924736023,-0.868211328983307,-0.0432208590209484,0.475520581007004,-0.878642201423645,0.228051319718361,0.471299678087235,-0.851979613304138,0.0945677906274796,0.477300703525543,-0.873636662960052,0.328756481409073,0.457791268825531,-0.826042592525482,0.32914462685585,0.451166421175003,-0.829525709152222,0.343921542167664,0.448593199253082,-0.824913382530212,0.228065878152847,0.469889760017395,-0.85275411605835,0.00375088956207037,0.476362884044647,-0.879240751266479,0.00691907666623592,0.477282613515854,-0.878722608089447,0.0945227667689323,0.478905916213989,-0.872762620449066,0.0944804474711418,0.480403959751129,-0.871943652629852,0.228082224726677,0.468246608972549,-0.853653073310852,0.00376325915567577,0.477933824062347,-0.878387808799744,0.00364244938828051,0.462591260671616,-0.886564314365387,-0.0425047129392624,0.45492559671402,-0.88951450586319,0.00698743714019656,0.460938274860382,-0.887404680252075,0.343481481075287,0.455227464437485,-0.821455061435699,0.0696342065930367,0.455974340438843,-0.887264609336853,0.228057846426964,0.470675706863403,-0.852322697639465,0.228067576885223,0.469731599092484,-0.852840781211853,0.0653064548969269,0.491333097219467,-0.868519902229309,0.00377749651670456,0.479741990566254,-0.877401471138,0.012222439981997,0.438690751791,-0.898554980754852,0.0694174841046333,0.457784980535507,-0.886348783969879,0.343420535326004,0.456122010946274,-0.820984184741974,
- -0.115849241614342,0.506246566772461,-0.854572057723999,0.0607986263930798,0.526461064815521,-0.84802258014679,-0.00332134589552879,0.525048613548279,-0.851065754890442,-0.150022685527802,0.469270944595337,-0.870217204093933,-0.280358552932739,0.450673878192902,-0.847521185874939,-0.0432107634842396,0.475227475166321,-0.878801286220551,-0.147778987884521,0.427692979574203,-0.891762375831604,-0.0420193895697594,0.441197216510773,-0.896426022052765,0.00354020949453115,0.44960680603981,-0.893219590187073,-0.279179692268372,0.439190179109573,-0.85391491651535,-0.149558126926422,0.460226714611053,-0.875113546848297,-0.202853664755821,0.454259783029556,-0.867466688156128,0.068117268383503,0.468557864427567,-0.880802810192108,-0.0857659131288528,0.452415853738785,-0.887673556804657,0.00367055786773562,0.466160863637924,-0.884692490100861,-0.0818699523806572,0.42265909910202,-0.902583301067352,-0.147840186953545,0.428763777017593,-0.89123797416687,0.0035188808105886,0.446898013353348,-0.894577980041504,0.0644271895289421,0.498317420482636,-0.86459755897522,-0.110289461910725,0.477292090654373,-0.871796131134033,-0.0896785110235214,0.482537597417831,-0.871272206306458,-0.0869268402457237,0.461327701807022,-0.882961213588715,-0.201829954981804,0.443065494298935,-0.873474478721619,-0.149075955152512,0.45110097527504,-0.879934251308441,-0.202888324856758,0.454643845558167,-0.867257356643677,-0.0884716287255287,0.473219662904739,-0.876490712165833,-0.109467230737209,0.473019510507584,-0.874225199222565,0.109789676964283,0.110193207859993,-0.987827777862549,-0.0348960310220718,0.12862591445446,-0.991079032421112,0.149792328476906,0.0972388610243797,-0.983924210071564,0.252733707427979,0.115511029958725,-0.960615992546082,0.110679589211941,0.125421285629272,-0.985910534858704,0.153921559453011,0.127904742956162,-0.979769647121429,-0.0225116722285748,0.181215912103653,-0.983185648918152,0.110771209001541,0.127013236284256,-0.985696375370026,-0.0532768331468105,0.167606890201569,-0.984413385391235,-0.235947012901306,0.107150264084339,-0.965840458869934,
- -0.0495351031422615,0.0653814524412155,-0.996630072593689,-0.0668574348092079,0.0834468305110931,-0.994266927242279,0.110776126384735,0.127098828554153,-0.985684812068939,0.252725750207901,0.116707637906075,-0.960473358631134,0.139542415738106,0.11690104752779,-0.983291447162628,0.326315820217133,0.117519326508045,-0.937927186489105,0.139552161097527,0.116501294076443,-0.98333752155304,0.252723574638367,0.117026604712009,-0.960435092449188,-0.0640927702188492,0.100880227982998,-0.992832064628601,-0.110400103032589,0.11271445453167,-0.987475216388702,-0.231767311692238,0.127930596470833,-0.96432238817215,-0.300230532884598,0.114780806005001,-0.946935594081879,-0.235397949814796,0.109913349151611,-0.965663969516754,-0.110839039087296,0.106917448341846,-0.988070547580719,-0.0603927634656429,0.123966999351978,-0.990446805953979,0.109742186963558,0.109391912817955,-0.987922191619873,0.00689075281843543,0.117878668010235,-0.993004202842712,-0.109332412481308,0.1265968978405,-0.985910594463348,-0.058848399668932,0.133522167801857,-0.989297091960907,0.00693000666797161,0.113412834703922,-0.993523776531219,0.109660588204861,0.108018070459366,-0.988082408905029,0.139426156878471,0.121596038341522,-0.982738494873047,0.00688468106091022,0.118567682802677,-0.992922127246857,-0.300273448228836,0.111048646271229,-0.947366893291473,-0.111580453813076,0.0970015674829483,-0.989009976387024,-0.177670300006866,0.12011144310236,-0.976732552051544,-0.177290141582489,0.105924993753433,-0.978441774845123,-0.109144568443298,0.129008278250694,-0.985618770122528,0.00692253233864903,0.11426467448473,-0.993426322937012,-0.280474632978439,0.123629428446293,-0.951866567134857,-0.300314515829086,0.107068195939064,-0.947812020778656,-0.177655696868896,0.11954040825367,-0.97680526971817,0.00688491621986032,0.118541024625301,-0.99292528629303,0.139425128698349,0.121636368334293,-0.982733547687531,0.0921967849135399,0.121445067226887,-0.988307058811188,0.139473840594292,0.119685329496861,-0.982966184616089,0.326176434755325,0.120082393288612,-0.937650978565216,
- 0.0922712385654449,0.118707798421383,-0.988632619380951,-0.0513755194842815,0.114413365721703,-0.99210399389267,-0.177403137087822,0.110006213188171,-0.977970719337463,0.00689218146726489,0.117716260254383,-0.993023335933685,-0.278489172458649,0.099844865500927,-0.955235481262207,-0.177363395690918,0.10855795443058,-0.978139758110046,-0.0513876937329769,0.114773444831371,-0.992061674594879,0.227913931012154,0.120103821158409,-0.966245591640472,0.0923078805208206,0.117350615561008,-0.988791227340698,0.326316237449646,0.117510937154293,-0.937927961349487,0.326711237430573,0.110013887286186,-0.93869948387146,0.342309772968292,0.109103865921497,-0.933231174945831,0.227937594056129,0.118132673203945,-0.966482877731323,0.0087268790230155,0.114984512329102,-0.993328928947449,0.00690229889005423,0.116567134857178,-0.993158936500549,0.0922311097383499,0.120186612010002,-0.988457679748535,0.0921851173043251,0.121871709823608,-0.988255620002747,0.227938950061798,0.118027947843075,-0.966495335102081,0.00873921997845173,0.116759017109871,-0.993121802806854,0.00861772894859314,0.0994460731744766,-0.99500572681427,-0.05054035410285,0.0901511162519455,-0.9946448802948,0.00707486784085631,0.0967729091644287,-0.995281338691711,0.341831207275391,0.116867877542973,-0.932466268539429,0.0693157017230988,0.0922625660896301,-0.993319153785706,0.227922558784485,0.11939387768507,-0.966331422328949,0.227920189499855,0.119596190750599,-0.966306984424591,0.0647470355033875,0.133199512958527,-0.988972067832947,0.00875329691916704,0.118787355720997,-0.992881238460541,0.012479848228395,0.0716041326522827,-0.997355163097382,0.069087028503418,0.0943410024046898,-0.993139863014221,0.341764509677887,0.11792353540659,-0.932357788085938,-0.122859969735146,0.150584265589714,-0.980933129787445,0.0601137019693851,0.173510044813156,-0.982995748519897,-0.00371444714255631,0.17100478708744,-0.985263168811798,-0.155399933457375,0.110520988702774,-0.98164963722229,-0.278775095939636,0.103157542645931,-0.954799950122833,-0.0513843111693859,0.114673465490341,-0.9920734167099,
- -0.153610587120056,0.067180909216404,-0.98584508895874,-0.0499951131641865,0.0747367218136787,-0.995949268341064,0.00851394142955542,0.0849193036556244,-0.996351480484009,-0.277647197246552,0.0902867466211319,-0.956431150436401,-0.155021384358406,0.100745096802711,-0.982760906219482,-0.206589877605438,0.0985212996602058,-0.973454773426056,0.0676596313714981,0.107243485748768,-0.991927921772003,-0.0816835910081863,0.0906241983175278,-0.992529630661011,0.00864620227366686,0.103473082184792,-0.994594693183899,-0.0779762044548988,0.0578339472413063,-0.99527633190155,-0.153641119599342,0.0678664520382881,-0.985793471336365,0.00849213451147079,0.0818965956568718,-0.996604681015015,0.0638446137309074,0.141143247485161,-0.98792839050293,-0.117177493870258,0.117216311395168,-0.986169338226318,-0.0854112505912781,0.124318845570087,-0.988559424877167,-0.0827158913016319,0.0998804941773415,-0.991555333137512,-0.205543771386147,0.0858034491539001,-0.974879264831543,-0.154627323150635,0.0909478291869164,-0.98377788066864,-0.206618681550026,0.098877064883709,-0.973412573337555,-0.0841998904943466,0.113286346197128,-0.989988267421722,-0.116398476064205,0.112693481147289,-0.986788511276245,0.111126713454723,-0.147848024964333,-0.982747077941895,-0.0308733489364386,-0.13201017677784,-0.990767478942871,0.147343322634697,-0.159234374761581,-0.976183593273163,0.248351559042931,-0.13594214618206,-0.959083557128906,0.111947529017925,-0.1331727206707,-0.984750092029572,0.151463806629181,-0.128563210368156,-0.980066537857056,-0.0185381416231394,-0.0792664960026741,-0.996681094169617,0.112034402787685,-0.131591454148293,-0.984952807426453,-0.0473368428647518,-0.0923186466097832,-0.99460369348526,-0.234696239233017,-0.145702123641968,-0.961087286472321,-0.0454935021698475,-0.194524005055428,-0.979842305183411,-0.0611391477286816,-0.176810324192047,-0.982344210147858,0.112038470804691,-0.131517559289932,-0.984962284564972,0.248337402939796,-0.134797647595406,-0.959248840808868,0.137846574187279,-0.140004709362984,-0.98050856590271,0.326079517602921,-0.128010243177414,-0.936635315418243,
- 0.137850910425186,-0.14022159576416,-0.980476915836334,0.248336285352707,-0.134711638092995,-0.959261119365692,-0.0583221651613712,-0.159444779157639,-0.985482573509216,-0.115214191377163,-0.145186379551888,-0.982673287391663,-0.230358764529228,-0.124899655580521,-0.965056955814362,-0.296852618455887,-0.133209198713303,-0.945586621761322,-0.234144285321236,-0.143029421567917,-0.961623132228851,-0.11568596214056,-0.151180014014244,-0.981713473796844,-0.0545538179576397,-0.136313185095787,-0.989162683486938,0.111086897552013,-0.148548096418381,-0.982645988464355,0.00891186017543077,-0.141976282000542,-0.989829957485199,-0.114065140485764,-0.130787864327431,-0.984826743602753,-0.0529795140028,-0.126682355999947,-0.990527510643005,0.00894059333950281,-0.146247908473015,-0.989207565784454,0.111013412475586,-0.149837806820869,-0.982458591461182,0.13777819275856,-0.136631295084953,-0.980993926525116,0.00890763849020004,-0.141350418329239,-0.989919543266296,-0.296902179718018,-0.137053981423378,-0.945021331310272,-0.116467297077179,-0.161215797066689,-0.980022847652435,-0.1717269718647,-0.135930582880974,-0.975721657276154,-0.171395167708397,-0.14922259747982,-0.97383588552475,-0.113867029547691,-0.128333032131195,-0.98517256975174,0.00893464311957359,-0.145361572504044,-0.989338278770447,-0.275114923715591,-0.125279635190964,-0.953213930130005,-0.296950042247772,-0.141141891479492,-0.944404482841492,-0.171709224581718,-0.136674091219902,-0.975620925426483,0.00890787877142429,-0.141386076807976,-0.98991447687149,0.137777775526047,-0.136610940098763,-0.980996787548065,0.091553658246994,-0.137322217226028,-0.986286342144012,0.137784719467163,-0.136949926614761,-0.980948567390442,0.32593697309494,-0.125494137406349,-0.937025368213654,0.0916265845298767,-0.140004545450211,-0.985902369022369,-0.0510442070662975,-0.144797593355179,-0.988143801689148,-0.171498417854309,-0.145220324397087,-0.974422574043274,0.00891188997775316,-0.141980811953545,-0.989829301834106,-0.273070931434631,-0.149446308612823,-0.950314819812775,-0.171447202563286,-0.147217467427254,-0.974131882190704,
- -0.0510345511138439,-0.145102575421333,-0.988099575042725,0.223400831222534,-0.132666453719139,-0.965656101703644,0.0916629582643509,-0.141351670026779,-0.985706627368927,0.326086550951004,-0.128135487437248,-0.936615645885468,0.326508909463882,-0.135822385549545,-0.935384511947632,0.34383350610733,-0.134570613503456,-0.929338097572327,0.223413795232773,-0.134160950779915,-0.965446591377258,0.00664880545809865,-0.145009726285934,-0.989407896995544,0.00892172381281853,-0.143439918756485,-0.989618837833405,0.0915880501270294,-0.138584673404694,-0.98610645532608,0.0915422290563583,-0.136904075741768,-0.986345410346985,0.223431691527367,-0.136331990361214,-0.965138256549835,0.00666480557993054,-0.143235966563225,-0.989666104316711,0.00651345308870077,-0.159902542829514,-0.987111330032349,-0.0502755641937256,-0.168603897094727,-0.984400987625122,0.00904877483844757,-0.162533074617386,-0.986661612987518,0.343386799097061,-0.127143025398254,-0.930548310279846,0.0743484795093536,-0.165614858269691,-0.98338395357132,0.223407000303268,-0.133366763591766,-0.965558290481567,0.223418056964874,-0.134668365120888,-0.965374946594238,0.0699444487690926,-0.125721484422684,-0.989596843719482,0.00668344972655177,-0.14116558432579,-0.989963531494141,0.0142268519848585,-0.187140941619873,-0.982230067253113,0.0741292238235474,-0.163608685135841,-0.983736276626587,0.343325108289719,-0.126141384243965,-0.930707395076752,-0.119001522660255,-0.1066023260355,-0.987154901027679,0.0653809905052185,-0.0852339416742325,-0.99421352148056,-0.00179410551209003,-0.0883952081203461,-0.996083974838257,-0.154019847512245,-0.145990043878555,-0.977223098278046,-0.273368626832962,-0.14604839682579,-0.950757324695587,-0.0510265305638313,-0.145356073975563,-0.988062679767609,-0.152178362011909,-0.189335808157921,-0.970048308372498,-0.0497676841914654,-0.183806106448174,-0.981701850891113,0.00638118525967002,-0.17426697909832,-0.984677791595459,-0.272217303514481,-0.158982485532761,-0.949011325836182,-0.153631180524826,-0.155774474143982,-0.975772380828857,-0.202982291579247,-0.155463203787804,-0.96676230430603,
- 0.0727885812520981,-0.151388347148895,-0.985790848731995,-0.0852826684713364,-0.168391615152359,-0.982024013996124,0.00654729641973972,-0.156197503209114,-0.987704157829285,-0.0816027671098709,-0.200760245323181,-0.976235806941986,-0.152211830019951,-0.188608884811401,-0.970184743404388,0.00635212380439043,-0.177398696541786,-0.984118580818176,0.0690535753965378,-0.117751687765121,-0.990639269351959,-0.113376758992672,-0.140146896243095,-0.983618199825287,-0.0889727398753166,-0.134883344173431,-0.98685884475708,-0.0862887352705002,-0.159363269805908,-0.983441710472107,-0.201963722705841,-0.16801555454731,-0.964873790740967,-0.153226658701897,-0.165563195943832,-0.974222958087921,-0.20301716029644,-0.155025810003281,-0.966825246810913,-0.0877596363425255,-0.146020084619522,-0.985381364822388,-0.112574897706509,-0.144852414727211,-0.983028411865234,0.113938696682453,-0.485211759805679,-0.866941452026367,-0.0320442989468575,-0.473225176334381,-0.880358636379242,0.148771584033966,-0.494210928678513,-0.856517732143402,0.247111350297928,-0.466113984584808,-0.849513828754425,0.11471139639616,-0.472526401281357,-0.873819231987,0.153112560510635,-0.466203540563583,-0.87132716178894,-0.0198820270597935,-0.426265507936478,-0.904379606246948,0.114794366061687,-0.47113448381424,-0.874559640884399,-0.0519689843058586,-0.437578827142715,-0.897677004337311,-0.236372485756874,-0.475224763154984,-0.84751957654953,-0.0464422106742859,-0.527475357055664,-0.848299980163574,-0.0652961209416389,-0.511101126670837,-0.857036769390106,0.114798165857792,-0.471070498228073,-0.874593615531921,0.247101798653603,-0.465077787637711,-0.85008430480957,0.138097822666168,-0.47746142745018,-0.867732405662537,0.32616052031517,-0.450638085603714,-0.830990135669708,0.138105198740959,-0.477748543024063,-0.867573201656342,0.247099652886391,-0.464850217103958,-0.850209414958954,-0.062577486038208,-0.496192753314972,-0.865954279899597,-0.116413079202175,-0.482763558626175,-0.867978870868683,-0.23203918337822,-0.457168519496918,-0.858577311038971,-0.29727104306221,-0.458406239748001,-0.837552309036255,
- -0.235819190740585,-0.472905904054642,-0.848969578742981,-0.116897866129875,-0.488112181425095,-0.864916980266571,-0.0589488968253136,-0.476221591234207,-0.87734717130661,0.11390382796526,-0.485772728919983,-0.866631865501404,0.00379871041513979,-0.482436209917068,-0.875922858715057,-0.115231312811375,-0.469850242137909,-0.875192821025848,-0.0574403330683708,-0.467894732952118,-0.881915628910065,0.00382852973416448,-0.486223340034485,-0.873826324939728,0.113836005330086,-0.486861258745193,-0.866029739379883,0.138002634048462,-0.47379806637764,-0.869753360748291,0.00379428802989423,-0.481874525547028,-0.876232028007507,-0.297337412834167,-0.462076187133789,-0.835509479045868,-0.117696784436703,-0.496994763612747,-0.859734654426575,-0.175369203090668,-0.471547484397888,-0.864227175712585,-0.17503833770752,-0.483284443616867,-0.857786536216736,-0.115028545260429,-0.467651784420013,-0.876396179199219,0.00382232875563204,-0.485435843467712,-0.874263942241669,-0.276070058345795,-0.45359143614769,-0.847372472286224,-0.297401666641235,-0.465934693813324,-0.83334094285965,-0.175351276993752,-0.472215682268143,-0.863865911960602,0.00379453436471522,-0.481905817985535,-0.876214802265167,0.138001888990402,-0.473770320415497,-0.869768440723419,0.0927251577377319,-0.477447897195816,-0.873753845691681,0.138031482696533,-0.474902302026749,-0.869146227836609,0.326021671295166,-0.448376268148422,-0.832267284393311,0.0927394405007362,-0.478039652109146,-0.873428702354431,-0.0443363450467587,-0.484592974185944,-0.873615443706512,-0.175141766667366,-0.47974219918251,-0.859751582145691,0.00379872554913163,-0.482438206672668,-0.875921785831451,-0.273970365524292,-0.475418835878372,-0.836012661457062,-0.175090685486794,-0.48150497674942,-0.858775973320007,-0.0443478636443615,-0.484292209148407,-0.873781740665436,0.22867813706398,-0.46458888053894,-0.855490207672119,0.0927626341581345,-0.479000180959702,-0.87289971113205,0.326158404350281,-0.450603365898132,-0.831009805202484,0.326543062925339,-0.457047641277313,-0.827331304550171,0.347987741231918,-0.452873975038528,-0.820859253406525,
- 0.228693008422852,-0.465980350971222,-0.854729115962982,0.00688734883442521,-0.484628111124039,-0.874693155288696,0.00380874099209905,-0.483709990978241,-0.875220060348511,0.092757061123848,-0.478765457868576,-0.873029053211212,0.0927204862236977,-0.477255403995514,-0.873859345912933,0.228708729147911,-0.467514365911484,-0.853886783123016,0.00689414003863931,-0.48306804895401,-0.875555694103241,0.00682357465848327,-0.498966962099075,-0.866594135761261,-0.0435059666633606,-0.505763709545136,-0.861574292182922,0.00394172267988324,-0.500598967075348,-0.865670323371887,0.347570031881332,-0.44657090306282,-0.82448148727417,0.0747238472104073,-0.50319230556488,-0.860937774181366,0.228684633970261,-0.465187311172485,-0.855163335800171,0.22869385778904,-0.466060936450958,-0.854685068130493,0.0699484497308731,-0.46657606959343,-0.881710827350616,0.00690153567120433,-0.481361597776413,-0.876494944095612,0.0137743409723043,-0.522055387496948,-0.852800369262695,0.0744863897562027,-0.501368522644043,-0.862021803855896,0.34751284122467,-0.445727616548538,-0.82496166229248,-0.120841808617115,-0.448578834533691,-0.885536134243011,0.0651904568076134,-0.430213361978531,-0.900370419025421,-0.0022768194321543,-0.434518724679947,-0.900659918785095,-0.150485396385193,-0.481857597827911,-0.86323082447052,-0.27428063750267,-0.472317725419998,-0.837667047977448,-0.0443442687392235,-0.484385907649994,-0.873730003833771,-0.14866691827774,-0.519716382026672,-0.841304361820221,-0.0429662838578224,-0.519026458263397,-0.8536776304245,0.00676531624048948,-0.511602938175201,-0.859195351600647,-0.273100614547729,-0.483906656503677,-0.831414699554443,-0.150098949670792,-0.490510046482086,-0.858411431312561,-0.207321733236313,-0.486701369285584,-0.84861034154892,0.0729530677199364,-0.489599794149399,-0.868890166282654,-0.0811613574624062,-0.504230737686157,-0.85974657535553,0.00684117479249835,-0.495064616203308,-0.868829250335693,-0.0774546638131142,-0.53245747089386,-0.842905580997467,-0.14870011806488,-0.519082844257355,-0.84168952703476,0.00675408216193318,-0.51399165391922,-0.857768595218658,
- 0.0690233707427979,-0.459497153759003,-0.885493159294128,-0.115101777017117,-0.478789478540421,-0.870351910591125,-0.0848949924111366,-0.474510580301285,-0.87614643573761,-0.0821978598833084,-0.496113747358322,-0.864357948303223,-0.206271126866341,-0.497874885797501,-0.842361450195313,-0.149699151515961,-0.499085009098053,-0.853524625301361,-0.207351133227348,-0.486382097005844,-0.848786175251007,-0.0836843699216843,-0.484294861555099,-0.870893478393555,-0.114343427121639,-0.482686638832092,-0.86829686164856,-0.0581674687564373,-0.0338537581264973,0.997732758522034,-0.0913066864013672,-0.039615660905838,0.995034515857697,-0.026821181178093,-0.0258230939507484,0.999306678771973,0.0963843762874603,0.0078126834705472,0.99531364440918,-0.0594385117292404,-0.0263457130640745,0.997884273529053,-0.0273083318024874,-0.0235064998269081,0.999350666999817,0.0995786860585213,-0.00302005955018103,0.995025217533112,-0.163081854581833,-0.104898251593113,0.981020212173462,0.232984453439713,0.0370063409209251,0.971776068210602,-0.0298184882849455,-0.0115561559796333,0.999488532543182,-0.29662024974823,-0.0853949189186096,0.951169908046722,0.0979059338569641,0.00265785632655025,0.995192110538483,-0.164520025253296,-0.100866086781025,0.981202960014343,0.0984581112861633,0.00078487180871889,0.995140910148621,-0.295962363481522,-0.0880873277783394,0.951129257678986,-0.191336199641228,-0.0237083490937948,0.981238186359406,-0.296406239271164,-0.0862719640135765,0.951157450675964,-0.507565200328827,-0.136351332068443,0.850756049156189,-0.03171656280756,-0.00250470568425953,0.999493777751923,-0.517853379249573,-0.092400848865509,0.850464582443237,-0.302619725465775,-0.0603648982942104,0.951197981834412,-0.509690523147583,-0.131259858608246,0.85028612613678,-0.297730386257172,-0.080828882753849,0.951222002506256,-0.510793805122375,-0.131540849804878,0.84958028793335,-0.297702997922897,-0.0809418857097626,0.951220989227295,-0.510708093643188,-0.133121877908707,0.849385678768158,-0.510774493217468,-0.131620332598686,0.849579632282257,-0.511371314525604,-0.129162415862083,0.849597811698914,
- -0.511595785617828,-0.128333538770676,0.84958827495575,-0.520556092262268,-0.129796490073204,0.843904197216034,0.0111510958522558,-0.37650054693222,0.926349282264709,-0.0241404250264168,-0.387617588043213,0.921504259109497,0.0366588123142719,-0.364889234304428,0.930328965187073,0.153832763433456,-0.310527741909027,0.938034117221832,0.00851674564182758,-0.36926344037056,0.929285764694214,0.0360979177057743,-0.363573551177979,0.930865943431854,0.158996000885963,-0.320345968008041,0.933862268924713,-0.0891136005520821,-0.45704448223114,0.884968400001526,0.279152691364288,-0.25358659029007,0.926157474517822,0.0321282334625721,-0.35424330830574,0.934601247310638,-0.216066285967827,-0.452472358942032,0.865207552909851,0.15641213953495,-0.315432906150818,0.935968637466431,-0.0912003517150879,-0.453574687242508,0.88653975725174,0.157251298427582,-0.3170285820961,0.935288667678833,-0.214996322989464,-0.454763293266296,0.864272475242615,-0.129545331001282,-0.387746304273605,0.912617564201355,-0.21756312251091,-0.449256151914597,0.866507470607758,-0.429354071617126,-0.501814186573029,0.750891208648682,0.0274686142802238,-0.343249887228012,0.938842356204987,-0.446108758449554,-0.463079124689102,0.765862047672272,-0.227435007691383,-0.427712559700012,0.874834418296814,-0.432307541370392,-0.497320294380188,0.752185463905334,-0.219778448343277,-0.444472134113312,0.86841344833374,-0.433674782514572,-0.497065991163254,0.751566112041473,-0.219788312911987,-0.44445076584816,0.868421912193298,-0.432738482952118,-0.49811002612114,0.75141453742981,-0.433676928281784,-0.497061312198639,0.751567959785461,-0.434611111879349,-0.49503031373024,0.75236839056015,-0.434342235326767,-0.494044452905655,0.75317120552063,-0.442515999078751,-0.494859635829926,0.747859299182892,-0.0545660518109798,0.470193445682526,0.880874931812286,-0.0901426672935486,0.463336408138275,0.881585896015167,-0.0255303345620632,0.477857083082199,0.878066539764404,0.100954115390778,0.505432665348053,0.856940090656281,-0.0558324605226517,0.476734012365341,0.877272725105286,
- -0.0258900746703148,0.47931843996048,0.877259135246277,0.104225769639015,0.495711445808411,0.862210631370544,-0.167173877358437,0.400545030832291,0.900897622108459,0.23124223947525,0.517796754837036,0.823658645153046,-0.0282307732850313,0.488800197839737,0.87193888425827,-0.298661679029465,0.400392413139343,0.866306602954865,0.102538138628006,0.500739216804504,0.859503448009491,-0.168604403734207,0.4041768014431,0.899007022380829,0.103090770542622,0.499095976352692,0.86039263010025,-0.298001110553741,0.398040294647217,0.867617130279541,-0.193384453654289,0.46716171503067,0.862764537334442,-0.298618316650391,0.400238543748856,0.86639267206192,-0.509787142276764,0.305635869503021,0.804178953170776,-0.0307443030178547,0.498930394649506,0.866096556186676,-0.514615416526794,0.346564620733261,0.784260153770447,-0.304800987243652,0.422506302595139,0.853571772575378,-0.511903584003448,0.309789061546326,0.801240086555481,-0.299939721822739,0.404958575963974,0.863738775253296,-0.51296865940094,0.309725105762482,0.800583243370056,-0.299917340278625,0.404878437519073,0.86378413438797,-0.507472097873688,0.310854762792587,0.803642570972443,-0.512933552265167,0.3095982670784,0.800654768943787,-0.513548970222473,0.311827450990677,0.799394249916077,-0.508360266685486,0.315097540616989,0.801425874233246,-0.519068002700806,0.310150414705276,0.796476721763611,-0.0593089535832405,-0.786214470863342,0.615100979804993,-0.0898900106549263,-0.78773820400238,0.609416544437408,-0.0272221788764,-0.781957447528839,0.622737109661102,0.0994478166103363,-0.756437122821808,0.646461963653564,-0.0606256760656834,-0.781239569187164,0.621280312538147,-0.0275876373052597,-0.780890762805939,0.624058127403259,0.102918043732643,-0.763652205467224,0.637372076511383,-0.170039802789688,-0.818471610546112,0.548808395862579,0.23284900188446,-0.720692813396454,0.652980268001556,-0.0299454033374786,-0.773946464061737,0.632542610168457,-0.29891175031662,-0.784105956554413,0.543902218341827,0.101217031478882,-0.760125637054443,0.64184433221817,-0.171483233571053,-0.815979182720184,0.552061140537262,
- 0.101771928369999,-0.76127827167511,0.640389025211334,-0.298246562480927,-0.785804033279419,0.541812717914581,-0.197026476264,-0.768244802951813,0.60908168554306,-0.299158066511154,-0.783474206924438,0.544676661491394,-0.507542610168457,-0.739362478256226,0.442429423332214,-0.0324430875480175,-0.7664715051651,0.64145839214325,-0.515661180019379,-0.711862146854401,0.476808160543442,-0.305304318666458,-0.767158687114716,0.56414258480072,-0.509691953659058,-0.735718667507172,0.446018159389496,-0.300495207309723,-0.780015587806702,0.548888266086578,-0.511835634708405,-0.735018372535706,0.444715946912766,-0.300480514764786,-0.780053794384003,0.548842012882233,-0.508519172668457,-0.7370365858078,0.445180118083954,-0.511849224567413,-0.734983444213867,0.444758027791977,-0.512410521507263,-0.733536243438721,0.446497529745102,-0.509407043457031,-0.734128832817078,0.448953598737717,-0.520545184612274,-0.729919195175171,0.443001866340637,0.0288797840476036,-0.752420902252197,0.65804922580719,-0.00441929930821061,-0.75296014547348,0.658051252365112,-0.0421087741851807,-0.753268599510193,0.656363666057587,-0.0794393867254257,-0.757491052150726,0.64799439907074,0.0288796853274107,-0.752416491508484,0.658054232597351,-0.0421089641749859,-0.753265202045441,0.656367540359497,0.346831083297729,-0.680926740169525,0.645017147064209,0.0283828377723694,-0.730601012706757,0.682214498519897,-0.0775969624519348,-0.765970826148987,0.638175070285797,-0.0811505392193794,-0.749440848827362,0.657079100608826,-0.0410799458622932,-0.771320998668671,0.635119199752808,-0.272725403308868,-0.735132873058319,0.620645225048065,0.347142845392227,-0.682450890541077,0.64323616027832,-0.0770943611860275,-0.76825076341629,0.635489761829376,0.143116161227226,-0.78019517660141,0.608944535255432,0.107497371733189,-0.716698527336121,0.689048290252686,-0.079302117228508,-0.758129477500916,0.647264122962952,-0.262846767902374,-0.763924956321716,0.5893474817276,0.347484588623047,-0.0315927267074585,0.937153339385986,0.531857311725616,0.0188036728650332,0.846625328063965,
- 0.373231500387192,-0.00405020639300346,0.927729427814484,0.347930818796158,-0.0336500629782677,0.93691611289978,0.375464111566544,-0.0239032208919525,0.926528632640839,0.18038934469223,-0.0657763853669167,0.981393575668335,-0.172732904553413,-0.166201174259186,0.970845282077789,0.34885162115097,-0.0379177741706371,0.93641060590744,0.184705257415771,-0.0903075784444809,0.978636145591736,0.376233816146851,-0.0310743078589439,0.926003515720367,0.264856308698654,-0.0436296984553337,0.963300347328186,0.180843144655228,-0.0683276057243347,0.981135725975037,-0.181793436408043,-0.143078446388245,0.972871899604797,0.185956850647926,-0.0975366458296776,0.977704882621765,-0.0149599621072412,-0.147899657487869,0.988889217376709,0.183372721076012,-0.0826690271496773,0.979561269283295,0.268405824899673,-0.0917424932122231,0.95892733335495,-0.0185217782855034,-0.117006465792656,0.992958426475525,0.0259871762245893,-0.538745164871216,0.842067897319794,-0.00638979068025947,-0.539256751537323,0.842117309570313,-0.0420870259404182,-0.539860308170319,0.840701818466187,-0.0764185562729836,-0.546227276325226,0.834143877029419,0.0259870961308479,-0.538739323616028,0.842071652412415,-0.0420872122049332,-0.539856016635895,0.840704560279846,0.347381055355072,-0.473447024822235,0.80942839384079,0.0255868565291166,-0.509969115257263,0.859812080860138,-0.0743523687124252,-0.558136582374573,0.826411068439484,-0.0783557370305061,-0.534874856472015,0.841290235519409,-0.0410569980740547,-0.56314092874527,0.825340330600739,-0.269894272089005,-0.532115459442139,0.802502453327179,0.347633600234985,-0.475094616413116,0.808354020118713,-0.0737887322902679,-0.561350286006927,0.824282169342041,0.146302208304405,-0.578119277954102,0.802728950977325,0.110335260629654,-0.494366377592087,0.862222731113434,-0.0762866139411926,-0.546993732452393,0.833653509616852,-0.25977036356926,-0.569090187549591,0.780163884162903,0.349489003419876,0.231852859258652,0.907800495624542,0.532091379165649,0.254658102989197,0.807482659816742,0.369723677635193,0.255756229162216,0.893248677253723,
- 0.349939733743668,0.229789286851883,0.908151566982269,0.371952921152115,0.235950201749802,0.897763073444366,0.181579142808914,0.211502820253372,0.960362195968628,-0.173594623804092,0.111419714987278,0.978494048118591,0.350876688957214,0.225471913814545,0.908871829509735,0.185973763465881,0.186563968658447,0.964680075645447,0.372722774744034,0.228744938969612,0.899307250976563,0.265085846185684,0.227462157607079,0.937011420726776,0.182043612003326,0.208905398845673,0.960842788219452,-0.182583570480347,0.134073555469513,0.974005937576294,0.187251657247543,0.179154932498932,0.965836703777313,-0.0160739850252867,0.135021537542343,0.990712285041809,0.184619143605232,0.19433905184269,0.963404417037964,0.2685766518116,0.179286524653435,0.946426391601563,-0.0196259133517742,0.164857655763626,0.986122190952301,0.0261392462998629,-0.186753377318382,0.982059121131897,-0.00409947894513607,-0.186964616179466,0.98235809803009,-0.0419141724705696,-0.188131526112556,0.981249094009399,-0.0764859914779663,-0.196659058332443,0.977484047412872,0.0261391680687666,-0.186746522784233,0.982060432434082,-0.0419143475592136,-0.188126161694527,0.981250107288361,0.349963366985321,-0.137744277715683,0.926580905914307,0.0257495567202568,-0.153340458869934,0.987837851047516,-0.0744025483727455,-0.210688784718513,0.974717676639557,-0.0784353911876678,-0.183395862579346,0.979905009269714,-0.0409491248428822,-0.217076808214188,0.97529524564743,-0.272549718618393,-0.195710182189941,0.942026734352112,0.350250959396362,-0.139894157648087,0.926150143146515,-0.073836475610733,-0.21447516977787,0.973934590816498,0.144332110881805,-0.237530395388603,0.960597515106201,0.109334029257298,-0.139118120074272,0.984221637248993,-0.0763563588261604,-0.197536274790764,0.977317333221436,-0.262313395738602,-0.238640114665031,0.93500941991806,0.348910212516785,0.552330791950226,0.75709468126297,0.533873081207275,0.536519765853882,0.653548836708069,0.371004551649094,0.570303082466125,0.732877850532532,0.349233627319336,0.551068961620331,0.757864713668823,0.373224318027496,0.552984118461609,0.744924247264862,
- 0.184417009353638,0.552971303462982,0.812534987926483,-0.175349652767181,0.466818362474442,0.866794764995575,0.349743008613586,0.549072742462158,0.759077727794647,0.188522309064865,0.53333055973053,0.824632108211517,0.373992025852203,0.546606421470642,0.749233841896057,0.268968850374222,0.559154331684113,0.78422075510025,0.184843689203262,0.550966262817383,0.81379908323288,-0.184196785092354,0.485965102910995,0.85434752702713,0.189709782600403,0.527499258518219,0.828103065490723,-0.0135833891108632,0.494668692350388,0.868975460529327,0.187240973114967,0.539545595645905,0.82087230682373,0.272566258907318,0.519101202487946,0.810087382793427,-0.0171265974640846,0.520108699798584,0.85392838716507,0.0224084593355656,0.0727145075798035,0.997101128101349,-0.00743826245889068,0.0720939338207245,0.99737012386322,-0.0420262850821018,0.0708676725625992,0.996600031852722,-0.0727465450763702,0.0627969428896904,0.995371639728546,0.0224083457142115,0.0727210119366646,0.997100651264191,-0.042026475071907,0.0708727985620499,0.996599614620209,0.344227880239487,0.105052433907986,0.932990431785584,0.0218455884605646,0.104268699884415,0.994309306144714,-0.0710691586136818,0.0507902763783932,0.996177554130554,-0.0742972046136856,0.0739572942256927,0.994489967823029,-0.0409950502216816,0.0430428422987461,0.998231887817383,-0.272265583276749,0.0534187667071819,0.960738182067871,0.344547182321548,0.102665811777115,0.933138251304626,-0.0706128403544426,0.0475355572998524,0.996370613574982,0.143772274255753,0.0171080846339464,0.989462912082672,0.108244098722935,0.119127959012985,0.986960887908936,-0.0725891068577766,0.0616671927273273,0.995453655719757,-0.262304902076721,0.0108619146049023,0.964923918247223,0.343970149755478,0.729733765125275,0.590908765792847,0.529961347579956,0.688107430934906,0.49563005566597,0.373451888561249,0.738532841205597,0.561340272426605,0.344380170106888,0.728428304195404,0.592279076576233,0.375685691833496,0.725537836551666,0.576589345932007,0.185052886605263,0.744465410709381,0.6415034532547,-0.174220368266106,0.67496520280838,0.716986238956451,
- 0.345142215490341,0.725983679294586,0.594831526279449,0.189530372619629,0.726613223552704,0.660387337207794,0.376455873250961,0.720765650272369,0.582046270370483,0.266718626022339,0.742585718631744,0.614351391792297,0.185528293251991,0.742618262767792,0.643503963947296,-0.182982191443443,0.690169930458069,0.700130701065063,0.190842136740685,0.721183180809021,0.665938496589661,-0.0158832110464573,0.701294660568237,0.712694525718689,0.188161268830299,0.732182204723358,0.654602706432343,0.270355939865112,0.71099054813385,0.649153351783752,-0.0194309931248426,0.722415268421173,0.691186487674713,0.028568496927619,0.420053154230118,0.907049715518951,-0.00398712186142802,0.419996798038483,0.907516837120056,-0.0411998890340328,0.418400436639786,0.907327771186829,-0.0728835612535477,0.410065293312073,0.909139394760132,0.0285684075206518,0.420059353113174,0.907046854496002,-0.0412000678479671,0.418405324220657,0.907325506210327,0.346961945295334,0.427661776542664,0.834699213504791,0.0281150639057159,0.449865818023682,0.89265364408493,-0.0710239708423615,0.398171931505203,0.914557099342346,-0.0746143758296967,0.421143889427185,0.903919517993927,-0.0402192622423172,0.391701698303223,0.919212818145752,-0.271405190229416,0.389333605766296,0.88020384311676,0.347269535064697,0.425547480583191,0.835651397705078,-0.0705185979604721,0.394941419363022,0.915995836257935,0.141540139913559,0.365055948495865,0.920163333415985,0.106240093708038,0.459277004003525,0.881917178630829,-0.072734646499157,0.409112542867661,0.90958046913147,-0.261690258979797,0.351580590009689,0.898837745189667,0.349252045154572,0.88983690738678,0.293620944023132,0.533278405666351,0.817032694816589,0.219253182411194,0.374570488929749,0.888986170291901,0.263439893722534,0.349602311849594,0.88920933008194,0.295101672410965,0.376789033412933,0.882054567337036,0.28286001086235,0.184656128287315,0.92299485206604,0.337613165378571,-0.174358353018761,0.884596705436707,0.432536512613297,0.350219279527664,0.888093888759613,0.2977175116539,0.189051330089569,0.913211286067963,0.360977530479431,
- 0.377557069063187,0.879434764385223,0.289905428886414,0.270184248685837,0.910987973213196,0.311611026525497,0.185119703412056,0.922004103660584,0.340057611465454,-0.183214202523232,0.892921924591064,0.41124564409256,0.190337896347046,0.910176753997803,0.367899090051651,-0.0144866704940796,0.908129215240479,0.418439358472824,0.187709704041481,0.9162917137146,0.35380020737648,0.273726493120193,0.893192768096924,0.356763958930969,-0.0180188193917274,0.919997990131378,0.39150869846344,-0.431770414113998,-0.275960087776184,0.858731806278229,-0.202658727765083,-0.12170385569334,0.971657156944275,-0.415688127279282,-0.260417342185974,0.871427655220032,-0.128378078341484,-0.225015357136726,0.965860843658447,-0.144765317440033,-0.207541555166245,0.967455148696899,-0.396107763051987,-0.353552162647247,0.847407519817352,-0.023585956543684,-0.3734070956707,0.927367806434631,-0.0511024743318558,-0.354664236307144,0.933596193790436,0.144818931818008,-0.237612366676331,0.960504055023193,-0.0541349910199642,-0.349772810935974,0.935269176959991,0.0529716722667217,-0.289160400629044,0.955813944339752,0.14504899084568,-0.238016173243523,0.960369348526001,-0.043547373265028,-0.366782307624817,0.929287016391754,0.0226150490343571,-0.32294163107872,0.946148753166199,0.0629239231348038,-0.306375056505203,0.94982898235321,-0.371308535337448,-0.402662694454193,0.836655676364899,-0.20795339345932,-0.358191639184952,0.910194575786591,-0.10379896312952,-0.267401695251465,0.957978129386902,0.0256897360086441,-0.329105257987976,0.943943738937378,-0.0470115840435028,-0.36123788356781,0.931287884712219,-0.184329852461815,-0.410532623529434,0.893020451068878,-0.18990433216095,-0.398444950580597,0.897317230701447,-0.348322242498398,-0.445188134908676,0.824911594390869,-0.34575280547142,-0.445478320121765,0.825835406780243,-0.257930040359497,-0.399870306253433,0.879531621932983,0.0216389056295156,-0.320981711149216,0.94683825969696,-0.18933592736721,-0.399684965610504,0.896885752677917,-0.326709777116776,-0.417962968349457,0.847683727741241,-0.199200943112373,-0.37792843580246,0.904151022434235,
- -0.354494512081146,-0.424005091190338,0.833398640155792,-0.199798882007599,-0.376593261957169,0.904576122760773,-0.327795177698135,-0.415128439664841,0.848657131195068,-0.258011490106583,-0.399651885032654,0.879606962203979,-0.432791978120804,-0.025558102875948,0.901131570339203,-0.202413752675056,0.153096228837967,0.967259109020233,-0.416675597429276,-0.00734878657385707,0.9090256690979,-0.131136834621429,0.0531971976161003,0.989936053752899,-0.145107194781303,0.0695390030741692,0.986969232559204,-0.397441357374191,-0.103080287575722,0.911819517612457,-0.0260764881968498,-0.0994672998785973,0.99469918012619,-0.0523981973528862,-0.0818211659789085,0.995268642902374,0.147757217288017,0.0420197397470474,0.988130629062653,-0.0557804554700851,-0.0761070549488068,0.995538175106049,0.0513022169470787,-0.0114993685856462,0.998616993427277,0.148115515708923,0.0413548573851585,0.988105058670044,-0.0451320670545101,-0.0940713658928871,0.994541943073273,0.0287486147135496,-0.042729988694191,0.998672962188721,0.0612622015178204,-0.0297000836580992,0.997679829597473,-0.372618287801743,-0.15360526740551,0.91518372297287,-0.202826499938965,-0.0872249230742455,0.975322127342224,-0.106700502336025,0.0108406879007816,0.99423211812973,0.0318891629576683,-0.0494256019592285,0.998268604278564,-0.0488918237388134,-0.087736964225769,0.994943141937256,-0.179113820195198,-0.142456412315369,0.973460137844086,-0.184694454073906,-0.129638850688934,0.974208354949951,-0.349750936031342,-0.197743847966194,0.915735602378845,-0.345480978488922,-0.196858942508698,0.917545318603516,-0.260085165500641,-0.139535307884216,0.955450475215912,0.0278024319559336,-0.0407128855586052,0.998784005641937,-0.184107467532158,-0.130992159247398,0.97413843870163,-0.325396507978439,-0.163935378193855,0.9312584400177,-0.194008946418762,-0.108000099658966,0.975036680698395,-0.354266196489334,-0.174231007695198,0.918770492076874,-0.194614306092262,-0.106582969427109,0.975071966648102,-0.326459765434265,-0.161039099097252,0.931391656398773,-0.260408401489258,-0.138624384999275,0.955494999885559,
- -0.431270241737366,0.312605440616608,0.846335530281067,-0.203998580574989,0.501954257488251,0.840491950511932,-0.413497745990753,0.334731847047806,0.846743285655975,-0.127066537737846,0.419574856758118,0.898783087730408,-0.146286696195602,0.431780487298965,0.890037000179291,-0.395869970321655,0.244578093290329,0.885137557983398,-0.0255846809595823,0.276750594377518,0.960601150989532,-0.0492346100509167,0.297090202569962,0.953579246997833,0.14708286523819,0.406078457832336,0.901924014091492,-0.0523902103304863,0.302158266305923,0.951817035675049,0.0485428273677826,0.359500765800476,0.931881308555603,0.147217884659767,0.405843734741211,0.902007758617401,-0.0417867936193943,0.28509509563446,0.957587957382202,0.0280679073184729,0.331517070531845,0.94303160905838,0.058517511934042,0.342265427112579,0.937779307365417,-0.37103995680809,0.19893553853035,0.907057881355286,-0.20205245912075,0.282395541667938,0.937778115272522,-0.102522373199463,0.381525605916977,0.918655335903168,0.0311072189360857,0.325383007526398,0.945070505142212,-0.0453533865511417,0.29084512591362,0.955694615840912,-0.17825873196125,0.230333298444748,0.956645369529724,-0.183917224407196,0.242662250995636,0.952517449855804,-0.348214209079742,0.158247917890549,0.923961281776428,-0.342483788728714,0.160265192389488,0.925753712654114,-0.261291176080704,0.225554808974266,0.938537240028381,0.0270694401115179,0.33352792263031,0.942351520061493,-0.183241575956345,0.241188436746597,0.953021883964539,-0.323771119117737,0.195092037320137,0.925803065299988,-0.1932303160429,0.263024151325226,0.945240914821625,-0.351296633481979,0.181600719690323,0.918483436107636,-0.193815603852272,0.264306783676147,0.94476318359375,-0.324834942817688,0.197845950722694,0.924845635890961,-0.261574149131775,0.226309940218925,0.938276469707489,-0.431070566177368,0.520306587219238,0.737196981906891,-0.204186081886292,0.701639235019684,0.682649552822113,-0.417003870010376,0.537975549697876,0.732591331005096,-0.124602235853672,0.638149559497833,0.759762704372406,-0.146323442459106,0.646539866924286,0.748715996742249,
- -0.395258754491806,0.464483857154846,0.79248046875,-0.02534837462008,0.514783322811127,0.856945514678955,-0.0469683110713959,0.534090995788574,0.844121336936951,0.1457659304142,0.624393463134766,0.767388463020325,-0.0501270405948162,0.538543879985809,0.841105222702026,0.0477766320109367,0.58729088306427,0.807964742183685,0.145957008004189,0.624102056026459,0.767589211463928,-0.0395393893122673,0.523546755313873,0.851079106330872,0.0266186892986298,0.562828660011292,0.826144874095917,0.0577157810330391,0.572140157222748,0.818122565746307,-0.370471566915512,0.426449686288834,0.825161635875702,-0.207769274711609,0.512244164943695,0.833329379558563,-0.100023820996284,0.606438755989075,0.788813829421997,0.0296912603080273,0.557366788387299,0.829735338687897,-0.0430196560919285,0.528498947620392,0.84784322977066,-0.183399364352226,0.466083347797394,0.865523517131805,-0.189511343836784,0.477702170610428,0.857838034629822,-0.34746390581131,0.391519099473953,0.85204553604126,-0.344964057207108,0.391937971115112,0.852868378162384,-0.25718829035759,0.461960434913635,0.848791480064392,0.0256545785814524,0.564535975456238,0.825009822845459,-0.188298150897026,0.475398033857346,0.859383940696716,-0.328971207141876,0.42429918050766,0.843651652336121,-0.198831349611282,0.495366305112839,0.845623016357422,-0.353742718696594,0.410749197006226,0.84032815694809,-0.199394538998604,0.496431589126587,0.844865500926971,-0.330033838748932,0.426702916622162,0.842022716999054,-0.2573361992836,0.462307870388031,0.84855729341507,-0.432847589254379,0.745806336402893,0.506375253200531,-0.204425349831581,0.896700799465179,0.392604053020477,-0.413982361555099,0.764654457569122,0.493885040283203,-0.126801490783691,0.864452421665192,0.486460298299789,-0.147172078490257,0.868351459503174,0.47360971570015,-0.397550702095032,0.71308422088623,0.577463686466217,-0.0281131602823734,0.78392082452774,0.620223999023438,-0.0492365397512913,0.796908974647522,0.602089583873749,0.144342571496964,0.854783415794373,0.498508274555206,-0.0523576252162457,0.799973130226135,0.597747147083282,
- 0.0485853962600231,0.83490526676178,0.548245072364807,0.144326955080032,0.854799866676331,0.49848461151123,-0.0417631044983864,0.789456367492676,0.612384259700775,0.0296781454235315,0.819151401519775,0.572809219360352,0.0585643574595451,0.824327170848846,0.563076496124268,-0.372706174850464,0.688665926456451,0.62195611000061,-0.207613110542297,0.773057460784912,0.599398851394653,-0.102229312062263,0.845028102397919,0.524858713150024,0.032915260642767,0.815074443817139,0.578420460224152,-0.0452331937849522,0.792936980724335,0.60762232542038,-0.183930799365044,0.741809189319611,0.644894242286682,-0.189549461007118,0.749384760856628,0.634423732757568,-0.349934875965118,0.665437936782837,0.659346640110016,-0.346197992563248,0.667168378829956,0.659570574760437,-0.259109348058701,0.730881929397583,0.631406366825104,0.0287910103797913,0.820259809494019,0.571266114711761,-0.188925981521606,0.748548805713654,0.635595619678497,-0.327138841152191,0.695899188518524,0.639300048351288,-0.198848873376846,0.761704087257385,0.616657137870789,-0.355005472898483,0.68029922246933,0.641220808029175,-0.199448019266129,0.76248824596405,0.615493416786194,-0.328195869922638,0.697558403015137,0.63694566488266,-0.259372442960739,0.731312155723572,0.630799889564514,-0.0824006050825119,0.841265916824341,-0.534304976463318,-0.0332151725888252,0.875059008598328,-0.482875466346741,0.127333953976631,0.904760301113129,-0.406441688537598,-0.104888536036015,0.855190515518188,-0.507589995861053,-0.250258147716522,0.774644613265991,-0.580772399902344,-0.0163404531776905,0.854053437709808,-0.519928574562073,0.128441393375397,0.903862118721008,-0.408088386058807,-0.0432106480002403,0.88667231798172,-0.46037495136261,0.140235066413879,0.912355482578278,-0.384631842374802,-0.0148996440693736,0.852178931236267,-0.523038268089294,-0.248923063278198,0.772963285446167,-0.583579540252686,-0.0556733906269073,0.818122148513794,-0.572343111038208,0.147662982344627,0.90009069442749,-0.409917533397675,-0.0371417440474033,0.879695057868958,-0.474085777997971,-0.0805599838495255,0.887772262096405,-0.453178256750107,
- -0.148648127913475,0.642975032329559,-0.751323401927948,-0.00839340593665838,0.700823783874512,-0.713285088539124,0.147540703415871,0.752142310142517,-0.642272293567657,-0.159381821751595,0.658858358860016,-0.735189139842987,-0.189678087830544,0.626478791236877,-0.756007015705109,-0.0117827644571662,0.706708431243896,-0.707406878471375,0.16899299621582,0.724449098110199,-0.66829252243042,-0.00503456965088844,0.694937527179718,-0.719052493572235,0.193478718400002,0.744921267032623,-0.638481259346008,-0.00930145382881165,0.702405750751495,-0.711715996265411,-0.195109128952026,0.653716504573822,-0.731154680252075,0.0465752072632313,0.68372654914856,-0.728250503540039,-0.00671630818396807,0.697891533374786,-0.71617203950882,0.0416785329580307,0.7353635430336,-0.676389992237091,0.196917042136192,0.735172271728516,-0.648648917675018,-0.342911750078201,0.912050843238831,-0.224888354539871,-0.197246506810188,0.963573932647705,-0.180608198046684,-0.0285816639661789,0.993052244186401,-0.114151306450367,-0.350538641214371,0.914500057697296,-0.202021092176437,-0.374971091747284,0.897705137729645,-0.231348618865013,-0.199211061000824,0.964488863945007,-0.17342546582222,-0.0112713547423482,0.987922072410584,-0.154541835188866,-0.195281133055687,0.962609827518463,-0.187743470072746,0.0234616808593273,0.992160201072693,-0.122750706970692,-0.197734877467155,0.963805854320526,-0.178827285766602,-0.376622170209885,0.905493676662445,-0.195542603731155,-0.145458519458771,0.966745674610138,-0.2103441208601,-0.196286752820015,0.963109135627747,-0.18409875035286,-0.142111644148827,0.980163633823395,-0.13814303278923,0.0252052824944258,0.99030590057373,-0.136597484350204,0.0582651309669018,-0.72936749458313,0.681636452674866,0.147305220365524,-0.71879380941391,0.679438471794128,0.0408961921930313,-0.726910948753357,0.685512959957123,0.296726793050766,-0.681066334247589,0.669404089450836,0.147270798683167,-0.718418300151825,0.679843008518219,0.0582594089210033,-0.72930771112442,0.681700885295868,-0.108215920627117,-0.724580049514771,0.680641710758209,
- 0.0584445036947727,-0.731238305568695,0.679613709449768,0.0390023440122604,-0.736448884010315,0.675367951393127,0.0560450591146946,-0.706138849258423,0.705851912498474,-0.146118119359016,-0.745333969593048,0.650482058525085,0.292995989322662,-0.667592108249664,0.684451699256897,-0.108689844608307,-0.729268789291382,0.675539493560791,-0.153163835406303,-0.717373132705688,0.679644465446472,0.0571308620274067,-0.717516779899597,0.694194316864014,0.0347342975437641,-0.744669198989868,0.666529417037964,0.294264942407608,-0.672156810760498,0.679421365261078,-0.144793316721916,-0.750348150730133,0.64499032497406,-0.43060427904129,-0.700896263122559,0.568616211414337,-0.149745255708694,-0.731218278408051,0.665504455566406,-0.114185400307179,-0.785058796405792,0.60880571603775,0.0222403239458799,-0.705089569091797,0.708769381046295,-0.149613246321678,-0.731742203235626,0.664958119392395,-0.430394142866135,-0.7016681432724,0.567822933197021,0.455618649721146,-0.500189661979675,0.73635721206665,-0.000789737445302308,-0.673522114753723,0.739166736602783,0.269511103630066,-0.624334931373596,0.733191430568695,0.455195158720016,-0.49847611784935,0.73777973651886,0.248535633087158,-0.557330906391144,0.792219877243042,-0.00336070172488689,-0.666307091712952,0.745669841766357,0.2282644957304,-0.551091313362122,0.802616775035858,-0.0130019886419177,-0.638642489910126,0.769393861293793,-0.201280102133751,-0.677219033241272,0.707715153694153,-0.00917666312307119,-0.64973384141922,0.760106384754181,0.249899491667748,-0.575263619422913,0.778859436511993,-0.0953100919723511,-0.642651796340942,0.760206997394562,-0.0195071902126074,-0.619432508945465,0.784807503223419,-0.0965683162212372,-0.637350559234619,0.764499068260193,-0.21414989233017,-0.646666407585144,0.732094526290894,0.250216692686081,-0.579643130302429,0.775503516197205,0.13686840236187,-0.596661269664764,0.790735304355621,-0.0954631790518761,-0.642009496688843,0.76073032617569,-0.186644554138184,-0.653957426548004,0.7331463098526,-0.229561179876328,-0.607375502586365,0.760523974895477,
- -0.0976170748472214,-0.632893443107605,0.768060564994812,-0.0964548587799072,-0.637830674648285,0.764112889766693,0.137873843312263,-0.633592665195465,0.761282563209534,-0.189048379659653,-0.638558804988861,0.74599152803421,0.222492769360542,-0.771241843700409,0.596391618251801,-0.243493512272835,-0.844034552574158,0.477824836969376,0.0260768290609121,-0.849438011646271,0.527043700218201,0.221982344985008,-0.76982843875885,0.598404586315155,0.00479177106171846,-0.800548911094666,0.599248290061951,-0.24620258808136,-0.83873987197876,0.485695064067841,-0.0167927220463753,-0.793286859989166,0.608616471290588,-0.256160318851471,-0.818131446838379,0.514823138713837,-0.429904162883759,-0.799871027469635,0.418794453144073,-0.252254396677017,-0.826436519622803,0.503359138965607,0.00630923639982939,-0.812928974628448,0.582328677177429,-0.336097747087479,-0.802958846092224,0.492235064506531,-0.337417542934418,-0.799017548561096,0.497715145349503,-0.442689627408981,-0.776115000247955,0.449078649282455,-0.262686431407928,-0.803578555583954,0.534095108509064,0.00668476149439812,-0.815940678119659,0.578096985816956,-0.101555339992046,-0.814927875995636,0.570595383644104,-0.336257845163345,-0.802485346794128,0.492897510528564,-0.422364413738251,-0.7862588763237,0.451005041599274,-0.457506954669952,-0.74494081735611,0.485541671514511,-0.338501811027527,-0.795714735984802,0.502249777317047,-0.337295293807983,-0.799386203289032,0.497205764055252,-0.0998240411281586,-0.840934216976166,0.531850337982178,-0.424852102994919,-0.776397228240967,0.465519070625305,0.146289706230164,-0.776640236377716,0.612722814083099,0.229965880513191,-0.761836707592011,0.605574727058411,0.124876148998737,-0.776151776313782,0.618056952953339,0.379471480846405,-0.712740480899811,0.589917421340942,0.229870468378067,-0.760385692119598,0.607431650161743,0.146292895078659,-0.776675999164581,0.612676918506622,-0.0309312138706446,-0.78218412399292,0.622279107570648,0.14643831551075,-0.778305470943451,0.610570549964905,0.122891500592232,-0.784866213798523,0.607357144355774,
- 0.144385933876038,-0.755826532840729,0.638653993606567,-0.0587202534079552,-0.805349290370941,0.589885175228119,0.376016318798065,-0.700698792934418,0.606327414512634,-0.0313800536096096,-0.785897016525269,0.617560684680939,-0.0665373355150223,-0.777444899082184,0.625421822071075,0.145309031009674,-0.765804767608643,0.626441061496735,0.122697994112968,-0.794107556343079,0.595263242721558,0.377181559801102,-0.704731047153473,0.600906133651733,-0.0573670938611031,-0.809965252876282,0.583665430545807,-0.346220016479492,-0.770330309867859,0.535465359687805,-0.0635657235980034,-0.788304448127747,0.611993074417114,-0.0376280508935452,-0.835516571998596,0.54817533493042,0.108222380280495,-0.753383338451386,0.648615062236786,-0.0633962899446487,-0.788914203643799,0.611224412918091,-0.34603488445282,-0.770980954170227,0.534647762775421,0.331836819648743,-0.407398670911789,0.850829422473907,-0.132800489664078,-0.546680510044098,0.826743423938751,0.13635091483593,-0.518872141838074,0.84390777349472,0.331368327140808,-0.405315488576889,0.852006077766418,0.112761460244656,-0.443139612674713,0.889332413673401,-0.135366514325142,-0.538574278354645,0.831633150577545,0.0938371568918228,-0.432875663042068,0.896556317806244,-0.144888952374458,-0.507662177085876,0.849285781383514,-0.331489324569702,-0.543061256408691,0.771491646766663,-0.141124188899994,-0.520042598247528,0.842401146888733,0.11413150280714,-0.461678773164749,0.879674196243286,-0.22236305475235,-0.508137166500092,0.832076489925385,-0.151217997074127,-0.48636382818222,0.860571503639221,-0.223661452531815,-0.502038180828094,0.83542412519455,-0.343979954719543,-0.508959054946899,0.789074420928955,0.114461898803711,-0.466222733259201,0.877231359481812,0.0079792533069849,-0.473526984453201,0.880743145942688,-0.222521737217903,-0.507395923137665,0.83248633146286,-0.321311920881271,-0.517783463001251,0.792880296707153,-0.358657538890839,-0.465622961521149,0.80904883146286,-0.22474379837513,-0.49689382314682,0.838204622268677,-0.223542585968971,-0.502599656581879,0.835118174552917,
- 0.00937866047024727,-0.51244068145752,0.858671426773071,-0.323835700750351,-0.500061750411987,0.803161680698395,-0.0804868042469025,-0.977700769901276,0.193966552615166,0.0100076887756586,-0.978878974914551,0.204196110367775,-0.103617377579212,-0.975060701370239,0.196265205740929,0.0781926363706589,-0.975908100605011,0.203689336776733,0.0108174458146095,-0.980382025241852,0.196809858083725,-0.079321950674057,-0.979618191719055,0.184543386101723,-0.253118634223938,-0.950199604034424,0.181801110506058,-0.0802003666758537,-0.978181958198547,0.191645488142967,-0.104786820709705,-0.977589547634125,0.182588055729866,-0.0805124416947365,-0.977657556533813,0.194174319505692,-0.26698637008667,-0.956818878650665,0.114960514008999,0.0794240161776543,-0.976617157459259,0.199776694178581,-0.253212541341782,-0.951326489448547,0.175673857331276,-0.283814638853073,-0.940770268440247,0.185474425554276,-0.0827761813998222,-0.973623931407928,0.212613716721535,-0.17204412817955,-0.981161594390869,0.0878793001174927,0.0789125189185143,-0.976324558258057,0.201402917504311,-0.264940172433853,-0.95833832025528,0.106744579970837,-0.550644636154175,-0.83119785785675,0.0768153592944145,-0.279897809028625,-0.945116996765137,0.168555855751038,-0.25350284576416,-0.96310019493103,0.0904117599129677,-0.258703142404556,-0.931126356124878,0.257053703069687,-0.279677987098694,-0.945349216461182,0.16761602461338,-0.550643682479858,-0.831198930740356,0.0768105313181877,-0.137970730662346,0.00289410259574652,-0.99043208360672,0.00261734356172383,0.0836443677544594,-0.996492326259613,0.147872135043144,0.177102476358414,-0.973020315170288,-0.150182127952576,0.0245164390653372,-0.988354325294495,-0.1741102039814,-0.0150006003677845,-0.984611928462982,-0.0015349721070379,0.0920314490795136,-0.995755016803741,0.171620264649391,0.141071438789368,-0.975010454654694,0.0067045665346086,0.0753811001777649,-0.997132241725922,0.201364159584045,0.179168835282326,-0.962990641593933,0.00148914416786283,0.085923932492733,-0.996300578117371,-0.182088822126389,0.0209841504693031,-0.983058154582977,
- 0.055489607155323,0.0613069646060467,-0.99657529592514,0.00465986505150795,0.0795158818364143,-0.996822714805603,0.0457026064395905,0.134988307952881,-0.98979264497757,0.205867052078247,0.164983034133911,-0.964572131633759,0.0389347337186337,0.71711528301239,-0.695866167545319,0.0876356884837151,0.761555790901184,-0.642147183418274,0.234216451644897,0.801084160804749,-0.550823986530304,0.0129418205469847,0.737186670303345,-0.675565183162689,-0.114508911967278,0.652065753936768,-0.749465107917786,0.108283184468746,0.733271777629852,-0.671257972717285,0.235502526164055,0.799835622310638,-0.552088379859924,0.075300358235836,0.77758926153183,-0.624247431755066,0.240205436944962,0.812103867530823,-0.531778752803802,0.110040612518787,0.730779469013214,-0.673685789108276,-0.112902648746967,0.649854123592377,-0.751626670360565,0.0703108012676239,0.688398838043213,-0.721916496753693,0.250392079353333,0.795043587684631,-0.552457749843597,0.082807183265686,0.767907917499542,-0.635185301303864,0.0325821824371815,0.779164791107178,-0.625971913337708,-0.144158452749252,0.537309944629669,-0.830973267555237,-0.00945518352091312,0.609281599521637,-0.792897582054138,0.141653627157211,0.680526196956635,-0.718900799751282,-0.156494110822678,0.553848922252655,-0.817778050899506,-0.177288353443146,0.520564913749695,-0.835213184356689,-0.0127704367041588,0.61444091796875,-0.788859486579895,0.166472300887108,0.651381313800812,-0.740263044834137,-0.00615233276039362,0.604109704494476,-0.796877443790436,0.196004450321198,0.677449405193329,-0.708974301815033,-0.0102859036996961,0.610577404499054,-0.791889786720276,-0.185859337449074,0.548923313617706,-0.814947545528412,0.0456455983221531,0.594713151454926,-0.802641093730927,-0.00783267244696617,0.606744885444641,-0.794858038425446,0.0344238020479679,0.651690185070038,-0.75770366191864,0.200645878911018,0.666863739490509,-0.717658758163452,-0.130317181348801,0.4454006254673,-0.885796785354614,-0.0095843430608511,0.530597329139709,-0.847569823265076,0.130826786160469,0.624414145946503,-0.770059287548065,
- -0.144892662763596,0.46158042550087,-0.875185489654541,-0.161831513047218,0.422807991504669,-0.891652405261993,-0.0152714438736439,0.537637710571289,-0.843037784099579,0.159149363636971,0.596533596515656,-0.786650598049164,-0.00398323684930801,0.523611605167389,-0.851947784423828,0.174164593219757,0.623996436595917,-0.761771082878113,-0.0111719593405724,0.532568097114563,-0.846313416957855,-0.174583315849304,0.452555239200592,-0.874479532241821,0.0431773327291012,0.519492447376251,-0.853383481502533,-0.00678994599729776,0.527118623256683,-0.849764704704285,0.0234352499246597,0.579400956630707,-0.814705669879913,0.180160969495773,0.613720297813416,-0.768693327903748,-0.172903940081596,0.775533020496368,-0.607167840003967,-0.0471088364720345,0.843635141849518,-0.534846425056458,0.0886635556817055,0.898516416549683,-0.429891884326935,-0.187638372182846,0.785126090049744,-0.590227842330933,-0.206042721867561,0.756537675857544,-0.62064254283905,-0.051430456340313,0.846886336803436,-0.52928102016449,0.117939427495003,0.881104588508606,-0.457979261875153,-0.0428190194070339,0.840359687805176,-0.540335416793823,0.133720099925995,0.896503150463104,-0.422375500202179,-0.0482219681143761,0.84447717666626,-0.533416330814362,-0.219024553894997,0.775845289230347,-0.591686189174652,0.0063185365870595,0.837496280670166,-0.546406686306,-0.0449888668954372,0.842022359371185,-0.537563383579254,-0.0135709587484598,0.874142587184906,-0.485479682683945,0.139840558171272,0.890277862548828,-0.433416873216629,-0.00575634092092514,0.914367139339447,-0.40484544634819,0.108133733272552,0.947799026966095,-0.299973487854004,0.221575066447258,0.960718154907227,-0.167108207941055,-0.0216230638325214,0.920779407024384,-0.389484226703644,-0.0374368280172348,0.902058601379395,-0.429986983537674,0.103945158421993,0.949697017669678,-0.295416951179504,0.255364924669266,0.947138667106628,-0.19420899450779,0.112289570271969,0.945874631404877,-0.304486840963364,0.271698743104935,0.950875461101532,-0.148377493023872,0.107161916792393,0.948243200778961,-0.298916965723038,
- -0.0538562573492527,0.914606690406799,-0.400741904973984,0.161298975348473,0.938371002674103,-0.305684000253677,0.11012526601553,0.946882009506226,-0.302137285470963,0.1329535394907,0.96134352684021,-0.24112656712532,0.279043644666672,0.947023570537567,-0.159000128507614,0.0409669391810894,-0.0419370643794537,-0.998280107975006,0.0675564482808113,0.0278025772422552,-0.997327983379364,0.206355974078178,0.152160197496414,-0.966573596000671,0.00938784796744585,-0.0173205249011517,-0.999805927276611,-0.102022148668766,-0.152981579303741,-0.982948780059814,0.0952259972691536,-0.0100587541237473,-0.995404958724976,0.207899928092957,0.150635406374931,-0.966481566429138,0.0510043427348137,0.0503256283700466,-0.997429668903351,0.20977258682251,0.174558818340302,-0.962041914463043,0.0975761041045189,-0.0132867554202676,-0.995139479637146,-0.0999153032898903,-0.15579029917717,-0.982723951339722,0.07186658680439,-0.0794011428952217,-0.994248807430267,0.224294617772102,0.149443134665489,-0.962994635105133,0.0610909685492516,0.0366115272045136,-0.997460544109344,0.0128271710127592,0.0466701239347458,-0.998827993869781,-0.277390778064728,0.949853479862213,-0.144336208701134,-0.151993751525879,0.987439572811127,-0.0431388542056084,-0.0231816526502371,0.997094750404358,0.0725582838058472,-0.292409211397171,0.948106408119202,-0.124864257872105,-0.307921767234802,0.937155961990356,-0.164082542061806,-0.156665876507759,0.986983180046082,-0.0363346338272095,0.00657941633835435,0.999188303947449,0.0397445671260357,-0.147363021969795,0.987824678421021,-0.0498650372028351,0.0294811297208071,0.996048629283905,0.0837734565138817,-0.153183877468109,0.98732990026474,-0.0414073392748833,-0.321305930614471,0.93796044588089,-0.130355939269066,-0.0983271896839142,0.993582725524902,-0.0559046752750874,-0.149726629257202,0.987636506557465,-0.0464340783655643,-0.119119137525558,0.992777109146118,0.014292698353529,0.03589878231287,0.99685937166214,0.0705893486738205,0.0071068131364882,-0.100237689912319,-0.994938135147095,0.0447952151298523,-0.0362604483962059,-0.998337924480438,
- 0.192785814404488,0.0571781657636166,-0.979573547840118,-0.0206322781741619,-0.0704605355858803,-0.997301161289215,-0.158958345651627,-0.190028041601181,-0.968824863433838,0.0664991140365601,-0.0794833526015282,-0.994615733623505,0.193266361951828,0.0565105974674225,-0.979517579078674,0.031831406056881,-0.0105023737996817,-0.999438166618347,0.203694105148315,0.0837277472019196,-0.975447773933411,0.0683466047048569,-0.0831683874130249,-0.994189023971558,-0.157321572303772,-0.193147018551826,-0.96847528219223,0.0328100696206093,-0.142630308866501,-0.989232182502747,0.213906034827232,0.0566541031002998,-0.975210011005402,0.0397210977971554,-0.026173347607255,-0.998867928981781,-0.00521387346088886,-0.0103954281657934,-0.999932467937469,0.29474949836731,0.820087015628815,-0.490489542484283,0.0880872681736946,0.799039125442505,-0.594791650772095,-0.0364243313670158,0.815427958965302,-0.577711403369904,0.294443607330322,0.821148335933685,-0.488895058631897,-0.0378307029604912,0.819181025028229,-0.572286009788513,0.0770002603530884,0.851271629333496,-0.519044935703278,0.0480496808886528,0.858199894428253,-0.51106184720993,-0.275764226913452,0.765286922454834,-0.581627070903778,-0.0433664843440056,0.833634614944458,-0.550611197948456,-0.039116907864809,0.822584748268127,-0.567295491695404,-0.156154289841652,0.813303649425507,-0.560493767261505,0.078047476708889,0.835019528865814,-0.544656932353973,-0.0479375123977661,0.845181226730347,-0.532325744628906,-0.288411557674408,0.788445591926575,-0.543297648429871,-0.154508545994759,0.804732084274292,-0.573178291320801,0.0780192241072655,0.835483312606812,-0.543949127197266,-0.156625494360924,0.815757751464844,-0.556783437728882,-0.0523966103792191,0.83578896522522,-0.546544969081879,-0.290935397148132,0.792997121810913,-0.535268306732178,-0.301164507865906,0.779440820217133,-0.54933774471283,-0.156824871897697,0.816796243190765,-0.555202484130859,-0.156768530607224,0.816502809524536,-0.555649876594543,-0.301177769899368,0.779512882232666,-0.549228191375732,-0.0522215664386749,0.821321487426758,-0.568070411682129,
- -0.0466991886496544,-0.622642636299133,-0.781111598014832,-0.00105321977753192,-0.563783586025238,-0.825922012329102,0.132104396820068,-0.474918514490128,-0.870057940483093,-0.0752958506345749,-0.600281357765198,-0.796236634254456,-0.193619668483734,-0.6842080950737,-0.703115105628967,0.0230699200183153,-0.596353113651276,-0.80239063501358,0.132776021957397,-0.475578904151917,-0.869594871997833,-0.0153165487572551,-0.543942093849182,-0.838982939720154,0.140293136239052,-0.451045036315918,-0.881405830383301,0.0251353960484266,-0.59908401966095,-0.800291538238525,-0.191743314266205,-0.686630189418793,-0.701265633106232,-0.0197047665715218,-0.655197978019714,-0.755200207233429,0.152294844388962,-0.473407179117203,-0.867578327655792,-0.00664471695199609,-0.556057035923004,-0.831117570400238,-0.0671070069074631,-0.548783123493195,-0.833267033100128,-0.0810945108532906,-0.667786955833435,-0.739921808242798,0.042588897049427,-0.595821917057037,-0.801986694335938,0.178312391042709,-0.486230939626694,-0.855443835258484,-0.0959411561489105,-0.652285099029541,-0.751877248287201,-0.117301516234875,-0.683127284049988,-0.7208172082901,0.0372019708156586,-0.589564979076386,-0.806863903999329,0.207917243242264,-0.511688351631165,-0.833633899688721,0.0478910803794861,-0.601931214332581,-0.797110557556152,0.226877346634865,-0.474761843681335,-0.850369274616241,0.0411131456494331,-0.594112753868103,-0.803330421447754,-0.13000862300396,-0.656905829906464,-0.742679297924042,0.0970994234085083,-0.604274749755859,-0.790837347507477,0.0452328138053417,-0.598874390125275,-0.7995645403862,0.0772072970867157,-0.546769618988037,-0.833715915679932,0.233245119452477,-0.485530018806458,-0.842530310153961,-0.206534951925278,-0.60919314622879,-0.765654623508453,-0.0887696072459221,-0.537750780582428,-0.838417589664459,0.0450993552803993,-0.429299354553223,-0.902035534381866,-0.22157983481884,-0.59280252456665,-0.774265944957733,-0.235098585486412,-0.623221814632416,-0.745870769023895,-0.0932294726371765,-0.532353281974792,-0.841372847557068,0.0758783891797066,-0.457198530435562,-0.886121988296509,
- -0.0843273848295212,-0.543089926242828,-0.83542937040329,0.089637354016304,-0.421967059373856,-0.902169048786163,-0.0898825824260712,-0.536407291889191,-0.839159309864044,-0.24932499229908,-0.594943404197693,-0.764120042324066,-0.0261701233685017,-0.546095252037048,-0.837314248085022,-0.0865909233689308,-0.540373980998993,-0.836957573890686,-0.0487630479037762,-0.485459208488464,-0.87289834022522,0.096380315721035,-0.433307647705078,-0.896077871322632,-0.0684722661972046,0.333281964063644,-0.940337657928467,0.045238945633173,0.432260572910309,-0.900613248348236,0.169508442282677,0.541629195213318,-0.823349714279175,-0.0861392915248871,0.350700736045837,-0.93251758813858,-0.101267173886299,0.307522833347321,-0.946136713027954,0.0391953736543655,0.438972145318985,-0.897645354270935,0.20195072889328,0.51307225227356,-0.83424985408783,0.0511973947286606,0.425600796937943,-0.903461575508118,0.219323143362999,0.547581374645233,-0.807497382164001,0.0435859113931656,0.434100657701492,-0.89980936050415,-0.117296546697617,0.338801950216293,-0.933517515659332,0.106169030070305,0.425777018070221,-0.898577928543091,0.0482180863618851,0.428936094045639,-0.902047038078308,0.0798478201031685,0.487150549888611,-0.869660079479218,0.226931497454643,0.536119520664215,-0.813067138195038,-0.0446168594062328,-0.0765557289123535,-0.996066570281982,-0.00583119783550501,-0.00552071630954742,-0.999967753887177,0.133461564779282,0.0975163877010345,-0.986244678497314,-0.0749635472893715,-0.0484861321747303,-0.996006786823273,-0.190651878714561,-0.170574009418488,-0.966724574565887,0.0184136852622032,-0.0455437041819096,-0.99879264831543,0.134220108389854,0.0966137424111366,-0.986230671405792,-0.020213620737195,0.0182371977716684,-0.999629437923431,0.149570658802986,0.127099946141243,-0.980548024177551,0.0204860586673021,-0.0489631965756416,-0.998590469360352,-0.188799545168877,-0.173531547188759,-0.966561734676361,-0.0158796776086092,-0.115066692233086,-0.993230819702148,0.16174878180027,0.100424587726593,-0.981708824634552,-0.0114664221182466,0.00378655758686364,-0.99992710351944,
- -0.0637368783354759,0.0136266620829701,-0.997873723506927,-0.0839377418160439,0.657508373260498,-0.748757123947144,-0.0295552182942629,0.706103920936584,-0.707491159439087,0.123208291828632,0.753880083560944,-0.645356118679047,-0.106371611356735,0.678305864334106,-0.727039396762848,-0.246344372630119,0.583409368991852,-0.773917257785797,-0.0130352806299925,0.676659882068634,-0.736180365085602,0.124260678887367,0.752622008323669,-0.646621704101563,-0.0393292605876923,0.722918391227722,-0.689813256263733,0.145897135138512,0.768836796283722,-0.622578680515289,-0.0116214286535978,0.674080371856689,-0.73856657743454,-0.245027661323547,0.581066489219666,-0.776094853878021,-0.0590628087520599,0.625441074371338,-0.778032779693604,0.153332859277725,0.750064969062805,-0.643344104290009,-0.0333899818360806,0.712754905223846,-0.700617969036102,-0.0841315314173698,0.724808275699615,-0.683794438838959,-0.15205392241478,0.405052095651627,-0.901561081409454,-0.00836346950381994,0.473554342985153,-0.880724906921387,0.151329755783081,0.544131517410278,-0.825239479541779,-0.163257226347923,0.42549741268158,-0.890111923217773,-0.188290655612946,0.390512704849243,-0.901136338710785,-0.0119119426235557,0.481157720088959,-0.876553237438202,0.172652438282967,0.510429799556732,-0.842408776283264,-0.00486408686265349,0.466017037630081,-0.884762346744537,0.193457573652267,0.53676700592041,-0.821252286434174,-0.00933075323700905,0.475630909204483,-0.879595458507538,-0.1937205940485,0.423695087432861,-0.884847462177277,0.0488549172878265,0.452412635087967,-0.890469551086426,-0.00662717549130321,0.46981942653656,-0.882737696170807,0.0442491993308067,0.517626583576202,-0.854461669921875,0.196867361664772,0.524748086929321,-0.828180372714996,-0.342271655797958,0.813013315200806,-0.471019566059113,-0.196047767996788,0.875049114227295,-0.442554295063019,-0.0251910835504532,0.92238587141037,-0.385447382926941,-0.350104421377182,0.821924924850464,-0.449295401573181,-0.370217502117157,0.799020648002625,-0.473819583654404,-0.198349967598915,0.878369688987732,-0.434884160757065,
- -0.00757116638123989,0.905985414981842,-0.423241168260574,-0.19375929236412,0.871704757213593,-0.450097978115082,0.021089369431138,0.918171405792236,-0.395621657371521,-0.196663081645966,0.875940978527069,-0.440512299537659,-0.371840745210648,0.816626310348511,-0.441424936056137,-0.145301431417465,0.869703710079193,-0.471702188253403,-0.194916903972626,0.873401880264282,-0.446292042732239,-0.14223738014698,0.902359247207642,-0.406836926937103,0.0228269603103399,0.912722110748291,-0.407942801713943,0.0581355355679989,-0.509863674640656,0.858288586139679,0.145991161465645,-0.500593245029449,0.853283643722534,0.047346830368042,-0.506966650485992,0.860664308071136,0.299622505903244,-0.465941250324249,0.832541346549988,0.145940616726875,-0.499877065420151,0.85371208190918,0.0581476241350174,-0.510019183158875,0.85819536447525,-0.114417806267738,-0.504769265651703,0.855638086795807,0.0583162903785706,-0.512188196182251,0.85689115524292,0.0453952588140965,-0.519104778766632,0.853504240512848,0.0558946095407009,-0.481186717748642,0.874834358692169,-0.143009558320045,-0.532476007938385,0.834276676177979,0.29589381814003,-0.448817223310471,0.84321403503418,-0.114902153611183,-0.510778367519379,0.851999521255493,-0.149696752429008,-0.498722404241562,0.853736996650696,0.0569496043026447,-0.494655072689056,0.867221474647522,0.0379657484591007,-0.527734339237213,0.848560571670532,0.297164082527161,-0.454608082771301,0.839657664299011,-0.141726210713387,-0.538734555244446,0.830469012260437,-0.426580220460892,-0.514405488967896,0.743919551372528,-0.146211132407188,-0.516560614109039,0.843674957752228,-0.120415024459362,-0.582923710346222,0.803554713726044,0.0257415752857924,-0.47871533036232,0.877592742443085,-0.146092161536217,-0.517159879207611,0.843328356742859,-0.426390022039413,-0.515292406082153,0.743414640426636,0.451112806797028,-0.276466816663742,0.848565459251404,0.000999673269689083,-0.438184201717377,0.898884654045105,0.265943259000778,-0.395336538553238,0.879194617271423,0.450635731220245,-0.274201452732086,0.849553406238556,
- 0.247165337204933,-0.3138647377491,0.916732370853424,-0.00146973901428282,-0.429686158895493,0.902977108955383,0.22566644847393,-0.306758403778076,0.924647986888886,-0.0107496716082096,-0.397381335496902,0.917590618133545,-0.205437868833542,-0.453033357858658,0.867499887943268,-0.00707440311089158,-0.410245418548584,0.911947846412659,0.248521640896797,-0.334895581007004,0.90889048576355,-0.094718299806118,-0.403508424758911,0.910060107707977,-0.0170236695557833,-0.375209093093872,0.926783859729767,-0.0957243964076042,-0.398393303155899,0.912205934524536,-0.218188911676407,-0.417094647884369,0.882284343242645,0.248838141560555,-0.34007802605629,0.906877338886261,0.138153851032257,-0.352271229028702,0.925644934177399,-0.0948370471596718,-0.402906149625778,0.910314559936523,-0.186581462621689,-0.422990560531616,0.886716604232788,-0.233409285545349,-0.371819198131561,0.898482501506805,-0.0965636447072029,-0.394104808568954,0.913978576660156,-0.0956412777304649,-0.398816972970963,0.912029504776001,0.139418616890907,-0.393892019987106,0.908521592617035,-0.188983038067818,-0.40464848279953,0.894731819629669,0.225531235337257,-0.572996616363525,0.787915468215942,-0.236842930316925,-0.677883982658386,0.69597327709198,0.0263620149344206,-0.669979214668274,0.741911649703979,0.22499743103981,-0.57100236415863,0.789514064788818,0.00162747304420918,-0.600621283054352,0.799531996250153,-0.23965260386467,-0.670425772666931,0.702207863330841,-0.0185908284038305,-0.591159105300903,0.80634069442749,-0.250050365924835,-0.641616821289063,0.725122630596161,-0.432231068611145,-0.651927590370178,0.623030304908752,-0.24595308303833,-0.653203010559082,0.716123521327972,0.0031110355630517,-0.617996454238892,0.786174714565277,-0.335094481706619,-0.63267320394516,0.698166489601135,-0.336141526699066,-0.628391981124878,0.701521515846252,-0.445575147867203,-0.619737446308136,0.646055936813354,-0.256865561008453,-0.621629297733307,0.739998042583466,0.00347853312268853,-0.622257113456726,0.782805204391479,-0.104708254337311,-0.622839391231537,0.775311052799225,
- -0.335219830274582,-0.632163763046265,0.698567569255829,-0.423911392688751,-0.630001664161682,0.650689661502838,-0.461015075445175,-0.578397154808044,0.672994673252106,-0.337016135454178,-0.624768257141113,0.704332828521729,-0.336060583591461,-0.628725111484528,0.701261758804321,-0.103024691343308,-0.658935964107513,0.745110273361206,-0.426638185977936,-0.6146639585495,0.663451611995697,0.143327042460442,-0.574839472770691,0.805616021156311,0.225402817130089,-0.562858939170837,0.795225381851196,0.132389113306999,-0.572880148887634,0.808876633644104,0.379723161458969,-0.519610404968262,0.765385746955872,0.225321844220161,-0.561343729496002,0.796318590641022,0.143302500247955,-0.574454605579376,0.80589485168457,-0.032596368342638,-0.577168703079224,0.815974235534668,0.143476501107216,-0.577193021774292,0.80390465259552,0.13044174015522,-0.584164261817932,0.801084935665131,0.141481935977936,-0.546854674816132,0.825186550617218,-0.0623206086456776,-0.606199741363525,0.792866945266724,0.376276254653931,-0.503178238868713,0.777963936328888,-0.0330131389200687,-0.581799209117889,0.812662303447723,-0.0692907050251961,-0.572149217128754,0.817217290401459,0.142449572682381,-0.561297059059143,0.815262973308563,0.11977469176054,-0.596857190132141,0.793357133865356,0.377404630184174,-0.508495390415192,0.7739497423172,-0.0610536746680737,-0.612214803695679,0.788330852985382,-0.344851732254028,-0.590164124965668,0.729920268058777,-0.0661344453692436,-0.587771773338318,0.806319296360016,-0.0390931665897369,-0.648521423339844,0.760191917419434,0.105330437421799,-0.542939960956573,0.833139657974243,-0.0659970864653587,-0.58844381570816,0.805840075016022,-0.344680637121201,-0.590964734554291,0.729353129863739,0.328866183757782,-0.154263630509377,0.931691884994507,-0.137402087450027,-0.294831216335297,0.945618987083435,0.13241583108902,-0.263711720705032,0.955469727516174,0.32839822769165,-0.151937052607536,0.93223911523819,0.114791668951511,-0.175215259194374,0.9778151512146,-0.139967128634453,-0.285676628351212,0.948049604892731,0.0903428196907043,-0.1669832020998,0.981812000274658,
- -0.149464696645737,-0.251106649637222,0.956350326538086,-0.32763460278511,-0.305936515331268,0.893900692462921,-0.145725384354591,-0.264846086502075,0.953215956687927,0.116092413663864,-0.197280526161194,0.973449110984802,-0.222701892256737,-0.255973190069199,0.940681457519531,-0.155756622552872,-0.227596715092659,0.961217880249023,-0.224141031503677,-0.248509109020233,0.942339777946472,-0.340541690587997,-0.267473578453064,0.901381850242615,0.11640427261591,-0.202709466218948,0.972295701503754,0.00656885653734207,-0.208561271429062,0.977987229824066,-0.222876310348511,-0.255073070526123,0.940884649753571,-0.323400497436523,-0.273847192525864,0.905770301818848,-0.355735391378403,-0.219167158007622,0.908525228500366,-0.225326001644135,-0.242298066616058,0.943673610687256,-0.223998174071312,-0.249253764748573,0.942176938056946,0.00794654525816441,-0.252302467823029,0.967615783214569,-0.325727432966232,-0.256279587745667,0.91006726026535,-0.0796912014484406,-0.884567856788635,0.459553092718124,0.00436680298298597,-0.883049011230469,0.469260513782501,-0.101004287600517,-0.881789982318878,0.460700064897537,0.0770057216286659,-0.880368888378143,0.46799647808075,0.00524091441184282,-0.886741399765015,0.462236136198044,-0.0785841718316078,-0.888893842697144,0.45132303237915,-0.256414175033569,-0.860743880271912,0.439740538597107,-0.0794012174010277,-0.885711073875427,0.457396268844604,-0.102067574858665,-0.887892067432404,0.448586583137512,-0.0797708928585052,-0.884252548217773,0.460145652294159,-0.265082836151123,-0.886015772819519,0.380404233932495,0.0782599896192551,-0.882171869277954,0.464379578828812,-0.256507217884064,-0.863538205623627,0.434172600507736,-0.281066924333572,-0.851978302001953,0.441740393638611,-0.0818828567862511,-0.875689446926117,0.475881516933441,-0.168509542942047,-0.917268216609955,0.360865026712418,0.0777174681425095,-0.881393730640411,0.465945601463318,-0.262881189584732,-0.89014607667923,0.372200787067413,-0.550970077514648,-0.77646803855896,0.305825680494308,-0.276950895786285,-0.861477255821228,0.425623536109924,
- -0.256773859262466,-0.898620247840881,0.355736970901489,-0.254656195640564,-0.822255671024323,0.50896543264389,-0.27676048874855,-0.861903309822083,0.424883842468262,-0.550998866558075,-0.776394665241241,0.305960118770599,-0.138653993606567,-0.27394711971283,-0.951697468757629,0.00132562511134893,-0.198757246136665,-0.980047881603241,0.153307303786278,-0.0971706062555313,-0.983389437198639,-0.150523766875267,-0.253105789422989,-0.955656886100769,-0.176007628440857,-0.290257185697556,-0.940623342990875,-0.00268440344370902,-0.190762504935265,-0.981632649898529,0.177810251712799,-0.133110702037811,-0.975020527839661,0.00527865625917912,-0.206622540950775,-0.978406488895416,0.200057730078697,-0.0978349670767784,-0.974887311458588,0.000244881608523428,-0.196604162454605,-0.980482935905457,-0.183997943997383,-0.254322320222855,-0.949455082416534,0.0545173734426498,-0.219264760613441,-0.974141061306,0.00329686980694532,-0.20268140733242,-0.979239284992218,0.0445911325514317,-0.147460907697678,-0.98806220293045,0.204432591795921,-0.111244440078735,-0.972538948059082,0.0405662693083286,0.494770854711533,-0.868076145648956,0.0843927338719368,0.550708174705505,-0.830420732498169,0.235527604818344,0.615428149700165,-0.752180159091949,0.0138160968199372,0.520275115966797,-0.853886961936951,-0.114724546670914,0.416499018669128,-0.901868522167206,0.105294018983841,0.514772653579712,-0.850836217403412,0.236373856663704,0.61439973115921,-0.752755224704742,0.0718775242567062,0.571517825126648,-0.817435622215271,0.240117102861404,0.631313502788544,-0.737419188022614,0.107072360813618,0.51164585351944,-0.852498710155487,-0.113114692270756,0.413764864206314,-0.903329253196716,0.0694993734359741,0.457904845476151,-0.886280417442322,0.250346422195435,0.608893513679504,-0.75271201133728,0.0794967040419579,0.558911442756653,-0.825407922267914,0.0319172516465187,0.574034512042999,-0.818208813667297,-0.140124261379242,0.286731094121933,-0.947708010673523,-0.00891493167728186,0.363652378320694,-0.93149209022522,0.136379420757294,0.450004726648331,-0.882551193237305,
- -0.151971772313118,0.305647045373917,-0.939938545227051,-0.178570196032524,0.265433430671692,-0.947448134422302,-0.0125799048691988,0.370330154895782,-0.928815007209778,0.161712810397148,0.415547251701355,-0.89508068561554,-0.00526958424597979,0.35698789358139,-0.934094130992889,0.195294976234436,0.452390432357788,-0.870173990726471,-0.00985939148813486,0.365375399589539,-0.930808067321777,-0.187192931771278,0.299683600664139,-0.935493767261505,0.0455649122595787,0.346680968999863,-0.936875760555267,-0.0071112853474915,0.360357731580734,-0.932787179946899,0.0343269892036915,0.414031654596329,-0.909614980220795,0.200014129281044,0.439477562904358,-0.875702023506165,-0.130882114171982,0.180295795202255,-0.974865794181824,-0.00647756829857826,0.274626135826111,-0.96152937412262,0.127365112304688,0.38237676024437,-0.915186405181885,-0.144910290837288,0.198210537433624,-0.969388246536255,-0.162628099322319,0.156092271208763,-0.974262416362762,-0.0124340066686273,0.283004254102707,-0.959038078784943,0.156463354825974,0.350335448980331,-0.923463225364685,-0.000617661513388157,0.266354769468308,-0.963874876499176,0.178620100021362,0.387904822826386,-0.904226005077362,-0.00815569143742323,0.2769895195961,-0.960838437080383,-0.175501763820648,0.190270140767097,-0.965917408466339,0.044461365789175,0.260572075843811,-0.964430093765259,-0.00353143806569278,0.270471185445786,-0.962721586227417,0.024723881855607,0.329021543264389,-0.943998694419861,0.184560418128967,0.37625315785408,-0.907948911190033,-0.168616265058517,0.57850581407547,-0.79805988073349,-0.0502480156719685,0.658819913864136,-0.750620722770691,0.090623639523983,0.743684470653534,-0.662360072135925,-0.182985126972198,0.592164814472198,-0.784765899181366,-0.202053979039192,0.554544508457184,-0.807251214981079,-0.0551820062100887,0.664114773273468,-0.745591402053833,0.119987405836582,0.719055652618408,-0.68451589345932,-0.0453482121229172,0.65351527929306,-0.755553781986237,0.136728599667549,0.743521869182587,-0.654584228992462,-0.0515767931938171,0.66025048494339,-0.749272406101227,
- -0.215106308460236,0.581561207771301,-0.784548342227936,0.00935479626059532,0.651920258998871,-0.758229970932007,-0.0477962084114552,0.656171262264252,-0.75309681892395,-0.0105251874774694,0.704352915287018,-0.709771931171417,0.142947673797607,0.734261095523834,-0.663646459579468,-0.00503854174166918,0.76505309343338,-0.64394748210907,0.106326706707478,0.825472295284271,-0.554337501525879,0.225971236824989,0.877239882946014,-0.423541277647018,-0.0212350022047758,0.775689959526062,-0.630756855010986,-0.0363561883568764,0.74644660949707,-0.664451420307159,0.101188495755196,0.829233407974243,-0.549666106700897,0.259807705879211,0.856601238250732,-0.445796251296997,0.111396118998528,0.821706295013428,-0.558918356895447,0.269303262233734,0.871500313282013,-0.409832864999771,0.104983627796173,0.826460897922516,-0.55311918258667,-0.0527557320892811,0.766625463962555,-0.639923632144928,0.160007059574127,0.815722763538361,-0.55587238073349,0.108824878931046,0.823623299598694,-0.556598424911499,0.131783857941628,0.855352997779846,-0.501003205776215,0.276851564645767,0.864610910415649,-0.419286519289017,0.0411163307726383,-0.319397866725922,-0.94672828912735,0.0703533440828323,-0.250182807445526,-0.965639173984528,0.205801039934158,-0.124137856066227,-0.970688283443451,0.00914462842047215,-0.295966297388077,-0.955154597759247,-0.102876521646976,-0.422124564647675,-0.900681555271149,0.0976958125829697,-0.285412311553955,-0.953412473201752,0.207771599292755,-0.125961557030678,-0.970033347606659,0.0540185905992985,-0.22897444665432,-0.971932470798492,0.211309865117073,-0.10063611716032,-0.972224533557892,0.100019790232182,-0.288390874862671,-0.9522745013237,-0.10078401863575,-0.424735486507416,-0.899690270423889,0.0736402347683907,-0.353341996669769,-0.932591319084167,0.225655987858772,-0.124409504234791,-0.966230630874634,0.0639624819159508,-0.241899490356445,-0.968190789222717,0.0145930014550686,-0.233453661203384,-0.972258448600769,-0.274234473705292,0.873778223991394,-0.40163055062294,-0.149475410580635,0.93698662519455,-0.315773844718933,
- -0.0235483329743147,0.977651417255402,-0.208909466862679,-0.289019048213959,0.877501964569092,-0.382698714733124,-0.306350737810135,0.854742109775543,-0.419004887342453,-0.15427203476429,0.938484966754913,-0.308943897485733,0.00655075674876571,0.970438539981842,-0.241259545087814,-0.144761726260185,0.935452163219452,-0.32244884967804,0.0272368490695953,0.979631900787354,-0.198946475982666,-0.15076856315136,0.937396883964539,-0.31393626332283,-0.319782286882401,0.864993989467621,-0.386684268712997,-0.0940258651971817,0.939318358898163,-0.329909384250641,-0.147154673933983,0.936238825321198,-0.319064766168594,-0.114790610969067,0.958016097545624,-0.262732416391373,0.0336557626724243,0.97672712802887,-0.211828619241714,0.00470783188939095,-0.376099824905396,-0.926567316055298,0.04615218937397,-0.313321799039841,-0.94852489233017,0.190796583890915,-0.220081746578217,-0.956640303134918,-0.0227304007858038,-0.348403513431549,-0.937069118022919,-0.156754702329636,-0.452299416065216,-0.877982437610626,0.0675922483205795,-0.353020459413528,-0.933170855045319,0.191544026136398,-0.221049576997757,-0.956267714500427,0.0333673357963562,-0.289404213428497,-0.95662522315979,0.206397712230682,-0.190945893526077,-0.959656000137329,0.0694166794419289,-0.356374621391296,-0.931760966777802,-0.155130818486214,-0.455164819955826,-0.876789271831512,0.030069163069129,-0.414368867874146,-0.90961217880249,0.216625824570656,-0.217023879289627,-0.951826632022858,0.0411561504006386,-0.303996980190277,-0.95178359746933,-0.00790261290967464,-0.289802312850952,-0.957054018974304,-0.0805299952626228,0.333850234746933,-0.939179956912994,-0.0322715453803539,0.391202658414841,-0.919738590717316,0.124573938548565,0.460133761167526,-0.879066824913025,-0.103499740362167,0.361743181943893,-0.926514804363251,-0.24737261235714,0.25316709280014,-0.935261070728302,-0.015705693513155,0.353012889623642,-0.935486733913422,0.125487506389618,0.458706229925156,-0.879682600498199,-0.0420802682638168,0.413517981767654,-0.909523010253906,0.145005777478218,0.481565952301025,-0.86433082818985,
- -0.0142891481518745,0.349718183279037,-0.936746001243591,-0.246028751134872,0.250083327293396,-0.936444461345673,-0.0558275133371353,0.290768355131149,-0.955163359642029,0.152438715100288,0.456992775201797,-0.876310467720032,-0.0361150279641151,0.399973213672638,-0.915814995765686,-0.0805911421775818,0.41974550485611,-0.90405684709549,-0.151598513126373,0.0413748100399971,-0.987575829029083,-0.0113384984433651,0.110689662396908,-0.993790328502655,0.150742024183273,0.19761224091053,-0.968620777130127,-0.162365034222603,0.0638810768723488,-0.984660744667053,-0.188031002879143,0.0273409150540829,-0.981782495975494,-0.014763037674129,0.11902441829443,-0.992781579494476,0.171984195709229,0.160035759210587,-0.972013354301453,-0.00794400740414858,0.102421306073666,-0.994709372520447,0.196795970201492,0.193234592676163,-0.961213707923889,-0.0122650461271405,0.112945415079594,-0.993525505065918,-0.193472102284431,0.0639835074543953,-0.979017198085785,0.049947015941143,0.0886306464672089,-0.994811475276947,-0.00964515283703804,0.106565818190575,-0.994258880615234,0.04536447301507,0.162606090307236,-0.985647678375244,0.200178667902946,0.179710954427719,-0.963136792182922,-0.339061766862869,0.580933511257172,-0.739968478679657,-0.19596591591835,0.647566854953766,-0.736379325389862,-0.0270528085529804,0.7116579413414,-0.702005088329315,-0.3470319211483,0.597511827945709,-0.722875118255615,-0.374548554420471,0.563816845417023,-0.736086905002594,-0.198474630713463,0.65397697687149,-0.73001503944397,-0.0099853565916419,0.682982921600342,-0.730366170406342,-0.193484529852867,0.64121401309967,-0.742568731307983,0.0172460861504078,0.704736590385437,-0.709259450435638,-0.196654185652733,0.649326741695404,-0.734644055366516,-0.376019775867462,0.592990756034851,-0.712019026279449,-0.142894402146339,0.63197922706604,-0.761697769165039,-0.194743946194649,0.644439935684204,-0.739440321922302,-0.139872685074806,0.68630713224411,-0.713735342025757,0.0189784113317728,0.695114731788635,-0.718648254871368,0.0591786913573742,-0.153860181570053,0.98631888628006,
- 0.144860118627548,-0.147470191121101,0.978400766849518,0.0436747446656227,-0.149927392601967,0.987731993198395,0.29928520321846,-0.123002000153065,0.946202456951141,0.144784197211266,-0.14617083966732,0.978606998920441,0.0592388622462749,-0.154699742794037,0.986183941364288,-0.114423431456089,-0.150088608264923,0.982028961181641,0.0593530982732773,-0.156293362379074,0.985925853252411,0.0417952835559845,-0.163676306605339,0.985628366470337,0.0568847358226776,-0.122225865721703,0.990870833396912,-0.145945832133293,-0.182889267802238,0.972240388393402,0.295567661523819,-0.102874487638474,0.949766576290131,-0.114918790757656,-0.15713469684124,0.98086816072464,-0.152275323867798,-0.145753115415573,0.977531731128693,0.0578454472124577,-0.135390549898148,0.989102363586426,0.037962231785059,-0.174345090985298,0.983952581882477,0.296802282333374,-0.109487742185593,0.94864159822464,-0.144700050354004,-0.1900255382061,0.9710573554039,-0.431919068098068,-0.201281487941742,0.879165470600128,-0.148725152015686,-0.166767224669456,0.974715113639832,-0.120470732450485,-0.242171287536621,0.962725341320038,0.0255905240774155,-0.117526791989803,0.992740035057068,-0.148619458079338,-0.167385578155518,0.97462522983551,-0.431733101606369,-0.202274352312088,0.879028916358948,0.452576816082001,0.0595105327665806,0.88973742723465,-0.00518858851864934,-0.0735512748360634,0.997278034687042,0.271735370159149,-0.0379048362374306,0.961625218391418,0.452123552560806,0.0618727542459965,0.889806747436523,0.248846814036369,0.0492926314473152,0.967287719249725,-0.00764611549675465,-0.064164400100708,0.997910141944885,0.230900302529335,0.0620052441954613,0.970999717712402,-0.0168438833206892,-0.0289537273347378,0.99943882226944,-0.199335798621178,-0.0969688147306442,0.975121676921844,-0.0132120456546545,-0.0428718514740467,0.998993217945099,0.250225007534027,0.0274154655635357,0.967799484729767,-0.0971299335360527,-0.0384675152599812,0.99452805519104,-0.0230372305959463,-0.00517448130995035,0.999721229076386,-0.0986260548233986,-0.0304748080670834,0.994657814502716,
- -0.212553724646568,-0.0572277493774891,0.975472152233124,0.250547707080841,0.0219961814582348,0.96785432100296,0.14098159968853,0.017877247184515,0.98985081911087,-0.0973105132579803,-0.0375047586858273,0.994547188282013,-0.190355509519577,-0.0633974596858025,0.97966605424881,-0.228414952754974,-0.00784464552998543,0.973532259464264,-0.0998524874448776,-0.0238951798528433,0.99471527338028,-0.0984754860401154,-0.0312808491289616,0.994647741317749,0.142037764191628,-0.0289615895599127,0.989437460899353,-0.192779541015625,-0.04305449873209,0.980297088623047,0.221669048070908,-0.239979863166809,0.945130944252014,-0.242849498987198,-0.369220435619354,0.89705091714859,0.0217731241136789,-0.345764845609665,0.938068568706512,0.221060395240784,-0.237243250012398,0.94596403837204,0.00328318541869521,-0.260856539011002,0.965371966362,-0.245524153113365,-0.360282182693481,0.899952590465546,-0.0212669558823109,-0.251025706529617,0.967746794223785,-0.255362927913666,-0.326395094394684,0.910085737705231,-0.435997813940048,-0.371857583522797,0.819529056549072,-0.251507014036179,-0.339870184659958,0.906218767166138,0.00480056786909699,-0.281006693840027,0.959693908691406,-0.337174952030182,-0.326373845338821,0.883058965206146,-0.337909668684006,-0.322639614343643,0.884149730205536,-0.448481440544128,-0.335054278373718,0.828615128993988,-0.261819005012512,-0.30323800444603,0.916240990161896,0.00517640076577663,-0.285982728004456,0.958220779895782,-0.105700850486755,-0.289553046226501,0.951307713985443,-0.337263137102127,-0.325927346944809,0.883190214633942,-0.424968034029007,-0.34248161315918,0.837919175624847,-0.462876260280609,-0.288987904787064,0.8379927277565,-0.33853679895401,-0.319426715373993,0.885075926780701,-0.337866634130478,-0.322859287261963,0.884086012840271,-0.10406256467104,-0.334695219993591,0.936563014984131,-0.427673786878586,-0.323691308498383,0.843989968299866,0.142547160387039,-0.233896702528,0.961754977703094,0.229854241013527,-0.226235821843147,0.946564495563507,0.128542095422745,-0.230294108390808,0.964594006538391,
- 0.381352365016937,-0.196942090988159,0.903207719326019,0.229765340685844,-0.224171280860901,0.94707715511322,0.142540648579597,-0.233779281377792,0.961784482002258,-0.0335847213864326,-0.232103779911995,0.97211104631424,0.14269694685936,-0.236610636115074,0.961068689823151,0.12653923034668,-0.24380487203598,0.961533665657043,0.140662357211113,-0.20118573307991,0.969401061534882,-0.0589122995734215,-0.269987106323242,0.961059987545013,0.377898812294006,-0.17716421186924,0.908738315105438,-0.0339914299547672,-0.237534239888191,0.970784366130829,-0.0666468739509583,-0.226414114236832,0.971748352050781,0.141603514552116,-0.217202484607697,0.965801000595093,0.122896537184715,-0.256804615259171,0.958617687225342,0.379045933485031,-0.183638721704483,0.906973540782928,-0.0575672872364521,-0.277438223361969,0.959017217159271,-0.346498370170593,-0.276380360126495,0.896411061286926,-0.0636496618390083,-0.243446841835976,0.967823505401611,-0.040019441395998,-0.318855106830597,0.946958243846893,0.109311975538731,-0.194738417863846,0.974745035171509,-0.0634834170341492,-0.244386076927185,0.967597723007202,-0.346345365047455,-0.277250826358795,0.896201372146606,0.333861082792282,0.204277411103249,0.920221447944641,-0.136571571230888,0.0770970806479454,0.987625658512115,0.133621543645859,0.110263116657734,0.984879374504089,0.333420246839523,0.20652075111866,0.919880509376526,0.115594200789928,0.200287222862244,0.972894132137299,-0.139214873313904,0.0867019221186638,0.986459314823151,0.0907028764486313,0.211002111434937,0.973268270492554,-0.149013727903366,0.12268377840519,0.981194972991943,-0.328157842159271,0.0483697205781937,0.943383693695068,-0.145141556859016,0.108392834663391,0.98345559835434,0.116937540471554,0.179109483957291,0.976854860782623,-0.225048705935478,0.112401150166988,0.967842578887939,-0.15548974275589,0.146802961826324,0.976868391036987,-0.226361483335495,0.119337327778339,0.96670526266098,-0.341079622507095,0.0868796855211258,0.936011016368866,0.117261491715908,0.173857152462006,0.97776460647583,0.0114828078076243,0.170728579163551,0.985251188278198,
- -0.225207224488258,0.11323593556881,0.967708289623261,-0.323522359132767,0.0827618539333344,0.942594170570374,-0.356292217969894,0.134416937828064,0.924655556678772,-0.227444335818291,0.125100508332253,0.965721964836121,-0.226236343383789,0.118673674762249,0.966816365718842,0.0126796634867787,0.12464164942503,0.992120802402496,-0.325855016708374,0.100725308060646,0.940038800239563,-0.0821062698960304,-0.650163531303406,0.755344927310944,0.00777796981856227,-0.644896805286407,0.764230072498322,-0.100170366466045,-0.647135436534882,0.755765736103058,0.0787648037075996,-0.642518222332001,0.762211561203003,0.00859194621443748,-0.650653779506683,0.759325921535492,-0.080893836915493,-0.657676160335541,0.748944759368896,-0.255100905895233,-0.635456383228302,0.728778958320618,-0.0818320140242577,-0.651872932910919,0.753899991512299,-0.101253211498261,-0.657353579998016,0.746748983860016,-0.0820806100964546,-0.650323688983917,0.755209863185883,-0.263635784387589,-0.682171225547791,0.68201071023941,0.0800024271011353,-0.645505905151367,0.759553790092468,-0.25520458817482,-0.640294253826141,0.724495649337769,-0.28034171462059,-0.626301765441895,0.727430164813995,-0.0844791904091835,-0.635122895240784,0.767777442932129,-0.167085319757462,-0.716914892196655,0.676842331886292,0.0794941708445549,-0.644279837608337,0.760647177696228,-0.261569529771805,-0.688517808914185,0.676405668258667,-0.549904406070709,-0.607224702835083,0.573483645915985,-0.276400595903397,-0.640271246433258,0.716697692871094,-0.255566954612732,-0.702248632907867,0.66447901725769,-0.25365287065506,-0.573222160339355,0.779151201248169,-0.276183545589447,-0.641025364398956,0.716106951236725,-0.549928188323975,-0.607127130031586,0.573563992977142,-0.141277596354485,-0.609570860862732,-0.780041038990021,-0.000417892035329714,-0.54988819360733,-0.83523815870285,0.151910126209259,-0.45703986287117,-0.876377701759338,-0.153373762965202,-0.591410517692566,-0.791650235652924,-0.172859668731689,-0.619214594364166,-0.765958786010742,-0.0046475543640554,-0.542709112167358,-0.839908003807068,
- 0.176458969712257,-0.48733189702034,-0.855201661586761,0.00375053007155657,-0.556914210319519,-0.830561578273773,0.198998779058456,-0.453828275203705,-0.86858469247818,-0.00157129287254065,-0.547935426235199,-0.836519122123718,-0.180844321846962,-0.589140594005585,-0.787533283233643,0.0547097735106945,-0.565796792507172,-0.822727799415588,0.00166236981749535,-0.553400635719299,-0.832913517951965,0.0447200760245323,-0.50463479757309,-0.862174034118652,0.203439801931381,-0.465699374675751,-0.861241161823273,0.0434177853167057,0.139836698770523,-0.989222228527069,0.0832555294036865,0.201574936509132,-0.975928425788879,0.236013844609261,0.291966408491135,-0.926851153373718,0.0178025681525469,0.167822226881981,-0.985656499862671,-0.11533036082983,0.0507918894290924,-0.992027878761292,0.104032933712006,0.160997599363327,-0.981456637382507,0.23704719543457,0.29054406285286,-0.927034378051758,0.0708223208785057,0.225492537021637,-0.971667289733887,0.240760907530785,0.311866939067841,-0.919115424156189,0.105797201395035,0.157516434788704,-0.98183274269104,-0.113686226308346,0.047611940652132,-0.992375314235687,0.0715797618031502,0.0963781625032425,-0.992767632007599,0.250996857881546,0.285287380218506,-0.924992799758911,0.0783931612968445,0.210960686206818,-0.974345982074738,0.0339190885424614,0.228410884737968,-0.972973883152008,-0.140861883759499,-0.0872482284903526,-0.986177325248718,-0.00516426609829068,-0.00717929098755121,-0.999960899353027,0.137839034199715,0.0904880836606026,-0.986312508583069,-0.152998000383377,-0.066382497549057,-0.985994398593903,-0.17768132686615,-0.105727128684521,-0.978392124176025,-0.00926917139440775,0.00081826961832121,-0.999956727027893,0.163312196731567,0.0536971651017666,-0.985112071037292,-0.00111043034121394,-0.0150759853422642,-0.999885737895966,0.199187636375427,0.0974074453115463,-0.97510826587677,-0.00626201508566737,-0.00504069030284882,-0.999967694282532,-0.186285257339478,-0.0699817761778831,-0.980000197887421,0.0441525727510452,-0.0262838918715715,-0.998678982257843,-0.00315153156407177,-0.0111001785844564,-0.999933421611786,
- 0.0327343456447124,0.0450227633118629,-0.998449504375458,0.203902453184128,0.0833762511610985,-0.975434362888336,-0.129896461963654,-0.194948241114616,-0.972173929214478,-0.00631659012287855,-0.102736175060272,-0.99468868970871,0.131428524851799,0.0179060325026512,-0.991163909435272,-0.144197791814804,-0.175972118973732,-0.973776578903198,-0.164098262786865,-0.217571943998337,-0.962150931358337,-0.0121493823826313,-0.0941992923617363,-0.995479226112366,0.160339042544365,-0.0147593757137656,-0.986951649188995,-0.000589945877436548,-0.11110595613718,-0.993808388710022,0.173949927091599,0.0212967023253441,-0.984524190425873,-0.0079589830711484,-0.100333571434021,-0.994922041893005,-0.176799327135086,-0.183877795934677,-0.966918289661407,0.048556175082922,-0.115873537957668,-0.992076516151428,-0.00345191662199795,-0.10692448168993,-0.994261145591736,0.0288278516381979,-0.0447008647024632,-0.998584389686584,0.179899543523788,0.00906711257994175,-0.983643174171448,-0.172207474708557,0.237009808421135,-0.956122875213623,-0.0465054512023926,0.334777921438217,-0.94114875793457,0.0936355516314507,0.446335077285767,-0.88995361328125,-0.186693802475929,0.254753887653351,-0.948812901973724,-0.200027614831924,0.215560272336006,-0.955783843994141,-0.0506205335259438,0.340498715639114,-0.93888133764267,0.123128473758698,0.415136128664017,-0.901388585567474,-0.0424112379550934,0.329071462154388,-0.943352162837982,0.135617986321449,0.446006625890732,-0.88469535112381,-0.0475203804671764,0.336190283298492,-0.940594434738159,-0.212964564561844,0.248388186097145,-0.944959998130798,0.00838194414973259,0.322937548160553,-0.9463831782341,-0.0445010773837566,0.331986099481583,-0.942234098911285,-0.0115288319066167,0.389337360858917,-0.921023190021515,0.14169779419899,0.434394061565399,-0.889507591724396,-0.00529470201581717,0.470158070325851,-0.882566332817078,0.104565307497978,0.558849215507507,-0.822650372982025,0.22398678958416,0.655127763748169,-0.721552193164825,-0.0216485373675823,0.48505711555481,-0.874214470386505,-0.0381763800978661,0.444502502679825,-0.89496374130249,
- 0.0999061912298203,0.563613176345825,-0.819974958896637,0.257771909236908,0.627719879150391,-0.734521210193634,0.10921747982502,0.554058074951172,-0.825282514095306,0.2721988260746,0.657400131225586,-0.702661275863647,0.103445373475552,0.559997498989105,-0.82201087474823,-0.05469910800457,0.472771883010864,-0.879485487937927,0.161241009831429,0.550551474094391,-0.819081425666809,0.106847308576107,0.556503355503082,-0.823946416378021,0.132989898324013,0.607843935489655,-0.782840669155121,0.279763251543045,0.647461891174316,-0.708890438079834,0.0387780219316483,-0.651046514511108,-0.758046627044678,0.0699642524123192,-0.591672241687775,-0.803136944770813,0.206679061055183,-0.475936651229858,-0.854849874973297,0.00680053187534213,-0.632429420948029,-0.774588167667389,-0.100829750299454,-0.726024448871613,-0.680236637592316,0.0974397361278534,-0.620014905929565,-0.778515875339508,0.208176732063293,-0.477046757936478,-0.853866994380951,0.0535381101071835,-0.574193835258484,-0.816967010498047,0.213588908314705,-0.453523874282837,-0.865272164344788,0.0997774004936218,-0.62237423658371,-0.776334166526794,-0.0987424850463867,-0.728071331977844,-0.678352415561676,0.0727996900677681,-0.675323486328125,-0.733919858932495,0.228006064891815,-0.473565071821213,-0.85073459148407,0.0635407343506813,-0.584884464740753,-0.808623969554901,0.0137386973947287,-0.57871800661087,-0.815411984920502,-0.274437427520752,0.661382853984833,-0.698037922382355,-0.150182619690895,0.751847863197327,-0.642004668712616,-0.0201705228537321,0.831588506698608,-0.555025815963745,-0.289312332868576,0.671933710575104,-0.681764960289001,-0.305923938751221,0.637794494628906,-0.706844210624695,-0.154676452279091,0.755548298358917,-0.636570453643799,0.0100610302761197,0.812793135643005,-0.582465708255768,-0.145729094743729,0.748141407966614,-0.64733874797821,0.0263028517365456,0.835032522678375,-0.549571514129639,-0.151324436068535,0.752791821956635,-0.64062887430191,-0.319290161132813,0.659136712551117,-0.680876314640045,-0.0957075208425522,0.748570740222931,-0.656111299991608,
- -0.147995576262474,0.750032544136047,-0.644630551338196,-0.116477392613888,0.79105544090271,-0.600553333759308,0.0327188037335873,0.827546656131744,-0.560442686080933,0.00490484992042184,-0.693206250667572,-0.720722675323486,0.044968269765377,-0.644208550453186,-0.763526797294617,0.194375887513161,-0.557222723960876,-0.807292282581329,-0.0217106901109219,-0.671919047832489,-0.740306377410889,-0.157075598835945,-0.746615827083588,-0.646445691585541,0.0664410665631294,-0.675412476062775,-0.734440982341766,0.19547113776207,-0.558327555656433,-0.806263864040375,0.0321551151573658,-0.624963045120239,-0.779991805553436,0.204576641321182,-0.535170793533325,-0.819597840309143,0.0682696774601936,-0.678008556365967,-0.731876790523529,-0.155473694205284,-0.748788058757782,-0.644317030906677,0.0351782105863094,-0.721994042396545,-0.691004395484924,0.214795261621475,-0.556342482566834,-0.802711665630341,0.0399677418172359,-0.636753022670746,-0.770031273365021,-0.00280002225190401,-0.624036371707916,-0.781390249729156,-0.0809548050165176,0.0803830102086067,-0.993471145629883,-0.0312492437660694,0.141610592603683,-0.989429116249084,0.12189844250679,0.216474547982216,-0.968648314476013,-0.103758573532104,0.110424794256687,-0.98845362663269,-0.249633520841599,0.00253622722811997,-0.968337059020996,-0.0144991418346763,0.0999058037996292,-0.994891345500946,0.122702866792679,0.215116947889328,-0.968849182128906,-0.0411617606878281,0.166229158639908,-0.985227704048157,0.142243087291718,0.24221608042717,-0.959738671779633,-0.0130664110183716,0.0963324829936028,-0.995263457298279,-0.248322069644928,-0.000624979787971824,-0.968677341938019,-0.0619977861642838,0.0333518274128437,-0.99751889705658,0.149678871035576,0.214873537421227,-0.965104043483734,-0.0351340398192406,0.151264324784279,-0.987868785858154,-0.0866037979722023,0.172022745013237,-0.981278836727142,-0.152620926499367,-0.214604511857033,-0.964702963829041,-0.00819297414273024,-0.147768810391426,-0.988988101482391,0.152037844061852,-0.0585280582308769,-0.986640334129334,-0.163141578435898,-0.192528307437897,-0.967635095119476,
- -0.185924604535103,-0.226577758789063,-0.956082940101624,-0.0112051777541637,-0.14038422703743,-0.990033805370331,0.172690004110336,-0.0949716046452522,-0.980386972427368,-0.00520034227520227,-0.155094638466835,-0.98788595199585,0.194194793701172,-0.0612007342278957,-0.979052126407623,-0.00896516721695662,-0.145876750349998,-0.989262163639069,-0.191326409578323,-0.189825534820557,-0.962995588779449,0.0508016273379326,-0.170139327645302,-0.98410975933075,-0.00671431981027126,-0.151389822363853,-0.988451361656189,0.0460229255259037,-0.097095787525177,-0.994210481643677,0.197674676775932,-0.0755265951156616,-0.977353811264038,-0.339483827352524,0.370137304067612,-0.86472499370575,-0.193232670426369,0.437004208564758,-0.878458023071289,-0.0262417886406183,0.508210062980652,-0.86083322763443,-0.347665220499039,0.3909672498703,-0.852216839790344,-0.370493471622467,0.356026291847229,-0.857892692089081,-0.195244014263153,0.443428426980972,-0.874786257743835,-0.00814067013561726,0.471796900033951,-0.881669700145721,-0.191231101751328,0.430621713399887,-0.882040619850159,0.0173931699246168,0.49823933839798,-0.866865038871765,-0.193737849593163,0.438616722822189,-0.877542734146118,-0.372002691030502,0.390185564756393,-0.842240631580353,-0.145370036363602,0.413767427206039,-0.898701310157776,-0.192258134484291,0.433895379304886,-0.880211114883423,-0.141994565725327,0.47960153222084,-0.865921437740326,0.0191267542541027,0.486513048410416,-0.873464047908783,0.0563532263040543,0.105281189084053,0.992844521999359,0.145092159509659,0.109421983361244,0.983348906040192,0.0471207089722157,0.10920000821352,0.992902338504791,0.29912331700325,0.124741949141026,0.946025729179382,0.144998699426651,0.111097097396851,0.983174860477448,0.0563981235027313,0.10463885217905,0.992909848690033,-0.111636221408844,0.107511632144451,0.98791629076004,0.0565294101834297,0.102760501205921,0.993098556995392,0.0451688729226589,0.0951969549059868,0.994433164596558,0.0540733113884926,0.137385219335556,0.989040732383728,-0.14870311319828,0.069577232003212,0.986431241035461,
- 0.29540753364563,0.145358353853226,0.944248676300049,-0.112080901861191,0.100894741714001,0.988563776016235,-0.155963450670242,0.110540948808193,0.98155802488327,0.0550664030015469,0.123518295586109,0.990813255310059,0.038304653018713,0.0853659436106682,0.995613098144531,0.296615272760391,0.138743221759796,0.944864928722382,-0.14735358953476,0.0621083900332451,0.987131953239441,-0.427672743797302,0.0330816954374313,0.903328061103821,-0.15260124206543,0.0914030522108078,0.984052002429962,-0.117400884628296,0.0145927211269736,0.992977499961853,0.0260879527777433,0.14199087023735,0.989524126052856,-0.152461409568787,0.0906134471297264,0.98414671421051,-0.427463322877884,0.0319867096841335,0.903466641902924,0.45328751206398,0.286917150020599,0.843924760818481,3.48503235727549e-005,0.189888656139374,0.981805622577667,0.267369478940964,0.2088802754879,0.940681993961334,0.452869534492493,0.289058744907379,0.843418180942535,0.244876340031624,0.298014312982559,0.922617495059967,-0.00226393830962479,0.198672458529472,0.980063438415527,0.225965157151222,0.308681577444077,0.923934757709503,-0.0108752204105258,0.231432065367699,0.9727903008461,-0.206524446606636,0.155126512050629,0.966066062450409,-0.00748575013130903,0.218564838171005,0.975793719291687,0.246207728981972,0.275905042886734,0.92911684513092,-0.0916040316224098,0.221343874931335,0.970883905887604,-0.0167285185307264,0.25356912612915,0.967172622680664,-0.0928195640444756,0.227756902575493,0.969283938407898,-0.219620361924171,0.193404302000999,0.956222712993622,0.246515989303589,0.270429044961929,0.930643975734711,0.14030809700489,0.272451132535934,0.95188444852829,-0.0917503237724304,0.222115099430084,0.970694065093994,-0.186397925019264,0.19217012822628,0.96349710226059,-0.235257729887962,0.24018257856369,0.941788792610168,-0.0938326269388199,0.233110815286636,0.967912614345551,-0.0927089899778366,0.227173030376434,0.969431519508362,0.141270786523819,0.226365730166435,0.963743388652802,-0.188788086175919,0.211518362164497,0.958967804908752,0.222923099994659,0.0122901611030102,0.974758565425873,
- -0.242820248007774,-0.126500025391579,0.961788058280945,0.0238246414810419,-0.0932231098413467,0.995360255241394,0.222423315048218,0.014703075401485,0.974839329719543,0.000226877818931825,-0.00320209376513958,0.999994874000549,-0.245547652244568,-0.116986252367496,0.962299644947052,-0.0207578185945749,0.00800788216292858,0.999752461910248,-0.25559389591217,-0.0810864567756653,0.963377892971039,-0.431216686964035,-0.148115575313568,0.890007972717285,-0.251647889614105,-0.0953529924154282,0.963110268115997,0.00173473497852683,-0.0244790557771921,0.99969881772995,-0.336834698915482,-0.0875944271683693,0.937480449676514,-0.337523728609085,-0.0839375481009483,0.937567293643951,-0.444284826517105,-0.109087474644184,0.889219284057617,-0.262165993452072,-0.0568208210170269,0.963348627090454,0.00210817065089941,-0.0297485124319792,0.999555289745331,-0.101476259529591,-0.0347486548125744,0.994230926036835,-0.336916416883469,-0.087162159383297,0.937491476535797,-0.42110601067543,-0.114097625017166,0.899806320667267,-0.459419369697571,-0.0605173446238041,0.886155486106873,-0.338113188743591,-0.0807878226041794,0.937631487846375,-0.337486654520035,-0.0841348394751549,0.937562942504883,-0.0997375473380089,-0.0812586024403572,0.991690218448639,-0.423750400543213,-0.0950291231274605,0.900780379772186,0.140374109148979,0.0217238869518042,0.9898601770401,0.228426396846771,0.0254377592355013,0.973228812217712,0.130544275045395,0.0255682952702045,0.9911128282547,0.382534235715866,0.0425552204251289,0.922960758209229,0.228352189064026,0.0271033141762018,0.973201274871826,0.140334963798523,0.0225093401968479,0.9898481965065,-0.0296474546194077,0.0257432032376528,0.999228954315186,0.140524014830589,0.0186975486576557,0.989900708198547,0.128656953573227,0.012014196254313,0.991616487503052,0.138563558459282,0.0564024113118649,0.988746225833893,-0.0620433017611504,-0.0108904521912336,0.998014032840729,0.379082441329956,0.0631717368960381,0.923204123973846,-0.0300301797688007,0.0203923750668764,0.999340951442719,-0.0690223872661591,0.0309870559722185,0.997133731842041,
- 0.139553546905518,0.0378490462899208,0.989490926265717,0.121386550366879,-0.0015955368289724,0.99260401725769,0.38022118806839,0.0564819574356079,0.923169374465942,-0.0607746280729771,-0.0184296313673258,0.997981369495392,-0.345851302146912,-0.0359041690826416,0.937602162361145,-0.0658674314618111,0.0119702881202102,0.997756600379944,-0.0359557867050171,-0.0641344487667084,0.997293412685394,0.107733331620693,0.0627597346901894,0.992196917533875,-0.0657299757003784,0.0111450031399727,0.997775197029114,-0.345662355422974,-0.0369658470153809,0.937630534172058,0.329153656959534,0.434253334999084,0.838499784469604,-0.13968263566494,0.330670952796936,0.933351755142212,0.130860239267349,0.359610110521317,0.923881053924561,0.328695684671402,0.436403423547745,0.837562680244446,0.10938935726881,0.444237321615219,0.889205932617188,-0.142162844538689,0.339249491691589,0.929892182350159,0.0882414281368256,0.453572124242783,0.886840343475342,-0.151313647627831,0.371023952960968,0.916212558746338,-0.327099412679672,0.290150582790375,0.899343430995941,-0.147727057337761,0.358546555042267,0.9217489361763,0.110729560256004,0.424696445465088,0.898538768291473,-0.224679812788963,0.356683909893036,0.906805157661438,-0.157393679022789,0.392247825860977,0.906294167041779,-0.226351901888847,0.364669024944305,0.903206169605255,-0.340072512626648,0.325550049543381,0.882251560688019,0.111052267253399,0.419843524694443,0.9007768034935,0.0115657988935709,0.418516278266907,0.908135652542114,-0.224883228540421,0.357652366161346,0.906373143196106,-0.320845484733582,0.322962135076523,0.890367150306702,-0.355341702699661,0.368647366762161,0.858971238136292,-0.227714493870735,0.371218830347061,0.900190353393555,-0.226173743605614,0.363815486431122,0.90359491109848,0.0129598220810294,0.377350062131882,0.925980031490326,-0.323235183954239,0.340272516012192,0.883025288581848,-0.0829610824584961,-0.43365740776062,0.897250771522522,0.00805334001779556,-0.426010310649872,0.904682576656342,-0.10107147693634,-0.430423408746719,0.896950662136078,0.0809037908911705,-0.423797756433487,0.902136504650116,
- 0.00892980303615332,-0.433188587427139,0.901259064674377,-0.0818508714437485,-0.442068576812744,0.893239080905914,-0.253153592348099,-0.426690012216568,0.868244707584381,-0.0826695635914803,-0.435874938964844,0.896202445030212,-0.102196469902992,-0.44274052977562,0.890806794166565,-0.083037294447422,-0.433076530694962,0.897524118423462,-0.267834037542343,-0.482392370700836,0.834003925323486,0.0820680931210518,-0.427190661430359,0.900429308414459,-0.253242611885071,-0.432175368070602,0.865501403808594,-0.283891022205353,-0.418215781450272,0.862845122814178,-0.0851522535085678,-0.416777580976486,0.905011475086212,-0.173823997378349,-0.520680904388428,0.835868775844574,0.0816939473152161,-0.426100671291351,0.90097975730896,-0.265648752450943,-0.490533977746964,0.8299440741539,-0.553102314472198,-0.438616454601288,0.708303213119507,-0.279788255691528,-0.435400545597076,0.855654656887054,-0.253487288951874,-0.507232546806335,0.823686420917511,-0.259816527366638,-0.356120854616165,0.897593080997467,-0.279595702886581,-0.436192989349365,0.855313956737518,-0.55312705039978,-0.438497215509415,0.708357751369476,-0.13635241985321,-0.788699269294739,-0.599467694759369,-0.0023915225174278,-0.747128188610077,-0.664675652980804,0.147358164191246,-0.670371174812317,-0.727246880531311,-0.148312240839005,-0.774285852909088,-0.615211248397827,-0.173068448901176,-0.795629620552063,-0.580534934997559,-0.0062782159075141,-0.741830408573151,-0.670558154582977,0.171647697687149,-0.694003045558929,-0.699211657047272,0.00145559501834214,-0.752314567565918,-0.658802449703217,0.197646975517273,-0.66273444890976,-0.722301006317139,-0.00343480310402811,-0.745711863040924,-0.666259706020355,-0.181062921881676,-0.772170901298523,-0.609071671962738,0.05004046484828,-0.759135007858276,-0.649006962776184,-0.000469260674435645,-0.74972677230835,-0.661747336387634,0.0400189757347107,-0.710397064685822,-0.702662467956543,0.202121332287788,-0.672415494918823,-0.712042391300201,0.0397430136799812,-0.124140962958336,-0.991468369960785,0.0820862874388695,-0.056996300816536,-0.994994103908539,
- 0.233807101845741,0.0410838797688484,-0.971414625644684,0.0129527188837528,-0.095176599919796,-0.995376110076904,-0.115417070686817,-0.206602364778519,-0.971593737602234,0.10321418941021,-0.0987017899751663,-0.989749848842621,0.234446927905083,0.0401971377432346,-0.9712975025177,0.0694184079766274,-0.032100934535265,-0.997071027755737,0.243638038635254,0.0654785484075546,-0.967653393745422,0.105009682476521,-0.102256782352924,-0.989199936389923,-0.113807342946529,-0.209668099880219,-0.971126735210419,0.0708992183208466,-0.162782028317451,-0.984111547470093,0.253841042518616,0.0385674722492695,-0.966476738452911,0.0771262273192406,-0.047238864004612,-0.995901644229889,0.0332356356084347,-0.0302221290767193,-0.998990595340729,-0.145086795091629,-0.340142667293549,-0.929113984107971,-0.00726425042375922,-0.265533268451691,-0.964074313640594,0.139505967497826,-0.165553942322731,-0.976283729076386,-0.156846106052399,-0.320463359355927,-0.93418550491333,-0.174116224050522,-0.353504240512848,-0.919085562229156,-0.0106364721432328,-0.25910422205925,-0.965790808200836,0.164892733097076,-0.200701326131821,-0.965675592422485,-0.00391219602897763,-0.271908432245255,-0.962315201759338,0.199266389012337,-0.157107904553413,-0.967269361019135,-0.00810178089886904,-0.2639379799366,-0.964505612850189,-0.182709857821465,-0.319707065820694,-0.929733574390411,0.0453153662383556,-0.283221006393433,-0.957983613014221,-0.00562673574313521,-0.268649518489838,-0.963221549987793,0.0340718030929565,-0.21294878423214,-0.976469099521637,0.203961178660393,-0.170657739043236,-0.963989496231079,-0.13167978823185,-0.439689844846725,-0.888444304466248,-0.0074488059617579,-0.356233656406403,-0.93436723947525,0.127224534749985,-0.242529392242432,-0.961765885353088,-0.145645499229431,-0.422132164239883,-0.894758105278015,-0.162533208727837,-0.457928746938705,-0.874004721641541,-0.0126720918342471,-0.348978757858276,-0.937044978141785,0.155542358756065,-0.272545486688614,-0.949487090110779,-0.00230212160386145,-0.363350957632065,-0.931649506092072,0.175704151391983,-0.232317253947258,-0.956638276576996,
- -0.0088731711730361,-0.354258447885513,-0.935105443000793,-0.175303295254707,-0.42623233795166,-0.887465476989746,0.0463946424424648,-0.368470042943954,-0.928481221199036,-0.00489042745903134,-0.359775513410568,-0.933026194572449,0.0266680829226971,-0.300808787345886,-0.953311562538147,0.181538954377174,-0.243599265813828,-0.952734589576721,-0.174003645777702,-0.0189784877002239,-0.98456221818924,-0.0456364639103413,0.0815134719014168,-0.995626866817474,0.0875785872340202,0.197295412421227,-0.9764244556427,-0.18863645195961,0.000206585449632257,-0.982047080993652,-0.203920885920525,-0.0395134761929512,-0.978189647197723,-0.0501903519034386,0.0882369205355644,-0.994834244251251,0.117657504975796,0.163740769028664,-0.979462027549744,-0.041120957583189,0.0748457610607147,-0.996347010135651,0.139046862721443,0.204845666885376,-0.968867599964142,-0.0468187630176544,0.0832591280341148,-0.995427489280701,-0.216868132352829,-0.00498198764398694,-0.976188182830811,0.00574369821697474,0.0674233511090279,-0.997708022594452,-0.0433979295194149,0.0782081037759781,-0.995992004871368,-0.0141632780432701,0.138200849294662,-0.990303039550781,0.145298942923546,0.191908895969391,-0.970597445964813,-0.0026076789945364,0.229158386588097,-0.973385632038116,0.105147264897823,0.328474760055542,-0.938641786575317,0.225454121828079,0.448170125484467,-0.865051448345184,-0.0191715899854898,0.245883524417877,-0.969109773635864,-0.0339755117893219,0.201222136616707,-0.97895622253418,0.100526392459869,0.333725094795227,-0.937295019626617,0.25885671377182,0.418599218130112,-0.870498657226563,0.109758414328098,0.323212772607803,-0.939939677715302,0.271261841058731,0.453707873821259,-0.848861694335938,0.104034118354321,0.329741626977921,-0.938321590423584,-0.0504013225436211,0.232177302241325,-0.971366763114929,0.156008571386337,0.318849325180054,-0.934877753257751,0.107410624623299,0.325894832611084,-0.939284682273865,0.127697512507439,0.384079366922379,-0.914426803588867,0.278818339109421,0.442517280578613,-0.852313816547394,0.0381411351263523,-0.824838757514954,-0.564079999923706,
- 0.0727964490652084,-0.777076661586761,-0.625181972980499,0.208084553480148,-0.678623676300049,-0.704393863677979,0.00625434517860413,-0.8111452460289,-0.584811508655548,-0.100826546549797,-0.876768052577972,-0.470225304365158,0.100508682429791,-0.798363268375397,-0.593729019165039,0.209798067808151,-0.679557263851166,-0.702984154224396,0.0562642402946949,-0.763623595237732,-0.643205523490906,0.210592061281204,-0.663062751293182,-0.718330562114716,0.102866269648075,-0.800100266933441,-0.590980648994446,-0.0986989364027977,-0.878298461437225,-0.467814654111862,0.072410561144352,-0.841339647769928,-0.535634517669678,0.224933683872223,-0.678497970104218,-0.699317812919617,0.0663274154067039,-0.771879136562347,-0.632299959659576,0.0134705398231745,-0.769802153110504,-0.638140439987183,-0.274839520454407,0.458476513624191,-0.845140516757965,-0.153043627738953,0.559116661548615,-0.814841210842133,-0.0185472425073385,0.661326587200165,-0.749868750572205,-0.290018230676651,0.473098814487457,-0.831905603408813,-0.30698236823082,0.433610945940018,-0.847197353839874,-0.157637491822243,0.564193964004517,-0.810453951358795,0.0112796649336815,0.636345028877258,-0.771322131156921,-0.148486733436584,0.554054856300354,-0.819130599498749,0.0327231101691723,0.667402267456055,-0.743978083133698,-0.154235869646072,0.560436844825745,-0.8137087225914,-0.320321559906006,0.460759937763214,-0.827704429626465,-0.0944657698273659,0.554696261882782,-0.826673030853271,-0.150795802474022,0.556622922420502,-0.816964864730835,-0.115241050720215,0.609954118728638,-0.78401243686676,0.0390890054404736,0.657485842704773,-0.752452313899994,0.0064371470361948,-0.854882538318634,-0.518781661987305,0.0454854182898998,-0.819043159484863,-0.57192599773407,0.192643716931343,-0.747769355773926,-0.635397136211395,-0.0204475875943899,-0.839234054088593,-0.543385744094849,-0.160389587283134,-0.888265609741211,-0.430417746305466,0.0669120699167252,-0.841630697250366,-0.535892486572266,0.193462654948235,-0.748373448848724,-0.634436368942261,0.0327084213495255,-0.804746210575104,-0.592717230319977,
- 0.205869391560555,-0.72770619392395,-0.654264092445374,0.0687345713376999,-0.843470811843872,-0.532759368419647,-0.158789366483688,-0.889815032482147,-0.427802741527557,0.0333276502788067,-0.876259207725525,-0.480686068534851,0.216093063354492,-0.743881583213806,-0.632411301136017,0.0404944196343422,-0.813531696796417,-0.580109119415283,-0.00455650361254811,-0.804228842258453,-0.594302475452423,-0.0872142612934113,-0.279903084039688,-0.95605856180191,-0.032787274569273,-0.2175153195858,-0.975506067276001,0.121615782380104,-0.139448076486588,-0.982732832431793,-0.109821014106274,-0.250228554010391,-0.961938261985779,-0.245913282036781,-0.338298499584198,-0.90833967924118,-0.0160477124154568,-0.258421123027802,-0.965899050235748,0.122640699148178,-0.141147628426552,-0.982362866401672,-0.042697612196207,-0.193009629845619,-0.980267405509949,0.145909115672112,-0.111218117177486,-0.983026504516602,-0.0146168889477849,-0.26188936829567,-0.964987218379974,-0.244567915797234,-0.341500371694565,-0.907504260540009,-0.0571429245173931,-0.320708870887756,-0.945452570915222,0.153344660997391,-0.138782978057861,-0.978378593921661,-0.0366696231067181,-0.207940965890884,-0.977453887462616,-0.0816343203186989,-0.184607237577438,-0.979416251182556,-0.151819095015526,-0.541778147220612,-0.826696693897247,-0.00820345524698496,-0.487472832202911,-0.873099744319916,0.149647668004036,-0.403690844774246,-0.902573704719543,-0.162859991192818,-0.52137279510498,-0.83764386177063,-0.185319676995277,-0.549398183822632,-0.814750552177429,-0.0110697848722339,-0.481228560209274,-0.876525282859802,0.171177610754967,-0.436525970697403,-0.883257210254669,-0.00533474003896117,-0.493692398071289,-0.869620263576508,0.193241566419601,-0.403504729270935,-0.89433878660202,-0.00891473703086376,-0.485926061868668,-0.873954474925995,-0.190752521157265,-0.517937481403351,-0.833879053592682,0.0466949418187141,-0.506955087184906,-0.860706746578217,-0.00677608326077461,-0.490571171045303,-0.871374785900116,0.0418840870261192,-0.442341089248657,-0.895868360996246,
- 0.196681320667267,-0.415996342897415,-0.887842059135437,-0.342914074659348,0.0400991775095463,-0.938510537147522,-0.193098589777946,0.0985822007060051,-0.976214468479156,-0.0302524566650391,0.169300779700279,-0.985100030899048,-0.350741624832153,0.063197910785675,-0.934337496757507,-0.371623158454895,0.0300443843007088,-0.927897393703461,-0.195602849125862,0.107482016086578,-0.974775433540344,-0.0125008579343557,0.128416150808334,-0.991641581058502,-0.190621763467789,0.089830182492733,-0.977544844150543,0.0200337693095207,0.160652294754982,-0.986807823181152,-0.193785414099693,0.101018063724041,-0.975829184055328,-0.373136520385742,0.0675381198525429,-0.925314962863922,-0.146582797169685,0.0696671530604362,-0.986742198467255,-0.191872522234917,0.0942436903715134,-0.976884365081787,-0.143133863806725,0.143025994300842,-0.979314208030701,0.021778330206871,0.146708711981773,-0.988940060138702,0.0635265186429024,0.449380964040756,0.891078650951386,0.148123919963837,0.449717491865158,0.880802750587463,0.0435608550906181,0.453307509422302,0.890289127826691,0.299509406089783,0.450971245765686,0.840784788131714,0.148045182228088,0.450945526361465,0.880187928676605,0.0635458156466484,0.449124574661255,0.891206502914429,-0.109048426151276,0.449059247970581,0.886822521686554,0.0637048333883286,0.447008699178696,0.89225846529007,0.0416192263364792,0.440776526927948,0.89665150642395,0.0612780675292015,0.478537648916245,0.875926196575165,-0.144465178251266,0.415231317281723,0.89817202091217,0.295788556337357,0.469386130571365,0.831977188587189,-0.109424233436584,0.443740725517273,0.889449536800385,-0.151501283049583,0.451047480106354,0.879547357559204,0.0623145252466202,0.465269029140472,0.882973194122314,0.0398216135799885,0.431123942136765,0.901413559913635,0.297029346227646,0.46333721280098,0.834920465946198,-0.143142908811569,0.408559203147888,0.90143746137619,-0.427692025899887,0.349940121173859,0.833439528942108,-0.148090392351151,0.433617800474167,0.888844668865204,-0.114409185945988,0.365363359451294,0.923807442188263,0.0271403919905424,0.483382612466812,0.874988377094269,
- -0.147958621382713,0.432947039604187,0.889193534851074,-0.427507489919662,0.349059015512466,0.833903551101685,0.454457372426987,0.566084384918213,0.687762320041656,-0.00431105913594365,0.524259865283966,0.851547420024872,0.273319512605667,0.530004978179932,0.802739918231964,0.453962594270706,0.568202137947083,0.686341226100922,0.248574540019035,0.603466510772705,0.757653534412384,-0.00656224694103003,0.531747817993164,0.846877336502075,0.233050659298897,0.615922093391418,0.752547383308411,-0.0149458106607199,0.559260904788971,0.828856945037842,-0.20550748705864,0.487527191638947,0.848577558994293,-0.0116638401523232,0.548560202121735,0.836029708385468,0.249947905540466,0.585832417011261,0.77092570066452,-0.0949254855513573,0.548570990562439,0.830697894096375,-0.020654471591115,0.577658355236053,0.816017270088196,-0.096331000328064,0.55477899312973,0.826402246952057,-0.21824087202549,0.5192950963974,0.826258778572083,0.250268429517746,0.581430673599243,0.77414733171463,0.138434588909149,0.591131031513214,0.794606804847717,-0.0950960740447044,0.549324870109558,0.830180048942566,-0.1895392537117,0.519373953342438,0.833262026309967,-0.23344974219799,0.557296812534332,0.796819746494293,-0.0974986106157303,0.559930324554443,0.82278311252594,-0.0962009578943253,0.554204881191254,0.826802611351013,0.139431938529015,0.552449703216553,0.821801722049713,-0.191932410001755,0.535905957221985,0.822171986103058,0.225725725293159,0.355742186307907,0.906915307044983,-0.239125087857246,0.221660777926445,0.945349514484406,0.0232727881520987,0.26507306098938,0.963947534561157,0.225118592381477,0.358445912599564,0.906001210212708,0.00739680137485266,0.35078838467598,0.936425566673279,-0.241908773779869,0.230870798230171,0.942432403564453,-0.0203950945287943,0.360175430774689,0.932661592960358,-0.252194195985794,0.265419572591782,0.930564641952515,-0.429971307516098,0.176438421010971,0.885434567928314,-0.248139396309853,0.251699000597,0.935454130172729,0.00889800675213337,0.330607354640961,0.943726420402527,-0.339581698179245,0.246321052312851,0.907750070095062,
- -0.340746164321899,0.251989036798477,0.905755817890167,-0.443017095327377,0.212628453969955,0.870933413505554,-0.25892361998558,0.288496434688568,0.921807110309601,0.00926967151463032,0.32557874917984,0.945469498634338,-0.102499611675739,0.318718284368515,0.94229120016098,-0.339721828699112,0.247000426054001,0.907513022422791,-0.422684162855148,0.211458384990692,0.881262421607971,-0.458143353462219,0.256972879171371,0.850922822952271,-0.341703206300735,0.25668740272522,0.904074490070343,-0.340643614530563,0.251487821340561,0.905933678150177,-0.100868470966816,0.273329496383667,0.95661723613739,-0.42521721124649,0.228572800755501,0.875753819942474,0.138536289334297,0.369826525449753,0.918714344501495,0.230381190776825,0.367190569639206,0.901163578033447,0.12769690155983,0.374574959278107,0.918361067771912,0.381501048803329,0.3660609126091,0.848797023296356,0.230291962623596,0.369177997112274,0.900373935699463,0.138543710112572,0.369701743125916,0.91876345872879,-0.0302433427423239,0.377013742923737,0.925713777542114,0.138685524463654,0.367302387952805,0.919704020023346,0.125691875815392,0.361806750297546,0.923740983009338,0.13662451505661,0.400539994239807,0.906036138534546,-0.0625888034701347,0.340156584978104,0.938283622264862,0.37803840637207,0.385012865066528,0.84193354845047,-0.0306285489350557,0.372026890516281,0.927716612815857,-0.0701155439019203,0.381062716245651,0.921886682510376,0.137544631958008,0.386116147041321,0.912138164043427,0.119871385395527,0.34905743598938,0.929403007030487,0.379228472709656,0.378614336252213,0.84429669380188,-0.0612614080309868,0.332942456007004,0.94095504283905,-0.349488079547882,0.296389728784561,0.88882577419281,-0.0670726448297501,0.364525198936462,0.928774833679199,-0.0365684926509857,0.292199462652206,0.95565801858902,0.106406331062317,0.408527970314026,0.906522274017334,-0.0669149085879326,0.36366793513298,0.92912220954895,-0.349312514066696,0.295462608337402,0.889203369617462,0.331279218196869,0.701919794082642,0.630525827407837,-0.134181007742882,0.640114665031433,0.756471216678619,
- 0.130995616316795,0.662962734699249,0.737102806568146,0.330733388662338,0.703879237174988,0.62862503528595,0.114615701138973,0.729083001613617,0.674760222434998,-0.136693313717842,0.646979749202728,0.750154733657837,0.0886462181806564,0.737502932548523,0.669500768184662,-0.145992279052734,0.672163009643555,0.72586727142334,-0.32836776971817,0.588815867900848,0.738559722900391,-0.142339661717415,0.662314414978027,0.735580742359161,0.115972645580769,0.714435338973999,0.6900235414505,-0.229604408144951,0.653386354446411,0.721365511417389,-0.152196317911148,0.688757956027985,0.708836197853088,-0.230965539813042,0.658531427383423,0.716234147548676,-0.341145426034927,0.61565625667572,0.71034300327301,0.11629992723465,0.71076637506485,0.693747460842133,0.00536116119474173,0.712319076061249,0.70183527469635,-0.229771107435226,0.654015898704529,0.72074156999588,-0.317328184843063,0.617715299129486,0.719535052776337,-0.356167793273926,0.647446751594543,0.673763573169708,-0.232084587216377,0.662770211696625,0.711949706077576,-0.230832576751709,0.658028244972229,0.716739237308502,0.00663483142852783,0.679356276988983,0.733778595924377,-0.319723576307297,0.631373822689056,0.706501185894012,-0.076905146241188,-0.0881717279553413,0.9931321144104,0.00877194385975599,-0.0789475068449974,0.996840178966522,-0.102546386420727,-0.0857081115245819,0.991028964519501,0.0824178382754326,-0.0773699432611465,0.99359005689621,0.00966054294258356,-0.0869448781013489,0.996166288852692,-0.0758252218365669,-0.0972876474261284,0.992363691329956,-0.254223734140396,-0.0926255509257317,0.962699770927429,-0.0766089707612991,-0.0906778573989868,0.99292927980423,-0.103732161223888,-0.0995800048112869,0.989607751369476,-0.077009491622448,-0.0872882306575775,0.993202149868011,-0.263246029615402,-0.155965253710747,0.952037990093231,0.0837728977203369,-0.0816560834646225,0.993133723735809,-0.254306256771088,-0.098581537604332,0.962086379528046,-0.279376715421677,-0.0855799987912178,0.956360161304474,-0.0790494978427887,-0.0698825493454933,0.994418203830719,
- -0.16941736638546,-0.189104199409485,0.967231810092926,0.0830402299761772,-0.0793380662798882,0.99338299036026,-0.261074006557465,-0.164948120713234,0.951121807098389,-0.549839019775391,-0.159738391637802,0.819854199886322,-0.275298267602921,-0.104035772383213,0.955713033676147,-0.254487097263336,-0.18334387242794,0.949537456035614,-0.254370898008347,-0.0143488449975848,0.967000305652618,-0.275101661682129,-0.104913450777531,0.955673813819885,-0.549849569797516,-0.159683078527451,0.819857776165009,-0.140453726053238,-0.949855446815491,-0.279369592666626,-6.84246770106256e-005,-0.933295428752899,-0.359109789133072,0.147571891546249,-0.883797824382782,-0.443986415863037,-0.152871161699295,-0.941669523715973,-0.299814820289612,-0.172246634960175,-0.949349880218506,-0.262804359197617,-0.00372431776486337,-0.930576384067535,-0.366078823804855,0.172091692686081,-0.896085202693939,-0.409164667129517,0.00355342891998589,-0.935925245285034,-0.352181077003479,0.199129655957222,-0.874570906162262,-0.442123681306839,-0.00101532298140228,-0.93259733915329,-0.360917180776596,-0.180222749710083,-0.937760949134827,-0.29685714840889,0.051754292100668,-0.939257442951202,-0.33928918838501,0.00172736181411892,-0.934607207775116,-0.355677425861359,0.0417236313223839,-0.912601113319397,-0.406716823577881,0.20363986492157,-0.880090832710266,-0.428918331861496,0.044235173612833,-0.46210378408432,-0.885721921920776,0.0831503048539162,-0.404511600732803,-0.910744965076447,0.235578492283821,-0.30307075381279,-0.923391103744507,0.018034664914012,-0.436825752258301,-0.899365365505219,-0.118849858641624,-0.537675201892853,-0.834733545780182,0.103859141469002,-0.440553516149521,-0.89169830083847,0.236317530274391,-0.303979247808456,-0.92290335893631,0.070738211274147,-0.382651537656784,-0.921180725097656,0.242482453584671,-0.280846416950226,-0.928615927696228,0.105620391666889,-0.443593621253967,-0.889982581138611,-0.117211870849133,-0.540446519851685,-0.833174049854279,0.0685618445277214,-0.499940127134323,-0.863341867923737,0.252717256546021,-0.305880099534988,-0.917916834354401,
- 0.0782865732908249,-0.395968437194824,-0.91492086648941,0.0308177415281534,-0.382216304540634,-0.923558831214905,-0.141951620578766,-0.645724415779114,-0.750259757041931,-0.00987792387604713,-0.590011060237885,-0.807334721088409,0.137627929449081,-0.500597536563873,-0.85466992855072,-0.154248401522636,-0.628466427326202,-0.762389242649078,-0.180762633681297,-0.655833423137665,-0.732944428920746,-0.0137545298784971,-0.583845973014832,-0.811747908592224,0.163422837853432,-0.530058622360229,-0.832064211368561,-0.00603954074904323,-0.596072137355804,-0.802908182144165,0.198808938264847,-0.488738656044006,-0.849476039409637,-0.0109006995335221,-0.588388800621033,-0.808504700660706,-0.189366579055786,-0.627769410610199,-0.755013823509216,0.0470321103930473,-0.602855503559113,-0.796462953090668,-0.00798743404448032,-0.593001663684845,-0.805161654949188,0.0357344709336758,-0.543960750102997,-0.838349401950836,0.203516930341721,-0.500312447547913,-0.841586768627167,-0.129099652171135,-0.724024772644043,-0.677585065364838,-0.00734633300453424,-0.66322648525238,-0.748382687568665,0.131300076842308,-0.562977731227875,-0.815975844860077,-0.14309948682785,-0.709801018238068,-0.689713716506958,-0.163123458623886,-0.737472832202911,-0.655381262302399,-0.0131882904097438,-0.65674102306366,-0.754000902175903,0.159840270876884,-0.586854696273804,-0.793758571147919,-0.00159727956634015,-0.669538259506226,-0.742775857448578,0.177850604057312,-0.553805530071259,-0.81343013048172,-0.00898060761392117,-0.66141951084137,-0.749962389469147,-0.17604161798954,-0.71187037229538,-0.679889678955078,0.0505142658948898,-0.671418309211731,-0.739355027675629,-0.00446606613695621,-0.666397452354431,-0.745583355426788,0.0307569149881601,-0.617321372032166,-0.786109626293182,0.183859825134277,-0.563357651233673,-0.805495977401733,-0.173019245266914,-0.364363968372345,-0.915042757987976,-0.0443624407052994,-0.274553656578064,-0.960547924041748,0.0907737389206886,-0.158221662044525,-0.983222365379334,-0.187262609601021,-0.345952451229095,-0.919374585151672,
- -0.202301383018494,-0.38193941116333,-0.901774048805237,-0.0491274930536747,-0.267695695161819,-0.962250232696533,0.120022773742676,-0.190049365162849,-0.974410474300385,-0.0396463163197041,-0.28131702542305,-0.958795547485352,0.138286650180817,-0.151293337345123,-0.978768169879913,-0.0456187576055527,-0.272747904062271,-0.961003363132477,-0.215241104364395,-0.348954558372498,-0.912086725234985,0.00747196702286601,-0.288727730512619,-0.957382082939148,-0.042015690356493,-0.277922123670578,-0.959684312343597,-0.0124348849058151,-0.220049455761909,-0.97540944814682,0.144305944442749,-0.163360029459,-0.975955605506897,-0.00520643359050155,-0.131230652332306,-0.991338193416595,0.104348987340927,-0.0248634330928326,-0.994229912757874,0.222344756126404,0.110796593129635,-0.968652129173279,-0.0212150383740664,-0.114557445049286,-0.993190169334412,-0.0340689718723297,-0.157547563314438,-0.986923635005951,0.0999566242098808,-0.0197284016758204,-0.994796216487885,0.256425470113754,0.080785945057869,-0.963182032108307,0.108714021742344,-0.0299709346145391,-0.993621170520782,0.273764252662659,0.126206964254379,-0.953480541706085,0.103282004594803,-0.023615600541234,-0.994371831417084,-0.0505343377590179,-0.125782996416092,-0.990769863128662,0.157806262373924,-0.0311611238867044,-0.98697829246521,0.106468267738819,-0.027342626824975,-0.99394017457962,0.129484757781029,0.0372399874031544,-0.990881860256195,0.281181514263153,0.114790000021458,-0.952764511108398,0.0404776819050312,-0.969950795173645,-0.239910542964935,0.0700816735625267,-0.948538601398468,-0.308809131383896,0.207535311579704,-0.883872985839844,-0.41916298866272,0.00923951994627714,-0.96454131603241,-0.263770133256912,-0.0998825579881668,-0.986336052417755,-0.131014764308929,0.0980902016162872,-0.957485020160675,-0.271294951438904,0.209533125162125,-0.884307324886322,-0.417248606681824,0.0533247143030167,-0.942186594009399,-0.3308185338974,0.212833777070045,-0.872823119163513,-0.439182817935944,0.100473307073116,-0.958148539066315,-0.268060594797134,-0.0977647379040718,-0.98691314458847,-0.12823686003685,
- 0.0711774453520775,-0.976524829864502,-0.203305259346962,0.22732450067997,-0.880755007266998,-0.415444850921631,0.0635176748037338,-0.946138918399811,-0.317469090223312,0.01220921613276,-0.945706844329834,-0.324791550636292,-0.276985436677933,0.128582313656807,-0.95223194360733,-0.151338413357735,0.236585929989815,-0.959751963615417,-0.0205384064465761,0.351694077253342,-0.935889661312103,-0.292150974273682,0.146927312016487,-0.945018589496613,-0.3064084649086,0.106280982494354,-0.945948302745819,-0.155555099248886,0.242397636175156,-0.957625210285187,0.00881725456565619,0.321092128753662,-0.947006940841675,-0.147143378853798,0.23080250620842,-0.961810290813446,0.0275005102157593,0.359223634004593,-0.932846248149872,-0.152391269803047,0.238037183880806,-0.959226369857788,-0.319947481155396,0.139652490615845,-0.937086343765259,-0.0950819700956345,0.22622774541378,-0.96942275762558,-0.149274528026581,0.233740761876106,-0.96077173948288,-0.115840896964073,0.293958634138107,-0.948772490024567,0.0338205546140671,0.347072690725327,-0.937228202819824,0.00420197611674666,-0.983558237552643,-0.180542930960655,0.045313473790884,-0.968246459960938,-0.245856672525406,0.192025750875473,-0.92418098449707,-0.330175191164017,-0.0237237587571144,-0.977425932884216,-0.209942653775215,-0.156462714076042,-0.983460247516632,-0.091243252158165,0.0668877139687538,-0.97674560546875,-0.203701019287109,0.193030878901482,-0.924456477165222,-0.328815340995789,0.0324198454618454,-0.962122559547424,-0.270683109760284,0.203009366989136,-0.912789940834045,-0.354403614997864,0.0687255635857582,-0.977367579936981,-0.200074002146721,-0.154834732413292,-0.983997762203217,-0.0881751179695129,0.0335365571081638,-0.98936253786087,-0.14155301451683,0.213250041007996,-0.920275509357452,-0.328051298856735,0.0402616485953331,-0.965939581394196,-0.255616426467896,-0.00450552254915237,-0.962578117847443,-0.27096700668335,0.128299221396446,0.975171983242035,-0.180496841669083,-0.0747116357088089,0.956067025661469,-0.283467888832092,-0.206353381276131,0.942241787910461,-0.263815611600876,
- 0.127842083573341,0.975634694099426,-0.178306981921196,-0.207971900701523,0.943605363368988,-0.257597863674164,-0.0914148464798927,0.976378798484802,-0.195775300264359,-0.118486203253269,0.975574493408203,-0.184974759817123,-0.427293717861176,0.858567893505096,-0.283339530229568,-0.214279443025589,0.948594868183136,-0.23292076587677,-0.209377780556679,0.944762647151947,-0.252159684896469,-0.319088220596313,0.914138615131378,-0.25006702542305,-0.0893091186881065,0.96998929977417,-0.22615185379982,-0.219331413507462,0.952201008796692,-0.21261927485466,-0.44080775976181,0.864803552627563,-0.240423262119293,-0.317276537418365,0.911572813987732,-0.261477768421173,-0.0893573686480522,0.970143139362335,-0.225471928715706,-0.319813996553421,0.915147840976715,-0.245404645800591,-0.214450657367706,0.949709951877594,-0.228170901536942,-0.443608433008194,0.865916609764099,-0.231084868311882,-0.452072113752365,0.856347799301147,-0.249598696827888,-0.320518732070923,0.916117191314697,-0.240825831890106,-0.320283174514771,0.915794372558594,-0.24236199259758,-0.452110439538956,0.856405913829803,-0.249329671263695,-0.213147431612015,0.943938732147217,-0.252087384462357,0.00648909248411655,-0.325964689254761,-0.945359647274017,0.0374463573098183,-0.247571930289268,-0.968145608901978,0.154316946864128,-0.12470056116581,-0.980120420455933,-0.0270919855684042,-0.304733335971832,-0.952052295207977,-0.12174066901207,-0.430766850709915,-0.894214272499084,0.067748598754406,-0.281199991703033,-0.957254767417908,0.155809447169304,-0.125906631350517,-0.979730129241943,0.0194407515227795,-0.22737929224968,-0.973612308502197,0.162654906511307,-0.0936646088957787,-0.982227325439453,0.0703348591923714,-0.284049391746521,-0.956226527690887,-0.119442656636238,-0.433227390050888,-0.893335163593292,0.0409672148525715,-0.355879426002502,-0.933633625507355,0.179046109318733,-0.117208212614059,-0.976834058761597,0.0304030813276768,-0.239691823720932,-0.970372974872589,-0.0275823827832937,-0.240080878138542,-0.970361053943634,-0.016363300383091,-0.384939670562744,-0.922796666622162,
- 0.0925571471452713,-0.272918313741684,-0.957574427127838,0.198880851268768,-0.138674348592758,-0.970162808895111,-0.0348002128303051,-0.368720710277557,-0.928888559341431,-0.0441740266978741,-0.408850938081741,-0.911531448364258,0.0855493918061256,-0.266062438488007,-0.960152208805084,0.232913792133331,-0.16414612531662,-0.958544313907623,0.0994513556361198,-0.279644817113876,-0.954938948154449,0.246973782777786,-0.116125404834747,-0.96203887462616,0.0906101539731026,-0.271015405654907,-0.958300828933716,-0.0625611990690231,-0.378578871488571,-0.923452317714691,0.146221563220024,-0.275775760412216,-0.950035274028778,0.0960271432995796,-0.276306182146072,-0.95626026391983,0.11488601565361,-0.212748751044273,-0.970329403877258,0.255568087100983,-0.127799063920975,-0.958307027816772,-0.149103462696075,-0.341221898794174,-0.928081870079041,-0.0474783331155777,-0.228750824928284,-0.972326636314392,0.0575453713536263,-0.0901671051979065,-0.994262754917145,-0.167003497481346,-0.325837582349777,-0.930558919906616,-0.172517240047455,-0.365740954875946,-0.914588093757629,-0.0535784587264061,-0.222943633794785,-0.973357856273651,0.0934650450944901,-0.116058804094791,-0.988835096359253,-0.041440837085247,-0.234478905797005,-0.971237540245056,0.104332014918327,-0.070165142416954,-0.992064356803894,-0.0490931160748005,-0.227215468883514,-0.972606301307678,-0.192459091544151,-0.335311859846115,-0.922239363193512,0.0124023193493485,-0.229478508234024,-0.973234713077545,-0.0444772951304913,-0.231600448489189,-0.971793711185455,-0.0221259444952011,-0.163768067955971,-0.986250698566437,0.11343727260828,-0.0819606482982636,-0.990158796310425,-0.178810149431229,0.612102806568146,-0.77029687166214,-0.0847164243459702,0.707058310508728,-0.702062427997589,0.0276370588690043,0.806229889392853,-0.590956509113312,-0.198498114943504,0.622482538223267,-0.757042944431305,-0.207400515675545,0.585156977176666,-0.783949196338654,-0.0913270935416222,0.711073517799377,-0.697161257266998,0.063337005674839,0.789195775985718,-0.610867023468018,-0.0781450495123863,0.703012585639954,-0.706871032714844,
- 0.0784057602286339,0.816708743572235,-0.571698665618896,-0.0864854753017426,0.708138167858124,-0.700757145881653,-0.227213010191917,0.606456637382507,-0.761961042881012,-0.0184197053313255,0.714672207832336,-0.699217021465302,-0.0814509615302086,0.705054640769959,-0.704459846019745,-0.0528348088264465,0.757758319377899,-0.650392830371857,0.087403915822506,0.809333443641663,-0.580809712409973,-0.092317596077919,0.255574256181717,-0.962371706962585,-0.0673771500587463,0.328182250261307,-0.942208409309387,0.0537258610129356,0.443002492189407,-0.894909143447876,-0.125443652272224,0.275666415691376,-0.953033030033112,-0.216229572892189,0.135704159736633,-0.966865658760071,-0.0367669500410557,0.29477122426033,-0.954860270023346,0.0552828013896942,0.441781729459763,-0.895417749881744,-0.0854819566011429,0.347676992416382,-0.933709561824799,0.0682736560702324,0.473754584789276,-0.878006458282471,-0.0341506451368332,0.291889429092407,-0.955842196941376,-0.213903069496155,0.133219912648201,-0.96772825717926,-0.0569366551935673,0.222988784313202,-0.973156929016113,0.0844871699810028,0.451762586832047,-0.888128638267517,-0.0744543895125389,0.335826575756073,-0.93897670507431,-0.12589219212532,0.338237345218658,-0.932602107524872,0.295267879962921,0.464661210775375,-0.834809601306915,0.0897961333394051,0.394879281520844,-0.914334177970886,-0.0362197905778885,0.417224049568176,-0.908081591129303,0.294870167970657,0.466811627149582,-0.833749651908875,-0.0376344658434391,0.423208683729172,-0.905250251293182,0.0795315951108933,0.477950394153595,-0.874778926372528,0.0494634807109833,0.48836612701416,-0.871235847473145,-0.277866393327713,0.371248185634613,-0.885982513427734,-0.0432238653302193,0.446735024452209,-0.893621563911438,-0.0389299616217613,0.428678512573242,-0.902617990970612,-0.156814455986023,0.423608779907227,-0.892168641090393,0.0805492550134659,0.450769305229187,-0.888998806476593,-0.0478181429207325,0.465928971767426,-0.88352906703949,-0.290393054485321,0.410190224647522,-0.864532172679901,-0.155233487486839,0.410569876432419,-0.898518204689026,
- 0.0805236622691154,0.451484352350235,-0.888638198375702,-0.157303333282471,0.427678883075714,-0.890138447284698,-0.0492817126214504,0.4502974152565,-0.891517579555511,-0.292939186096191,0.418238639831543,-0.859804093837738,-0.293735504150391,0.402207255363464,-0.867149829864502,-0.157576337456703,0.429959684610367,-0.888990640640259,-0.157491698861122,0.429251968860626,-0.889347553253174,-0.293720304965973,0.402074992656708,-0.867216408252716,-0.0490103326737881,0.428042382001877,-0.902428805828094,-0.0475927256047726,-0.930127143859863,-0.364140689373016,-0.00258530280552804,-0.901564359664917,-0.432637304067612,0.131705671548843,-0.84616357088089,-0.516392111778259,-0.0763118267059326,-0.918284893035889,-0.388496309518814,-0.196889966726303,-0.944050073623657,-0.264582365751266,0.0216687135398388,-0.918128490447998,-0.395689994096756,0.133003354072571,-0.846812844276428,-0.51499330997467,-0.0169280972331762,-0.890822052955627,-0.454036951065063,0.143066734075546,-0.830277442932129,-0.538675487041473,0.0237460732460022,-0.919453620910645,-0.392481058835983,-0.195018634200096,-0.945218563079834,-0.261781990528107,-0.0201580487191677,-0.944790422916412,-0.327054589986801,0.155076935887337,-0.84272974729538,-0.515516877174377,-0.0081906309351325,-0.897449910640717,-0.441040307283401,-0.0675566717982292,-0.892302632331848,-0.44635421037674,-0.0810082629323006,-0.948168098926544,-0.307270050048828,0.0392491482198238,-0.918009400367737,-0.394611537456512,0.173368349671364,-0.851942121982574,-0.494103223085403,-0.095566913485527,-0.940846621990204,-0.325076371431351,-0.117927424609661,-0.952195644378662,-0.281809568405151,0.0338427945971489,-0.915019869804382,-0.401986718177795,0.202882409095764,-0.863060235977173,-0.462564378976822,0.0445844866335392,-0.920878231525421,-0.38729253411293,0.226810485124588,-0.836256325244904,-0.499231725931168,0.0377664007246494,-0.917197823524475,-0.396638453006744,-0.130851104855537,-0.939951837062836,-0.315227776765823,0.0959844142198563,-0.91876095533371,-0.382969051599503,0.0419108830392361,-0.919450759887695,-0.390965223312378,
- 0.0760651379823685,-0.890752494335175,-0.448078244924545,0.233293458819389,-0.841807067394257,-0.486759692430496,-0.203871101140976,-0.910170018672943,-0.360592782497406,-0.0913068130612373,-0.885560095310211,-0.45546281337738,0.0442278236150742,-0.823309540748596,-0.565866827964783,-0.219190418720245,-0.900120258331299,-0.376482546329498,-0.233498245477676,-0.91291081905365,-0.334772229194641,-0.0960465222597122,-0.882170915603638,-0.461030960083008,0.0749980732798576,-0.839515089988709,-0.538135409355164,-0.086562268435955,-0.888891100883484,-0.449866414070129,0.0877739489078522,-0.817223489284515,-0.569597721099854,-0.0925016701221466,-0.884711623191834,-0.456868708133698,-0.247887805104256,-0.897194504737854,-0.365504682064056,-0.0306591670960188,-0.892446041107178,-0.450111210346222,-0.0889525860548019,-0.887220621109009,-0.452688694000244,-0.0532568953931332,-0.857134342193604,-0.512332379817963,0.0945213958621025,-0.824003219604492,-0.558645129203796,-0.0684372335672379,-0.181176245212555,-0.981066524982452,0.0435903631150723,-0.0773328393697739,-0.996051967144012,0.165146052837372,0.0520509108901024,-0.984894752502441,-0.0857847705483437,-0.162470430135727,-0.982977271080017,-0.101991266012192,-0.206793084740639,-0.973054170608521,0.0375083461403847,-0.0699938461184502,-0.99684202671051,0.197160735726357,0.0221590511500835,-0.980120718479156,0.0495898053050041,-0.0845699682831764,-0.995182812213898,0.216972529888153,0.068962536752224,-0.973738729953766,0.0419148951768875,-0.0753113254904747,-0.996278762817383,-0.117872714996338,-0.174014613032341,-0.977662980556488,0.107139579951763,-0.0809562355279922,-0.990942597389221,0.0465922690927982,-0.0809543132781982,-0.995628237724304,0.0807221531867981,-0.0120704974979162,-0.996663570404053,0.224533274769783,0.0563598833978176,-0.972835242748261,-0.0446620211005211,-0.564306795597076,-0.824356198310852,-0.00898125674575567,-0.506126284599304,-0.862412631511688,0.130384936928749,-0.410759508609772,-0.902372658252716,-0.0749322324991226,-0.540017127990723,-0.838311791419983,
- -0.193810701370239,-0.632250249385834,-0.750131368637085,0.0156641509383917,-0.541015386581421,-0.840866804122925,0.131612628698349,-0.412002980709076,-0.901627242565155,-0.0236180946230888,-0.484843194484711,-0.874282121658325,0.147278934717178,-0.381303757429123,-0.912642538547516,0.0177692249417305,-0.543940365314484,-0.838935732841492,-0.191943168640137,-0.634757101535797,-0.748492658138275,-0.017903059720993,-0.597523093223572,-0.801651835441589,0.15946438908577,-0.405007839202881,-0.900299787521362,-0.0147062512114644,-0.497851639986038,-0.867137491703033,-0.0657838582992554,-0.486990183591843,-0.870926558971405,0.295121133327484,0.90279221534729,0.312841773033142,0.0902304723858833,0.968787312507629,0.230888813734055,-0.0393345579504967,0.96685791015625,0.25226679444313,0.294778943061829,0.902200043201447,0.314865857362747,-0.0407666005194187,0.965093731880188,0.258712887763977,0.0793014913797379,0.944542407989502,0.318670898675919,0.0504360310733318,0.942747175693512,0.329672455787659,-0.278145611286163,0.936816811561584,0.212153807282448,-0.0464129038155079,0.957672357559204,0.284094244241714,-0.0420872494578362,0.963424503803253,0.264654397964478,-0.15410740673542,0.95277339220047,0.261675029993057,0.0803323686122894,0.953794002532959,0.289523273706436,-0.0510487146675587,0.951017916202545,0.304891616106033,-0.290309906005859,0.92276656627655,0.253420740365982,-0.152722224593163,0.956153333187103,0.249893501400948,0.0803046897053719,0.953548491001129,0.290338516235352,-0.154640376567841,0.951418340206146,0.266251176595688,-0.0519853457808495,0.956008553504944,0.28869566321373,-0.292892247438431,0.91944020986557,0.262381047010422,-0.298149526119232,0.922592580318451,0.244806051254272,-0.155123263597488,0.950163424015045,0.270418673753738,-0.15496090054512,0.950588345527649,0.269015073776245,-0.298116713762283,0.922683417797089,0.244502991437912,-0.0517442710697651,0.962987780570984,0.26453223824501,-0.0490546189248562,0.195441082119942,-0.979487836360931,-0.0047847693786025,0.268228203058243,-0.963343501091003,
- 0.132394462823868,0.361782133579254,-0.922813832759857,-0.0778824761509895,0.221567392349243,-0.97203004360199,-0.195252284407616,0.0977035909891129,-0.975874245166779,0.0194678455591202,0.228939563035965,-0.973245978355408,0.133397355675697,0.360624879598618,-0.923122346401215,-0.0191640015691519,0.291247844696045,-0.956455767154694,0.142256453633308,0.385956674814224,-0.911482632160187,0.0215454213321209,0.225546896457672,-0.973994016647339,-0.193415626883507,0.0948185622692108,-0.976524472236633,-0.0159802213311195,0.159008964896202,-0.987147808074951,0.154249042272568,0.361044764518738,-0.919703185558319,-0.0104170562699437,0.277269244194031,-0.96073579788208,-0.063370443880558,0.286533564329147,-0.955972135066986,-0.0780773237347603,0.14086551964283,-0.98694521188736,0.0439108051359653,0.232268050312996,-0.971660137176514,0.174795299768448,0.340006023645401,-0.924035966396332,-0.0920372605323792,0.159021958708763,-0.982975661754608,-0.119012422859669,0.112277157604694,-0.986524164676666,0.0389787368476391,0.239412888884544,-0.970135092735291,0.204516738653183,0.306842386722565,-0.929527103900909,0.0487662144005299,0.225211814045906,-0.97308874130249,0.224414050579071,0.345177322626114,-0.911312758922577,0.0425937287509441,0.23417828977108,-0.971260190010071,-0.131769686937332,0.146192491054535,-0.980440974235535,0.0959027707576752,0.217862278223038,-0.971256256103516,0.0463136397302151,0.228778839111328,-0.972376108169556,0.0759812220931053,0.286363244056702,-0.955103635787964,0.230708777904511,0.332451552152634,-0.914466857910156,-0.205306977033615,0.195615455508232,-0.958949267864227,-0.0861148610711098,0.298524886369705,-0.950508892536163,0.0415142811834812,0.412861824035645,-0.90984708070755,-0.220733776688576,0.213110700249672,-0.951767027378082,-0.235333412885666,0.170345678925514,-0.956870198249817,-0.0906935259699821,0.304402261972427,-0.948216199874878,0.0732500180602074,0.382067412137985,-0.921226859092712,-0.0815583169460297,0.292664557695389,-0.952730655670166,0.0901790708303452,0.420355647802353,-0.902867138385773,
- -0.08727066218853,0.300009578466415,-0.949935853481293,-0.249693796038628,0.203153878450394,-0.946774244308472,-0.0276627037674189,0.289510309696198,-0.956775188446045,-0.0838631838560104,0.2956303358078,-0.951614260673523,-0.0502540990710258,0.356433898210526,-0.932968080043793,0.0971013903617859,0.407968372106552,-0.907817780971527,-0.0668859779834747,0.935301065444946,-0.347473949193954,0.0431221984326839,0.967432498931885,-0.249429032206535,0.167460948228836,0.978892624378204,-0.117158323526382,-0.0842734128236771,0.940440535545349,-0.329347223043442,-0.0980547592043877,0.923364281654358,-0.371192544698715,0.0375140719115734,0.969336271286011,-0.242857679724693,0.19945128262043,0.969006896018982,-0.145756676793098,0.0486725494265556,0.96547257900238,-0.255917340517044,0.215272471308708,0.971171677112579,-0.102389335632324,0.041586134582758,0.967961609363556,-0.247630685567856,-0.114078894257545,0.933774530887604,-0.339191854000092,0.1010562479496,0.961985468864441,-0.253715664148331,0.0459134094417095,0.966456413269043,-0.252693861722946,0.074738398194313,0.979390144348145,-0.187641084194183,0.222785487771034,0.968116402626038,-0.114530630409718,-0.0446201153099537,0.714026749134064,-0.698695123195648,-0.00450322823598981,0.76300972700119,-0.646371304988861,0.131702408194542,0.817339301109314,-0.560901880264282,-0.0745878741145134,0.73185396194458,-0.677367269992828,-0.194298893213272,0.628596186637878,-0.75307023525238,0.0198127720504999,0.736277043819427,-0.676390111446381,0.132172375917435,0.816971659660339,-0.56132698059082,-0.0189103484153748,0.778059184551239,-0.627906322479248,0.148051545023918,0.832478642463684,-0.533910155296326,0.0218913368880749,0.733914196491241,-0.678889334201813,-0.192439496517181,0.626559436321259,-0.755241930484772,-0.0133806755766273,0.686847746372223,-0.726678192615509,0.160132765769959,0.816557586193085,-0.554609060287476,-0.0101443370804191,0.768972337245941,-0.639201581478119,-0.0612701922655106,0.774369478225708,-0.629760146141052,0.0352034792304039,-0.233710631728172,0.971668720245361,
- -0.137569636106491,-0.274308383464813,0.951750755310059,-0.0679084435105324,-0.254142075777054,0.964779913425446,-0.136595249176025,-0.277171283960342,0.951061427593231,0.0364860519766808,-0.238678008317947,0.970413088798523,-0.14713828265667,-0.280672460794449,0.9484583735466,-0.0669430941343308,-0.257037103176117,0.964080154895782,0.257980823516846,-0.147832706570625,0.95477294921875,0.0295927226543427,-0.211948677897453,0.976832628250122,0.0354399383068085,-0.234626740217209,0.971439301967621,-0.180029138922691,-0.282051384449005,0.942356884479523,-0.149088859558105,-0.271595507860184,0.950793564319611,0.258188217878342,-0.14859613776207,0.954598367214203,0.133080497384071,-0.195143520832062,0.971703946590424,0.0296820551156998,-0.212295591831207,0.976754605770111,-0.175504326820374,-0.299805164337158,0.937718033790588,0.039880245923996,-0.251810431480408,0.966954529285431,0.13217668235302,-0.19243486225605,0.972367286682129,0.132148936390877,-0.192351758480072,0.972387492656708,0.257424980401993,-0.145789101719856,0.955237090587616,0.294006615877151,-0.132758304476738,0.946538627147675,0.134571671485901,-0.199616327881813,0.970589399337769,-0.193766921758652,-0.309331089258194,0.931004106998444,-0.176961302757263,-0.294127017259598,0.939241290092468,0.341739892959595,-0.110571682453156,0.93326723575592,0.132753729820251,-0.194164022803307,0.971944868564606,0.294469445943832,-0.134254559874535,0.946183621883392,-0.207197517156601,-0.287337452173233,0.935150563716888,0.133041471242905,-0.195026576519012,0.971732795238495,0.115236587822437,-0.142213985323906,0.98310512304306,0.158508643507957,-0.230009123682976,0.9601930975914,0.132776916027069,-0.194233506917953,0.9719278216362,0.34532767534256,-0.119579903781414,0.93083268404007,0.836762428283691,-0.369909763336182,0.403726845979691,0.633643805980682,-0.585924029350281,0.505161941051483,0.542413115501404,-0.679386973381042,0.494187593460083,0.63676130771637,-0.601748108863831,0.482114344835281,0.202026560902596,-0.811627984046936,0.548128843307495,0.517296254634857,-0.641767621040344,0.566161572933197,
- 0.853518724441528,-0.444137394428253,0.272484511137009,0.965568482875824,-0.201831012964249,0.164139583706856,0.643783748149872,-0.65449047088623,0.396465331315994,0.139534160494804,-0.776523411273956,0.614444136619568,0.176705032587051,-0.763192713260651,0.621540188789368,0.625138401985168,-0.549932837486267,0.553873538970947,0.612213969230652,-0.505198538303375,0.608250379562378,0.946228623390198,-0.0594372600317001,0.317991554737091,0.546483159065247,-0.703550934791565,0.454282283782959,0.637594938278198,-0.606383323669434,0.475154638290405,0.494186967611313,-0.623386144638062,0.605944693088531,0.155670240521431,-0.804362773895264,0.573382318019867,0.88388580083847,-0.280634135007858,0.374153167009354,0.542283952236176,-0.696928918361664,0.469274133443832,0.955608367919922,-0.0981900691986084,0.277797400951386,0.521152257919312,-0.664179921150208,0.535971462726593,0.15574748814106,-0.846982300281525,0.508294939994812,0.178408861160278,-0.840984702110291,0.510798394680023,0.581239759922028,-0.761153399944305,0.287760108709335,0.916550815105438,-0.339424639940262,0.211484014987946,0.682380676269531,-0.683443605899811,0.259348183870316,0.252328455448151,-0.916757524013519,0.309654980897903,0.575852692127228,-0.751706898212433,0.321450501680374,0.655775606632233,-0.660667359828949,0.365344971418381,-0.117246113717556,-0.923692941665649,0.364752888679504,0.00168437499087304,-0.933106482028961,0.359596282243729,0.0334553234279156,-0.939731121063232,0.340273678302765,-0.120255619287491,-0.930308818817139,0.346502602100372,-0.185081526637077,-0.91812652349472,0.350412249565125,0.00168188149109483,-0.933054864406586,0.359730452299118,0.0417270958423615,-0.925294280052185,0.376947373151779,0.00176578667014837,-0.934767961502075,0.355254530906677,0.192868128418922,-0.91749370098114,0.347860872745514,0.00166811759117991,-0.932771861553192,0.360463380813599,-0.185100421309471,-0.917808771133423,0.351233422756195,-0.0906800851225853,-0.92365163564682,0.37235027551651,0.193243101239204,-0.915209472179413,0.353622227907181,0.0017637643031776,-0.934727311134338,0.355361491441727,
- 0.0914704725146294,-0.934809684753418,0.343167632818222,0.0878145098686218,-0.924057722091675,0.372029542922974,0.00162763288244605,-0.93193793296814,0.362614452838898,-0.0867016091942787,-0.932908535003662,0.349520653486252,-0.117745354771614,0.683216512203217,0.720660269260406,0.0115377986803651,0.68050754070282,0.732650220394135,0.0441447645425797,0.663669347763062,0.746722340583801,-0.120911858975887,0.66885507106781,0.733493864536285,-0.177582010626793,0.668582260608673,0.722123503684998,0.0115320524200797,0.68090033531189,0.73228532075882,0.0526418872177601,0.691980063915253,0.719994783401489,0.0115947406738997,0.676592886447906,0.736266016960144,0.198539808392525,0.661770045757294,0.722940146923065,0.0115231033414602,0.681511044502258,0.731717109680176,-0.177599757909775,0.669319808483124,0.721435606479645,-0.0924348384141922,0.688647925853729,0.71917998790741,0.198893994092941,0.665866792201996,0.719070613384247,0.0115958703681827,0.676514744758606,0.736337780952454,0.100392065942287,0.665394067764282,0.739710867404938,0.0974239632487297,0.686962842941284,0.720132410526276,0.0115072829648852,0.682588398456573,0.730712473392487,-0.0884943380951881,0.670268595218658,0.736823499202728,-0.11118595302105,0.721479117870331,-0.683451235294342,0.0172996874898672,0.732352793216705,-0.680705606937408,0.0502988547086716,0.746049821376801,-0.663987696170807,-0.114251248538494,0.734432756900787,-0.668995678424835,-0.171956986188889,0.723493993282318,-0.668571054935455,0.0172953568398952,0.73216837644577,-0.680904090404511,0.0586321130394936,0.71908962726593,-0.692439436912537,0.0173813719302416,0.735812723636627,-0.676962018013,0.20422574877739,0.720963716506958,-0.66219574213028,0.0172819290310144,0.731599688529968,-0.681515395641327,-0.171980336308479,0.72280365228653,-0.669311285018921,-0.0866298079490662,0.719975352287292,-0.688571631908417,0.204553216695786,0.717023849487305,-0.66635936498642,0.0173811372369528,0.735803544521332,-0.676971971988678,0.112761348485947,0.738022804260254,-0.665287435054779,0.109316498041153,0.71761828660965,-0.687803685665131,
- 0.017249695956707,0.730236947536469,-0.682976186275482,-0.0826319456100464,0.737235426902771,-0.670563876628876,-0.112669095396996,0.752300262451172,0.649114787578583,0.0103995129466057,0.750869154930115,0.660369098186493,0.0434135906398296,0.736017525196075,0.675568997859955,-0.115885891020298,0.739153683185577,0.663492500782013,-0.184831514954567,0.736721813678741,0.650444686412811,0.0103935291990638,0.751203238964081,0.65998911857605,0.0515168607234955,0.760836958885193,0.646894991397858,0.0104675525799394,0.7470463514328,0.664689540863037,0.194320902228355,0.731823563575745,0.653202652931213,0.010382691398263,0.751807510852814,0.659300863742828,-0.184847727417946,0.737390041351318,0.649682521820068,-0.086136668920517,0.758704900741577,0.64571475982666,0.194707229733467,0.73567795753479,0.64874267578125,0.0104692224413157,0.746951937675476,0.664795577526093,0.0957413613796234,0.735988736152649,0.670189678668976,0.0925086811184883,0.756377696990967,0.647560775279999,0.0103638311848044,0.752856373786926,0.658103287220001,-0.0820902213454247,0.74207079410553,0.665275990962982,-0.113295055925846,0.81392902135849,-0.569810509681702,0.0194783937186003,0.824584662914276,-0.565403163433075,0.0538441576063633,0.835947513580322,-0.546161651611328,-0.116233699023724,0.824387609958649,-0.553962767124176,-0.172821223735809,0.813771188259125,-0.55489593744278,0.0194778759032488,0.824561655521393,-0.565436720848084,0.0621837452054024,0.813537657260895,-0.578177869319916,0.0195425115525723,0.82730096578598,-0.561418890953064,0.204064428806305,0.810813784599304,-0.548578798770905,0.019467368721962,0.824116587638855,-0.566085577011108,-0.172833919525146,0.81330281496048,-0.555578052997589,-0.0818320587277412,0.813430368900299,-0.57587718963623,0.204419612884521,0.807431101799011,-0.553414523601532,0.0195403266698122,0.827209234237671,-0.561554133892059,0.114886283874512,0.827850818634033,-0.54905754327774,0.111300826072693,0.810611963272095,-0.574909031391144,0.0194364339113235,0.822808861732483,-0.567985713481903,-0.0779483318328857,0.827684283256531,-0.555754244327545,
- -0.113290794193745,0.813913702964783,-0.569833040237427,0.0194780416786671,0.824569761753082,-0.565424859523773,0.0538500137627125,0.835932314395905,-0.546184301376343,-0.116230435669422,0.824376046657562,-0.553980648517609,-0.172821506857872,0.813759744167328,-0.554912447929382,0.019477603957057,0.824550151824951,-0.56545352935791,0.0621990412473679,0.81349515914917,-0.578236043453217,0.0195414386689663,0.827255487442017,-0.561485946178436,0.204069182276726,0.810769021511078,-0.548643171787262,0.0194671582430601,0.824107646942139,-0.566098630428314,-0.172834157943726,0.813294053077698,-0.555590808391571,-0.0818340331315994,0.813422918319702,-0.575887441635132,0.204423233866692,0.807396173477173,-0.55346417427063,0.0195394996553659,0.827174186706543,-0.561605989933014,0.114879339933395,0.827817738056183,-0.549109041690826,0.111304514110088,0.810629844665527,-0.574883103370667,0.0194368623197079,0.822826981544495,-0.567959666252136,-0.0779434069991112,0.827701926231384,-0.555728673934937,-0.117594353854656,-0.991184294223785,0.0610344707965851,0.00702967774122953,-0.99857497215271,0.0529038868844509,0.03888825699687,-0.998736977577209,0.0318152494728565,-0.120681881904602,-0.991833090782166,0.0412680953741074,-0.189828440546989,-0.980623781681061,0.0483962669968605,0.00703417090699077,-0.99858945608139,0.0526274405419827,0.0470107793807983,-0.9963738322258,0.0709169507026672,0.00709654809907079,-0.998785316944122,0.0487599335610867,0.191269770264626,-0.980391561985016,0.0474152937531471,0.00702274264767766,-0.998552083969116,0.0533348843455315,-0.189846724271774,-0.980578184127808,0.0492412447929382,-0.0914925560355186,-0.993462800979614,0.0682700350880623,0.191565543413162,-0.980043351650238,0.0530816242098808,0.00709078460931778,-0.998767912387848,0.0491160862147808,0.0904613211750984,-0.995237648487091,0.0363149754703045,0.0866076797246933,-0.993942975997925,0.0676498860120773,0.006976711563766,-0.998396456241608,0.0561772845685482,-0.0870989114046097,-0.995293796062469,0.0424738861620426,-0.105896905064583,0.820051372051239,-0.562406957149506,
- 0.019600423052907,0.829750597476959,-0.557790279388428,0.051948256790638,0.840825319290161,-0.538808107376099,-0.109263360500336,0.830981135368347,-0.545464813709259,-0.172676146030426,0.818798899650574,-0.547495484352112,0.0195985250174999,0.829669117927551,-0.557911336421967,0.060353260487318,0.818591117858887,-0.571197092533112,0.0196617096662521,0.83234703540802,-0.55390602350235,0.205656930804253,0.815273344516754,-0.541326940059662,0.0195882003754377,0.829231798648834,-0.558561503887177,-0.172690883278847,0.818311989307404,-0.548218369483948,-0.0849725753068924,0.818257689476013,-0.568536758422852,0.205920949578285,0.812366127967834,-0.545580506324768,0.0196601618081331,0.832282185554504,-0.554003417491913,0.105196334421635,0.834440290927887,-0.540964961051941,0.101538464426994,0.817284107208252,-0.56721830368042,0.0195581521838903,0.827961623668671,-0.560443639755249,-0.0806868299841881,0.83311516046524,-0.547182559967041,0.118220649659634,-0.142114087939262,-0.982765316963196,0.117793299257755,-0.174122273921967,-0.977653503417969,0.336856305599213,-0.104176960885525,-0.935775101184845,0.120143584907055,-0.154788970947266,-0.980615079402924,-0.258134454488754,-0.193617835640907,-0.946508705615997,0.102947011590004,-0.114592052996159,-0.988064050674438,0.337025582790375,-0.1051155179739,-0.93560916185379,0.289631068706512,-0.117004334926605,-0.949959933757782,0.119102232158184,-0.14791165292263,-0.981802821159363,-0.249323859810829,-0.218654006719589,-0.943413078784943,0.120991103351116,-0.160409674048424,-0.979607105255127,-0.200309723615646,-0.205354318022728,-0.957969546318054,0.0127700548619032,-0.169858425855637,-0.985385835170746,0.119135029613972,-0.148127764463425,-0.981766283512115,0.289686411619186,-0.117433726787567,-0.949890077114105,0.0136209083721042,-0.174839094281197,-0.984502792358398,-0.199133768677711,-0.219223275780678,-0.955137133598328,0.121755242347717,-0.165495991706848,-0.978665888309479,0.0127989118918777,-0.170027375221252,-0.985356211662292,0.289693355560303,-0.117487534880638,-0.949881374835968,
- 0.224597692489624,-0.130341723561287,-0.965695023536682,-0.201509922742844,-0.19063563644886,-0.960755825042725,0.0132714211940765,-0.172793582081795,-0.98486864566803,-0.191846281290054,-0.197194114327431,-0.961410164833069,-0.12660551071167,-0.233656823635101,-0.964041352272034,0.012817557901144,-0.170136585831642,-0.985337138175964,0.224645286798477,-0.130623072385788,-0.965645968914032,0.0131659097969532,-0.172176018357277,-0.984978199005127,-0.20369578897953,-0.200739845633507,-0.958233535289764,-0.1909299492836,-0.204318284988403,-0.960104167461395,-0.202832713723183,-0.203541427850723,-0.957825541496277,0.0125860553234816,-0.168781161308289,-0.985573291778564,-0.141573771834373,-0.186576873064041,-0.972186148166656,0.205365926027298,0.401482105255127,-0.892545223236084,-0.0724581554532051,0.369586437940598,-0.926366925239563,0.0228923503309488,0.386646866798401,-0.921943664550781,0.0230802781879902,0.385311812162399,-0.922497749328613,-0.0738890394568443,0.377873957157135,-0.922903954982758,-0.256113499403,0.338948041200638,-0.905273497104645,0.0190344396978617,0.413798809051514,-0.910169363021851,0.329734951257706,0.424388319253922,-0.843308627605438,0.201513439416885,0.425986230373383,-0.882002294063568,-0.231202244758606,0.34807887673378,-0.908507883548737,0.0223859921097755,0.390238553285599,-0.920441627502441,-0.256746500730515,0.342731982469559,-0.903668105602264,0.327207684516907,0.450806528329849,-0.830486953258514,0.0157536901533604,0.436507076025009,-0.899562895298004,0.11988203972578,0.435212939977646,-0.892310500144959,0.115621984004974,0.457241982221603,-0.881794393062592,0.0169210731983185,0.42846691608429,-0.903398990631104,-0.241682425141335,0.393457233905792,-0.887006759643555,0.121448889374733,0.426945239305496,-0.896084785461426,0.396957248449326,0.436314165592194,-0.807499170303345,0.32800954580307,0.442781329154968,-0.834478676319122,-0.150332242250443,0.514064252376556,-0.844475209712982,0.0958098322153091,0.551822602748871,-0.828439652919769,-0.2604139149189,0.479571461677551,-0.837971389293671,
- 0.396831780672073,0.437569081783295,-0.806881725788116,0.122300021350384,0.422415763139725,-0.898113369941711,0.232226774096489,0.425777673721313,-0.874519348144531,0.0662951618432999,0.887204706668854,-0.456588119268417,0.00123888719826937,0.867686331272125,-0.497110575437546,-0.292334258556366,0.795509159564972,-0.530759930610657,0.0826907753944397,0.167940109968185,0.982322931289673,0.300806641578674,0.18374827504158,0.935816168785095,0.0916438028216362,0.135598435997963,0.986516356468201,-0.290171563625336,0.110266081988811,0.950600802898407,0.0849383398890495,0.150198146700859,0.985000491142273,0.0778933092951775,0.195507019758224,0.977604031562805,0.300812005996704,0.183716043829918,0.935820817947388,0.0835708677768707,0.161024749279022,0.983405768871307,0.267694473266602,0.178430378437042,0.946838021278381,0.085550919175148,0.145315602421761,0.985679686069489,-0.2821004986763,0.0858033522963524,0.955540239810944,-0.231101527810097,0.102755323052406,0.96748822927475,-0.0291392561048269,0.141156896948814,0.989558398723602,0.267740994691849,0.178014293313026,0.946903228759766,0.0836058109998703,0.160749360918999,0.983447849750519,-0.230129554867744,0.0904070362448692,0.96895158290863,-0.0281781814992428,0.134735733270645,0.990480840206146,0.0863172337412834,0.139178782701492,0.986498177051544,0.200049802660942,0.171676069498062,0.964628219604492,0.267750322818756,0.177930593490601,0.946916282176971,-0.0291098300367594,0.140960246324539,0.989587187767029,-0.0285914745181799,0.137496694922447,0.990089476108551,-0.232073783874512,0.115574061870575,0.965807616710663,-0.22839829325676,0.109664157032967,0.967371702194214,-0.16338138282299,0.0758916810154915,0.983639657497406,0.200139731168747,0.171065494418144,0.964717924594879,-0.0290552042424679,0.140595316886902,0.989640831947327,-0.229773759841919,0.108721613883972,0.96715235710144,-0.0286234989762306,0.137710928916931,0.990058779716492,-0.227696716785431,0.103623740375042,0.968202650547028,-0.0291512981057167,0.14123797416687,0.989546477794647,-0.229051098227501,0.106171391904354,0.967606961727142,
- -0.177207320928574,0.122752100229263,0.976488351821899,-0.118499599397182,-0.846878111362457,0.518416345119476,0.00539517030119896,-0.857330799102783,0.514737606048584,0.037136759608984,-0.867286860942841,0.496421575546265,-0.121545150876045,-0.856717109680176,0.501261174678802,-0.182015761733055,-0.845081329345703,0.502700448036194,0.0053925234824419,-0.857267677783966,0.514842748641968,0.0454800128936768,-0.846562206745148,0.530343234539032,0.00550561165437102,-0.859951913356781,0.510345339775085,0.195116847753525,-0.843205749988556,0.500932633876801,0.00537359481677413,-0.856816470623016,0.515593528747559,-0.182045593857765,-0.844539999961853,0.503598570823669,-0.0939328148961067,-0.846217632293701,0.52449244260788,0.19537641108036,-0.84039831161499,0.505528151988983,0.00550709664821625,-0.859987080097198,0.510286092758179,0.0961116552352905,-0.861400544643402,0.49875009059906,0.0923873633146286,-0.84587174654007,0.525324285030365,0.00533058680593967,-0.855789303779602,0.517297089099884,-0.0897258073091507,-0.859536826610565,0.503135919570923,-0.122882477939129,0.708862125873566,0.694560587406158,-3.40817973665253e-006,0.70732319355011,0.706890285015106,0.0356620103120804,0.692366182804108,0.720664441585541,-0.125878632068634,0.69513338804245,0.707774102687836,-0.18885150551796,0.693112373352051,0.695650994777679,-3.51196422343492e-006,0.707329869270325,0.706883609294891,0.0436312519013882,0.718916416168213,0.693725764751434,5.41842200618703e-005,0.703657627105713,0.710539221763611,0.195328757166862,0.688859641551971,0.698082506656647,-1.25021097119316e-005,0.70790034532547,0.706312298774719,-0.188860386610031,0.69367378950119,0.695088803768158,-0.0926147401332855,0.715163826942444,0.692793786525726,0.195679292082787,0.692886531352997,0.69398695230484,5.29086828464642e-005,0.703738927841187,0.710458636283875,0.091278076171875,0.692248642444611,0.715863227844238,0.0878587290644646,0.714234292507172,0.694370329380035,-3.5323559131939e-005,0.709346294403076,0.704860150814056,-0.0886586606502533,0.697636485099792,0.710945129394531,
- -0.121826589107513,0.368935704231262,0.921436250209808,0.00448638061061502,0.362285971641541,0.932056188583374,0.043882492929697,0.34066903591156,0.939158737659454,-0.125187695026398,0.350016117095947,0.92834085226059,-0.182427242398262,0.354267120361328,0.917177796363831,0.00448789726942778,0.362147361040115,0.932110071182251,0.0522640980780125,0.377024412155151,0.924727559089661,0.00453000143170357,0.358289271593094,0.933599650859833,0.185885831713676,0.350633233785629,0.917879521846771,0.00448072096332908,0.362803637981415,0.931854963302612,-0.182437866926193,0.354997754096985,0.916893124580383,-0.0913006439805031,0.375919610261917,0.922143518924713,0.186265289783478,0.356225818395615,0.915646433830261,0.00452671851962805,0.358590453863144,0.933484017848969,0.0938371270895004,0.345933347940445,0.933554887771606,0.0904598534107208,0.374268889427185,0.922897517681122,0.00445390585809946,0.365251988172531,0.930898010730743,-0.0871680602431297,0.352192550897598,0.931859493255615,-0.103327669203281,-0.0521044284105301,-0.993281722068787,0.0150323305279016,-0.0443501621484756,-0.998903036117554,0.0453695133328438,-0.0243249740451574,-0.998674094676971,-0.106283873319626,-0.0330282226204872,-0.993787229061127,-0.174142524600029,-0.0408798642456532,-0.983871638774872,0.0150273144245148,-0.044655229896307,-0.998889446258545,0.0533011667430401,-0.0625483393669128,-0.996617615222931,0.0151165081188083,-0.0392178036272526,-0.999116361141205,0.20012691617012,-0.0377407595515251,-0.979042828083038,0.0150135522708297,-0.0454916283488274,-0.998851895332336,-0.174155592918396,-0.0416918508708477,-0.983835160732269,-0.08162971585989,-0.059512335807085,-0.994884371757507,0.200500950217247,-0.0438089743256569,-0.978713512420654,0.0151167614385486,-0.0392022207379341,-0.999116957187653,0.108141347765923,-0.0281883422285318,-0.993735909461975,0.104585349559784,-0.0589683949947357,-0.992766141891479,0.0149821368977427,-0.0473980084061623,-0.998763740062714,-0.0774616077542305,-0.0340464375913143,-0.996413826942444,0.0365975648164749,0.0479858964681625,0.998177349567413,
- -0.141801059246063,0.00115298666059971,0.989894509315491,-0.0734796151518822,0.0234581343829632,0.997020781040192,-0.140821769833565,-0.00181936880107969,0.990033268928528,0.037870429456234,0.0429705567657948,0.998358428478241,-0.151544272899628,-0.00539750372990966,0.988435745239258,-0.0730890110135078,0.0222345665097237,0.997077643871307,0.253132611513138,0.123744025826454,0.959484934806824,0.0312136560678482,0.0691429227590561,0.997118353843689,0.0369141772389412,0.0467388704419136,0.998224854469299,-0.177378788590431,-0.00626226374879479,0.984122753143311,-0.153521522879601,0.00417506136000156,0.98813658952713,0.253395915031433,0.122772820293903,0.959540188312531,0.130055919289589,0.0832978412508965,0.988001585006714,0.031332653015852,0.0686762928962708,0.997146844863892,-0.172656074166298,-0.0256949327886105,0.98464697599411,0.0411426275968552,0.0300536435097456,0.998701214790344,0.12930853664875,0.0856083706021309,0.987902045249939,0.12911893427372,0.0861939862370491,0.987876057624817,0.252611219882965,0.125664055347443,0.959372758865356,0.295119374990463,0.137365505099297,0.945534408092499,0.131643801927567,0.0783795937895775,0.988193571567535,-0.191015347838402,-0.0350676327943802,0.980960428714752,-0.174244061112404,-0.0191935952752829,0.984515428543091,0.338091939687729,0.153557971119881,0.928500950336456,0.129718452692032,0.0843414291739464,0.987957417964935,0.295586675405502,0.135819122195244,0.945611834526062,-0.204323649406433,-0.0129469493404031,0.978817760944366,0.130167454481125,0.0829528719186783,0.988015830516815,0.111049562692642,0.134792998433113,0.984631299972534,0.153187349438667,0.0458951741456985,0.98713082075119,0.12967287003994,0.0844822525978088,0.987951278686523,0.341964572668076,0.143609657883644,0.928674578666687,0.837862133979797,-0.241496235132217,0.489557594060898,0.634579300880432,-0.420961767435074,0.648151457309723,0.543123304843903,-0.512455224990845,0.665136635303497,0.637644946575165,-0.442034214735031,0.630884051322937,0.205129310488701,-0.625002086162567,0.753189444541931,
- 0.519346177577972,-0.457969546318054,0.721486985683441,0.854298174381256,-0.34870445728302,0.385460555553436,0.965884268283844,-0.147289425134659,0.213010370731354,0.644835114479065,-0.51752907037735,0.562451183795929,0.145548224449158,-0.571784853935242,0.807389497756958,0.179714098572731,-0.558047413825989,0.810114741325378,0.625899612903595,-0.372205495834351,0.68535590171814,0.613228321075439,-0.31550195813179,0.724161267280579,0.946541666984558,0.0324595533311367,0.320944279432297,0.543571949005127,-0.548121392726898,0.635682702064514,0.638471305370331,-0.448291718959808,0.625610888004303,0.492972075939178,-0.431562960147858,0.755468010902405,0.161697968840599,-0.609872341156006,0.775828242301941,0.884728610515594,-0.162710800766945,0.436784237623215,0.539631485939026,-0.538151323795319,0.647449612617493,0.955923855304718,-0.0159824043512344,0.293179303407669,0.519586861133575,-0.490173518657684,0.699828147888184,0.16049499809742,-0.668904304504395,0.725815653800964,0.184511601924896,-0.662562787532806,0.725924253463745,0.57868629693985,-0.651895225048065,0.490055948495865,0.917377293109894,-0.265877157449722,0.296189874410629,0.680985987186432,-0.585379838943481,0.439987123012543,0.257621675729752,-0.791144371032715,0.554726660251617,0.573540806770325,-0.633995473384857,0.518749117851257,0.654090762138367,-0.533538460731506,0.536192119121552,-0.121381655335426,-0.784295439720154,0.608397245407104,-0.00327834719792008,-0.795510411262512,0.605931043624878,0.0357840210199356,-0.807578563690186,0.588673412799835,-0.124287150800228,-0.795572221279144,0.592973470687866,-0.18714602291584,-0.783396363258362,0.592677414417267,-0.00328009226359427,-0.795448362827301,0.606012463569641,0.0442417301237583,-0.783206582069397,0.620185554027557,-0.00319853937253356,-0.798298001289368,0.602254152297974,0.194714576005936,-0.78349381685257,0.590104818344116,-0.00329347606748343,-0.794978976249695,0.606628060340881,-0.187171012163162,-0.782798171043396,0.59345942735672,-0.0943187102675438,-0.783069133758545,0.614741206169128,0.195079445838928,-0.779733240604401,0.594945430755615,
- -0.00320096965879202,-0.798214077949524,0.602365374565125,0.0973530188202858,-0.801037192344666,0.590645253658295,0.0935201644897461,-0.78226238489151,0.615889251232147,-0.00333398976363242,-0.793556928634644,0.608486890792847,-0.0904557853937149,-0.798092424869537,0.595706522464752,-0.118785507977009,0.857518136501312,0.500552594661713,0.00808210205286741,0.858223080635071,0.513213455677032,0.0439250431954861,0.846002340316772,0.531366944313049,-0.122128762304783,0.84704315662384,0.517303109169006,-0.182115435600281,0.842990219593048,0.506163477897644,0.00807026121765375,0.858672201633453,0.512461602687836,0.0522994324564934,0.865575432777405,0.49804013967514,0.00816175621002913,0.855177164077759,0.518271505832672,0.193693101406097,0.838470995426178,0.509361684322357,0.0080579211935401,0.859139502048492,0.511678040027618,-0.182132601737976,0.84350061416626,0.505306243896484,-0.0940853357315063,0.861994206905365,0.498110413551331,0.194022014737129,0.841228842735291,0.504667937755585,0.00816621258854866,0.85500556230545,0.518554508686066,0.101759418845177,0.845329225063324,0.524465024471283,0.0986207574605942,0.860960006713867,0.499020874500275,0.00804537814110518,0.859613478183746,0.51088148355484,-0.0900673940777779,0.849149763584137,0.520415723323822,-0.113930888473988,0.501022279262543,-0.857902348041534,0.0188741330057383,0.512931048870087,-0.858222305774689,0.0484481900930405,0.530260920524597,-0.846449136734009,-0.117117866873741,0.517793238162994,-0.847451210021973,-0.171633258461952,0.507843136787415,-0.84417849779129,0.0188692342489958,0.512672424316406,-0.858376920223236,0.0565535388886929,0.496885269880295,-0.865971565246582,0.0189571361988783,0.517325520515442,-0.855578720569611,0.204191654920578,0.507218778133392,-0.837278246879578,0.018855594098568,0.511951565742493,-0.858807325363159,-0.171651944518089,0.507044434547424,-0.844654679298401,-0.0832718387246132,0.498663604259491,-0.862786412239075,0.204519897699356,0.502270996570587,-0.840175867080688,0.0189572516828775,0.517331421375275,-0.855575144290924,
- 0.106638886034489,0.52362447977066,-0.845248818397522,0.103230349719524,0.497865229845047,-0.861088693141937,0.0188240166753531,0.510283350944519,-0.859800338745117,-0.0793305560946465,0.520114064216614,-0.850404620170593,-0.119454234838486,0.903405606746674,0.411811888217926,0.00668014073744416,0.905549049377441,0.424188941717148,0.0372178554534912,0.8962282538414,0.44202908873558,-0.122595056891441,0.894903182983398,0.429090887308121,-0.183334276080132,0.889388024806976,0.418780982494354,0.00666868407279253,0.905889570713043,0.423461437225342,0.0454311855137348,0.912155330181122,0.407318860292435,0.00676901638507843,0.902883291244507,0.429832518100739,0.195768624544144,0.884899079799652,0.422644346952438,0.00665465649217367,0.90630567073822,0.422570675611496,-0.183351114392281,0.889821410179138,0.417852222919464,-0.0883205607533455,0.908432960510254,0.408594012260437,0.196152284741402,0.887345016002655,0.41730460524559,0.00677388114854693,0.902736127376556,0.430141419172287,0.0980461910367012,0.893556833267212,0.438113182783127,0.09452785551548,0.907327711582184,0.409659564495087,0.00663861213251948,0.906780123710632,0.42155185341835,-0.0844739750027657,0.898194909095764,0.431404709815979,-0.107288286089897,0.623339414596558,-0.7745561003685,0.0210582781583071,0.633704364299774,-0.773288667201996,0.0507958345115185,0.649497270584106,-0.758665323257446,-0.11029826104641,0.637979567050934,-0.762113094329834,-0.169685706496239,0.626627564430237,-0.760621190071106,0.0210581719875336,0.633698523044586,-0.773293435573578,0.0590029954910278,0.619281530380249,-0.782948970794678,0.021122058853507,0.637426257133484,-0.770221829414368,0.202364310622215,0.625493049621582,-0.753529787063599,0.0210476983338594,0.633088767528534,-0.77379298210144,-0.169700443744659,0.625952124595642,-0.761173903942108,-0.0802120417356491,0.620133101940155,-0.780385136604309,0.202753573656082,0.620702087879181,-0.757376968860626,0.0211198516190052,0.637296795845032,-0.770329117774963,0.108884252607822,0.642605543136597,-0.758420944213867,0.105192422866821,0.618517756462097,-0.778697848320007,
- 0.021016800776124,0.631290853023529,-0.775261342525482,-0.0764113515615463,0.639218688011169,-0.765219390392303,-0.107290089130402,0.623348236083984,-0.774548828601837,0.021058451384306,0.633714497089386,-0.773280382156372,0.050793532282114,0.649505615234375,-0.758658349514008,-0.110296040773392,0.637968778610229,-0.762122452259064,-0.169685930013657,0.626617550849915,-0.76062947511673,0.0210579950362444,0.633688271045685,-0.773301839828491,0.0590192303061485,0.619220435619354,-0.78299605846405,0.0211209822446108,0.637363314628601,-0.770273923873901,0.202369451522827,0.625430405139923,-0.753580391407013,0.0210476201027632,0.633084118366241,-0.773796796798706,-0.169700548052788,0.625947654247284,-0.761177539825439,-0.0802125707268715,0.62013041973114,-0.780387222766876,0.202757254242897,0.620656311511993,-0.757413506507874,0.0211190693080425,0.637251138687134,-0.770366907119751,0.10887772589922,0.642562925815582,-0.758458018302917,0.105196826159954,0.618546485900879,-0.778674423694611,0.021017299965024,0.63131982088089,-0.775237739086151,-0.0764056146144867,0.639247059822083,-0.765196263790131,-0.119345963001251,-0.934312999248505,0.335880547761917,0.00223961751908064,-0.944045424461365,0.329807847738266,0.0418321453034878,-0.950098097324371,0.309133768081665,-0.122520267963409,-0.940526247024536,0.316858321428299,-0.191472545266151,-0.927768528461456,0.320287138223648,0.00224118656478822,-0.94407457113266,0.329724431037903,0.0498283803462982,-0.936999559402466,0.345758467912674,0.00231604953296483,-0.94548100233078,0.325669348239899,0.184539318084717,-0.929174959659576,0.320279806852341,0.00222819880582392,-0.943828999996185,0.330426782369614,-0.191495552659035,-0.927460014820099,0.321165710687637,-0.0956267341971397,-0.934723317623138,0.342268705368042,0.184827983379364,-0.927278220653534,0.325566798448563,0.002311737742275,-0.945400774478912,0.32590189576149,0.0926859900355339,-0.945177555084229,0.313127607107162,0.0888102352619171,-0.935150444507599,0.342937886714935,0.00218262849375606,-0.942964673042297,0.33288562297821,
- -0.0912857204675674,-0.943626701831818,0.318175375461578,-0.102724798023701,0.631130516529083,-0.768844664096832,0.0211796872317791,0.640802383422852,-0.767413675785065,0.0489122122526169,0.656248092651367,-0.752958178520203,-0.105861127376556,0.645869135856628,-0.75607305765152,-0.169527426362038,0.633512318134308,-0.754932165145874,0.0211778599768877,0.640695571899414,-0.767502903938293,0.0571861490607262,0.626083970069885,-0.777655839920044,0.0212403479963541,0.644367456436157,-0.764420986175537,0.20666866004467,0.631769239902496,-0.74709814786911,0.0211676061153412,0.640094220638275,-0.768004775047302,-0.169544249773026,0.632809519767761,-0.755517601966858,-0.0849416553974152,0.627044439315796,-0.77433854341507,0.207009792327881,0.627310633659363,-0.750751972198486,0.0212387703359127,0.644274234771729,-0.764499604701996,0.104109264910221,0.650682926177979,-0.75217878818512,0.100171312689781,0.6260706782341,-0.773305356502533,0.0211375411599875,0.638332486152649,-0.769470512866974,-0.0808272734284401,0.646838903427124,-0.758331298828125,0.0377628095448017,0.415557116270065,0.908782958984375,-0.141289278864861,0.369652539491653,0.918365061283112,-0.0667474418878555,0.395034551620483,0.916238248348236,-0.140282660722733,0.366836935281754,0.919647455215454,0.039049968123436,0.410834580659866,0.910873234272003,-0.15125136077404,0.362837195396423,0.919495642185211,-0.0661471113562584,0.39333114027977,0.917014300823212,0.258194476366043,0.472375452518463,0.842731893062592,0.0320931561291218,0.436172336339951,0.899290680885315,0.0379748977720737,0.414779990911484,0.909128963947296,-0.175486579537392,0.360837310552597,0.915970027446747,-0.153255984187126,0.371803134679794,0.915573596954346,0.258409291505814,0.47164449095726,0.843075394630432,0.132168054580688,0.445521503686905,0.885461568832397,0.0321704037487507,0.435893476009369,0.899423122406006,-0.170794874429703,0.343155771493912,0.923619627952576,0.042478296905756,0.398179590702057,0.91632342338562,0.131567448377609,0.44721931219101,0.884694814682007,0.131234720349312,0.448158442974091,0.884268879890442,
- 0.257638514041901,0.474262952804565,0.841841459274292,0.294459253549576,0.479123294353485,0.826882481575012,0.13385446369648,0.440737783908844,0.88759982585907,-0.192657276988029,0.331322699785233,0.923638701438904,-0.172362148761749,0.349049180746078,0.921116709709167,0.338458001613617,0.487826019525528,0.804656445980072,0.131829351186752,0.446479320526123,0.885029494762421,0.294905304908752,0.477764278650284,0.827509582042694,-0.205991461873055,0.351075977087021,0.913407444953918,0.132408410310745,0.444841235876083,0.885767638683319,0.113843955099583,0.494073331356049,0.8619344830513,0.157529979944229,0.410265564918518,0.898257493972778,0.131762608885765,0.446667909622192,0.884944260120392,0.342063158750534,0.479199349880219,0.808307349681854,0.838103234767914,-0.0419344417750835,0.54389750957489,0.633345425128937,-0.150208413600922,0.759151518344879,0.54424649477005,-0.227782011032104,0.80741012096405,0.636348009109497,-0.175299599766731,0.751219868659973,0.203603014349937,-0.300459384918213,0.931810081005096,0.520255446434021,-0.155840113759041,0.839671432971954,0.854478657245636,-0.179974138736725,0.487314611673355,0.965773403644562,-0.0574022755026817,0.252955943346024,0.643821537494659,-0.272873789072037,0.71486622095108,0.140493243932724,-0.23212306201458,0.962486624717712,0.17815200984478,-0.217108651995659,0.959753036499023,0.624426782131195,-0.0901594161987305,0.775862395763397,0.612075805664063,-0.0251980312168598,0.790397524833679,0.946591377258301,0.149980589747429,0.285430490970612,0.54815000295639,-0.273792237043381,0.790297031402588,0.637131631374359,-0.182519063353539,0.74883246421814,0.495243072509766,-0.115861520171165,0.8609938621521,0.156644776463509,-0.27928638458252,0.947344481945038,0.883780360221863,0.00954873021692038,0.467804789543152,0.543868064880371,-0.259080052375793,0.798176229000092,0.956040441989899,0.0938677936792374,0.277805149555206,0.522370576858521,-0.191245794296265,0.830995798110962,0.153765648603439,-0.354426622390747,0.922354519367218,0.179453074932098,-0.346756190061569,0.920628547668457,
- 0.582815945148468,-0.421116530895233,0.694972276687622,0.916491568088531,-0.136631518602371,0.375998705625534,0.682643413543701,-0.378379434347153,0.625161588191986,0.251117736101151,-0.531542301177979,0.808951616287231,0.577344596385956,-0.392570286989212,0.715934216976166,0.655424356460571,-0.293985426425934,0.695694983005524,-0.117045819759369,-0.502539277076721,0.856594741344452,0.00131665985099971,-0.512846708297729,0.85847932100296,0.0372884012758732,-0.530813276767731,0.846668064594269,-0.11988353729248,-0.518569767475128,0.846589267253876,-0.188600957393646,-0.506441593170166,0.841395616531372,0.00131426972802728,-0.512728571891785,0.858549892902374,0.0457640774548054,-0.496440052986145,0.866863965988159,0.00139873893931508,-0.516857147216797,0.856070518493652,0.193807572126389,-0.507739007472992,0.839428246021271,0.00130050885491073,-0.512055218219757,0.858951568603516,-0.188619643449783,-0.505689918994904,0.84184342622757,-0.0903033688664436,-0.497376561164856,0.86282205581665,0.194177031517029,-0.502420544624329,0.84253716468811,0.0013966882834211,-0.516758024692535,0.856130361557007,0.0925035551190376,-0.524342715740204,0.846467852592468,0.0887600481510162,-0.497805058956146,0.862735033035278,0.00126045534852892,-0.510096848011017,0.860116183757782,-0.0862459093332291,-0.518979430198669,0.850424587726593,-0.114342138171196,0.982576429843903,0.146525368094444,0.00901525001972914,0.987485647201538,0.157451003789902,0.041904803365469,0.983091056346893,0.178258284926414,-0.117600508034229,0.97913259267807,0.165739327669144,-0.181158825755119,0.970983326435089,0.156118810176849,0.00901490077376366,0.987494111061096,0.15739805996418,0.0504855588078499,0.988923370838165,0.139577850699425,0.00904455035924912,0.98676735162735,0.16189070045948,0.197555929422379,0.96696925163269,0.161065742373466,0.00901023391634226,0.987606346607208,0.156693026423454,-0.181170135736465,0.971119999885559,0.155253082513809,-0.090143047273159,0.985920906066895,0.14083394408226,0.197913438081741,0.967812478542328,0.155464634299278,0.00904302392154932,0.986805260181427,0.161659061908722,
- 0.0983253195881844,0.980081856250763,0.172544822096825,0.0952479317784309,0.985075712203979,0.143365487456322,0.00899521820247173,0.987962782382965,0.154429912567139,-0.08600864559412,0.982250869274139,0.166690647602081,-0.11224988847971,0.146362438797951,-0.982841908931732,0.0180223062634468,0.156978875398636,-0.98743748664856,0.0512697473168373,0.178080961108208,-0.982679307460785,-0.115315712988377,0.165478676557541,-0.97944837808609,-0.17239898443222,0.157271683216095,-0.972390949726105,0.0180234313011169,0.157063618302345,-0.98742401599884,0.0595929361879826,0.139337122440338,-0.988450229167938,0.0180809255689383,0.16141864657402,-0.986720383167267,0.198916837573051,0.159020200371742,-0.967028796672821,0.018013596534729,0.15632101893425,-0.987542033195496,-0.172416865825653,0.156367227435112,-0.972533643245697,-0.0812009498476982,0.140886902809143,-0.986690163612366,0.199223160743713,0.15351665019989,-0.967854738235474,0.0180777199566364,0.161175280809402,-0.986760318279266,0.108084909617901,0.171145111322403,-0.979299247264862,0.104755915701389,0.141660109162331,-0.984357059001923,0.0179799646139145,0.153787210583687,-0.987940490245819,-0.0769352540373802,0.16645547747612,-0.983043015003204,-0.119800962507725,0.991720080375671,0.0462494343519211,0.0083112521097064,0.99832808971405,0.0572007782757282,0.0400546938180923,0.996212184429169,0.0771808847784996,-0.122837215662003,0.990287184715271,0.0651330202817917,-0.180660918354988,0.981852769851685,0.057678297162056,0.00831106677651405,0.998329520225525,0.0571757294237614,0.0480554811656475,0.998062491416931,0.0395214520394802,0.00834699161350727,0.998039484024048,0.0620287209749222,0.193827226758003,0.979013025760651,0.0629642233252525,0.00830522924661636,0.998374402523041,0.0563893914222717,-0.180669769644737,0.981900930404663,0.0568246729671955,-0.0815500169992447,0.995864748954773,0.0400398150086403,0.194219157099724,0.97929847240448,0.0570408254861832,0.00834550894796848,0.998051941394806,0.0618280135095119,0.0955452919006348,0.992621421813965,0.074658140540123,
- 0.0919497609138489,0.994842350482941,0.0428269095718861,0.00828713271766901,0.998508989810944,0.0539567805826664,-0.0776179134845734,0.994841396808624,0.06531672924757,-0.106701970100403,0.290495008230209,-0.950908720493317,0.0197512935847044,0.300689429044724,-0.95351767539978,0.0547406263649464,0.321412891149521,-0.945355594158173,-0.109711572527885,0.308708220720291,-0.9448082447052,-0.177005112171173,0.298307120800018,-0.937913775444031,0.0197547078132629,0.301005989313126,-0.953417718410492,0.0630238950252533,0.284156531095505,-0.956704258918762,0.0197944305837154,0.304705828428268,-0.952240824699402,0.20294351875782,0.30020198225975,-0.932036876678467,0.0197474919259548,0.300336599349976,-0.953628838062286,-0.177016973495483,0.297534435987473,-0.938156843185425,-0.0781840905547142,0.284853219985962,-0.955377459526062,0.20333306491375,0.294321000576019,-0.9338259100914,0.0197902880609035,0.304319024085999,-0.952364563941956,0.113006062805653,0.313313335180283,-0.942902088165283,0.10948458313942,0.284038990736008,-0.952541351318359,0.0197176057845354,0.297572314739227,-0.954495668411255,-0.0743265971541405,0.308400183916092,-0.948348522186279,-0.10670281201601,0.290500104427338,-0.950907051563263,0.0197513625025749,0.300695896148682,-0.953515529632568,0.0547395907342434,0.321417480707169,-0.945354104042053,-0.109708748757839,0.308691084384918,-0.944814145565033,-0.177005335688591,0.298291385173798,-0.937918663024902,0.0197545345872641,0.300989955663681,-0.953422784805298,0.0630369186401367,0.284097284078598,-0.956721007823944,0.019793726503849,0.304639786481857,-0.952262043952942,0.202947810292244,0.300137937068939,-0.932056546211243,0.019747382029891,0.300326466560364,-0.953632056713104,-0.177017122507095,0.297524631023407,-0.938159942626953,-0.0781852379441261,0.284846127033234,-0.955379486083984,0.203336045145988,0.294275492429733,-0.933839619159698,0.0197897907346487,0.304272562265396,-0.952379524707794,0.113000720739365,0.313268452882767,-0.94291764497757,0.109488517045975,0.284071326255798,-0.952531218528748,
- 0.0197179596871138,0.297604888677597,-0.954485595226288,-0.0743213221430779,0.308432072401047,-0.948338568210602,-0.116297893226147,-0.743026435375214,0.659080147743225,0.00669017899781466,-0.753520607948303,0.657390296459198,0.0445187836885452,-0.766949355602264,0.640161693096161,-0.11930376291275,-0.755565106868744,0.644118010997772,-0.187637507915497,-0.742464065551758,0.643070220947266,0.00669399928301573,-0.753673732280731,0.65721470117569,0.0523191429674625,-0.741482675075531,0.668929100036621,0.00675793876871467,-0.756253123283386,0.654244244098663,0.191014558076859,-0.742586076259613,0.641934037208557,0.00668240990489721,-0.75320565700531,0.657751202583313,-0.18765951693058,-0.741862118244171,0.643758118152618,-0.0980743169784546,-0.740338921546936,0.665041148662567,0.191303133964539,-0.73885589838028,0.646138608455658,0.00675226142629981,-0.756025373935699,0.654507458209991,0.0942762941122055,-0.760463953018188,0.642500281333923,0.0904713571071625,-0.74022901058197,0.666240155696869,0.00663610408082604,-0.751335740089417,0.65988677740097,-0.0937214717268944,-0.757592499256134,0.645964324474335,-0.103019885718822,0.299426555633545,-0.948541343212128,0.0198452323675156,0.30947008728981,-0.95070207118988,0.0528461746871471,0.329808294773102,-0.942567765712738,-0.106339447200298,0.31835401058197,-0.94198876619339,-0.176865935325623,0.30683508515358,-0.935184836387634,0.0198473874479532,0.309672892093658,-0.950635969638824,0.0611977726221085,0.292447656393051,-0.954321324825287,0.019885940477252,0.313317090272903,-0.949440360069275,0.204761832952499,0.308372974395752,-0.928966462612152,0.0198403671383858,0.309011667966843,-0.950851380825043,-0.176879793405533,0.306024491786957,-0.935447752475739,-0.084237813949585,0.293983340263367,-0.95209127664566,0.205089285969734,0.302970051765442,-0.930670499801636,0.0198822747915983,0.312969952821732,-0.949554920196533,0.106697432696819,0.323016911745071,-0.940359354019165,0.103089407086372,0.293506473302841,-0.95038241147995,0.0198112651705742,0.306280136108398,-0.951735258102417,
- -0.080210916697979,0.318032771348953,-0.944680571556091,0.0357570834457874,0.635391116142273,0.77136218547821,-0.142779275774956,0.593185126781464,0.792303919792175,-0.0672281384468079,0.617720663547516,0.783518731594086,-0.141804099082947,0.590874373912811,0.794203460216522,0.0370209626853466,0.631455600261688,0.774527907371521,-0.146691024303436,0.588685572147369,0.794940888881683,-0.0662657916545868,0.615427851676941,0.785402715206146,0.258523464202881,0.673552751541138,0.692453801631927,0.0301232542842627,0.652688562870026,0.757027208805084,0.0359717682003975,0.634723961353302,0.771901249885559,-0.172460347414017,0.585402250289917,0.792187869548798,-0.148636355996132,0.595981061458588,0.78912216424942,0.258732169866562,0.672948777675629,0.692962944507599,0.130531772971153,0.6582972407341,0.741354286670685,0.0302185993641615,0.652399182319641,0.757272958755493,-0.167839169502258,0.570606350898743,0.803889572620392,0.0404220968484879,0.620764195919037,0.782954573631287,0.129842072725296,0.659951627254486,0.740003287792206,0.129567310214043,0.660609185695648,0.739464581012726,0.257943212985992,0.675227105617523,0.691038131713867,0.291681557893753,0.676041185855865,0.676675856113434,0.132163614034653,0.654363811016083,0.744540631771088,-0.19276562333107,0.55796480178833,0.807165861129761,-0.16935433447361,0.575458824634552,0.800103902816772,0.34138497710228,0.678979516029358,0.649956285953522,0.130166485905647,0.659174025058746,0.740639090538025,0.292136967182159,0.67487096786499,0.67764675617218,-0.206168726086617,0.574460804462433,0.7921422123909,0.130700021982193,0.657893121242523,0.741683423519135,0.109037518501282,0.698161482810974,0.70758843421936,0.152811229228973,0.626457035541534,0.764329969882965,0.130128398537636,0.659265339374542,0.740564525127411,0.345140516757965,0.671316683292389,0.655905425548553,0.838062286376953,0.0993976294994354,0.536443591117859,0.635518372058868,0.0506106652319431,0.770425200462341,0.544775426387787,-0.012391391210258,0.838490426540375,0.638459026813507,0.0252099372446537,0.769242882728577,
- 0.202554598450661,-0.0503647737205029,0.977974951267242,0.520297229290009,0.0664462372660637,0.851396322250366,0.854315638542175,-0.0480683520436287,0.517527103424072,0.965442836284637,0.00954976212233305,0.260439872741699,0.646174013614655,-0.0801627263426781,0.758968412876129,0.141644045710564,0.0239415988326073,0.989628076553345,0.177292987704277,0.0373383238911629,0.983449578285217,0.626323342323303,0.114090733230114,0.771169483661652,0.614414274692535,0.177758529782295,0.768698394298553,0.94599848985672,0.21814338862896,0.239792287349701,0.54600328207016,-0.0532335974276066,0.836090087890625,0.639202356338501,0.0181440357118845,0.768824517726898,0.49727725982666,0.106850638985634,0.860986828804016,0.157786190509796,-0.025195574387908,0.987151801586151,0.884033262729645,0.130421623587608,0.448860138654709,0.54241406917572,-0.0394756309688091,0.839183449745178,0.955344974994659,0.163137033581734,0.246378257870674,0.523641049861908,0.0264959875494242,0.851526856422424,0.15827676653862,-0.102451987564564,0.982065200805664,0.180751651525497,-0.0973202511668205,0.978702008724213,0.581326127052307,-0.22614985704422,0.781611263751984,0.916695892810822,-0.0357698276638985,0.397981643676758,0.682749927043915,-0.204684123396873,0.701396465301514,0.255228906869888,-0.302879929542542,0.918216705322266,0.576753795146942,-0.197483107447624,0.79268878698349,0.655259490013123,-0.104324698448181,0.748165369033813,-0.117591753602028,-0.264537185430527,0.957179427146912,-0.00324930087663233,-0.27446448802948,0.961591720581055,0.0354419834911823,-0.294396102428436,0.955026090145111,-0.120592139661312,-0.283070921897888,0.951487481594086,-0.189821898937225,-0.27254918217659,0.943230926990509,-0.00325122009962797,-0.27435639500618,0.961622595787048,0.0439058803021908,-0.255993485450745,0.96568101644516,-0.00316974450834095,-0.278883188962936,0.960319817066193,0.187927037477493,-0.274338871240616,0.943091630935669,-0.00326463207602501,-0.273610532283783,0.961835026741028,-0.189841032028198,-0.27169993519783,0.94347208738327,-0.0955510213971138,-0.258652150630951,0.961233198642731,
- 0.188309639692307,-0.268310010433197,0.944748222827911,-0.00317205162718892,-0.278756231069565,0.960356652736664,0.0941382348537445,-0.288407742977142,0.952868819236755,0.0903501808643341,-0.258418291807175,0.96179872751236,-0.00330516649410129,-0.271358251571655,0.962472856044769,-0.0913059338927269,-0.283306062221527,0.954673290252686,-0.117160491645336,0.98673939704895,-0.112333424389362,0.00702621694654226,0.994719505310059,-0.10239002853632,0.0423169992864132,0.995839297771454,-0.080706812441349,-0.120611935853958,0.988395512104034,-0.0923421382904053,-0.183139830827713,0.978063881397247,-0.0992524772882462,0.00702362135052681,0.99468868970871,-0.102689072489738,0.0510871186852455,0.991456687450409,-0.120015449821949,0.00706854555755854,0.995209991931915,-0.0975044816732407,0.196471199393272,0.976011037826538,-0.093816377222538,0.00701693817973137,0.99460905790329,-0.10345821082592,-0.183150932192802,0.977973341941834,-0.100120328366756,-0.090985581278801,0.98886239528656,-0.117782823741436,0.196784511208534,0.975424706935883,-0.0991087779402733,0.00706804543733597,0.995204329490662,-0.0975622311234474,0.101926513016224,0.99106627702713,-0.0860155150294304,0.098798930644989,0.988358795642853,-0.115696512162685,0.0070007536560297,0.994413912296295,-0.1053182259202,-0.0868537575006485,0.991977512836456,-0.0918533429503441,-0.109451934695244,-0.111668474972248,-0.987699568271637,0.0140418838709593,-0.102929964661598,-0.994589507579803,0.0498369298875332,-0.0814090147614479,-0.995433986186981,-0.112677969038486,-0.091856874525547,-0.989376664161682,-0.176310762763023,-0.0983859375119209,-0.979405283927917,0.014034871943295,-0.103333652019501,-0.994547724723816,0.0581764131784439,-0.120362222194672,-0.99102395772934,0.0141342552378774,-0.0975999161601067,-0.995125353336334,0.204095870256424,-0.0949507877230644,-0.974335253238678,0.0140198236331344,-0.10419911891222,-0.99445766210556,-0.176331534981728,-0.0993494093418121,-0.979304313659668,-0.0830164700746536,-0.117140114307404,-0.989639580249786,0.204427719116211,-0.100677475333214,-0.973690569400787,
- 0.0141357844695449,-0.0975114703178406,-0.995134115219116,0.109800815582275,-0.0867193192243576,-0.990163505077362,0.10629815608263,-0.117211982607841,-0.98740166425705,0.0139895128086209,-0.10594018548727,-0.994274199008942,-0.0790693834424019,-0.0925309509038925,-0.992565393447876,-0.119722306728363,0.970128238201141,-0.210992410778999,0.00612053275108337,0.979356348514557,-0.202048778533936,0.039656400680542,0.982475340366364,-0.182125672698021,-0.122854076325893,0.973656713962555,-0.192092478275299,-0.179106757044792,0.963843643665314,-0.197297245264053,0.00611835904419422,0.97930908203125,-0.202277734875679,0.0477019399404526,0.974541127681732,-0.219075590372086,0.00616927212104201,0.980403065681458,-0.196905359625816,0.190902724862099,0.962702393531799,-0.191729739308357,0.00611049868166447,0.979138016700745,-0.203104987740517,-0.179116725921631,0.96366411447525,-0.198163226246834,-0.0832044556736946,0.9725301861763,-0.217398896813393,0.191283687949181,0.961469888687134,-0.197449177503586,0.00616885116323829,0.980394184589386,-0.196949765086174,0.100278466939926,0.977690279483795,-0.184569671750069,0.0969241037964821,0.971800982952118,-0.214961722493172,0.0060912799090147,0.978717029094696,-0.205124571919441,-0.079374261200428,0.97797429561615,-0.193044632673264,-0.109000839293003,0.0355411097407341,-0.993406176567078,0.016432948410511,0.0446233712136745,-0.998868823051453,0.0504534766077995,0.0660044252872467,-0.996542930603027,-0.111885271966457,0.0543303489685059,-0.992234826087952,-0.172786325216293,0.0465748272836208,-0.983857572078705,0.0164294298738241,0.0443893559277058,-0.998879194259644,0.0586686730384827,0.0272433962672949,-0.997905790805817,0.0165104512125254,0.0497907474637032,-0.998623192310333,0.202258601784706,0.0499237515032291,-0.978058934211731,0.016416871920228,0.0435548909008503,-0.998916149139404,-0.172799557447433,0.0457357950508595,-0.98389458656311,-0.0752556324005127,0.0280373133718967,-0.996770024299622,0.202651485800743,0.0437585078179836,-0.97827285528183,0.016510060057044,0.0497647076845169,-0.998624503612518,
- 0.110386073589325,0.0600894652307034,-0.99207067489624,0.10688766092062,0.0294057503342628,-0.993836283683777,0.0163871068507433,0.0415805019438267,-0.999000787734985,-0.0711146742105484,0.0535482354462147,-0.996029853820801,-0.109001085162163,0.0355427078902721,-0.993406116962433,0.0164329931139946,0.0446264035999775,-0.998868584632874,0.0504532381892204,0.066005527973175,-0.996542870998383,-0.111883349716663,0.0543177798390388,-0.992235720157623,-0.172786504030228,0.0465636253356934,-0.983858048915863,0.0164292585104704,0.0443779677152634,-0.998879730701447,0.0586820207536221,0.0271799881011248,-0.997906625270844,0.0165093839168549,0.0497194081544876,-0.99862676858902,0.202262997627258,0.0498549267649651,-0.978061437606812,0.0164167713373899,0.0435482822358608,-0.998916447162628,-0.172799661755562,0.0457293391227722,-0.983894884586334,-0.0752561911940575,0.0280338525772095,-0.996770083904266,0.202654540538788,0.0437097288668156,-0.978274285793304,0.0165093131363392,0.049714706838131,-0.998627007007599,0.110380627214909,0.060041006654501,-0.992074191570282,0.106891617178917,0.0294401124119759,-0.993834733963013,0.0163876060396433,0.0416135005652905,-0.9989994764328,-0.0711090192198753,0.0535828061401844,-0.996028304100037,-0.11620969325304,-0.547911465167999,0.828425228595734,0.00226856768131256,-0.558727324008942,0.82934832572937,0.0415025725960732,-0.575910747051239,0.816458404064178,-0.119398877024651,-0.564319372177124,0.816876709461212,-0.191431283950806,-0.551414847373962,0.811970293521881,0.00227049109525979,-0.558817446231842,0.829287588596344,0.0495042502880096,-0.543483018875122,0.837959170341492,0.00234508444555104,-0.562359571456909,0.826889455318451,0.19115224480629,-0.552155733108521,0.811532557010651,0.00225751171819866,-0.558200597763062,0.829702973365784,-0.191454812884331,-0.550634682178497,0.812494039535522,-0.0922689735889435,-0.543850541114807,0.834094166755676,0.191452264785767,-0.547390580177307,0.814683735370636,0.00234063505195081,-0.562149584293365,0.827032268047333,0.0923291817307472,-0.569291830062866,0.816934585571289,
- 0.0886646062135696,-0.544073581695557,0.834339559078217,0.00221168389543891,-0.55602353811264,0.831163585186005,-0.0881365910172462,-0.564831018447876,0.820486485958099,-0.102989010512829,0.045227687805891,-0.99365371465683,0.0165705699473619,0.0538176670670509,-0.998413383960724,0.0485691204667091,0.0748282670974731,-0.996012926101685,-0.106119833886623,0.0646665990352631,-0.992248356342316,-0.172637715935707,0.0555166900157928,-0.983419597148895,0.0165654476732016,0.0534738376736641,-0.998431861400604,0.0568496100604534,0.0358674116432667,-0.997738361358643,0.0166450962424278,0.0588349439203739,-0.998128950595856,0.202151075005531,0.058501198887825,-0.977605521678925,0.0165530797094107,0.0526440888643265,-0.998476147651672,-0.17265297472477,0.0546356812119484,-0.983466267585754,-0.081564649939537,0.037989865988493,-0.995943784713745,0.20247794687748,0.0528478249907494,-0.977859795093536,0.0166453514248133,0.0588522851467133,-0.998127937316895,0.103637747466564,0.0699246376752853,-0.992154121398926,0.100164718925953,0.0393520891666412,-0.994192361831665,0.0165241193026304,0.0507046282291412,-0.998576998710632,-0.0773615464568138,0.0637210682034492,-0.994964838027954,0.0395197719335556,0.867121458053589,0.496526479721069,-0.141054660081863,0.835293412208557,0.531402349472046,-0.0672357603907585,0.854518592357636,0.515050768852234,-0.140064299106598,0.833812475204468,0.533983826637268,0.0408269464969635,0.864450395107269,0.50105756521225,-0.150270000100136,0.830594778060913,0.536219418048859,-0.0668298527598381,0.853884339332581,0.51615434885025,0.256872206926346,0.874933898448944,0.410496473312378,0.0337998569011688,0.878483355045319,0.476575881242752,0.0397370792925358,0.86667937040329,0.497280478477478,-0.176945224404335,0.825873672962189,0.535371899604797,-0.152210235595703,0.835351407527924,0.52822357416153,0.257094413042068,0.874528050422668,0.411221504211426,0.135483860969543,0.877659201622009,0.459737330675125,0.0338654257357121,0.878356218338013,0.476805776357651,-0.172548875212669,0.816756963729858,0.55057692527771,
- 0.0442440137267113,0.857336223125458,0.512852132320404,0.134030982851982,0.879886627197266,0.455889523029327,0.134559869766235,0.879078388214111,0.457290798425674,0.256336510181427,0.875908195972443,0.40874981880188,0.293905377388,0.871043384075165,0.393577247858047,0.136617437005043,0.875905275344849,0.462737321853638,-0.192620784044266,0.807322144508362,0.557788670063019,-0.173950403928757,0.819679915904999,0.54577112197876,0.336291491985321,0.865465342998505,0.371319234371185,0.135180547833443,0.87812614440918,0.458934336900711,0.294335931539536,0.870323359966278,0.394846349954605,-0.205735579133034,0.817303717136383,0.538226306438446,0.135087966918945,0.878268659114838,0.458688825368881,0.109673127532005,0.903252005577087,0.414858520030975,0.153647392988205,0.856076300144196,0.493483603000641,0.135255172848701,0.878011286258698,0.459132045507431,0.339800655841827,0.860707998275757,0.37910059094429,0.836909532546997,0.282734006643295,0.468661814928055,0.635969161987305,0.319659829139709,0.70239645242691,0.541989088058472,0.284834831953049,0.790643393993378,0.639031708240509,0.29382586479187,0.710847973823547,0.209015220403671,0.29985499382019,0.930805921554565,0.518250286579132,0.361559152603149,0.77504301071167,0.853174090385437,0.137988030910492,0.503043949604034,0.965565919876099,0.100822061300278,0.239828199148178,0.646230399608612,0.19548562169075,0.737679898738861,0.142045140266418,0.372021347284317,0.917291402816772,0.183996975421906,0.383720546960831,0.904932975769043,0.62724643945694,0.377437084913254,0.681251168251038,0.614654719829559,0.440181910991669,0.65455287694931,0.946252107620239,0.288523763418198,0.146153911948204,0.544251680374146,0.243447974324226,0.802822053432465,0.639850556850433,0.286097317934036,0.713259816169739,0.494756519794464,0.404137998819351,0.76934289932251,0.158187538385391,0.325114399194717,0.93235045671463,0.883679449558258,0.280313789844513,0.374879688024521,0.540506899356842,0.257996499538422,0.800806045532227,0.955650150775909,0.238926813006401,0.172182485461235,0.521210610866547,0.325679123401642,0.788842558860779,
- 0.153589144349098,0.248856902122498,0.956284821033478,0.181118711829185,0.254656791687012,0.949918925762177,0.579504311084747,0.0634511485695839,0.812495350837708,0.91637510061264,0.107494443655014,0.385618507862091,0.684267282485962,0.0577537193894386,0.7269406914711,0.250460356473923,0.0387270115315914,0.967351973056793,0.574681043624878,0.0955290719866753,0.812782824039459,0.658028244972229,0.164980500936508,0.73469740152359,-0.121333844959736,0.0909287557005882,0.988438189029694,-0.00130308663938195,0.0827459916472435,0.996569931507111,0.0374526903033257,0.0611799545586109,0.997423946857452,-0.124246172606945,0.0718459561467171,0.989647030830383,-0.183435827493668,0.0783265382051468,0.979906260967255,-0.0013019636971876,0.0826746821403503,0.996575832366943,0.0460954047739506,0.101276405155659,0.993789970874786,-0.0012360728578642,0.078490637242794,0.996914088726044,0.195360153913498,0.0757396221160889,0.977802574634552,-0.0013134041801095,0.0834011510014534,0.996515214443207,-0.183458968997002,0.0792766585946083,0.979825496673584,-0.0955059453845024,0.0967167392373085,0.990719199180603,0.195755451917648,0.0820539146661758,0.977213978767395,-0.00124019046779722,0.0787521004676819,0.996893465518951,0.0946147963404655,0.0661099329590797,0.993316531181335,0.0905312299728394,0.0984203368425369,0.991018533706665,-0.00135494524147362,0.0860390216112137,0.996290862560272,-0.0916506424546242,0.0726156905293465,0.993140041828156,-0.119912020862103,0.883122086524963,-0.453559786081314,0.00352184637449682,0.894442856311798,-0.447168409824371,0.0420918948948383,0.903064012527466,-0.427438497543335,-0.12317617982626,0.89151668548584,-0.435919553041458,-0.182880744338036,0.880038797855377,-0.438276588916779,0.00351631967350841,0.89420884847641,-0.447636485099792,0.0506926663219929,0.885261476039886,-0.462323069572449,0.00357788079418242,0.896804213523865,-0.442413151264191,0.197561532258987,0.879843711853027,-0.432255387306213,0.00350753869861364,0.893836557865143,-0.448379456996918,-0.182893544435501,0.879629492759705,-0.439092189073563,
- -0.0916018411517143,0.883481085300446,-0.459423810243607,0.1978829652071,0.877399265766144,-0.437050193548203,0.00357902934774756,0.896852433681488,-0.442315399646759,0.0972415953874588,0.897691786289215,-0.429759800434113,0.0939013138413429,0.884303987026215,-0.457371830940247,0.00349185988306999,0.893170595169067,-0.449704438447952,-0.087399922311306,0.895664572715759,-0.43605762720108,-0.112072363495827,-0.453541040420532,-0.884160816669464,0.0175955090671778,-0.447580873966217,-0.894070327281952,0.0494122467935085,-0.427520096302032,-0.902654409408569,-0.115304745733738,-0.435584723949432,-0.892732203006744,-0.169202044606209,-0.438623458147049,-0.882598519325256,0.01758754812181,-0.44798469543457,-0.893868207931519,0.0579921863973141,-0.462893456220627,-0.88451486825943,0.017690634354949,-0.442730724811554,-0.896480083465576,0.204448655247688,-0.432950049638748,-0.877926528453827,0.0175720565021038,-0.448770463466644,-0.893474400043488,-0.169222384691238,-0.439481943845749,-0.88216757774353,-0.0844900831580162,-0.459185212850571,-0.884313523769379,0.204762697219849,-0.437959909439087,-0.87536484003067,0.0176926031708717,-0.442630141973495,-0.896529734134674,0.104962445795536,-0.430665731430054,-0.896387159824371,0.101526066660881,-0.45798048377037,-0.883145689964294,0.0175422914326191,-0.450277656316757,-0.892716228961945,-0.0803291723132133,-0.436571568250656,-0.896076142787933,-0.111296303570271,0.83459746837616,-0.539499998092651,0.00243996805511415,0.84485912322998,-0.534983277320862,0.042228139936924,0.854828357696533,-0.517189800739288,-0.114519193768501,0.844718754291534,-0.522815048694611,-0.185060858726501,0.831191539764404,-0.524283468723297,0.00243606395088136,0.84466677904129,-0.535286903381348,0.0499604046344757,0.834773659706116,-0.548322081565857,0.00250092754140496,0.847849309444427,-0.530231356620789,0.191230937838554,0.83292818069458,-0.519289314746857,0.00242638448253274,0.844189643859863,-0.536039113998413,-0.185073122382164,0.830689251422882,-0.525074541568756,-0.0829635262489319,0.832942068576813,-0.547105610370636,
- 0.191616803407669,0.829733967781067,-0.524237096309662,0.0025017186999321,0.847888052463531,-0.530169427394867,0.100798442959785,0.849460124969482,-0.517935454845428,0.097424678504467,0.833181321620941,-0.544350564479828,0.00240723928436637,0.84324437379837,-0.537524998188019,-0.0790053531527519,0.846879661083221,-0.525883078575134,-0.107670180499554,-0.317334324121475,-0.942181646823883,0.0199965126812458,-0.311020821332932,-0.950192809104919,0.0499795563519001,-0.289612203836441,-0.95583838224411,-0.110504493117332,-0.299488455057144,-0.947678983211517,-0.171814292669296,-0.303910315036774,-0.937079727649689,0.0199934151023626,-0.311218857765198,-0.950127959251404,0.058756597340107,-0.327564895153046,-0.942999958992004,0.0200722943991423,-0.306142121553421,-0.951774179935455,0.203929424285889,-0.298404484987259,-0.932398796081543,0.019981088116765,-0.312008142471313,-0.949869275093079,-0.171831220388412,-0.304780036211014,-0.936794102191925,-0.0797474235296249,-0.324589401483536,-0.942487180233002,0.204340353608131,-0.304365068674088,-0.93038010597229,0.020071666687727,-0.306182980537415,-0.951761066913605,0.113181985914707,-0.29372376203537,-0.949166059494019,0.109370499849319,-0.324218332767487,-0.939638555049896,0.0199511311948299,-0.313922852277756,-0.949238836765289,-0.075803779065609,-0.301078528165817,-0.950581669807434,-0.107670664787292,-0.31733113527298,-0.942182540893555,0.0199965834617615,-0.311016172170639,-0.950194239616394,0.0499789603054523,-0.289609640836716,-0.955839097499847,-0.110503129661083,-0.299497157335281,-0.947676360607147,-0.171814426779747,-0.303917407989502,-0.937077403068542,0.0199933014810085,-0.31122612953186,-0.950125575065613,0.0587695427238941,-0.327620774507523,-0.942979753017426,0.020071292296052,-0.306207031011581,-0.951753437519073,0.203933760523796,-0.29846653342247,-0.932378113269806,0.0199810341000557,-0.312011659145355,-0.949868142604828,-0.171831279993057,-0.304783403873444,-0.936792969703674,-0.0797475874423981,-0.324590355157852,-0.942486941814423,0.204343318939209,-0.304408878087997,-0.930365025997162,
- 0.0200709607452154,-0.306228578090668,-0.95174640417099,0.113176465034485,-0.293768793344498,-0.949152767658234,0.109373904764652,-0.324191838502884,-0.939647376537323,0.0199515484273434,-0.313896119594574,-0.949247658252716,-0.0757993832230568,-0.301052331924438,-0.950590312480927,-0.117911614477634,-0.219781816005707,0.96839702129364,0.00362123246304691,-0.22994826734066,0.973196089267731,0.0395299643278122,-0.249617233872414,0.967537403106689,-0.121072620153427,-0.239129424095154,0.963409960269928,-0.188840836286545,-0.229110509157181,0.954907178878784,0.00362663343548775,-0.230291217565537,0.973115026950836,0.0471517071127892,-0.212576359510422,0.976006150245667,0.003681959817186,-0.233804434537888,0.97227668762207,0.189090937376022,-0.229960829019547,0.954653143882751,0.00361615046858788,-0.229625567793846,0.973272323608398,-0.188857704401016,-0.228314369916916,0.955094516277313,-0.0936156585812569,-0.214159920811653,0.972302258014679,0.189387053251266,-0.224420517683029,0.955912113189697,0.00367545871995389,-0.233391612768173,0.972375869750977,0.0941300019621849,-0.243386656045914,0.965350985527039,0.0906834304332733,-0.21447180211544,0.972511470317841,0.00356968771666288,-0.226675167679787,0.973963975906372,-0.089337021112442,-0.239058822393417,0.966886639595032,-0.104134157299995,-0.309034436941147,-0.945332646369934,0.0201321393251419,-0.302258253097534,-0.953013479709625,0.0480371788144112,-0.281196594238281,-0.958447158336639,-0.107461266219616,-0.289809733629227,-0.951032280921936,-0.17164134979248,-0.295397937297821,-0.939829409122467,0.0201274678111076,-0.302561908960342,-0.952917218208313,0.0568800941109657,-0.319461137056351,-0.945890724658966,0.0202048309147358,-0.297505915164948,-0.954506158828735,0.208323419094086,-0.289785504341125,-0.934144377708435,0.0201153736561537,-0.303348273038864,-0.952667415142059,-0.171660527586937,-0.296310067176819,-0.939538836479187,-0.0882110148668289,-0.315066605806351,-0.944961309432983,0.208646237850189,-0.295135021209717,-0.932395994663239,0.0202048029750586,-0.297508001327515,-0.954505503177643,
- 0.106762118637562,-0.284887939691544,-0.952596843242645,0.103140138089657,-0.314775764942169,-0.943545639514923,0.020086282864213,-0.305236250162125,-0.95206481218338,-0.0839471220970154,-0.290460884571075,-0.953197538852692,0.078275740146637,0.219252020120621,-0.972523272037506,0.0828119292855263,0.187314093112946,-0.978803157806396,0.290101736783981,0.275703012943268,-0.9164217710495,0.0824571922421455,0.206843584775925,-0.974893093109131,-0.276367366313934,0.0961423814296722,-0.956230998039246,0.0580788515508175,0.242929667234421,-0.968303680419922,0.29005366563797,0.275831162929535,-0.916398406028748,0.252999097108841,0.263333171606064,-0.930938839912415,0.0801489278674126,0.213703215122223,-0.973605215549469,-0.263621181249619,0.0736420825123787,-0.961811184883118,0.0842689797282219,0.201442137360573,-0.975868761539459,-0.224774599075317,0.0965976119041443,-0.969610869884491,-0.0206636935472488,0.176198393106461,-0.984137773513794,0.0802185758948326,0.213496595621109,-0.9736447930336,0.253121614456177,0.262944400310516,-0.931015431880951,-0.0188778135925531,0.171205013990402,-0.985054552555084,-0.221340700984001,0.0839356556534767,-0.971577644348145,0.0859240815043449,0.196494594216347,-0.976732790470123,-0.0205824617296457,0.17597134411335,-0.984180092811584,0.25315859913826,0.262827217578888,-0.931038558483124,0.185685440897942,0.244179546833038,-0.95178633928299,-0.228348925709724,0.109916768968105,-0.967354655265808,-0.0196207743138075,0.173282772302628,-0.984676659107208,-0.210610315203667,0.108535669744015,-0.971526384353638,-0.144576862454414,0.0867586731910706,-0.985682845115662,-0.0205346513539553,0.175837710499763,-0.984205067157745,0.186065286397934,0.243086814880371,-0.951991856098175,-0.0198184419423342,0.173835471272469,-0.984575271606445,-0.224001705646515,0.102045610547066,-0.969231724739075,-0.20866434276104,0.102378033101559,-0.972613990306854,-0.222670271992683,0.0994656756520271,-0.969806432723999,-0.020982664078474,0.177089869976044,-0.983970999717712,-0.167082861065865,0.129923358559608,-0.977344989776611,
- 0.0798589885234833,0.70744800567627,-0.702239155769348,-0.181790456175804,0.643347501754761,-0.743677496910095,-0.0928949415683746,0.673218905925751,-0.733584940433502,-0.0920814722776413,0.670936167240143,-0.735775530338287,-0.184231713414192,0.649349451065063,-0.737837374210358,-0.362300544977188,0.573653101921082,-0.734615862369537,-0.100495725870132,0.694332718849182,-0.712602853775024,0.208088546991348,0.7340287566185,-0.64645254611969,0.0727397426962852,0.725653171539307,-0.684204936027527,-0.340618431568146,0.586850047111511,-0.734565258026123,-0.0934704765677452,0.674831330776215,-0.732028663158417,-0.363486468791962,0.576680898666382,-0.731653451919556,0.202068209648132,0.753565549850464,-0.625545680522919,-0.106798715889454,0.711539208889008,-0.694482624530792,-0.00712929712608457,0.723483502864838,-0.69030487537384,-0.0147219551727176,0.740456640720367,-0.671942949295044,-0.103708408772945,0.703137874603271,-0.703449845314026,-0.35694944858551,0.619708120822906,-0.69896274805069,-0.00444487202912569,0.717367053031921,-0.696681261062622,0.271551489830017,0.744540929794312,-0.60985141992569,0.203941628336906,0.747614502906799,-0.632044613361359,-0.286286026239395,0.731703162193298,-0.618587732315063,-0.0465285629034042,0.806262314319611,-0.58972555398941,-0.386494487524033,0.679911613464355,-0.623171091079712,0.271186947822571,0.745725691318512,-0.608564615249634,-0.00298017798922956,0.714004278182983,-0.700134992599487,0.110402710735798,0.728603661060333,-0.675979256629944,-0.107736870646477,0.986443340778351,-0.123783387243748,-0.171853020787239,0.970259130001068,-0.17048154771328,-0.454013407230377,0.861428797245026,-0.227623045444489,0.109987862408161,-0.162424117326736,0.980571806430817,0.321929067373276,-0.0923744887113571,0.942246615886688,0.126571238040924,-0.192485228180885,0.973102867603302,-0.246489852666855,-0.268437296152115,0.931227266788483,0.114917792379856,-0.178187012672424,0.977263271808624,0.101183250546455,-0.13348825275898,0.985871613025665,0.322181910276413,-0.0930963009595871,0.942089140415192,
- 0.111962966620922,-0.168732836842537,0.979282140731812,0.291048854589462,-0.107268050312996,0.9506756067276,0.116434343159199,-0.183046862483025,0.976184964179993,-0.23456683754921,-0.291003704071045,0.927521049976349,-0.188058257102966,-0.271178960800171,0.943978846073151,0.00990940630435944,-0.206359714269638,0.978426039218903,0.291173905134201,-0.107697948813438,0.950588822364807,0.112040296196938,-0.16898001730442,0.97923070192337,-0.185001730918884,-0.28291454911232,0.94113427400589,0.0122755412012339,-0.213423281908035,0.976882696151733,0.118174694478512,-0.188630312681198,0.974911987781525,0.223200142383575,-0.132601737976074,0.965711414813995,0.291204422712326,-0.107802994549274,0.950567483901978,0.0099818529561162,-0.20657616853714,0.978379607200623,0.0112386317923665,-0.210329115390778,0.977566063404083,-0.191209524869919,-0.258915930986404,0.946784794330597,-0.181265518069267,-0.262925446033478,0.947635471820831,-0.112878121435642,-0.290247648954391,0.95027095079422,0.223285898566246,-0.132855921983719,0.965656638145447,0.0101539818570018,-0.20709028840065,0.978269159793854,-0.18965969979763,-0.2662553191185,0.945059537887573,0.0112597215920687,-0.21039192378521,0.97755229473114,-0.179506942629814,-0.268797963857651,0.946321785449982,0.0101065235212445,-0.206948265433311,0.978299796581268,-0.188430115580559,-0.268773913383484,0.944592356681824,-0.135580822825432,-0.245415315032005,0.959890186786652,0.0560646168887615,-0.978839695453644,0.19679893553257,0.174717336893082,-0.966084778308868,0.190142184495926,0.209821432828903,-0.9628826379776,0.169799864292145,0.0537545457482338,-0.982622444629669,0.177661418914795,-0.0115485740825534,-0.982982933521271,0.183333605527878,0.174737691879272,-0.966160416603088,0.189739286899567,0.216330379247665,-0.953923046588898,0.207923054695129,0.174920618534088,-0.966837167739868,0.18608832359314,0.358402818441391,-0.915590882301331,0.182321146130562,0.174700930714607,-0.966023862361908,0.190466567873955,-0.0116140488535166,-0.982787728309631,0.184373036026955,0.080129399895668,-0.975628077983856,0.204277187585831,
- 0.358487397432327,-0.914457082748413,0.187763795256615,0.174905896186829,-0.966782867908478,0.186383664608002,0.270761877298355,-0.946724832057953,0.174356311559677,0.265964031219482,-0.94188266992569,0.205231890082359,0.174556240439415,-0.965484797954559,0.193311080336571,0.0853033065795898,-0.980090439319611,0.179293319582939,-0.18981109559536,0.401213794946671,0.896102249622345,-0.069502517580986,0.417130410671234,0.906185209751129,-0.0376483611762524,0.404076844453812,0.913949966430664,-0.18975493311882,0.38343670964241,0.903863549232483,-0.256777882575989,0.374558091163635,0.890938460826874,-0.0694836601614952,0.417029947042465,0.906232893466949,-0.0356287732720375,0.439486056566238,0.897542536258698,-0.0686740800738335,0.412718594074249,0.908266186714172,0.120631083846092,0.436087518930435,0.891782402992249,-0.0696141272783279,0.417724668979645,0.905902862548828,-0.256917178630829,0.37529069185257,0.890589952468872,-0.167418539524078,0.412080436944962,0.895634293556213,0.120072089135647,0.441466093063354,0.889207720756531,-0.0687065497040749,0.412891507148743,0.908185005187988,0.0244022868573666,0.415908604860306,0.90907895565033,0.0156784802675247,0.443931013345718,0.895923793315887,-0.0699905082583427,0.419728696346283,0.90494704246521,-0.159631013870239,0.390517920255661,0.906649708747864,-0.126114845275879,0.009471595287323,0.991970419883728,0.00385265029035509,0.0225285738706589,0.999738872051239,0.0395958423614502,0.00653990497812629,0.999194383621216,-0.125806584954262,-0.0102038532495499,0.992002308368683,-0.182823777198792,-0.0127478269860148,0.983063042163849,0.00393492542207241,0.0220818128436804,0.999748528003693,0.0411366522312164,0.0468148849904537,0.998056292533875,0.00453394744545221,0.0188291259109974,0.999812424182892,0.184947192668915,0.0480254366993904,0.981574296951294,0.00382061372511089,0.0227024797350168,0.999735057353973,-0.182981893420219,-0.0119257187470794,0.983043968677521,-0.0992383658885956,0.0206193868070841,0.994850039482117,0.184272333979607,0.0541121624410152,0.981384515762329,
- 0.00443761609494686,0.0193522721529007,0.999802887439728,0.0921854749321938,0.0226108245551586,0.995485126972198,0.0838845819234848,0.0511965155601501,0.995159447193146,0.00325285061262548,0.0257850345224142,0.999662220478058,-0.090599536895752,-0.00412674294784665,0.995878875255585,-0.154840081930161,0.267469555139542,-0.951043963432312,-0.0400182008743286,0.297803163528442,-0.953788161277771,-0.00811715144664049,0.322895884513855,-0.946399688720703,-0.160866245627403,0.284726798534393,-0.945014655590057,-0.225212439894676,0.262939065694809,-0.938159167766571,-0.0400354415178299,0.297909259796143,-0.953754305839539,0.00627415720373392,0.287879407405853,-0.957646131515503,-0.040692113339901,0.301948457956314,-0.952455401420593,0.149414509534836,0.33024936914444,-0.931992828845978,-0.0399230644106865,0.297217905521393,-0.953974664211273,-0.225081294775009,0.262098073959351,-0.938425838947296,-0.126443937420845,0.266700804233551,-0.955448925495148,0.150745406746864,0.32473236322403,-0.933715522289276,-0.0406506955623627,0.301693737506866,-0.952537894248962,0.0491226501762867,0.32750141620636,-0.943572878837585,0.050672423094511,0.297748237848282,-0.95329874753952,-0.0395244248211384,0.294765263795853,-0.954751908779144,-0.126741126179695,0.290298670530319,-0.948505878448486,0.1178954616189,-0.614038944244385,-0.780420958995819,0.117744110524654,-0.641932964324951,-0.757666409015656,0.339125692844391,-0.557249963283539,-0.757935523986816,0.120010055601597,-0.625052273273468,-0.771302282810211,-0.252599686384201,-0.640482127666473,-0.725242137908936,0.100702702999115,-0.590646028518677,-0.800622403621674,0.339283317327499,-0.557927787303925,-0.757366120815277,0.289136916399002,-0.576430261135101,-0.764282822608948,0.118809640407562,-0.618800282478333,-0.77651172876358,-0.243895560503006,-0.660460829734802,-0.71014541387558,0.120808653533459,-0.629211723804474,-0.767787635326386,-0.20010781288147,-0.656839728355408,-0.726992726325989,0.00736846029758453,-0.641058504581451,-0.767456650733948,0.118843823671341,-0.618978261947632,-0.776364624500275,
- 0.289192795753479,-0.576774299144745,-0.764001905918121,0.00794233568012714,-0.643627345561981,-0.765297830104828,-0.198929980397224,-0.667259395122528,-0.717768609523773,0.121601715683937,-0.633342206478119,-0.7642582654953,0.00740677025169134,-0.641230225563049,-0.767312824726105,0.289204478263855,-0.576846182346344,-0.763943374156952,0.228832915425301,-0.594353437423706,-0.770960092544556,-0.20131017267704,-0.645688414573669,-0.736587166786194,0.00774020329117775,-0.642723321914673,-0.766059279441834,-0.192626088857651,-0.651508212089539,-0.733779430389404,-0.130160793662071,-0.684529602527618,-0.717270791530609,0.00737166171893477,-0.641072869300842,-0.767444610595703,0.228971302509308,-0.595011413097382,-0.770411312580109,0.00754034845158458,-0.641828656196594,-0.766811013221741,-0.20388375222683,-0.652910053730011,-0.729479193687439,-0.191718772053719,-0.656951785087585,-0.729148983955383,-0.202972233295441,-0.655233681201935,-0.727647662162781,0.00697313528507948,-0.63928484916687,-0.768938541412354,-0.144901186227798,-0.648191928863525,-0.747563302516937,0.206063866615295,-0.0990812629461288,-0.973509430885315,-0.0652573928236961,-0.142470061779022,-0.98764556646347,0.0238239504396915,-0.125626608729362,-0.991791605949402,0.0242370069026947,-0.128906488418579,-0.991360545158386,-0.0668620318174362,-0.13264262676239,-0.988906264305115,-0.257272183895111,-0.159249812364578,-0.953126728534698,0.0200048051774502,-0.095334991812706,-0.995244324207306,0.330552965402603,-0.0541787259280682,-0.942231178283691,0.202225103974342,-0.0716247037053108,-0.97671639919281,-0.233981251716614,-0.153236836194992,-0.960089206695557,0.0235390644520521,-0.123365066945553,-0.992082118988037,-0.257916152477264,-0.155000329017639,-0.953653156757355,0.328057736158371,-0.0247039124369621,-0.944334626197815,0.0167717412114143,-0.0697383210062981,-0.997424423694611,0.116922341287136,-0.0704369321465492,-0.990640103816986,0.112306773662567,-0.0443993546068668,-0.99268114566803,0.0183813013136387,-0.0824763849377632,-0.996423482894897,-0.244080752134323,-0.103826977312565,-0.964180767536163,
- 0.118509389460087,-0.079487070441246,-0.989766299724579,0.39831468462944,-0.025721438229084,-0.916888117790222,0.328845798969269,-0.0336548872292042,-0.943783760070801,-0.1524548381567,0.0221309065818787,-0.988062620162964,0.0923882722854614,0.0635589584708214,-0.993692457675934,-0.262511551380157,-0.00356978992931545,-0.964922249317169,0.398198276758194,-0.024451682344079,-0.916973531246185,0.119400523602962,-0.0845912024378777,-0.989235997200012,0.232644736766815,-0.0699596032500267,-0.970042407512665,0.0620633326470852,0.540736436843872,-0.838899433612823,-0.00250445306301117,0.502254784107208,-0.864716053009033,-0.294383585453033,0.422825783491135,-0.857062816619873,0.079353891313076,0.636103630065918,0.767512440681458,0.300916254520416,0.627478837966919,0.718136310577393,0.0917945429682732,0.610654056072235,0.786559224128723,-0.289828538894653,0.570898711681366,0.768162786960602,0.081504762172699,0.622792422771454,0.778130173683167,0.0780430659651756,0.658098638057709,0.74887615442276,0.301072478294373,0.626707375049591,0.718744218349457,0.0802074298262596,0.63086074590683,0.771739304065704,0.266385585069656,0.628051817417145,0.731156408786774,0.082132987678051,0.618840754032135,0.781210780143738,-0.281810164451599,0.552260041236877,0.784596621990204,-0.231481701135635,0.572656273841858,0.786435782909393,-0.0270392540842295,0.616851806640625,0.786614716053009,0.266432911157608,0.627717137336731,0.731426477432251,0.0802420079708099,0.630647242069244,0.771910130977631,-0.230512991547585,0.562366187572479,0.794108331203461,-0.0262666046619415,0.612808406352997,0.789794862270355,0.0828828066587448,0.614086627960205,0.784874558448792,0.199207678437233,0.631096720695496,0.749688744544983,0.266436487436295,0.627691745758057,0.731446981430054,-0.0270164236426353,0.616732537746429,0.786709010601044,-0.0265814028680325,0.614457368850708,0.788502097129822,-0.232449784874916,0.583272397518158,0.778306126594543,-0.225704908370972,0.579118192195892,0.783376932144165,-0.157241001725197,0.559461951255798,0.813804388046265,0.199327901005745,0.630441427230835,0.750207960605621,
- -0.0269968006759882,0.616629958152771,0.786790132522583,-0.235659390687943,0.575595259666443,0.783042132854462,-0.0266712959855795,0.614927768707275,0.78813225030899,-0.22502301633358,0.574490249156952,0.786972403526306,-0.0271907523274422,0.617642939090729,0.785988450050354,-0.234853252768517,0.573430299758911,0.784870445728302,-0.171182364225388,0.596636414527893,0.784041821956635,-0.118989437818527,-0.474361419677734,0.872251570224762,0.0114576034247875,-0.48503789305687,0.874418079853058,0.03731944039464,-0.502717554569244,0.863644778728485,-0.121887378394604,-0.491071850061417,0.862549662590027,-0.181750774383545,-0.480536818504334,0.857934176921844,0.0114569496363401,-0.485009104013443,0.874434053897858,0.0454667396843433,-0.468193382024765,0.88245552778244,0.0115582542493939,-0.489300727844238,0.872038662433624,0.195641040802002,-0.47998633980751,0.855182826519012,0.0114395376294851,-0.484271734952927,0.874843001365662,-0.181781575083733,-0.479609578847885,0.858446300029755,-0.0915161669254303,-0.470365315675735,0.877713680267334,0.195953920483589,-0.474870979785919,0.857962489128113,0.0115579077973962,-0.489286780357361,0.8720463514328,0.0961723104119301,-0.4964978992939,0.862693905830383,0.0924999564886093,-0.4699467420578,0.877834737300873,0.0113944951444864,-0.482366770505905,0.875895380973816,-0.0873165130615234,-0.492555916309357,0.865889430046082,-0.115861549973488,0.961724698543549,0.24831785261631,0.00406641233712435,0.966078460216522,0.258217185735703,0.0389343798160553,0.959605574607849,0.278641819953918,-0.118892215192318,0.95640766620636,0.266737639904022,-0.184826835989952,0.948834896087646,0.256029933691025,0.00405946420505643,0.966196298599243,0.257775992155075,0.0469681099057198,0.969160795211792,0.241911858320236,0.00415817461907864,0.964501678943634,0.2640440762043,0.196140319108963,0.945443332195282,0.260126650333405,0.00404530996456742,0.966435611248016,0.256877183914185,-0.184833437204361,0.949026107788086,0.255315512418747,-0.092563234269619,0.965710520744324,0.242560237646103,0.196483686566353,0.946869313716888,0.254622608423233,
- 0.00416145566850901,0.964444577693939,0.26425239443779,0.0902181640267372,0.957353711128235,0.274471372365952,0.0865896493196487,0.965885579586029,0.244064480066299,0.00402632215991616,0.966755449771881,0.255671441555023,-0.0886901095509529,0.959668695926666,0.266777187585831,-0.122338734567165,0.780185461044312,0.613468766212463,0.00985624827444553,0.779863715171814,0.62587171792984,0.0414863675832748,0.765123307704926,0.642545878887177,-0.125662073493004,0.76732611656189,0.628824055194855,-0.1865004748106,0.764715731143951,0.616787970066071,0.00985494628548622,0.779930055141449,0.625789105892181,0.0497419945895672,0.789219200611115,0.612093806266785,0.0099136820062995,0.776922047138214,0.629518747329712,0.192300826311111,0.76138162612915,0.619127154350281,0.00984555948525667,0.780408084392548,0.625192999839783,-0.186517834663391,0.765295088291168,0.61606377363205,-0.0944294109940529,0.786310434341431,0.610572636127472,0.192677721381187,0.765097260475159,0.614411473274231,0.00991174951195717,0.777021467685699,0.629396080970764,0.0908340662717819,0.76645839214325,0.635838568210602,0.087518222630024,0.785511314868927,0.612627565860748,0.00981802772730589,0.78180593252182,0.623444736003876,-0.0901104137301445,0.770262062549591,0.631329298019409,-0.107661314308643,-0.542013645172119,-0.833444833755493,0.0156720019876957,-0.538018047809601,-0.842787623405457,0.0431092754006386,-0.520762503147125,-0.852612495422363,-0.110563479363918,-0.525887608528137,-0.843337416648865,-0.172220557928085,-0.527501046657562,-0.831915080547333,0.0156594514846802,-0.538564562797546,-0.842438697814941,0.0511398427188396,-0.553026914596558,-0.831592559814453,0.0157826244831085,-0.533177018165588,-0.845856487751007,0.204383060336113,-0.52174186706543,-0.828258991241455,0.0156416390091181,-0.539339601993561,-0.841943085193634,-0.172240525484085,-0.528300762176514,-0.831403374671936,-0.076757475733757,-0.549565315246582,-0.831917226314545,0.204699814319611,-0.526479601860046,-0.825177073478699,0.0157873593270779,-0.532969057559967,-0.845987439155579,
- 0.107807330787182,-0.521406352519989,-0.846470892429352,0.104325912892818,-0.54733020067215,-0.830388903617859,0.0156155144795775,-0.540475130081177,-0.841215193271637,-0.0727657005190849,-0.528757154941559,-0.845648288726807,0.114916399121284,0.662903428077698,-0.739833295345306,0.120716698467731,0.635909914970398,-0.762263774871826,0.339859575033188,0.649466812610626,-0.680212080478668,0.117447458207607,0.649479269981384,-0.751254260540009,-0.255460441112518,0.601945757865906,-0.756572186946869,0.104492999613285,0.685303330421448,-0.720722258090973,0.339971303939819,0.648989021778107,-0.680612146854401,0.292148590087891,0.652259469032288,-0.699433207511902,0.11590526252985,0.657706618309021,-0.744303703308105,-0.246513098478317,0.583344399929047,-0.77391254901886,0.118151351809502,0.645673274993896,-0.754417836666107,-0.203603893518448,0.601194798946381,-0.772729098796844,0.00796368904411793,0.64602530002594,-0.763274490833282,0.115944489836693,0.657499194145203,-0.744480788707733,0.292205333709717,0.651915669441223,-0.699729919433594,0.00924699194729328,0.640022456645966,-0.768300712108612,-0.202432155609131,0.589924156665802,-0.78167188167572,0.119017988443375,0.640943050384521,-0.758305132389069,0.00800007302314043,0.645855665206909,-0.763417601585388,0.292218863964081,0.651833593845367,-0.699800789356232,0.227903798222542,0.656118035316467,-0.71942263841629,-0.204802170395851,0.613030314445496,-0.763052999973297,0.00868559256196022,0.64265376329422,-0.766107499599457,-0.193388491868973,0.609243094921112,-0.769040822982788,-0.129638910293579,0.588437080383301,-0.798082411289215,0.00810079276561737,0.645386040210724,-0.763813614845276,0.228068828582764,0.655330657958984,-0.720087826251984,0.00871535670012236,0.64251446723938,-0.766223967075348,-0.203011721372604,0.605270683765411,-0.76969712972641,-0.192491829395294,0.603832364082336,-0.773520112037659,-0.202156379818916,0.603174805641174,-0.77156525850296,0.0081134932115674,0.645326852798462,-0.763863503932953,-0.143944278359413,0.623871922492981,-0.768156170845032,
- 0.205158933997154,0.941691398620605,-0.266696631908417,-0.0710458159446716,0.947021961212158,-0.313212245702744,0.0224603991955519,0.954851865768433,-0.296232104301453,0.0228301882743835,0.953969359397888,-0.299033939838409,-0.0728933215141296,0.950340449810028,-0.302555114030838,-0.257251471281052,0.910985171794891,-0.322378188371658,0.0186323113739491,0.963471114635468,-0.267163306474686,0.329860091209412,0.918733656406403,-0.217073351144791,0.201316103339195,0.949555814266205,-0.240448653697968,-0.231632709503174,0.919585824012756,-0.317345529794693,0.0221312176436186,0.955630123615265,-0.2937371134758,-0.257891416549683,0.912212014198303,-0.318372905254364,0.327358394861221,0.925887823104858,-0.188595458865166,0.0154012404382229,0.970019817352295,-0.242537215352058,0.118552833795547,0.963188469409943,-0.241274178028107,0.11384329944849,0.969840586185455,-0.215520188212395,0.0169010367244482,0.967062175273895,-0.253978490829468,-0.241745740175247,0.932222127914429,-0.269297122955322,0.120144456624985,0.960750877857208,-0.250046163797379,0.398945540189743,0.89818400144577,-0.184683442115784,0.328154325485229,0.923783361911774,-0.197329744696617,-0.152501672506332,0.976922214031219,-0.149553626775742,0.0938810408115387,0.989553272724152,-0.10941082239151,-0.260180085897446,0.950354158878326,-0.170684933662415,0.398794740438461,0.898592352867126,-0.183015808463097,0.121010005474091,0.959383964538574,-0.254831373691559,0.233983606100082,0.943063855171204,-0.236394271254539,0.0647994130849838,0.919688999652863,0.387263715267181,-0.00143907417077571,0.938590526580811,0.34503036737442,-0.296265065670013,0.917111158370972,0.266709804534912,0.0793251022696495,-0.645934343338013,0.759260416030884,0.300955593585968,-0.598301112651825,0.742604553699493,0.086688369512558,-0.670336127281189,0.736976623535156,-0.291600316762924,-0.657493829727173,0.694745361804962,0.0812841132283211,-0.657336294651031,0.749200820922852,0.0723543092608452,-0.623628497123718,0.778365194797516,0.301085472106934,-0.598902404308319,0.742067039012909,
- 0.080159455537796,-0.650795936584473,0.755009353160858,0.264328598976135,-0.611594557762146,0.745709478855133,0.0819622576236725,-0.661273598670959,0.745653688907623,-0.283643633127213,-0.676824748516083,0.679304480552673,-0.230856582522392,-0.675088167190552,0.700686275959015,-0.0250449646264315,-0.667388558387756,0.744288504123688,0.264377653598785,-0.611942648887634,0.745406329631805,0.0801910161972046,-0.650979697704315,0.754847586154938,-0.229884505271912,-0.684065878391266,0.692247807979584,-0.0242862068116665,-0.671149730682373,0.740923881530762,0.0826744958758354,-0.665402710437775,0.741892278194427,0.201155409216881,-0.628467321395874,0.751375615596771,0.264385610818863,-0.611999094486237,0.745357275009155,-0.0250141248106956,-0.667541801929474,0.744152069091797,-0.024591876193881,-0.669636964797974,0.742281317710876,-0.231824710965157,-0.665696024894714,0.709299743175507,-0.227047801017761,-0.67066365480423,0.706158339977264,-0.159784808754921,-0.705089867115021,0.690881431102753,0.201168641448021,-0.628533005714417,0.751317143440247,-0.0249990653246641,-0.667616665363312,0.744085431098938,-0.232390135526657,-0.67108154296875,0.704020261764526,-0.0246910508722067,-0.669145405292511,0.742721199989319,-0.226347088813782,-0.675181150436401,0.702066540718079,-0.0252106692641974,-0.666564404964447,0.745021104812622,-0.231636017560959,-0.673140943050385,0.702300608158112,-0.174077495932579,-0.668720364570618,0.72284859418869,-0.118353568017483,-0.941424131393433,-0.315774023532867,0.00769664859399199,-0.945399165153503,-0.325824171304703,0.0371999181807041,-0.938009977340698,-0.344606280326843,-0.12127597630024,-0.934745967388153,-0.333979517221451,-0.181210353970528,-0.928442299365997,-0.324280291795731,0.00769134378060699,-0.945476949214935,-0.325598478317261,0.0449253506958485,-0.95023250579834,-0.308285385370255,0.00781289208680391,-0.943687081336975,-0.330747097730637,0.199146538972855,-0.924850821495056,-0.32402440905571,0.00767145166173577,-0.945766687393188,-0.324756115674973,-0.181241735816002,-0.928788661956787,-0.323269724845886,
- -0.0889165922999382,-0.946309506893158,-0.310792863368988,0.199436187744141,-0.926643371582031,-0.318680554628372,0.00781560130417347,-0.943646609783173,-0.330862522125244,0.101075932383537,-0.935689389705658,-0.338037103414536,0.0975951105356216,-0.945726871490479,-0.309961169958115,0.0076298750936985,-0.946368932723999,-0.322997868061066,-0.0848889723420143,-0.93868613243103,-0.334158927202225,-0.116916663944721,-0.0774346813559532,0.990118384361267,0.00136334600392729,-0.0865724757313728,0.996244609355927,0.0336889959871769,-0.106864757835865,0.99370276927948,-0.119913846254349,-0.096385270357132,0.988094389438629,-0.188509270548821,-0.0873399972915649,0.978179931640625,0.00135488307569176,-0.0860350802540779,0.996291279792786,0.041870005428791,-0.0686708390712738,0.996760368347168,0.00145894754678011,-0.0926431566476822,0.99569833278656,0.192517936229706,-0.0920067951083183,0.976970613002777,0.00134014606010169,-0.0850992873311043,0.996371567249298,-0.18851563334465,-0.086612768471241,0.978243350982666,-0.0929573625326157,-0.0716912597417831,0.993085741996765,0.192899852991104,-0.0860582962632179,0.977437257766724,0.00146291719283909,-0.0928952246904373,0.995674908161163,0.0909189656376839,-0.103402361273766,0.990475475788116,0.0875286683440208,-0.0729141607880592,0.993490040302277,0.00132176175247878,-0.0839318707585335,0.996470630168915,-0.0893061980605125,-0.0958179607987404,0.991384565830231,-0.115953393280506,-0.470135539770126,0.87494421005249,0.00757266953587532,-0.480864524841309,0.876762330532074,0.0408314168453217,-0.500255584716797,0.864914536476135,-0.119158439338207,-0.487212002277374,0.865116000175476,-0.189264103770256,-0.474351197481155,0.859749972820282,0.00756905972957611,-0.480635315179825,0.876888036727905,0.0494941025972366,-0.465275675058365,0.883781015872955,0.00764202512800694,-0.48526856303215,0.874331891536713,0.188399896025658,-0.477832645177841,0.858010172843933,0.00755789969116449,-0.479926645755768,0.877276062965393,-0.189275696873665,-0.473642617464066,0.86013799905777,-0.0960992500185966,-0.46540692448616,0.879864513874054,
- 0.188822329044342,-0.472260713577271,0.860997080802917,0.00764143373817205,-0.485231012105942,0.87435257434845,0.0910709574818611,-0.493318736553192,0.865068018436432,0.0876243785023689,-0.46669265627861,0.880068123340607,0.00753104267641902,-0.478221207857132,0.878207147121429,-0.0920629501342773,-0.487811893224716,0.868080615997314,-0.106618531048298,0.726924598217011,-0.678390204906464,0.017401559278369,0.736665368080139,-0.676033616065979,0.0489954352378845,0.750135600566864,-0.659466505050659,-0.109470091760159,0.739368379116058,-0.66434234380722,-0.177448928356171,0.727052092552185,-0.663254976272583,0.0173975992947817,0.73649662733078,-0.676217436790466,0.0573651380836964,0.723283112049103,-0.688164889812469,0.0174817219376564,0.740060925483704,-0.672312617301941,0.203862592577934,0.72521448135376,-0.657650411128998,0.0173844285309315,0.735938787460327,-0.676824867725372,-0.177465751767159,0.726449608802795,-0.663910329341888,-0.0856503173708916,0.724268853664398,-0.684177339076996,0.20420329272747,0.721230208873749,-0.661912381649017,0.0174813363701105,0.740045309066772,-0.672329783439636,0.108373776078224,0.743343412876129,-0.660072505474091,0.104642428457737,0.72236955165863,-0.683543860912323,0.0173523053526878,0.734580755233765,-0.678299367427826,-0.0816222056746483,0.741485476493835,-0.665985822677612
- }
- TangentsW: *5193 {
- 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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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: *15579 {
- a: 0.130980730056763,-0.55796754360199,-0.819460988044739,0.0246117897331715,-0.572681367397308,-0.819408535957336,0.326740980148315,-0.513345181941986,-0.7935471534729,-0.256208926439285,0.0195242781192064,-0.966424226760864,-0.0524502955377102,0.044496301561594,-0.997631728649139,0.027888298034668,0.0681987330317497,-0.997281908988953,0.0504938773810863,-0.741283595561981,-0.669289946556091,0.305703222751617,-0.693905115127563,-0.651951849460602,0.297078669071198,-0.702446222305298,-0.646771669387817,-0.256136655807495,0.0189480166882277,-0.966454863548279,-0.300672799348831,0.0143891163170338,-0.953618824481964,-0.0522182807326317,0.042363204061985,-0.997736752033234,-0.195468887686729,-0.019785862416029,-0.980510294437408,-0.0481414273381233,0.00520430132746696,-0.99882698059082,-0.297818183898926,-0.0229202378541231,-0.954347431659698,-0.296272188425064,-0.041132777929306,-0.954217433929443,-0.31228244304657,-0.0434207506477833,-0.948996484279633,-0.194727674126625,-0.0400144644081593,-0.980040788650513,0.291590303182602,-0.411043077707291,-0.863723754882813,0.00940886791795492,-0.464246839284897,-0.885655879974365,0.0802432373166084,-0.425884693861008,-0.901212096214294,-0.192317679524422,-0.0947477221488953,-0.976748049259186,0.0672279521822929,-0.0834289342164993,-0.994243443012238,-0.037212498486042,-0.0915606394410133,-0.99510395526886,0.0721733942627907,-0.190550625324249,-0.979020774364471,0.219000682234764,-0.181928545236588,-0.958614051342011,0.257086634635925,-0.164590790867805,-0.952269017696381,0.24848011136055,0.0529546998441219,-0.96718841791153,0.210999891161919,0.0657980665564537,-0.975269138813019,0.210214331746101,0.0434370711445808,-0.976689994335175,0.216123506426811,-0.0730443075299263,-0.973629891872406,0.39687305688858,-0.0654951483011246,-0.915533840656281,0.259878098964691,-0.0747841820120811,-0.962741255760193,0.404786467552185,0.035551194101572,-0.913719892501831,0.211537733674049,0.0216863695532084,-0.977129220962524,0.149607300758362,0.039783027023077,-0.987944841384888,
- 0.2150789052248,-0.0475659072399139,-0.975437641143799,0.0657843127846718,-0.054858572781086,-0.996324717998505,0.147887036204338,-0.0608543641865253,-0.987130284309387,0.149506896734238,0.0300453267991543,-0.988304078578949,0.377344161272049,0.028167687356472,-0.925644636154175,0.4039526283741,0.0217973329126835,-0.91452020406723,-0.192776799201965,-0.0852844417095184,-0.977529466152191,0.0066446359269321,-0.0765858814120293,-0.997040867805481,0.0667657777667046,-0.074169747531414,-0.995008230209351,0.147103160619736,-0.0900924950838089,-0.985009670257568,0.066716268658638,-0.0731845647096634,-0.995084404945374,0.00650183903053403,-0.0853021591901779,-0.99633401632309,-0.148883178830147,-0.0672036856412888,-0.986568510532379,0.00694972975179553,-0.057840920984745,-0.99830162525177,-0.193275570869446,-0.0745598003268242,-0.9783074259758,-0.149268075823784,-0.0515440031886101,-0.987452507019043,-0.194318264722824,-0.0503409989178181,-0.979645967483521,-0.311810374259949,-0.0538864061236382,-0.948615074157715,0.00649717636406422,-0.0855862572789192,-0.996309697628021,0.0175770856440067,-0.0796512886881828,-0.996667802333832,0.147089973092079,-0.0905470848083496,-0.984970033168793,0.00694575486704707,-0.058086171746254,-0.998287439346313,-0.148873284459114,-0.0675868913531303,-0.986543834209442,0.0172158200293779,-0.0635844543576241,-0.99782806634903,-0.31181925535202,-0.0536963380873203,-0.948622941970825,-0.167206078767776,-0.058092474937439,-0.98420912027359,-0.149270012974739,-0.0514606200158596,-0.987456440925598,0.0170938260853291,-0.0581996329128742,-0.998158633708954,-0.149016693234444,-0.0619399845600128,-0.986892938613892,-0.166981533169746,-0.0480283349752426,-0.984789550304413,-0.167412862181664,-0.0681140422821045,-0.98353111743927,-0.311397314071655,-0.062472078949213,-0.948224127292633,-0.29567950963974,-0.0638198629021645,-0.953153014183044,-0.295650213956833,-0.0631182715296745,-0.953208923339844,-0.149029091000557,-0.0867102816700935,-0.985023677349091,-0.167413473129272,-0.068144865334034,-0.983528852462769,
- -0.136185273528099,-0.0022700026165694,-0.990680813789368,0.0170316584408283,-0.0554633922874928,-0.998315453529358,-0.166862398386002,-0.0429725311696529,-0.985043406486511,-0.148348852992058,-0.0820675790309906,-0.985523998737335,-0.295506715774536,-0.0597340539097786,-0.95347136259079,-0.215225026011467,-0.0735659226775169,-0.973789632320404,-0.207596138119698,-0.0340851806104183,-0.977620601654053,-0.0104088606312871,-0.0833947956562042,-0.996462225914001,-0.143634885549545,-0.0504436790943146,-0.988344311714172,-0.0107827046886086,-0.0495205596089363,-0.998714923858643,0.0171834491193295,-0.0621536150574684,-0.997918665409088,-0.140905320644379,-0.0325482711195946,-0.989487886428833,-0.0132874194532633,-0.0922837480902672,-0.995644092559814,-0.0180157292634249,-0.0827389135956764,-0.996408402919769,-0.144753038883209,-0.0578603893518448,-0.987774610519409,0.00675511546432972,-0.03029914945364,-0.999518036842346,0.103137820959091,-0.0628312900662422,-0.992680609226227,-0.00829830393195152,-0.0381107144057751,-0.999239087104797,0.100164003670216,-0.0848934799432755,-0.991342663764954,0.0173024572432041,-0.0674209520220757,-0.9975745677948,-0.0153235821053386,-0.0703749656677246,-0.997402906417847,0.106008738279343,-0.0411316119134426,-0.993514120578766,0.0121540352702141,-0.0135648716241121,-0.99983423948288,0.196745902299881,-0.0600405372679234,-0.978614449501038,0.1472999304533,-0.0831859931349754,-0.985587537288666,0.0174620244652033,-0.0745141729712486,-0.997067153453827,0.105617016553879,-0.0685320869088173,-0.992042541503906,0.0974841862916946,-0.104429945349693,-0.989743113517761,0.105606779456139,-0.0682765990495682,-0.992061257362366,0.0174580663442612,-0.0743377804756165,-0.997080385684967,0.369969397783279,0.103181324899197,-0.923296511173248,0.149872586131096,0.126647815108299,-0.980560421943665,0.0972601845860481,0.102471172809601,-0.989969849586487,0.205320984125137,-0.0163887795060873,-0.978557467460632,0.259440958499908,-0.0266736745834351,-0.965390563011169,0.110316805541515,-0.00778276054188609,-0.99386602640152,
- 0.104178659617901,-0.0341453738510609,-0.993972301483154,0.106809109449387,-0.0350089333951473,-0.993663012981415,0.259482502937317,-0.0321855843067169,-0.96521133184433,0.0993877500295639,0.0642915740609169,-0.992969632148743,0.257292896509171,0.0740752443671227,-0.963490128517151,0.373120307922363,0.0737564489245415,-0.924846708774567,0.258888304233551,0.0141331227496266,-0.965803861618042,0.214549839496613,0.0331316478550434,-0.976150929927826,0.298826962709427,0.0144904255867004,-0.954197287559509,0.29938018321991,0.0045253150165081,-0.954123198986053,0.378579527139664,0.0129170957952738,-0.925478637218475,0.259110808372498,0.00115865038242191,-0.96584689617157,0.177776768803597,-0.215902149677277,-0.960094630718231,0.067923367023468,-0.250067383050919,-0.965843021869659,0.359812766313553,-0.150811538100243,-0.920755505561829,-0.312882661819458,0.298837423324585,-0.901554584503174,-0.119094245135784,0.367763131856918,-0.922261834144592,-0.0398940183222294,0.406220436096191,-0.912903845310211,0.12989616394043,-0.452155709266663,-0.882429718971252,0.378030747175217,-0.369039118289948,-0.849059998989105,0.370099693536758,-0.380423724651337,-0.847528159618378,-0.312819242477417,0.298642039299011,-0.901641428470612,-0.35381743311882,0.282782852649689,-0.891541957855225,-0.118510119616985,0.365814089775085,-0.923111915588379,-0.244740784168243,0.278161913156509,-0.928831458091736,-0.108507469296455,0.332460999488831,-0.936854243278503,-0.344933450222015,0.249012723565102,-0.904993712902069,-0.340424239635468,0.232411921024323,-0.911096036434174,-0.355427533388138,0.225678369402885,-0.907050490379334,-0.240747094154358,0.259176701307297,-0.93534392118454,0.306729972362518,-0.0372861884534359,-0.951065957546234,0.031313069164753,-0.130032688379288,-0.991015136241913,0.0961780622601509,-0.0770106166601181,-0.992380559444427,-0.229970455169678,0.209661588072777,-0.950345098972321,0.0211222879588604,0.269552916288376,-0.962753891944885,-0.081828773021698,0.243695020675659,-0.966393709182739,0.0446625575423241,0.16589093208313,-0.985132217407227,
- 0.192387998104095,0.192785918712616,-0.962195754051209,0.228247195482254,0.214269325137138,-0.949732542037964,0.1793602257967,0.417403966188431,-0.890844464302063,0.14430595934391,0.427457869052887,-0.892443716526031,0.147144436836243,0.405835300683975,-0.902023434638977,0.171253636479378,0.299384415149689,-0.938638031482697,0.349430948495865,0.316664010286331,-0.881828725337982,0.210918202996254,0.300657570362091,-0.93011748790741,0.340532392263412,0.410792261362076,-0.845746636390686,0.151474460959435,0.387721598148346,-0.909245550632477,0.0802931636571884,0.394585967063904,-0.915344178676605,0.166502967476845,0.321500092744827,-0.932155787944794,0.0148597219958901,0.296416431665421,-0.954943180084229,0.0951688587665558,0.302060216665268,-0.948526501655579,0.0817517340183258,0.385896354913712,-0.918912768363953,0.317175805568695,0.40394914150238,-0.858035326004028,0.341924637556076,0.398447066545486,-0.85107433795929,-0.231971651315689,0.218680948019028,-0.947822690010071,-0.0425160303711891,0.265725195407867,-0.963110864162445,0.0190971121191978,0.278272420167923,-0.96031242609024,0.0993223413825035,0.274566411972046,-0.95642477273941,0.0188191048800945,0.279466956853867,-0.959970891475677,-0.0412033088505268,0.257520705461502,-0.965393900871277,-0.199903130531311,0.24349220097065,-0.949078679084778,-0.0453465580940247,0.283415973186493,-0.957924365997314,-0.234367311000824,0.229579582810402,-0.944650828838348,-0.20268115401268,0.257341235876083,-0.944825828075409,-0.238737776875496,0.24976147711277,-0.93841552734375,-0.353245735168457,0.215979009866714,-0.91025847196579,-0.0411618389189243,0.257261514663696,-0.965464770793915,-0.0277520995587111,0.26502251625061,-0.963842749595642,0.0993814691901207,0.274169325828552,-0.956532537937164,-0.0453090742230415,0.283181697130203,-0.957995533943176,-0.19983147084713,0.243137180805206,-0.949184775352478,-0.0308569110929966,0.280628144741058,-0.959320545196533,-0.353285610675812,0.216154903173447,-0.910201251506805,-0.211947843432426,0.248948991298676,-0.945041120052338,
- -0.202695220708847,0.257411807775497,-0.944803595542908,-0.0318623408675194,0.285674303770065,-0.957796931266785,-0.200895413756371,0.248420163989067,-0.947590887546539,-0.213449239730835,0.25886008143425,-0.942035615444183,-0.210477620363235,0.239362627267838,-0.947842240333557,-0.35141059756279,0.20793242752552,-0.912838816642761,-0.332066416740417,0.211790218949318,-0.919171810150146,-0.332156151533127,0.212470322847366,-0.91898250579834,-0.191989570856094,0.225782960653305,-0.955071747303009,-0.210477694869041,0.239363223314285,-0.947841942310333,-0.19356332719326,0.307429581880569,-0.931676089763641,-0.0323858596384525,0.288300395011902,-0.956992208957672,-0.214171901345253,0.263676464557648,-0.940534472465515,-0.192113101482391,0.230352029204369,-0.953955173492432,-0.332583636045456,0.215727508068085,-0.918068528175354,-0.25393134355545,0.22249273955822,-0.9412841796875,-0.252939134836197,0.262269824743271,-0.931255221366882,-0.0517510399222374,0.256082713603973,-0.965268611907959,-0.192836791276932,0.26111564040184,-0.945850312709808,-0.0586246103048325,0.288771659135818,-0.955601453781128,-0.031095938757062,0.281828135251999,-0.958960890769959,-0.193159088492393,0.278367072343826,-0.940851390361786,-0.0530915074050426,0.247086644172668,-0.967537820339203,-0.0603303797543049,0.255557209253311,-0.964909732341766,-0.192683756351471,0.253887087106705,-0.947847187519073,-0.043652318418026,0.309330254793167,-0.949952244758606,0.0479829721152782,0.294087767601013,-0.954573333263397,-0.0580189228057861,0.300168871879578,-0.952120006084442,0.0486786141991615,0.272319585084915,-0.960974752902985,-0.0300915744155645,0.276784539222717,-0.960460722446442,-0.059698935598135,0.26805254817009,-0.961552858352661,0.0472910329699516,0.314867734909058,-0.947956681251526,-0.0410856567323208,0.325820714235306,-0.944538414478302,0.143870979547501,0.308130472898483,-0.940402448177338,0.0983434990048409,0.281116306781769,-0.954621493816376,-0.0287352055311203,0.269967585802078,-0.962440550327301,0.0544196330010891,0.288482189178467,-0.955937504768372,
- 0.0492710173130035,0.253015160560608,-0.966206967830658,0.0543679893016815,0.288718968629837,-0.955869078636169,-0.028767516836524,0.270130038261414,-0.962393999099731,0.297829657793045,0.471372038125992,-0.830124020576477,0.0666112527251244,0.472429066896439,-0.87884795665741,0.0184349045157433,0.445461988449097,-0.89511102437973,0.145299971103668,0.350303888320923,-0.925297319889069,0.199098542332649,0.345190644264221,-0.91717129945755,0.0461621433496475,0.347110092639923,-0.936687588691711,0.0472697503864765,0.320932745933533,-0.945921659469604,0.0470900349318981,0.320753276348114,-0.945991575717926,0.200078502297401,0.339837074279785,-0.918955564498901,0.0265752002596855,0.411311954259872,-0.911107122898102,0.180751770734787,0.437685817480087,-0.880772471427917,0.305643200874329,0.445168405771255,-0.841669380664825,0.191909670829773,0.383096694946289,-0.903552889823914,0.14656138420105,0.39702445268631,-0.906030535697937,0.234159678220749,0.38656222820282,-0.892041981220245,0.236317858099937,0.377582848072052,-0.89531284570694,0.32090625166893,0.389890193939209,-0.863136649131775,0.194245189428329,0.371035784482956,-0.908075571060181,0.136238560080528,-0.891765058040619,-0.431502223014832,0.0243192631751299,-0.905457198619843,-0.423740565776825,0.321992248296738,-0.842607915401459,-0.431662917137146,-0.253866285085678,-0.466386884450912,-0.84736955165863,-0.0515173599123955,-0.460386663675308,-0.886222362518311,0.0340338945388794,-0.438329786062241,-0.898169636726379,0.049835741519928,-0.976606607437134,-0.209179639816284,0.303449362516403,-0.927664518356323,-0.217616826295853,0.291814178228378,-0.933132231235504,-0.21002085506916,-0.253806471824646,-0.466808795928955,-0.847155153751373,-0.300055503845215,-0.464457452297211,-0.833214223384857,-0.0512726344168186,-0.462419658899307,-0.885177493095398,-0.191118717193604,-0.507908999919891,-0.839941740036011,-0.047247763723135,-0.495193690061569,-0.867496907711029,-0.297112494707108,-0.49706181883812,-0.815262973308563,-0.29552885890007,-0.512693703174591,-0.806106626987457,
- -0.310226857662201,-0.512476563453674,-0.80070424079895,-0.190420866012573,-0.525271534919739,-0.829355001449585,0.290321558713913,-0.788033962249756,-0.542877614498138,0.00931914430111647,-0.844478785991669,-0.535507917404175,0.0844145566225052,-0.820351362228394,-0.565595328807831,-0.188186258077621,-0.570297658443451,-0.799591481685638,0.0686316415667534,-0.568866848945618,-0.819560945034027,-0.0365279465913773,-0.576748430728912,-0.816104769706726,0.0744853019714355,-0.654855370521545,-0.752074718475342,0.221801728010178,-0.636318385601044,-0.738852441310883,0.256765902042389,-0.619039833545685,-0.742200076580048,0.252319037914276,-0.436389803886414,-0.863654494285584,0.211524859070778,-0.430943161249161,-0.877237260341644,0.212484449148178,-0.450046420097351,-0.86735725402832,0.218710482120514,-0.549958050251007,-0.806047081947327,0.40198227763176,-0.513794004917145,-0.757908940315247,0.264151096343994,-0.545435667037964,-0.795439600944519,0.410094916820526,-0.4252550303936,-0.806833505630493,0.21392098069191,-0.469908595085144,-0.85640162229538,0.147340148687363,-0.460521996021271,-0.875334441661835,0.217569619417191,-0.528084218502045,-0.820847451686859,0.0669591277837753,-0.545169711112976,-0.835647344589233,0.145972907543182,-0.545972287654877,-0.824988722801209,0.147272124886513,-0.468886017799377,-0.870894253253937,0.380970329046249,-0.437385857105255,-0.814588963985443,0.409229218959808,-0.437699049711227,-0.80059415102005,-0.188620567321777,-0.562471747398376,-0.805014193058014,0.00854622293263674,-0.56488299369812,-0.825126767158508,0.0681010484695435,-0.561312854290009,-0.824797034263611,0.145305514335632,-0.569825649261475,-0.808817088603973,0.0679742693901062,-0.559512853622437,-0.826029717922211,0.00841359328478575,-0.571957647800446,-0.820240020751953,-0.153370916843414,-0.551454246044159,-0.819985151290894,0.00883165933191776,-0.549400389194489,-0.835512578487396,-0.189105302095413,-0.553282916545868,-0.811244249343872,-0.153779670596123,-0.537978947162628,-0.828812718391418,-0.190038800239563,-0.533950984477997,-0.823882162570953,
- -0.309820085763931,-0.521169185638428,-0.795232176780701,0.00840945914387703,-0.572176992893219,-0.820087075233459,0.0178527105599642,-0.566823363304138,-0.823645889759064,0.145295366644859,-0.570155322551727,-0.808586657047272,0.00882785487920046,-0.549609065055847,-0.835375368595123,-0.153360560536385,-0.55177766084671,-0.819769442081451,0.0174619983881712,-0.554418623447418,-0.832054734230042,-0.309826910495758,-0.521029055118561,-0.795321345329285,-0.166166573762894,-0.542644619941711,-0.823362290859222,-0.153781801462173,-0.537904620170593,-0.828860521316528,0.017316835001111,-0.549809634685516,-0.835110604763031,-0.15351103246212,-0.546996593475342,-0.822939276695251,-0.165920585393906,-0.533828794956207,-0.829154491424561,-0.166384190320969,-0.551006376743317,-0.817745864391327,-0.309449017047882,-0.528506875038147,-0.790519952774048,-0.297713071107864,-0.531476557254791,-0.793031930923462,-0.297675311565399,-0.530791819095612,-0.793504536151886,-0.15154567360878,-0.567061305046082,-0.809614360332489,-0.166384041309357,-0.55100029706955,-0.817749977111816,-0.138704612851143,-0.496757835149765,-0.856733858585358,0.0172493327409029,-0.547666490077972,-0.836518883705139,-0.165794998407364,-0.52954375743866,-0.831922709941864,-0.150864213705063,-0.563279986381531,-0.81237655878067,-0.297516226768494,-0.527942419052124,-0.795462846755981,-0.211228370666504,-0.551887989044189,-0.806723117828369,-0.203389748930931,-0.519225299358368,-0.830082952976227,-0.0128020010888577,-0.569821059703827,-0.821669101715088,-0.146157950162888,-0.537327826023102,-0.830612361431122,-0.00595751823857427,-0.543177604675293,-0.839596688747406,0.0174134243279696,-0.552876234054565,-0.833081424236298,-0.14343236386776,-0.522420048713684,-0.840538322925568,-0.015692625194788,-0.57713109254837,-0.816500723361969,-0.0131735950708389,-0.57076621055603,-0.821006953716278,-0.147279530763626,-0.543487906455994,-0.826395571231842,0.00441471673548222,-0.525298595428467,-0.850906550884247,0.101724453270435,-0.550659239292145,-0.828508615493774,-0.00347801693715155,-0.533558905124664,-0.845755755901337,
- 0.0987343862652779,-0.56914210319519,-0.816289663314819,0.0175442919135094,-0.557031214237213,-0.830306231975555,-0.0104806041345,-0.560540914535522,-0.828060448169708,0.104602448642254,-0.53229808807373,-0.840069651603699,0.00981827080249786,-0.510978102684021,-0.859537661075592,0.198776543140411,-0.541739642620087,-0.816704392433167,0.145475178956985,-0.56419563293457,-0.812723994255066,0.0177221428602934,-0.56267786026001,-0.82648628950119,0.100938312709332,-0.556353688240051,-0.824792087078094,0.0960436686873436,-0.585281908512115,-0.805121541023254,0.100930124521255,-0.556168138980865,-0.824918270111084,0.0177175551652908,-0.562532186508179,-0.826585650444031,0.373564332723618,-0.371433794498444,-0.849992156028748,0.147346585988998,-0.381868958473206,-0.912395358085632,0.093105286359787,-0.404966831207275,-0.909578621387482,0.207597851753235,-0.503465473651886,-0.838704764842987,0.254931896924973,-0.506470322608948,-0.823709607124329,0.108935050666332,-0.503533244132996,-0.85708075761795,0.0995966866612434,-0.527017831802368,-0.843998193740845,0.105400361120701,-0.527104377746582,-0.843238830566406,0.254977226257324,-0.511068761348724,-0.820850372314453,0.0951137021183968,-0.440106749534607,-0.892893850803375,0.252728939056396,-0.418370813131332,-0.872406959533691,0.376728147268295,-0.397611856460571,-0.836648643016815,0.254349857568741,-0.471333235502243,-0.844482779502869,0.217005699872971,-0.459252119064331,-0.86139190196991,0.296048879623413,-0.465106010437012,-0.834285020828247,0.2966088950634,-0.473622560501099,-0.829279720783234,0.38220751285553,-0.450438261032104,-0.806859850883484,0.254580169916153,-0.48255068063736,-0.838053703308105,0.138506010174751,0.26978200674057,-0.952908158302307,0.0266723167151213,0.261071979999542,-0.964950799942017,0.32454451918602,0.278330862522125,-0.903992712497711,-0.26144278049469,0.751356899738312,-0.605896592140198,-0.0481003075838089,0.793130099773407,-0.60714989900589,0.0339051373302937,0.808879017829895,-0.586996793746948,0.0516021624207497,0.0372260436415672,-0.997973680496216,
- 0.307933837175369,0.0533905178308487,-0.949908554553986,0.294858574867249,0.0443772524595261,-0.954509854316711,-0.261368185281754,0.750998198986053,-0.606373190879822,-0.298760831356049,0.740400195121765,-0.602120876312256,-0.0478523187339306,0.791723966598511,-0.609001934528351,-0.191325515508652,0.738856077194214,-0.646131753921509,-0.0438417680561543,0.768593013286591,-0.638234198093414,-0.29604434967041,0.716867089271545,-0.631236433982849,-0.294558674097061,0.704948961734772,-0.645199298858643,-0.312861889600754,0.698885679244995,-0.643176674842834,-0.190651878714561,0.725387632846832,-0.661411106586456,0.293404102325439,0.397200524806976,-0.869566559791565,0.011955613270402,0.381759464740753,-0.924184381961823,0.084950864315033,0.416819334030151,-0.905011177062988,-0.188502088189125,0.688527524471283,-0.700283408164978,0.072002686560154,0.707946538925171,-0.70258617401123,-0.0332091897726059,0.70391571521759,-0.709506750106812,0.0769960731267929,0.627398788928986,-0.774882137775421,0.22449965775013,0.616482436656952,-0.754685044288635,0.25837579369545,0.623791754245758,-0.737648844718933,0.250696271657944,0.774710714817047,-0.580495238304138,0.211739271879196,0.789586186408997,-0.575951516628265,0.216372177004814,0.775113046169281,-0.593618631362915,0.221951991319656,0.698470652103424,-0.680349946022034,0.403270184993744,0.656804978847504,-0.63716584444046,0.262146949768066,0.689131677150726,-0.675556421279907,0.410904705524445,0.720361173152924,-0.558781921863556,0.217598095536232,0.762006878852844,-0.609915256500244,0.152068465948105,0.78186309337616,-0.604619979858398,0.221021950244904,0.715440332889557,-0.662792861461639,0.070535771548748,0.727926671504974,-0.682017207145691,0.150462761521339,0.716832220554352,-0.680817544460297,0.151979997754097,0.775925040245056,-0.612243711948395,0.382828027009964,0.725743234157562,-0.571611285209656,0.41012379527092,0.712251603603363,-0.569645643234253,-0.188924714922905,0.695238590240479,-0.693506121635437,0.00574421975761652,0.714542388916016,-0.699568569660187,0.0715342536568642,0.714479386806488,-0.695990085601807,
- 0.149710312485695,0.696515738964081,-0.701749742031097,0.0714756324887276,0.715286731719971,-0.695166349411011,0.00559861212968826,0.708402991294861,-0.705785989761353,-0.151488035917282,0.712420880794525,-0.685206472873688,0.00605694064870477,0.727603435516357,-0.685971260070801,-0.189404219388962,0.703125298023224,-0.685376524925232,-0.151848152279854,0.7228884100914,-0.674073100090027,-0.190284490585327,0.718524634838104,-0.668964982032776,-0.312426060438156,0.691931068897247,-0.650861978530884,0.00559368543326855,0.708194553852081,-0.705995202064514,0.0109698511660099,0.712274312973022,-0.701815485954285,0.149697676301003,0.696196854114532,-0.702068746089935,0.00605288799852133,0.727435290813446,-0.686149597167969,-0.151478588581085,0.712157189846039,-0.685482561588287,0.0106092114001513,0.723466157913208,-0.690278351306915,-0.312433779239655,0.692050516605377,-0.650731325149536,-0.166653245687485,0.716186106204987,-0.677719831466675,-0.151849940419197,0.722942590713501,-0.674014568328857,0.0104871494695544,0.72719269990921,-0.686353266239166,-0.151616230607033,0.71604984998703,-0.681384742259979,-0.166311383247375,0.724692523479462,-0.668701171875,-0.166914761066437,0.709119915962219,-0.685046255588531,-0.312033861875534,0.686030566692352,-0.657264769077301,-0.295077919960022,0.689213395118713,-0.661750614643097,-0.29504519701004,0.689745664596558,-0.661210536956787,-0.146780595183373,0.698865234851837,-0.700030624866486,-0.166911140084267,0.709221422672272,-0.684942066669464,-0.13401685655117,0.757309317588806,-0.639157354831696,0.0104254791513085,0.729063928127289,-0.684366166591644,-0.166157320141792,0.728297531604767,-0.664811611175537,-0.146098956465721,0.702248632907867,-0.696779727935791,-0.294894427061081,0.692155301570892,-0.658755123615265,-0.213009729981422,0.698615431785584,-0.683054447174072,-0.205195724964142,0.727249801158905,-0.654982805252075,-0.00515055749565363,0.70862078666687,-0.705570697784424,-0.141412705183029,0.724670112133026,-0.674429893493652,-0.00357730872929096,0.732160031795502,-0.68112325668335,
- 0.0105774449184537,0.724438726902008,-0.68925803899765,-0.13870757818222,0.736980497837067,-0.661528527736664,-0.00802730303257704,0.702263355255127,-0.711871981620789,-0.0107895256951451,0.709068655967712,-0.70505690574646,-0.142530843615532,0.719449818134308,-0.679762482643127,0.0118952225893736,0.744985580444336,-0.666974604129791,0.0991376787424088,0.720779240131378,-0.686038732528687,-0.00109237153083086,0.739916801452637,-0.672697603702545,0.0959946811199188,0.705202221870422,-0.702477633953094,0.0106947962194681,0.72083455324173,-0.693024635314941,-0.00808993261307478,0.717812836170197,-0.696189105510712,0.102083742618561,0.735268771648407,-0.67004382610321,0.0172719433903694,0.75599205493927,-0.654352903366089,0.198483914136887,0.710166454315186,-0.67547595500946,0.149899840354919,0.701375484466553,-0.696851909160614,0.0108547685667872,0.715875208377838,-0.698143899440765,0.0999225974082947,0.715487062931061,-0.691443264484406,0.0931884348392487,0.691195011138916,-0.7166348695755,0.0999141857028008,0.71565443277359,-0.691271245479584,0.0108506847172976,0.716002523899078,-0.698013424873352,0.375475823879242,0.772115111351013,-0.512695014476776,0.152225360274315,0.831919372081757,-0.533608138561249,0.0923060551285744,0.825843870639801,-0.556292593479156,0.207441687583923,0.738630175590515,-0.641399562358856,0.260717809200287,0.722113847732544,-0.640763461589813,0.106626994907856,0.75738912820816,-0.644199192523956,0.0986217334866524,0.739687979221344,-0.665684223175049,0.102904580533504,0.739285886287689,-0.665482580661774,0.26076552271843,0.718559563159943,-0.644727468490601,0.0942649394273758,0.803225040435791,-0.588169932365417,0.258431792259216,0.785281419754028,-0.562624335289001,0.378623485565186,0.754390716552734,-0.536226570606232,0.260105848312378,0.748699128627777,-0.609749615192413,0.216970056295395,0.768713474273682,-0.60166734457016,0.296391397714615,0.740787029266357,-0.602815687656403,0.296967595815659,0.734527230262756,-0.610147535800934,0.384056448936462,0.715817213058472,-0.583186388015747,
- 0.260345548391342,0.740456163883209,-0.619632840156555,0.110997505486012,0.695864498615265,-0.709543645381927,-0.0270171258598566,0.711323380470276,-0.702345430850983,0.143741428852081,0.684364259243011,-0.714831471443176,0.250459134578705,0.683690667152405,-0.685446798801422,0.111828111112118,0.706372499465942,-0.698950946331024,0.147956714034081,0.706168830394745,-0.69241201877594,-0.0144798625260592,0.748044073581696,-0.663491070270538,0.111914448440075,0.707473993301392,-0.697822093963623,-0.0491079725325108,0.738225281238556,-0.672764360904694,-0.235136136412621,0.679819881916046,-0.69466245174408,-0.0419332347810268,0.664495527744293,-0.746114790439606,-0.0623636357486248,0.678690314292908,-0.731772005558014,0.11195332556963,0.707970499992371,-0.697312116622925,0.250449448823929,0.684982895851135,-0.684158980846405,0.138999491930008,0.698656976222992,-0.701824486255646,0.328106075525284,0.671275973320007,-0.664631545543671,0.13901025056839,0.698375821113586,-0.702102184295654,0.250446677207947,0.685333132743835,-0.683809161186218,-0.0596380941569805,0.691501319408417,-0.719909191131592,-0.112089529633522,0.697587668895721,-0.7076775431633,-0.230794787406921,0.695563971996307,-0.680385649204254,-0.295856922864914,0.675527513027191,-0.675374925136566,-0.234501659870148,0.682166278362274,-0.692573606967926,-0.11252049356699,0.693528115749359,-0.711588323116302,-0.0560664273798466,0.707835614681244,-0.704148650169373,0.110947735607624,0.695239782333374,-0.710163533687592,0.00558472378179431,0.704925000667572,-0.709259867668152,-0.110978811979294,0.707797884941101,-0.697643041610718,-0.0545231848955154,0.714736998081207,-0.697264790534973,0.00560642685741186,0.70214056968689,-0.71201628446579,0.110840640962124,0.693897426128387,-0.711491882801056,0.138885244727135,0.70160698890686,-0.698898077011108,0.00558458641171455,0.704942584037781,-0.709242403507233,-0.295915454626083,0.672832012176514,-0.678034722805023,-0.113253489136696,0.686492741107941,-0.718262732028961,-0.178154677152634,0.696775496006012,-0.694812834262848,
- -0.177857875823975,0.687568485736847,-0.704000115394592,-0.11077331751585,0.709648370742798,-0.695793390274048,0.00560045894235373,0.702908396720886,-0.711258351802826,-0.27913761138916,0.68561840057373,-0.672316610813141,-0.29597795009613,0.669700980186462,-0.681100428104401,-0.178134858608246,0.696133971214294,-0.695460617542267,0.00558513542637229,0.704872369766235,-0.70931214094162,0.13888543844223,0.701602339744568,-0.698902726173401,0.0949528217315674,0.704400599002838,-0.703422904014587,0.138917237520218,0.700788199901581,-0.699712753295898,0.32794401049614,0.673218607902527,-0.662743866443634,0.0949858948588371,0.703557789325714,-0.704261422157288,-0.0499010309576988,0.702513217926025,-0.709919035434723,-0.177951365709305,0.69038188457489,-0.701217651367188,0.0055819065310061,0.705284833908081,-0.708902180194855,-0.276884227991104,0.667603254318237,-0.69111579656601,-0.177876099944115,0.688111424446106,-0.703464806079865,-0.0498480573296547,0.701173067092896,-0.711246430873871,0.227636143565178,0.691615462303162,-0.685455918312073,0.0950247719883919,0.702561736106873,-0.705249905586243,0.32811439037323,0.671174883842468,-0.664729416370392,0.328619539737701,0.664882183074951,-0.670776426792145,0.345924109220505,0.660840570926666,-0.666052758693695,0.22764627635479,0.69046425819397,-0.686612188816071,0.00553205888718367,0.702571392059326,-0.711591780185699,0.00559694552794099,0.70335978269577,-0.710811972618103,0.0949877053499222,0.703511834144592,-0.70430713891983,0.0949203446507454,0.705223977565765,-0.702601790428162,0.227670580148697,0.687355518341064,-0.689716219902039,0.00554601708427072,0.704344034194946,-0.709837198257446,0.0054339268244803,0.690108895301819,-0.723685145378113,-0.0491504743695259,0.683699488639832,-0.728106617927551,0.00570879690349102,0.688706874847412,-0.725017428398132,0.345675557851791,0.663736045360565,-0.663296937942505,0.0707096830010414,0.682494461536407,-0.727462410926819,0.227666139602661,0.687967896461487,-0.6891068816185,0.227677449584007,0.686358332633972,-0.690706431865692,
- 0.0660810917615891,0.712531507015228,-0.698521375656128,0.00554014649242163,0.70359855890274,-0.710576117038727,0.0146757485345006,0.667044758796692,-0.744873106479645,0.0706608220934868,0.682822108268738,-0.727159559726715,0.345709323883057,0.663347244262695,-0.663668215274811,-0.118539310991764,0.723886787891388,-0.679659008979797,0.0611533001065254,0.742383778095245,-0.667178094387054,-0.00266025704331696,0.742014765739441,-0.670378267765045,-0.150618210434914,0.692441701889038,-0.70557689666748,-0.277150243520737,0.669676899909973,-0.688999712467194,-0.0498157180845737,0.70035582780838,-0.71205347776413,-0.148655444383621,0.659728527069092,-0.73665452003479,-0.0487143807113171,0.672932863235474,-0.738097727298737,0.00535396533086896,0.679953753948212,-0.733235538005829,-0.275826871395111,0.659487009048462,-0.699282824993134,-0.150157853960991,0.684421956539154,-0.71345591545105,-0.199410572648048,0.677616119384766,-0.707864344120026,0.0684814974665642,0.697205305099487,-0.713593065738678,-0.0861574113368988,0.683627068996429,-0.724728167057037,0.00547929853200912,0.695870935916901,-0.718145966529846,-0.0822813585400581,0.659035623073578,-0.747597455978394,-0.148822203278542,0.662372469902039,-0.734244287014008,0.00535228149965405,0.679739892482758,-0.733433723449707,0.0646655485033989,0.72132420539856,-0.689572155475616,-0.113236553966999,0.702230632305145,-0.702886641025543,-0.0899837911128998,0.707743763923645,-0.700715124607086,-0.0870182067155838,0.6890669465065,-0.719454407691956,-0.198490530252457,0.669602930545807,-0.71570485830307,-0.149801269173622,0.678369879722595,-0.719287037849426,-0.199574962258339,0.679062485694885,-0.706430494785309,-0.0885520502924919,0.698739409446716,-0.709874510765076,-0.112103268504143,0.697570621967316,-0.707692086696625,0.11103118211031,0.469881594181061,-0.875718772411346,-0.0359815806150436,0.48836624622345,-0.871896624565125,0.14505498111248,0.456916481256485,-0.877602636814117,0.246487364172935,0.465455025434494,-0.850056231021881,0.111859835684299,0.482915610074997,-0.868492901325226,
- 0.149368703365326,0.484405815601349,-0.861997663974762,-0.0235247276723385,0.534400343894959,-0.844904065132141,0.111947536468506,0.48431208729744,-0.86770361661911,-0.0506363585591316,0.521391272544861,-0.851814031600952,-0.235025823116302,0.458616137504578,-0.856991291046143,-0.0506901778280735,0.431572556495667,-0.900652885437012,-0.0641179755330086,0.4471355676651,-0.892165184020996,0.111985072493553,0.484910547733307,-0.867364585399628,0.246470928192139,0.467034339904785,-0.849194347858429,0.139836221933365,0.475093483924866,-0.868753135204315,0.328717768192291,0.458433896303177,-0.825701534748077,0.139840811491013,0.474914222955704,-0.868850409984589,0.246467754244804,0.467328816652298,-0.849033236503601,-0.0613522119820118,0.46285218000412,-0.884309768676758,-0.110514670610428,0.472009092569351,-0.874639332294464,-0.230678543448448,0.477735579013824,-0.847676873207092,-0.299513608217239,0.45922839641571,-0.836302042007446,-0.234392866492271,0.461444020271301,-0.855645596981049,-0.110951073467731,0.466975837945938,-0.877281844615936,-0.0577171705663204,0.483123123645782,-0.873648107051849,0.110982239246368,0.469120442867279,-0.876132965087891,0.00691331084817648,0.478628277778625,-0.877990424633026,-0.109392620623112,0.484695971012115,-0.867815136909485,-0.056142020970583,0.49177348613739,-0.868911325931549,0.00692744832485914,0.475319534540176,-0.87978595495224,0.110874950885773,0.467455357313156,-0.877036035060883,0.139773488044739,0.477520704269409,-0.867431461811066,0.00691345147788525,0.478595495223999,-0.878008306026459,-0.299548655748367,0.456296741962433,-0.837892532348633,-0.111691311001778,0.458306521177292,-0.881748497486115,-0.173631221055985,0.475180119276047,-0.862586855888367,-0.173353582620621,0.464137315750122,-0.868634045124054,-0.109185963869095,0.486993849277496,-0.866553783416748,0.00692328764125705,0.476296573877335,-0.879257559776306,-0.282202064990997,0.469504505395889,-0.836616694927216,-0.29958564043045,0.452841848134995,-0.839751601219177,-0.17361031472683,0.474311679601669,-0.863068878650665,
- 0.00691385520622134,0.478501468896866,-0.878059506416321,0.13977412879467,0.477496147155762,-0.86744487285614,0.0945090353488922,0.479392945766449,-0.872496664524078,0.139761701226234,0.477971494197845,-0.867185056209564,0.328565925359726,0.460924685001373,-0.824374198913574,0.0945118591189384,0.479293137788773,-0.872551202774048,-0.0432472564280033,0.476287454366684,-0.878225445747375,-0.173443093895912,0.467588305473328,-0.866763353347778,0.00691089825704694,0.479189723730087,-0.877684116363525,-0.280011653900146,0.44725301861763,-0.849445819854736,-0.173364728689194,0.464562326669693,-0.868404567241669,-0.0432083494961262,0.475157260894775,-0.878839373588562,0.228042185306549,0.47215324640274,-0.851509273052216,0.0945432558655739,0.478177279233933,-0.873159825801849,0.328705102205276,0.458643674850464,-0.825590074062347,0.329120308160782,0.45159113407135,-0.829304099082947,0.3438940346241,0.449017614126205,-0.824693918228149,0.228061497211456,0.470318853855133,-0.852518677711487,0.00374518684111536,0.475638598203659,-0.879632830619812,0.00692217145115137,0.4765585064888,-0.879115641117096,0.0945433527231216,0.478173643350601,-0.873161792755127,0.0944829210639,0.480316132307053,-0.871991634368896,0.228083103895187,0.468155592679977,-0.853702783584595,0.003762575564906,0.477847009897232,-0.878435015678406,0.00362702505663037,0.460632354021072,-0.88758373260498,-0.0424350462853909,0.452943980693817,-0.890528500080109,0.00699542928487062,0.458978712558746,-0.8884197473526,0.343688786029816,0.452141791582108,-0.823071002960205,0.0700198486447334,0.452741742134094,-0.88888818025589,0.228088214993477,0.467611998319626,-0.853999435901642,0.22809536755085,0.466852128505707,-0.854413032531738,0.0656478777527809,0.488603353500366,-0.870032846927643,0.00375571730546653,0.476976007223129,-0.878908276557922,0.0130559634417295,0.433916836977005,-0.900858342647552,0.0699784606695175,0.453089326620102,-0.88871431350708,0.343724817037582,0.451598465442657,-0.823354184627533,-0.115749880671501,0.50572806596756,-0.854892432689667,
- 0.0608682632446289,0.525931000709534,-0.848346412181854,-0.00322467368096113,0.524527132511139,-0.851387619972229,-0.149975374341011,0.468337774276733,-0.870727896690369,-0.280266374349594,0.449761211872101,-0.848036468029022,-0.0431778281927109,0.474271297454834,-0.879319310188293,-0.147696271538734,0.426250427961349,-0.892466485500336,-0.0419696308672428,0.439799457788467,-0.897114932537079,0.00352933304384351,0.448225498199463,-0.893913567066193,-0.278969287872314,0.437181174755096,-0.855014026165009,-0.149451613426209,0.458189010620117,-0.876200318336487,-0.202671393752098,0.452245503664017,-0.868561029434204,0.0679546967148781,0.469894140958786,-0.880103230476379,-0.0859408378601074,0.4537573158741,-0.886971652507782,0.00368127622641623,0.467522114515305,-0.883973717689514,-0.0819996446371078,0.423646062612534,-0.902108669281006,-0.147898063063622,0.429779678583145,-0.890738785266876,0.00352667062543333,0.447887301445007,-0.894083082675934,0.064273901283741,0.499528348445892,-0.863909900188446,-0.110519498586655,0.478487849235535,-0.871111273765564,-0.0898338407278061,0.483738571405411,-0.870589971542358,-0.0868456438183784,0.460703700780869,-0.883294939994812,-0.20177187025547,0.442438840866089,-0.873805463314056,-0.149042263627052,0.450472801923752,-0.880261719226837,-0.202839657664299,0.454104691743851,-0.867551147937775,-0.0884017571806908,0.472680956125259,-0.876788377761841,-0.109364733099937,0.472487092018127,-0.874525785446167,0.109787613153458,0.110158137977123,-0.987832009792328,-0.0349040515720844,0.12859158217907,-0.991083204746246,0.14978751540184,0.0972036644816399,-0.983928442001343,0.252733558416367,0.115529336035252,-0.96061372756958,0.110680647194386,0.125439688563347,-0.985908031463623,0.153923958539963,0.12792281806469,-0.97976690530777,-0.0225008837878704,0.181261405348778,-0.983177602291107,0.110773742198944,0.127057403326035,-0.985690414905548,-0.0532692186534405,0.167653053998947,-0.984405934810638,-0.235964074730873,0.107064291834831,-0.965845823287964,-0.0495552644133568,0.0652935355901718,-0.996634840965271,
- -0.0668712481856346,0.083359383046627,-0.99427342414856,0.110812671482563,0.127735167741776,-0.98559844493866,0.252721428871155,0.117340303957462,-0.960397362709045,0.139526873826981,0.117536060512066,-0.98321795463562,0.326275140047073,0.118271023035049,-0.937846720218658,0.139533683657646,0.117257781326771,-0.983250200748444,0.252718389034271,0.117774747312069,-0.960345029830933,-0.0640865042805672,0.100919485092163,-0.992828369140625,-0.11039711534977,0.112753741443157,-0.987471044063568,-0.231759399175644,0.127969443798065,-0.964319169521332,-0.30022656917572,0.115109637379646,-0.946896910667419,-0.235333502292633,0.110237039625645,-0.965642750263214,-0.110813871026039,0.10725124925375,-0.988037168979645,-0.0604201443493366,0.123797208070755,-0.990466475486755,0.109731756150723,0.109216369688511,-0.987942695617676,0.00689229462295771,0.117703504860401,-0.993024885654449,-0.109322108328342,0.126729354262352,-0.985894680023193,-0.0588276237249374,0.133650377392769,-0.989280998706818,0.0069288476370275,0.113544970750809,-0.993508696556091,0.109615556895733,0.10726160556078,-0.988169729709625,0.139445260167122,0.120833002030849,-0.982829809188843,0.00689129764214158,0.117816835641861,-0.99301153421402,-0.300265967845917,0.111726112663746,-0.947289645671844,-0.111528173089027,0.0977058783173561,-0.988946437835693,-0.177687659859657,0.120792895555496,-0.976645350456238,-0.177298575639725,0.106226593255997,-0.978407442569733,-0.109121643006802,0.129302114248276,-0.985582888126373,0.00691996701061726,0.114556819200516,-0.993392705917358,-0.280529052019119,0.124309487640858,-0.951761841773987,-0.300307929515839,0.107737928628922,-0.947738170623779,-0.177673429250717,0.120233193039894,-0.976717114448547,0.00689204689115286,0.117731794714928,-0.993021607398987,0.13944573700428,0.120814003050327,-0.982832074165344,0.0922190472483635,0.120629541575909,-0.988404870033264,0.139449194073677,0.120675958693028,-0.982848644256592,0.326122492551804,0.121063210070133,-0.937543511390686,0.0922441333532333,0.119707249104977,-0.98851466178894,
- -0.0513839349150658,0.114662252366543,-0.992074728012085,-0.177410095930099,0.110260784626007,-0.977940797805786,0.00688999472185969,0.117964498698711,-0.992993891239166,-0.278453975915909,0.0994394347071648,-0.955288112163544,-0.177352234721184,0.108153969049454,-0.978186547756195,-0.0513738170266151,0.11436328291893,-0.992109775543213,0.227901935577393,0.121071048080921,-0.966127574443817,0.0922811254858971,0.118342101573944,-0.988675534725189,0.326264321804047,0.118470415472984,-0.937825322151184,0.326686650514603,0.110490739345551,-0.938652038574219,0.342281103134155,0.109579518437386,-0.933186054229736,0.227931842207909,0.118618652224541,-0.966424703598022,0.0087211774662137,0.114165917038918,-0.993423402309418,0.00690949475392699,0.115748800337315,-0.993254482746124,0.092253603041172,0.119358785450459,-0.988555908203125,0.0921878442168236,0.121772415935993,-0.988267719745636,0.227940171957016,0.117924995720387,-0.966507613658905,0.00873853825032711,0.116660803556442,-0.993133366107941,0.00860215071588755,0.0972506329417229,-0.995222747325897,-0.0504625365138054,0.0879311487078667,-0.994847655296326,0.00709382304921746,0.0945766568183899,-0.995492398738861,0.342047482728958,0.113402038812637,-0.932814836502075,0.069711446762085,0.0886580646038055,-0.993619680404663,0.227963134646416,0.115924477577209,-0.966744184494019,0.227958515286446,0.116339102387428,-0.966695487499237,0.0650971531867981,0.130105257034302,-0.989360988140106,0.00873156823217869,0.115658223628998,-0.993250787258148,0.0133336912840605,0.0663207322359085,-0.997709274291992,0.0696626082062721,0.0891034007072449,-0.993583261966705,0.342081964015961,0.112843155860901,-0.932869970798492,-0.122758768498898,0.149984061717987,-0.981037735939026,0.0601850971579552,0.172897771000862,-0.983099341392517,-0.00361539400182664,0.170401453971863,-0.985368072986603,-0.155359745025635,0.109464876353741,-0.98177433013916,-0.278685688972473,0.102118037641048,-0.954937815666199,-0.0513478219509125,0.113595597445965,-0.992199301719666,-0.153538808226585,0.0655756816267967,-0.985964357852936,
- -0.0499394461512566,0.0731806308031082,-0.996067702770233,0.00850284937769175,0.0833806321024895,-0.996481478214264,-0.277443051338196,0.0880116894841194,-0.956702291965485,-0.154930308461189,0.0984482541680336,-0.983007907867432,-0.20640504360199,0.0962450578808784,-0.973721623420715,0.067492887377739,0.108742795884609,-0.991776049137115,-0.0818521529436111,0.0921317264437675,-0.992376923561096,0.00865699164569378,0.105003863573074,-0.994434118270874,-0.0781010538339615,0.0589270666241646,-0.995202422142029,-0.153691351413727,0.0689981356263161,-0.985706984996796,0.00850009173154831,0.0829982161521912,-0.996513545513153,0.0636873468756676,0.142522946000099,-0.987740397453308,-0.117412112653255,0.118580967187881,-0.985978186130524,-0.0855608880519867,0.12568736076355,-0.988373517990112,-0.0826376006007195,0.0991765111684799,-0.991632521152496,-0.205484822392464,0.0850985571742058,-0.974953472614288,-0.154598399996758,0.0902429595589638,-0.983847320079803,-0.206569314002991,0.0982672348618507,-0.973484814167023,-0.0841325223445892,0.112675167620182,-0.990063667297363,-0.1162940710783,0.112088114023209,-0.986869871616364,0.111124739050865,-0.147882997989655,-0.982742130756378,-0.0308813564479351,-0.132044419646263,-0.990762650966644,0.147338509559631,-0.159269466996193,-0.976178586483002,0.248351335525513,-0.135923892259598,-0.959086179733276,0.111948557198048,-0.133154317736626,-0.984752595424652,0.151466175913811,-0.128545016050339,-0.980068445205688,-0.0185273885726929,-0.0792205184698105,-0.996685028076172,0.112036824226379,-0.131547272205353,-0.984958410263062,-0.0473291911184788,-0.0922721996903419,-0.994608342647552,-0.234713643789291,-0.145786538720131,-0.961070239543915,-0.0455136746168137,-0.194610252976418,-0.979824244976044,-0.0611531138420105,-0.176896572113037,-0.982327818870544,0.112073384225369,-0.130880489945412,-0.985043168067932,0.248329401016235,-0.134167149662972,-0.959339201450348,0.13783386349678,-0.139371708035469,-0.980600535869598,0.326037377119064,-0.127263262867928,-0.936751663684845,0.137835800647736,-0.139468014240265,-0.980586528778076,
- 0.248326867818832,-0.133965268731117,-0.959368169307709,-0.0583158433437347,-0.159405902028084,-0.985489249229431,-0.115211106836796,-0.145147368311882,-0.982679426670074,-0.230350717902184,-0.124861352145672,-0.9650639295578,-0.296848148107529,-0.13288152217865,-0.945634007453918,-0.234078586101532,-0.14271168410778,-0.961686432361603,-0.115660019218922,-0.150849238038063,-0.981767416000366,-0.0545814074575901,-0.136482149362564,-0.989137768745422,0.111076936125755,-0.148723110556602,-0.982620656490326,0.00891303736716509,-0.142150864005089,-0.989804863929749,-0.114054493606091,-0.130655750632286,-0.984845519065857,-0.0529585890471935,-0.126554489135742,-0.990544974803925,0.00893971230834723,-0.146116390824318,-0.989227116107941,0.110970340669155,-0.150591626763344,-0.982348084449768,0.137793749570847,-0.137391939759254,-0.98088550567627,0.00891268905252218,-0.142099037766457,-0.989812433719635,-0.296893805265427,-0.136379256844521,-0.945121586322784,-0.116413466632366,-0.160519853234291,-0.980143487453461,-0.171743154525757,-0.135248675942421,-0.975813567638397,-0.171403005719185,-0.1489227861166,-0.973880410194397,-0.113843314349651,-0.128039702773094,-0.985213458538055,0.00893268920481205,-0.145070672035217,-0.989380955696106,-0.275170385837555,-0.124594807624817,-0.953287661075592,-0.296942561864853,-0.140475749969482,-0.944506049156189,-0.171725749969482,-0.135981187224388,-0.975714802742004,0.00891332142055035,-0.1421929448843,-0.989798843860626,0.137794554233551,-0.137430876493454,-0.98088002204895,0.0915758237242699,-0.138135313987732,-0.986170649528503,0.137764438986778,-0.135962173342705,-0.981088817119598,0.325881093740463,-0.124518766999245,-0.937174797058105,0.0915995687246323,-0.139008194208145,-0.986045777797699,-0.0510520525276661,-0.144549533724785,-0.988179802894592,-0.171504855155945,-0.144966945052147,-0.974459171295166,0.00891022197902203,-0.14173336327076,-0.989864885807037,-0.273035198450089,-0.149851486086845,-0.950261175632477,-0.171436801552773,-0.147619843482971,-0.974072813987732,-0.0510216243565083,-0.145511120557785,-0.988040149211884,
- 0.223392218351364,-0.131700605154037,-0.965790390968323,0.0916362926363945,-0.140363574028015,-0.98585033416748,0.326032847166061,-0.127182215452194,-0.936764359474182,0.326483488082886,-0.13534951210022,-0.935461938381195,0.343805700540543,-0.134099274873734,-0.929416477680206,0.2234096378088,-0.133675694465637,-0.965514838695526,0.00664144521579146,-0.145824775099754,-0.989288151264191,0.00892721116542816,-0.144255384802818,-0.989500224590302,0.091610461473465,-0.139409720897675,-0.985988080501556,0.0915449410676956,-0.137003123760223,-0.986331522464752,0.223432511091232,-0.136434480547905,-0.96512359380722,0.00666392361745238,-0.143333807587624,-0.9896519780159,0.00649350509047508,-0.162080869078636,-0.986756205558777,-0.0502029620110989,-0.170801743865013,-0.984025716781616,0.00906306691467762,-0.164709255099297,-0.986300528049469,0.343596011400223,-0.130582109093666,-0.929994702339172,0.0747365728020668,-0.169171214103699,-0.982748985290527,0.223435640335083,-0.136826545000076,-0.965067386627197,0.223444059491158,-0.137911543250084,-0.964910984039307,0.0702892541885376,-0.128814950585365,-0.989174485206604,0.00665535731241107,-0.144283846020699,-0.989514052867889,0.0150744030252099,-0.192336454987526,-0.981213271617889,0.0746938362717628,-0.168779253959656,-0.982819616794586,0.343632161617279,-0.131183683872223,-0.929896652698517,-0.118901163339615,-0.10720930993557,-0.987101256847382,0.0654514506459236,-0.085852824151516,-0.994155645370483,-0.00169560499489307,-0.0890054181218147,-0.996029794216156,-0.153978765010834,-0.147042736411095,-0.977071642875671,-0.273277878761292,-0.147088184952736,-0.950623095035553,-0.050992526113987,-0.146430000662804,-0.987905979156494,-0.152105316519737,-0.190916761755943,-0.969749867916107,-0.0497156716883183,-0.185340732336044,-0.981415927410126,0.00636707898229361,-0.175788134336472,-0.984407424926758,-0.272010415792465,-0.161249339580536,-0.94868803024292,-0.15353824198246,-0.158057406544685,-0.975419819355011,-0.202800780534744,-0.157731860876083,-0.966432869434357,0.0726246237754822,-0.149899378418922,-0.986030340194702,
- -0.0854500979185104,-0.166894719004631,-0.982265055179596,0.00656115356832743,-0.154676824808121,-0.987943351268768,-0.081726998090744,-0.199683740735054,-0.976446151733398,-0.152262955904007,-0.187493562698364,-0.970392763614655,0.00636223563924432,-0.176310151815414,-0.984314203262329,0.0688986778259277,-0.116369239985943,-0.990813374519348,-0.113609224557877,-0.138779133558273,-0.983785212039948,-0.089121088385582,-0.133513078093529,-0.987031757831573,-0.0862110555171967,-0.160063251852989,-0.983334958553314,-0.201905876398087,-0.168715685606003,-0.964763700962067,-0.153197169303894,-0.166262209415436,-0.974108576774597,-0.202968701720238,-0.155633553862572,-0.966737747192383,-0.0876928269863129,-0.146629899740219,-0.985296726226807,-0.112471356987953,-0.145458549261093,-0.982950687408447,0.113936774432659,-0.485242694616318,-0.866924405097961,-0.0320522412657738,-0.473255485296249,-0.880341947078705,0.14876663684845,-0.494241982698441,-0.856500625610352,0.2471112459898,-0.466097891330719,-0.849522829055786,0.114712372422218,-0.472510010004044,-0.873827993869781,0.153115004301071,-0.466187208890915,-0.871335327625275,-0.0198713503777981,-0.426223814487457,-0.904399454593658,0.114796698093414,-0.47109517455101,-0.874580502510071,-0.051961462944746,-0.437537044286728,-0.897697925567627,-0.236389875411987,-0.475297719240189,-0.847473859786987,-0.0464622154831886,-0.527549743652344,-0.848252773284912,-0.0653098002076149,-0.51117604970932,-0.856991171836853,0.114831872284412,-0.470503300428391,-0.874894440174103,0.247096508741379,-0.464519411325455,-0.850391089916229,0.138083428144455,-0.476902037858963,-0.868042290210724,0.326120346784592,-0.449980109930038,-0.831362426280975,0.138088077306747,-0.477082490921021,-0.86794251203537,0.247093334794044,-0.464189499616623,-0.850572168827057,-0.0625712871551514,-0.496158719062805,-0.865974247455597,-0.116409957408905,-0.482729226350784,-0.867998421192169,-0.23203107714653,-0.457135051488876,-0.858597218990326,-0.297265559434891,-0.458116471767426,-0.837712645530701,-0.235753521323204,-0.47263091802597,-0.84914094209671,
- -0.116871625185013,-0.487821877002716,-0.865084290504456,-0.0589760057628155,-0.476371109485626,-0.877264142036438,0.113894209265709,-0.485927671194077,-0.866546392440796,0.00379992672242224,-0.482590645551682,-0.875837802886963,-0.115220554172993,-0.469733327627182,-0.875257134437561,-0.0574197731912136,-0.467781126499176,-0.881977319717407,0.00382761401124299,-0.486107051372528,-0.87389087677002,0.113794349133968,-0.487528055906296,-0.865660011768341,0.138020291924477,-0.474471390247345,-0.869383275508881,0.00379950320348144,-0.482536852359772,-0.875867426395416,-0.297326982021332,-0.461480408906937,-0.835842370986938,-0.117642320692539,-0.496386498212814,-0.860093414783478,-0.175385341048241,-0.470942348241806,-0.864553809165955,-0.175046175718308,-0.483019441366196,-0.857934176921844,-0.115004539489746,-0.467391788959503,-0.876537978649139,0.00382030382752419,-0.485178679227829,-0.874406695365906,-0.27612641453743,-0.452976584434509,-0.847682952880859,-0.297392278909683,-0.465348392724991,-0.833671808242798,-0.175367757678032,-0.471601188182831,-0.86419814825058,0.00380015512928367,-0.482619643211365,-0.875821828842163,0.138020947575569,-0.474496096372604,-0.869369685649872,0.0927426144480705,-0.478168070316315,-0.873358070850372,0.138008579611778,-0.474028021097183,-0.869626998901367,0.32596829533577,-0.447516143321991,-0.832750856876373,0.0927180349826813,-0.477157831192017,-0.873912930488586,-0.0443447455763817,-0.484373807907104,-0.873736560344696,-0.175148218870163,-0.479517936706543,-0.859875500202179,0.00379700143821537,-0.482219219207764,-0.876042485237122,-0.273934066295624,-0.475779116153717,-0.835819602012634,-0.17508028447628,-0.481860488653183,-0.858578681945801,-0.0443339869379997,-0.484654068946838,-0.873581647872925,0.228668704628944,-0.463733345270157,-0.855956792831421,0.0927415043115616,-0.478125512599945,-0.873381376266479,0.326107054948807,-0.44976332783699,-0.831484913825989,0.326518774032593,-0.456632226705551,-0.827570259571075,0.347960859537125,-0.452460587024689,-0.821098446846008,0.228688478469849,-0.465551167726517,-0.854964137077332,
- 0.00688420236110687,-0.485348612070084,-0.874293625354767,0.00381441623903811,-0.484430760145187,-0.874821424484253,0.0927746593952179,-0.479495674371719,-0.87262636423111,0.0927226170897484,-0.477343142032623,-0.8738112449646,0.228709638118744,-0.467605233192444,-0.85383677482605,0.00689376378431916,-0.483154624700546,-0.875507891178131,0.00681488681584597,-0.5008784532547,-0.865490794181824,-0.0434287823736668,-0.507683753967285,-0.860448241233826,0.00395676260814071,-0.50250905752182,-0.864562928676605,0.34777244925499,-0.44959369301796,-0.822751402854919,0.0751271843910217,-0.506290793418884,-0.859084129333496,0.228716045618057,-0.468248337507248,-0.85348254442215,0.228722706437111,-0.46893572807312,-0.853103280067444,0.0703066438436508,-0.469318300485611,-0.880225718021393,0.00688956212252378,-0.48412036895752,-0.874974310398102,0.014623150229454,-0.526556789875031,-0.850014209747314,0.0750730410218239,-0.505874752998352,-0.85933393239975,0.347810029983521,-0.450160890817642,-0.822425425052643,-0.120739690959454,-0.449127584695816,-0.885271906852722,0.0652636364102364,-0.430771797895432,-0.900097966194153,-0.00217820936813951,-0.435070484876633,-0.900393903255463,-0.150444582104683,-0.48278945684433,-0.862717092037201,-0.274188488721848,-0.473243176937103,-0.837174892425537,-0.0443077757954597,-0.485337048768997,-0.873203754425049,-0.148594677448273,-0.521088361740112,-0.840468049049377,-0.0429112389683723,-0.520358383655548,-0.852869153022766,0.00675908662378788,-0.512929677963257,-0.858404159545898,-0.272890537977219,-0.485913306474686,-0.830312609672546,-0.150006651878357,-0.492521971464157,-0.857274830341339,-0.207136228680611,-0.488707274198532,-0.8475022315979,0.0727827101945877,-0.488293081521988,-0.869639337062836,-0.0813300758600235,-0.50291633605957,-0.86050021648407,0.00684716552495956,-0.493726909160614,-0.869590044021606,-0.077579602599144,-0.531525850296021,-0.8434818983078,-0.148750722408295,-0.518113911151886,-0.842277407646179,0.00675855157896876,-0.513043165206909,-0.858336210250854,0.068862296640873,-0.458265036344528,-0.886143982410431,
- -0.115338392555714,-0.477568954229355,-0.870990812778473,-0.085044801235199,-0.473289638757706,-0.876792073249817,-0.0821194872260094,-0.496731013059616,-0.864010810852051,-0.206211969256401,-0.498491168022156,-0.842011392116547,-0.149669900536537,-0.499698519706726,-0.85317075252533,-0.207301571965218,-0.486919969320297,-0.848489820957184,-0.0836169272661209,-0.484835714101791,-0.870598971843719,-0.114238105714321,-0.483226090669632,-0.868010461330414,-0.168026819825172,0.984976410865784,0.039856031537056,-0.0910903140902519,0.994847774505615,0.0445044599473476,-0.206316903233528,0.977611005306244,0.0413527078926563,-0.285705089569092,0.958299040794373,-0.00596288917586207,-0.166222676634789,0.986048519611359,0.00885203201323748,-0.205284312367439,0.978699862957001,0.00226430501788855,-0.283721566200256,0.958781659603119,0.0154860112816095,-0.325324773788452,0.945472538471222,-0.0156687628477812,-0.20814037322998,0.978064954280853,0.00815675966441631,-0.205315858125687,0.978690207004547,0.00330542051233351,-0.228911116719246,0.973372161388397,-0.0120979696512222,-0.283831179141998,0.958767175674438,0.0143373310565948,-0.330381512641907,0.943769991397858,0.0121020432561636,-0.280678451061249,0.958702147006989,0.0459320917725563,-0.24039314687252,0.970366239547729,0.0245062131434679,-0.329208433628082,0.944241106510162,0.00552975619211793,-0.247431755065918,0.967739939689636,0.047507531940937,-0.424794316291809,0.905184149742126,-0.0138456597924232,-0.205678507685661,0.978491544723511,0.0158387385308743,-0.149051174521446,0.988746106624603,-0.0128389233723283,-0.225449785590172,0.973985195159912,-0.0229221042245626,-0.420168936252594,0.907175958156586,-0.0221320427954197,-0.244647622108459,0.968853116035461,0.0383559465408325,-0.275576680898666,0.958406507968903,0.074259527027607,-0.228998258709908,0.973354995250702,-0.0118242632597685,-0.162588953971863,0.986650049686432,0.00931296218186617,-0.216507121920586,0.975964486598969,-0.0248636417090893,-0.217760518193245,0.975735664367676,-0.0228139907121658,-0.163824439048767,0.986424386501312,0.0113432956859469,
- -0.16500997543335,0.986234247684479,0.0106628770008683,0.0121461125090718,-0.37922802567482,0.925223648548126,-0.0233636610209942,-0.3904088139534,0.92034512758255,0.0377976186573505,-0.367558509111404,0.929232001304626,0.154940634965897,-0.312634617090225,0.937151551246643,0.00931891333311796,-0.371469676494598,0.928398430347443,0.0370241142809391,-0.365745782852173,0.92997807264328,0.158996000885963,-0.320345968008041,0.933862268924713,-0.0891136005520821,-0.45704448223114,0.884968400001526,0.279152691364288,-0.25358659029007,0.926157474517822,0.0414461456239223,-0.376092374324799,0.925654768943787,-0.204619362950325,-0.476641833782196,0.854952335357666,0.167053818702698,-0.335663288831711,0.927050828933716,-0.082634337246418,-0.467745721340179,0.879991769790649,0.164398103952408,-0.330615639686584,0.929336726665497,-0.207360804080963,-0.470921069383621,0.857458353042603,-0.115375675261021,-0.412534385919571,0.903605997562408,-0.206185832619667,-0.473378002643585,0.85638815164566,-0.414110422134399,-0.524460852146149,0.743944466114044,0.0310270115733147,-0.351649165153503,0.935617566108704,-0.442916721105576,-0.471685290336609,0.762455105781555,-0.223776340484619,-0.4357650578022,0.871798694133759,-0.439383149147034,-0.486408174037933,0.755214869976044,-0.22510614991188,-0.432847589254379,0.872909009456635,-0.438812881708145,-0.485793560743332,0.75594174861908,-0.225392743945122,-0.432217419147491,0.873147308826447,-0.437405496835709,-0.486179172992706,0.756509244441986,-0.439053356647491,-0.48525995016098,0.756144940853119,-0.444009035825729,-0.474133551120758,0.760298192501068,-0.442459851503372,-0.4729043841362,0.761965215206146,-0.450553476810455,-0.473705947399139,0.756706178188324,-0.0540446750819683,0.467497587203979,0.882340729236603,-0.0898742005228996,0.460593491792679,0.883049547672272,-0.0248764604330063,0.475198090076447,0.87952709197998,0.101675659418106,0.503297865390778,0.858110308647156,-0.055412795394659,0.474567770957947,0.878473043441772,-0.0253587979823351,0.477159887552261,0.878450572490692,
- 0.104225769639015,0.495711445808411,0.862210631370544,-0.167173877358437,0.400545030832291,0.900897622108459,0.23124223947525,0.517796754837036,0.823658645153046,-0.0228859670460224,0.467081606388092,0.883917987346649,-0.291692137718201,0.375823438167572,0.879586517810822,0.10946661233902,0.479914218187332,0.870459318161011,-0.162708610296249,0.389211684465408,0.906664311885834,0.107743546366692,0.485138863325119,0.867773950099945,-0.293359816074371,0.38165357708931,0.876516163349152,-0.183850765228271,0.442912340164185,0.877512156963348,-0.291729092597961,0.375953048467636,0.879518866539001,-0.49872699379921,0.284261524677277,0.818820357322693,-0.0287100207060575,0.490735828876495,0.870835304260254,-0.513001382350922,0.338153421878815,0.788975179195404,-0.302635431289673,0.414652705192566,0.858181178569794,-0.516967594623566,0.319813936948776,0.794017374515533,-0.303105890750885,0.416354060173035,0.85719096660614,-0.515998423099518,0.32080939412117,0.794246137142181,-0.303250998258591,0.41687935590744,0.856884121894836,-0.509956300258636,0.322851777076721,0.797315180301666,-0.516108930110931,0.32121878862381,0.794008851051331,-0.50156557559967,0.270166486501694,0.821852803230286,-0.498895674943924,0.272160053253174,0.822819530963898,-0.509394705295563,0.267295777797699,0.817966997623444,-0.0603837855160236,-0.782158434391022,0.620146751403809,-0.0904776975512505,-0.783669710159302,0.614553153514862,-0.0285982340574265,-0.77792751789093,0.62770289182663,0.100176528096199,-0.757958948612213,0.644564270973206,-0.0602148547768593,-0.782798767089844,0.619354724884033,-0.027056846767664,-0.782439172267914,0.622138977050781,0.102918043732643,-0.763652205467224,0.637372076511383,-0.170039802789688,-0.818471610546112,0.548808395862579,0.23284900188446,-0.720692813396454,0.652980268001556,-0.0346847400069237,-0.759658396244049,0.64939671754837,-0.304957866668701,-0.768107414245605,0.563037931919098,0.0949361026287079,-0.746936857700348,0.65808242559433,-0.174332529306412,-0.810997188091278,0.558472692966461,0.0994982123374939,-0.756542444229126,0.646330893039703,
- -0.300459563732147,-0.780108332633972,0.548775911331177,-0.21190071105957,-0.737034678459167,0.641777217388153,-0.309685230255127,-0.754843354225159,0.578192532062531,-0.524419605731964,-0.709349989891052,0.470963537693024,-0.0428519584238529,-0.73399156332016,0.677805364131927,-0.523255288600922,-0.67924553155899,0.514615952968597,-0.316112875938416,-0.73563152551651,0.599098443984985,-0.497432112693787,-0.755865693092346,0.425709277391434,-0.292879432439804,-0.799081742763519,0.525061905384064,-0.504201591014862,-0.753660440444946,0.421635776758194,-0.293278872966766,-0.798118770122528,0.52630215883255,-0.502993762493134,-0.753966867923737,0.422529578208923,-0.504703164100647,-0.752491235733032,0.423121362924576,-0.51808112859726,-0.71825385093689,0.464438766241074,-0.513676881790161,-0.719295382499695,0.467707395553589,-0.524870634078979,-0.715062499046326,0.461732029914856,0.0288887433707714,-0.752819418907166,0.657592833042145,-0.00435786182060838,-0.753358364105225,0.657595753669739,-0.042086735367775,-0.753667712211609,0.655906796455383,-0.0793543383479118,-0.75788676738739,0.64754194021225,0.0288887433707714,-0.752819418907166,0.657592833042145,-0.042086735367775,-0.753667712211609,0.655906796455383,0.345284909009933,-0.673448622226715,0.653640031814575,0.0281909517943859,-0.722314834594727,0.690989553928375,-0.0793725401163101,-0.757802307605743,0.64763867855072,-0.0805932283401489,-0.752081394195557,0.654124021530151,-0.0409292690455914,-0.773869454860687,0.632021427154541,-0.271877378225327,-0.737721502780914,0.617939889431,0.344989359378815,-0.672033846378326,0.655250310897827,-0.0796661525964737,-0.756434082984924,0.649200141429901,0.13763602077961,-0.770833134651184,0.621990859508514,0.0985157340764999,-0.69974160194397,0.707570731639862,-0.0828854292631149,-0.741103708744049,0.666254699230194,-0.268977463245392,-0.746402025222778,0.608715951442719,0.344807654619217,-0.0193943418562412,0.938472986221313,0.52923595905304,0.0307345595210791,0.847917854785919,0.371774017810822,0.00824445206671953,0.928286671638489,
- 0.350515753030777,-0.0457107126712799,0.93544065952301,0.376773923635483,-0.0362182036042213,0.92559689283371,0.182601273059845,-0.0782737657427788,0.980066418647766,-0.188668861985207,-0.125276684761047,0.974017381668091,0.338329970836639,0.00916734617203474,0.94098299741745,0.176949754357338,-0.0466423965990543,0.983114063739777,0.377585262060165,-0.0441320426762104,0.924922585487366,0.265885949134827,-0.0567608550190926,0.962332010269165,0.183136478066444,-0.0813212469220161,0.979718267917633,-0.199795424938202,-0.0959823280572891,0.975125312805176,0.176266804337502,-0.0428851321339607,0.98340779542923,-0.0207685623317957,-0.0973770096898079,0.99503093957901,0.178695246577263,-0.0563075952231884,0.98229193687439,0.266467481851578,-0.0644474551081657,0.961686849594116,-0.0215375199913979,-0.0906342193484306,0.995651423931122,0.0259940810501575,-0.539255201816559,0.841741263866425,-0.00632463069632649,-0.539766073226929,0.841791331768036,-0.0420649722218513,-0.540371239185333,0.840374708175659,-0.0763315185904503,-0.546733021736145,0.833820462226868,0.0259940810501575,-0.539255201816559,0.841741263866425,-0.0420649722218513,-0.540371239185333,0.840374708175659,0.345887005329132,-0.463839113712311,0.81560754776001,0.0254367459565401,-0.499547004699707,0.865913271903992,-0.0761686116456985,-0.547679245471954,0.833214282989502,-0.0777846127748489,-0.538240671157837,0.839193999767303,-0.0409062169492245,-0.566453456878662,0.823077857494354,-0.269038885831833,-0.535357654094696,0.800631165504456,0.345552831888199,-0.461721539497375,0.816949486732483,-0.0764212980866432,-0.546211898326874,0.834153652191162,0.140807300806046,-0.565509021282196,0.812633275985718,0.1013048812747,-0.472908288240433,0.875268578529358,-0.0799602866172791,-0.525332987308502,0.847131371498108,-0.265951633453369,-0.546872138977051,0.793851733207703,0.346815019845963,0.243927285075188,0.905659317970276,0.529418349266052,0.266468584537506,0.805425941944122,0.368296176195145,0.267718642950058,0.890328407287598,0.352522492408752,0.217797711491585,0.910105526447296,
- 0.373231768608093,0.223865643143654,0.900323390960693,0.18377673625946,0.199134275317192,0.962585926055908,-0.189489260315895,0.151615351438522,0.970106601715088,0.340349197387695,0.272011041641235,0.900095760822296,0.178270995616913,0.229752913117409,0.956782758235931,0.374040871858597,0.215905070304871,0.901930510997772,0.266086012125015,0.214583322405815,0.939761817455292,0.184322267770767,0.196032539010048,0.963118135929108,-0.200538277626038,0.179941952228546,0.963018834590912,0.177625775337219,0.23326250910759,0.956053197383881,-0.0220519434660673,0.185236379504204,0.982446551322937,0.179971009492874,0.22042840719223,0.958656251430511,0.266705453395844,0.206271544098854,0.94144594669342,-0.0227289088070393,0.190922826528549,0.981341898441315,0.0261459294706583,-0.187348306179047,0.981945514678955,-0.00403548497706652,-0.18755878508091,0.982245087623596,-0.0418947339057922,-0.188727349042892,0.981135487556458,-0.0763988494873047,-0.197248831391335,0.977372050285339,0.0261459294706583,-0.187348306179047,0.981945514678955,-0.0418947339057922,-0.188727349042892,0.981135487556458,0.348437637090683,-0.12653361260891,0.92875212430954,0.0256036035716534,-0.1413963586092,0.989621937274933,-0.0762213096022606,-0.198450177907944,0.977142810821533,-0.0778636112809181,-0.187299862504005,0.979212045669556,-0.0408154167234898,-0.220990002155304,0.974421620368958,-0.271691560745239,-0.199414029717445,0.941497623920441,0.348126530647278,-0.124286495149136,0.929172098636627,-0.0764727517962456,-0.196749344468117,0.977467060089111,0.138891384005547,-0.222102552652359,0.965080142021179,0.100407838821411,-0.114318944513798,0.988356947898865,-0.0800344944000244,-0.172416478395462,0.981767296791077,-0.268524765968323,-0.21291121840477,0.939448356628418,0.34990867972374,0.548420906066895,0.759472489356995,0.534840643405914,0.532695651054382,0.655881702899933,0.371502548456192,0.566550552845001,0.735531330108643,0.34742534160614,0.558068573474884,0.753561615943909,0.372364342212677,0.559880375862122,0.740188360214233,0.182878077030182,0.560135185718536,0.807963013648987,
- -0.172090217471123,0.45975136756897,0.871214032173157,0.351810991764069,0.540853202342987,0.764007091522217,0.190078318119049,0.525675415992737,0.829177677631378,0.3738913834095,0.547455012798309,0.748664319515228,0.268884658813477,0.560002684593201,0.783644080162048,0.184660673141479,0.551827311515808,0.813257098197937,-0.177732974290848,0.471981465816498,0.863507091999054,0.193067744374275,0.51062536239624,0.837846398353577,-0.0114167872816324,0.478939861059189,0.877773463726044,0.187969326972961,0.536022305488586,0.823011338710785,0.272857844829559,0.515458643436432,0.812312126159668,-0.0166340861469507,0.5165935754776,0.856069147586823,0.0224190056324005,0.072110190987587,0.99714469909668,-0.00737601052969694,0.0714905634522438,0.997414112091064,-0.0420041903853416,0.070262610912323,0.996643781661987,-0.0726629868149757,0.0621973089873791,0.995415270328522,0.0224190056324005,0.072110190987587,0.99714469909668,-0.0420041903853416,0.070262610912323,0.996643781661987,0.342675894498825,0.116438053548336,0.932209968566895,0.0216248314827681,0.11629219353199,0.99297958612442,-0.0728071257472038,0.0632318928837776,0.995339572429657,-0.0737480744719505,0.0699983760714531,0.994817316532135,-0.040843989700079,0.0390350222587585,0.998402833938599,-0.271415382623672,0.0497008338570595,0.961178183555603,0.342385083436966,0.118533462285995,0.932052731513977,-0.0731265619397163,0.065526619553566,0.99516773223877,0.138298153877258,0.0331598892807961,0.989835381507874,0.0992670506238937,0.144132271409035,0.984566867351532,-0.076108880341053,0.0870714858174324,0.993290483951569,-0.268452197313309,0.0368718281388283,0.962587058544159,0.344960808753967,0.72656786441803,0.594223141670227,0.530938684940338,0.685010373592377,0.498863607645035,0.373977780342102,0.735578000545502,0.564858913421631,0.342588692903519,0.734082281589508,0.586307227611542,0.374772042036057,0.730996608734131,0.570254266262054,0.183558464050293,0.750199794769287,0.635221660137177,-0.170971736311913,0.669272184371948,0.723079085350037,0.347179740667343,0.719327688217163,0.6016925573349,
- 0.191032886505127,0.720385670661926,0.666746497154236,0.376348584890366,0.721440136432648,0.581279516220093,0.266632556915283,0.743257343769073,0.613576114177704,0.185350582003593,0.743310034275055,0.642756044864655,-0.176536932587624,0.679006576538086,0.712590157985687,0.194081947207451,0.707359254360199,0.6796875,-0.0137562425807118,0.688365697860718,0.725233435630798,0.188866779208183,0.729324758052826,0.657582521438599,0.270656198263168,0.708045959472656,0.652239322662354,-0.0189474057406187,0.719569325447083,0.69416207075119,0.0285765044391155,0.41950324177742,0.907303929328918,-0.00392474979162216,0.419447809457779,0.907770991325378,-0.041179895401001,0.417849868535995,0.907582342624664,-0.0727983638644218,0.409520208835602,0.9093918800354,0.0285765044391155,0.41950324177742,0.907303929328918,-0.041179895401001,0.417849868535995,0.907582342624664,0.345419734716415,0.438038796186447,0.829944133758545,0.027942081913352,0.460612326860428,0.887161493301392,-0.0727977082133293,0.409515976905823,0.909393966197968,-0.0740544348955154,0.417558908462524,0.905627250671387,-0.0400819815695286,0.388010889291763,0.920782804489136,-0.27056211233139,0.386007010936737,0.881926834583282,0.345121562480927,0.440003603696823,0.829028308391571,-0.073086217045784,0.411361962556839,0.908537149429321,0.136074110865593,0.380218207836151,0.914832174777985,0.0972932949662209,0.481825619935989,0.870849072933197,-0.0763277485966682,0.432119429111481,0.898580491542816,-0.267778009176254,0.375091791152954,0.887468934059143,0.212216347455978,-0.382749170064926,0.899148106575012,0.212157487869263,-0.383334904909134,0.89891242980957,0.101783633232117,-0.346405416727066,0.932546734809875,0.210217908024788,-0.387812912464142,0.897446155548096,0.0988990962505341,-0.353125721216202,0.930333912372589,0.172509640455246,-0.372893869876862,0.911696553230286,0.378611534833908,-0.434727907180786,0.817107677459717,0.218327239155769,-0.367076903581619,0.904205620288849,0.166566923260689,-0.401805281639099,0.900448739528656,0.0953151062130928,-0.361428320407867,0.927515268325806,
- 0.0763388052582741,-0.353872507810593,0.932173192501068,0.173872381448746,-0.366089940071106,0.914191722869873,0.369675725698471,-0.383380472660065,0.846380114555359,0.168601885437965,-0.39204078912735,0.90436577796936,0.119535177946091,-0.423371613025665,0.898035526275635,0.173621386289597,-0.367348313331604,0.913734674453735,0.0764356181025505,-0.353548437356949,0.932288110256195,0.118207484483719,-0.354480177164078,0.92756175994873,-0.470713138580322,-0.179127812385559,0.863911092281342,-0.263407617807388,-0.0264510996639729,0.964322030544281,-0.476596564054489,-0.171844899654388,0.862163007259369,-0.153639540076256,-0.180283576250076,0.971541404724121,-0.174166604876518,-0.164516463875771,0.970876038074493,-0.416863024234772,-0.309500366449356,0.854654729366302,0.019152844324708,-0.427708268165588,0.903713881969452,-0.0133818360045552,-0.414203286170959,0.910086035728455,0.178083598613739,-0.296043932437897,0.938426434993744,-0.0584289841353893,-0.342819809913635,0.937582433223724,0.0489433333277702,-0.282168328762054,0.958115756511688,0.141047164797783,-0.230992212891579,0.962677776813507,-0.0468630976974964,-0.361476004123688,0.931203067302704,0.0198564790189266,-0.317399233579636,0.948084115982056,0.0598232746124268,-0.301020920276642,0.951739251613617,-0.398076474666595,-0.349495649337769,0.848167359828949,-0.231869712471962,-0.302052766084671,0.924662411212921,-0.135728493332863,-0.212123960256577,0.967771351337433,0.0200829394161701,-0.317854583263397,0.947926759719849,-0.0536807626485825,-0.350506454706192,0.935020625591278,-0.189620196819305,-0.399064958095551,0.897101640701294,-0.170886099338531,-0.439043372869492,0.882065117359161,-0.326159834861755,-0.483767747879028,0.812150537967682,-0.328513920307159,-0.485689342021942,0.810052156448364,-0.25355938076973,-0.411497741937637,0.875429749488831,0.0268919691443443,-0.331511467695236,0.943067848682404,-0.1842390447855,-0.410728245973587,0.892949223518372,-0.309908509254456,-0.460268914699554,0.831931054592133,-0.179854229092598,-0.420123547315598,0.889465391635895,
- -0.337032437324524,-0.466157734394073,0.817989051342011,-0.199297145009041,-0.377713769674301,0.904219508171082,-0.327363342046738,-0.41625764966011,0.84827047586441,-0.257588654756546,-0.400785237550735,0.879215121269226,-0.471465229988098,0.0689335763454437,0.879186391830444,-0.262762784957886,0.242829129099846,0.933804035186768,-0.477704256772995,0.0750015079975128,0.875313460826874,-0.15651647746563,0.0976420342922211,0.982837021350861,-0.174302503466606,0.111918404698372,0.978311359882355,-0.418065845966339,-0.058732271194458,0.906516134738922,0.0164826419204474,-0.158492296934128,0.987222731113434,-0.0144315836951137,-0.145450353622437,0.989260315895081,0.180911466479301,-0.020295912399888,0.983289957046509,-0.0601007379591465,-0.0687972828745842,0.995818674564362,0.047271303832531,-0.00414338614791632,0.998873591423035,0.144124373793602,0.0487520322203636,0.988357961177826,-0.048467930406332,-0.0884516164660454,0.994900584220886,0.025998355820775,-0.0368672348558903,0.998981952667236,0.0581592693924904,-0.0240260343998671,0.998018145561218,-0.399256646633148,-0.0992682576179504,0.911449372768402,-0.226804196834564,-0.0292162615805864,0.973502159118652,-0.138733014464378,0.0664503574371338,0.988097906112671,0.0262941140681505,-0.0374975837767124,0.998950839042664,-0.0555993355810642,-0.0764132440090179,0.995524942874908,-0.184400781989098,-0.130316019058228,0.974173545837402,-0.165654644370079,-0.172930538654327,0.97090345621109,-0.327676802873611,-0.238411515951157,0.914214313030243,-0.328101724386215,-0.239832848310471,0.913690149784088,-0.255687296390533,-0.151848092675209,0.95475971698761,0.0330420881509781,-0.0518839582800865,0.998106360435486,-0.179016798734665,-0.142678305506706,0.973445475101471,-0.308414995670319,-0.208896651864052,0.928031444549561,-0.174637228250504,-0.152660295367241,0.972726404666901,-0.336659878492355,-0.2189552038908,0.915815889835358,-0.194111853837967,-0.107759281992912,0.975042819976807,-0.326023101806641,-0.162229761481285,0.931338012218475,-0.259983628988266,-0.139821320772171,0.955436408519745,
- -0.469981908798218,0.392126351594925,0.790793240070343,-0.264578998088837,0.572504699230194,0.776038885116577,-0.474584430456162,0.398569494485855,0.784800589084625,-0.152403965592384,0.458271622657776,0.875648558139801,-0.17561486363411,0.467782139778137,0.866221249103546,-0.416503995656967,0.283762454986572,0.863714814186096,0.0171481445431709,0.219342902302742,0.975497126579285,-0.0114786121994257,0.235800668597221,0.971733748912811,0.180389285087585,0.346505522727966,0.920539855957031,-0.0566910766065121,0.309052109718323,0.949353933334351,0.044505663216114,0.366422355175018,0.929383635520935,0.143207877874374,0.412794828414917,0.899495363235474,-0.0451075583696365,0.290449172258377,0.955826759338379,0.025307709351182,0.337070733308792,0.941139221191406,0.0554095134139061,0.347656339406967,0.93598347902298,-0.397690773010254,0.247987449169159,0.883370995521545,-0.226067319512367,0.335559010505676,0.914490938186646,-0.134534224867821,0.431042432785034,0.892246007919312,0.0254920776933432,0.336700260639191,0.941266775131226,-0.0520350970327854,0.301588356494904,0.952017247676849,-0.183551445603371,0.241864308714867,0.952790915966034,-0.164853259921074,0.201249554753304,0.965568244457245,-0.326140999794006,0.119928762316704,0.937682867050171,-0.324982702732086,0.118996135890484,0.938203692436218,-0.256893247365952,0.213862419128418,0.942480206489563,0.0323269627988338,0.322915732860565,0.945875585079193,-0.17814601957798,0.230088025331497,0.956725418567657,-0.306863963603973,0.152117908000946,0.939518332481384,-0.173834621906281,0.22071585059166,0.959721863269806,-0.333564341068268,0.139057278633118,0.932415068149567,-0.193312510848045,0.263204276561737,0.945173919200897,-0.324400216341019,0.196719869971275,0.925238251686096,-0.26114958524704,0.225177094340324,0.938667237758636,-0.47010326385498,0.582662165164948,0.662953794002533,-0.26480621099472,0.753144860267639,0.602204859256744,-0.477858364582062,0.583910763263702,0.656277060508728,-0.149953186511993,0.66960597038269,0.727421402931213,-0.175675064325333,0.675172626972198,0.716435790061951,
- -0.416054308414459,0.496760815382004,0.761661171913147,0.0174171663820744,0.463164240121841,0.886101305484772,-0.00928404554724693,0.479571431875229,0.877453744411469,0.179006204009056,0.571590602397919,0.800775229930878,-0.0544223971664906,0.544569849967957,0.836948096752167,0.0437542349100113,0.593341529369354,0.803760766983032,0.141956627368927,0.630174577236176,0.763366460800171,-0.04285554215312,0.52826589345932,0.847996771335602,0.0238585919141769,0.56770795583725,0.822884261608124,0.0546190030872822,0.576891303062439,0.814992785453796,-0.397278010845184,0.467602401971817,0.78963166475296,-0.231876909732819,0.557446658611298,0.797173976898193,-0.13206060230732,0.647538304328918,0.750502586364746,0.0240783225744963,0.567320466041565,0.823145031929016,-0.0496943220496178,0.537934958934784,0.841520369052887,-0.188735380768776,0.476228564977646,0.858827888965607,-0.170341357588768,0.44117084145546,0.881108582019806,-0.325272381305695,0.358129888772964,0.87518048286438,-0.327560782432556,0.355217128992081,0.875513970851898,-0.252811402082443,0.451692014932632,0.855605602264404,0.030910674482584,0.55519026517868,0.8311488032341,-0.183160200715065,0.465628117322922,0.865819156169891,-0.31201633810997,0.386341243982315,0.867978274822235,-0.179333001375198,0.45833832025528,0.870497345924377,-0.336112648248672,0.373170703649521,0.864738047122955,-0.198888748884201,0.495474874973297,0.845545947551727,-0.329597949981689,0.425716578960419,0.842692494392395,-0.256912648677826,0.461313098669052,0.849226772785187,-0.419044673442841,0.733315825462341,0.535396575927734,-0.18395958840847,0.887545883655548,0.422399342060089,-0.392756342887878,0.7574103474617,0.521605253219604,-0.106084026396275,0.84819895029068,0.518945813179016,-0.123239003121853,0.85405421257019,0.505374729633331,-0.380086600780487,0.696026146411896,0.609164953231812,-0.054061159491539,0.805108428001404,0.590658962726593,-0.0720553249120712,0.81865268945694,0.569750666618347,0.123702391982079,0.875525236129761,0.467068761587143,-0.0553937368094921,0.802926599979401,0.593498468399048,
- 0.0457321740686893,0.837859630584717,0.543966710567474,0.141487300395966,0.857763290405273,0.494189769029617,-0.0465302765369415,0.794229090213776,0.605834364891052,0.0257355254143476,0.824048936367035,0.56593382358551,0.0540953241288662,0.829111754894257,0.556459665298462,-0.346617698669434,0.661992490291595,0.664546549320221,-0.184531420469284,0.742623805999756,0.643784165382385,-0.0717580020427704,0.818379282951355,0.570181012153625,0.0349379479885101,0.812501609325409,0.581911087036133,-0.0428101755678654,0.790510296821594,0.610950708389282,-0.182002410292625,0.739186763763428,0.648442804813385,-0.202867820858955,0.766941785812378,0.608806192874908,-0.365214437246323,0.681108117103577,0.634594440460205,-0.358216762542725,0.685064315795898,0.634324550628662,-0.262889057397842,0.737044215202332,0.62261962890625,0.0242435727268457,0.825882911682129,0.563320279121399,-0.193335399031639,0.754433274269104,0.627257406711578,-0.338463336229324,0.713582992553711,0.613385617733002,-0.211967080831528,0.778602123260498,0.590634167194366,-0.366789042949677,0.69772207736969,0.615345239639282,-0.204557657241821,0.769128203392029,0.605473339557648,-0.332629770040512,0.704499244689941,0.626927614212036,-0.263682454824448,0.738332629203796,0.620754778385162,-0.0742215216159821,0.83592563867569,-0.543800950050354,-0.0285010822117329,0.869367301464081,-0.493344128131866,0.134123280644417,0.899178564548492,-0.416520208120346,-0.0997385159134865,0.852100372314453,-0.513787090778351,-0.247092947363853,0.770649313926697,-0.587405025959015,-0.0131767569109797,0.849920809268951,-0.526745676994324,0.13383674621582,0.899417638778687,-0.416095674037933,-0.0391596481204033,0.882040321826935,-0.469543844461441,0.142954379320145,0.90797746181488,-0.39387971162796,-0.0119039108976722,0.848240852355957,-0.529476881027222,-0.245951414108276,0.769200563430786,-0.589778244495392,-0.0542110465466976,0.813634037971497,-0.578844368457794,0.149090200662613,0.897622108459473,-0.414785116910934,-0.0350984148681164,0.877294361591339,-0.478667676448822,-0.0795648321509361,0.885244786739349,-0.458269715309143,
- -0.436339974403381,0.669373869895935,0.601287007331848,-0.377389550209045,0.657068312168121,0.652562916278839,-0.500789403915405,0.585724472999573,0.637288749217987,-0.424378275871277,0.617345213890076,0.662410736083984,-0.141149923205376,0.715546071529388,0.684156775474548,-0.377377063035965,0.656127452850342,0.653516113758087,-0.490446090698242,0.639982581138611,0.591510713100433,-0.377446472644806,0.662254869937897,0.647265493869781,-0.236643880605698,0.674179673194885,0.699629545211792,-0.377408295869827,0.658584415912628,0.651021957397461,-0.133934855461121,0.691167891025543,0.710174918174744,-0.0661840811371803,0.713116407394409,0.697914481163025,-0.37739571928978,0.657552361488342,0.652071595191956,-0.0664119124412537,0.709546625614166,0.701521933078766,-0.225654035806656,0.713311612606049,0.663526058197021,-0.336986899375916,0.16117998957634,0.927610397338867,-0.264026969671249,0.132595509290695,0.955357730388641,-0.389496564865112,0.059415090829134,0.919109523296356,-0.317560940980911,0.108446218073368,0.942016184329987,-0.0486425273120403,0.221043154597282,0.974050223827362,-0.268312275409698,0.154005020856857,0.950942158699036,-0.391211152076721,0.1134018227458,0.91328752040863,-0.261722266674042,0.12131728976965,0.957488179206848,-0.124071933329105,0.122285738587379,0.9847092628479,-0.262247771024704,0.123874865472317,0.95701676607132,-0.0218471437692642,0.156564354896545,0.987426102161407,0.0439367815852165,0.193260833621025,0.980163156986237,-0.260224491357803,0.114071220159531,0.958786308765411,0.0458939447999001,0.180038675665855,0.982588350772858,-0.122544772922993,0.178836360573769,0.97621738910675,-0.0581185296177864,0.727837860584259,-0.683282017707825,-0.147164270281792,0.717258095741272,-0.68108993768692,-0.0412045419216156,0.725340485572815,-0.687156021595001,-0.296971768140793,0.681957006454468,-0.668387949466705,-0.147355064749718,0.71933788061142,-0.678851723670959,-0.0583485700190067,0.730237782001495,-0.680696904659271,0.108320258557796,0.725610852241516,-0.679525971412659,-0.0585408098995686,0.732242286205292,-0.678523540496826,
- -0.0387975871562958,0.737469136714935,-0.674265563488007,-0.0556988008320332,0.702503979206085,-0.709496855735779,0.147107556462288,0.741540133953094,-0.654581964015961,-0.292063474655151,0.664249360561371,-0.688092827796936,0.108101919293404,0.723454535007477,-0.681855916976929,0.154591411352158,0.711429178714752,-0.685543596744537,-0.0565439537167549,0.711370706558228,-0.700538814067841,-0.0340955406427383,0.742699861526489,-0.668755829334259,-0.293736517429352,0.670253694057465,-0.681526839733124,0.145374417304993,0.748157858848572,-0.647399544715881,0.428751021623611,0.707603335380554,-0.561667263507843,0.14796493947506,0.738218545913696,-0.658133506774902,0.114777870476246,0.791261255741119,-0.600609600543976,-0.0245286282151937,0.712504863739014,-0.701238334178925,0.147882297635078,0.738540232181549,-0.657791197299957,0.428567111492157,0.708257377147675,-0.560983002185822,0.460263729095459,-0.519467949867249,0.719937741756439,0.00704456586390734,-0.695087015628815,0.718891203403473,0.279293566942215,-0.641436576843262,0.714530766010284,0.460978001356125,-0.522517502307892,0.717269062995911,0.250484436750412,-0.583412110805511,0.772585153579712,0.00581097509711981,-0.691733419895172,0.722129583358765,0.217730507254601,-0.532121062278748,0.81819349527359,-0.0196752734482288,-0.618930339813232,0.785199403762817,-0.20988392829895,-0.65701150894165,0.724075019359589,-0.0123615516349673,-0.640509903430939,0.767850399017334,0.249174326658249,-0.56555962562561,0.786164402961731,-0.0976526141166687,-0.632741808891296,0.768180847167969,-0.024848934262991,-0.603329002857208,0.797105193138123,-0.100289598107338,-0.621374249458313,0.777068853378296,-0.220484852790833,-0.630888342857361,0.743886053562164,0.250271439552307,-0.580408573150635,0.77491295337677,0.136892139911652,-0.597433030605316,0.790148437023163,-0.0952810347080231,-0.642773628234863,0.760107636451721,-0.184040486812592,-0.669827878475189,0.719346761703491,-0.223205775022507,-0.623954057693481,0.748906195163727,-0.0935938507318497,-0.649802207946777,0.754319250583649,
- -0.0965011343359947,-0.637634932994843,0.764270424842834,0.137869045138359,-0.633388221263886,0.761453688144684,-0.189078599214554,-0.638360261917114,0.746153771877289,0.219207301735878,-0.762127220630646,0.609188199043274,-0.248700872063637,-0.833741962909698,0.492972850799561,0.0193614419549704,-0.841271102428436,0.540266692638397,0.218377351760864,-0.759818553924561,0.612361907958984,0.00350059848278761,-0.789750576019287,0.613418102264404,-0.251527935266495,-0.827949166297913,0.501232385635376,-0.0273863933980465,-0.777943968772888,0.627736508846283,-0.262971818447113,-0.802922010421753,0.53494119644165,-0.438607335090637,-0.78398871421814,0.439300924539566,-0.245449110865593,-0.840225338935852,0.48350402712822,0.00807932112365961,-0.826943635940552,0.562226831912994,-0.330947071313858,-0.817563712596893,0.471236497163773,-0.336217492818832,-0.802604854106903,0.492730408906937,-0.440761238336563,-0.779869675636292,0.444446593523026,-0.261046200990677,-0.807318389415741,0.529237151145935,0.00768705410882831,-0.823877692222595,0.566715717315674,-0.101061947643757,-0.822873771190643,0.559164941310883,-0.333446741104126,-0.810625016689301,0.481352657079697,-0.430614918470383,-0.75002783536911,0.502024948596954,-0.474446833133698,-0.703222692012787,0.529507398605347,-0.350197672843933,-0.755777895450592,0.553318500518799,-0.343058377504349,-0.781148612499237,0.521649122238159,-0.101050741970539,-0.82304859161377,0.55890941619873,-0.428926914930344,-0.758350908756256,0.490841746330261,-0.146184206008911,0.775462090969086,-0.614238321781158,-0.229887768626213,0.760647416114807,-0.607097327709198,-0.125153079628944,0.774915158748627,-0.619550824165344,-0.378282129764557,0.708566009998322,-0.595681846141815,-0.229575663805008,0.755991101264954,-0.613002896308899,-0.145895108580589,0.772249400615692,-0.618340909481049,0.0307204481214285,0.780434310436249,-0.624482810497284,-0.146288320422173,0.776624739170074,-0.612742960453033,-0.123293124139309,0.783123433589935,-0.609521508216858,-0.143289431929588,0.744218707084656,-0.652385473251343,
- 0.0621129721403122,0.793500304222107,-0.60539186000824,-0.372946918010712,0.690206408500671,-0.620101392269135,0.0313606821000576,0.785737156867981,-0.617765069007874,0.0665806829929352,0.777284026145935,-0.62561696767807,-0.145293667912483,0.765637040138245,-0.626649558544159,-0.118758000433445,0.783234834671021,-0.610278427600861,-0.374079972505569,0.694058656692505,-0.615099012851715,0.0609076879918575,0.797755181789398,-0.599897444248199,0.343564987182617,0.779456436634064,-0.523842334747314,0.0608775354921818,0.797860860824585,-0.599759936332703,0.038745254278183,0.843962490558624,-0.535001039505005,-0.111650452017784,0.763217091560364,-0.636422693729401,0.060859352350235,0.797924757003784,-0.599676966667175,0.343502908945084,0.779664635658264,-0.523573100566864,0.328717112541199,-0.393643826246262,0.858481109142303,-0.137761443853378,-0.530924260616302,0.836146771907806,0.129870221018791,-0.505953729152679,0.852727711200714,0.329128235578537,-0.395441114902496,0.857496917247772,0.111972473561764,-0.432670742273331,0.894571542739868,-0.138715133070946,-0.527854859828949,0.83793044090271,0.107673592865467,-0.461182236671448,0.880748152732849,-0.135976567864418,-0.536633372306824,0.832787454128265,-0.319819062948227,-0.5729159116745,0.754641056060791,-0.140184581279755,-0.523099720478058,0.840663433074951,0.114359356462955,-0.464809149503708,0.877994656562805,-0.221666425466537,-0.51137775182724,0.830275118350983,-0.140706971287727,-0.521401703357697,0.841630458831787,-0.216058537364006,-0.536694049835205,0.8156458735466,-0.331388294696808,-0.543327569961548,0.771347522735596,0.11452342569828,-0.467072188854218,0.876771330833435,0.00800974294543266,-0.474380165338516,0.880283653736115,-0.222337484359741,-0.508256494998932,0.832010447978973,-0.318584054708481,-0.535711944103241,0.781995594501495,-0.352528184652328,-0.484184443950653,0.800805389881134,-0.220660701394081,-0.516017615795136,0.827668190002441,-0.223589286208153,-0.502379059791565,0.835238337516785,0.00937036518007517,-0.512211501598358,0.858808219432831,
- -0.32386639714241,-0.499838680028915,0.803288161754608,-0.0800789445638657,-0.978384017944336,0.190662324428558,0.0103731388226151,-0.979564130306244,0.200864896178246,-0.103909812867641,-0.975706815719604,0.192870855331421,0.0771613791584969,-0.975301921367645,0.206960126757622,0.0104490779340267,-0.979705095291138,0.200171917676926,-0.0797427222132683,-0.978937566280365,0.187942296266556,-0.252950549125671,-0.948347210884094,0.191451326012611,-0.0813459679484367,-0.976219296455383,0.200944557785988,-0.103969231247902,-0.975836992263794,0.192179068922997,-0.0780592560768127,-0.981580138206482,0.174376726150513,-0.261724531650543,-0.96055680513382,0.0939730927348137,0.0853052139282227,-0.979780077934265,0.180980801582336,-0.253404527902603,-0.953985333442688,0.160306423902512,-0.280453443527222,-0.944524705410004,0.170935600996017,-0.0808643475174904,-0.977056860923767,0.197030112147331,-0.164633184671402,-0.983587324619293,0.073837086558342,0.0835001170635223,-0.978848874568939,0.186769008636475,-0.261111319065094,-0.960956931114197,0.0915568023920059,-0.552852988243103,-0.828605353832245,0.0881289765238762,-0.282617717981339,-0.942141473293304,0.180268958210945,-0.253576666116714,-0.961848914623261,0.102691531181335,-0.264147073030472,-0.926493346691132,0.268023192882538,-0.28248542547226,-0.942290544509888,0.179695561528206,-0.552913129329681,-0.828532040119171,0.0884421020746231,-0.496966183185577,0.867215394973755,0.0310172196477652,-0.442314773797989,0.893178284168243,0.0811798200011253,-0.559308707714081,0.821350693702698,0.112057290971279,-0.489187479019165,0.86760675907135,0.0891859456896782,-0.215322509407997,0.975394368171692,0.0473497994244099,-0.442207545042038,0.895051181316376,0.0577588379383087,-0.545025289058685,0.838211953639984,0.01865822263062,-0.442099153995514,0.895649015903473,0.048592321574688,-0.29637485742569,0.951301991939545,0.084772989153862,-0.44207102060318,0.8957679271698,0.0466183945536613,-0.209617182612419,0.974662959575653,0.0780575722455978,-0.129245191812515,0.990058600902557,0.0554945357143879,
- -0.442184060811996,0.89520674943924,0.0554809831082821,-0.129851147532463,0.989296793937683,0.0665620714426041,-0.284705400466919,0.958048462867737,0.0329544544219971,0.0395703911781311,0.716610491275787,-0.69635021686554,0.0880402997136116,0.761018931865692,-0.642727911472321,0.234760522842407,0.800556600093842,-0.551359117031097,-0.00775716779753566,0.752374410629272,-0.658690094947815,-0.128192886710167,0.670661628246307,-0.730602204799652,0.0944032073020935,0.752486348152161,-0.651806950569153,0.236662954092026,0.798704922199249,-0.55322790145874,0.0762409716844559,0.776389062404633,-0.625625550746918,0.240913167595863,0.810950756072998,-0.533216595649719,0.0954189002513886,0.751108348369598,-0.653246879577637,-0.127228125929832,0.669365048408508,-0.731958627700806,0.0616142153739929,0.710771262645721,-0.700719594955444,0.248028337955475,0.799091935157776,-0.547662556171417,0.0797869861125946,0.771831333637238,-0.630801379680634,0.0306760892271996,0.783324837684631,-0.620855212211609,-0.144158452749252,0.537309944629669,-0.830973267555237,-0.00945518352091312,0.609281599521637,-0.792897582054138,0.141653627157211,0.680526196956635,-0.718900799751282,-0.151482313871384,0.547154247760773,-0.82321035861969,-0.174832493066788,0.512454688549042,-0.840728104114532,-0.00807994790375233,0.607132017612457,-0.794559895992279,0.156886667013168,0.66283106803894,-0.732148587703705,-0.0141944941133261,0.616647243499756,-0.787111639976501,0.190516978502274,0.689666032791138,-0.698615849018097,-0.0104926321655512,0.61089962720871,-0.791638672351837,-0.185973569750786,0.549301862716675,-0.814666390419006,0.045571394264698,0.595104694366455,-0.802355051040649,-0.0152276000007987,0.618244171142578,-0.785838603973389,0.0318126939237118,0.664316475391388,-0.746774077415466,0.19528391957283,0.67907190322876,-0.707619726657867,-0.130317181348801,0.4454006254673,-0.885796785354614,-0.0095843430608511,0.530597329139709,-0.847569823265076,0.130826786160469,0.624414145946503,-0.770059287548065,-0.157297879457474,0.475211024284363,-0.86569732427597,
- -0.169173985719681,0.439943879842758,-0.881946444511414,-0.0273673292249441,0.552434742450714,-0.833106756210327,0.180330917239189,0.57475757598877,-0.79820704460144,0.0151599338278174,0.49934709072113,-0.866269409656525,0.188249334692955,0.599579274654388,-0.777860462665558,-0.0205769781023264,0.54415762424469,-0.83873063325882,-0.180700868368149,0.466804206371307,-0.865702629089355,0.0383926294744015,0.534340023994446,-0.844397246837616,0.0176807641983032,0.496107012033463,-0.868081331253052,0.0355232506990433,0.543142795562744,-0.83888852596283,0.19935368001461,0.579628527164459,-0.790119528770447,-0.612336218357086,0.434395432472229,0.660564124584198,-0.556832134723663,0.417739063501358,0.717935979366302,-0.668592512607574,0.333134233951569,0.664835035800934,-0.591313183307648,0.344342976808548,0.729230165481567,-0.336358249187469,0.473740875720978,0.813899695873261,-0.55495285987854,0.390562355518341,0.734498739242554,-0.664719760417938,0.379720956087112,0.64339691400528,-0.556186616420746,0.407490253448486,0.724298357963562,-0.437723189592361,0.422536998987198,0.793637752532959,-0.554974317550659,0.390834301710129,0.73433780670166,-0.327658295631409,0.444454789161682,0.833726704120636,-0.26925066113472,0.476915657520294,0.836693227291107,-0.555453300476074,0.397092968225479,0.730608522891998,-0.269273787736893,0.479052186012268,0.835464298725128,-0.430731952190399,0.467650562524796,0.771863281726837,-0.00575634092092514,0.914367139339447,-0.40484544634819,0.108133733272552,0.947799026966095,-0.299973487854004,0.221575066447258,0.960718154907227,-0.167108207941055,-0.0341017730534077,0.925483226776123,-0.37725043296814,-0.0458504557609558,0.908628463745117,-0.415080815553665,0.0917205065488815,0.954997956752777,-0.282074868679047,0.260074347257614,0.945072531700134,-0.197987884283066,0.116603597998619,0.943833291530609,-0.309163987636566,0.275178879499435,0.949075043201447,-0.153405144810677,0.106865234673023,0.948378205299377,-0.298594355583191,-0.0540782511234283,0.914768755435944,-0.40034219622612,0.161114200949669,0.938540101051331,-0.305262058973312,
- 0.0995278432965279,0.951653242111206,-0.290603339672089,0.126387104392052,0.965842306613922,-0.226218804717064,0.269950896501541,0.951762855052948,-0.145856201648712,0.0327112413942814,-0.0355031602084637,-0.998834073543549,0.0617333874106407,0.0357368998229504,-0.997452676296234,0.199024260044098,0.159378036856651,-0.966947793960571,0.00975621677935123,-0.01760776899755,-0.999797463417053,-0.101750858128071,-0.153343454003334,-0.982920527458191,0.0954984873533249,-0.0104329502210021,-0.995374917984009,0.192410245537758,0.165857136249542,-0.967196822166443,0.0375963486731052,0.0685020163655281,-0.996942341327667,0.198831558227539,0.193186730146408,-0.960804402828217,0.100368022918701,-0.0171241462230682,-0.994803011417389,-0.0971613451838493,-0.159456372261047,-0.982412099838257,0.0738428235054016,-0.0836463123559952,-0.993755877017975,0.220104858279228,0.156735971570015,-0.962802112102509,0.0561668314039707,0.0433108806610107,-0.99748158454895,0.00915773492306471,0.0544584430754185,-0.998474061489105,-0.277390778064728,0.949853479862213,-0.144336208701134,-0.151993751525879,0.987439572811127,-0.0431388542056084,-0.0231816526502371,0.997094750404358,0.0725582838058472,-0.291341245174408,0.948250472545624,-0.126259103417397,-0.307252019643784,0.937084317207336,-0.165738135576248,-0.155627503991127,0.987090468406677,-0.0378483906388283,0.00561690563336015,0.999151349067688,0.0408072508871555,-0.148213788866997,0.987758934497833,-0.0486306101083755,0.0288561657071114,0.995958268642426,0.0850556939840317,-0.155443042516708,0.987109184265137,-0.038117241114378,-0.322842866182327,0.937973856925964,-0.126402214169502,-0.0995599627494812,0.993682324886322,-0.0517998896539211,-0.14791451394558,0.98778235912323,-0.049064889550209,-0.118192508816719,0.992928445339203,0.011119325645268,0.0373262166976929,0.997010469436646,0.0676526352763176,0.0163745824247599,-0.110152080655098,-0.993779957294464,0.0505234934389591,-0.0476561300456524,-0.997585237026215,0.200549483299255,0.0463663637638092,-0.978585720062256,-0.0147618101909757,-0.0767751708626747,-0.996939241886139,
- -0.15508721768856,-0.197394728660584,-0.967979073524475,0.0703125074505806,-0.0870906114578247,-0.993715941905975,0.199458003044128,0.0478898584842682,-0.978735446929932,0.0367947667837143,-0.0203589964658022,-0.999115526676178,0.207451730966568,0.0738262236118317,-0.975455522537231,0.0719655156135559,-0.0903893560171127,-0.993302941322327,-0.153690591454506,-0.200043961405754,-0.967657804489136,0.0350106917321682,-0.150266572833061,-0.988025426864624,0.21587547659874,0.051371943205595,-0.97506856918335,0.0422241538763046,-0.0311484597623348,-0.998622596263886,-0.00362227158620954,-0.0159414112567902,-0.999866366386414,0.295736402273178,0.816615223884583,-0.495660752058029,0.0904834195971489,0.795136272907257,-0.599642634391785,-0.0349812805652618,0.811543166637421,-0.583244383335114,0.296759158372879,0.812937796115875,-0.501065015792847,-0.0345690436661243,0.810427069664001,-0.584818720817566,0.077531211078167,0.843267142772675,-0.531873524188995,0.0579353123903275,0.844636201858521,-0.532196581363678,-0.268152594566345,0.751090824604034,-0.603288471698761,-0.0379035808146,0.819374680519104,-0.572003901004791,-0.0367888435721397,0.816403865814209,-0.576308310031891,-0.154924884438515,0.806900441646576,-0.570008754730225,0.0784161388874054,0.828821003437042,-0.553991615772247,-0.0372543632984161,0.817647039890289,-0.57451319694519,-0.275462806224823,0.764728307723999,-0.582503974437714,-0.149019792675972,0.776144802570343,-0.612692713737488,0.077904999256134,0.83734405040741,-0.541096806526184,-0.156986683607101,0.817638993263245,-0.553914904594421,-0.052417054772377,0.837654531002045,-0.543679475784302,-0.291240781545639,0.793546199798584,-0.534287810325623,-0.301281422376633,0.780076205730438,-0.548370897769928,-0.156949549913406,0.817445635795593,-0.554210662841797,-0.15594457089901,0.812211394309998,-0.562133431434631,-0.300382286310196,0.77521824836731,-0.555704176425934,-0.0521609149873257,0.816778600215912,-0.574588477611542,-0.0460112057626247,-0.623168051242828,-0.780733346939087,-0.000596659258008003,-0.564411461353302,-0.825493395328522,
- 0.132697016000748,-0.475501239299774,-0.869649410247803,-0.0975630581378937,-0.58215993642807,-0.807199656963348,-0.209140777587891,-0.663707852363586,-0.718158781528473,0.00728366337716579,-0.575179815292358,-0.817994594573975,0.13404469192028,-0.476825326681137,-0.86871725320816,-0.0142604382708669,-0.5454261302948,-0.838037610054016,0.141116619110107,-0.45258441567421,-0.880484759807587,0.00847076904028654,-0.576790511608124,-0.816848158836365,-0.208018124103546,-0.665218770503998,-0.71708607673645,-0.0305698290467262,-0.632020711898804,-0.774348437786102,0.149520501494408,-0.468251973390579,-0.870852291584015,-0.0100497147068381,-0.551319181919098,-0.83423388004303,-0.0694020017981529,-0.54327654838562,-0.836680352687836,-0.0810945108532906,-0.667786955833435,-0.739921808242798,0.042588897049427,-0.595821917057037,-0.801986694335938,0.178312391042709,-0.486230939626694,-0.855443835258484,-0.0899182707071304,-0.658628642559052,-0.747076392173767,-0.113747633993626,-0.690243184566498,-0.714580833911896,0.0430382750928402,-0.596341550350189,-0.801576256752014,0.215377330780029,-0.517997205257416,-0.827823340892792,0.0545708052814007,-0.609558343887329,-0.790860712528229,0.231772869825363,-0.483042120933533,-0.844364643096924,0.0597906485199928,-0.615464448928833,-0.785893619060516,-0.117687560617924,-0.682348668575287,-0.721491456031799,0.106464177370071,-0.630709528923035,-0.768681228160858,0.0517945624887943,-0.606397807598114,-0.793472766876221,0.080477386713028,-0.556345224380493,-0.82704496383667,0.238373652100563,-0.494188010692596,-0.836036026477814,-0.645669519901276,0.637008368968964,-0.421107083559036,-0.589055716991425,0.69571727514267,-0.411084979772568,-0.69382381439209,0.645258903503418,-0.319764733314514,-0.621076107025146,0.711688041687012,-0.328275442123413,-0.379033595323563,0.798376202583313,-0.467898458242416,-0.585331201553345,0.718573331832886,-0.375552654266357,-0.690858900547028,0.620138585567474,-0.371674746274948,-0.588276982307434,0.701192498207092,-0.402814209461212,-0.463078826665878,0.776177048683167,-0.42791023850441,
- -0.586117684841156,0.714342176914215,-0.382336646318436,-0.371333628892899,0.814881503582001,-0.445061206817627,-0.306011199951172,0.820127487182617,-0.483474999666214,-0.58701628446579,0.709176182746887,-0.390488386154175,-0.306192517280579,0.817520618438721,-0.487756490707397,-0.458028137683868,0.755041122436523,-0.469173103570938,-0.0684722661972046,0.333281964063644,-0.940337657928467,0.045238945633173,0.432260572910309,-0.900613248348236,0.169508442282677,0.541629195213318,-0.823349714279175,-0.100158177316189,0.364394098520279,-0.925843119621277,-0.110302373766899,0.325172662734985,-0.93919974565506,0.0254738908261061,0.454048633575439,-0.890612661838531,0.202168732881546,0.51287567615509,-0.834317922592163,0.0513978973031044,0.42537596821785,-0.903556048870087,0.219477653503418,0.547350585460663,-0.807612001895905,0.0329273007810116,0.445887088775635,-0.894483506679535,-0.124894231557846,0.353573739528656,-0.927031338214874,0.0996974781155586,0.441199362277985,-0.891854107379913,0.0357592366635799,0.442768663167953,-0.895922541618347,0.0724373385310173,0.503794550895691,-0.860780954360962,0.216649681329727,0.551563322544098,-0.805506587028503,-0.735127568244934,0.677696645259857,-0.0177433472126722,-0.51799339056015,0.855219066143036,-0.0168290715664625,-0.646787703037262,0.762509822845459,0.0156345423310995,-0.733824670314789,0.679311573505402,0.0060965153388679,-0.531014144420624,0.845844805240631,-0.0507008843123913,-0.517965018749237,0.855399906635284,-0.00180010288022459,-0.640173256397247,0.767486691474915,-0.033799409866333,-0.517997324466705,0.855283617973328,-0.0129964835941792,-0.411044269800186,0.911482572555542,0.0155599135905504,-0.51789790391922,0.855416774749756,0.00662636710330844,-0.511566758155823,0.858393609523773,0.0382087416946888,-0.346680849790573,0.937980353832245,0.00230268249288201,-0.406369984149933,0.913639664649963,-0.0112269818782806,-0.5177943110466,0.855373024940491,0.0150345945730805,-0.345934391021729,0.938124060630798,0.0158956684172153,-0.0757590010762215,0.649724185466766,-0.756385505199432,
- -0.0247755888849497,0.697717010974884,-0.715944945812225,0.129987597465515,0.745707333087921,-0.653470575809479,-0.101225398480892,0.673607289791107,-0.732124745845795,-0.24315357208252,0.577728807926178,-0.779169917106628,-0.0098273903131485,0.670793771743774,-0.741578817367554,0.129654005169868,0.746113240718842,-0.65307343006134,-0.0352291390299797,0.715919971466064,-0.697292983531952,0.148629158735275,0.762050211429596,-0.630229234695435,-0.00858825910836458,0.668514966964722,-0.743649125099182,-0.242034837603569,0.575734734535217,-0.780992090702057,-0.0575782768428326,0.619324803352356,-0.783020794391632,0.154766619205475,0.746334314346313,-0.647327125072479,-0.0313243791460991,0.709181010723114,-0.704330325126648,-0.0831217765808105,0.720956981182098,-0.687976598739624,-0.440759658813477,0.812733054161072,0.381046175956726,-0.378781408071518,0.816998839378357,0.434784471988678,-0.499504745006561,0.74494469165802,0.442213296890259,-0.428527593612671,0.779813170433044,0.456350207328796,-0.142442509531975,0.881914019584656,0.449374914169312,-0.378770083189011,0.816110491752625,0.43645977973938,-0.491508901119232,0.774804890155792,0.397613376379013,-0.378690272569656,0.811517059803009,0.445009797811508,-0.240242138504982,0.837051272392273,0.491557657718658,-0.378627896308899,0.808826863765717,0.449933350086212,-0.131710082292557,0.857707023620605,0.49698206782341,-0.0615562908351421,0.875329732894897,0.479592233896255,-0.37860319018364,0.807877480983734,0.451656460762024,-0.0618400983512402,0.872374773025513,0.484910368919373,-0.229406282305717,0.864973604679108,0.44631090760231,-0.33853355050087,0.413035005331039,0.845456779003143,-0.267730414867401,0.392738491296768,0.87981641292572,-0.391630619764328,0.31274676322937,0.865341067314148,-0.301200598478317,0.324400663375854,0.896684110164642,-0.0286219250410795,0.443274974822998,0.895928621292114,-0.262529343366623,0.369657963514328,0.891308903694153,-0.393194198608398,0.364237874746323,0.844232976436615,-0.265527367591858,0.38289475440979,0.884808897972107,-0.128109440207481,0.392773270606995,0.9106684923172,
- -0.262769401073456,0.370711445808411,0.890800356864929,-0.015389115549624,0.41366571187973,0.910298764705658,0.0428255684673786,0.445124894380569,0.894443869590759,-0.264103382825851,0.376585364341736,0.887937426567078,0.0425120368599892,0.44706267118454,0.893491864204407,-0.126729667186737,0.444093406200409,0.886972725391388,0.0579855479300022,-0.507936120033264,0.859440982341766,0.145854294300079,-0.498656421899796,0.854440331459045,0.0476605035364628,-0.505000531673431,0.861802160739899,0.299867630004883,-0.467080682516098,0.831814289093018,0.146022453904152,-0.501037180423737,0.853017687797546,0.0582388900220394,-0.511192739009857,0.857490658760071,-0.114523105323315,-0.506071865558624,0.854854226112366,0.0584148392081261,-0.513456284999847,0.856125175952911,0.0451867207884789,-0.520392298698425,0.852731049060822,0.0555405132472515,-0.476678520441055,0.877321422100067,-0.143981263041496,-0.527691662311554,0.837144494056702,0.294960796833038,-0.444590657949448,0.84577614068985,-0.114309787750244,-0.503435254096985,0.856438100337982,-0.151104316115379,-0.491361677646637,0.857747733592987,0.0563490726053715,-0.486981481313705,0.871592700481415,0.0373314842581749,-0.525222480297089,0.850145816802979,0.296635448932648,-0.45219299197197,0.841147363185883,-0.14229691028595,-0.535959780216217,0.832165062427521,-0.424759298563004,-0.522787868976593,0.73910254240036,-0.144453763961792,-0.525350987911224,0.838534235954285,-0.121005795896053,-0.591151893138886,0.797431528568268,0.0280213877558708,-0.487953931093216,0.872419476509094,-0.144384890794754,-0.525692641735077,0.838331818580627,-0.424597054719925,-0.523522973060608,0.738675177097321,0.448021113872528,-0.261988192796707,0.854774415493011,-0.0038145559374243,-0.421578615903854,0.906783819198608,0.259783834218979,-0.381645023822784,0.887051105499268,0.447230368852615,-0.258359014987946,0.856291770935059,0.245999306440353,-0.297051638364792,0.922629237174988,-0.00644062366336584,-0.412454396486282,0.910955488681793,0.215237393975258,-0.284162133932114,0.934304416179657,
- -0.0173536334186792,-0.374035537242889,0.927251994609833,-0.214024782180786,-0.42902210354805,0.877572476863861,-0.000718156923539937,-0.432277023792267,0.901740550994873,0.249859616160393,-0.357675015926361,0.899799406528473,-0.0900259539484978,-0.42699870467186,0.899759769439697,-0.0154189979657531,-0.380905568599701,0.924485504627228,-0.0946075320243835,-0.404069751501083,0.909822523593903,-0.216257944703102,-0.422649085521698,0.880113780498505,0.249595165252686,-0.352980226278305,0.901724576950073,0.138575360178947,-0.365232795476913,0.920544445514679,-0.0922546684741974,-0.415915995836258,0.904711663722992,-0.193845942616463,-0.36500009894371,0.91060346364975,-0.251529186964035,-0.314127415418625,0.915454566478729,-0.108068212866783,-0.333251357078552,0.93662416934967,-0.101129099726677,-0.370425313711166,0.923340678215027,0.138536617159843,-0.364009380340576,0.921034634113312,-0.192566707730293,-0.375784546136856,0.906478941440582,0.233085125684738,-0.601423263549805,0.764173805713654,-0.224124565720558,-0.710039377212524,0.667542040348053,0.0423842258751392,-0.696194767951965,0.716600596904755,0.231457099318504,-0.595263063907623,0.769473552703857,0.00383769534528255,-0.626404464244843,0.779488742351532,-0.229625329375267,-0.696445345878601,0.679879546165466,-0.00596499629318714,-0.614079117774963,0.789222061634064,-0.241756796836853,-0.664751768112183,0.706865429878235,-0.421450167894363,-0.675922155380249,0.604573369026184,-0.249301567673683,-0.64375764131546,0.723481059074402,0.00228935061022639,-0.608407735824585,0.793621301651001,-0.337524324655533,-0.622642636299133,0.705969989299774,-0.339955717325211,-0.612255394458771,0.713844120502472,-0.451898336410522,-0.603389024734497,0.657046139240265,-0.262273997068405,-0.605092644691467,0.751714885234833,0.00354387261904776,-0.623012840747833,0.782203614711761,-0.104675926268101,-0.623596727848053,0.774706423282623,-0.335029363632202,-0.632937431335449,0.69795823097229,-0.420861631631851,-0.645839512348175,0.636998414993286,-0.45482924580574,-0.595546066761017,0.662159502506256,
- -0.332802683115005,-0.641834259033203,0.690862596035004,-0.336108714342117,-0.628527104854584,0.70141613483429,-0.103034883737564,-0.658735454082489,0.745286166667938,-0.426672041416168,-0.614465594291687,0.663613557815552,0.143422976136208,-0.576348662376404,0.804519772529602,0.22548320889473,-0.564376771450043,0.794126033782959,0.132123231887817,-0.574436008930206,0.807816028594971,0.380527317523956,-0.523528873920441,0.762309968471527,0.225535348057747,-0.565368890762329,0.79340523481369,0.143560469150543,-0.578521728515625,0.802933990955353,-0.0324564725160599,-0.575612843036652,0.817077994346619,0.14338093996048,-0.575686752796173,0.805001020431519,0.130710870027542,-0.582620084285736,0.802164912223816,0.141463488340378,-0.546583831310272,0.825369119644165,-0.0623802281916142,-0.605915486812592,0.793079674243927,0.376222550868988,-0.502926588058472,0.778152585029602,-0.0323060303926468,-0.5739386677742,0.818260788917542,-0.0708423927426338,-0.564342796802521,0.822495341300964,0.141905799508095,-0.553121566772461,0.820925891399384,0.119858488440514,-0.597167909145355,0.793110728263855,0.377468526363373,-0.508798062801361,0.773719787597656,-0.0609803535044193,-0.612561285495758,0.788067281246185,-0.34606796503067,-0.584409058094025,0.733963906764984,-0.0673602893948555,-0.58174467086792,0.81057745218277,-0.0385707132518291,-0.642851650714874,0.765019118785858,0.103666767477989,-0.536685645580292,0.837389826774597,-0.0671732053160667,-0.582667827606201,0.809929728507996,-0.345859676599503,-0.585402727127075,0.733269929885864,0.325746446847916,-0.138914629817009,0.935196220874786,-0.142373308539391,-0.277019828557968,0.950257778167725,0.125948503613472,-0.248811185359955,0.960328042507172,0.324968367815018,-0.135144174098969,0.936019003391266,0.113719403743744,-0.157664746046066,0.980922877788544,-0.145069748163223,-0.267237693071365,0.952648282051086,0.0798392742872238,-0.142908528447151,0.986510455608368,-0.156085103750229,-0.226355478167534,0.961457550525665,-0.33625790476799,-0.280483037233353,0.899032771587372,
- -0.139207661151886,-0.288395017385483,0.947338163852692,0.117443330585957,-0.221222326159477,0.968125879764557,-0.217791721224785,-0.280818045139313,0.934723496437073,-0.154157340526581,-0.233619809150696,0.96002984046936,-0.222983658313751,-0.254518002271652,0.941009521484375,-0.338618248701096,-0.273345947265625,0.90034419298172,0.117169111967087,-0.216270267963409,0.969277322292328,0.00699716154485941,-0.222159951925278,0.974985241889954,-0.220186576247215,-0.268817365169525,0.937686145305634,-0.33098241686821,-0.212773233652115,0.919335722923279,-0.373148947954178,-0.15895876288414,0.914052605628967,-0.236898973584175,-0.178232297301292,0.955045640468597,-0.229607403278351,-0.219347685575485,0.948244214057922,0.00695471046492457,-0.220811724662781,0.975291669368744,-0.329476922750473,-0.225859463214874,0.916751027107239,-0.0784541368484497,-0.889394879341125,0.450357288122177,0.0055177821777761,-0.887899398803711,0.46000462770462,-0.101839512586594,-0.886587977409363,0.451210260391235,0.0827179104089737,-0.88846755027771,0.451423734426498,0.00733566330745816,-0.895365357398987,0.44527193903923,-0.0762730687856674,-0.897591888904572,0.434178829193115,-0.25628075003624,-0.857123196125031,0.446833580732346,-0.0803148150444031,-0.882084488868713,0.464194387197495,-0.1014504134655,-0.884357035160065,0.455654114484787,-0.0791155323386192,-0.886830568313599,0.455271691083908,-0.263688117265701,-0.888646483421326,0.375201255083084,0.079874262213707,-0.884471774101257,0.459706157445908,-0.256043761968613,-0.851448833942413,0.457685977220535,-0.28650963306427,-0.838531374931335,0.463441044092178,-0.0850213617086411,-0.862220108509064,0.499347656965256,-0.161130785942078,-0.923521757125854,0.348058134317398,0.0823146477341652,-0.887905180454254,0.452602118253708,-0.259133905172348,-0.896899044513702,0.358359783887863,-0.553115844726563,-0.770848631858826,0.315999150276184,-0.27962788939476,-0.855361998081207,0.436078071594238,-0.256852209568024,-0.893989622592926,0.36716416478157,-0.260100364685059,-0.814732432365417,0.518226861953735,
- -0.279519885778427,-0.855613172054291,0.43565434217453,-0.553199172019959,-0.770623803138733,0.316401064395905,-0.138653993606567,-0.27394711971283,-0.951697468757629,0.00132562511134893,-0.198757246136665,-0.980047881603241,0.153307303786278,-0.0971706062555313,-0.983389437198639,-0.159292578697205,-0.237511157989502,-0.958235025405884,-0.179904729127884,-0.272924333810806,-0.9450643658638,-0.0109974276274443,-0.174137324094772,-0.984659969806671,0.181311950087547,-0.138267517089844,-0.973657071590424,0.00822746474295855,-0.212479501962662,-0.977130889892578,0.202011242508888,-0.103809744119644,-0.973865985870361,4.30791042163037e-005,-0.196201995015144,-0.980563521385193,-0.184098809957504,-0.253858715295792,-0.949559688568115,0.0544522888958454,-0.218790799379349,-0.974251270294189,-0.00391218531876802,-0.188311442732811,-0.982101559638977,0.0422835946083069,-0.130902990698814,-0.990493059158325,0.199323236942291,-0.0955938249826431,-0.975260019302368,0.0412040799856186,0.494152545928955,-0.868398249149323,0.0847951620817184,0.550030291080475,-0.830828905105591,0.236068516969681,0.614771008491516,-0.752547860145569,-0.00695703597739339,0.539504647254944,-0.841953873634338,-0.128405138850212,0.439623832702637,-0.888956129550934,0.0915004760026932,0.53865510225296,-0.837543070316315,0.237529024481773,0.612992823123932,-0.753538191318512,0.0728143900632858,0.569978177547455,-0.81842714548111,0.240819647908211,0.62980455160141,-0.738479614257813,0.0925300568342209,0.536894977092743,-0.838559448719025,-0.127438127994537,0.437995821237564,-0.889898538589478,0.06099484115839,0.485347270965576,-0.872191309928894,0.247998714447021,0.614125609397888,-0.74923050403595,0.0764872953295708,0.563913822174072,-0.822283923625946,0.0300499405711889,0.579465091228485,-0.814442873001099,-0.140124261379242,0.286731094121933,-0.947708010673523,-0.00891493167728186,0.363652378320694,-0.93149209022522,0.136379420757294,0.450004726648331,-0.882551193237305,-0.146977484226227,0.297677367925644,-0.943284571170807,-0.176191166043282,0.256090044975281,-0.950460195541382,
- -0.00786600261926651,0.361737012863159,-0.93224710226059,0.152084916830063,0.428791612386703,-0.890509903430939,-0.0133541198447347,0.37173792719841,-0.928241670131683,0.189852058887482,0.467018812894821,-0.863625884056091,-0.0100670177489519,0.365753978490829,-0.930657148361206,-0.18730354309082,0.300127059221268,-0.935329437255859,0.0454907044768333,0.347136825323105,-0.93671053647995,-0.0145400883629918,0.373892426490784,-0.927358090877533,0.0317152291536331,0.429210513830185,-0.902647614479065,0.194693252444267,0.454021513462067,-0.86945903301239,-0.130882114171982,0.180295795202255,-0.974865794181824,-0.00647756829857826,0.274626135826111,-0.96152937412262,0.127365112304688,0.38237676024437,-0.915186405181885,-0.157276093959808,0.213996201753616,-0.964090168476105,-0.169875547289848,0.175285622477531,-0.969751119613647,-0.0245667491108179,0.299977868795395,-0.953629791736603,0.17772950232029,0.326268225908279,-0.928418695926666,0.0185430459678173,0.239108458161354,-0.970815896987915,0.192740440368652,0.359982192516327,-0.912832915782928,-0.0175788607448339,0.290216982364655,-0.956799507141113,-0.181542441248894,0.20644323527813,-0.96146947145462,0.0396856293082237,0.277343988418579,-0.959950804710388,0.0209660455584526,0.235641032457352,-0.971614003181458,0.036789245903492,0.287450194358826,-0.957088887691498,0.203805804252625,0.337545037269592,-0.9189812541008,-0.610346972942352,0.60208660364151,0.514750719070435,-0.55985963344574,0.601091384887695,0.570303738117218,-0.668959558010101,0.505060076713562,0.545350730419159,-0.5903559923172,0.536134481430054,0.603356957435608,-0.333935618400574,0.683130919933319,0.649476110935211,-0.557757675647736,0.578312397003174,0.595366358757019,-0.664912521839142,0.544576704502106,0.511202096939087,-0.559101104736328,0.592117011547089,0.580347657203674,-0.43574184179306,0.627604961395264,0.645167469978333,-0.55771815776825,0.577936053276062,0.595768749713898,-0.325593531131744,0.66103196144104,0.676036715507507,-0.268161237239838,0.692066729068756,0.6701740026474,-0.558249950408936,0.583126544952393,0.590186774730682,
- -0.268175214529037,0.693604171276093,0.668577075004578,-0.428464412689209,0.66555780172348,0.61110645532608,-0.00503854174166918,0.76505309343338,-0.64394748210907,0.106326706707478,0.825472295284271,-0.554337501525879,0.225971236824989,0.877239882946014,-0.423541277647018,-0.0337295159697533,0.783609330654144,-0.620337605476379,-0.0447758436203003,0.756918609142303,-0.651973426342011,0.0889124870300293,0.837991833686829,-0.538390398025513,0.264513194561005,0.85356330871582,-0.448845684528351,0.115735590457916,0.818438708782196,-0.562817335128784,0.272764801979065,0.868367910385132,-0.414169937372208,0.10468590259552,0.826679468154907,-0.552848875522614,-0.0529778152704239,0.766892552375793,-0.639585137367249,0.159821018576622,0.816002726554871,-0.555515110492706,0.0981814712285995,0.831408262252808,-0.546919226646423,0.125173673033714,0.863840997219086,-0.48796546459198,0.267803728580475,0.872843265533447,-0.407953172922134,0.0328512974083424,-0.313386112451553,-0.949057400226593,0.064509354531765,-0.242609024047852,-0.967976987361908,0.198443025350571,-0.117332696914673,-0.973063945770264,0.00951334461569786,-0.296239227056503,-0.955066382884979,-0.102604821324348,-0.42246401309967,-0.900553524494171,0.0979694798588753,-0.285763204097748,-0.953279376029968,0.192242711782455,-0.111603684723377,-0.974980711936951,0.0405783765017986,-0.211434498429298,-0.976549565792084,0.200258359313011,-0.0824575796723366,-0.976267039775848,0.102821677923203,-0.291978597640991,-0.950881779193878,-0.098026841878891,-0.428165346384048,-0.898368060588837,0.0756150633096695,-0.357282310724258,-0.930930554866791,0.221428900957108,-0.117383681237698,-0.968085885047913,0.0590288266539574,-0.235492318868637,-0.97008204460144,0.0109265306964517,-0.225879088044167,-0.974094092845917,-0.274234473705292,0.873778223991394,-0.40163055062294,-0.149475410580635,0.93698662519455,-0.315773844718933,-0.0235483329743147,0.977651417255402,-0.208909466862679,-0.2879518866539,0.877249181270599,-0.384080201387405,-0.305681943893433,0.854210495948792,-0.420574873685837,
- -0.15323206782341,0.938165485858917,-0.310427904129028,0.00558670656755567,0.970699846744537,-0.240230709314346,-0.145612463355064,0.935733675956726,-0.321246802806854,0.0266115590929985,0.979903340339661,-0.197689890861511,-0.153029829263687,0.938103020191193,-0.310716301202774,-0.321316987276077,0.866111755371094,-0.382891446352005,-0.09526477009058,0.940559506416321,-0.325994521379471,-0.145342066884041,0.935644507408142,-0.321629047393799,-0.11385902762413,0.957275450229645,-0.265819132328033,0.0350836291909218,0.976051926612854,-0.214689970016479,0.0139676220715046,-0.385309964418411,-0.922681510448456,0.051916528493166,-0.324045926332474,-0.944615721702576,0.1985864341259,-0.230170473456383,-0.95267254114151,-0.0168707147240639,-0.354369163513184,-0.934953510761261,-0.15287321805954,-0.459133625030518,-0.875114917755127,0.0714301541447639,-0.360071897506714,-0.930185973644257,0.197754010558128,-0.229092165827751,-0.953105509281158,0.0383568219840527,-0.298760026693344,-0.953557133674622,0.210141196846962,-0.200457602739334,-0.956899881362915,0.0730555430054665,-0.363053172826767,-0.928900063037872,-0.151491761207581,-0.46155372262001,-0.874081492424011,0.0322571620345116,-0.421360284090042,-0.906319499015808,0.218588516116142,-0.222060903906822,-0.950214743614197,0.0436706505715847,-0.308693617582321,-0.950158476829529,-0.00631998339667916,-0.29511547088623,-0.955440700054169,-0.0723293945193291,0.323808491230011,-0.943353891372681,-0.0275011342018843,0.38026961684227,-0.924466729164124,0.131334200501442,0.449520289897919,-0.883562564849854,-0.098334327340126,0.355500876903534,-0.929488956928253,-0.244216412305832,0.245930805802345,-0.93801736831665,-0.0125055443495512,0.34556320309639,-0.938312172889709,0.130867019295692,0.450257509946823,-0.883256494998932,-0.0379859246313572,0.404230117797852,-0.913868188858032,0.147799462080002,0.472420305013657,-0.86889261007309,-0.011262871325016,0.34266409277916,-0.939390480518341,-0.243064045906067,0.243294239044189,-0.939003586769104,-0.0543790683150291,0.28322434425354,-0.957510888576508,
- 0.153903409838676,0.452058523893356,-0.878610730171204,-0.0340522937476635,0.395270437002182,-0.917933523654938,-0.0796059593558311,0.414614379405975,-0.906508564949036,-0.151598513126373,0.0413748100399971,-0.987575829029083,-0.0113384984433651,0.110689662396908,-0.993790328502655,0.150742024183273,0.19761224091053,-0.968620777130127,-0.158104777336121,0.0549547076225281,-0.985891938209534,-0.186506122350693,0.017367459833622,-0.982300281524658,-0.0108440918847919,0.109485976397991,-0.993929207324982,0.177514225244522,0.150108948349953,-0.972602725028992,-0.00343558401800692,0.0914294496178627,-0.995805621147156,0.199527874588966,0.182328015565872,-0.962779998779297,0.000319025275530294,0.0822666436433792,-0.996610283851624,-0.188299462199211,0.0291091334074736,-0.981680274009705,0.0520444139838219,0.0530035495758057,-0.997237205505371,-0.00521988235414028,0.095781184732914,-0.995388746261597,0.0461254306137562,0.15066123008728,-0.987508833408356,0.203023165464401,0.168186575174332,-0.964621722698212,-0.338912427425385,0.696919620037079,0.63201379776001,-0.269815534353256,0.691076397895813,0.670531868934631,-0.388018429279327,0.613695919513702,0.687618374824524,-0.302566438913345,0.634628295898438,0.711126208305359,-0.0235306415706873,0.746563315391541,0.664898157119751,-0.264643967151642,0.674020826816559,0.689680755138397,-0.389675348997116,0.653054773807526,0.649363219738007,-0.267630696296692,0.683854281902313,0.67876148223877,-0.127954423427582,0.703761398792267,0.698818683624268,-0.26488983631134,0.6748286485672,0.688795924186707,-0.00983821600675583,0.723938643932343,0.68979424238205,0.0422978177666664,0.746025681495667,0.664572477340698,-0.266220062971115,0.679204344749451,0.683965146541595,0.0420162454247475,0.74734503030777,0.663106322288513,-0.126813232898712,0.741868495941162,0.658444821834564,-0.0590196587145329,0.151644766330719,-0.986671566963196,-0.144729733467102,0.145240634679794,-0.978753626346588,-0.0439810454845428,0.147677838802338,-0.988057136535645,-0.299526363611221,0.124330632388592,-0.945952355861664,
- -0.144862189888954,0.147505760192871,-0.978395104408264,-0.0593357160687447,0.156051367521286,-0.985965132713318,0.114529378712177,0.151589319109917,-0.981786072254181,-0.0594576187431812,0.1577537804842,-0.985686838626862,-0.0415917783975601,0.165159538388252,-0.985389590263367,-0.0565095879137516,0.117115989327431,-0.991509199142456,0.146902769804001,0.177370250225067,-0.973118364810944,-0.294648468494415,0.0979950204491615,-0.950567841529846,0.114322885870934,0.148667767643929,-0.982256770133972,0.153660252690315,0.137422040104866,-0.978521287441254,-0.057208102196455,0.12664307653904,-0.990297317504883,-0.0373262353241444,0.171424224972725,-0.984489977359772,-0.296281397342682,0.106689155101776,-0.94912326335907,0.145262390375137,0.186810955405235,-0.971596896648407,0.430105626583099,0.210854902863503,-0.877809405326843,0.146995350718498,0.176834270358086,-0.973201930522919,0.121065549552441,0.252084523439407,-0.960102379322052,-0.027876503765583,0.128025367856026,-0.991379141807556,0.146940052509308,0.177154317498207,-0.973152101039886,0.4299476146698,0.211677849292755,-0.877688765525818,0.457264423370361,0.0342030599713326,0.888672828674316,0.00256964564323425,-0.103127017617226,0.994664967060089,0.28147104382515,-0.0628776103258133,0.957507431507111,0.457957804203033,0.0303124319761992,0.888457000255585,0.250858753919601,0.0166503842920065,0.967880606651306,0.00143844750709832,-0.0988201498985291,0.995104372501373,0.22039769589901,0.0865691527724266,0.971560955047607,-0.0234276577830315,-0.00367358326911926,0.99971878528595,-0.208016231656075,-0.0710084587335587,0.975544512271881,-0.0163614470511675,-0.0308036860078573,0.999391555786133,0.249474987387657,0.0395586341619492,0.967572927474976,-0.0995073914527893,-0.0257491357624531,0.994703590869904,-0.0283038020133972,0.0150909908115864,0.999485552310944,-0.102398544549942,-0.010155251249671,0.994691610336304,-0.218945607542992,-0.0375592149794102,0.975013911724091,0.25060448050499,0.0210296101868153,0.967861115932465,0.141006603837013,0.0169080644845963,0.98986428976059,
- -0.0971257239580154,-0.0384900234639645,0.994527697563171,-0.187768876552582,-0.084373340010643,0.978582739830017,-0.222001746296883,-0.0280460100620985,0.974642813205719,-0.0957784131169319,-0.0456561520695686,0.994355082511902,-0.098522387444973,-0.0310297980904579,0.994650959968567,0.142032638192177,-0.0286948382854462,0.989445984363556,-0.192809596657753,-0.0427980273962021,0.980302512645721,0.218302339315414,-0.224922314286232,0.949607312679291,-0.248036652803421,-0.351781785488129,0.902622520923615,0.0150368073955178,-0.331167757511139,0.943452060222626,0.217369452118874,-0.220783874392509,0.950791776180267,0.00199033226817846,-0.243612632155418,0.969870567321777,-0.250830829143524,-0.342206925153732,0.905526518821716,-0.0318569540977478,-0.227178558707237,0.973331928253174,-0.262153506278992,-0.30201718211174,0.916548490524292,-0.44464647769928,-0.346644312143326,0.825909972190857,-0.244722709059715,-0.362972289323807,0.899089515209198,0.00657398020848632,-0.304435163736343,0.952510476112366,-0.332196176052094,-0.350877076387405,0.875517547130585,-0.336746722459793,-0.328535556793213,0.882420539855957,-0.446567356586456,-0.34087198972702,0.827274978160858,-0.260182917118073,-0.309179306030273,0.914720177650452,0.00618048757314682,-0.299248069524765,0.954155325889587,-0.105245091021061,-0.302860945463181,0.94720584154129,-0.334544479846954,-0.339488387107849,0.879106163978577,-0.432940512895584,-0.282646000385284,0.85596364736557,-0.479638159275055,-0.229118958115578,0.847025215625763,-0.349894046783447,-0.256561279296875,0.900971949100494,-0.343449920415878,-0.293387323617935,0.892169296741486,-0.105206027626991,-0.30397167801857,0.94685423374176,-0.431589603424072,-0.293845385313034,0.852868854999542,0.0523824132978916,-0.966347098350525,-0.251852244138718,0.035791140049696,-0.963532209396362,-0.265188038349152,-0.143572598695755,-0.964353799819946,-0.222281083464623,0.180198490619659,-0.956165611743927,-0.2308159917593,0.0483966879546642,-0.975805461406708,-0.213217481970787,0.0554163455963135,-0.971289217472076,-0.231357574462891,
- -0.0731345266103745,-0.972783088684082,-0.2198735922575,0.0524760521948338,-0.966505587100983,-0.251223802566528,-0.143461301922798,-0.964564144611359,-0.221438214182854,0.053627222776413,-0.968423187732697,-0.243476569652557,0.171659171581268,-0.949410855770111,-0.262968420982361,0.172724261879921,-0.952970623970032,-0.249024838209152,-0.0719529017806053,-0.964568316936493,-0.253832548856735,0.170110076665878,-0.956223487854004,-0.23811599612236,0.0513496920466423,-0.96457427740097,-0.258766055107117,0.206597298383713,-0.945592761039734,-0.251340210437775,0.165905818343163,-0.949755072593689,-0.265406847000122,0.17007577419281,-0.956361889839172,-0.237584009766579,0.159813717007637,-0.964847326278687,-0.208637073636055,0.169779404997826,-0.957537829875946,-0.233015671372414,-0.0722109004855156,-0.966409385204315,-0.246654689311981,0.209505945444107,-0.951149582862854,-0.226763486862183,0.171040698885918,-0.952267706394196,-0.252846390008926,0.192257538437843,-0.936577022075653,-0.293019562959671,0.33076536655426,0.219821482896805,0.917754232883453,-0.141583621501923,0.0953451246023178,0.985324025154114,0.127112030982971,0.125877529382706,0.983868598937988,0.330014556646347,0.223520115017891,0.917130947113037,0.114441968500614,0.217739686369896,0.9692742228508,-0.144356951117516,0.105508662760258,0.983884632587433,0.0801214873790741,0.23506423830986,0.968671977519989,-0.155689135193825,0.147549986839294,0.976724088191986,-0.336786419153214,0.0739078372716904,0.938675940036774,-0.138575091958046,0.0843733251094818,0.98675137758255,0.118399985134602,0.154907360672951,0.980808436870575,-0.220170348882675,0.087091363966465,0.971565902233124,-0.153877884149551,0.140773758292198,0.978010416030884,-0.225212752819061,0.113264970481396,0.967703580856323,-0.339155375957489,0.0810430124402046,0.937232971191406,0.118089661002159,0.160151153802872,0.980003297328949,0.0118431551381946,0.156992360949516,0.987528920173645,-0.222535163164139,0.099271185696125,0.969857394695282,-0.331098228693008,0.144500106573105,0.932466566562653,
- -0.373707354068756,0.192350015044212,0.90738320350647,-0.238920614123344,0.18875877559185,0.952516198158264,-0.231804251670837,0.148707285523415,0.961328744888306,0.0118487244471908,0.156779274344444,0.987562596797943,-0.32960119843483,0.131452053785324,0.934924304485321,-0.0808316990733147,-0.658058106899261,0.748615920543671,0.0089036924764514,-0.652849674224854,0.757435142993927,-0.101016849279404,-0.655118465423584,0.748742580413818,0.0821217820048332,-0.650603592395782,0.754964232444763,0.0097959665581584,-0.659106850624084,0.751985490322113,-0.0794934034347534,-0.666212618350983,0.741513013839722,-0.25495845079422,-0.629457831382751,0.734015703201294,-0.0827730074524879,-0.645982980728149,0.758850872516632,-0.10062763094902,-0.651443600654602,0.751994252204895,-0.085117481648922,-0.630999088287354,0.771099984645844,-0.269952028989792,-0.662042081356049,0.699161052703857,0.072665698826313,-0.627679646015167,0.775072872638702,-0.254712879657745,-0.620330452919006,0.741829812526703,-0.285875290632248,-0.605755209922791,0.742520034313202,-0.0877101868391037,-0.61389684677124,0.784498274326324,-0.176686882972717,-0.702818512916565,0.68907755613327,0.0734622478485107,-0.629628360271454,0.773415446281433,-0.266444385051727,-0.673359274864197,0.689633727073669,-0.552059710025787,-0.598220765590668,0.580828726291656,-0.279118150472641,-0.630695462226868,0.724096894264221,-0.25563171505928,-0.693703353404999,0.673370718955994,-0.25911083817482,-0.562789142131805,0.784939467906952,-0.278987944126129,-0.631159901618958,0.723742306232452,-0.552139163017273,-0.597881019115448,0.581102967262268,-0.141277596354485,-0.609570860862732,-0.780041038990021,-0.000417892035329714,-0.54988819360733,-0.83523815870285,0.151910126209259,-0.45703986287117,-0.876377701759338,-0.134526833891869,-0.619489371776581,-0.773392200469971,-0.164398431777954,-0.64918714761734,-0.742650210857391,0.013099480420351,-0.572494804859161,-0.819803714752197,0.167103081941605,-0.47584992647171,-0.863506436347961,-0.00412322767078877,-0.54360169172287,-0.839333176612854,
- 0.193812653422356,-0.439986377954483,-0.876840174198151,0.00788346957415342,-0.56383228302002,-0.825851678848267,-0.176092147827148,-0.607258319854736,-0.774744391441345,0.0577697642147541,-0.584276378154755,-0.809495985507965,0.00684038922190666,-0.562090814113617,-0.827047228813171,0.0463855750858784,-0.51491767168045,-0.855983734130859,0.207037746906281,-0.475329339504242,-0.855100810527802,0.0351789183914661,0.148867607116699,-0.988231182098389,0.0780066549777985,0.211704984307289,-0.974215567111969,0.228947311639786,0.301641553640366,-0.925524473190308,0.0268060304224491,0.158016636967659,-0.9870725274086,-0.109398901462555,0.0393301658332348,-0.993219614028931,0.110007472336292,0.149186223745346,-0.982670783996582,0.227608993649483,0.303463846445084,-0.925258815288544,0.0631802305579185,0.240060493350029,-0.968699753284454,0.235031768679619,0.326404958963394,-0.915543496608734,0.112836971879005,0.143569767475128,-0.983186423778534,-0.10675124078989,0.0342232771217823,-0.993696630001068,0.0757171213626862,0.0814566314220428,-0.993796646595001,0.248653843998909,0.291441917419434,-0.92370617389679,0.075376845896244,0.216762289404869,-0.973310053348541,0.0320340842008591,0.234845459461212,-0.971504747867584,-0.140861883759499,-0.0872482284903526,-0.986177325248718,-0.00516426609829068,-0.00717929098755121,-0.999960899353027,0.137839034199715,0.0904880836606026,-0.986312508583069,-0.147991836071014,-0.0750129073858261,-0.986139714717865,-0.175276473164558,-0.115518301725388,-0.977718710899353,-0.00452372478321195,-0.00842712819576263,-0.999954283237457,0.15367779135704,0.0676805004477501,-0.985800445079803,-0.00923301093280315,0.000747812853660434,-0.999957084655762,0.193745404481888,0.113418161869049,-0.974473714828491,-0.00647072214633226,-0.00463408185169101,-0.999968349933624,-0.186397105455399,-0.0695094987750053,-0.980012536048889,0.0440757721662521,-0.0257998760789633,-0.998695015907288,-0.0106123397126794,0.00343545852228999,-0.999937891960144,0.030034426599741,0.0616956502199173,-0.997643113136292,0.198580771684647,0.0992025509476662,-0.975051045417786,
- -0.129896461963654,-0.194948241114616,-0.972173929214478,-0.00631659012287855,-0.102736175060272,-0.99468868970871,0.131428524851799,0.0179060325026512,-0.991163909435272,-0.156584307551384,-0.159367009997368,-0.974722266197205,-0.171474665403366,-0.198108330368996,-0.965064525604248,-0.0242712534964085,-0.0764191821217537,-0.996780335903168,0.181571558117867,-0.0389558188617229,-0.982605934143066,0.0185471400618553,-0.138991668820381,-0.990119874477386,0.188065886497498,-0.00783479772508144,-0.982125282287598,-0.0173749234527349,-0.0865409523248672,-0.996096789836884,-0.182945445179939,-0.167258083820343,-0.968790948390961,0.0437837578356266,-0.0986263826489449,-0.994160890579224,0.0210194662213326,-0.142584800720215,-0.989559471607208,0.0408780388534069,-0.0881347730755806,-0.995269536972046,0.199129685759544,-0.0309528112411499,-0.9794842004776,-0.603105425834656,0.738826274871826,0.300665289163589,-0.552472174167633,0.7535080909729,0.356371015310287,-0.671966850757599,0.64654004573822,0.361173897981644,-0.601345062255859,0.736415445804596,0.309961944818497,-0.349354296922684,0.888138175010681,0.29860070347786,-0.556716680526733,0.779118478298187,0.288168251514435,-0.666833221912384,0.688648760318756,0.284774214029312,-0.554286956787109,0.762896776199341,0.332797944545746,-0.440321773290634,0.814499795436859,0.37776592373848,-0.557070553302765,0.782335042953491,0.278611809015274,-0.342828750610352,0.880491554737091,0.327418744564056,-0.269628494977951,0.911637425422668,0.310189843177795,-0.556775450706482,0.779623568058014,0.286685287952423,-0.269699275493622,0.90807443857193,0.320410937070847,-0.423908680677414,0.862057149410248,0.277774959802628,-0.00529470201581717,0.470158070325851,-0.882566332817078,0.104565307497978,0.558849215507507,-0.822650372982025,0.22398678958416,0.655127763748169,-0.721552193164825,-0.0341514423489571,0.496272146701813,-0.867495059967041,-0.0465457253158093,0.458884119987488,-0.887276113033295,0.0876674428582191,0.575964272022247,-0.812760472297668,0.262478053569794,0.623763859272003,-0.736222743988037,
- 0.113548792898655,0.549566447734833,-0.82769763469696,0.275658071041107,0.65287983417511,-0.705521464347839,0.103148274123669,0.560301780700684,-0.821840822696686,-0.0549200400710106,0.4731465280056,-0.879270255565643,0.161055043339729,0.550944328308105,-0.818853855133057,0.0962211638689041,0.567356824874878,-0.817831099033356,0.126383155584335,0.620571911334991,-0.7738978266716,0.270716845989227,0.659324169158936,-0.701429963111877,0.0305079761892557,-0.646330773830414,-0.762447237968445,0.0641292557120323,-0.58550888299942,-0.808125495910645,0.199349746108055,-0.470483243465424,-0.859596073627472,0.007169000338763,-0.632649779319763,-0.77440482378006,-0.100557789206505,-0.726291716098785,-0.679991543292999,0.0977129563689232,-0.620291113853455,-0.778261601924896,0.192691653966904,-0.465499818325043,-0.863817036151886,0.0401138663291931,-0.559616208076477,-0.827780485153198,0.202580273151398,-0.438135594129562,-0.875784456729889,0.102575838565826,-0.625187754631042,-0.773704349994659,-0.0959831103682518,-0.73076206445694,-0.675850629806519,0.0747734382748604,-0.678362607955933,-0.730912506580353,0.223792776465416,-0.467721521854401,-0.855075061321259,0.058611586689949,-0.579634606838226,-0.812765896320343,0.0100738862529397,-0.572367787361145,-0.819935142993927,-0.274437427520752,0.661382853984833,-0.698037922382355,-0.150182619690895,0.751847863197327,-0.642004668712616,-0.0201705228537321,0.831588506698608,-0.555025815963745,-0.288244694471359,0.671185731887817,-0.68295294046402,-0.305252879858017,0.636717915534973,-0.708103775978088,-0.153638869524002,0.754697442054749,-0.637829780578613,0.00909713935106993,0.813417851924896,-0.581608653068542,-0.146577835083008,0.748850762844086,-0.646326124668121,0.0256775375455618,0.835752129554749,-0.548506200313568,-0.1535814255476,0.754650294780731,-0.637899458408356,-0.320829957723618,0.661582589149475,-0.677773296833038,-0.096943311393261,0.751179993152618,-0.652939975261688,-0.146186470985413,0.748523831367493,-0.646793305873871,-0.115548305213451,0.789218723773956,-0.603143751621246,
- 0.0341465882956982,0.825855433940887,-0.562847077846527,0.0141279939562082,-0.700334429740906,-0.713675081729889,0.0507290251553059,-0.652709484100342,-0.755908012390137,0.202208831906319,-0.565096378326416,-0.799861013889313,-0.0158699806779623,-0.676681697368622,-0.736104667186737,-0.153171464800835,-0.751890063285828,-0.641248643398285,0.0702755972743034,-0.680845201015472,-0.729048132896423,0.201702505350113,-0.564589381217957,-0.800346732139587,0.037142738699913,-0.632509768009186,-0.773661315441132,0.208335548639297,-0.542969584465027,-0.813498973846436,0.0719058439135551,-0.683141946792603,-0.726736962795258,-0.151816621422768,-0.753704786300659,-0.639438033103943,0.0373660773038864,-0.727264285087585,-0.685339689254761,0.216765522956848,-0.560413718223572,-0.799343109130859,0.0424814634025097,-0.640509724617004,-0.76677417755127,-0.00121663883328438,-0.628362834453583,-0.777919411659241,-0.0727618634700775,0.0695988461375237,-0.994918048381805,-0.0265116449445486,0.129828095436096,-0.991182029247284,0.128642454743385,0.205059975385666,-0.970258593559265,-0.098598338663578,0.103623352944851,-0.989717423915863,-0.24643662571907,-0.00515746651217341,-0.969145178794861,-0.0113193625584245,0.0919739529490471,-0.99569708108902,0.128074675798416,0.206023812294006,-0.970129430294037,-0.0370934642851353,0.15613080561161,-0.987039625644684,0.14498732984066,0.232198983430862,-0.961801588535309,-0.0100568477064371,0.0888233631849289,-0.995996713638306,-0.245324581861496,-0.00782396830618382,-0.96940952539444,-0.060564897954464,0.0254668444395065,-0.997839331626892,0.15111868083477,0.209504544734955,-0.966059505939484,-0.0330827161669731,0.146167665719986,-0.988706529140472,-0.0856324508786201,0.166424050927162,-0.982328951358795,-0.152620926499367,-0.214604511857033,-0.964702963829041,-0.00819297414273024,-0.147768810391426,-0.988988101482391,0.152037844061852,-0.0585280582308769,-0.986640334129334,-0.1645198315382,-0.189612075686455,-0.967977523803711,-0.186405226588249,-0.223392426967621,-0.956738710403442,-0.0124707026407123,-0.137278467416763,-0.990454018115997,
- 0.171467453241348,-0.0928037166595459,-0.980809032917023,-0.00619033677503467,-0.152672365307808,-0.988257467746735,0.193600788712502,-0.0587714873254299,-0.979318559169769,-0.00651842681691051,-0.15186932682991,-0.988379061222076,-0.190355330705643,-0.196592062711716,-0.961829721927643,0.051240935921669,-0.177026510238647,-0.982871294021606,-0.0123195732012391,-0.137649491429329,-0.990404367446899,0.0449912138283253,-0.081744484603405,-0.99563729763031,0.194093659520149,-0.0607868283987045,-0.979097843170166,-0.329599648714066,0.823872208595276,0.461084216833115,-0.257244348526001,0.826247692108154,0.501138806343079,-0.392981976270676,0.749366044998169,0.532931208610535,-0.310065686702728,0.802300095558167,0.510072410106659,-0.0308689065277576,0.898794710636139,0.437281519174576,-0.262454748153687,0.83813613653183,0.478168725967407,-0.396529883146286,0.816270709037781,0.420078814029694,-0.269906878471375,0.854828596115112,0.443191349506378,-0.127083793282509,0.880640268325806,0.456423491239548,-0.270791113376617,0.85678243637085,0.438857614994049,-0.0320544727146626,0.900050818920136,0.434604704380035,0.0386477671563625,0.915339946746826,0.40082311630249,-0.269393593072891,0.853691697120667,0.445687770843506,0.0400372818112373,0.911464512348175,0.409425795078278,-0.125618159770966,0.905165076255798,0.406074166297913,0.0561968758702278,0.107513479888439,0.992614209651947,0.14496673643589,0.111668437719345,0.983114957809448,0.0474345684051514,0.11145605891943,0.992636620998383,0.299361437559128,0.123393461108208,0.946127355098724,0.145073726773262,0.109753124415874,0.983314752578735,0.0564933679997921,0.103276006877422,0.993047118186951,-0.111738301813602,0.105999559164047,0.988068163394928,0.0566321723163128,0.101287491619587,0.993243992328644,0.044960230588913,0.0937028005719185,0.994584619998932,0.0537045858800411,0.142490059137344,0.988338232040405,-0.149703487753868,0.0751423537731171,0.985871434211731,0.29449924826622,0.150280758738518,0.943761587142944,-0.111505776643753,0.109437763690948,0.987719535827637,-0.15740242600441,0.118824437260628,0.980359733104706,
- 0.0544408969581127,0.13227379322052,0.989717066287994,0.0376706086099148,0.0883268192410469,0.995378971099854,0.296100467443466,0.141572818160057,0.944606602191925,-0.147941142320633,0.0653548389673233,0.986834406852722,-0.425821244716644,0.0234951209276915,0.904502213001251,-0.150808304548264,0.0813172161579132,0.985212862491608,-0.117975033819675,0.00432149646803737,0.993007183074951,0.0283676404505968,0.131492003798485,0.990911364555359,-0.150717258453369,0.0808072239160538,0.985268771648407,-0.425638347864151,0.0225592516362667,0.904612243175507,0.455226123332977,0.276808649301529,0.846254169940948,0.00314685213379562,0.177971661090851,0.984030604362488,0.271412372589111,0.198562204837799,0.941758155822754,0.45418706536293,0.282263338565826,0.845009803771973,0.245307415723801,0.291105836629868,0.924706280231476,-0.000290416501229629,0.191132500767708,0.981564223766327,0.226695641875267,0.307006508111954,0.924313843250275,-0.0104218805208802,0.229713127017021,0.973202586174011,-0.205911889672279,0.153354927897453,0.966479480266571,-0.0059336987324059,0.212661072611809,0.977108001708984,0.246537640690804,0.270037949085236,0.93075168132782,-0.0904297083616257,0.215159431099892,0.972383201122284,-0.0185666792094707,0.260499179363251,0.965295553207397,-0.0941367223858833,0.234719529747963,0.967494189739227,-0.221883058547974,0.200098305940628,0.954321026802063,0.246909931302071,0.263199359178543,0.932610094547272,0.140481233596802,0.265215218067169,0.953900396823883,-0.0903428569436073,0.214702472090721,0.972492158412933,-0.188868224620819,0.212176412343979,0.95880663394928,-0.241361036896706,0.258784621953964,0.935294270515442,-0.0977099612355232,0.253679662942886,0.962340593338013,-0.095549039542675,0.242200896143913,0.96550977230072,0.140973433852196,0.242393955588341,0.959881067276001,-0.190638959407806,0.226879119873047,0.955082535743713,0.21964555978775,0.0279950629919767,0.975178003311157,-0.248037159442902,-0.108218021690845,0.962687194347382,0.0170103088021278,-0.0777813047170639,0.996825337409973,0.220070570707321,0.0259742438793182,0.975138187408447,
- -0.000602518441155553,0.00850161258131266,0.999963700771332,-0.249058336019516,-0.104597367346287,0.962823629379272,-0.00657539814710617,-0.0242475084960461,0.999684453010559,-0.246306642889977,-0.11432172358036,0.962425887584686,-0.419118076562881,-0.182236552238464,0.889454960823059,-0.250668823719025,-0.0988588854670525,0.963011980056763,0.00198627822101116,-0.0280286129564047,0.999605238437653,-0.336129069328308,-0.091313049197197,0.937378883361816,-0.329764187335968,-0.123720526695251,0.935921370983124,-0.431380897760391,-0.14763979613781,0.890007436275482,-0.251315116882324,-0.0965460985898972,0.963078200817108,0.00110946479253471,-0.0156556628644466,0.999876856803894,-0.101960651576519,-0.0206083189696074,0.994574964046478,-0.339602738618851,-0.0727412700653076,0.937751948833466,-0.418019324541092,-0.13500589132309,0.898350417613983,-0.453261405229568,-0.0807642191648483,0.887711226940155,-0.333974003791809,-0.102508649230003,0.936991751194,-0.330708682537079,-0.119033709168434,0.936195909976959,-0.0981963351368904,-0.11820862442255,0.988121569156647,-0.418699651956558,-0.130509585142136,0.898697853088379,-0.14027826488018,-0.0236456338316202,-0.989829838275909,-0.228340402245522,-0.0273673962801695,-0.973196744918823,-0.130812212824821,-0.027506560087204,-0.991025507450104,-0.381361544132233,-0.049674428999424,-0.923090398311615,-0.228028774261475,-0.0342028439044952,-0.973053574562073,-0.13997283577919,-0.0296987723559141,-0.989709854125977,0.0294459201395512,-0.0285557229071856,-0.999158382415771,-0.140387892723084,-0.0214468576014042,-0.98986428976059,-0.12904591858387,-0.0147937862202525,-0.991528272628784,-0.137558236718178,-0.0743689090013504,-0.987697839736938,0.0653169378638268,-0.0086667463183403,-0.997826933860779,-0.376051187515259,-0.0804892107844353,-0.923096418380737,0.030011635273695,-0.020651938393712,-0.999336183071136,0.0690642222762108,-0.0312402099370956,-0.997122943401337,-0.139539644122124,-0.0381162464618683,-0.989482641220093,-0.117502741515636,-0.0169645491987467,-0.992927670478821,
- -0.37715819478035,-0.0742443427443504,-0.923168182373047,0.0641942545771599,-0.00194275518879294,-0.99793553352356,0.343185395002365,0.0506769195199013,-0.937899589538574,0.0632726699113846,0.00356363039463758,-0.997990012168884,0.0370264761149883,0.0797618851065636,-0.996126055717468,-0.11110308021307,-0.047103825956583,-0.992691993713379,0.0632849559187889,0.0034902619663626,-0.997989416122437,0.343119472265244,0.0510368719696999,-0.937904298305511,0.326042294502258,0.448643743991852,0.832115054130554,-0.144611999392509,0.347734272480011,0.926373720169067,0.124358966946602,0.374453753232956,0.918868482112885,0.325274705886841,0.452117651700974,0.830533564090729,0.108245968818665,0.460186809301376,0.881198585033417,-0.147224217653275,0.356799572706223,0.922506988048553,0.0776965096592903,0.475641161203384,0.876201331615448,-0.157871022820473,0.393917828798294,0.905486345291138,-0.335736602544785,0.313602894544601,0.888219654560089,-0.141262054443359,0.336132436990738,0.931160569190979,0.1121841147542,0.402329504489899,0.908595442771912,-0.219696894288063,0.333213925361633,0.916897892951965,-0.155809432268143,0.386708796024323,0.908944308757782,-0.225179493427277,0.359064280986786,0.905741155147552,-0.338146030902863,0.320227056741714,0.884936094284058,0.111875750124455,0.407180219888687,0.906470239162445,0.0120009137317538,0.405830383300781,0.913869619369507,-0.22215461730957,0.344730615615845,0.912035167217255,-0.328346461057663,0.380081534385681,0.864711999893188,-0.372789174318314,0.420172512531281,0.827335059642792,-0.239417657256126,0.429226100444794,0.870886981487274,-0.231855481863022,0.391370803117752,0.890545845031738,0.0119539871811867,0.407207757234573,0.913257300853729,-0.326934605836868,0.368649840354919,0.870178759098053,-0.0817233175039291,-0.443028807640076,0.892774760723114,0.00920519884675741,-0.435439258813858,0.900171041488647,-0.10194206982851,-0.439943790435791,0.892220556735992,0.0842317193746567,-0.433487832546234,0.897214233875275,0.0101627763360739,-0.443247586488724,0.896341621875763,-0.0804925113916397,-0.452233850955963,0.888259947299957,
- -0.253023833036423,-0.419546544551849,0.871756672859192,-0.0835833549499512,-0.428901642560959,0.899476051330566,-0.10155314207077,-0.435681223869324,0.894353985786438,-0.0859801918268204,-0.410300850868225,0.907888114452362,-0.2740618288517,-0.458452135324478,0.845406234264374,0.0747944340109825,-0.405945956707001,0.910831332206726,-0.252790629863739,-0.40840670466423,0.877097964286804,-0.289336770772934,-0.394457787275314,0.87217390537262,-0.0882866457104683,-0.391961455345154,0.915735721588135,-0.183427348732948,-0.503878116607666,0.844074189662933,0.0757164657115936,-0.408645361661911,0.90954726934433,-0.270453214645386,-0.472460389137268,0.838830292224884,-0.55525541305542,-0.428024739027023,0.713082253932953,-0.282465100288391,-0.424254834651947,0.860361158847809,-0.253567337989807,-0.49666953086853,0.830074071884155,-0.265239804983139,-0.344571590423584,0.900510013103485,-0.282355427742004,-0.424716353416443,0.860169410705566,-0.555335700511932,-0.427621066570282,0.713261902332306,-0.13635241985321,-0.788699269294739,-0.599467694759369,-0.0023915225174278,-0.747128188610077,-0.664675652980804,0.147358164191246,-0.670371174812317,-0.727246880531311,-0.157092362642288,-0.763337969779968,-0.626607656478882,-0.176974192261696,-0.78440135717392,-0.594470083713531,-0.0145676927641034,-0.730336368083954,-0.682932436466217,0.175147637724876,-0.697323441505432,-0.695027649402618,0.00440320931375027,-0.756249606609344,-0.654268383979797,0.199577048420906,-0.666916787624359,-0.71790736913681,-0.00363625050522387,-0.745437920093536,-0.666565179824829,-0.181163981556892,-0.771862268447876,-0.609432756900787,0.0499741286039352,-0.758821547031403,-0.649378478527069,-0.00767284259200096,-0.739915192127228,-0.672656416893005,0.0376720689237118,-0.698590338230133,-0.714529454708099,0.197070673108101,-0.661483764648438,-0.723603844642639,0.0314515568315983,-0.115190289914608,-0.992845416069031,0.0768823474645615,-0.0467594191431999,-0.995943129062653,0.226782575249672,0.0507902540266514,-0.972620189189911,0.021991265937686,-0.104962892830372,-0.994232952594757,
- -0.109433948993683,-0.21797102689743,-0.969800412654877,0.10913710296154,-0.110435388982296,-0.987873136997223,0.225046679377556,0.053180817514658,-0.972895681858063,0.0618311055004597,-0.0172290932387114,-0.997937917709351,0.237871319055557,0.0804341733455658,-0.96796053647995,0.111996926367283,-0.116107560694218,-0.986902177333832,-0.106821529567242,-0.222912535071373,-0.968968093395233,0.0750408098101616,-0.17746265232563,-0.981262505054474,0.251483410596848,0.0448384061455727,-0.966822445392609,0.0741286650300026,-0.0413481369614601,-0.996391117572784,0.0313492193818092,-0.023626159876585,-0.999229311943054,-0.145086795091629,-0.340142667293549,-0.929113984107971,-0.00726425042375922,-0.265533268451691,-0.964074313640594,0.139505967497826,-0.165553942322731,-0.976283729076386,-0.151858806610107,-0.328848898410797,-0.9320929646492,-0.171692088246346,-0.362793475389481,-0.915916323661804,-0.00593766057863832,-0.268058091402054,-0.963384449481964,0.155265405774117,-0.187366038560867,-0.969941556453705,-0.0119584491476417,-0.256579637527466,-0.966449081897736,0.193812057375908,-0.141477793455124,-0.970783650875092,-0.00830875989049673,-0.263543576002121,-0.964611709117889,-0.182822600007057,-0.319254368543625,-0.929866969585419,0.0452411137521267,-0.282756954431534,-0.958124101161957,-0.0130262523889542,-0.254538744688034,-0.966974854469299,0.0314593873918056,-0.196621209383011,-0.979974687099457,0.198628440499306,-0.155273616313934,-0.967696666717529,-0.13167978823185,-0.439689844846725,-0.888444304466248,-0.0074488059617579,-0.356233656406403,-0.93436723947525,0.127224534749985,-0.242529392242432,-0.961765885353088,-0.15800878405571,-0.406312376260757,-0.89996862411499,-0.169868960976601,-0.439862996339798,-0.881853222846985,-0.0247379224747419,-0.332097768783569,-0.942920625209808,0.176738485693932,-0.294880479574203,-0.9390469789505,0.0167503245174885,-0.38942876458168,-0.920904397964478,0.189904317259789,-0.259807705879211,-0.946803212165833,-0.0182550642639399,-0.341188997030258,-0.939817547798157,-0.18141570687294,-0.410641998052597,-0.893566846847534,
- 0.0416595786809921,-0.35233598947525,-0.93494588136673,0.0194926522672176,-0.393147259950638,-0.919268906116486,0.0386244542896748,-0.341958582401276,-0.938920915126801,0.200876712799072,-0.281128734350204,-0.938411116600037,-0.174003645777702,-0.0189784877002239,-0.98456221818924,-0.0456364639103413,0.0815134719014168,-0.995626866817474,0.0875785872340202,0.197295412421227,-0.9764244556427,-0.199462667107582,0.0144953317940235,-0.979798316955566,-0.210379347205162,-0.0223876666277647,-0.977363467216492,-0.0606866776943207,0.103730328381062,-0.992752313613892,0.121889561414719,0.15897111594677,-0.979730129241943,-0.0373853296041489,0.0693289339542389,-0.996893107891083,0.141801372170448,0.199158668518066,-0.96965366601944,-0.0470741800963879,0.0836362391710281,-0.995383858680725,-0.217036381363869,-0.00452793855220079,-0.976153016090393,0.00561157567426562,0.0678946748375893,-0.997676730155945,-0.0525240078568459,0.091682031750679,-0.994402170181274,-0.0187092162668705,0.154296085238457,-0.987847506999969,0.138086810708046,0.206823110580444,-0.968584656715393,-0.0026076789945364,0.229158386588097,-0.973385632038116,0.105147264897823,0.328474760055542,-0.938641786575317,0.225454121828079,0.448170125484467,-0.865051448345184,-0.0316918715834618,0.25843957066536,-0.965507447719574,-0.0423839315772057,0.217090219259262,-0.975230991840363,0.0882861763238907,0.347523242235184,-0.933505833148956,0.263556778430939,0.414332270622253,-0.871129512786865,0.114088028669357,0.318251401185989,-0.941116452217102,0.274722546339035,0.448603451251984,-0.850460171699524,0.103737041354179,0.330079555511475,-0.938235759735107,-0.0506230629980564,0.232593983411789,-0.971255660057068,0.155823662877083,0.319287598133087,-0.934759020805359,0.0967865660786629,0.337957739830017,-0.936171412467957,0.121125213801861,0.398700684309006,-0.90904700756073,0.269769668579102,0.455898135900497,-0.848163425922394,0.0298713445663452,-0.821414351463318,-0.569549143314362,0.0669758692383766,-0.77240401506424,-0.631590306758881,0.200739160180092,-0.674584686756134,-0.710379719734192,
- 0.00662269815802574,-0.811310887336731,-0.58457750082016,-0.100555956363678,-0.876963317394257,-0.469918966293335,0.100781477987766,-0.798564851284027,-0.593411564826965,0.194294288754463,-0.670991778373718,-0.715555667877197,0.0428740680217743,-0.752318799495697,-0.657402634620667,0.19953328371048,-0.650924265384674,-0.732450723648071,0.10566184669733,-0.802144825458527,-0.587706804275513,-0.0959504544734955,-0.880257487297058,-0.464693784713745,0.074399895966053,-0.843499958515167,-0.531951546669006,0.220704138278961,-0.673982560634613,-0.705008745193481,0.0614074803888798,-0.76786881685257,-0.637657105922699,0.00977923721075058,-0.764844357967377,-0.644140899181366,-0.274839520454407,0.458476513624191,-0.845140516757965,-0.153043627738953,0.559116661548615,-0.814841210842133,-0.0185472425073385,0.661326587200165,-0.749868750572205,-0.28395876288414,0.467275857925415,-0.83726978302002,-0.303163379430771,0.425882786512375,-0.852476298809052,-0.151762083172798,0.557695746421814,-0.816053748130798,-0.000122403216664679,0.646045386791229,-0.763298988342285,-0.158543333411217,0.565191864967346,-0.809581458568573,0.0252883695065975,0.678792536258698,-0.733894526958466,-0.150539547204971,0.556338310241699,-0.817205905914307,-0.317785412073135,0.45557889342308,-0.831540942192078,-0.0924387499690056,0.549219846725464,-0.830549597740173,-0.162967562675476,0.570052206516266,-0.805283844470978,-0.121475279331207,0.626214385032654,-0.770129442214966,0.0294361896812916,0.672463357448578,-0.739544868469238,0.0156687125563622,-0.859946966171265,-0.510142803192139,0.0512514151632786,-0.825293362140656,-0.562373697757721,0.200442850589752,-0.753473877906799,-0.626178741455078,-0.0145984180271626,-0.842752635478973,-0.538103044033051,-0.156486332416534,-0.892023384571075,-0.424035757780075,0.0707504153251648,-0.845491349697113,-0.529281377792358,0.199675768613815,-0.7529177069664,-0.627092301845551,0.0376994907855988,-0.810404121875763,-0.584657073020935,0.209616437554359,-0.733673870563507,-0.646361827850342,0.0723736137151718,-0.847106873989105,-0.526471257209778,
- -0.155133560299873,-0.893308758735657,-0.421821147203445,0.0354911535978317,-0.879889070987701,-0.473852127790451,0.218057498335838,-0.746950268745422,-0.628105282783508,0.0430095046758652,-0.816320776939392,-0.575995326042175,-0.00299015175551176,-0.807521939277649,-0.589829921722412,-0.0790199339389801,-0.290521055459976,-0.953600227832794,-0.0280478205531836,-0.229158878326416,-0.972984969615936,0.128388971090317,-0.150684416294098,-0.980209410190582,-0.104673370718956,-0.257035046815872,-0.960716664791107,-0.242759183049202,-0.34578675031662,-0.906366109848022,-0.0128674618899822,-0.26612389087677,-0.963852941989899,0.128031581640244,-0.150091230869293,-0.980347156524658,-0.0386270545423031,-0.203101173043251,-0.978395581245422,0.148644596338272,-0.12131729722023,-0.981420874595642,-0.0116072027012706,-0.269170254468918,-0.963022649288177,-0.241604894399643,-0.348511129617691,-0.905630767345428,-0.0557241886854172,-0.328206658363342,-0.942960858345032,0.154780149459839,-0.144146502017975,-0.977376520633698,-0.0346174761652946,-0.213005930185318,-0.976437449455261,-0.0806711167097092,-0.190212219953537,-0.978422939777374,-0.151819095015526,-0.541778147220612,-0.826696693897247,-0.00820345524698496,-0.487472832202911,-0.873099744319916,0.149647668004036,-0.403690844774246,-0.902573704719543,-0.158584728837013,-0.529338419437408,-0.833457708358765,-0.183800235390663,-0.557809054851532,-0.809361934661865,-0.00718944193795323,-0.489674627780914,-0.871875584125519,0.176722824573517,-0.444927901029587,-0.877956867218018,-0.000883134081959724,-0.503284752368927,-0.864120185375214,0.195938557386398,-0.41329362988472,-0.88926750421524,0.00354785332456231,-0.512761473655701,-0.858523905277252,-0.185599148273468,-0.547833442687988,-0.815739810466766,0.0489376224577427,-0.537311494350433,-0.841962873935699,-0.0023980790283531,-0.500028431415558,-0.866005778312683,0.0426911972463131,-0.453136414289474,-0.890418350696564,0.199490144848824,-0.426243871450424,-0.882337689399719,-0.338558852672577,0.934903025627136,0.106462448835373,
- -0.269632071256638,0.952176094055176,0.143733263015747,-0.392211526632309,0.897698104381561,0.200769111514091,-0.301038205623627,0.930418372154236,0.209039807319641,-0.024884432554245,0.9939786195755,0.10671204328537,-0.264823734760284,0.94958633184433,0.167792275547981,-0.393986761569977,0.907139718532562,0.147892460227013,-0.267683476209641,0.951185941696167,0.153593137860298,-0.122926346957684,0.979609727859497,0.158914804458618,-0.26519763469696,0.949805080890656,0.165953487157822,-0.0115240160375834,0.990140736103058,0.139601975679398,0.0474142767488956,0.993308126926422,0.105314038693905,-0.266464233398438,0.950524806976318,0.159685418009758,0.0470857359468937,0.993557691574097,0.103082738816738,-0.121618404984474,0.987198710441589,0.103187784552574,0.0633750632405281,0.45138892531395,0.890073955059052,0.147994324564934,0.451736211776733,0.879790902137756,0.0438739098608494,0.455324679613113,0.88924378156662,0.299751162528992,0.449745446443558,0.84135502576828,0.148122638463974,0.449737310409546,0.880792856216431,0.0636378899216652,0.447900205850601,0.891815900802612,-0.109145030379295,0.447698682546616,0.887498319149017,0.0638043358922005,0.445680618286133,0.892915308475494,0.0414112396538258,0.439432144165039,0.897320747375488,0.0609201528131962,0.483053922653198,0.87346875667572,-0.145453050732613,0.420227885246277,0.895685195922852,0.294867396354675,0.473819524049759,0.829788088798523,-0.108878709375858,0.451438367366791,0.88563472032547,-0.152928605675697,0.458380281925201,0.875500082969666,0.0617061965167522,0.473091632127762,0.878849625587463,0.0391824543476105,0.433809340000153,0.900152444839478,0.296507388353348,0.465892672538757,0.833683013916016,-0.143723011016846,0.411484152078629,0.900013744831085,-0.425880581140518,0.341365486383438,0.837911307811737,-0.146310195326805,0.424571603536606,0.893494546413422,-0.114952303469181,0.355752438306808,0.927483797073364,0.0294435061514378,0.47405019402504,0.880005419254303,-0.14622788131237,0.424154162406921,0.893706262111664,-0.425724416971207,0.340633511543274,0.838288605213165,
- 0.451351076364517,0.579109072685242,0.678907096385956,-0.00901826657354832,0.539868831634521,0.841700971126556,0.267178654670715,0.543959319591522,0.795439541339874,0.45054018497467,0.582407236099243,0.676620543003082,0.247377023100853,0.61748880147934,0.746667385101318,-0.011426905170083,0.547784209251404,0.836541652679443,0.222591191530228,0.636241316795349,0.738681375980377,-0.0213801059871912,0.579977214336395,0.814352095127106,-0.214090242981911,0.508935213088989,0.833756744861603,-0.00544736860319972,0.528044819831848,0.849199056625366,0.25133016705513,0.565907835960388,0.785227000713348,-0.090112715959549,0.527257978916168,0.844913423061371,-0.0190911814570427,0.572647571563721,0.819579303264618,-0.0951857045292854,0.549721240997314,0.829907357692719,-0.21631070971489,0.514476895332336,0.829773008823395,0.251050889492035,0.57014411687851,0.782246232032776,0.138760700821877,0.579868674278259,0.802806198596954,-0.0924484208226204,0.537612438201904,0.838108658790588,-0.196807146072388,0.570652842521667,0.797259211540222,-0.251562088727951,0.602645874023438,0.757320582866669,-0.109285399317741,0.611619353294373,0.783567905426025,-0.101824641227722,0.57896763086319,0.808967411518097,0.138782054185867,0.579092919826508,0.803362250328064,-0.195522338151932,0.561342656612396,0.804155111312866,0.231006115674973,0.33172419667244,0.914655804634094,-0.230521112680435,0.193547278642654,0.953624367713928,0.0341081507503986,0.240889444947243,0.969953060150146,0.231695145368576,0.328521132469177,0.915637075901031,0.0096770292147994,0.320052206516266,0.94735050201416,-0.231895312666893,0.198002815246582,0.952375710010529,-0.0310435518622398,0.382792860269547,0.923312604427338,-0.259063959121704,0.288981676101685,0.921615779399872,-0.438737511634827,0.200565323233604,0.875946879386902,-0.251480311155319,0.262994021177292,0.931446075439453,0.0080493213608861,0.342042088508606,0.939650177955627,-0.342032641172409,0.258313298225403,0.903486549854279,-0.344581216573715,0.271044939756393,0.898776054382324,-0.449299812316895,0.230706825852394,0.863078236579895,
- -0.264312773942947,0.30726957321167,0.914179503917694,0.00933710299432278,0.324665069580078,0.945783078670502,-0.102468699216843,0.317801266908646,0.942604124546051,-0.339529812335968,0.246069550514221,0.907837808132172,-0.419552743434906,0.191402480006218,0.887322127819061,-0.451983094215393,0.238570585846901,0.859532058238983,-0.337476372718811,0.236203953623772,0.911217510700226,-0.340692013502121,0.251724302768707,0.905849754810333,-0.10087826102972,0.273585855960846,0.956542909145355,-0.425252228975296,0.228815585374832,0.875673472881317,0.138430029153824,0.371611952781677,0.918009638786316,0.230300650000572,0.368985623121262,0.900450587272644,0.127975448966026,0.376355588436127,0.917594015598297,0.380297183990479,0.372767299413681,0.846415162086487,0.229988366365433,0.375761568546295,0.897724092006683,0.138142660260201,0.37639108300209,0.916103899478912,-0.0300412867218256,0.379620343446732,0.924654483795166,0.138534396886826,0.36985832452774,0.918701827526093,0.126095995306969,0.364373415708542,0.92267644405365,0.135524079203606,0.417016118764877,0.898738563060761,-0.0659459009766579,0.35840168595314,0.931235432624817,0.374934583902359,0.401180028915405,0.835750341415405,-0.0306099597364664,0.37226802110672,0.927620470523834,-0.0701583549380302,0.381295382976532,0.921787202358246,0.137529224157333,0.386362820863724,0.912035882472992,0.115998417139053,0.36654794216156,0.923139750957489,0.376093238592148,0.395229637622833,0.838061690330505,-0.0647667571902275,0.351993262767792,0.933759093284607,-0.346857696771622,0.282660126686096,0.894311487674713,-0.0644189342856407,0.350102871656418,0.934493541717529,-0.0376407690346241,0.27717050909996,0.960083186626434,0.109759569168091,0.39406344294548,0.912505805492401,-0.0644116476178169,0.350063294172287,0.934508860111237,-0.34680512547493,0.28238907456398,0.894417583942413,0.328095465898514,0.713147640228271,0.619494795799255,-0.139114528894424,0.653571486473084,0.743970096111298,0.124509394168854,0.67507928609848,0.727162539958954,0.327234119176865,0.71610426902771,0.616532683372498,
- 0.113431937992573,0.741174757480621,0.661659419536591,-0.141761526465416,0.660750269889832,0.737097501754761,0.0781240984797478,0.754402339458466,0.651746690273285,-0.15258102118969,0.689781188964844,0.707757711410522,-0.336959898471832,0.606845378875732,0.719858884811401,-0.135858610272408,0.644701838493347,0.752264559268951,0.117480054497719,0.697058200836182,0.707324743270874,-0.224701225757599,0.634947597980499,0.739155530929565,-0.15060256421566,0.684511184692383,0.713276445865631,-0.229814097285271,0.654178559780121,0.720580279827118,-0.339228630065918,0.611618876457214,0.714735090732574,0.117153607308865,0.70092785358429,0.703544676303864,0.00574893224984407,0.702473223209381,0.711687028408051,-0.2270867228508,0.643900632858276,0.730632305145264,-0.324830234050751,0.662153720855713,0.675305783748627,-0.373520761728287,0.68454921245575,0.625998914241791,-0.243555754423141,0.706731677055359,0.664237141609192,-0.236412793397903,0.679242730140686,0.69479376077652,0.00573700061067939,0.7027787566185,0.711385369300842,-0.323417812585831,0.653380751609802,0.68446671962738,-0.0756782442331314,-0.0985231772065163,0.992253005504608,0.00992901995778084,-0.0893611907958984,0.995949804782867,-0.10345196723938,-0.096282385289669,0.989963352680206,0.0858225524425507,-0.0881462544202805,0.992403507232666,0.0108990902081132,-0.0980918183922768,0.995117783546448,-0.0744813233613968,-0.108544938266277,0.991297423839569,-0.254099935293198,-0.0847012624144554,0.963462054729462,-0.0775153934955597,-0.0829926952719688,0.993530869483948,-0.103063054382801,-0.0917254164814949,0.990436613559723,-0.0799234211444855,-0.0623566396534443,0.994848787784576,-0.269471228122711,-0.129603385925293,0.95424747467041,0.076334573328495,-0.0581743493676186,0.995383739471436,-0.253872990608215,-0.0722488388419151,0.964535534381866,-0.284841120243073,-0.0600597150623798,0.956691384315491,-0.082166850566864,-0.0428317226469517,0.995697796344757,-0.178950920701027,-0.170476421713829,0.968975961208344,0.0769127011299133,-0.0599952861666679,0.995231151580811,
- -0.265879541635513,-0.1449274122715,0.953049898147583,-0.552022516727448,-0.148147106170654,0.820562958717346,-0.277985811233521,-0.091928593814373,0.956176280975342,-0.254576325416565,-0.171206846833229,0.951776802539825,-0.259786009788513,-0.00247492617927492,0.965663135051727,-0.277872502803802,-0.0924431681632996,0.956159591674805,-0.552091598510742,-0.14777335524559,0.820583879947662,-0.140453726053238,-0.949855446815491,-0.279369592666626,-6.84246770106256e-005,-0.933295428752899,-0.359109789133072,0.147571891546249,-0.883797824382782,-0.443986415863037,-0.161680847406387,-0.935454070568085,-0.314301133155823,-0.176243960857391,-0.943745493888855,-0.279790133237839,-0.0119922207668424,-0.924188733100891,-0.3817478120327,0.175596565008163,-0.89771044254303,-0.404081404209137,0.00648781377822161,-0.938009321689606,-0.346549570560455,0.20104768872261,-0.876935720443726,-0.436536133289337,-0.00121620355639607,-0.93244868516922,-0.361300408840179,-0.180326208472252,-0.937599778175354,-0.297303110361099,0.0516879260540009,-0.939095377922058,-0.339747577905655,-0.00544982822611928,-0.929270625114441,-0.369359493255615,0.0393744744360447,-0.905747532844543,-0.421984672546387,0.198618203401566,-0.873935997486115,-0.443606495857239,0.0448707081377506,-0.462709099054337,-0.885374009609222,0.0835544466972351,-0.405220150947571,-0.910392940044403,0.236118614673615,-0.303734689950943,-0.923034906387329,-0.00271123857237399,-0.416361153125763,-0.909195244312286,-0.132431790232658,-0.51432877779007,-0.847306311130524,0.0900131389498711,-0.41651576757431,-0.904661417007446,0.237471386790276,-0.305397570133209,-0.922138631343842,0.0716786161065102,-0.384314447641373,-0.920415461063385,0.243183299899101,-0.282552301883698,-0.927914917469025,0.0910321548581123,-0.41829314827919,-0.903738915920258,-0.131447225809097,-0.516043365001678,-0.846416532993317,0.0598719716072083,-0.473320960998535,-0.878853142261505,0.250374585390091,-0.300126671791077,-0.920454502105713,0.0752677172422409,-0.390650987625122,-0.917456567287445,0.0289130732417107,-0.376133501529694,-0.92611426115036,
- -0.512169539928436,0.663995265960693,-0.544786930084229,-0.455355525016785,0.716657519340515,-0.528255045413971,-0.577938616275787,0.679028153419495,-0.452667415142059,-0.496892929077148,0.733180940151215,-0.464266270399094,-0.226588398218155,0.789576888084412,-0.57028591632843,-0.454999685287476,0.733197093009949,-0.505368530750275,-0.571004211902618,0.653313159942627,-0.497127920389175,-0.455242604017258,0.724060356616974,-0.518160939216614,-0.320579290390015,0.788090825080872,-0.525491952896118,-0.455007582902908,0.732957482337952,-0.505708873271942,-0.219179406762123,0.811791241168976,-0.541253447532654,-0.154646947979927,0.807910978794098,-0.568651139736176,-0.455127269029617,0.728947639465332,-0.511365354061127,-0.154551833868027,0.806581795215607,-0.570560693740845,-0.308566570281982,0.75855952501297,-0.573911249637604,-0.129099652171135,-0.724024772644043,-0.677585065364838,-0.00734633300453424,-0.66322648525238,-0.748382687568665,0.131300076842308,-0.562977731227875,-0.815975844860077,-0.155472055077553,-0.696839332580566,-0.700173795223236,-0.17034637928009,-0.723344027996063,-0.669145405292511,-0.0253124311566353,-0.643050253391266,-0.765405535697937,0.181041345000267,-0.604033470153809,-0.776123464107513,0.0175560843199492,-0.690060913562775,-0.723538339138031,0.191927805542946,-0.57610023021698,-0.79452645778656,-0.018400514498353,-0.65089350938797,-0.758946001529694,-0.18206287920475,-0.69941121339798,-0.691141843795776,0.0457362942397594,-0.658605933189392,-0.751096963882446,0.020022090524435,-0.692646741867065,-0.720999121665955,0.042817659676075,-0.650694072246552,-0.758131802082062,0.203051060438156,-0.593510210514069,-0.778791308403015,-0.173019245266914,-0.364363968372345,-0.915042757987976,-0.0443624407052994,-0.274553656578064,-0.960547924041748,0.0907737389206886,-0.158221662044525,-0.983222365379334,-0.198067486286163,-0.331763714551926,-0.922335147857666,-0.208762094378471,-0.365623116493225,-0.907049119472504,-0.059644840657711,-0.252472013235092,-0.965764164924622,0.124237239360809,-0.194625779986382,-0.972977876663208,
- -0.0359055772423744,-0.286664396524429,-0.957358002662659,0.141075000166893,-0.156880110502243,-0.97748988866806,-0.0458745509386063,-0.272380083799362,-0.961095631122589,-0.215409353375435,-0.348517417907715,-0.912214040756226,0.00733957253396511,-0.288275748491287,-0.95751941204071,-0.0511530302464962,-0.264773309230804,-0.962953090667725,-0.0169910918921232,-0.204129040241241,-0.978796541690826,0.13701605796814,-0.148749247193336,-0.979336738586426,-0.00520643359050155,-0.131230652332306,-0.991338193416595,0.104348987340927,-0.0248634330928326,-0.994229912757874,0.222344756126404,0.110796593129635,-0.968652129173279,-0.0337003879249096,-0.101502694189548,-0.994264304637909,-0.0424662455916405,-0.141383826732636,-0.989043593406677,0.087737999856472,-0.00546758435666561,-0.996128678321838,0.261137664318085,0.0765855237841606,-0.962258696556091,0.113039255142212,-0.0350361280143261,-0.992972612380981,0.277237415313721,0.120873592793942,-0.953167855739594,0.102985233068466,-0.0232686046510935,-0.994410693645477,-0.050755824893713,-0.125353738665581,-0.990812957286835,0.157621636986732,-0.0307088885456324,-0.98702198266983,0.0958532989025116,-0.0149356126785278,-0.995283424854279,0.122922204434872,0.0528202205896378,-0.991009771823883,0.272101700305939,0.128752082586288,-0.95361602306366,0.0366120338439941,-0.969363629817963,-0.242886245250702,0.0673637092113495,-0.94755882024765,-0.312400996685028,0.204086616635323,-0.883107900619507,-0.422456324100494,0.0110978102311492,-0.964905619621277,-0.262362748384476,-0.0985140949487686,-0.9867103099823,-0.12921978533268,0.0994615033268929,-0.957868695259094,-0.269434630870819,0.203815177083015,-0.883046746253967,-0.422714829444885,0.0483993478119373,-0.940178632736206,-0.337226450443268,0.208801850676537,-0.87050473690033,-0.445671677589417,0.101878933608532,-0.958532750606537,-0.266149759292603,-0.0963766947388649,-0.987284421920776,-0.126416176557541,0.0721795037388802,-0.976890921592712,-0.201182097196579,0.222945064306259,-0.878424644470215,-0.422688603401184,0.0583941303193569,-0.944186568260193,-0.32419416308403,
- 0.00836368463933468,-0.94307267665863,-0.332481503486633,-0.276985436677933,0.128582313656807,-0.95223194360733,-0.151338413357735,0.236585929989815,-0.959751963615417,-0.0205384064465761,0.351694077253342,-0.935889661312103,-0.291082113981247,0.145630165934563,-0.945549070835114,-0.305745422840118,0.104669190943241,-0.946342587471008,-0.154519826173782,0.24097090959549,-0.958152830600739,0.00785698462277651,0.322103202342987,-0.946671962738037,-0.147990480065346,0.231970459222794,-0.961399257183075,0.0268717296421528,0.360427886247635,-0.932399928569794,-0.15464448928833,0.241142705082893,-0.958089411258698,-0.321468830108643,0.143459245562553,-0.93598997592926,-0.096303790807724,0.230201691389084,-0.968366026878357,-0.147468209266663,0.231250405311584,-0.961652934551239,-0.114923141896725,0.290954440832138,-0.949809551239014,0.0352555327117443,0.34430193901062,-0.938196897506714,0.0134836919605732,-0.985230386257172,-0.170702397823334,0.0510566607117653,-0.970723628997803,-0.23471012711525,0.199847295880318,-0.926256358623505,-0.319546937942505,-0.0178538784384727,-0.978852093219757,-0.203788757324219,-0.152584537863731,-0.984719395637512,-0.0839385390281677,0.0707110539078712,-0.978021204471588,-0.19614914059639,0.199258476495743,-0.926105558872223,-0.320350736379623,0.037394180893898,-0.964577078819275,-0.261137455701828,0.206736713647842,-0.915589928627014,-0.344898521900177,0.0723525211215019,-0.978547394275665,-0.192899346351624,-0.151198148727417,-0.985152006149292,-0.0813306719064713,0.0357461608946323,-0.990351796150208,-0.133886307477951,0.215204507112503,-0.921628832817078,-0.322935461997986,0.042769405990839,-0.967099666595459,-0.250776886940002,-0.00290755135938525,-0.964071154594421,-0.265628308057785,0.129558473825455,0.973866999149323,-0.186541259288788,-0.0720163062214851,0.954508244991302,-0.289357364177704,-0.204638466238976,0.940761268138886,-0.270354479551315,0.130803465843201,0.972533285617828,-0.192534267902374,-0.204100534319878,0.940289258956909,-0.272395074367523,-0.0904026478528976,0.973391950130463,-0.210560008883476,
- -0.1078090518713,0.971846640110016,-0.209502607584,-0.418853789567947,0.854028046131134,-0.308541119098663,-0.207894459366798,0.943540930747986,-0.257896482944489,-0.206630513072014,0.942477643489838,-0.262754172086716,-0.317324012517929,0.91164094209671,-0.261182963848114,-0.0885291770100594,0.967456877231598,-0.237043783068657,-0.206925645470619,0.94272768497467,-0.261622339487076,-0.426603674888611,0.858214139938354,-0.285443186759949,-0.309285193681717,0.899563491344452,-0.308429002761841,-0.0895920768380165,0.970886707305908,-0.222154140472412,-0.320327877998352,0.915855765342712,-0.242071241140366,-0.214621141552925,0.950464904308319,-0.224842578172684,-0.443938136100769,0.866043150424957,-0.229974269866943,-0.452232301235199,0.856590569019318,-0.248472467064857,-0.32069519162178,0.916358232498169,-0.239670962095261,-0.319111794233322,0.914171457290649,-0.249916359782219,-0.451019585132599,0.854747295379639,-0.256882131099701,-0.212698921561241,0.941952526569366,-0.259777963161469,0.00727735692635179,-0.326456785202026,-0.945184111595154,0.0380248315632343,-0.248218074440956,-0.967957615852356,0.155023366212845,-0.125271394848824,-0.979936122894287,-0.0526497662067413,-0.288224041461945,-0.95611447095871,-0.141368687152863,-0.40947300195694,-0.901302933692932,0.0478221252560616,-0.259136766195297,-0.964655995368958,0.157319739460945,-0.127127051353455,-0.979331016540527,0.0207821968942881,-0.228889048099518,-0.9732306599617,0.163767114281654,-0.0952583849430084,-0.981889188289642,0.0493126027286053,-0.260793745517731,-0.964134275913239,-0.139985576272011,-0.410989850759506,-0.900828182697296,0.0252940226346254,-0.329897314310074,-0.94367790222168,0.175290301442146,-0.111802957952023,-0.97814804315567,0.0260848347097635,-0.234848603606224,-0.971681892871857,-0.0309557132422924,-0.234237805008888,-0.971686363220215,-0.016363300383091,-0.384939670562744,-0.922796666622162,0.0925571471452713,-0.272918313741684,-0.957574427127838,0.198880851268768,-0.138674348592758,-0.970162808895111,-0.027536990121007,-0.375140696763992,-0.926558792591095,
- -0.0391909889876843,-0.416939318180084,-0.9080890417099,0.0927325040102005,-0.273089647293091,-0.957508623600006,0.24163182079792,-0.170674309134483,-0.955240488052368,0.107656858861446,-0.287626892328262,-0.951672613620758,0.25348961353302,-0.124971389770508,-0.959231555461884,0.113556452095509,-0.293349802494049,-0.949236989021301,-0.045174852013588,-0.407220482826233,-0.912212014198303,0.161229074001312,-0.305997014045715,-0.938280880451202,0.104087814688683,-0.284158200025558,-0.953110635280609,0.120117865502834,-0.223265111446381,-0.967328488826752,0.262402683496475,-0.137117922306061,-0.955166757106781,-0.764419257640839,0.619696438312531,-0.177875012159348,-0.719986200332642,0.678292691707611,-0.146761327981949,-0.80760782957077,0.584132671356201,-0.0809856504201889,-0.746966421604156,0.661640524864197,-0.0653679445385933,-0.528390944004059,0.832286477088928,-0.167637959122658,-0.718079268932343,0.687693297863007,-0.106958664953709,-0.803982496261597,0.578803956508636,-0.136375024914742,-0.719677031040192,0.680416166782379,-0.138198435306549,-0.605037748813629,0.784431219100952,-0.136370733380318,-0.71858149766922,0.685807108879089,-0.115365825593472,-0.522281348705292,0.84105372428894,-0.140893712639809,-0.45817032456398,0.871599197387695,-0.174340948462486,-0.719070494174957,0.683681190013886,-0.124570317566395,-0.458185285329819,0.870576322078705,-0.179340809583664,-0.599006593227386,0.779658794403076,-0.18254666030407,-0.178810149431229,0.612102806568146,-0.77029687166214,-0.0847164243459702,0.707058310508728,-0.702062427997589,0.0276370588690043,0.806229889392853,-0.590956509113312,-0.214134961366653,0.630476713180542,-0.746086716651917,-0.218852445483208,0.597527384757996,-0.771404325962067,-0.1068354845047,0.720276415348053,-0.685410857200623,0.0635797008872032,0.789074420928955,-0.610998511314392,-0.077916219830513,0.702870786190033,-0.707037389278412,0.0785888954997063,0.816560566425323,-0.571885168552399,-0.098573163151741,0.715411305427551,-0.69171530008316,-0.236789107322693,0.616576313972473,-0.750842571258545,
- -0.0268578380346298,0.725583374500275,-0.687609910964966,-0.0956220403313637,0.713652551174164,-0.693942666053772,-0.0622602924704552,0.768900036811829,-0.636330425739288,0.0752009451389313,0.819289207458496,-0.568427681922913,-0.0648796558380127,0.238693535327911,-0.968925178050995,-0.0472994334995747,0.306330978870392,-0.950749337673187,0.0782458856701851,0.423540502786636,-0.902491569519043,-0.145844593644142,0.287881553173065,-0.946495413780212,-0.232012018561363,0.152587845921516,-0.960670292377472,-0.0527532212436199,0.312290638685226,-0.94852077960968,0.0653249025344849,0.43385899066925,-0.898609638214111,-0.0766171962022781,0.338156551122665,-0.937965869903564,0.0755811706185341,0.46390226483345,-0.882656455039978,-0.0485178418457508,0.307664036750793,-0.950257241725922,-0.227973863482475,0.148262679576874,-0.962312996387482,-0.0677643418312073,0.241251364350319,-0.968093991279602,0.0923329070210457,0.440947234630585,-0.892771065235138,-0.065401554107666,0.326042920351028,-0.943089962005615,-0.118875227868557,0.326626271009445,-0.937648117542267,0.296292841434479,0.45906189084053,-0.837539672851563,0.0921970307826996,0.389078259468079,-0.91657942533493,-0.0347735397517681,0.411093354225159,-0.910929799079895,0.297274500131607,0.453620344400406,-0.840152621269226,-0.0343658067286015,0.409362733364105,-0.911724388599396,0.080042339861393,0.464614510536194,-0.881888091564178,0.0593818835914135,0.466057807207108,-0.882759273052216,-0.270266711711884,0.348109692335129,-0.897650003433228,-0.0377482697367668,0.423689603805542,-0.905020534992218,-0.0365969501435757,0.418820768594742,-0.907331168651581,-0.155567064881325,0.413305789232254,-0.897205233573914,0.0809020698070526,0.440734267234802,-0.893984436988831,-0.0371113009750843,0.420996904373169,-0.906302571296692,-0.277474701404572,0.370047062635422,-0.886607587337494,-0.149674311280251,0.366079717874527,-0.918467879295349,0.0804141834378242,0.454522550106049,-0.887097954750061,-0.157669767737389,0.430741786956787,-0.888595402240753,-0.0493167638778687,0.453344881534576,-0.889969825744629,
- -0.293243736028671,0.419204533100128,-0.859229683876038,-0.293854296207428,0.403241246938705,-0.866629183292389,-0.157702699303627,0.431017458438873,-0.888455867767334,-0.156656503677368,0.42229762673378,-0.892817676067352,-0.292912811040878,0.395124822854996,-0.87067699432373,-0.0489169061183929,0.42084789276123,-0.905811369419098,-0.728717505931854,0.279762387275696,-0.625063002109528,-0.51392525434494,0.357674658298492,-0.779711306095123,-0.64699649810791,0.34329229593277,-0.680842041969299,-0.728560090065002,0.282858997583389,-0.623851716518402,-0.530454337596893,0.29982516169548,-0.792920589447021,-0.513878524303436,0.351916313171387,-0.782357811927795,-0.639493882656097,0.295910090208054,-0.709566652774811,-0.513902246952057,0.354526579380035,-0.781162858009338,-0.410132229328156,0.401908755302429,-0.818694651126862,-0.513923287391663,0.357371091842651,-0.779851734638214,-0.511443018913269,0.386960595846176,-0.767259776592255,-0.341231435537338,0.389182806015015,-0.855627298355103,-0.400800734758377,0.355754464864731,-0.844273388385773,-0.513882100582123,0.352273643016815,-0.782194793224335,-0.34112623333931,0.391175776720047,-0.854759871959686,-0.0810082629323006,-0.948168098926544,-0.307270050048828,0.0392491482198238,-0.918009400367737,-0.394611537456512,0.173368349671364,-0.851942121982574,-0.494103223085403,-0.0895528048276901,-0.943941056728363,-0.317735373973846,-0.11445127427578,-0.955231189727783,-0.272826492786407,0.0396745391190052,-0.918241024017334,-0.39402961730957,0.210346698760986,-0.865621626377106,-0.454371750354767,0.0512749776244164,-0.924361109733582,-0.378057390451431,0.231677770614624,-0.840437471866608,-0.48988801240921,0.0564433895051479,-0.926964104175568,-0.370879650115967,-0.118785806000233,-0.951429426670074,-0.284028142690659,0.105469547212124,-0.930566072463989,-0.350603729486465,0.0484792143106461,-0.922921240329742,-0.38192430138588,0.0793755874037743,-0.895699739456177,-0.437517464160919,0.238395258784294,-0.846071064472198,-0.476792901754379,-0.203871101140976,-0.910170018672943,-0.360592782497406,
- -0.0913068130612373,-0.885560095310211,-0.45546281337738,0.0442278236150742,-0.823309540748596,-0.565866827964783,-0.232184827327728,-0.891108870506287,-0.389891266822815,-0.241624519228935,-0.904236495494843,-0.352099657058716,-0.108689643442631,-0.872827112674713,-0.475772649049759,0.0973782762885094,-0.850301802158356,-0.517208218574524,-0.0664290189743042,-0.902343094348907,-0.425868660211563,0.102796763181686,-0.83210676908493,-0.545005679130554,-0.0799055844545364,-0.893460512161255,-0.441976726055145,-0.239206805825233,-0.90687108039856,-0.346936821937561,-0.0237148441374302,-0.902241051197052,-0.430579751729965,-0.0820430591702461,-0.892006516456604,-0.444514930248261,-0.0496249124407768,-0.863168478012085,-0.502471446990967,0.100059315562248,-0.829452157020569,-0.549542963504791,-0.0684372335672379,-0.181176245212555,-0.981066524982452,0.0435903631150723,-0.0773328393697739,-0.996051967144012,0.165146052837372,0.0520509108901024,-0.984894752502441,-0.0997868776321411,-0.147249802947044,-0.984052896499634,-0.111098699271679,-0.18806466460228,-0.975852847099304,0.0237917844206095,-0.0534342005848885,-0.998287916183472,0.197378635406494,0.0219542216509581,-0.980081498622894,0.0497904941439629,-0.0848120227456093,-0.995152175426483,0.217127323150635,0.0687054693698883,-0.973722398281097,0.031255915760994,-0.0624468810856342,-0.997558772563934,-0.125527888536453,-0.158011838793755,-0.979425847530365,0.100752107799053,-0.0642001330852509,-0.992838025093079,0.0341256931424141,-0.0659111365675926,-0.997241795063019,0.0734067782759666,0.00681541301310062,-0.997278809547424,0.214237153530121,0.0734992027282715,-0.974012494087219,-0.0439674407243729,-0.564852237701416,-0.824019908905029,-0.00852473452687263,-0.506783425807953,-0.862031400203705,0.13098381459713,-0.411366164684296,-0.9020094871521,-0.0903049036860466,-0.527289211750031,-0.844873428344727,-0.204547390341759,-0.617620527744293,-0.75941127538681,0.00489961123093963,-0.525922775268555,-0.850518226623535,0.140119090676308,-0.420590490102768,-0.89636504650116,
- -0.0165747329592705,-0.495137155056,-0.868656694889069,0.1527359187603,-0.39192920923233,-0.907228350639343,0.00489217601716518,-0.525912284851074,-0.850524723529816,-0.204665094614029,-0.617457985877991,-0.759511590003967,-0.026473481208086,-0.578643500804901,-0.815150856971741,0.157605558633804,-0.401397258043289,-0.902242183685303,-0.0169950071722269,-0.494525641202927,-0.868996858596802,-0.0673534199595451,-0.483155131340027,-0.872940361499786,0.296123623847961,0.904516398906708,0.306856542825699,0.0926188379526138,0.969996988773346,0.224783480167389,-0.0378822311758995,0.968598961830139,0.245725825428963,0.29713100194931,0.906232953071594,0.300757706165314,-0.0374857448041439,0.969065725803375,0.243939474225044,0.0798202604055405,0.94922548532486,0.304301917552948,0.0603057406842709,0.950222313404083,0.305680841207504,-0.27061715722084,0.94428551197052,0.187327221035957,-0.0409252718091011,0.964895248413086,0.259426802396774,-0.0397474952042103,0.966354072093964,0.254125863313675,-0.15281380712986,0.955936014652252,0.250667601823807,0.0806912630796433,0.956960499286652,0.278774976730347,-0.0403338223695755,0.965631902217865,0.256764978170395,-0.277497798204422,0.93749463558197,0.209997102618217,-0.146975338459015,0.968169569969177,0.202598571777344,0.0801933631300926,0.952559411525726,0.29359769821167,-0.15502056479454,0.950432419776917,0.269530773162842,-0.0520155765116215,0.955013155937195,0.291966259479523,-0.293194144964218,0.919043004512787,0.263433426618576,-0.298269182443619,0.922259032726288,0.245914176106453,-0.155254334211349,0.949818432331085,0.27155339717865,-0.154095098376274,0.952804327011108,0.261569529771805,-0.29730224609375,0.924886703491211,0.237056836485863,-0.0516612939536572,0.965066075325012,0.256862968206406,-0.0483656674623489,0.194813802838326,-0.979647040367126,-0.00432939454913139,0.267495840787888,-0.963549315929413,0.132989391684532,0.361095815896988,-0.922997117042542,-0.100150004029274,0.24158501625061,-0.965197741985321,-0.210883647203445,0.122360959649086,-0.969822585582733,0.00373677117750049,0.254489809274673,-0.967068254947662,
- 0.134669631719589,0.359155029058456,-0.923510670661926,-0.0181095525622368,0.289566695690155,-0.956986486911774,0.143080934882164,0.384262144565582,-0.912069439888,0.00493233231827617,0.252556622028351,-0.967569649219513,-0.209784314036369,0.120620705187321,-0.970278918743134,-0.026897981762886,0.188588365912437,-0.981687903404236,0.151471301913261,0.366865485906601,-0.917859554290771,-0.0138169955462217,0.282711744308472,-0.959105491638184,-0.0656760334968567,0.292679309844971,-0.953952550888062,-0.0780773237347603,0.14086551964283,-0.98694521188736,0.0439108051359653,0.232268050312996,-0.971660137176514,0.174795299768448,0.340006023645401,-0.924035966396332,-0.0860414505004883,0.151226341724396,-0.984747409820557,-0.115475371479988,0.102922171354294,-0.987963795661926,0.0447968132793903,0.230982214212418,-0.971926152706146,0.211985513567925,0.298337578773499,-0.930621862411499,0.0554169565439224,0.215510219335556,-0.974927842617035,0.229328170418739,0.335257083177567,-0.913789510726929,0.0612172409892082,0.207015112042427,-0.976420700550079,-0.119502276182175,0.113574370741844,-0.986316442489624,0.105451926589012,0.183961793780327,-0.977260529994965,0.0528532974421978,0.219254896044731,-0.974234998226166,0.0793135017156601,0.275107800960541,-0.958136260509491,0.235853686928749,0.3219233751297,-0.916917860507965,-0.205306977033615,0.195615455508232,-0.958949267864227,-0.0861148610711098,0.298524886369705,-0.950508892536163,0.0415142811834812,0.412861824035645,-0.90984708070755,-0.233730182051659,0.227867037057877,-0.945223271846771,-0.243482604622841,0.188901081681252,-0.951332032680511,-0.10334574431181,0.320583581924438,-0.941565632820129,0.0734589919447899,0.381861478090286,-0.921295583248138,-0.0813725963234901,0.292425453662872,-0.95281994342804,0.0903176888823509,0.420108824968338,-0.902968049049377,-0.0971275717020035,0.312641948461533,-0.944892287254334,-0.256452083587646,0.218774244189262,-0.941472351551056,-0.0331438444554806,0.305853217840195,-0.951501607894897,-0.0953879654407501,0.310416370630264,-0.945802748203278,
- -0.0563514903187752,0.374297082424164,-0.925595164299011,0.0878719016909599,0.42445507645607,-0.901175022125244,-0.0668859779834747,0.935301065444946,-0.347473949193954,0.0431221984326839,0.967432498931885,-0.249429032206535,0.167460948228836,0.978892624378204,-0.117158323526382,-0.0563300959765911,0.931888282299042,-0.35834527015686,-0.0799742117524147,0.910203337669373,-0.406366884708405,0.0646696984767914,0.959400832653046,-0.274532169103622,0.181235939264297,0.974880695343018,-0.129465013742447,0.0319800823926926,0.97113972902298,-0.236358016729355,0.202280357480049,0.975929260253906,-0.0815155282616615,0.0707315653562546,0.956935286521912,-0.281552612781525,-0.0930627062916756,0.919878721237183,-0.381001949310303,0.118506982922554,0.947329461574554,-0.297528147697449,0.0334740281105042,0.970660269260406,-0.238114163279533,0.0673744678497314,0.983284294605255,-0.169152930378914,0.212470680475235,0.972253441810608,-0.0978748798370361,-0.0204673074185848,0.698825597763062,-0.714999258518219,0.0114748831838369,0.745632171630859,-0.666258931159973,0.152271196246147,0.800779104232788,-0.579281032085419,-0.0926110744476318,0.742019951343536,-0.663950026035309,-0.206908255815506,0.642272174358368,-0.738021314144135,0.00709186168387532,0.750470995903015,-0.660865366458893,0.1406230032444,0.810274481773376,-0.568929135799408,-0.0118386512622237,0.770745635032654,-0.637032985687256,0.153578400611877,0.825300693511963,-0.543408215045929,0.0104633951559663,0.746753692626953,-0.665018379688263,-0.203682333230972,0.638796210289001,-0.741925239562988,-0.0209387466311455,0.701511561870575,-0.712350428104401,0.16602049767971,0.808486819267273,-0.564611613750458,-0.00293057388626039,0.761331379413605,-0.648356318473816,-0.0563346706330776,0.765947937965393,-0.640429675579071,0.0261562168598175,-0.198593825101852,0.979732811450958,-0.149006605148315,-0.240208014845848,0.959216952323914,-0.0792037546634674,-0.219934314489365,0.9722940325737,-0.134276911616325,-0.283956855535507,0.949388325214386,0.038303054869175,-0.245710641145706,0.968586266040802,
- -0.145636513829231,-0.287601262331009,0.946612656116486,-0.0734383389353752,-0.237472891807556,0.968614161014557,0.252801209688187,-0.128932312130928,0.958889067173004,0.0245992131531239,-0.192537203431129,0.980981290340424,0.038611326366663,-0.246903344988823,0.968270599842072,-0.176871284842491,-0.294478833675385,0.939147889614105,-0.146389991044998,-0.284131407737732,0.947543859481812,0.251483172178268,-0.124173015356064,0.959863126277924,0.125002294778824,-0.170995071530342,0.977310240268707,0.0231679752469063,-0.186966046690941,0.982093155384064,-0.170934811234474,-0.317383289337158,0.932764232158661,0.044730681926012,-0.270544081926346,0.961667835712433,0.138581573963165,-0.211668014526367,0.967466711997986,0.126776188611984,-0.176286101341248,0.976140856742859,0.252968639135361,-0.129538372159004,0.958763122558594,0.289002180099487,-0.116712301969528,0.95018744468689,0.141029849648476,-0.21904356777668,0.965469062328339,-0.183061569929123,-0.326560080051422,0.927279353141785,-0.172183737158775,-0.312613099813461,0.93414443731308,0.33666005730629,-0.0979427546262741,0.936518788337708,0.128390982747078,-0.181108266115189,0.975046455860138,0.290434658527374,-0.121280997991562,0.949177861213684,-0.205885350704193,-0.289505064487457,0.934771656990051,0.133870124816895,-0.197511449456215,0.971116900444031,0.116445861756802,-0.14465506374836,0.98260635137558,0.128650784492493,-0.16933186352253,0.977126240730286,0.110884770750999,-0.129116415977478,0.985410332679749,0.320750594139099,-0.0592857524752617,0.945306539535522,0.838181793689728,-0.374204695224762,0.396764576435089,0.634583473205566,-0.590481579303741,0.498633414506912,0.544708132743835,-0.682877123355865,0.486797571182251,0.636458277702332,-0.600111901760101,0.484548002481461,0.201285481452942,-0.810262739658356,0.550416648387909,0.51639187335968,-0.640429675579071,0.568497359752655,0.854483962059021,-0.457093179225922,0.24682579934597,0.964868605136871,-0.221001803874969,0.142080217599869,0.644685983657837,-0.671056509017944,0.366146355867386,0.134939134120941,-0.768333852291107,0.625663280487061,
- 0.172514632344246,-0.754846692085266,0.632807374000549,0.622459411621094,-0.539929389953613,0.56658673286438,0.609349370002747,-0.496238738298416,0.618417739868164,0.944155275821686,-0.0522278174757957,0.3253353536129,0.542876005172729,-0.697859823703766,0.467201739549637,0.637489855289459,-0.605787098407745,0.476055353879929,0.493835210800171,-0.622859597206116,0.606772363185883,0.155387461185455,-0.803887605667114,0.574124932289124,0.877898812294006,-0.272700518369675,0.39360910654068,0.535077035427094,-0.685661375522614,0.49351903796196,0.952619791030884,-0.0844274461269379,0.292211472988129,0.528933763504028,-0.676141619682312,0.512895286083221,0.166699022054672,-0.856813669204712,0.487936198711395,0.185606762766838,-0.851885616779327,0.489735692739487,0.579577624797821,-0.758203327655792,0.298692911863327,0.915330708026886,-0.336029171943665,0.221932545304298,0.680144011974335,-0.681583642959595,0.269903689622879,0.259167373180389,-0.920075237751007,0.293758124113083,0.578707456588745,-0.756672382354736,0.304211467504501,0.661036252975464,-0.665260553359985,0.347072720527649,-0.155880644917488,-0.357940375804901,-0.92064106464386,0.0175158083438873,-0.35540109872818,-0.934549868106842,-0.205809414386749,-0.347974538803101,-0.914634466171265,-0.155826240777969,-0.357506513595581,-0.92081880569458,0.0156567841768265,-0.389236032962799,-0.921005010604858,0.0175355114042759,-0.366503149271011,-0.93025153875351,-0.205776810646057,-0.348837524652481,-0.914313018321991,0.0175162721425295,-0.355650693178177,-0.934454798698425,-0.0679298415780067,-0.33160936832428,-0.940968096256256,0.0174954906105995,-0.345193535089493,-0.938368439674377,0.0281277652829885,-0.327310085296631,-0.944498360157013,0.16198718547821,-0.343316227197647,-0.92514556646347,-0.0627744719386101,-0.356534838676453,-0.932170748710632,0.0174882542341948,-0.341757237911224,-0.939625561237335,0.116373747587204,-0.331226170063019,-0.936347365379334,0.118163213133812,-0.349664330482483,-0.929393529891968,0.017496831715107,-0.345847427845001,-0.938127636909485,
- 0.162417232990265,-0.338477313518524,-0.926851630210876,-0.1180479824543,0.681864023208618,0.72189074754715,0.0115571282804012,0.67918336391449,0.733877658843994,0.0437460206449032,0.662320733070374,0.747942209243774,-0.12021017819643,0.672077655792236,0.730658054351807,-0.177656590938568,0.671728134155273,0.719179689884186,0.0114849517121911,0.684103608131409,0.729294419288635,0.052663441747427,0.692050814628601,0.719925165176392,0.011593678034842,0.67666631937027,0.736198544502258,0.19854611158371,0.661842942237854,0.722871601581573,0.0114917410537601,0.683643698692322,0.729725539684296,-0.177649080753326,0.671405971050262,0.719482362270355,-0.0928718224167824,0.690675497055054,0.717176616191864,0.198896706104279,0.665898442268372,0.719040632247925,0.0115953935310245,0.676547765731812,0.736307442188263,0.100387670099735,0.665426909923553,0.739681899547577,0.0979254245758057,0.683402001857758,0.723444759845734,0.0115588074550033,0.679068088531494,0.733984291553497,-0.0877394303679466,0.66672819852829,0.740118443965912,-0.110803179442883,0.719854772090912,-0.685223877429962,0.0172615051269531,0.730736434459686,-0.682441413402557,0.0508097819983959,0.744438648223877,-0.665754795074463,-0.114821791648865,0.736832976341248,-0.666253089904785,-0.171871185302734,0.725979924201965,-0.665892958641052,0.01735501550138,0.734693884849548,-0.678176760673523,0.0583208613097668,0.720122992992401,-0.691391050815582,0.0174049772322178,0.736811995506287,-0.675873637199402,0.204139947891235,0.721979022026062,-0.661115109920502,0.017346054315567,0.734314322471619,-0.678587973117828,-0.171889096498489,0.725467145442963,-0.66644698381424,-0.0860086977481842,0.722702860832214,-0.685786485671997,0.204670995473862,0.715580701828003,-0.667872786521912,0.0173467304557562,0.734346985816956,-0.678552567958832,0.112527392804623,0.736639201641083,-0.666858553886414,0.109086111187935,0.71625143289566,-0.689263463020325,0.0172177813947201,0.72888594865799,-0.684418618679047,-0.082952544093132,0.735876858234406,-0.672014951705933,-0.111009880900383,0.758898913860321,0.641676902770996,
- 0.0102829374372959,0.757317006587982,0.652966499328613,0.0455361008644104,0.742606043815613,0.668178677558899,-0.115720100700855,0.73984283208847,0.66275292634964,-0.184847757220268,0.73739093542099,0.649681508541107,0.0103813204914331,0.751883864402771,0.659213840961456,0.0496953390538692,0.755337178707123,0.653449594974518,0.0105681540444493,0.74131166934967,0.671077728271484,0.193743973970413,0.726143419742584,0.659680962562561,0.0103516643866897,0.753531157970428,0.657330691814423,-0.18488784134388,0.739076793193817,0.64775151014328,-0.0865365266799927,0.760333597660065,0.643742382526398,0.194078147411346,0.729422807693481,0.655954301357269,0.010584226809442,0.740386247634888,0.672098338603973,0.096739761531353,0.729431807994843,0.67717844247818,0.0931585505604744,0.752379179000854,0.652109861373901,0.0104346601292491,0.748899936676025,0.662600934505463,-0.0811329036951065,0.738095879554749,0.66979992389679,0.154982432723045,-0.558963775634766,-0.814579606056213,-0.01313073374331,-0.555865406990051,-0.831168711185455,0.209638252854347,-0.546973526477814,-0.810476243495941,0.15372060239315,-0.549881398677826,-0.820975303649902,-0.0126245133578777,-0.578708708286285,-0.815436601638794,-0.0131876086816192,-0.558274209499359,-0.829551696777344,0.209555730223656,-0.548231422901154,-0.809647262096405,-0.0131479101255536,-0.55659282207489,-0.830681383609772,0.069033220410347,-0.535904049873352,-0.84145188331604,-0.0132192587479949,-0.559616267681122,-0.828646540641785,-0.0201993752270937,-0.542882323265076,-0.839565813541412,-0.157249838113785,-0.55328094959259,-0.818017542362213,0.0604039095342159,-0.570877909660339,-0.818809986114502,-0.0131859667599201,-0.558205962181091,-0.829597651958466,-0.113851562142372,-0.545504510402679,-0.830338895320892,-0.116153106093407,-0.562195599079132,-0.818806827068329,-0.0132717033848166,-0.561837136745453,-0.827141404151917,-0.157557040452957,-0.549920797348022,-0.820221245288849,-0.113310277462006,0.813983559608459,-0.569729566574097,0.0194796863943338,0.824639439582825,-0.565323233604431,
- 0.0538233667612076,0.836001455783844,-0.546081185340881,-0.116190865635872,0.824236273765564,-0.554196953773499,-0.172825500369072,0.813613593578339,-0.55512547492981,0.0194740947335958,0.824401617050171,-0.565670192241669,0.0621911324560642,0.813517153263092,-0.578205943107605,0.0195419359952211,0.827276527881622,-0.561454951763153,0.204066932201386,0.810790598392487,-0.548612356185913,0.0194645300507545,0.823996365070343,-0.566260635852814,-0.172837093472481,0.813185155391693,-0.555749297142029,-0.0818640664219856,0.813309967517853,-0.576042711734772,0.204424619674683,0.807382762432098,-0.553483188152313,0.0195391792804003,0.827160656452179,-0.561625719070435,0.114876680076122,0.827805042266846,-0.549128592014313,0.111298188567162,0.810599207878113,-0.574927687644959,0.0194361433386803,0.822796523571014,-0.568003594875336,-0.0779519304633141,0.827671408653259,-0.555772960186005,-0.156787425279617,-0.0538316816091537,-0.986164212226868,0.0160926785320044,-0.0461538806557655,-0.998804807662964,-0.20355635881424,-0.046486858278513,-0.977959096431732,-0.155361443758011,-0.0417272187769413,-0.986976027488709,0.0179874580353498,-0.072516180574894,-0.997205018997192,0.0160989817231894,-0.0470406450331211,-0.998763263225555,-0.203493416309357,-0.0480358079075813,-0.977897226810455,0.0160992592573166,-0.0470767170190811,-0.998761534690857,-0.0596007034182549,-0.0222376901656389,-0.997974574565887,0.0161000937223434,-0.0472039245069027,-0.998755514621735,0.0267992839217186,-0.0269665624946356,-0.999277055263519,0.169282883405685,-0.0494784377515316,-0.984324753284454,-0.0523918233811855,-0.0594119355082512,-0.996857702732086,0.0160803012549877,-0.0444325096905231,-0.998882949352264,0.121463544666767,-0.0354120507836342,-0.991964101791382,0.12305872887373,-0.05341562256217,-0.990960836410522,0.0161099582910538,-0.0485919825732708,-0.998688876628876,0.169719532132149,-0.0443887263536453,-0.984492242336273,-0.105145886540413,0.817586183547974,-0.566124737262726,0.0195421446114779,0.827283442020416,-0.561444759368896,0.0529032796621323,0.838378131389618,-0.542515754699707,
- -0.108788348734379,0.829451084136963,-0.547883212566376,-0.172724306583405,0.817189753055573,-0.549879491329193,0.0195599012076855,0.828034043312073,-0.560336709022522,0.0607054606080055,0.817624688148499,-0.572542309761047,0.0196399204432964,0.831424593925476,-0.555290400981903,0.205742985010147,0.814334332942963,-0.542705655097961,0.0195496268570423,0.827598810195923,-0.560979545116425,-0.172738254070282,0.816712021827698,-0.550584197044373,-0.0854377299547195,0.816598296165466,-0.570848345756531,0.205923140048981,0.812341332435608,-0.545616388320923,0.0196595769375563,0.832257509231567,-0.554040789604187,0.105191327631474,0.834417104721069,-0.541001975536346,0.102111883461475,0.819995880126953,-0.563187301158905,0.0196215137839317,0.830643892288208,-0.556458175182343,-0.0798847898840904,0.835810422897339,-0.543175220489502,0.122963279485703,-0.173573210835457,-0.977114319801331,0.125314548611641,-0.204735144972801,-0.970762491226196,0.342079550027847,-0.13394059240818,-0.930076062679291,0.125234305858612,-0.188881397247314,-0.973981738090515,-0.247354000806808,-0.224162101745605,-0.942638516426086,0.11149600893259,-0.148729681968689,-0.982572197914124,0.344572871923447,-0.14879298210144,-0.926892757415771,0.295020073652267,-0.160948425531387,-0.941838085651398,0.125733092427254,-0.192265629768372,-0.973254919052124,-0.262595027685165,-0.180684924125671,-0.947837948799133,0.114693857729435,-0.11914125084877,-0.986230552196503,-0.203351184725761,-0.166786849498749,-0.964795529842377,0.0210602376610041,-0.218278422951698,-0.975659251213074,0.126247003674507,-0.195760920643806,-0.972491323947906,0.295470386743546,-0.164840698242188,-0.941023290157318,0.00453208200633526,-0.121508203446865,-0.992580056190491,-0.203267425298691,-0.167908534407616,-0.964618623256683,0.113159842789173,-0.109255358576775,-0.98755156993866,0.0214851778000593,-0.220753878355026,-0.975092887878418,0.29573181271553,-0.167117863893509,-0.940539479255676,0.232654750347137,-0.179504722356796,-0.955850422382355,-0.203779324889183,-0.160993337631226,-0.965688943862915,
- 0.00841093342751265,-0.144302979111671,-0.989497900009155,-0.195487901568413,-0.167945981025696,-0.966218709945679,-0.108367301523685,-0.288955092430115,-0.951189517974854,0.0222817435860634,-0.225392550230026,-0.974013209342957,0.233579933643341,-0.185364782810211,-0.954505264759064,0.00629784911870956,-0.131891474127769,-0.991244256496429,-0.215269282460213,-0.162420466542244,-0.962953150272369,-0.195807039737701,-0.165306881070137,-0.966609120368958,-0.215159460902214,-0.162790879607201,-0.962915122509003,0.00538728106766939,-0.126538351178169,-0.991947114467621,-0.154121860861778,-0.145848497748375,-0.977228045463562,0.200174123048782,0.434223830699921,-0.87828254699707,-0.0781523734331131,0.402591288089752,-0.912037551403046,0.0182460062205791,0.419287979602814,-0.907669901847839,0.0227177496999502,0.387886345386505,-0.921427190303802,-0.0743194669485092,0.380367755889893,-0.921844363212585,-0.256524235010147,0.341400921344757,-0.904235005378723,0.0119215650483966,0.462592720985413,-0.886490762233734,0.324971616268158,0.471744894981384,-0.819664716720581,0.193514093756676,0.473249912261963,-0.859410762786865,-0.228491708636284,0.336610376834869,-0.913501501083374,0.0240893084555864,0.378123134374619,-0.925441861152649,-0.254778027534485,0.331031382083893,-0.908573806285858,0.323630005121231,0.483438670635223,-0.813357651233673,0.0105887586250901,0.471555113792419,-0.881772994995117,0.113279066979885,0.469085931777954,-0.875857412815094,0.125961035490036,0.402617186307907,-0.906660497188568,0.0244010202586651,0.375895589590073,-0.926340699195862,-0.230570957064629,0.34539857506752,-0.909690499305725,0.113547414541245,0.467738896608353,-0.876542806625366,0.392604559659958,0.475606590509415,-0.78718489408493,0.323788374662399,0.482088595628738,-0.814095616340637,-0.131683140993118,0.474306672811508,-0.8704554438591,0.105254210531712,0.508270919322968,-0.854741036891937,-0.251456171274185,0.437476128339767,-0.863356471061707,0.396478086709976,0.441057741641998,-0.805154144763947,0.121605038642883,0.426116287708282,-0.896458089351654,
- 0.231458678841591,0.429352968931198,-0.872973740100861,0.0777918323874474,0.868703961372375,-0.489185124635696,0.00920882541686296,0.848444998264313,-0.529203414916992,-0.282466322183609,0.777629494667053,-0.561698436737061,0.0866927728056908,0.136159777641296,0.986886560916901,0.305677711963654,0.153608292341232,0.939662516117096,0.0986369252204895,0.104318030178547,0.989640593528748,-0.280105084180832,0.079835556447506,0.95664393901825,0.0892065167427063,0.115744546055794,0.989265084266663,0.0858396291732788,0.161138474941254,0.983191728591919,0.307859301567078,0.139444008469582,0.941157817840576,0.0891661792993546,0.116075120866299,0.98922997713089,0.272365987300873,0.134059339761734,0.952809035778046,0.080284908413887,0.186639472842216,0.979142487049103,-0.294472932815552,0.123524881899357,0.947643041610718,-0.233935728669167,0.14165672659874,0.961877048015594,-0.0217519048601389,0.0918525457382202,0.995535016059875,0.272753000259399,0.130117207765579,0.953244626522064,0.0896111503243446,0.11242451518774,0.989611327648163,-0.23396435379982,0.142075330018997,0.961808443069458,-0.0361285954713821,0.187931254506111,0.981517493724823,0.0791249424219131,0.195550620555878,0.977496385574341,0.207115828990936,0.121759548783302,0.970709979534149,0.272982239723206,0.127760708332062,0.953497707843781,-0.0213646162301302,0.0892714112997055,0.995778262615204,-0.0328686647117138,0.166099533438683,0.985561072826386,-0.23417903482914,0.145236358046532,0.961283922195435,-0.231687948107719,0.138985320925713,0.962810456752777,-0.146132335066795,0.0189858973026276,0.989082872867584,0.207970902323723,0.115428060293198,0.971300423145294,-0.0206234473735094,0.0843329429626465,0.996224284172058,-0.240406081080437,0.146850749850273,0.959499776363373,-0.03463951125741,0.177955538034439,0.983428657054901,-0.232100948691368,0.14279305934906,0.962153494358063,-0.0354514196515083,0.183393865823746,0.982400059700012,-0.240370154380798,0.146719917654991,0.959528744220734,-0.188870742917061,0.163228839635849,0.968340933322906,-0.118420831859112,-0.846621155738831,0.518853664398193,
- 0.00538436649367213,-0.857073485851288,0.515166282653809,0.0372430272400379,-0.867032885551453,0.49685725569725,-0.120029598474503,-0.851844131946564,0.509857296943665,-0.182289391756058,-0.839932799339294,0.51115894317627,0.00517476815730333,-0.852043271064758,0.523445785045624,0.0433910563588142,-0.851900219917297,0.521903693675995,0.00572146335616708,-0.865019261837006,0.501706063747406,0.19461715221405,-0.848380625247955,0.492315411567688,0.0051720985211432,-0.851978778839111,0.523550808429718,-0.182296648621559,-0.839790403842926,0.511390268802643,-0.0954366698861122,-0.841273725032806,0.53211897611618,0.19501918554306,-0.844240128993988,0.499225527048111,0.00567060383036733,-0.86383193731308,0.503748178482056,0.096991203725338,-0.865002036094666,0.492304921150208,0.0917378291487694,-0.843118846416473,0.529844164848328,0.00521727744489908,-0.853069067001343,0.521771967411041,-0.0906103029847145,-0.856798112392426,0.507628619670868,-0.122802101075649,0.709223926067352,0.694205343723297,-8.97916652320419e-006,0.707676768302917,0.70653635263443,0.0357686877250671,0.692727267742157,0.720312118530273,-0.125720649957657,0.695869147777557,0.707078814506531,-0.188862845301628,0.693830251693726,0.694931924343109,-1.49952365973149e-005,0.708058476448059,0.706153810024261,0.043625470250845,0.718897461891174,0.693745791912079,5.44923532288522e-005,0.703637957572937,0.710558652877808,0.195327013731003,0.688840091228485,0.698102176189423,-3.04006644000765e-005,0.709034740924835,0.705173552036285,-0.188877642154694,0.69478565454483,0.693972706794739,-0.0928593277931213,0.716240882873535,0.691647529602051,0.195539087057114,0.691269814968109,0.695636749267578,7.93891667854041e-005,0.70204746723175,0.712130188941956,0.0915321037173271,0.690565705299377,0.717454433441162,0.0881255939602852,0.712562024593353,0.696052610874176,-9.20791171665769e-006,0.707691252231598,0.706521809101105,-0.0882856771349907,0.695973813533783,0.712619185447693,-0.166863307356834,-0.919782221317291,0.355186253786087,0.0101470164954662,-0.935506165027618,0.35316464304924,
- -0.210260599851608,-0.91438901424408,0.345952928066254,-0.165857195854187,-0.922877848148346,0.34754553437233,0.0101232174783945,-0.92486709356308,0.380155682563782,0.0101700890809298,-0.933706641197205,0.357894510030746,-0.210187301039696,-0.913825929164886,0.347481548786163,0.0101511040702462,-0.935190558433533,0.353999376296997,-0.0707186758518219,-0.941012561321259,0.330899149179459,0.0101354317739606,-0.936392903327942,0.350807100534439,0.0195979159325361,-0.942946255207062,0.332367748022079,0.1614780575037,-0.923116207122803,0.34897181391716,-0.0633727312088013,-0.927782595157623,0.367700159549713,0.0101508246734738,-0.935212016105652,0.353942722082138,0.110263645648956,-0.932561337947845,0.34376049041748,0.11175312846899,-0.926706969738007,0.358783304691315,0.0101559674367309,-0.934813141822815,0.354995042085648,0.161624476313591,-0.923700869083405,0.347353130578995,-0.103248596191406,-0.0526111498475075,-0.993263304233551,0.0150241097435355,-0.0448498725891113,-0.998880743980408,0.0454745814204216,-0.0248293746262789,-0.998656988143921,-0.106127984821796,-0.0340408012270927,-0.993769645690918,-0.174158841371536,-0.041894406080246,-0.983825981616974,0.015010361559689,-0.0456855297088623,-0.998843193054199,0.0532954782247543,-0.0625208243727684,-0.996619641780853,0.0151169607415795,-0.0391901731491089,-0.999117434024811,0.200125187635422,-0.0377130508422852,-0.979044258594513,0.0149870896711946,-0.0470980517566204,-0.99877792596817,-0.17418061196804,-0.0432652607560158,-0.983762800693512,-0.0818845257163048,-0.0610787011682987,-0.994768500328064,0.200359657406807,-0.0415027141571045,-0.978842973709106,0.0151555752381682,-0.0368273034691811,-0.999206721782684,0.10840430855751,-0.0258745830506086,-0.993770122528076,0.104862958192825,-0.0565984100103378,-0.992874801158905,0.0150207411497831,-0.0450545325875282,-0.998871624469757,-0.0770737081766129,-0.0316913351416588,-0.996521592140198,0.0401720106601715,0.0338886938989162,0.998617947101593,-0.137291103601456,-0.0125009985640645,0.990451872348785,-0.0690949410200119,0.00974329374730587,0.997562527656555,
- -0.138514831662178,-0.0088048717007041,0.990321218967438,0.0397106595337391,0.0357105098664761,0.998572885990143,-0.150053948163986,-0.0125664444640279,0.988598048686981,-0.0622056201100349,-0.0117199504747987,0.997994542121887,0.26181697845459,0.0911265984177589,0.960805833339691,0.0397144183516502,0.0356957092881203,0.998573362827301,0.0401228033006191,0.0340830460190773,0.998613297939301,-0.174266219139099,-0.019102705642581,0.984513282775879,-0.150841563940048,-0.00878259632736444,0.988518953323364,0.263281852006912,0.0855010524392128,0.960922598838806,0.141907811164856,0.0462690182030201,0.988797962665558,0.0411222949624062,0.0301340539008379,0.998699605464935,-0.168144479393959,-0.0439895316958427,0.984780371189117,0.0460548773407936,0.0105982348322868,0.998882710933685,0.135687246918678,0.0657963007688522,0.988564550876617,0.124518752098084,0.1003477871418,0.987129867076874,0.248713687062263,0.1398855894804,0.958422422409058,0.290818065404892,0.151465058326721,0.944713294506073,0.138078957796097,0.0583128221333027,0.988703191280365,-0.180328652262688,-0.0526615492999554,0.982195675373077,-0.169538512825966,-0.0383641719818115,0.984776556491852,0.331910133361816,0.169201448559761,0.928012132644653,0.12447913736105,0.100469216704369,0.987122535705566,0.29071444272995,0.151801869273186,0.944691121578217,-0.203013449907303,-0.0151352491229773,0.979058980941772,0.130992412567139,0.0803987979888916,0.988117933273315,0.112248122692108,0.132313206791878,0.984831750392914,0.185720831155777,-0.0253003723919392,0.982276797294617,0.153601840138435,0.00898745004087687,0.988091945648193,0.368127822875977,0.0730979815125465,0.926897287368774,-0.83926796913147,0.247576490044594,-0.484082043170929,-0.635525405406952,0.42715847492218,-0.643150925636292,-0.54537957906723,0.517906367778778,-0.659040331840515,-0.637338042259216,0.439782381057739,-0.632765114307404,-0.20438577234745,0.623053729534149,-0.755003690719604,-0.51845771074295,0.456021904945374,-0.723357200622559,-0.855246365070343,0.368380427360535,-0.364485561847687,
- -0.965182960033417,0.171861559152603,-0.19719398021698,-0.64574521780014,0.541841208934784,-0.537978827953339,-0.140937775373459,0.560800135135651,-0.815867483615875,-0.175505518913269,0.546894490718842,-0.818598985671997,-0.62319678068161,0.359044164419174,-0.694775640964508,-0.610363125801086,0.304086863994598,-0.731428802013397,-0.944468319416046,-0.0414314493536949,-0.325980097055435,-0.539951682090759,0.538953900337219,-0.646514534950256,-0.638364613056183,0.447466671466827,-0.626310110092163,-0.492624133825302,0.4308260679245,-0.756115317344666,-0.16141414642334,0.609208405017853,-0.776408791542053,-0.878762900829315,0.149607688188553,-0.453203409910202,-0.532438933849335,0.520453989505768,-0.667560040950775,-0.952934682369232,-0.00125975254923105,-0.30317297577858,-0.527277410030365,0.508103728294373,-0.681035339832306,-0.17152039706707,0.684000730514526,-0.709030151367188,-0.191720560193062,0.678916871547699,-0.708741903305054,-0.577037930488586,0.645983695983887,-0.499732255935669,-0.916181683540344,0.259667754173279,-0.305260121822357,-0.67874401807785,0.580653131008148,-0.449609279632568,-0.264490276575089,0.798757374286652,-0.540399432182312,-0.576352715492249,0.643578588962555,-0.503611147403717,-0.659363389015198,0.543039560317993,-0.519949913024902,-0.120916776359081,-0.782480359077454,0.610822081565857,-0.00332998693920672,-0.793697535991669,0.608303666114807,0.0364255011081696,-0.805782854557037,0.591089844703674,-0.124778740108013,-0.797468543052673,0.590317070484161,-0.187061727046967,-0.785376965999603,0.590077042579651,-0.0032226275652647,-0.797456681728363,0.603367626667023,0.0433696582913399,-0.785789668560028,0.616971373558044,-0.00312676490284503,-0.800787031650543,0.598941028118134,0.1944629997015,-0.786026775836945,0.586810052394867,-0.00325442408211529,-0.796346485614777,0.604831993579865,-0.187114536762238,-0.784143149852753,0.591699182987213,-0.0939690470695496,-0.784457743167877,0.613021969795227,0.194686278700829,-0.783780992031097,0.589732646942139,-0.00308316783048213,-0.802292048931122,0.59692394733429,
- 0.0981450751423836,-0.804875612258911,0.585271537303925,0.094691164791584,-0.78803277015686,0.608307421207428,-0.00317097920924425,-0.799254417419434,0.600984454154968,-0.0889310538768768,-0.803833782672882,0.588168799877167,-0.119810067117214,0.854360222816467,0.505681872367859,0.0081623075529933,0.855155944824219,0.5183065533638,0.0426194481551647,0.842846632003784,0.536463737487793,-0.122738882899284,0.845077753067017,0.520364105701447,-0.182050973176956,0.841113150119781,0.509299635887146,0.00812043156474829,0.856762528419495,0.515647411346436,0.0526563599705696,0.866383671760559,0.496595054864883,0.00813935417681932,0.85603803396225,0.516848981380463,0.193794474005699,0.839318573474884,0.50792521238327,0.00811186246573925,0.857089757919312,0.515103280544281,-0.18206425011158,0.841494739055634,0.508664131164551,-0.093480721116066,0.860085904598236,0.501511335372925,0.194024622440338,0.841250836849213,0.504630267620087,0.00816560909152031,0.855028867721558,0.51851612329483,0.101754888892174,0.845352649688721,0.524428129196167,0.0991381406784058,0.858466506004334,0.503196656703949,0.00811036955565214,0.857146739959717,0.515008449554443,-0.0893053933978081,0.846671342849731,0.524568557739258,-0.162085071206093,0.850460886955261,0.50044447183609,0.0161580257117748,0.856170535087585,0.516440689563751,-0.205648973584175,0.839961647987366,0.502168476581573,-0.159991249442101,0.841268360614777,0.516401350498199,0.017379691824317,0.866649150848389,0.498615235090256,0.0160701517015696,0.853770554065704,0.520401358604431,-0.20557464659214,0.840724408626556,0.500920712947845,0.0161740425974131,0.856606960296631,0.515715956687927,-0.0646336153149605,0.842351019382477,0.535039484500885,0.0160407572984695,0.852965414524078,0.521720886230469,0.0253805499523878,0.842670977115631,0.537830352783203,0.159086942672729,0.842649638652802,0.514424860477448,-0.0573362484574318,0.861053347587585,0.505271852016449,0.0160799883306026,0.854039490222931,0.519959807395935,0.111444190144539,0.843727588653564,0.525075197219849,0.112882778048515,0.850723326206207,0.513349056243896,
- 0.016059810295701,0.853487014770508,0.520866572856903,0.159522280097008,0.839639365673065,0.51919013261795,-0.117813184857368,0.907665014266968,0.402820408344269,0.00653994828462601,0.909667074680328,0.415286719799042,0.0393514335155487,0.900486350059509,0.43310022354126,-0.122431330382824,0.89535790681839,0.428187847137451,-0.183350935578346,0.88981705904007,0.41786128282547,0.00665397988632321,0.906325697898865,0.422527730464935,0.0435963682830334,0.908706665039063,0.415152430534363,0.00689081568270922,0.899159491062164,0.437566787004471,0.195193484425545,0.881255149841309,0.430452197790146,0.0066172918304801,0.90740829706192,0.420198023319244,-0.183392316102982,0.890901207923889,0.415526568889618,-0.0887110382318497,0.909447908401489,0.40624475479126,0.195525214076042,0.883353710174561,0.425976604223251,0.00691326707601547,0.898464143276215,0.438992440700531,0.0990917310118675,0.889209806919098,0.44663941860199,0.0952095687389374,0.904759526252747,0.415144950151443,0.00672405818477273,0.904237151145935,0.426977694034576,-0.0835385471582413,0.895640730857849,0.436862647533417,0.157075449824333,-0.766172885894775,-0.623142540454865,-0.01311060693115,-0.768324851989746,-0.63992577791214,0.207811608910561,-0.754408895969391,-0.622640788555145,0.155759334564209,-0.758516013622284,-0.632765710353851,-0.0139019135385752,-0.784723699092865,-0.619690001010895,-0.0131346117705107,-0.769050121307373,-0.639053702354431,0.207750365138054,-0.755161702632904,-0.621748030185699,-0.0131228184327483,-0.768693923950195,-0.639482319355011,0.0713129565119743,-0.752504944801331,-0.654714286327362,-0.0131570994853973,-0.769728779792786,-0.638235449790955,-0.0213741883635521,-0.756981611251831,-0.653086483478546,-0.155603870749474,-0.760657250881195,-0.630228519439697,0.063648097217083,-0.776865899562836,-0.626440942287445,-0.0130851464346051,-0.767554521560669,-0.640850067138672,-0.115742944180965,-0.755628108978271,-0.644693553447723,-0.117731966078281,-0.767341732978821,-0.63033789396286,-0.013167473487556,-0.770041823387146,-0.637857556343079,
- -0.156068310141563,-0.756630599498749,-0.634943187236786,-0.156694456934929,0.763954043388367,0.625956118106842,0.0130323646590114,0.765957176685333,0.642759501934052,-0.207997664809227,0.752094328403473,0.625372767448425,-0.155669346451759,0.757993280887604,0.633414149284363,0.0140459453687072,0.784204125404358,0.620343923568726,0.01311712898314,0.768521845340729,0.639689087867737,-0.207934230566025,0.752888321876526,0.624437808990479,0.0130467033013701,0.766391456127167,0.642241477966309,-0.0720261707901955,0.750165283679962,0.657315969467163,0.0131437433883548,0.769325494766235,0.638721823692322,0.021483164280653,0.756565034389496,0.653565526008606,0.155651807785034,0.760245501995087,0.6307133436203,-0.0642004907131195,0.775157570838928,0.62849748134613,0.0130285434424877,0.765841007232666,0.64289802312851,0.115449406206608,0.753897309303284,0.646769165992737,0.117716878652573,0.76725298166275,0.630448758602142,0.0131643945351243,0.769948899745941,0.637969791889191,0.156078949570656,0.756537318229675,0.635051667690277,0.15925632417202,0.32693287730217,0.931532263755798,-0.0174483768641949,0.324460536241531,0.945738315582275,0.201928913593292,0.317929595708847,0.926361441612244,0.157370075583458,0.312112897634506,0.936920583248138,-0.0216903630644083,0.345789909362793,0.938061237335205,-0.017441064119339,0.321542531251907,0.946734488010406,0.201876729726791,0.319068551063538,0.925981104373932,-0.0174493417143822,0.324853271245956,0.945603430271149,0.0585288964211941,0.300568342208862,0.95196270942688,-0.0174415819346905,0.321768492460251,0.946657717227936,-0.0304151345044374,0.303379029035568,0.952384531497955,-0.168701946735382,0.320562988519669,0.932083189487457,0.0518450625240803,0.334617167711258,0.940926909446716,-0.0174405965954065,0.321369558572769,0.946793258190155,-0.121739104390144,0.310574740171433,0.942721009254456,-0.123134531080723,0.325053572654724,0.937644958496094,-0.0174410101026297,0.321547240018845,0.946732997894287,-0.169290408492088,0.314305871725082,0.934105217456818,-0.102001242339611,0.627722203731537,-0.771725714206696,
- 0.0211218055337667,0.637412071228027,-0.770233571529388,0.0498593673110008,0.652862012386322,-0.755834102630615,-0.105402864515781,0.643719255924225,-0.757968187332153,-0.169579863548279,0.631301164627075,-0.756770431995392,0.0211394913494587,0.638447165489197,-0.769375264644623,0.0575358830392361,0.624779582023621,-0.778678417205811,0.0212187301367521,0.643095195293427,-0.76549220085144,0.206768155097961,0.630480170249939,-0.748158872127533,0.0211292859166861,0.637849986553192,-0.76987087726593,-0.169595897197723,0.630611300468445,-0.757341802120209,-0.0853982716798782,0.624804794788361,-0.776096701622009,0.207012355327606,0.627276837825775,-0.750779509544373,0.0212381891906261,0.644240021705627,-0.764528453350067,0.104104042053223,0.650650322437286,-0.75220775604248,0.100767895579338,0.629799365997314,-0.770193874835968,0.0212004575878382,0.642021656036377,-0.7663933634758,-0.0800401046872139,0.650548219680786,-0.755235493183136,0.0349159203469753,0.425946414470673,0.904074430465698,-0.14487361907959,0.379680395126343,0.913703680038452,-0.0702986046671867,0.40509432554245,0.911568284034729,-0.137999162077904,0.360450863838196,0.922513663768768,0.040860079228878,0.404166847467422,0.913772165775299,-0.149772197008133,0.356241315603256,0.922312557697296,-0.0640799999237061,0.387459844350815,0.919656813144684,0.259839624166489,0.46675306558609,0.845354914665222,0.0336845926940441,0.430416256189346,0.902001798152924,0.0411341898143291,0.403154373168945,0.91420704126358,-0.172367557883263,0.349069446325302,0.92110800743103,-0.150595605373383,0.359910935163498,0.920752465724945,0.257808536291122,0.47368648648262,0.84211391210556,0.131445601582527,0.447563320398331,0.884538948535919,0.031585656106472,0.438002914190292,0.898418486118317,-0.178996458649635,0.37414413690567,0.909932076931,0.033508088439703,0.431055963039398,0.90170282125473,0.119687937200069,0.480165123939514,0.868974268436432,0.140423193573952,0.421864539384842,0.895718514919281,0.265224367380142,0.447950154542923,0.853813052177429,0.302864164113998,0.452933818101883,0.838525056838989,
- 0.123776443302631,0.468961209058762,0.874502718448639,-0.209021672606468,0.355560600757599,0.910981118679047,-0.179515391588211,0.37611722946167,0.909016013145447,0.348909169435501,0.462449252605438,0.815109252929688,0.140863731503487,0.420584976673126,0.896250903606415,0.303109765052795,0.452149450778961,0.838859558105469,-0.207357212901115,0.353097468614578,0.912318587303162,0.131547853350639,0.447274625301361,0.884669780731201,0.112579606473446,0.496391654014587,0.860767781734467,0.159439325332642,0.406432688236237,0.899661898612976,0.133154720067978,0.442725658416748,0.886715173721313,0.343604505062103,0.475470840930939,0.809853971004486,0.839506387710571,-0.0496170818805695,0.541079640388489,0.634302139282227,-0.157821953296661,0.756804525852203,0.546507716178894,-0.235104247927666,0.803775787353516,0.636035740375519,-0.172511652112007,0.752129137516022,0.202858403325081,-0.297975808382034,0.932769477367401,0.519363939762115,-0.153337061405182,0.840683579444885,0.855423092842102,-0.206053107976913,0.47517728805542,0.965043127536774,-0.086136169731617,0.247532442212105,0.644750654697418,-0.304517954587936,0.701117277145386,0.135888293385506,-0.218763276934624,0.966269731521606,0.173940256237984,-0.203600138425827,0.963479101657867,0.621697008609772,-0.0744574815034866,0.77971076965332,0.609201788902283,-0.0118866600096226,0.792926132678986,0.944524884223938,0.160194590687752,0.286723971366882,0.544550180435181,-0.26139223575592,0.796956181526184,0.63702255487442,-0.181493774056435,0.749174416065216,0.49488964676857,-0.114936307072639,0.861321032047272,0.156361311674118,-0.278454452753067,0.947636127471924,0.877783596515656,0.0277752317488194,0.478251725435257,0.536659419536591,-0.235311061143875,0.810324251651764,0.953086853027344,0.113573551177979,0.28058248758316,0.530190050601959,-0.214905545115471,0.820191502571106,0.164791867136955,-0.374682247638702,0.91239070892334,0.186666488647461,-0.36832457780838,0.910764873027802,0.581150949001312,-0.412063986063004,0.701759815216064,0.915262937545776,-0.127523615956306,0.382140725851059,
- 0.680393159389496,-0.370427161455154,0.632336020469666,0.258015006780624,-0.543925583362579,0.798481822013855,0.580213725566864,-0.40711897611618,0.705412149429321,0.660735011100769,-0.308854043483734,0.684133350849152,-0.151178076863289,-0.850383102893829,-0.50397801399231,0.0175489652901888,-0.856098830699921,-0.516514122486115,-0.208406776189804,-0.837497055530548,-0.5051389336586,-0.151128232479095,-0.850170195102692,-0.50435197353363,0.0153402797877789,-0.874554097652435,-0.484685301780701,0.0175642557442188,-0.862177789211273,-0.506301283836365,-0.208447426557541,-0.836952388286591,-0.506024122238159,0.0175464022904634,-0.855159223079681,-0.518068373203278,-0.0678594633936882,-0.840079545974731,-0.538202047348022,0.0175324808806181,-0.850357174873352,-0.525913774967194,0.0282058138400316,-0.839887380599976,-0.542027294635773,0.163327008485794,-0.840611517429352,-0.516426920890808,-0.0598645955324173,-0.861770689487457,-0.503753364086151,0.0175451040267944,-0.854707658290863,-0.518813133239746,0.119003787636757,-0.844199061393738,-0.522652864456177,0.119707860052586,-0.848170042037964,-0.516020953655243,0.0175335220992565,-0.850708603858948,-0.525345087051392,0.163752287626266,-0.83786952495575,-0.520730137825012,-0.113938204944134,0.982973456382751,0.144157752394676,0.00899971090257168,0.98785674571991,0.155106484889984,0.0424306951463223,0.983492374420166,0.175904527306557,-0.118202939629555,0.978448092937469,0.169314548373222,-0.18111015856266,0.970404744148254,0.159730106592178,0.00903914403170347,0.986901819705963,0.161069214344025,0.0501644536852837,0.988732814788818,0.141035988926888,0.00905414763838053,0.986526608467102,0.163350328803062,0.197461307048798,0.966743350028992,0.162530928850174,0.00903626345098019,0.986972987651825,0.160632193088531,-0.18111863732338,0.970504343509674,0.15911428630352,-0.089529737830162,0.98541671037674,0.144700855016708,0.198043793439865,0.968115925788879,0.153395712375641,0.00902902893722057,0.98715078830719,0.159536212682724,0.0981100350618362,0.980464458465576,0.170481353998184,
- 0.0950369611382484,0.985381662845612,0.141389384865761,0.00898223835974932,0.988265991210938,0.152478218078613,-0.0863255336880684,0.98255443572998,0.164726138114929,-0.113207325339317,0.152309447526932,-0.981827855110168,0.0180998705327511,0.162858113646507,-0.986483573913574,0.0499869994819164,0.183993011713028,-0.981655657291412,-0.115886144340038,0.169059216976166,-0.978769421577454,-0.172326162457466,0.16088180243969,-0.971813142299652,0.0180719327181578,0.160735368728638,-0.986832082271576,0.0599428303539753,0.137693643569946,-0.988659381866455,0.0180592760443687,0.159776255488396,-0.986988067626953,0.199009343981743,0.157371029257774,-0.967279613018036,0.0180657003074884,0.160262405872345,-0.986909210681915,-0.172339513897896,0.160228744149208,-0.971918642520905,-0.0805609449744225,0.144750520586967,-0.986183166503906,0.199225559830666,0.153473511338234,-0.967861175537109,0.0180771350860596,0.161131054162979,-0.986767470836639,0.108080118894577,0.171102166175842,-0.979307293891907,0.105303399264812,0.146460756659508,-0.983595669269562,0.0180428400635719,0.158531203866005,-0.987189114093781,-0.0761317983269691,0.171223655343056,-0.982286334037781,-0.11818715929985,0.992327034473419,0.0363156944513321,0.00823803618550301,0.998842597007751,0.0473879612982273,0.0421618558466434,0.996841490268707,0.0673007741570473,-0.122676201164722,0.990373015403748,0.0641250610351563,-0.18067142367363,0.981909871101379,0.056664165109396,0.00830341596156359,0.998388051986694,0.0561455115675926,0.0462449342012405,0.997772455215454,0.0480782762169838,0.00841003190726042,0.997468888759613,0.0706053599715233,0.193245589733124,0.97853684425354,0.0715668350458145,0.00828580092638731,0.998518526554108,0.053777851164341,-0.180695533752441,0.98204094171524,0.0542657189071178,-0.0819449499249458,0.99593186378479,0.037480428814888,0.193584904074669,0.978822112083435,0.0665746927261353,0.0084175318479538,0.997395694255829,0.071631170809269,0.0966044515371323,0.991755962371826,0.0841896682977676,0.0926395133137703,0.994499683380127,0.048872098326683,
- 0.00833149813115597,0.998167753219604,0.0599325150251389,-0.0766741707921028,0.994501531124115,0.0713287964463234,-0.157083928585052,0.943004310131073,0.293372601270676,0.0101360082626343,0.95140665769577,0.30777046084404,-0.208767369389534,0.931722640991211,0.297168850898743,-0.155781999230385,0.939495205879211,0.30509141087532,0.0113945510238409,0.95913290977478,0.282726496458054,0.010155750438571,0.951712548732758,0.306822597980499,-0.208697080612183,0.93211430311203,0.295987218618393,0.0101469177752733,0.951575756072998,0.307246834039688,-0.0713733807206154,0.942051112651825,0.327788859605789,0.0101707801222801,0.951944947242737,0.306100219488144,0.0194942429661751,0.945304989814758,0.325604766607285,0.156598344445229,0.940388321876526,0.30190521478653,-0.0636586174368858,0.95418781042099,0.292358070611954,0.0101059097796679,0.950938940048218,0.309213608503342,0.112728849053383,0.941556215286255,0.317433953285217,0.114878341555595,0.947295010089874,0.299057424068451,0.010178666561842,0.952066719532013,0.305721074342728,0.157039195299149,0.938453197479248,0.307643175125122,-0.106703445315361,0.290503859519959,-0.950905919075012,0.0197514034807682,0.300699651241302,-0.953514456748962,0.0547387525439262,0.321421205997467,-0.945352911949158,-0.109681181609631,0.308523625135422,-0.944872081279755,-0.177007958292961,0.298121809959412,-0.937972068786621,0.0197526756674051,0.300817519426346,-0.953477144241333,0.0630672201514244,0.283959299325943,-0.956759989261627,0.0197922550141811,0.304502546787262,-0.952305853366852,0.202957078814507,0.299999833106995,-0.932099103927612,0.0197458881884813,0.300187915563583,-0.95367568731308,-0.177019208669662,0.297388970851898,-0.938202559947968,-0.0782073885202408,0.284709483385086,-0.955418288707733,0.203344985842705,0.294139444828033,-0.933880627155304,0.0197882987558842,0.304133385419846,-0.952423930168152,0.112984709441662,0.313133984804153,-0.942964255809784,0.109483562409878,0.284030556678772,-0.952543973922729,0.0197175219655037,0.297564595937729,-0.954498052597046,-0.0743280276656151,0.308391541242599,-0.948351204395294,
- 0.154690384864807,0.650824546813965,0.743302285671234,-0.0162391755729914,0.652283906936646,0.757800757884979,0.199566185474396,0.63999205827713,0.742013156414032,0.153295606374741,0.641890108585358,0.751317203044891,-0.0205547399818897,0.672106444835663,0.740169227123261,-0.0162448920309544,0.652924418449402,0.757248878479004,0.199508562684059,0.64094614982605,0.741204679012299,-0.0162425879389048,0.652665019035339,0.757472515106201,0.0589068159461021,0.632509827613831,0.772309064865112,-0.0162454042583704,0.652987480163574,0.757194459438324,-0.0291669368743896,0.637897908687592,0.769568562507629,-0.168755054473877,0.646152853965759,0.744317293167114,0.0517138950526714,0.661073803901672,0.748536646366119,-0.01622424274683,0.650627791881561,0.759223461151123,-0.120488837361336,0.639111757278442,0.759617447853088,-0.12214794754982,0.652604699134827,0.747788071632385,-0.0162468776106834,0.653153777122498,0.75705099105835,-0.169371128082275,0.641031920909882,0.748593032360077,-0.102274604141712,0.295193284749985,-0.949947834014893,0.0198004860430956,0.30527126789093,-0.95205956697464,0.0537983551621437,0.325594365596771,-0.943977773189545,-0.105867668986321,0.315656810998917,-0.942948997020721,-0.176912188529968,0.304097801446915,-0.936069786548615,0.0198177695274353,0.306889146566391,-0.951538920402527,0.0615488067269325,0.290857315063477,-0.954784691333771,0.019869240000844,0.311735987663269,-0.949961006641388,0.204858988523483,0.306782215833664,-0.929471611976624,0.0198108032345772,0.306236267089844,-0.951749503612518,-0.176925286650658,0.303306490182877,-0.936324000358582,-0.0846901163458824,0.291249513626099,-0.952891051769257,0.205091789364815,0.302928417921066,-0.930683493614197,0.0198818258941174,0.312927424907684,-0.949568927288055,0.1066924482584,0.322975784540176,-0.940374076366425,0.103658780455589,0.298127800226212,-0.948880851268768,0.0198598336428404,0.310846894979477,-0.95025247335434,-0.0794314965605736,0.322628349065781,-0.943186938762665,0.0360686480998993,0.634422779083252,0.772144258022308,-0.142386019229889,0.592253565788269,0.793071210384369,
- -0.066835954785347,0.616786897182465,0.784287631511688,-0.14388145506382,0.595793724060059,0.790144264698029,0.0353639982640743,0.636610984802246,0.770373821258545,-0.148054465651512,0.59379917383194,0.790874600410461,-0.0659220665693283,0.614607870578766,0.786073446273804,0.258793413639069,0.672771394252777,0.693112313747406,0.0303864516317844,0.651889383792877,0.75770503282547,0.034081868827343,0.640576303005219,0.767137825489044,-0.174313277006149,0.591331541538239,0.787363886833191,-0.150233656167984,0.601968765258789,0.784259796142578,0.25922480225563,0.67151927947998,0.694164454936981,0.131129533052444,0.656859576702118,0.74252313375473,0.0307039022445679,0.650924205780029,0.758521556854248,-0.169724524021149,0.576644420623779,0.799171328544617,0.0383889973163605,0.627172946929932,0.777933418750763,0.127162605524063,0.666332066059113,0.734732091426849,0.131699919700623,0.655484318733215,0.743636667728424,0.259701430797577,0.670131266117096,0.695326745510101,0.293650925159454,0.670954942703247,0.680873394012451,0.129929289221764,0.659742653369904,0.740174293518066,-0.19643896818161,0.562507390975952,0.803117156028748,-0.170973718166351,0.580643832683563,0.796002984046936,0.343802601099014,0.674063682556152,0.65378737449646,0.132235988974571,0.654188692569733,0.744681715965271,0.294035315513611,0.669954240322113,0.68169242143631,-0.207536667585373,0.576132118701935,0.790569603443146,0.129838705062866,0.659959673881531,0.739996731281281,0.107775822281837,0.700096428394318,0.705867826938629,0.154726579785347,0.623109698295593,0.766677260398865,0.131523445248604,0.655910134315491,0.743292331695557,0.346689015626907,0.668113350868225,0.658354938030243,0.839459598064423,0.0912490636110306,0.535706222057343,0.636485159397125,0.0426499582827091,0.770108819007874,0.547049462795258,-0.0203959010541439,0.83685177564621,0.63814103603363,0.0281418208032846,0.769405007362366,0.201814711093903,-0.0477158315479755,0.978260815143585,0.519399642944336,0.0691231265664101,0.851731181144714,0.855254530906677,-0.0764099434018135,0.512543857097626,
- 0.96475875377655,-0.0195985026657581,0.262405127286911,0.647113859653473,-0.114168770611286,0.753796517848969,0.137014612555504,0.0378127172589302,0.98984706401825,0.173107534646988,0.0513621307909489,0.983562767505646,0.623554050922394,0.130272820591927,0.770849764347076,0.611541152000427,0.19123712182045,0.767753720283508,0.943920612335205,0.228346899151802,0.238477542996407,0.542398929595947,-0.0394185706973076,0.839195787906647,0.639090657234192,0.0192256197333336,0.768891096115112,0.496931463479996,0.107831656932831,0.86106413602829,0.157501026988029,-0.0243168268352747,0.987219393253326,0.878057718276978,0.150746256113052,0.454191863536835,0.535280883312225,-0.0133228879421949,0.844569027423859,0.952335596084595,0.182950273156166,0.244102612137794,0.531254649162292,0.000819013570435345,0.84721177816391,0.169276833534241,-0.124604918062687,0.977659940719604,0.188007116317749,-0.120695561170578,0.974723517894745,0.579707205295563,-0.215615853667259,0.785779476165771,0.915489852428436,-0.0253750644624233,0.401540130376816,0.680494844913483,-0.195158302783966,0.706286072731018,0.262090384960175,-0.317561239004135,0.911297678947449,0.579491376876831,-0.214245513081551,0.78631329536438,0.660590529441834,-0.121666625142097,0.74082213640213,-0.117877051234245,-0.266291946172714,0.956657528877258,-0.0032180487178266,-0.276200443506241,0.961094677448273,0.0350538231432438,-0.296139240264893,0.954501330852509,-0.120605356991291,-0.283152908086777,0.951461493968964,-0.189820066094399,-0.272632151842117,0.943207442760468,-0.00324970530346036,-0.274440556764603,0.961598575115204,0.0459136851131916,-0.246771961450577,0.967985272407532,-0.00333509221673012,-0.269693911075592,0.962940335273743,0.188510119915009,-0.265100002288818,0.945614159107208,-0.00322556728497148,-0.275781154632568,0.961215019226074,-0.189792782068253,-0.273829877376556,0.942865788936615,-0.0951863825321198,-0.260791212320328,0.960691154003143,0.189119413495064,-0.255110412836075,0.948236644268036,-0.00341533683240414,-0.265220284461975,0.964181900024414,
- 0.0924947783350945,-0.275341063737869,0.956886649131775,0.0895660817623138,-0.252266526222229,0.963503777980804,-0.00341428443789482,-0.265276044607162,0.964166462421417,-0.0923677012324333,-0.27719047665596,0.956364810466766,-0.118201740086079,0.987279534339905,-0.106336824595928,0.00707751046866179,0.99531102180481,-0.0964672788977623,0.0409827046096325,0.996360421180725,-0.0747419446706772,-0.121232017874718,0.988651812076569,-0.0887154936790466,-0.183091714978218,0.978435158729553,-0.0956138744950294,0.00705568306148052,0.995063245296478,-0.0989917740225792,0.051452063024044,0.991237998008728,-0.121655069291592,0.00705421203747392,0.995046377182007,-0.0991612672805786,0.196569949388504,0.975830376148224,-0.095474436879158,0.00705137057229877,0.99501359462738,-0.0994898155331612,-0.183100044727325,0.978373110294342,-0.0962310209870338,-0.0903727486729622,0.989371478557587,-0.113916859030724,0.196787059307098,0.975419759750366,-0.0991521179676056,0.00706765940412879,0.995199978351593,-0.0976068750023842,0.101921997964382,0.991062939167023,-0.0860591158270836,0.0993154942989349,0.988861322402954,-0.110858902335167,0.00704227201640606,0.994908213615417,-0.10053975135088,-0.0860821455717087,0.992478251457214,-0.087045818567276,-0.108721300959587,-0.116111688315868,-0.987267851829529,0.0139656392857432,-0.10730954259634,-0.994127571582794,0.0507863312959671,-0.0858313962817192,-0.995014429092407,-0.112216077744961,-0.09471295773983,-0.989159762859344,-0.176371902227402,-0.101245172321796,-0.979102849960327,0.0139843123033643,-0.106238752603531,-0.994242310523987,0.0566351376473904,-0.113144643604755,-0.991963088512421,0.0142595758661628,-0.090326800942421,-0.995810091495514,0.203663811087608,-0.087659977376461,-0.975108623504639,0.0139535870403051,-0.108000561594963,-0.99405300617218,-0.176410257816315,-0.103074282407761,-0.978905081748962,-0.083606980741024,-0.120843671262264,-0.989144444465637,0.20404689013958,-0.0941151231527328,-0.974426627159119,0.0142523236572742,-0.0907489135861397,-0.995771825313568,0.110543452203274,-0.0801241248846054,-0.99063628911972,
- 0.106041200459003,-0.11941073089838,-0.987165927886963,0.0139515977352858,-0.108114123344421,-0.994040608406067,-0.0794216245412827,-0.0947168543934822,-0.992331147193909,-0.119030714035034,0.969306826591492,-0.21511897444725,0.006081847473979,0.97850900888443,-0.206114456057549,0.0405506938695908,0.981668472290039,-0.186232790350914,-0.122041076421738,0.972771286964417,-0.197033032774925,-0.179161742329597,0.962810218334198,-0.202231928706169,0.00607065530493855,0.978261113166809,-0.20728811621666,0.0493892543017864,0.972682476043701,-0.226824730634689,0.00609488179907203,0.978796243667603,-0.204746127128601,0.191423118114471,0.961005032062531,-0.199565917253494,0.00608613528311253,0.978603601455688,-0.205664694309235,-0.179144829511642,0.963139593601227,-0.200672090053558,-0.0835944414138794,0.971936404705048,-0.219889879226685,0.191878542304039,0.959432721138,-0.206570774316788,0.00607937667518854,0.97845447063446,-0.206373319029808,0.0992732793092728,0.976007521152496,-0.193788945674896,0.0975881889462471,0.973028123378754,-0.209028258919716,0.0061469804495573,0.979927241802216,-0.199260711669922,-0.0784418433904648,0.979195296764374,-0.187145635485649,0.153804615139961,-0.987290680408478,-0.0400180481374264,-0.0149132944643497,-0.998558402061462,-0.0515645667910576,0.207896947860718,-0.977016091346741,-0.0471006073057652,0.152446731925011,-0.986916363239288,-0.0524989478290081,-0.0126453889533877,-0.999571204185486,-0.0264137145131826,-0.0149236582219601,-0.998590290546417,-0.0509381704032421,0.207836493849754,-0.977084100246429,-0.0459424443542957,-0.0149212945252657,-0.998583018779755,-0.0510811619460583,0.0716386809945107,-0.994692265987396,-0.0738596394658089,-0.0149233685806394,-0.99858945608139,-0.0509553290903568,-0.0203787162899971,-0.997306704521179,-0.0704560652375221,-0.161632224917412,-0.985626459121704,-0.0491498000919819,0.0639806762337685,-0.997278273105621,-0.0366406179964542,-0.0148750338703394,-0.9984370470047,-0.0538723766803741,-0.112354606389999,-0.991615474224091,-0.063838966190815,-0.114402882754803,-0.992411971092224,-0.0450630597770214,
- -0.0149260722100735,-0.998597800731659,-0.050791971385479,-0.162038162350655,-0.98525208234787,-0.0549728237092495,0.153395101428032,-0.987193465232849,-0.0438061133027077,-0.0148485461249948,-0.998350083827972,-0.055467750877142,0.208092361688614,-0.976784884929657,-0.0508807934820652,0.152244210243225,-0.986847996711731,-0.0543411076068878,-0.0129695115610957,-0.999516546726227,-0.0282578095793724,-0.014893276616931,-0.998495519161224,-0.0527725964784622,0.208018615841866,-0.976874351501465,-0.049446776509285,-0.0148620018735528,-0.998394548892975,-0.0546577423810959,0.0723493173718452,-0.994376718997955,-0.0773338079452515,-0.0149029549211264,-0.998526155948639,-0.0521883703768253,-0.020594909787178,-0.997214436531067,-0.071688637137413,-0.161719009280205,-0.985549688339233,-0.0503881573677063,0.0639592036604881,-0.997283458709717,-0.0365368127822876,-0.0148765444755554,-0.998441934585571,-0.0537812933325768,-0.112365461885929,-0.991620481014252,-0.0637403726577759,-0.114505521953106,-0.992442786693573,-0.0441116467118263,-0.0149421831592917,-0.998646557331085,-0.0498176030814648,-0.16197195649147,-0.98531574010849,-0.054017961025238,-0.159026682376862,-0.817287564277649,-0.55385160446167,0.0174347702413797,-0.823794007301331,-0.566621124744415,-0.202165529131889,-0.806999325752258,-0.554870426654816,-0.157842800021172,-0.811707258224487,-0.562331736087799,0.0217336677014828,-0.839347541332245,-0.543160498142242,0.0174403991550207,-0.825117766857147,-0.564691483974457,-0.202086389064789,-0.808068692684174,-0.55334085226059,0.0174375548958778,-0.824444890022278,-0.565673530101776,-0.0607107765972614,-0.808298230171204,-0.585634887218475,0.0174401942640543,-0.825082123279572,-0.56474357843399,0.0305160600692034,-0.813829898834229,-0.580301582813263,0.164938688278198,-0.815653681755066,-0.554530739784241,-0.0538295842707157,-0.828976035118103,-0.556687653064728,0.0174247939139605,-0.821512043476105,-0.569924831390381,0.117737390100956,-0.81095027923584,-0.573147058486938,0.119781263172627,-0.823522865772247,-0.554493248462677,
- 0.0174427330493927,-0.825685679912567,-0.563860714435577,0.165381714701653,-0.812705218791962,-0.558712184429169,-0.10226621478796,0.0407725498080254,-0.993921160697937,0.0165048651397228,0.0494170524179935,-0.998641848564148,0.0495166294276714,0.0703944712877274,-0.996289491653442,-0.105662070214748,0.0618098750710487,-0.992479264736176,-0.172686964273453,0.0526444539427757,-0.983568906784058,0.0165218897163868,0.0505550689995289,-0.998584628105164,0.0571995079517365,0.0342103876173496,-0.997776448726654,0.0166204702109098,0.0571742355823517,-0.998225867748261,0.202248141169548,0.0568342842161655,-0.977683782577515,0.0164960063993931,0.0488249883055687,-0.998671114444733,-0.17271625995636,0.0508954711258411,-0.98365581035614,-0.0821693986654282,0.0342573039233685,-0.996029436588287,0.202480435371399,0.0528042539954185,-0.977861642837524,0.0166446883231401,0.0588075332343578,-0.998130559921265,0.103632867336273,0.0698810815811157,-0.992157697677612,0.0999104455113411,0.0371447689831257,-0.994302868843079,0.0164914559572935,0.0485214106738567,-0.998686015605927,-0.0777222886681557,0.0615269318223,-0.995074808597565,0.242609307169914,-0.457562029361725,0.855440080165863,0.312025219202042,-0.450550258159637,0.836447715759277,0.302074760198593,-0.452612280845642,0.838983297348022,0.31090834736824,-0.444226652383804,0.840237259864807,0.24271859228611,-0.454333186149597,0.857128381729126,0.19944940507412,-0.474882513284683,0.857150256633759,0.302111506462097,-0.453037798404694,0.838740348815918,0.264809370040894,-0.44942182302475,0.853168368339539,0.242544263601303,-0.459436863660812,0.854453086853027,0.239062294363976,-0.532490789890289,0.81197464466095,0.240643262863159,-0.498908013105392,0.832575261592865,0.206181243062019,-0.511726319789886,0.834041774272919,0.248682230710983,-0.50383198261261,0.827230632305145,0.30682510137558,-0.500202715396881,0.809725642204285,0.240853160619736,-0.499841004610062,0.831954777240753,0.239771261811256,-0.494818240404129,0.835263192653656,0.239860489964485,-0.51881468296051,0.820547521114349,
- 0.301802128553391,-0.529196918010712,0.793010771274567,0.306217283010483,-0.503853261470795,0.807689845561981,0.247551277279854,-0.507457911968231,0.825351357460022,0.269595235586166,-0.511716902256012,0.815759897232056,0.318167239427567,-0.422689884901047,0.848588764667511,0.515335619449615,-0.401096940040588,0.757331311702728,0.242254868149757,-0.506508469581604,0.827503323554993,0.367480784654617,-0.464970737695694,0.805456459522247,0.311840564012527,-0.468343704938889,0.826685965061188,0.289036870002747,-0.455192267894745,0.842174410820007,0.522337794303894,-0.431785523891449,0.73533970117569,0.315667629241943,-0.441584467887878,0.839855551719666,0.436576694250107,-0.43434002995491,0.787876605987549,0.433343708515167,-0.457715719938278,0.776343703269959,0.312175244092941,-0.46609628200531,0.827829003334045,0.367080897092819,-0.466033518314362,0.805024445056915,0.83830600976944,0.274853944778442,0.470848798751831,0.636916220188141,0.3121118247509,0.704928338527679,0.544245600700378,0.276760816574097,0.791959702968597,0.638724148273468,0.296625226736069,0.709961235523224,0.208282470703125,0.302433758974075,0.930135607719421,0.517362713813782,0.364182680845261,0.774407386779785,0.854115188121796,0.109693944454193,0.508384227752686,0.96485847234726,0.0742751136422157,0.252054274082184,0.647137999534607,0.161822840571404,0.745000600814819,0.137421071529388,0.385076493024826,0.912596046924591,0.179838806390762,0.396883606910706,0.900078535079956,0.624535143375397,0.392471164464951,0.675220251083374,0.611792385578156,0.452432751655579,0.648856461048126,0.944179892539978,0.297593295574188,0.141289070248604,0.540636479854584,0.257502019405365,0.800877630710602,0.639743506908417,0.287132024765015,0.712939977645874,0.49441009759903,0.405081421136856,0.769069373607636,0.157902747392654,0.325960487127304,0.932103276252747,0.877691507339478,0.301215082406998,0.372729182243347,0.533342838287354,0.284429132938385,0.796646416187286,0.9526686668396,0.256612151861191,0.163011088967323,0.528852880001068,0.300167232751846,0.793860375881195,
- 0.164566367864609,0.226566657423973,0.959992408752441,0.188363596796989,0.231380686163902,0.954453825950623,0.577870607376099,0.0747875198721886,0.812694549560547,0.915156126022339,0.118476487696171,0.385295748710632,0.682041943073273,0.068407841026783,0.728106558322906,0.257325261831284,0.0225496832281351,0.96606171131134,0.577451884746552,0.0776091888546944,0.812727570533752,0.663267135620117,0.146121680736542,0.733978986740112,-0.120868250727654,0.0939491614699364,0.988212764263153,-0.00134996662382036,0.085722878575325,0.996318221092224,0.0381012111902237,0.0641820505261421,0.997210681438446,-0.12473850697279,0.0685867369174957,0.989816248416901,-0.183355182409287,0.075068473815918,0.980176329612732,-0.00124980800319463,0.0793627947568893,0.996845006942749,0.0452143922448158,0.0971803516149521,0.994239211082459,-0.0011709991376847,0.0743584558367729,0.997230887413025,0.195096760988235,0.0715987086296082,0.978167116641998,-0.00127796677406877,0.0811508744955063,0.996701002120972,-0.183404937386513,0.0770693495869637,0.980011701583862,-0.0951566472649574,0.0945206731557846,0.990964710712433,0.195344060659409,0.0754851624369621,0.977825462818146,-0.00113345240242779,0.0719742402434349,0.99740594625473,0.0954343900084496,0.0595184974372387,0.993654787540436,0.0917420759797096,0.0889298990368843,0.99180394411087,-0.00120711652562022,0.076651893556118,0.997057199478149,-0.0901268497109413,0.0631718412041664,0.993924796581268,-0.120923966169357,0.885748565196991,-0.448137104511261,0.00358461774885654,0.897086620330811,-0.44184023141861,0.0407699234783649,0.905659914016724,-0.422040224075317,-0.123778745532036,0.89304131269455,-0.43261530995369,-0.182827904820442,0.881671667098999,-0.435004681348801,0.00355552369728684,0.895864486694336,-0.444313198328018,0.0510542914271355,0.88447779417038,-0.463780671358109,0.00356031931005418,0.896066427230835,-0.443905681371689,0.197661757469177,0.879088759422302,-0.433742821216583,0.00354964635334909,0.895616888999939,-0.444812089204788,-0.182837605476379,0.881378293037415,-0.435594707727432,
- -0.0909844115376472,0.88532292842865,-0.455988138914108,0.197885558009148,0.877379357814789,-0.437088996171951,0.00357855600304902,0.896832585334778,-0.442355662584305,0.0972369015216827,0.897673368453979,-0.429799407720566,0.0944365188479424,0.88648134469986,-0.453025996685028,0.00354263163171709,0.895321190357208,-0.445407003164291,-0.0866222605109215,0.897830545902252,-0.431737065315247,-0.111340589821339,-0.457546085119247,-0.88218754529953,0.0175177771598101,-0.451515585184097,-0.892091274261475,0.0503748245537281,-0.431506991386414,-0.900702118873596,-0.114842444658279,-0.438179820775986,-0.891520977020264,-0.169262453913689,-0.441191554069519,-0.881305992603302,0.0175359789282084,-0.450596213340759,-0.89255565404892,0.0583474636077881,-0.464350134134293,-0.883727610111237,0.0176614932715893,-0.444220900535584,-0.895743191242218,0.204542458057404,-0.434437274932861,-0.877169668674469,0.0175044666975737,-0.452186495065689,-0.891751766204834,-0.169300213456154,-0.442826092243195,-0.88047856092453,-0.0850946456193924,-0.462470859289169,-0.882541537284851,0.204765066504478,-0.437998622655869,-0.875344753265381,0.0176918189972639,-0.442670375108719,-0.896510004997253,0.104957573115826,-0.430705338716507,-0.896368682384491,0.101272076368332,-0.459953427314758,-0.88214910030365,0.0175036247819662,-0.452229261398315,-0.891729950904846,-0.0806900858879089,-0.438533067703247,-0.895085394382477,-0.109637126326561,0.829313933849335,-0.547921657562256,0.002333217067644,0.839568138122559,-0.543249607086182,0.0443035252392292,0.849580824375153,-0.525594592094421,-0.114353343844414,0.84420257806778,-0.52368438243866,-0.185074135661125,0.83064728975296,-0.525140643119812,0.00242486805655062,0.84411495923996,-0.536156952381134,0.0481781326234341,0.839518845081329,-0.541190326213837,0.00259411009028554,0.852375686168671,-0.522923469543457,0.190654441714287,0.837548613548279,-0.512018740177155,0.00239797495305538,0.842786014080048,-0.538243472576141,-0.185105845332146,0.829311728477478,-0.52723628282547,-0.0833594873547554,0.831506609916687,-0.54922491312027,
- 0.19098787009716,0.834897816181183,-0.516206622123718,0.00260834489017725,0.853062450885773,-0.521802306175232,0.101819306612015,0.854314565658569,-0.509685635566711,0.0980911254882813,0.836424767971039,-0.539232552051544,0.00247230683453381,0.846448242664337,-0.532465279102325,-0.0780586302280426,0.850104212760925,-0.52079713344574,0.152382805943489,-0.937992990016937,0.311365753412247,-0.0146732777357101,-0.952684164047241,0.303607910871506,0.214669391512871,-0.92918735742569,0.300878614187241,0.151054292917252,-0.942010164260864,0.299665540456772,-0.0154159292578697,-0.944341897964478,0.328604251146317,-0.014693153090775,-0.95238322019577,0.304549396038055,0.214609444141388,-0.928843021392822,0.301982522010803,-0.0146844694390893,-0.95251476764679,0.304138153791428,0.0733411833643913,-0.956525444984436,0.282277077436447,-0.0147100724279881,-0.952126324176788,0.305350720882416,-0.0230632834136486,-0.957706153392792,0.286822259426117,-0.158191964030266,-0.940026998519897,0.30219954252243,0.0655493289232254,-0.945711016654968,0.318330019712448,-0.014643938280642,-0.95312637090683,0.302217930555344,-0.11767616122961,-0.949930131435394,0.289456486701965,-0.119824357330799,-0.943900227546692,0.307724714279175,-0.0147183267399669,-0.952000677585602,0.305741846561432,-0.158649906516075,-0.941825032234192,0.296303898096085,-0.107950277626514,-0.31558632850647,-0.942736446857452,0.020023325458169,-0.309299141168594,-0.95075398683548,0.049578569829464,-0.287875384092331,-0.95638370513916,-0.110350340604782,-0.300468385219574,-0.947386801242828,-0.17183318734169,-0.304882049560547,-0.936760544776917,0.0199779756367207,-0.312207460403442,-0.94980388879776,0.0587720386683941,-0.327631562948227,-0.94297593832016,0.0200711209326983,-0.306217938661575,-0.951749801635742,0.203934490680695,-0.298477441072464,-0.932374358177185,0.0199638940393925,-0.313107520341873,-0.949507832527161,-0.171851947903633,-0.305855810642242,-0.936439633369446,-0.079925075173378,-0.325650781393051,-0.942105889320374,0.204271793365479,-0.303363591432571,-0.930722057819366,
- 0.0200876761227846,-0.305146992206573,-0.952093482017517,0.113306254148483,-0.292708247900009,-0.949464917182922,0.109363213181496,-0.324275642633438,-0.939619719982147,0.0199502520263195,-0.313978970050812,-0.949220418930054,-0.0758133828639984,-0.301135629415512,-0.950562834739685,-0.118203237652779,-0.221558168530464,0.967956721782684,0.00364893046207726,-0.231707081198692,0.972778856754303,0.0391623303294182,-0.25138720870018,0.967094004154205,-0.120913699269295,-0.238151863217354,0.963671922683716,-0.1888617426157,-0.228121563792229,0.955139696598053,0.00361080933362246,-0.229286387562752,0.973352313041687,0.0471539981663227,-0.212565124034882,0.976008474826813,0.0036817837972194,-0.233793258666992,0.972279369831085,0.189091578125954,-0.229949623346329,0.954655826091766,0.00359532353468239,-0.22830305993557,0.973583459854126,-0.188884854316711,-0.227018117904663,0.955397963523865,-0.0938366949558258,-0.212859764695168,0.972566425800323,0.189305067062378,-0.225966677069664,0.955564022064209,0.00370039907284081,-0.234975323081017,0.971994280815125,0.0943112671375275,-0.244921147823334,0.964945077896118,0.0906677544116974,-0.214341446757317,0.972541570663452,0.00356765883043408,-0.226546332240105,0.973993837833405,-0.0893595069646835,-0.23892930150032,0.966916561126709,-0.103387914597988,-0.313295185565948,-0.944011151790619,0.0200674068182707,-0.306457310914993,-0.951672852039337,0.0490155890583992,-0.285436421632767,-0.957143425941467,-0.106989026069641,-0.292561441659927,-0.950242698192596,-0.171698451042175,-0.298136293888092,-0.938953995704651,0.0200845431536436,-0.305348545312881,-0.952028930187225,0.0572413802146912,-0.32102182507515,-0.945340394973755,0.0201806239783764,-0.299093186855316,-0.954010486602783,0.208419844508171,-0.291373163461685,-0.933628857135773,0.0200591087341309,-0.306992888450623,-0.951500415802002,-0.171733990311623,-0.299876481294632,-0.93839305639267,-0.0888188928365707,-0.318585515022278,-0.943723738193512,0.208648681640625,-0.295176416635513,-0.932382225990295,0.0202041529119015,-0.297550767660141,-0.954492211341858,
- 0.106757126748562,-0.284929931163788,-0.952584803104401,0.102879799902439,-0.316880345344543,-0.942869365215302,0.020054092630744,-0.30731737613678,-0.951395750045776,-0.0843106284737587,-0.29255336523056,-0.952525317668915,0.08841173350811,0.189034342765808,-0.977982401847839,0.095625139772892,0.157934293150902,-0.982808530330658,0.300607472658157,0.247193589806557,-0.921157121658325,0.0934003069996834,0.173986956477165,-0.980308592319489,-0.260620683431625,0.0683848708868027,-0.963016271591187,0.0723481997847557,0.211017355322838,-0.974801242351532,0.305389165878296,0.23387585580349,-0.92305988073349,0.266043365001678,0.220879033207893,-0.938314139842987,0.0944171920418739,0.17090517282486,-0.980753183364868,-0.283040285110474,0.108032882213593,-0.953004240989685,0.0709725469350815,0.240734130144119,-0.967992782592773,-0.234725132584572,0.134046986699104,-0.962774932384491,-0.00401761056855321,0.129522740840912,-0.991568326950073,0.0955378115177155,0.167503386735916,-0.981231451034546,0.267168462276459,0.217111557722092,-0.938873589038849,-0.0369822345674038,0.221666067838669,-0.974421203136444,-0.234644815325737,0.133740127086639,-0.962837159633636,0.0678049400448799,0.249977141618729,-0.965874791145325,-0.00313789886422455,0.127047777175903,-0.991891741752625,0.267848998308182,0.214824169874191,-0.939205765724182,0.201870083808899,0.196638882160187,-0.959469556808472,-0.235903814435005,0.138561382889748,-0.961847364902496,-0.0293244086205959,0.200365260243416,-0.979282319545746,-0.219358265399933,0.136519834399223,-0.966045796871185,-0.116934642195702,0.0343625023961067,-0.992545068264008,-0.00152788939885795,0.12251603603363,-0.992465376853943,0.204022496938705,0.190159499645233,-0.960319817066193,-0.0335090793669224,0.212013125419617,-0.976692259311676,-0.241935983300209,0.137087404727936,-0.960559248924255,-0.220373913645744,0.139801979064941,-0.965344905853271,-0.241763696074486,0.136748149991035,-0.960650980472565,-0.0353245250880718,0.217060416936874,-0.975518822669983,-0.186308324337006,0.167173579335213,-0.968164443969727,
- 0.082019105553627,0.701795935630798,-0.707640707492828,-0.179486274719238,0.637669205665588,-0.749107897281647,-0.0908818393945694,0.667561769485474,-0.738986968994141,-0.0927823036909103,0.672903120517731,-0.733888924121857,-0.184997498989105,0.651228964328766,-0.735986948013306,-0.363028168678284,0.575509965419769,-0.732802033424377,-0.101035811007023,0.695817947387695,-0.711076021194458,0.207654342055321,0.735478639602661,-0.64494252204895,0.0721670314669609,0.727089822292328,-0.682738840579987,-0.343801766633987,0.593235015869141,-0.727923452854156,-0.0959698930382729,0.681807816028595,-0.725208878517151,-0.366097301244736,0.583371043205261,-0.72501802444458,0.194199457764626,0.777372419834137,-0.598313212394714,-0.116343677043915,0.737052440643311,-0.665746033191681,-0.0182358790189028,0.748148083686829,-0.663281142711639,-0.023838309571147,0.760196149349213,-0.64925628900528,-0.110979497432709,0.722796440124512,-0.682091534137726,-0.365494608879089,0.637010037899017,-0.678698718547821,-0.0154838347807527,0.74213308095932,-0.670073688030243,0.263876676559448,0.768438279628754,-0.58298522233963,0.196188002824783,0.771531224250793,-0.605185806751251,-0.294333249330521,0.739928901195526,-0.604874491691589,-0.0517523586750031,0.816239058971405,-0.575391590595245,-0.391209185123444,0.689630568027496,-0.609397411346436,0.267482399940491,0.757478296756744,-0.595549941062927,-0.00846611522138119,0.726506948471069,-0.687106966972351,0.10459428280592,0.740670919418335,-0.663676679134369,-0.101595394313335,0.984659910202026,-0.141857132315636,-0.167433515191078,0.967697501182556,-0.188487648963928,-0.448799461126328,0.859423995018005,-0.244886636734009,0.119437098503113,-0.192684561014175,0.973964810371399,0.331742703914642,-0.120771929621696,0.935607254505157,0.138859942555428,-0.221201822161675,0.965291500091553,-0.231385514140129,-0.296943068504334,0.926437020301819,0.125042006373405,-0.210729315876961,0.969514131546021,0.115090928971767,-0.165753096342087,0.97942841053009,0.336463272571564,-0.13472393155098,0.932009637355804,
- 0.125225365161896,-0.211320832371712,0.96936172246933,0.303091913461685,-0.149575635790825,0.941149532794952,0.104065470397472,-0.143558248877525,0.984155178070068,-0.25320902466774,-0.255501568317413,0.933061718940735,-0.197534188628197,-0.233780652284622,0.952012002468109,0.0254997592419386,-0.252715677022934,0.967204511165619,0.304141104221344,-0.153351947665215,0.940202832221985,0.126280471682549,-0.214726254343987,0.968476057052612,-0.197636768221855,-0.233367070555687,0.952092289924622,-0.00471831765025854,-0.162461474537849,0.986703634262085,0.101302102208138,-0.134781256318092,0.985683560371399,0.238812848925591,-0.17955356836319,0.954321205615997,0.304764449596405,-0.155602753162384,0.939631104469299,0.0263208504766226,-0.255144715309143,0.966544568538666,0.00212636217474937,-0.183051198720932,0.983101189136505,-0.198395386338234,-0.230302408337593,0.952680468559265,-0.189536929130554,-0.234836384654045,0.953376948833466,-0.086029902100563,-0.341569393873215,0.935910999774933,0.240642920136452,-0.185150325298309,0.952790796756744,0.0279305409640074,-0.259902983903885,0.965230703353882,-0.206935241818428,-0.230298325419426,0.950863003730774,-0.00157740688882768,-0.171920359134674,0.985109686851501,-0.190571486949921,-0.231267437338829,0.954043030738831,-0.00334683200344443,-0.166594013571739,0.986019909381866,-0.206814616918564,-0.230553150177002,0.950827538967133,-0.154346376657486,-0.207322329282761,0.966019988059998,0.0558477602899075,-0.97921234369278,0.194998055696487,0.1748066842556,-0.966416120529175,0.188368052244186,0.20950822532177,-0.963265359401703,0.168006345629692,0.0530044212937355,-0.983762621879578,0.171469137072563,-0.0111602079123259,-0.984117388725281,0.177168294787407,0.17505057156086,-0.967315077781677,0.183463498950005,0.217386364936829,-0.952276945114136,0.214270874857903,0.174597457051277,-0.965638697147369,0.192503690719604,0.358501344919205,-0.914251267910004,0.188736394047737,0.175091758370399,-0.967466115951538,0.182626336812973,-0.0111298682168126,-0.984204232692719,0.176686674356461,
- 0.081714354455471,-0.977059543132782,0.19666576385498,0.358583331108093,-0.912893891334534,0.195045575499535,0.174526482820511,-0.965373754501343,0.193892300128937,0.269649833440781,-0.945663452148438,0.181685999035835,0.267575293779373,-0.943583309650421,0.195074841380119,0.175060003995895,-0.967349708080292,0.183271676301956,0.087368942797184,-0.981700420379639,0.169206827878952,-0.189808815717697,0.399522572755814,0.896858036518097,-0.069200225174427,0.415520638227463,0.906947612762451,-0.0377430990338326,0.402375280857086,0.914696455001831,-0.189721062779427,0.377591729164124,0.906327962875366,-0.255707830190659,0.368952929973602,0.89358115196228,-0.0684134289622307,0.411330133676529,0.908915340900421,-0.0358178056776524,0.436239957809448,0.899117231369019,-0.068078987300396,0.40954864025116,0.909744560718536,0.120961830019951,0.432877898216248,0.89330005645752,-0.0684300810098648,0.411418795585632,0.908873975276947,-0.255739361047745,0.369117498397827,0.89350414276123,-0.165286496281624,0.406173825263977,0.898723125457764,0.120073221623898,0.441455245018005,0.889212965965271,-0.0687044635415077,0.412880420684814,0.908190190792084,0.0244055837392807,0.415897935628891,0.909083783626556,0.0163810551166534,0.441693156957626,0.897016644477844,-0.0695659592747688,0.417468249797821,0.906024873256683,-0.158832967281342,0.388310104608536,0.907737493515015,-0.126122236251831,0.00998495705425739,0.99196445941925,0.00376188731752336,0.0230213738977909,0.9997279047966,0.0396159663796425,0.00705537293106318,0.999190092086792,-0.125969380140305,-0.000202041235752404,0.992034137248993,-0.184688434004784,-0.00300993770360947,0.982792496681213,0.00210729311220348,0.0320031642913818,0.999485552310944,0.040753185749054,0.0366334989666939,0.998497545719147,0.00634916499257088,0.00896934233605862,0.999939620494843,0.186042010784149,0.0380108468234539,0.98180627822876,0.00213283323682845,0.0318645462393761,0.999490022659302,-0.184696540236473,-0.00296731782145798,0.982791125774384,-0.102256901562214,0.0293091256171465,0.994326174259186,
- 0.185084834694862,0.0467759668827057,0.981608688831329,0.00580931734293699,0.0119021348655224,0.99991238117218,0.0942464470863342,0.0154664441943169,0.995428740978241,0.0823902115225792,0.0563108958303928,0.995008111000061,0.0023053246550262,0.0309284031391144,0.999518930912018,-0.0923613607883453,0.000905334600247443,0.995725154876709,-0.15166163444519,0.258393406867981,-0.954060614109039,-0.0385120622813702,0.288535118103027,-0.956694483757019,-0.00442801835015416,0.31396472454071,-0.94942444562912,-0.160546988248825,0.28381085395813,-0.945344388484955,-0.225063145160675,0.261981725692749,-0.938462674617767,-0.039877574890852,0.296938061714172,-0.954063713550568,0.00495821423828602,0.291100978851318,-0.956679582595825,-0.0412346571683884,0.305285006761551,-0.951367855072021,0.148611858487129,0.333560526371002,-0.93094140291214,-0.0396770723164082,0.295704483985901,-0.954455137252808,-0.224849224090576,0.260611951351166,-0.938895225524902,-0.126422077417374,0.26516780257225,-0.955878376960754,0.150742694735527,0.324743628501892,-0.933712065219879,-0.0406525991857052,0.301705449819565,-0.952534198760986,0.0491220355033875,0.327512919902802,-0.94356894493103,0.0509311780333519,0.292656093835831,-0.95486044883728,-0.038722038269043,0.289827525615692,-0.956295251846313,-0.126683250069618,0.285198360681534,-0.950059711933136,0.122587524354458,-0.63847678899765,-0.759815573692322,0.125514760613441,-0.66484922170639,-0.736356973648071,0.344356387853622,-0.580163419246674,-0.738125383853912,0.125038295984268,-0.651241064071655,-0.748498916625977,-0.241859674453735,-0.665011823177338,-0.706585586071014,0.109564907848835,-0.617488324642181,-0.778911888599396,0.346845179796219,-0.591393709182739,-0.727978050708771,0.294465601444244,-0.610436856746674,-0.735293805599213,0.125367701053619,-0.652956783771515,-0.746947467327118,-0.257109403610229,-0.629786312580109,-0.732982933521271,0.114584311842918,-0.596793234348297,-0.794171452522278,-0.203212693333626,-0.626831352710724,-0.752188146114349,0.0158078912645578,-0.678123533725739,-0.734777927398682,
- 0.125878110527992,-0.655615210533142,-0.744528949260712,0.294911921024323,-0.613410174846649,-0.732635617256165,-0.00126338703557849,-0.601571321487427,-0.798818111419678,-0.20314347743988,-0.62754613161087,-0.751610636711121,0.113102793693542,-0.589076995849609,-0.800122499465942,0.0162512697279453,-0.680028438568115,-0.733005702495575,0.29517525434494,-0.615174770355225,-0.731048285961151,0.236638396978378,-0.632091701030731,-0.737876951694489,-0.203628107905388,-0.622491896152496,-0.755671501159668,0.00280769448727369,-0.620393037796021,-0.784286081790924,-0.196280479431152,-0.628583014011383,-0.752567172050476,-0.111980423331261,-0.72606897354126,-0.678442478179932,0.0170091632753611,-0.683274626731873,-0.729963302612305,0.237612098455429,-0.636896848678589,-0.733418643474579,0.000573495693970472,-0.610107481479645,-0.7923184633255,-0.215569511055946,-0.622095465660095,-0.752679884433746,-0.196612223982811,-0.626417398452759,-0.754284381866455,-0.215420454740524,-0.622500896453857,-0.752387285232544,-0.000330292619764805,-0.605916500091553,-0.795528173446655,-0.157378062605858,-0.615440189838409,-0.772311925888062,0.207149460911751,-0.10704680532217,-0.972435116767883,-0.0639436915516853,-0.150474905967712,-0.986543715000153,0.0248243659734726,-0.133571341633797,-0.990728259086609,0.0238885227590799,-0.126139402389526,-0.991724848747253,-0.067300021648407,-0.129950702190399,-0.989233791828156,-0.257673591375351,-0.156604900956154,-0.953456461429596,0.0197308156639338,-0.0931641384959221,-0.995455265045166,0.330382794141769,-0.0520554296672344,-0.942410469055176,0.201925426721573,-0.0695252791047096,-0.97693008184433,-0.231329798698425,-0.165681660175323,-0.958663702011108,0.0251761209219694,-0.136365845799446,-0.990338683128357,-0.255992591381073,-0.167592838406563,-0.952040135860443,0.324537962675095,0.0121215237304568,-0.945794999599457,0.0118029713630676,-0.0304816756397486,-0.999465644359589,0.110239394009113,-0.0328689366579056,-0.993361532688141,0.122768566012383,-0.104031287133694,-0.986967861652374,0.0255703236907721,-0.13949815928936,-0.9898921251297,
- -0.233223706483841,-0.156813576817513,-0.959695994853973,0.111909925937653,-0.0421798229217529,-0.992822766304016,0.394703775644302,0.0108278822153807,-0.918744623661041,0.325457066297531,0.00294251437298954,-0.945552229881287,-0.140961661934853,-0.00717655383050442,-0.989989042282104,0.0983188673853874,0.0321190096437931,-0.994636595249176,-0.257216781377792,-0.033943947404623,-0.965757489204407,0.404691845178604,-0.111723199486732,-0.907602608203888,0.13464766740799,-0.174621656537056,-0.975385725498199,0.249413296580315,-0.156244814395905,-0.955709457397461,0.0322548635303974,0.618042588233948,-0.78548264503479,-0.0226043853908777,0.581514358520508,-0.813222050666809,-0.317411094903946,0.49833220243454,-0.80679315328598,0.0833923891186714,0.610830426216125,0.7873575091362,0.305610626935959,0.603327989578247,0.736612141132355,0.0987836122512817,0.585132241249084,0.804898798465729,-0.279782265424728,0.54755711555481,0.788608312606812,0.0858074650168419,0.595136523246765,0.799030542373657,0.085987500846386,0.631126880645752,0.770898818969727,0.307848542928696,0.591042995452881,0.745585381984711,0.085855595767498,0.59481817483902,0.799262225627899,0.271039664745331,0.592612087726593,0.758517384529114,0.0768289938569069,0.65131539106369,0.754907667636871,-0.294156789779663,0.580989539623261,0.758895874023438,-0.234206423163414,0.60354220867157,0.762157559394836,-0.019557349383831,0.577163398265839,0.816394448280334,0.271426469087601,0.589406251907349,0.760873138904572,0.0863039121031761,0.591853201389313,0.801412105560303,-0.234210550785065,0.603591859340668,0.762116968631744,-0.0343308039009571,0.654367625713348,0.755396842956543,0.0756446495652199,0.658300042152405,0.748945236206055,0.20618063211441,0.590905845165253,0.779948651790619,0.271649479866028,0.587536931037903,0.762238085269928,-0.0191729217767715,0.575092136859894,0.817864060401917,-0.0309163685888052,0.636944949626923,0.770289123058319,-0.234470427036285,0.606718182563782,0.759550273418427,-0.229032263159752,0.602208316326141,0.764780580997467,-0.139988228678703,0.513001561164856,0.846895933151245,
- 0.207049384713173,0.585560917854309,0.783740341663361,-0.0184530727565289,0.571205139160156,0.820599853992462,-0.246479704976082,0.604703962802887,0.757351219654083,-0.0327754616737366,0.646463215351105,0.762240827083588,-0.229479655623436,0.6053826212883,0.762135803699493,-0.0335834957659245,0.65057647228241,0.758697986602783,-0.246380463242531,0.60443651676178,0.757596969604492,-0.182900831103325,0.627605140209198,0.756742417812347,-0.119266115128994,-0.475953370332718,0.871346056461334,0.0114948842674494,-0.486616104841232,0.873540282249451,0.0369404517114162,-0.50429767370224,0.862739384174347,-0.122817747294903,-0.496454000473022,0.859330713748932,-0.181564047932625,-0.486021190881729,0.854878902435303,0.0115887550637126,-0.490588843822479,0.871314108371735,0.0468080043792725,-0.462407022714615,0.885431408882141,0.0114236809313297,-0.483603775501251,0.875212490558624,0.195992529392242,-0.474231153726578,0.858307480812073,0.011604375205934,-0.491249859333038,0.870941519737244,-0.181549161672592,-0.486448585987091,0.854638934135437,-0.090220145881176,-0.477279633283615,0.874107837677002,0.196343839168549,-0.468314677476883,0.861469924449921,0.0114002907648683,-0.482614368200302,0.875758767127991,0.0952862501144409,-0.490074396133423,0.866456925868988,0.0937522277235985,-0.478979468345642,0.87280535697937,0.011605529114604,-0.49130055308342,0.870912909507751,-0.0855832770466805,-0.501535534858704,0.860893487930298,-0.116152659058571,0.961232900619507,0.250079751014709,0.00409385515376925,0.965610861778259,0.259959787130356,0.0385473184287548,0.959110617637634,0.280394166707993,-0.119873061776161,0.954591751098633,0.27273628115654,-0.184766590595245,0.947187721729279,0.262100994586945,0.00415652664378285,0.964530289173126,0.263939470052719,0.0462232269346714,0.968332886695862,0.245346456766129,0.00421196967363358,0.963559746742249,0.2674600481987,0.19592222571373,0.944535493850708,0.26356628537178,0.00415286887437105,0.964593946933746,0.263707190752029,-0.184767633676529,0.947215437889099,0.261999666690826,-0.0914957895874977,0.964097797870636,0.249286934733391,
- 0.196482971310616,0.94686633348465,0.254634320735931,0.00416164426133037,0.964441299438477,0.26426437497139,0.090219534933567,0.957350254058838,0.27448296546936,0.0868880972266197,0.965227901935577,0.246547356247902,0.00406500976532698,0.966102242469788,0.258128136396408,-0.0882901549339294,0.959015190601349,0.269248336553574,-0.122254006564617,0.780506610870361,0.613076984882355,0.00985009782016277,0.780177056789398,0.625481188297272,0.0415940918028355,0.765444278717041,0.642156541347504,-0.125495612621307,0.767982542514801,0.628055453300476,-0.186519488692284,0.765350043773651,0.615994930267334,0.00984224490821362,0.780576646327972,0.624982595443726,0.0497361719608307,0.789202570915222,0.612115740776062,0.00991402007639408,0.77690464258194,0.629540264606476,0.192299097776413,0.7613645195961,0.619148910045624,0.00981332547962666,0.782043814659119,0.623146176338196,-0.186565026640892,0.766893088817596,0.614059031009674,-0.0948463082313538,0.787843108177185,0.608528912067413,0.192533597350121,0.763671576976776,0.616227686405182,0.0099407471716404,0.775525987148285,0.631237387657166,0.0910864099860191,0.764959573745728,0.637604951858521,0.0868951454758644,0.788962364196777,0.608266055583954,0.00975017808377743,0.785223007202148,0.619136273860931,-0.0910257026553154,0.773688673973084,0.626993119716644,-0.107582941651344,-0.54244339466095,-0.833175301551819,0.0156623311340809,-0.538439393043518,-0.84251868724823,0.0432149469852448,-0.521190524101257,-0.852345526218414,-0.110409155488014,-0.526755690574646,-0.842815697193146,-0.172241896390915,-0.528355777263641,-0.831368088722229,0.0156394895166159,-0.539433121681213,-0.841883182525635,0.0511341132223606,-0.553004026412964,-0.83160799741745,0.0157831571996212,-0.533153653144836,-0.845871210098267,0.204381495714188,-0.521718621253967,-0.828274071216583,0.0156104611232877,-0.540693819522858,-0.841074585914612,-0.172273337841034,-0.529626965522766,-0.830552339553833,-0.0770075991749763,-0.550865948200226,-0.831033408641815,0.204699173569679,-0.526469528675079,-0.825183808803558,
- 0.0157875996083021,-0.532958567142487,-0.845994055271149,0.10780868679285,-0.521395981311798,-0.846477091312408,0.103711158037186,-0.551780641078949,-0.827515602111816,0.0155136929824948,-0.544877409934998,-0.83837217092514,-0.0736126452684402,-0.533179998397827,-0.842793166637421,0.119485475122929,0.63837069272995,-0.760398626327515,0.128381967544556,0.610976040363312,-0.781169831752777,0.345124930143356,0.625974237918854,-0.699317574501038,0.122313290834427,0.622495710849762,-0.773006200790405,-0.244607225060463,0.579375624656677,-0.777490317821503,0.113253481686115,0.65918493270874,-0.743403613567352,0.34758985042572,0.614228129386902,-0.708452641963959,0.297432780265808,0.617807686328888,-0.727906167507172,0.122284732758999,0.622658669948578,-0.772879421710968,-0.259873926639557,0.611101925373077,-0.747676372528076,0.112119622528553,0.677278637886047,-0.727133333683014,-0.206576660275459,0.631219744682312,-0.747587919235229,0.01606535166502,0.607403934001923,-0.794230699539185,0.122789330780506,0.619768559932709,-0.775119185447693,0.297876715660095,0.614660561084747,-0.730384707450867,0.00039689100231044,0.680548667907715,-0.732702851295471,-0.206478595733643,0.630191624164581,-0.748481869697571,0.110777206718922,0.684013664722443,-0.721008837223053,0.0164896994829178,0.60533344745636,-0.795801162719727,0.298138737678528,0.612782001495361,-0.731854856014252,0.235642462968826,0.61698192358017,-0.750870108604431,-0.207018256187439,0.635885894298553,-0.743500232696533,0.00394444772973657,0.664548575878143,-0.747234642505646,-0.19706304371357,0.631723940372467,-0.749727368354797,-0.11163167655468,0.542969644069672,-0.832299411296844,0.0173377450555563,0.60118156671524,-0.798924505710602,0.236629471182823,0.611637353897095,-0.75492137670517,0.00203338172286749,0.673208475112915,-0.739449918270111,-0.214579209685326,0.633520543575287,-0.743375718593597,-0.197411641478539,0.633884131908417,-0.747809827327728,-0.214475467801094,0.633268058300018,-0.743620753288269,0.00111023464705795,0.67735767364502,-0.735653102397919,
- -0.156308442354202,0.653973698616028,-0.740193247795105,0.206255719065666,0.939249217510223,-0.274352788925171,-0.0697016566991806,0.944542169570923,-0.320907711982727,0.023469053208828,0.952423930168152,-0.303871780633926,0.0224790424108505,0.954807579517365,-0.296373426914215,-0.0733398944139481,0.951126754283905,-0.299965292215347,-0.257659018039703,0.911767363548279,-0.319831401109695,0.0183561611920595,0.964056670665741,-0.26506182551384,0.329688251018524,0.919279456138611,-0.215013816952705,0.201013669371605,0.95013153553009,-0.238418862223625,-0.23362423479557,0.922200083732605,-0.308166772127151,0.0208722613751888,0.958541691303253,-0.284186780452728,-0.259350270032883,0.914980053901672,-0.309109956026077,0.323812633752823,0.9337357878685,-0.152587190270424,0.0103950463235378,0.978869915008545,-0.204219684004784,0.111861765384674,0.972396850585938,-0.204771474003792,0.108260914683342,0.976687669754028,-0.185366600751877,0.0131336459890008,0.974222779273987,-0.225205361843109,-0.247063413262367,0.938172519207001,-0.24247071146965,0.113538049161434,0.970243573188782,-0.213861018419266,0.395470321178436,0.906313896179199,-0.148991003632545,0.324740052223206,0.931895136833191,-0.161602422595024,-0.159038975834847,0.97828072309494,-0.132942214608192,0.0904507488012314,0.991676568984985,-0.0916321650147438,-0.263073921203613,0.952474653720856,-0.153571456670761,0.39715588092804,0.902678906917572,-0.165644139051437,0.117760770022869,0.964365303516388,-0.236921906471252,0.230369165539742,0.948074519634247,-0.219282373785973,0.0705112889409065,0.92627477645874,0.370193392038345,0.00248163822107017,0.944744348526001,0.327798992395401,-0.291422694921494,0.923255980014801,0.250342100858688,0.0834412649273872,-0.669842481613159,0.737799823284149,0.305706769227982,-0.620669603347778,0.722019910812378,0.0937754884362221,-0.692827343940735,0.714980006217957,-0.281584650278091,-0.681679487228394,0.675294876098633,0.0856783613562584,-0.682752132415771,0.725609242916107,0.0803714618086815,-0.649948835372925,0.75571620464325,
- 0.307947754859924,-0.631506383419037,0.711595416069031,0.0859184861183167,-0.684134960174561,0.724277138710022,0.268821507692337,-0.64472770690918,0.715584576129913,0.0765510648488998,-0.629713892936707,0.773046135902405,-0.295951396226883,-0.646522283554077,0.703151285648346,-0.233720183372498,-0.645777881145477,0.726873993873596,-0.0175620373338461,-0.703587830066681,0.710391342639923,0.269198447465897,-0.647639870643616,0.712807774543762,0.0863706469535828,-0.68673574924469,0.721757769584656,-0.233756110072136,-0.645378112792969,0.727217435836792,-0.0323653779923916,-0.630031824111938,0.775894701480865,0.0752952247858047,-0.62234365940094,0.779114246368408,0.20844267308712,-0.665134251117706,0.717041194438934,0.269416809082031,-0.649337947368622,0.711178541183472,-0.017170486971736,-0.705427527427673,0.708574056625366,-0.0289320684969425,-0.647794842720032,0.761265218257904,-0.233953207731247,-0.643168568611145,0.729109108448029,-0.230334565043449,-0.648327708244324,0.725683987140656,-0.142378658056259,-0.7457315325737,0.650855481624603,0.209260895848274,-0.669315814971924,0.71289986371994,-0.0164532791823149,-0.708783447742462,0.705234229564667,-0.243094354867935,-0.64071524143219,0.72827821969986,-0.0308062676340342,-0.63815176486969,0.769294023513794,-0.230748653411865,-0.645367980003357,0.728186249732971,-0.0316147431731224,-0.633952379226685,0.772725760936737,-0.243034675717354,-0.640890717506409,0.728143692016602,-0.185877978801727,-0.636464774608612,0.748573362827301,-0.118631526827812,-0.940808773040771,-0.317498743534088,0.00773693528026342,-0.944809257984161,-0.327529639005661,0.036830872297287,-0.937392592430115,-0.346321582794189,-0.122210808098316,-0.932509899139404,-0.339837908744812,-0.181021824479103,-0.926386177539825,-0.330211669206619,0.0078338235616684,-0.943376958370209,-0.331630140542984,0.0462317727506161,-0.952165842056274,-0.302064329385757,0.00766734406352043,-0.945825278759003,-0.324585556983948,0.199482470750809,-0.926930606365204,-0.317814975976944,0.00784969422966242,-0.94314044713974,-0.332301735877991,
- -0.181007072329521,-0.926226913928986,-0.330666273832321,-0.0876436159014702,-0.943952322006226,-0.318233549594879,0.199808686971664,-0.928963422775269,-0.311614334583282,0.00764503888785839,-0.946148693561554,-0.323642045259476,0.100215323269367,-0.938274800777435,-0.331055134534836,0.0988130867481232,-0.942339956760406,-0.319736450910568,0.00785818789154291,-0.94301301240921,-0.332663118839264,-0.0831885412335396,-0.935324549674988,-0.343871831893921,-0.116836346685886,-0.0769301578402519,0.990167260169983,0.00135550554841757,-0.0860746055841446,0.996287882328033,0.0337969958782196,-0.106363154947758,0.993752837181091,-0.119755737483501,-0.0953793898224831,0.988211154937744,-0.188518136739731,-0.0863274112343788,0.978268206119537,0.00133870972786099,-0.0850080698728561,0.996379375457764,0.0418641492724419,-0.0686983466148376,0.996758818626404,0.00145938084460795,-0.0926706716418266,0.995695769786835,0.192516148090363,-0.0920344442129135,0.976968348026276,0.00131490593776107,-0.0834965333342552,0.996507227420807,-0.188529014587402,-0.0850434824824333,0.978378474712372,-0.0931931138038635,-0.0701192617416382,0.993175983428955,0.192752867937088,-0.0883606299757957,0.977260828018188,0.00150018709246069,-0.0952618643641472,0.995451211929321,0.0911717787384987,-0.1057034060359,0.990209341049194,0.0877941846847534,-0.0752776488661766,0.99329024553299,0.00135858764406294,-0.0862703174352646,0.996270835399628,-0.0889468193054199,-0.0981707945466042,0.991186738014221,-0.115870364010334,-0.469693958759308,0.87519234418869,0.00756575865671039,-0.480425655841827,0.877002835273743,0.04094173386693,-0.499816983938217,0.86516284942627,-0.117557860910892,-0.478676825761795,0.870085418224335,-0.189398020505905,-0.465629160404205,0.86447548866272,0.00742945168167353,-0.471770197153091,0.881690263748169,0.0473297610878944,-0.474118649959564,0.879187941551209,0.00777949206531048,-0.493997722864151,0.869428396224976,0.187712267041206,-0.486656844615936,0.853187680244446,0.00742875691503286,-0.471726059913635,0.88171398639679,-0.189398139715195,-0.465620756149292,0.864480018615723,
- -0.0975345745682716,-0.457279086112976,0.883958637714386,0.188329339027405,-0.478751480579376,0.857513308525085,0.0077455248683691,-0.491840809583664,0.870650708675385,0.0918915048241615,-0.49968758225441,0.861317873001099,0.0870185717940331,-0.462032794952393,0.882583379745483,0.00745851220563054,-0.473615527153015,0.88070011138916,-0.0929078832268715,-0.483175873756409,0.870579779148102,-0.152217030525208,0.66914039850235,0.727379620075226,0.0157948285341263,0.668645441532135,0.743413686752319,-0.209089607000351,0.656709671020508,0.724578559398651,-0.15130540728569,0.662909388542175,0.733251631259918,0.0154315121471882,0.690737366676331,0.722941040992737,0.0158734656870365,0.671975493431091,0.740403234958649,-0.209015533328056,0.657813191413879,0.723598182201386,0.0158103909343481,0.669304490089417,0.742820024490356,-0.0670081004500389,0.650041520595551,0.756938517093658,0.0157479848712683,0.66666567325592,0.745190501213074,0.024896489456296,0.651686251163483,0.758079946041107,0.160951644182205,0.658918857574463,0.734792828559875,-0.0587577857077122,0.680103838443756,0.730757355690002,0.0158045347779989,0.669058680534363,0.743041515350342,0.11699253320694,0.656701266765594,0.745020925998688,0.118732638657093,0.668677866458893,0.734011292457581,0.0158226862549782,0.669828712940216,0.742347121238709,0.161146000027657,0.657074511051178,0.736400067806244
- }
- TangentsW: *5193 {
- 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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,1,-1,1,-1,1,-1,1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementColor: 0 {
- Version: 101
- Name: "colorSet0"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- Colors: *20772 {
- a: 1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,
- 0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,
- 0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,
- 0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0.980392217636108,0,0,1,1,0,0,1,0.627451002597809,0,0,1,0.427451014518738,0,0,1,0.980392217636108,0,0,1,0.627451002597809,0,0,1,0.427451014518738,
- 0,0,1,0.317647069692612,0,0,1,0.356862753629684,0,0,1,0.627451002597809,0,0,1,0.466666698455811,0,0,1,0.427451014518738,0,0,1,0.317647069692612,0,0,1,0.427451014518738,0,0,1,0.466666698455811,0,0,1,0.317647069692612,0,0,1,0.466666698455811,0,0,1,0.298039227724075,0,0,1,0.627451002597809,0,0,1,0.788235366344452,0,0,1,0.466666698455811,0,0,1,0.298039227724075,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.466666698455811,0,0,1,0.788235366344452,0,0,1,0.454901993274689,0,0,1,0.454901993274689,0,0,1,0.788235366344452,0,0,1,0.796078503131866,0,0,1,0.980392217636108,0,0,1,1,0,0,1,0.627451002597809,0,0,1,0.427451014518738,0,0,1,0.980392217636108,0,0,1,0.627451002597809,0,0,1,0.427451014518738,0,0,1,0.317647069692612,0,0,1,0.356862753629684,0,0,1,0.627451002597809,0,0,1,0.466666698455811,0,0,1,0.427451014518738,0,0,1,0.317647069692612,0,0,1,0.427451014518738,0,0,1,0.466666698455811,0,0,1,0.317647069692612,0,0,1,0.466666698455811,0,0,1,0.298039227724075,0,0,1,0.627451002597809,0,0,1,0.788235366344452,0,0,1,0.466666698455811,0,0,1,0.298039227724075,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.466666698455811,0,0,1,0.788235366344452,0,0,1,0.454901993274689,0,0,1,0.454901993274689,0,0,1,0.788235366344452,0,0,1,0.796078503131866,0,0,1,0.980392217636108,0,0,1,1,0,0,1,0.627451002597809,0,0,1,0.427451014518738,0,0,1,0.980392217636108,0,0,1,0.627451002597809,0,0,1,0.427451014518738,0,0,1,0.317647069692612,0,0,1,0.356862753629684,0,0,1,0.627451002597809,0,0,1,0.466666698455811,0,0,1,0.427451014518738,0,0,1,0.317647069692612,0,0,1,0.427451014518738,0,0,1,0.466666698455811,0,0,1,0.317647069692612,0,0,1,0.466666698455811,0,0,1,0.298039227724075,0,0,1,0.627451002597809,0,0,1,0.788235366344452,0,0,1,0.466666698455811,0,0,1,0.298039227724075,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.466666698455811,0,0,1,0.788235366344452,0,0,1,0.454901993274689,0,0,1,0.454901993274689,0,0,1,0.788235366344452,0,0,1,0.796078503131866,0,0,1,0.980392217636108,0,0,1,1,0,0,1,0.627451002597809,0,0,1,0.427451014518738,0,0,1,0.980392217636108,
- 0,0,1,0.627451002597809,0,0,1,0.427451014518738,0,0,1,0.317647069692612,0,0,1,0.356862753629684,0,0,1,0.627451002597809,0,0,1,0.466666698455811,0,0,1,0.427451014518738,0,0,1,0.317647069692612,0,0,1,0.427451014518738,0,0,1,0.466666698455811,0,0,1,0.317647069692612,0,0,1,0.466666698455811,0,0,1,0.298039227724075,0,0,1,0.627451002597809,0,0,1,0.788235366344452,0,0,1,0.466666698455811,0,0,1,0.298039227724075,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.466666698455811,0,0,1,0.788235366344452,0,0,1,0.454901993274689,0,0,1,0.454901993274689,0,0,1,0.788235366344452,0,0,1,0.796078503131866,0,0,1,1,0,0,1,1,0,0,1,0.811764776706696,0,0,1,0.313725501298904,0,0,1,1,0,0,1,0.811764776706696,0,0,1,0.454901993274689,0,0,1,1,0,0,1,0.313725501298904,0,0,1,0.313725501298904,0,0,1,0.811764776706696,0,0,1,0.0156862754374743,0,0,1,0.454901993274689,0,0,1,0.313725501298904,0,0,1,0.00784313771873713,0,0,1,0.00784313771873713,0,0,1,0.313725501298904,0,0,1,0.0156862754374743,0,0,1,0.454901993274689,0,0,1,0.65490198135376,0,0,1,1,0,0,1,0.454901993274689,0,0,1,1,0,0,1,0.588235318660736,0,0,1,0.486274540424347,0,0,1,0.454901993274689,0,0,1,0.588235318660736,0,0,1,1,0,0,1,1,0,0,1,0.588235318660736,0,0,1,0.486274540424347,0,0,1,0.588235318660736,0,0,1,0.811764776706696,0,0,1,0.588235318660736,0,0,1,1,0,0,1,0.811764776706696,0,0,1,1,0,0,1,1,0,0,1,0.811764776706696,0,0,1,0.313725501298904,0,0,1,1,0,0,1,0.811764776706696,0,0,1,0.454901993274689,0,0,1,1,0,0,1,0.313725501298904,0,0,1,0.313725501298904,0,0,1,0.811764776706696,0,0,1,0.0156862754374743,0,0,1,0.454901993274689,0,0,1,0.313725501298904,0,0,1,0.00784313771873713,0,0,1,0.00784313771873713,0,0,1,0.313725501298904,0,0,1,0.0156862754374743,0,0,1,0.454901993274689,0,0,1,0.65490198135376,0,0,1,1,0,0,1,0.454901993274689,0,0,1,1,0,0,1,0.588235318660736,0,0,1,0.486274540424347,0,0,1,0.454901993274689,0,0,1,0.588235318660736,0,0,1,1,0,0,1,1,0,0,1,0.588235318660736,0,0,1,0.486274540424347,0,0,1,0.588235318660736,0,0,1,0.811764776706696,0,0,1,0.588235318660736,0,0,1,1,0,0,1,0.811764776706696,
- 0,0,1,1,0,0,1,1,0,0,1,0.811764776706696,0,0,1,0.313725501298904,0,0,1,1,0,0,1,0.811764776706696,0,0,1,0.454901993274689,0,0,1,1,0,0,1,0.313725501298904,0,0,1,0.313725501298904,0,0,1,0.811764776706696,0,0,1,0.0156862754374743,0,0,1,0.454901993274689,0,0,1,0.313725501298904,0,0,1,0.00784313771873713,0,0,1,0.00784313771873713,0,0,1,0.313725501298904,0,0,1,0.0156862754374743,0,0,1,0.454901993274689,0,0,1,0.65490198135376,0,0,1,1,0,0,1,0.454901993274689,0,0,1,1,0,0,1,0.588235318660736,0,0,1,0.486274540424347,0,0,1,0.454901993274689,0,0,1,0.588235318660736,0,0,1,1,0,0,1,1,0,0,1,0.588235318660736,0,0,1,0.486274540424347,0,0,1,0.588235318660736,0,0,1,0.811764776706696,0,0,1,0.588235318660736,0,0,1,1,0,0,1,0.811764776706696,0,0,1,1,0,0,1,1,0,0,1,0.811764776706696,0,0,1,0.313725501298904,0,0,1,1,0,0,1,0.811764776706696,0,0,1,0.454901993274689,0,0,1,1,0,0,1,0.313725501298904,0,0,1,0.313725501298904,0,0,1,0.811764776706696,0,0,1,0.0156862754374743,0,0,1,0.454901993274689,0,0,1,0.313725501298904,0,0,1,0.00784313771873713,0,0,1,0.00784313771873713,0,0,1,0.313725501298904,0,0,1,0.0156862754374743,0,0,1,0.454901993274689,0,0,1,0.65490198135376,0,0,1,1,0,0,1,0.454901993274689,0,0,1,1,0,0,1,0.588235318660736,0,0,1,0.486274540424347,0,0,1,0.454901993274689,0,0,1,0.588235318660736,0,0,1,1,0,0,1,1,0,0,1,0.588235318660736,0,0,1,0.486274540424347,0,0,1,0.588235318660736,0,0,1,0.811764776706696,0,0,1,0.588235318660736,0,0,1,1,0,0,1,0.811764776706696,0,0,1,1,0,0,1,1,0,0,1,0.811764776706696,0,0,1,0.313725501298904,0,0,1,1,0,0,1,0.811764776706696,0,0,1,0.454901993274689,0,0,1,1,0,0,1,0.313725501298904,0,0,1,0.313725501298904,0,0,1,0.811764776706696,0,0,1,0.0156862754374743,0,0,1,0.454901993274689,0,0,1,0.313725501298904,0,0,1,0.00784313771873713,0,0,1,0.00784313771873713,0,0,1,0.313725501298904,0,0,1,0.0156862754374743,0,0,1,0.454901993274689,0,0,1,0.65490198135376,0,0,1,1,0,0,1,0.454901993274689,0,0,1,1,0,0,1,0.588235318660736,0,0,1,0.486274540424347,0,0,1,0.454901993274689,0,0,1,0.588235318660736,0,0,1,1,0,0,1,1,0,0,1,0.588235318660736,0,
- 0,1,0.486274540424347,0,0,1,0.588235318660736,0,0,1,0.811764776706696,0,0,1,0.588235318660736,0,0,1,1,0,0,1,0.811764776706696,0,0,1,0.603921592235565,0,0,1,1,0,0,1,0.972549080848694,0,0,1,0.650980412960052,0,0,1,1,0,0,1,0.603921592235565,0,0,1,1,0,0,1,0.650980412960052,0,0,1,1,0,0,1,0.650980412960052,0,0,1,0.513725519180298,0,0,1,1,0,0,1,0.650980412960052,0,0,1,0.223529428243637,0,0,1,0.513725519180298,0,0,1,0.603921592235565,0,0,1,0.30588236451149,0,0,1,0.650980412960052,0,0,1,0.223529428243637,0,0,1,0.650980412960052,0,0,1,0.30588236451149,0,0,1,0.30588236451149,0,0,1,0.603921592235565,0,0,1,0.403921604156494,0,0,1,0,0,0,1,0.223529428243637,0,0,1,0.30588236451149,0,0,1,0.0705882385373116,0,0,1,0.30588236451149,0,0,1,0.403921604156494,0,0,1,0.30588236451149,0,0,1,0.0705882385373116,0,0,1,0,0,0,1,0.603921592235565,0,0,1,1,0,0,1,0.972549080848694,0,0,1,0.650980412960052,0,0,1,1,0,0,1,0.603921592235565,0,0,1,1,0,0,1,0.650980412960052,0,0,1,1,0,0,1,0.650980412960052,0,0,1,0.513725519180298,0,0,1,1,0,0,1,0.650980412960052,0,0,1,0.223529428243637,0,0,1,0.513725519180298,0,0,1,0.603921592235565,0,0,1,0.30588236451149,0,0,1,0.650980412960052,0,0,1,0.223529428243637,0,0,1,0.650980412960052,0,0,1,0.30588236451149,0,0,1,0.30588236451149,0,0,1,0.603921592235565,0,0,1,0.403921604156494,0,0,1,0,0,0,1,0.223529428243637,0,0,1,0.30588236451149,0,0,1,0.0705882385373116,0,0,1,0.30588236451149,0,0,1,0.403921604156494,0,0,1,0.30588236451149,0,0,1,0.0705882385373116,0,0,1,0,0,0,1,0.603921592235565,0,0,1,1,0,0,1,0.972549080848694,0,0,1,0.650980412960052,0,0,1,1,0,0,1,0.603921592235565,0,0,1,1,0,0,1,0.650980412960052,0,0,1,1,0,0,1,0.650980412960052,0,0,1,0.513725519180298,0,0,1,1,0,0,1,0.650980412960052,0,0,1,0.223529428243637,0,0,1,0.513725519180298,0,0,1,0.603921592235565,0,0,1,0.30588236451149,0,0,1,0.650980412960052,0,0,1,0.223529428243637,0,0,1,0.650980412960052,0,0,1,0.30588236451149,0,0,1,0.30588236451149,0,0,1,0.603921592235565,0,0,1,0.403921604156494,0,0,1,0,0,0,1,0.223529428243637,0,0,1,0.30588236451149,0,0,1,0.0705882385373116,
- 0,0,1,0.30588236451149,0,0,1,0.403921604156494,0,0,1,0.30588236451149,0,0,1,0.0705882385373116,0,0,1,0,0,0,1,0.603921592235565,0,0,1,1,0,0,1,0.972549080848694,0,0,1,0.650980412960052,0,0,1,1,0,0,1,0.603921592235565,0,0,1,1,0,0,1,0.650980412960052,0,0,1,1,0,0,1,0.650980412960052,0,0,1,0.513725519180298,0,0,1,1,0,0,1,0.650980412960052,0,0,1,0.223529428243637,0,0,1,0.513725519180298,0,0,1,0.603921592235565,0,0,1,0.30588236451149,0,0,1,0.650980412960052,0,0,1,0.223529428243637,0,0,1,0.650980412960052,0,0,1,0.30588236451149,0,0,1,0.30588236451149,0,0,1,0.603921592235565,0,0,1,0.403921604156494,0,0,1,0,0,0,1,0.223529428243637,0,0,1,0.30588236451149,0,0,1,0.0705882385373116,0,0,1,0.30588236451149,0,0,1,0.403921604156494,0,0,1,0.30588236451149,0,0,1,0.0705882385373116,0,0,1,0,0,0,1,0.603921592235565,0,0,1,1,0,0,1,0.972549080848694,0,0,1,0.650980412960052,0,0,1,1,0,0,1,0.603921592235565,0,0,1,1,0,0,1,0.650980412960052,0,0,1,1,0,0,1,0.650980412960052,0,0,1,0.513725519180298,0,0,1,1,0,0,1,0.650980412960052,0,0,1,0.223529428243637,0,0,1,0.513725519180298,0,0,1,0.603921592235565,0,0,1,0.30588236451149,0,0,1,0.650980412960052,0,0,1,0.223529428243637,0,0,1,0.650980412960052,0,0,1,0.30588236451149,0,0,1,0.30588236451149,0,0,1,0.603921592235565,0,0,1,0.403921604156494,0,0,1,0,0,0,1,0.223529428243637,0,0,1,0.30588236451149,0,0,1,0.0705882385373116,0,0,1,0.30588236451149,0,0,1,0.403921604156494,0,0,1,0.30588236451149,0,0,1,0.0705882385373116,0,0,1,0,0,0,1,0,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0.517647087574005,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,0,0,0,1,1,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,1,0,0,1,0,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0.48235297203064,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0.48235297203064,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,
- 0,0,1,1,0,0,1,1,0,0,1,0.701960802078247,0,0,1,0.980392217636108,0,0,1,1,0,0,1,0.427451014518738,0,0,1,0.980392217636108,0,0,1,0.701960802078247,0,0,1,1,0,0,1,0.701960802078247,0,0,1,1,0,0,1,0.701960802078247,0,0,1,0.466666698455811,0,0,1,0.427451014518738,0,0,1,1,0,0,1,0.466666698455811,0,0,1,0.701960802078247,0,0,1,0,0,0,1,0.427451014518738,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.466666698455811,0,0,1,1,0,0,1,0,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.454901993274689,0,0,1,0.313725501298904,0,0,1,0.00784313771873713,0,0,1,0.454901993274689,0,0,1,1,0,0,1,0.313725501298904,0,0,1,0.00784313771873713,0,0,1,0.313725501298904,0,0,1,0.0156862754374743,0,0,1,0.313725501298904,0,0,1,1,0,0,1,0.5686274766922,0,0,1,0.313725501298904,0,0,1,0.5686274766922,0,0,1,0.0156862754374743,0,0,1,1,0,0,1,1,0,0,1,0.5686274766922,0,0,1,0.811764776706696,0,0,1,0.0156862754374743,0,0,1,0.5686274766922,0,0,1,0.5686274766922,0,0,1,1,0,0,1,0.811764776706696,0,0,1,0,0,0,1,0.313725501298904,0,0,1,0,0,0,1,0,0,0,1,1,0,0,1,0.313725501298904,0,0,1,0,0,0,1,0.313725501298904,0,0,1,0,0,0,1,0.313725501298904,0,0,1,1,0,0,1,0.5686274766922,0,0,1,0.5686274766922,0,0,1,0,0,0,1,0.313725501298904,0,0,1,1,0,0,1,1,0,0,1,0.5686274766922,0,0,1,0.811764776706696,0,0,1,0,0,0,1,0.5686274766922,0,0,1,0.5686274766922,0,0,1,1,0,0,1,0.811764776706696,0,0,1,0.701960802078247,0,0,1,0,0,0,1,1,0,0,1,0,0,0,1,0,0,0,1,0.701960802078247,0,0,1,1,0,0,1,0.701960802078247,0,0,1,1,0,0,1,0.701960802078247,0,0,1,0.466666698455811,0,0,1,0,0,0,1,1,0,0,1,0.466666698455811,0,0,1,0.701960802078247,0,0,1,0,0,0,1,0,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.466666698455811,0,0,1,1,0,0,1,0,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.454901993274689,0,0,1,0.313725501298904,0,0,1,0.00784313771873713,0,0,1,0.454901993274689,0,0,1,1,0,0,1,0.313725501298904,0,0,1,0.00784313771873713,0,0,1,0.313725501298904,0,0,1,0.0156862754374743,0,0,1,0.313725501298904,0,0,1,1,0,0,1,0.5686274766922,0,0,1,0.313725501298904,0,0,1,0.5686274766922,0,0,1,0.0156862754374743,
- 0,0,1,1,0,0,1,1,0,0,1,0.5686274766922,0,0,1,0.811764776706696,0,0,1,0.0156862754374743,0,0,1,0.5686274766922,0,0,1,0.5686274766922,0,0,1,1,0,0,1,0.811764776706696,0,0,1,0.701960802078247,0,0,1,0.980392217636108,0,0,1,1,0,0,1,0.360784322023392,0,0,1,0.980392217636108,0,0,1,0.701960802078247,0,0,1,0,0,0,1,0.701960802078247,0,0,1,1,0,0,1,0.701960802078247,0,0,1,0.466666698455811,0,0,1,0.360784322023392,0,0,1,0,0,0,1,0.466666698455811,0,0,1,0.701960802078247,0,0,1,0.274509817361832,0,0,1,0.360784322023392,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.466666698455811,0,0,1,0,0,0,1,0.274509817361832,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0.48235297203064,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.0901960805058479,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0.0901960805058479,0,0,1,0.823529481887817,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0.517647087574005,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,0.823529481887817,0,0,1,1,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,1,0,0,1,0,0,0,1,0.48235297203064,0,0,1,0.223529428243637,0,0,1,0,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0.223529428243637,0,0,1,0.48235297203064,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0.48235297203064,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0.48235297203064,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0.48235297203064,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.0901960805058479,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0.0901960805058479,0,0,
- 1,0.823529481887817,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0.517647087574005,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,0.823529481887817,0,0,1,1,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,1,0,0,1,0,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0.48235297203064,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.0901960805058479,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0.0901960805058479,0,0,1,0.823529481887817,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0.517647087574005,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,0.823529481887817,0,0,1,1,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,1,0,0,1,0.454901993274689,0,0,1,0.00784313771873713,0,0,1,0.313725501298904,0,0,1,0.454901993274689,0,0,1,0.313725501298904,0,0,1,1,0,0,1,0.00784313771873713,0,0,1,0.0156862754374743,0,0,1,0.313725501298904,0,0,1,0.313725501298904,0,0,1,0.647058844566345,0,0,1,1,0,0,1,0.313725501298904,0,0,1,0.0156862754374743,0,0,1,0.647058844566345,0,0,1,1,0,0,1,0.647058844566345,0,0,1,1,0,0,1,0.0156862754374743,0,0,1,0.811764776706696,0,0,1,0.647058844566345,0,0,1,0.647058844566345,0,0,1,0.811764776706696,0,0,1,1,0,0,1,0.0901960805058479,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0.0901960805058479,0,0,1,0.823529481887817,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0.517647087574005,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,0.823529481887817,0,0,1,1,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0.223529428243637,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0.223529428243637,0,0,1,0.48235297203064,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0.223529428243637,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0.223529428243637,0,0,1,0.48235297203064,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0.223529428243637,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,
- 0,0,1,0.223529428243637,0,0,1,0.48235297203064,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.0901960805058479,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0.0901960805058479,0,0,1,0.823529481887817,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0.517647087574005,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,0.823529481887817,0,0,1,1,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,1,0,0,1,0,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0.517647087574005,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,0,0,0,1,1,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,1,0,0,1,0,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0.48235297203064,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0.48235297203064,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.701960802078247,0,0,1,0.980392217636108,0,0,1,1,0,0,1,0.427451014518738,0,0,1,0.980392217636108,0,0,1,0.701960802078247,0,0,1,1,0,0,1,0.701960802078247,0,0,1,1,0,0,1,0.701960802078247,0,0,1,0.466666698455811,0,0,1,0.427451014518738,0,0,1,1,0,0,1,0.466666698455811,0,0,1,0.701960802078247,0,0,1,0,0,0,1,0.427451014518738,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.466666698455811,0,0,1,1,0,0,1,0,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.454901993274689,0,0,1,0.313725501298904,0,0,1,0.00784313771873713,0,0,1,0.454901993274689,0,0,1,1,0,0,1,0.313725501298904,0,0,1,0.00784313771873713,0,0,1,0.313725501298904,0,0,1,0.0156862754374743,0,0,1,0.313725501298904,0,0,1,1,0,0,1,0.5686274766922,0,0,1,0.313725501298904,0,0,1,0.5686274766922,0,0,1,0.0156862754374743,0,0,1,1,0,0,1,1,0,0,1,0.5686274766922,0,0,1,0.811764776706696,0,0,1,0.0156862754374743,0,0,1,0.5686274766922,0,0,1,0.5686274766922,0,0,1,1,0,0,1,0.811764776706696,0,0,1,0,0,0,1,0.313725501298904,0,0,1,0,
- 0,0,1,0,0,0,1,1,0,0,1,0.313725501298904,0,0,1,0,0,0,1,0.313725501298904,0,0,1,0,0,0,1,0.313725501298904,0,0,1,1,0,0,1,0.5686274766922,0,0,1,0.5686274766922,0,0,1,0,0,0,1,0.313725501298904,0,0,1,1,0,0,1,1,0,0,1,0.5686274766922,0,0,1,0.811764776706696,0,0,1,0,0,0,1,0.5686274766922,0,0,1,0.5686274766922,0,0,1,1,0,0,1,0.811764776706696,0,0,1,0.701960802078247,0,0,1,0,0,0,1,1,0,0,1,0,0,0,1,0,0,0,1,0.701960802078247,0,0,1,1,0,0,1,0.701960802078247,0,0,1,1,0,0,1,0.701960802078247,0,0,1,0.466666698455811,0,0,1,0,0,0,1,1,0,0,1,0.466666698455811,0,0,1,0.701960802078247,0,0,1,0,0,0,1,0,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.466666698455811,0,0,1,1,0,0,1,0,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.454901993274689,0,0,1,0.313725501298904,0,0,1,0.00784313771873713,0,0,1,0.454901993274689,0,0,1,1,0,0,1,0.313725501298904,0,0,1,0.00784313771873713,0,0,1,0.313725501298904,0,0,1,0.0156862754374743,0,0,1,0.313725501298904,0,0,1,1,0,0,1,0.5686274766922,0,0,1,0.313725501298904,0,0,1,0.5686274766922,0,0,1,0.0156862754374743,0,0,1,1,0,0,1,1,0,0,1,0.5686274766922,0,0,1,0.811764776706696,0,0,1,0.0156862754374743,0,0,1,0.5686274766922,0,0,1,0.5686274766922,0,0,1,1,0,0,1,0.811764776706696,0,0,1,0.701960802078247,0,0,1,0.980392217636108,0,0,1,1,0,0,1,0.360784322023392,0,0,1,0.980392217636108,0,0,1,0.701960802078247,0,0,1,0,0,0,1,0.701960802078247,0,0,1,1,0,0,1,0.701960802078247,0,0,1,0.466666698455811,0,0,1,0.360784322023392,0,0,1,0,0,0,1,0.466666698455811,0,0,1,0.701960802078247,0,0,1,0.274509817361832,0,0,1,0.360784322023392,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.466666698455811,0,0,1,0,0,0,1,0.274509817361832,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0.48235297203064,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.0901960805058479,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0.0901960805058479,0,0,1,0.823529481887817,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0.517647087574005,
- 0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,0.823529481887817,0,0,1,1,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,1,0,0,1,0,0,0,1,0.48235297203064,0,0,1,0.223529428243637,0,0,1,0,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0.223529428243637,0,0,1,0.48235297203064,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0.48235297203064,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0.48235297203064,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0.48235297203064,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.0901960805058479,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0.0901960805058479,0,0,1,0.823529481887817,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0.517647087574005,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,0.823529481887817,0,0,1,1,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,1,0,0,1,0,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0.48235297203064,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.0901960805058479,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0.0901960805058479,0,0,1,0.823529481887817,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0.517647087574005,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,0.823529481887817,0,0,1,1,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,1,0,0,1,0,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0.517647087574005,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,0,0,0,1,1,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,1,0,0,1,0,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0,0,0,1,1,0,0,1,0.48235297203064,
- 0,0,1,0,0,0,1,0.48235297203064,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0.48235297203064,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.701960802078247,0,0,1,0.980392217636108,0,0,1,1,0,0,1,0.427451014518738,0,0,1,0.980392217636108,0,0,1,0.701960802078247,0,0,1,1,0,0,1,0.701960802078247,0,0,1,1,0,0,1,0.701960802078247,0,0,1,0.466666698455811,0,0,1,0.427451014518738,0,0,1,1,0,0,1,0.466666698455811,0,0,1,0.701960802078247,0,0,1,0,0,0,1,0.427451014518738,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.466666698455811,0,0,1,1,0,0,1,0,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.454901993274689,0,0,1,0.313725501298904,0,0,1,0.00784313771873713,0,0,1,0.454901993274689,0,0,1,1,0,0,1,0.313725501298904,0,0,1,0.00784313771873713,0,0,1,0.313725501298904,0,0,1,0.0156862754374743,0,0,1,0.313725501298904,0,0,1,1,0,0,1,0.5686274766922,0,0,1,0.313725501298904,0,0,1,0.5686274766922,0,0,1,0.0156862754374743,0,0,1,1,0,0,1,1,0,0,1,0.5686274766922,0,0,1,0.811764776706696,0,0,1,0.0156862754374743,0,0,1,0.5686274766922,0,0,1,0.5686274766922,0,0,1,1,0,0,1,0.811764776706696,0,0,1,0,0,0,1,0.313725501298904,0,0,1,0,0,0,1,0,0,0,1,1,0,0,1,0.313725501298904,0,0,1,0,0,0,1,0.313725501298904,0,0,1,0,0,0,1,0.313725501298904,0,0,1,1,0,0,1,0.5686274766922,0,0,1,0.5686274766922,0,0,1,0,0,0,1,0.313725501298904,0,0,1,1,0,0,1,1,0,0,1,0.5686274766922,0,0,1,0.811764776706696,0,0,1,0,0,0,1,0.5686274766922,0,0,1,0.5686274766922,0,0,1,1,0,0,1,0.811764776706696,0,0,1,0.701960802078247,0,0,1,0,0,0,1,1,0,0,1,0,0,0,1,0,0,0,1,0.701960802078247,0,0,1,1,0,0,1,0.701960802078247,0,0,1,1,0,0,1,0.701960802078247,0,0,1,0.466666698455811,0,0,1,0,0,0,1,1,0,0,1,0.466666698455811,0,0,1,0.701960802078247,0,0,1,0,0,0,1,0,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.466666698455811,0,0,1,1,0,0,1,0,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.454901993274689,
- 0,0,1,0.313725501298904,0,0,1,0.00784313771873713,0,0,1,0.454901993274689,0,0,1,1,0,0,1,0.313725501298904,0,0,1,0.00784313771873713,0,0,1,0.313725501298904,0,0,1,0.0156862754374743,0,0,1,0.313725501298904,0,0,1,1,0,0,1,0.5686274766922,0,0,1,0.313725501298904,0,0,1,0.5686274766922,0,0,1,0.0156862754374743,0,0,1,1,0,0,1,1,0,0,1,0.5686274766922,0,0,1,0.811764776706696,0,0,1,0.0156862754374743,0,0,1,0.5686274766922,0,0,1,0.5686274766922,0,0,1,1,0,0,1,0.811764776706696,0,0,1,0.701960802078247,0,0,1,0.980392217636108,0,0,1,1,0,0,1,0.360784322023392,0,0,1,0.980392217636108,0,0,1,0.701960802078247,0,0,1,0,0,0,1,0.701960802078247,0,0,1,1,0,0,1,0.701960802078247,0,0,1,0.466666698455811,0,0,1,0.360784322023392,0,0,1,0,0,0,1,0.466666698455811,0,0,1,0.701960802078247,0,0,1,0.274509817361832,0,0,1,0.360784322023392,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.466666698455811,0,0,1,0,0,0,1,0.274509817361832,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0.48235297203064,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.0901960805058479,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0.0901960805058479,0,0,1,0.823529481887817,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0.517647087574005,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,0.823529481887817,0,0,1,1,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,1,0,0,1,0,0,0,1,0.48235297203064,0,0,1,0.223529428243637,0,0,1,0,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0.223529428243637,0,0,1,0.48235297203064,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0.48235297203064,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0.48235297203064,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,
- 0,0,1,1,0,0,1,1,0,0,1,0,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0.48235297203064,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.0901960805058479,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0.0901960805058479,0,0,1,0.823529481887817,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0.517647087574005,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,0.823529481887817,0,0,1,1,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,1,0,0,1,0,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0.48235297203064,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.0901960805058479,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0.0901960805058479,0,0,1,0.823529481887817,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0.517647087574005,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,0.823529481887817,0,0,1,1,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,1,0,0,1,0,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0.517647087574005,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,0,0,0,1,1,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,1,0,0,1,0,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0.48235297203064,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0.48235297203064,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.701960802078247,0,0,1,0.980392217636108,0,0,1,1,0,0,1,0.427451014518738,0,0,1,0.980392217636108,0,0,1,0.701960802078247,0,0,1,1,0,0,1,0.701960802078247,0,0,1,1,0,0,1,0.701960802078247,0,0,1,0.466666698455811,0,0,1,0.427451014518738,0,0,1,1,0,0,1,0.466666698455811,0,0,1,0.701960802078247,0,0,1,0,0,0,1,0.427451014518738,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.466666698455811,0,0,1,1,0,0,1,0,0,0,1,0.466666698455811,
- 0,0,1,0.454901993274689,0,0,1,0.454901993274689,0,0,1,0.313725501298904,0,0,1,0.00784313771873713,0,0,1,0.454901993274689,0,0,1,1,0,0,1,0.313725501298904,0,0,1,0.00784313771873713,0,0,1,0.313725501298904,0,0,1,0.0156862754374743,0,0,1,0.313725501298904,0,0,1,1,0,0,1,0.5686274766922,0,0,1,0.313725501298904,0,0,1,0.5686274766922,0,0,1,0.0156862754374743,0,0,1,1,0,0,1,1,0,0,1,0.5686274766922,0,0,1,0.811764776706696,0,0,1,0.0156862754374743,0,0,1,0.5686274766922,0,0,1,0.5686274766922,0,0,1,1,0,0,1,0.811764776706696,0,0,1,0,0,0,1,0.313725501298904,0,0,1,0,0,0,1,0,0,0,1,1,0,0,1,0.313725501298904,0,0,1,0,0,0,1,0.313725501298904,0,0,1,0,0,0,1,0.313725501298904,0,0,1,1,0,0,1,0.5686274766922,0,0,1,0.5686274766922,0,0,1,0,0,0,1,0.313725501298904,0,0,1,1,0,0,1,1,0,0,1,0.5686274766922,0,0,1,0.811764776706696,0,0,1,0,0,0,1,0.5686274766922,0,0,1,0.5686274766922,0,0,1,1,0,0,1,0.811764776706696,0,0,1,0.701960802078247,0,0,1,0,0,0,1,1,0,0,1,0,0,0,1,0,0,0,1,0.701960802078247,0,0,1,1,0,0,1,0.701960802078247,0,0,1,1,0,0,1,0.701960802078247,0,0,1,0.466666698455811,0,0,1,0,0,0,1,1,0,0,1,0.466666698455811,0,0,1,0.701960802078247,0,0,1,0,0,0,1,0,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.466666698455811,0,0,1,1,0,0,1,0,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.454901993274689,0,0,1,0.313725501298904,0,0,1,0.00784313771873713,0,0,1,0.454901993274689,0,0,1,1,0,0,1,0.313725501298904,0,0,1,0.00784313771873713,0,0,1,0.313725501298904,0,0,1,0.0156862754374743,0,0,1,0.313725501298904,0,0,1,1,0,0,1,0.5686274766922,0,0,1,0.313725501298904,0,0,1,0.5686274766922,0,0,1,0.0156862754374743,0,0,1,1,0,0,1,1,0,0,1,0.5686274766922,0,0,1,0.811764776706696,0,0,1,0.0156862754374743,0,0,1,0.5686274766922,0,0,1,0.5686274766922,0,0,1,1,0,0,1,0.811764776706696,0,0,1,0.701960802078247,0,0,1,0.980392217636108,0,0,1,1,0,0,1,0.360784322023392,0,0,1,0.980392217636108,0,0,1,0.701960802078247,0,0,1,0,0,0,1,0.701960802078247,0,0,1,1,0,0,1,0.701960802078247,0,0,1,0.466666698455811,0,0,1,0.360784322023392,0,0,1,0,0,0,1,0.466666698455811,0,0,1,0.701960802078247,
- 0,0,1,0.274509817361832,0,0,1,0.360784322023392,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.466666698455811,0,0,1,0,0,0,1,0.274509817361832,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0.48235297203064,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.0901960805058479,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0.0901960805058479,0,0,1,0.823529481887817,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0.517647087574005,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,0.823529481887817,0,0,1,1,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,1,0,0,1,0,0,0,1,0.48235297203064,0,0,1,0.223529428243637,0,0,1,0,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0.223529428243637,0,0,1,0.48235297203064,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0.48235297203064,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0.48235297203064,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0.48235297203064,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.0901960805058479,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0.0901960805058479,0,0,1,0.823529481887817,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0.517647087574005,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,0.823529481887817,0,0,1,1,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,1,0,0,1,0,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0.48235297203064,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.0901960805058479,0,0,1,0.517647087574005,0,
- 0,1,0,0,0,1,0.0901960805058479,0,0,1,0.823529481887817,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0.517647087574005,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,0.823529481887817,0,0,1,1,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,1,0,0,1,0,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0.517647087574005,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,0,0,0,1,1,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,1,0,0,1,0,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0.48235297203064,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0.48235297203064,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.701960802078247,0,0,1,0.980392217636108,0,0,1,1,0,0,1,0.427451014518738,0,0,1,0.980392217636108,0,0,1,0.701960802078247,0,0,1,1,0,0,1,0.701960802078247,0,0,1,1,0,0,1,0.701960802078247,0,0,1,0.466666698455811,0,0,1,0.427451014518738,0,0,1,1,0,0,1,0.466666698455811,0,0,1,0.701960802078247,0,0,1,0,0,0,1,0.427451014518738,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.466666698455811,0,0,1,1,0,0,1,0,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.454901993274689,0,0,1,0.313725501298904,0,0,1,0.00784313771873713,0,0,1,0.454901993274689,0,0,1,1,0,0,1,0.313725501298904,0,0,1,0.00784313771873713,0,0,1,0.313725501298904,0,0,1,0.0156862754374743,0,0,1,0.313725501298904,0,0,1,1,0,0,1,0.5686274766922,0,0,1,0.313725501298904,0,0,1,0.5686274766922,0,0,1,0.0156862754374743,0,0,1,1,0,0,1,1,0,0,1,0.5686274766922,0,0,1,0.811764776706696,0,0,1,0.0156862754374743,0,0,1,0.5686274766922,0,0,1,0.5686274766922,0,0,1,1,0,0,1,0.811764776706696,0,0,1,0,0,0,1,0.313725501298904,0,0,1,0,0,0,1,0,0,0,1,1,0,0,1,0.313725501298904,0,0,1,0,0,0,1,0.313725501298904,0,0,1,0,0,0,1,0.313725501298904,0,0,1,1,0,0,1,0.5686274766922,0,0,1,0.5686274766922,0,0,1,0,0,0,1,0.313725501298904,
- 0,0,1,1,0,0,1,1,0,0,1,0.5686274766922,0,0,1,0.811764776706696,0,0,1,0,0,0,1,0.5686274766922,0,0,1,0.5686274766922,0,0,1,1,0,0,1,0.811764776706696,0,0,1,0.701960802078247,0,0,1,0,0,0,1,1,0,0,1,0,0,0,1,0,0,0,1,0.701960802078247,0,0,1,1,0,0,1,0.701960802078247,0,0,1,1,0,0,1,0.701960802078247,0,0,1,0.466666698455811,0,0,1,0,0,0,1,1,0,0,1,0.466666698455811,0,0,1,0.701960802078247,0,0,1,0,0,0,1,0,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.466666698455811,0,0,1,1,0,0,1,0,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.454901993274689,0,0,1,0.313725501298904,0,0,1,0.00784313771873713,0,0,1,0.454901993274689,0,0,1,1,0,0,1,0.313725501298904,0,0,1,0.00784313771873713,0,0,1,0.313725501298904,0,0,1,0.0156862754374743,0,0,1,0.313725501298904,0,0,1,1,0,0,1,0.5686274766922,0,0,1,0.313725501298904,0,0,1,0.5686274766922,0,0,1,0.0156862754374743,0,0,1,1,0,0,1,1,0,0,1,0.5686274766922,0,0,1,0.811764776706696,0,0,1,0.0156862754374743,0,0,1,0.5686274766922,0,0,1,0.5686274766922,0,0,1,1,0,0,1,0.811764776706696,0,0,1,0.701960802078247,0,0,1,0.980392217636108,0,0,1,1,0,0,1,0.360784322023392,0,0,1,0.980392217636108,0,0,1,0.701960802078247,0,0,1,0,0,0,1,0.701960802078247,0,0,1,1,0,0,1,0.701960802078247,0,0,1,0.466666698455811,0,0,1,0.360784322023392,0,0,1,0,0,0,1,0.466666698455811,0,0,1,0.701960802078247,0,0,1,0.274509817361832,0,0,1,0.360784322023392,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.466666698455811,0,0,1,0,0,0,1,0.274509817361832,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0.48235297203064,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.0901960805058479,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0.0901960805058479,0,0,1,0.823529481887817,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0.517647087574005,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,0.823529481887817,0,0,1,1,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,1,0,0,1,0,0,0,1,0.48235297203064,0,0,1,
- 0.223529428243637,0,0,1,0,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0.223529428243637,0,0,1,0.48235297203064,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0.48235297203064,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0.48235297203064,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0.48235297203064,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.0901960805058479,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0.0901960805058479,0,0,1,0.823529481887817,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0.517647087574005,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,0.823529481887817,0,0,1,1,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,1,0,0,1,0,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0.48235297203064,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.0901960805058479,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0.0901960805058479,0,0,1,0.823529481887817,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0.517647087574005,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,0.823529481887817,0,0,1,1,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,1,0,0,1,0.454901993274689,0,0,1,0.00784313771873713,0,0,1,0.313725501298904,0,0,1,0.454901993274689,0,0,1,0.313725501298904,0,0,1,1,0,0,1,0.00784313771873713,0,0,1,0.0156862754374743,0,0,1,0.313725501298904,0,0,1,0.313725501298904,0,0,1,0.647058844566345,0,0,1,1,0,0,1,0.313725501298904,0,0,1,0.0156862754374743,0,0,1,0.647058844566345,0,0,1,1,0,0,1,0.647058844566345,0,0,1,1,0,0,1,0.0156862754374743,0,0,1,0.811764776706696,0,0,1,0.647058844566345,0,0,1,0.647058844566345,0,0,1,0.811764776706696,
- 0,0,1,1,0,0,1,0.0901960805058479,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0.0901960805058479,0,0,1,0.823529481887817,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0.517647087574005,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,0.823529481887817,0,0,1,1,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0.223529428243637,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0.223529428243637,0,0,1,0.48235297203064,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0.223529428243637,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0.223529428243637,0,0,1,0.48235297203064,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0.223529428243637,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0.223529428243637,0,0,1,0.48235297203064,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.0901960805058479,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0.0901960805058479,0,0,1,0.823529481887817,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0.517647087574005,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,0.823529481887817,0,0,1,1,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,1,0,0,1,0.454901993274689,0,0,1,0.00784313771873713,0,0,1,0.313725501298904,0,0,1,0.454901993274689,0,0,1,0.313725501298904,0,0,1,1,0,0,1,0.00784313771873713,0,0,1,0.0156862754374743,0,0,1,0.313725501298904,0,0,1,0.313725501298904,0,0,1,0.647058844566345,0,0,1,1,0,0,1,0.313725501298904,0,0,1,0.0156862754374743,0,0,1,0.647058844566345,0,0,1,1,0,0,1,0.647058844566345,0,0,1,1,0,0,1,0.0156862754374743,0,0,1,0.811764776706696,0,0,1,0.647058844566345,0,0,1,0.647058844566345,0,0,1,0.811764776706696,0,0,1,1,0,0,1,0.0901960805058479,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0.0901960805058479,0,0,1,0.823529481887817,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0.517647087574005,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,0.823529481887817,0,0,1,1,0,0,1,0.607843160629272,
- 0,0,1,0.517647087574005,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0.223529428243637,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0.223529428243637,0,0,1,0.48235297203064,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0.223529428243637,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0.223529428243637,0,0,1,0.48235297203064,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0.223529428243637,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0.223529428243637,0,0,1,0.48235297203064,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.0901960805058479,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0.0901960805058479,0,0,1,0.823529481887817,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0.517647087574005,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,0.823529481887817,0,0,1,1,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,1,0,0,1,0.454901993274689,0,0,1,0.00784313771873713,0,0,1,0.313725501298904,0,0,1,0.454901993274689,0,0,1,0.313725501298904,0,0,1,1,0,0,1,0.00784313771873713,0,0,1,0.0156862754374743,0,0,1,0.313725501298904,0,0,1,0.313725501298904,0,0,1,0.647058844566345,0,0,1,1,0,0,1,0.313725501298904,0,0,1,0.0156862754374743,0,0,1,0.647058844566345,0,0,1,1,0,0,1,0.647058844566345,0,0,1,1,0,0,1,0.0156862754374743,0,0,1,0.811764776706696,0,0,1,0.647058844566345,0,0,1,0.647058844566345,0,0,1,0.811764776706696,0,0,1,1,0,0,1,0.0901960805058479,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0.0901960805058479,0,0,1,0.823529481887817,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0.517647087574005,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,0.823529481887817,0,0,1,1,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0.223529428243637,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0.223529428243637,0,0,1,0.48235297203064,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,1,0,
- 0,1,0.48235297203064,0,0,1,0.223529428243637,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0.223529428243637,0,0,1,0.48235297203064,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0.223529428243637,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0.223529428243637,0,0,1,0.48235297203064,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.0901960805058479,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0.0901960805058479,0,0,1,0.823529481887817,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0.517647087574005,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,0.823529481887817,0,0,1,1,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,1,0,0,1,0.30588236451149,0,0,1,0.0705882385373116,0,0,1,0,0,0,1,0.0705882385373116,0,0,1,0.30588236451149,0,0,1,0.403921604156494,0,0,1,0,0,0,1,0.223529428243637,0,0,1,0.30588236451149,0,0,1,0.30588236451149,0,0,1,0.603921592235565,0,0,1,0.403921604156494,0,0,1,0.223529428243637,0,0,1,0.650980412960052,0,0,1,0.30588236451149,0,0,1,0.603921592235565,0,0,1,0.30588236451149,0,0,1,0.650980412960052,0,0,1,0.650980412960052,0,0,1,0.223529428243637,0,0,1,0.513725519180298,0,0,1,0.650980412960052,0,0,1,0.972549080848694,0,0,1,0.603921592235565,0,0,1,1,0,0,1,0.650980412960052,0,0,1,0.513725519180298,0,0,1,0.972549080848694,0,0,1,0.650980412960052,0,0,1,1,0,0,1,1,0,0,1,0.650980412960052,0,0,1,1,0,0,1,0,0,0,1,0.282352954149246,0,0,1,0.0156862754374743,0,0,1,0.282352954149246,0,0,1,0.0745098069310188,0,0,1,0.0156862754374743,0,0,1,0,0,0,1,0.588235318660736,0,0,1,0.282352954149246,0,0,1,0.529411792755127,0,0,1,0.0745098069310188,0,0,1,0.282352954149246,0,0,1,0.282352954149246,0,0,1,0.588235318660736,0,0,1,0.650980412960052,0,0,1,0.282352954149246,0,0,1,0.650980412960052,0,0,1,0.529411792755127,0,0,1,1,0,0,1,0.650980412960052,0,0,1,0.588235318660736,0,0,1,0.650980412960052,0,0,1,0.952941238880157,0,0,1,0.529411792755127,0,0,1,0.650980412960052,0,0,1,1,0,0,1,0.996078491210938,0,0,1,0.952941238880157,0,0,
- 1,0.650980412960052,0,0,1,0.996078491210938,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0.650980412960052,0,0,1,1,0,0,1,1,0,0,1,0.650980412960052,0,0,1,0.972549080848694,0,0,1,1,0,0,1,1,0,0,1,0.513725519180298,0,0,1,0.650980412960052,0,0,1,0.972549080848694,0,0,1,0.650980412960052,0,0,1,0.603921592235565,0,0,1,0.30588236451149,0,0,1,0.650980412960052,0,0,1,0.513725519180298,0,0,1,0.30588236451149,0,0,1,0.603921592235565,0,0,1,0.650980412960052,0,0,1,0.30588236451149,0,0,1,0.513725519180298,0,0,1,0.223529428243637,0,0,1,0.603921592235565,0,0,1,0.30588236451149,0,0,1,0.403921604156494,0,0,1,0,0,0,1,0.30588236451149,0,0,1,0.223529428243637,0,0,1,0.30588236451149,0,0,1,0.0705882385373116,0,0,1,0.403921604156494,0,0,1,0.0705882385373116,0,0,1,0.30588236451149,0,0,1,0,0,0,1,0.0980392247438431,0,0,1,0.0156862754374743,0,0,1,0.282352954149246,0,0,1,0.282352954149246,0,0,1,0.0156862754374743,0,0,1,0.0745098069310188,0,0,1,0.282352954149246,
- 0,0,1,0.650980412960052,0,0,1,0.0980392247438431,0,0,1,0.584313750267029,0,0,1,0.282352954149246,0,0,1,0.0745098069310188,0,0,1,0.650980412960052,0,0,1,0.282352954149246,0,0,1,0.674509823322296,0,0,1,0.674509823322296,0,0,1,0.282352954149246,0,0,1,0.584313750267029,0,0,1,0.674509823322296,0,0,1,1,0,0,1,0.650980412960052,0,0,1,0.952941238880157,0,0,1,0.674509823322296,0,0,1,0.584313750267029,0,0,1,1,0,0,1,0.674509823322296,0,0,1,0.996078491210938,0,0,1,0.996078491210938,0,0,1,0.674509823322296,0,0,1,0.952941238880157,0,0,1,0.650980412960052,0,0,1,1,0,0,1,1,0,0,1,0.972549080848694,0,0,1,0.650980412960052,0,0,1,1,0,0,1,1,0,0,1,0.650980412960052,0,0,1,0.513725519180298,0,0,1,0.650980412960052,0,0,1,0.972549080848694,0,0,1,0.603921592235565,0,0,1,0.30588236451149,0,0,1,0.513725519180298,0,0,1,0.650980412960052,0,0,1,0.603921592235565,0,0,1,0.30588236451149,0,0,1,0.650980412960052,0,0,1,0.223529428243637,0,0,1,0.513725519180298,0,0,1,0.30588236451149,0,0,1,0.30588236451149,0,0,1,0.603921592235565,0,0,1,0.403921604156494,0,0,1,0,0,0,1,0.223529428243637,0,0,1,0.30588236451149,0,0,1,0.0705882385373116,0,0,1,0.30588236451149,0,0,1,0.403921604156494,0,0,1,0.30588236451149,0,0,1,0.0705882385373116,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0.30588236451149,0,0,1,0.0705882385373116,0,0,1,0,0,0,1,0.0705882385373116,0,0,1,0.30588236451149,0,0,1,0.403921604156494,0,0,1,0,0,0,1,0.223529428243637,0,0,1,0.30588236451149,0,0,1,0.30588236451149,0,0,1,0.603921592235565,0,0,1,0.403921604156494,0,0,1,
- 0.223529428243637,0,0,1,0.650980412960052,0,0,1,0.30588236451149,0,0,1,0.603921592235565,0,0,1,0.30588236451149,0,0,1,0.650980412960052,0,0,1,0.650980412960052,0,0,1,0.223529428243637,0,0,1,0.513725519180298,0,0,1,0.650980412960052,0,0,1,0.972549080848694,0,0,1,0.603921592235565,0,0,1,1,0,0,1,0.650980412960052,0,0,1,0.513725519180298,0,0,1,0.972549080848694,0,0,1,0.650980412960052,0,0,1,1,0,0,1,1,0,0,1,0.650980412960052,0,0,1,1,0,0,1,0,0,0,1,0.282352954149246,0,0,1,0.0156862754374743,0,0,1,0.282352954149246,0,0,1,0.0745098069310188,0,0,1,0.0156862754374743,0,0,1,0,0,0,1,0.588235318660736,0,0,1,0.282352954149246,0,0,1,0.529411792755127,0,0,1,0.0745098069310188,0,0,1,0.282352954149246,0,0,1,0.282352954149246,0,0,1,0.588235318660736,0,0,1,0.650980412960052,0,0,1,0.282352954149246,0,0,1,0.650980412960052,0,0,1,0.529411792755127,0,0,1,1,0,0,1,0.650980412960052,0,0,1,0.588235318660736,0,0,1,0.650980412960052,0,0,1,0.952941238880157,0,0,1,0.529411792755127,0,0,1,0.650980412960052,0,0,1,1,0,0,1,0.996078491210938,0,0,1,0.952941238880157,0,0,1,0.650980412960052,0,0,1,0.996078491210938,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,
- 0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0.30588236451149,0,0,1,0.0705882385373116,0,0,1,0,0,0,1,0.0705882385373116,0,0,1,0.30588236451149,0,0,1,0.403921604156494,0,0,1,0,0,0,1,0.223529428243637,0,0,1,0.30588236451149,0,0,1,0.30588236451149,0,0,1,0.603921592235565,0,0,1,0.403921604156494,0,0,1,0.223529428243637,0,0,1,0.650980412960052,0,0,1,0.30588236451149,0,0,1,0.603921592235565,0,0,1,0.30588236451149,0,0,1,0.650980412960052,0,0,1,0.650980412960052,0,0,1,0.223529428243637,0,0,1,0.513725519180298,0,0,1,0.650980412960052,0,0,1,0.972549080848694,0,0,1,0.603921592235565,0,0,1,1,0,0,1,0.650980412960052,0,0,1,0.513725519180298,0,0,1,0.972549080848694,0,0,1,0.650980412960052,0,0,1,1,0,0,1,1,0,0,1,0.650980412960052,0,0,1,1,0,0,1,0,0,0,1,0.282352954149246,0,0,1,0.0156862754374743,0,0,1,0.282352954149246,0,0,1,0.0745098069310188,0,0,1,0.0156862754374743,0,0,1,0,0,0,1,0.588235318660736,0,0,1,0.282352954149246,0,0,1,0.529411792755127,0,0,1,0.0745098069310188,0,0,1,0.282352954149246,0,0,1,0.282352954149246,0,0,1,0.588235318660736,0,0,1,0.650980412960052,0,0,1,0.282352954149246,0,0,1,0.650980412960052,0,0,1,0.529411792755127,0,0,1,1,0,0,1,0.650980412960052,0,0,1,0.588235318660736,0,0,1,0.650980412960052,0,0,1,0.952941238880157,0,0,1,0.529411792755127,0,0,1,0.650980412960052,0,0,1,1,0,0,1,0.996078491210938,0,0,1,0.952941238880157,0,0,1,0.650980412960052,0,0,1,0.996078491210938,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,
- 0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0.30588236451149,0,0,1,0.0705882385373116,0,0,1,0,0,0,1,0.0705882385373116,0,0,1,0.30588236451149,0,0,1,0.403921604156494,0,0,1,0,0,0,1,0.223529428243637,0,0,1,0.30588236451149,0,0,1,0.30588236451149,0,0,1,0.603921592235565,0,0,1,0.403921604156494,0,0,1,0.223529428243637,0,0,1,0.650980412960052,0,0,1,0.30588236451149,0,0,1,0.603921592235565,0,0,1,0.30588236451149,0,0,1,0.650980412960052,0,0,1,0.650980412960052,0,0,1,0.223529428243637,0,0,1,0.513725519180298,0,0,1,0.650980412960052,0,0,1,0.972549080848694,0,0,1,0.603921592235565,0,0,1,1,0,0,1,0.650980412960052,0,0,1,0.513725519180298,0,0,1,0.972549080848694,0,0,1,0.650980412960052,0,0,1,1,0,0,1,1,0,0,1,0.650980412960052,0,0,1,1,0,0,1,0,0,0,1,0.282352954149246,0,0,1,0.0156862754374743,0,0,1,0.282352954149246,0,0,1,0.0745098069310188,0,0,1,0.0156862754374743,0,0,1,0,0,0,1,0.588235318660736,0,0,1,0.282352954149246,0,0,1,0.529411792755127,0,0,1,0.0745098069310188,0,0,1,0.282352954149246,0,0,1,0.282352954149246,0,0,1,0.588235318660736,0,0,1,0.650980412960052,0,0,1,0.282352954149246,0,0,1,0.650980412960052,0,0,1,0.529411792755127,0,0,1,1,0,0,1,0.650980412960052,0,0,1,0.588235318660736,0,0,1,0.650980412960052,0,0,1,0.952941238880157,0,0,1,0.529411792755127,0,0,1,0.650980412960052,0,0,1,1,0,0,1,0.996078491210938,0,0,1,0.952941238880157,0,0,1,0.650980412960052,0,0,1,0.996078491210938,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,
- 0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0.30588236451149,0,0,1,0.0705882385373116,0,0,1,0,0,0,1,0.0705882385373116,0,0,1,0.30588236451149,0,0,1,0.403921604156494,0,0,1,0,0,0,1,0.223529428243637,0,0,1,0.30588236451149,0,0,1,0.30588236451149,0,0,1,0.603921592235565,0,0,1,0.403921604156494,0,0,1,0.223529428243637,0,0,1,0.650980412960052,0,0,1,0.30588236451149,0,0,1,0.603921592235565,0,0,1,0.30588236451149,0,0,1,0.650980412960052,0,0,1,0.650980412960052,0,0,1,0.223529428243637,0,0,1,0.513725519180298,0,0,1,0.650980412960052,0,0,1,0.972549080848694,0,0,1,0.603921592235565,0,0,1,1,0,0,1,0.650980412960052,0,0,1,0.513725519180298,0,0,1,0.972549080848694,0,0,1,0.650980412960052,0,0,1,1,0,0,1,1,0,0,1,0.650980412960052,0,0,1,1,0,0,1,0,0,0,1,0.282352954149246,0,0,1,0.0156862754374743,0,0,1,0.282352954149246,0,0,1,0.0745098069310188,0,0,1,0.0156862754374743,0,0,1,0,0,0,1,0.588235318660736,0,0,1,0.282352954149246,0,0,1,0.529411792755127,0,0,1,0.0745098069310188,0,0,1,0.282352954149246,
- 0,0,1,0.282352954149246,0,0,1,0.588235318660736,0,0,1,0.650980412960052,0,0,1,0.282352954149246,0,0,1,0.650980412960052,0,0,1,0.529411792755127,0,0,1,1,0,0,1,0.650980412960052,0,0,1,0.588235318660736,0,0,1,0.650980412960052,0,0,1,0.952941238880157,0,0,1,0.529411792755127,0,0,1,0.650980412960052,0,0,1,1,0,0,1,0.996078491210938,0,0,1,0.952941238880157,0,0,1,0.650980412960052,0,0,1,0.996078491210938,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0.650980412960052,0,0,1,1,0,0,1,1,0,0,1,0.650980412960052,0,0,1,0.972549080848694,0,0,1,1,0,0,1,1,0,0,1,0.513725519180298,0,0,1,0.650980412960052,0,0,1,0.972549080848694,0,0,1,0.650980412960052,0,0,1,0.603921592235565,0,0,1,0.30588236451149,0,0,1,0.650980412960052,0,0,1,0.513725519180298,0,0,1,0.30588236451149,0,0,1,0.603921592235565,0,0,1,0.650980412960052,0,0,1,0.30588236451149,0,0,1,0.513725519180298,0,0,1,0.223529428243637,0,0,1,0.603921592235565,0,0,1,0.30588236451149,0,0,1,0.403921604156494,
- 0,0,1,0,0,0,1,0.30588236451149,0,0,1,0.223529428243637,0,0,1,0.30588236451149,0,0,1,0.0705882385373116,0,0,1,0.403921604156494,0,0,1,0.0705882385373116,0,0,1,0.30588236451149,0,0,1,0,0,0,1,0.0980392247438431,0,0,1,0.0156862754374743,0,0,1,0.282352954149246,0,0,1,0.282352954149246,0,0,1,0.0156862754374743,0,0,1,0.0745098069310188,0,0,1,0.282352954149246,0,0,1,0.650980412960052,0,0,1,0.0980392247438431,0,0,1,0.584313750267029,0,0,1,0.282352954149246,0,0,1,0.0745098069310188,0,0,1,0.650980412960052,0,0,1,0.282352954149246,0,0,1,0.674509823322296,0,0,1,0.674509823322296,0,0,1,0.282352954149246,0,0,1,0.584313750267029,0,0,1,0.674509823322296,0,0,1,1,0,0,1,0.650980412960052,0,0,1,0.952941238880157,0,0,1,0.674509823322296,0,0,1,0.584313750267029,0,0,1,1,0,0,1,0.674509823322296,0,0,1,0.996078491210938,0,0,1,0.996078491210938,0,0,1,0.674509823322296,0,0,1,0.952941238880157,0,0,1,0.650980412960052,0,0,1,1,0,0,1,1,0,0,1,0.972549080848694,0,0,1,0.650980412960052,0,0,1,1,0,0,1,1,0,0,1,0.650980412960052,0,0,1,0.513725519180298,0,0,1,0.650980412960052,0,0,1,0.972549080848694,0,0,1,0.603921592235565,0,0,1,0.30588236451149,0,0,1,0.513725519180298,0,0,1,0.650980412960052,0,0,1,0.603921592235565,0,0,1,0.30588236451149,0,0,1,0.650980412960052,0,0,1,0.223529428243637,0,0,1,0.513725519180298,0,0,1,0.30588236451149,0,0,1,0.30588236451149,0,0,1,0.603921592235565,0,0,1,0.403921604156494,0,0,1,0,0,0,1,0.223529428243637,0,0,1,0.30588236451149,0,0,1,0.0705882385373116,0,0,1,0.30588236451149,0,0,1,0.403921604156494,0,0,1,0.30588236451149,0,0,1,0.0705882385373116,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,
- 0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0.650980412960052,0,0,1,1,0,0,1,1,0,0,1,0.650980412960052,0,0,1,0.972549080848694,0,0,1,1,0,0,1,1,0,0,1,0.513725519180298,0,0,1,0.650980412960052,0,0,1,0.972549080848694,0,0,1,0.650980412960052,0,0,1,0.603921592235565,0,0,1,0.30588236451149,0,0,1,0.650980412960052,0,0,1,0.513725519180298,0,0,1,0.30588236451149,0,0,1,0.603921592235565,0,0,1,0.650980412960052,0,0,1,0.30588236451149,0,0,1,0.513725519180298,0,0,1,0.223529428243637,0,0,1,0.603921592235565,0,0,1,0.30588236451149,0,0,1,0.403921604156494,0,0,1,0,0,0,1,0.30588236451149,0,0,1,0.223529428243637,0,0,1,0.30588236451149,0,0,1,0.0705882385373116,0,0,1,0.403921604156494,0,0,1,0.0705882385373116,0,0,1,0.30588236451149,0,0,1,0,0,0,1,0.0980392247438431,0,0,1,0.0156862754374743,0,0,1,0.282352954149246,0,0,1,0.282352954149246,0,0,1,0.0156862754374743,0,0,1,0.0745098069310188,0,0,1,0.282352954149246,0,0,1,0.650980412960052,0,0,1,0.0980392247438431,0,0,1,0.584313750267029,0,0,1,0.282352954149246,0,0,1,0.0745098069310188,0,0,1,0.650980412960052,0,0,1,0.282352954149246,0,0,1,0.674509823322296,0,0,1,0.674509823322296,0,0,1,0.282352954149246,0,0,1,0.584313750267029,0,0,1,0.674509823322296,0,0,1,1,0,0,1,0.650980412960052,0,0,1,0.952941238880157,0,0,1,0.674509823322296,0,0,1,0.584313750267029,0,0,1,1,0,0,1,0.674509823322296,0,0,1,0.996078491210938,0,0,1,0.996078491210938,0,0,1,0.674509823322296,0,0,1,0.952941238880157,0,0,1,0.650980412960052,0,0,1,1,0,0,1,1,0,0,1,0.972549080848694,0,0,1,0.650980412960052,0,0,1,1,0,0,1,1,0,0,1,0.650980412960052,0,0,1,0.513725519180298,0,0,1,0.650980412960052,0,0,1,0.972549080848694,0,0,1,0.603921592235565,0,0,1,0.30588236451149,0,0,1,0.513725519180298,0,0,1,0.650980412960052,0,0,1,0.603921592235565,0,0,1,0.30588236451149,0,0,1,0.650980412960052,0,0,1,0.223529428243637,0,0,1,0.513725519180298,0,0,1,0.30588236451149,0,0,1,0.30588236451149,0,0,1,0.603921592235565,0,0,1,0.403921604156494,0,0,1,0,0,0,1,0.223529428243637,0,0,1,0.30588236451149,0,0,1,0.0705882385373116,
- 0,0,1,0.30588236451149,0,0,1,0.403921604156494,0,0,1,0.30588236451149,0,0,1,0.0705882385373116,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0.650980412960052,0,0,1,1,0,0,1,1,0,0,1,0.650980412960052,0,0,1,0.972549080848694,0,0,1,1,0,0,1,1,0,0,1,0.513725519180298,0,0,1,0.650980412960052,0,0,1,0.972549080848694,0,0,1,0.650980412960052,0,0,1,0.603921592235565,0,0,1,0.30588236451149,0,0,1,0.650980412960052,0,0,1,0.513725519180298,0,0,1,0.30588236451149,0,0,1,0.603921592235565,0,0,1,0.650980412960052,0,0,1,0.30588236451149,0,0,1,0.513725519180298,0,0,1,0.223529428243637,0,0,1,0.603921592235565,0,0,1,0.30588236451149,0,0,1,0.403921604156494,0,0,1,0,0,0,1,0.30588236451149,0,0,1,0.223529428243637,0,0,1,0.30588236451149,0,0,1,0.0705882385373116,0,0,1,0.403921604156494,0,0,1,0.0705882385373116,0,0,1,0.30588236451149,0,0,1,0,0,0,1,0.0980392247438431,0,0,1,0.0156862754374743,0,0,1,0.282352954149246,0,0,1,0.282352954149246,0,0,1,0.0156862754374743,0,0,1,0.0745098069310188,0,0,1,0.282352954149246,0,0,1,0.650980412960052,0,0,1,0.0980392247438431,0,0,1,0.584313750267029,0,0,1,0.282352954149246,0,0,1,0.0745098069310188,0,0,1,0.650980412960052,0,0,1,0.282352954149246,0,0,1,0.674509823322296,0,0,1,0.674509823322296,0,0,1,0.282352954149246,0,0,1,0.584313750267029,0,0,1,0.674509823322296,0,0,1,1,0,0,1,0.650980412960052,0,0,1,0.952941238880157,0,0,1,0.674509823322296,0,0,1,0.584313750267029,0,0,1,1,0,0,1,0.674509823322296,0,0,1,0.996078491210938,0,0,1,0.996078491210938,0,0,1,0.674509823322296,0,0,1,0.952941238880157,
- 0,0,1,0.650980412960052,0,0,1,1,0,0,1,1,0,0,1,0.972549080848694,0,0,1,0.650980412960052,0,0,1,1,0,0,1,1,0,0,1,0.650980412960052,0,0,1,0.513725519180298,0,0,1,0.650980412960052,0,0,1,0.972549080848694,0,0,1,0.603921592235565,0,0,1,0.30588236451149,0,0,1,0.513725519180298,0,0,1,0.650980412960052,0,0,1,0.603921592235565,0,0,1,0.30588236451149,0,0,1,0.650980412960052,0,0,1,0.223529428243637,0,0,1,0.513725519180298,0,0,1,0.30588236451149,0,0,1,0.30588236451149,0,0,1,0.603921592235565,0,0,1,0.403921604156494,0,0,1,0,0,0,1,0.223529428243637,0,0,1,0.30588236451149,0,0,1,0.0705882385373116,0,0,1,0.30588236451149,0,0,1,0.403921604156494,0,0,1,0.30588236451149,0,0,1,0.0705882385373116,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1
- }
- ColorIndex: *5193 {
- a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,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,259,260,261,262,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,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,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,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,
- 534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,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,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,
- 1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,
- 1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1855,1856,
- 1857,1858,1859,1860,1861,1862,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1924,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1946,1947,1948,1949,1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2129,2130,2131,2132,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144,2145,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2202,2203,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,2228,2229,2230,2231,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,2252,2253,2254,2255,2256,2257,2258,2259,2260,2261,2262,2263,2264,2265,2266,
- 2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,2303,2304,2305,2306,2307,2308,2309,2310,2311,2312,2313,2314,2315,2316,2317,2318,2319,2320,2321,2322,2323,2324,2325,2326,2327,2328,2329,2330,2331,2332,2333,2334,2335,2336,2337,2338,2339,2340,2341,2342,2343,2344,2345,2346,2347,2348,2349,2350,2351,2352,2353,2354,2355,2356,2357,2358,2359,2360,2361,2362,2363,2364,2365,2366,2367,2368,2369,2370,2371,2372,2373,2374,2375,2376,2377,2378,2379,2380,2381,2382,2383,2384,2385,2386,2387,2388,2389,2390,2391,2392,2393,2394,2395,2396,2397,2398,2399,2400,2401,2402,2403,2404,2405,2406,2407,2408,2409,2410,2411,2412,2413,2414,2415,2416,2417,2418,2419,2420,2421,2422,2423,2424,2425,2426,2427,2428,2429,2430,2431,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,2461,2462,2463,2464,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2477,2478,2479,2480,2481,2482,2483,2484,2485,2486,2487,2488,2489,2490,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,2503,2504,2505,2506,2507,2508,2509,2510,2511,2512,2513,2514,2515,2516,2517,2518,2519,2520,2521,2522,2523,2524,2525,2526,2527,2528,2529,2530,2531,2532,2533,2534,2535,2536,2537,2538,2539,2540,2541,2542,2543,2544,2545,2546,2547,2548,2549,2550,2551,2552,2553,2554,2555,2556,2557,2558,2559,2560,2561,2562,2563,2564,2565,2566,2567,2568,2569,2570,2571,2572,2573,2574,2575,2576,2577,2578,2579,2580,2581,2582,2583,2584,2585,2586,2587,2588,2589,2590,2591,2592,2593,2594,2595,2596,2597,2598,2599,2600,2601,2602,2603,2604,2605,2606,2607,2608,2609,2610,2611,2612,2613,2614,2615,2616,2617,2618,2619,2620,2621,2622,2623,2624,2625,2626,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2664,2665,2666,2667,2668,2669,2670,2671,2672,2673,2674,2675,2676,
- 2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2687,2688,2689,2690,2691,2692,2693,2694,2695,2696,2697,2698,2699,2700,2701,2702,2703,2704,2705,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2726,2727,2728,2729,2730,2731,2732,2733,2734,2735,2736,2737,2738,2739,2740,2741,2742,2743,2744,2745,2746,2747,2748,2749,2750,2751,2752,2753,2754,2755,2756,2757,2758,2759,2760,2761,2762,2763,2764,2765,2766,2767,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2780,2781,2782,2783,2784,2785,2786,2787,2788,2789,2790,2791,2792,2793,2794,2795,2796,2797,2798,2799,2800,2801,2802,2803,2804,2805,2806,2807,2808,2809,2810,2811,2812,2813,2814,2815,2816,2817,2818,2819,2820,2821,2822,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2834,2835,2836,2837,2838,2839,2840,2841,2842,2843,2844,2845,2846,2847,2848,2849,2850,2851,2852,2853,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2865,2866,2867,2868,2869,2870,2871,2872,2873,2874,2875,2876,2877,2878,2879,2880,2881,2882,2883,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,2898,2899,2900,2901,2902,2903,2904,2905,2906,2907,2908,2909,2910,2911,2912,2913,2914,2915,2916,2917,2918,2919,2920,2921,2922,2923,2924,2925,2926,2927,2928,2929,2930,2931,2932,2933,2934,2935,2936,2937,2938,2939,2940,2941,2942,2943,2944,2945,2946,2947,2948,2949,2950,2951,2952,2953,2954,2955,2956,2957,2958,2959,2960,2961,2962,2963,2964,2965,2966,2967,2968,2969,2970,2971,2972,2973,2974,2975,2976,2977,2978,2979,2980,2981,2982,2983,2984,2985,2986,2987,2988,2989,2990,2991,2992,2993,2994,2995,2996,2997,2998,2999,3000,3001,3002,3003,3004,3005,3006,3007,3008,3009,3010,3011,3012,3013,3014,3015,3016,3017,3018,3019,3020,3021,3022,3023,3024,3025,3026,3027,3028,3029,3030,3031,3032,3033,3034,3035,3036,3037,3038,3039,3040,3041,3042,3043,3044,3045,3046,3047,3048,3049,3050,3051,3052,3053,3054,3055,3056,3057,3058,3059,3060,3061,3062,3063,3064,3065,3066,3067,3068,3069,3070,3071,3072,3073,3074,3075,3076,3077,3078,3079,3080,3081,3082,3083,3084,3085,3086,
- 3087,3088,3089,3090,3091,3092,3093,3094,3095,3096,3097,3098,3099,3100,3101,3102,3103,3104,3105,3106,3107,3108,3109,3110,3111,3112,3113,3114,3115,3116,3117,3118,3119,3120,3121,3122,3123,3124,3125,3126,3127,3128,3129,3130,3131,3132,3133,3134,3135,3136,3137,3138,3139,3140,3141,3142,3143,3144,3145,3146,3147,3148,3149,3150,3151,3152,3153,3154,3155,3156,3157,3158,3159,3160,3161,3162,3163,3164,3165,3166,3167,3168,3169,3170,3171,3172,3173,3174,3175,3176,3177,3178,3179,3180,3181,3182,3183,3184,3185,3186,3187,3188,3189,3190,3191,3192,3193,3194,3195,3196,3197,3198,3199,3200,3201,3202,3203,3204,3205,3206,3207,3208,3209,3210,3211,3212,3213,3214,3215,3216,3217,3218,3219,3220,3221,3222,3223,3224,3225,3226,3227,3228,3229,3230,3231,3232,3233,3234,3235,3236,3237,3238,3239,3240,3241,3242,3243,3244,3245,3246,3247,3248,3249,3250,3251,3252,3253,3254,3255,3256,3257,3258,3259,3260,3261,3262,3263,3264,3265,3266,3267,3268,3269,3270,3271,3272,3273,3274,3275,3276,3277,3278,3279,3280,3281,3282,3283,3284,3285,3286,3287,3288,3289,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299,3300,3301,3302,3303,3304,3305,3306,3307,3308,3309,3310,3311,3312,3313,3314,3315,3316,3317,3318,3319,3320,3321,3322,3323,3324,3325,3326,3327,3328,3329,3330,3331,3332,3333,3334,3335,3336,3337,3338,3339,3340,3341,3342,3343,3344,3345,3346,3347,3348,3349,3350,3351,3352,3353,3354,3355,3356,3357,3358,3359,3360,3361,3362,3363,3364,3365,3366,3367,3368,3369,3370,3371,3372,3373,3374,3375,3376,3377,3378,3379,3380,3381,3382,3383,3384,3385,3386,3387,3388,3389,3390,3391,3392,3393,3394,3395,3396,3397,3398,3399,3400,3401,3402,3403,3404,3405,3406,3407,3408,3409,3410,3411,3412,3413,3414,3415,3416,3417,3418,3419,3420,3421,3422,3423,3424,3425,3426,3427,3428,3429,3430,3431,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451,3452,3453,3454,3455,3456,3457,3458,3459,3460,3461,3462,3463,3464,3465,3466,3467,3468,3469,3470,3471,3472,3473,3474,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495,3496,
- 3497,3498,3499,3500,3501,3502,3503,3504,3505,3506,3507,3508,3509,3510,3511,3512,3513,3514,3515,3516,3517,3518,3519,3520,3521,3522,3523,3524,3525,3526,3527,3528,3529,3530,3531,3532,3533,3534,3535,3536,3537,3538,3539,3540,3541,3542,3543,3544,3545,3546,3547,3548,3549,3550,3551,3552,3553,3554,3555,3556,3557,3558,3559,3560,3561,3562,3563,3564,3565,3566,3567,3568,3569,3570,3571,3572,3573,3574,3575,3576,3577,3578,3579,3580,3581,3582,3583,3584,3585,3586,3587,3588,3589,3590,3591,3592,3593,3594,3595,3596,3597,3598,3599,3600,3601,3602,3603,3604,3605,3606,3607,3608,3609,3610,3611,3612,3613,3614,3615,3616,3617,3618,3619,3620,3621,3622,3623,3624,3625,3626,3627,3628,3629,3630,3631,3632,3633,3634,3635,3636,3637,3638,3639,3640,3641,3642,3643,3644,3645,3646,3647,3648,3649,3650,3651,3652,3653,3654,3655,3656,3657,3658,3659,3660,3661,3662,3663,3664,3665,3666,3667,3668,3669,3670,3671,3672,3673,3674,3675,3676,3677,3678,3679,3680,3681,3682,3683,3684,3685,3686,3687,3688,3689,3690,3691,3692,3693,3694,3695,3696,3697,3698,3699,3700,3701,3702,3703,3704,3705,3706,3707,3708,3709,3710,3711,3712,3713,3714,3715,3716,3717,3718,3719,3720,3721,3722,3723,3724,3725,3726,3727,3728,3729,3730,3731,3732,3733,3734,3735,3736,3737,3738,3739,3740,3741,3742,3743,3744,3745,3746,3747,3748,3749,3750,3751,3752,3753,3754,3755,3756,3757,3758,3759,3760,3761,3762,3763,3764,3765,3766,3767,3768,3769,3770,3771,3772,3773,3774,3775,3776,3777,3778,3779,3780,3781,3782,3783,3784,3785,3786,3787,3788,3789,3790,3791,3792,3793,3794,3795,3796,3797,3798,3799,3800,3801,3802,3803,3804,3805,3806,3807,3808,3809,3810,3811,3812,3813,3814,3815,3816,3817,3818,3819,3820,3821,3822,3823,3824,3825,3826,3827,3828,3829,3830,3831,3832,3833,3834,3835,3836,3837,3838,3839,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3851,3852,3853,3854,3855,3856,3857,3858,3859,3860,3861,3862,3863,3864,3865,3866,3867,3868,3869,3870,3871,3872,3873,3874,3875,3876,3877,3878,3879,3880,3881,3882,3883,3884,3885,3886,3887,3888,3889,3890,3891,3892,3893,3894,3895,3896,3897,3898,3899,3900,3901,3902,3903,3904,3905,3906,
- 3907,3908,3909,3910,3911,3912,3913,3914,3915,3916,3917,3918,3919,3920,3921,3922,3923,3924,3925,3926,3927,3928,3929,3930,3931,3932,3933,3934,3935,3936,3937,3938,3939,3940,3941,3942,3943,3944,3945,3946,3947,3948,3949,3950,3951,3952,3953,3954,3955,3956,3957,3958,3959,3960,3961,3962,3963,3964,3965,3966,3967,3968,3969,3970,3971,3972,3973,3974,3975,3976,3977,3978,3979,3980,3981,3982,3983,3984,3985,3986,3987,3988,3989,3990,3991,3992,3993,3994,3995,3996,3997,3998,3999,4000,4001,4002,4003,4004,4005,4006,4007,4008,4009,4010,4011,4012,4013,4014,4015,4016,4017,4018,4019,4020,4021,4022,4023,4024,4025,4026,4027,4028,4029,4030,4031,4032,4033,4034,4035,4036,4037,4038,4039,4040,4041,4042,4043,4044,4045,4046,4047,4048,4049,4050,4051,4052,4053,4054,4055,4056,4057,4058,4059,4060,4061,4062,4063,4064,4065,4066,4067,4068,4069,4070,4071,4072,4073,4074,4075,4076,4077,4078,4079,4080,4081,4082,4083,4084,4085,4086,4087,4088,4089,4090,4091,4092,4093,4094,4095,4096,4097,4098,4099,4100,4101,4102,4103,4104,4105,4106,4107,4108,4109,4110,4111,4112,4113,4114,4115,4116,4117,4118,4119,4120,4121,4122,4123,4124,4125,4126,4127,4128,4129,4130,4131,4132,4133,4134,4135,4136,4137,4138,4139,4140,4141,4142,4143,4144,4145,4146,4147,4148,4149,4150,4151,4152,4153,4154,4155,4156,4157,4158,4159,4160,4161,4162,4163,4164,4165,4166,4167,4168,4169,4170,4171,4172,4173,4174,4175,4176,4177,4178,4179,4180,4181,4182,4183,4184,4185,4186,4187,4188,4189,4190,4191,4192,4193,4194,4195,4196,4197,4198,4199,4200,4201,4202,4203,4204,4205,4206,4207,4208,4209,4210,4211,4212,4213,4214,4215,4216,4217,4218,4219,4220,4221,4222,4223,4224,4225,4226,4227,4228,4229,4230,4231,4232,4233,4234,4235,4236,4237,4238,4239,4240,4241,4242,4243,4244,4245,4246,4247,4248,4249,4250,4251,4252,4253,4254,4255,4256,4257,4258,4259,4260,4261,4262,4263,4264,4265,4266,4267,4268,4269,4270,4271,4272,4273,4274,4275,4276,4277,4278,4279,4280,4281,4282,4283,4284,4285,4286,4287,4288,4289,4290,4291,4292,4293,4294,4295,4296,4297,4298,4299,4300,4301,4302,4303,4304,4305,4306,4307,4308,4309,4310,4311,4312,4313,4314,4315,4316,
- 4317,4318,4319,4320,4321,4322,4323,4324,4325,4326,4327,4328,4329,4330,4331,4332,4333,4334,4335,4336,4337,4338,4339,4340,4341,4342,4343,4344,4345,4346,4347,4348,4349,4350,4351,4352,4353,4354,4355,4356,4357,4358,4359,4360,4361,4362,4363,4364,4365,4366,4367,4368,4369,4370,4371,4372,4373,4374,4375,4376,4377,4378,4379,4380,4381,4382,4383,4384,4385,4386,4387,4388,4389,4390,4391,4392,4393,4394,4395,4396,4397,4398,4399,4400,4401,4402,4403,4404,4405,4406,4407,4408,4409,4410,4411,4412,4413,4414,4415,4416,4417,4418,4419,4420,4421,4422,4423,4424,4425,4426,4427,4428,4429,4430,4431,4432,4433,4434,4435,4436,4437,4438,4439,4440,4441,4442,4443,4444,4445,4446,4447,4448,4449,4450,4451,4452,4453,4454,4455,4456,4457,4458,4459,4460,4461,4462,4463,4464,4465,4466,4467,4468,4469,4470,4471,4472,4473,4474,4475,4476,4477,4478,4479,4480,4481,4482,4483,4484,4485,4486,4487,4488,4489,4490,4491,4492,4493,4494,4495,4496,4497,4498,4499,4500,4501,4502,4503,4504,4505,4506,4507,4508,4509,4510,4511,4512,4513,4514,4515,4516,4517,4518,4519,4520,4521,4522,4523,4524,4525,4526,4527,4528,4529,4530,4531,4532,4533,4534,4535,4536,4537,4538,4539,4540,4541,4542,4543,4544,4545,4546,4547,4548,4549,4550,4551,4552,4553,4554,4555,4556,4557,4558,4559,4560,4561,4562,4563,4564,4565,4566,4567,4568,4569,4570,4571,4572,4573,4574,4575,4576,4577,4578,4579,4580,4581,4582,4583,4584,4585,4586,4587,4588,4589,4590,4591,4592,4593,4594,4595,4596,4597,4598,4599,4600,4601,4602,4603,4604,4605,4606,4607,4608,4609,4610,4611,4612,4613,4614,4615,4616,4617,4618,4619,4620,4621,4622,4623,4624,4625,4626,4627,4628,4629,4630,4631,4632,4633,4634,4635,4636,4637,4638,4639,4640,4641,4642,4643,4644,4645,4646,4647,4648,4649,4650,4651,4652,4653,4654,4655,4656,4657,4658,4659,4660,4661,4662,4663,4664,4665,4666,4667,4668,4669,4670,4671,4672,4673,4674,4675,4676,4677,4678,4679,4680,4681,4682,4683,4684,4685,4686,4687,4688,4689,4690,4691,4692,4693,4694,4695,4696,4697,4698,4699,4700,4701,4702,4703,4704,4705,4706,4707,4708,4709,4710,4711,4712,4713,4714,4715,4716,4717,4718,4719,4720,4721,4722,4723,4724,4725,4726,
- 4727,4728,4729,4730,4731,4732,4733,4734,4735,4736,4737,4738,4739,4740,4741,4742,4743,4744,4745,4746,4747,4748,4749,4750,4751,4752,4753,4754,4755,4756,4757,4758,4759,4760,4761,4762,4763,4764,4765,4766,4767,4768,4769,4770,4771,4772,4773,4774,4775,4776,4777,4778,4779,4780,4781,4782,4783,4784,4785,4786,4787,4788,4789,4790,4791,4792,4793,4794,4795,4796,4797,4798,4799,4800,4801,4802,4803,4804,4805,4806,4807,4808,4809,4810,4811,4812,4813,4814,4815,4816,4817,4818,4819,4820,4821,4822,4823,4824,4825,4826,4827,4828,4829,4830,4831,4832,4833,4834,4835,4836,4837,4838,4839,4840,4841,4842,4843,4844,4845,4846,4847,4848,4849,4850,4851,4852,4853,4854,4855,4856,4857,4858,4859,4860,4861,4862,4863,4864,4865,4866,4867,4868,4869,4870,4871,4872,4873,4874,4875,4876,4877,4878,4879,4880,4881,4882,4883,4884,4885,4886,4887,4888,4889,4890,4891,4892,4893,4894,4895,4896,4897,4898,4899,4900,4901,4902,4903,4904,4905,4906,4907,4908,4909,4910,4911,4912,4913,4914,4915,4916,4917,4918,4919,4920,4921,4922,4923,4924,4925,4926,4927,4928,4929,4930,4931,4932,4933,4934,4935,4936,4937,4938,4939,4940,4941,4942,4943,4944,4945,4946,4947,4948,4949,4950,4951,4952,4953,4954,4955,4956,4957,4958,4959,4960,4961,4962,4963,4964,4965,4966,4967,4968,4969,4970,4971,4972,4973,4974,4975,4976,4977,4978,4979,4980,4981,4982,4983,4984,4985,4986,4987,4988,4989,4990,4991,4992,4993,4994,4995,4996,4997,4998,4999,5000,5001,5002,5003,5004,5005,5006,5007,5008,5009,5010,5011,5012,5013,5014,5015,5016,5017,5018,5019,5020,5021,5022,5023,5024,5025,5026,5027,5028,5029,5030,5031,5032,5033,5034,5035,5036,5037,5038,5039,5040,5041,5042,5043,5044,5045,5046,5047,5048,5049,5050,5051,5052,5053,5054,5055,5056,5057,5058,5059,5060,5061,5062,5063,5064,5065,5066,5067,5068,5069,5070,5071,5072,5073,5074,5075,5076,5077,5078,5079,5080,5081,5082,5083,5084,5085,5086,5087,5088,5089,5090,5091,5092,5093,5094,5095,5096,5097,5098,5099,5100,5101,5102,5103,5104,5105,5106,5107,5108,5109,5110,5111,5112,5113,5114,5115,5116,5117,5118,5119,5120,5121,5122,5123,5124,5125,5126,5127,5128,5129,5130,5131,5132,5133,5134,5135,5136,
- 5137,5138,5139,5140,5141,5142,5143,5144,5145,5146,5147,5148,5149,5150,5151,5152,5153,5154,5155,5156,5157,5158,5159,5160,5161,5162,5163,5164,5165,5166,5167,5168,5169,5170,5171,5172,5173,5174,5175,5176,5177,5178,5179,5180,5181,5182,5183,5184,5185,5186,5187,5188,5189,5190,5191,5192
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "UVmap_0"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *9626 {
- a: 0.456787109375,1.2685546875,0.48779296875,1.4208984375,0.3388671875,1.479248046875,0.5556640625,1.3642578125,0.362060546875,1.55029296875,0.62646484375,1.556640625,0.56201171875,1.61083984375,0.703125,1.822265625,0.439453125,1.587890625,0.323486328125,1.6220703125,0.2261962890625,1.57421875,0.335205078125,1.75732421875,0.40283203125,1.7978515625,0.354248046875,1.99658203125,0.51123046875,1.845703125,0.60888671875,1.83447265625,0.52197265625,2.140625,0.63330078125,2.0791015625,0.72412109375,2.0986328125,0.5634765625,2.2421875,0.63916015625,2.3095703125,0.45361328125,2.3583984375,0.456787109375,2.2734375,0.38232421875,2.25,0.31298828125,2.3203125,0.384033203125,2.0517578125,0.32421875,2.1806640625,0.2496337890625,2.15625,0.29931640625,3.306640625,0.44091796875,3.484375,0.197998046875,3.466796875,0.1336669921875,3.125,0.450439453125,3.40625,0.71826171875,3.302734375,0.25390625,3.091796875,0.27197265625,2.7548828125,0.6533203125,3.1953125,0.8359375,2.990234375,0.52099609375,3.05859375,0.76806640625,2.974609375,0.71630859375,2.744140625,0.3603515625,2.7890625,0.61376953125,2.78125,0.343505859375,2.5009765625,0.2861328125,2.4365234375,0.51123046875,2.6357421875,0.3857421875,2.4033203125,0.349609375,2.19140625,0.51123046875,2.330078125,0.60302734375,2.5498046875,0.759765625,2.4716796875,0.51953125,2.44140625,0.308349609375,0.41259765625,0.1204833984375,0.4755859375,0.09381103515625,0.29736328125,0.159912109375,0.19921875,0.10272216796875,0.158203125,0.1572265625,0.169921875,0.08441162109375,0.224609375,0.060699462890625,0.1474609375,0.053436279296875,0.36767578125,0.0181427001953125,0.2177734375,0.015899658203125,0.36962890625,0.210693359375,0.888916015625,0.06622314453125,0.986373901367188,0.0099639892578125,0.8890380859375,0.1357421875,0.624755859375,0.22119140625,0.658203125,0.07513427734375,0.50732421875,0.1429443359375,0.4970703125,0.13330078125,0.69091796875,0.2130126953125,0.7431640625,0.0787353515625,0.787109375,0.036407470703125,0.731689453125,0.349853515625,0.2568359375,0.3505859375,0.431640625,
- 0.325927734375,0.41162109375,0.391845703125,0.27587890625,0.381103515625,0.43896484375,0.445068359375,0.28173828125,0.435302734375,0.0947265625,0.3681640625,0.13232421875,0.304443359375,0.16796875,0.376953125,0.0009765625,0.29931640625,0.02734375,0.45263671875,0.995662689208984,0.495849609375,0.8795166015625,0.623046875,0.95709228515625,0.36669921875,0.8900146484375,0.63037109375,0.8282470703125,0.448486328125,0.73486328125,0.428466796875,0.71337890625,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.459228515625,0.602294921875,0.62109375,0.614990234375,0.55224609375,0.5693359375,0.12298583984375,0.3310546875,0.30712890625,0.41259765625,0.158203125,0.46484375,0.1585693359375,0.19921875,0.0130844116210938,0.4755859375,0.08319091796875,0.224609375,0.1416015625,0.01220703125,0.0168914794921875,0.2177734375,0.07000732421875,0.7755126953125,0.155029296875,0.17236328125,0.067626953125,0.1376953125,0.2225341796875,0.658203125,0.144287109375,0.4970703125,0.136962890625,0.624755859375,0.2119140625,0.888916015625,0.076416015625,0.50732421875,0.09625244140625,0.8033447265625,0.0675048828125,0.986373901367188,0.0112228393554688,0.8890380859375,0.453857421875,0.995662689208984,0.4970703125,0.8795166015625,0.62451171875,0.95709228515625,0.3681640625,0.8900146484375,0.6318359375,0.8282470703125,0.44970703125,0.73486328125,0.4296875,0.71337890625,0.5263671875,0.65869140625,0.60009765625,0.71337890625,0.46044921875,0.602294921875,0.62255859375,0.614990234375,0.55322265625,0.5693359375,0.40966796875,0.5390625,0.33154296875,0.62939453125,0.29638671875,0.4951171875,0.2437744140625,0.517333984375,0.36181640625,0.77685546875,0.2476806640625,0.743408203125,0.306396484375,0.8087158203125,0.316650390625,1,0.25146484375,0.95538330078125,0.282958984375,0.976959228515625,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.43359375,0.3388671875,1.0009765625,0.39404296875,0.638671875,0.0107421875,0.96630859375,0.00244140625,0.39306640625,0.27587890625,0.351806640625,0.431640625,0.38232421875,0.43896484375,0.3271484375,
- 0.41162109375,0.4462890625,0.28173828125,0.351318359375,0.2568359375,0.36962890625,0.13232421875,0.4365234375,0.0947265625,0.3056640625,0.16796875,0.378173828125,0.0009765625,0.300537109375,0.02734375,0.410888671875,0.5390625,0.297607421875,0.4951171875,0.332763671875,0.62939453125,0.2449951171875,0.517333984375,0.357177734375,0.805908203125,0.2493896484375,0.7708740234375,0.299560546875,0.821533203125,0.31787109375,1,0.252685546875,0.95538330078125,0.2841796875,0.976959228515625,0.456787109375,1.2685546875,0.48779296875,1.4208984375,0.3388671875,1.479248046875,0.5556640625,1.3642578125,0.48779296875,1.4208984375,0.456787109375,1.2685546875,0.48779296875,1.4208984375,0.362060546875,1.55029296875,0.3388671875,1.479248046875,0.5556640625,1.3642578125,0.62646484375,1.556640625,0.48779296875,1.4208984375,0.56201171875,1.61083984375,0.48779296875,1.4208984375,0.62646484375,1.556640625,0.62646484375,1.556640625,0.703125,1.822265625,0.56201171875,1.61083984375,0.362060546875,1.55029296875,0.48779296875,1.4208984375,0.439453125,1.587890625,0.56201171875,1.61083984375,0.439453125,1.587890625,0.48779296875,1.4208984375,0.439453125,1.587890625,0.323486328125,1.6220703125,0.362060546875,1.55029296875,0.2261962890625,1.57421875,0.362060546875,1.55029296875,0.323486328125,1.6220703125,0.323486328125,1.6220703125,0.335205078125,1.75732421875,0.2261962890625,1.57421875,0.335205078125,1.75732421875,0.323486328125,1.6220703125,0.40283203125,1.7978515625,0.323486328125,1.6220703125,0.439453125,1.587890625,0.40283203125,1.7978515625,0.40283203125,1.7978515625,0.354248046875,1.99658203125,0.335205078125,1.75732421875,0.56201171875,1.61083984375,0.51123046875,1.845703125,0.439453125,1.587890625,0.40283203125,1.7978515625,0.439453125,1.587890625,0.51123046875,1.845703125,0.60888671875,1.83447265625,0.51123046875,1.845703125,0.56201171875,1.61083984375,0.60888671875,1.83447265625,0.56201171875,1.61083984375,0.703125,1.822265625,0.51123046875,1.845703125,0.52197265625,2.140625,0.40283203125,1.7978515625,0.51123046875,1.845703125,0.60888671875,
- 1.83447265625,0.52197265625,2.140625,0.703125,1.822265625,0.63330078125,2.0791015625,0.60888671875,1.83447265625,0.52197265625,2.140625,0.60888671875,1.83447265625,0.63330078125,2.0791015625,0.63330078125,2.0791015625,0.703125,1.822265625,0.72412109375,2.0986328125,0.72412109375,2.0986328125,0.5634765625,2.2421875,0.63330078125,2.0791015625,0.5634765625,2.2421875,0.52197265625,2.140625,0.63330078125,2.0791015625,0.5634765625,2.2421875,0.72412109375,2.0986328125,0.63916015625,2.3095703125,0.63916015625,2.3095703125,0.45361328125,2.3583984375,0.5634765625,2.2421875,0.456787109375,2.2734375,0.52197265625,2.140625,0.5634765625,2.2421875,0.45361328125,2.3583984375,0.456787109375,2.2734375,0.5634765625,2.2421875,0.45361328125,2.3583984375,0.38232421875,2.25,0.456787109375,2.2734375,0.38232421875,2.25,0.52197265625,2.140625,0.456787109375,2.2734375,0.38232421875,2.25,0.45361328125,2.3583984375,0.31298828125,2.3203125,0.40283203125,1.7978515625,0.52197265625,2.140625,0.384033203125,2.0517578125,0.38232421875,2.25,0.384033203125,2.0517578125,0.52197265625,2.140625,0.354248046875,1.99658203125,0.40283203125,1.7978515625,0.384033203125,2.0517578125,0.31298828125,2.3203125,0.32421875,2.1806640625,0.38232421875,2.25,0.384033203125,2.0517578125,0.38232421875,2.25,0.32421875,2.1806640625,0.384033203125,2.0517578125,0.32421875,2.1806640625,0.354248046875,1.99658203125,0.32421875,2.1806640625,0.31298828125,2.3203125,0.2496337890625,2.15625,0.2496337890625,2.15625,0.354248046875,1.99658203125,0.32421875,2.1806640625,0.456787109375,1.2685546875,0.48779296875,1.4208984375,0.3388671875,1.479248046875,0.5556640625,1.3642578125,0.48779296875,1.4208984375,0.456787109375,1.2685546875,0.48779296875,1.4208984375,0.362060546875,1.55029296875,0.3388671875,1.479248046875,0.5556640625,1.3642578125,0.62646484375,1.556640625,0.48779296875,1.4208984375,0.56201171875,1.61083984375,0.48779296875,1.4208984375,0.62646484375,1.556640625,0.62646484375,1.556640625,0.703125,1.822265625,0.56201171875,1.61083984375,0.362060546875,1.55029296875,0.48779296875,
- 1.4208984375,0.439453125,1.587890625,0.56201171875,1.61083984375,0.439453125,1.587890625,0.48779296875,1.4208984375,0.439453125,1.587890625,0.323486328125,1.6220703125,0.362060546875,1.55029296875,0.2261962890625,1.57421875,0.362060546875,1.55029296875,0.323486328125,1.6220703125,0.323486328125,1.6220703125,0.335205078125,1.75732421875,0.2261962890625,1.57421875,0.335205078125,1.75732421875,0.323486328125,1.6220703125,0.40283203125,1.7978515625,0.323486328125,1.6220703125,0.439453125,1.587890625,0.40283203125,1.7978515625,0.40283203125,1.7978515625,0.354248046875,1.99658203125,0.335205078125,1.75732421875,0.56201171875,1.61083984375,0.51123046875,1.845703125,0.439453125,1.587890625,0.40283203125,1.7978515625,0.439453125,1.587890625,0.51123046875,1.845703125,0.60888671875,1.83447265625,0.51123046875,1.845703125,0.56201171875,1.61083984375,0.60888671875,1.83447265625,0.56201171875,1.61083984375,0.703125,1.822265625,0.51123046875,1.845703125,0.52197265625,2.140625,0.40283203125,1.7978515625,0.51123046875,1.845703125,0.60888671875,1.83447265625,0.52197265625,2.140625,0.703125,1.822265625,0.63330078125,2.0791015625,0.60888671875,1.83447265625,0.52197265625,2.140625,0.60888671875,1.83447265625,0.63330078125,2.0791015625,0.63330078125,2.0791015625,0.703125,1.822265625,0.72412109375,2.0986328125,0.72412109375,2.0986328125,0.5634765625,2.2421875,0.63330078125,2.0791015625,0.5634765625,2.2421875,0.52197265625,2.140625,0.63330078125,2.0791015625,0.5634765625,2.2421875,0.72412109375,2.0986328125,0.63916015625,2.3095703125,0.63916015625,2.3095703125,0.45361328125,2.3583984375,0.5634765625,2.2421875,0.456787109375,2.2734375,0.52197265625,2.140625,0.5634765625,2.2421875,0.45361328125,2.3583984375,0.456787109375,2.2734375,0.5634765625,2.2421875,0.45361328125,2.3583984375,0.38232421875,2.25,0.456787109375,2.2734375,0.38232421875,2.25,0.52197265625,2.140625,0.456787109375,2.2734375,0.38232421875,2.25,0.45361328125,2.3583984375,0.31298828125,2.3203125,0.40283203125,1.7978515625,0.52197265625,2.140625,0.384033203125,2.0517578125,0.38232421875,
- 2.25,0.384033203125,2.0517578125,0.52197265625,2.140625,0.354248046875,1.99658203125,0.40283203125,1.7978515625,0.384033203125,2.0517578125,0.31298828125,2.3203125,0.32421875,2.1806640625,0.38232421875,2.25,0.384033203125,2.0517578125,0.38232421875,2.25,0.32421875,2.1806640625,0.384033203125,2.0517578125,0.32421875,2.1806640625,0.354248046875,1.99658203125,0.32421875,2.1806640625,0.31298828125,2.3203125,0.2496337890625,2.15625,0.2496337890625,2.15625,0.354248046875,1.99658203125,0.32421875,2.1806640625,0.456787109375,1.2685546875,0.48779296875,1.4208984375,0.3388671875,1.479248046875,0.5556640625,1.3642578125,0.48779296875,1.4208984375,0.456787109375,1.2685546875,0.48779296875,1.4208984375,0.362060546875,1.55029296875,0.3388671875,1.479248046875,0.5556640625,1.3642578125,0.62646484375,1.556640625,0.48779296875,1.4208984375,0.56201171875,1.61083984375,0.48779296875,1.4208984375,0.62646484375,1.556640625,0.62646484375,1.556640625,0.703125,1.822265625,0.56201171875,1.61083984375,0.362060546875,1.55029296875,0.48779296875,1.4208984375,0.439453125,1.587890625,0.56201171875,1.61083984375,0.439453125,1.587890625,0.48779296875,1.4208984375,0.439453125,1.587890625,0.323486328125,1.6220703125,0.362060546875,1.55029296875,0.2261962890625,1.57421875,0.362060546875,1.55029296875,0.323486328125,1.6220703125,0.323486328125,1.6220703125,0.335205078125,1.75732421875,0.2261962890625,1.57421875,0.335205078125,1.75732421875,0.323486328125,1.6220703125,0.40283203125,1.7978515625,0.323486328125,1.6220703125,0.439453125,1.587890625,0.40283203125,1.7978515625,0.40283203125,1.7978515625,0.354248046875,1.99658203125,0.335205078125,1.75732421875,0.56201171875,1.61083984375,0.51123046875,1.845703125,0.439453125,1.587890625,0.40283203125,1.7978515625,0.439453125,1.587890625,0.51123046875,1.845703125,0.60888671875,1.83447265625,0.51123046875,1.845703125,0.56201171875,1.61083984375,0.60888671875,1.83447265625,0.56201171875,1.61083984375,0.703125,1.822265625,0.51123046875,1.845703125,0.52197265625,2.140625,0.40283203125,1.7978515625,0.51123046875,
- 1.845703125,0.60888671875,1.83447265625,0.52197265625,2.140625,0.703125,1.822265625,0.63330078125,2.0791015625,0.60888671875,1.83447265625,0.52197265625,2.140625,0.60888671875,1.83447265625,0.63330078125,2.0791015625,0.63330078125,2.0791015625,0.703125,1.822265625,0.72412109375,2.0986328125,0.72412109375,2.0986328125,0.5634765625,2.2421875,0.63330078125,2.0791015625,0.5634765625,2.2421875,0.52197265625,2.140625,0.63330078125,2.0791015625,0.5634765625,2.2421875,0.72412109375,2.0986328125,0.63916015625,2.3095703125,0.63916015625,2.3095703125,0.45361328125,2.3583984375,0.5634765625,2.2421875,0.456787109375,2.2734375,0.52197265625,2.140625,0.5634765625,2.2421875,0.45361328125,2.3583984375,0.456787109375,2.2734375,0.5634765625,2.2421875,0.45361328125,2.3583984375,0.38232421875,2.25,0.456787109375,2.2734375,0.38232421875,2.25,0.52197265625,2.140625,0.456787109375,2.2734375,0.38232421875,2.25,0.45361328125,2.3583984375,0.31298828125,2.3203125,0.40283203125,1.7978515625,0.52197265625,2.140625,0.384033203125,2.0517578125,0.38232421875,2.25,0.384033203125,2.0517578125,0.52197265625,2.140625,0.354248046875,1.99658203125,0.40283203125,1.7978515625,0.384033203125,2.0517578125,0.31298828125,2.3203125,0.32421875,2.1806640625,0.38232421875,2.25,0.384033203125,2.0517578125,0.38232421875,2.25,0.32421875,2.1806640625,0.384033203125,2.0517578125,0.32421875,2.1806640625,0.354248046875,1.99658203125,0.32421875,2.1806640625,0.31298828125,2.3203125,0.2496337890625,2.15625,0.2496337890625,2.15625,0.354248046875,1.99658203125,0.32421875,2.1806640625,0.29931640625,3.306640625,0.44091796875,3.484375,0.197998046875,3.466796875,0.1336669921875,3.125,0.29931640625,3.306640625,0.197998046875,3.466796875,0.44091796875,3.484375,0.29931640625,3.306640625,0.450439453125,3.40625,0.71826171875,3.302734375,0.44091796875,3.484375,0.450439453125,3.40625,0.29931640625,3.306640625,0.1336669921875,3.125,0.25390625,3.091796875,0.27197265625,2.7548828125,0.25390625,3.091796875,0.1336669921875,3.125,0.450439453125,3.40625,0.6533203125,3.1953125,0.71826171875,3.302734375,
- 0.8359375,2.990234375,0.71826171875,3.302734375,0.6533203125,3.1953125,0.450439453125,3.40625,0.29931640625,3.306640625,0.52099609375,3.05859375,0.6533203125,3.1953125,0.450439453125,3.40625,0.52099609375,3.05859375,0.29931640625,3.306640625,0.25390625,3.091796875,0.52099609375,3.05859375,0.8359375,2.990234375,0.6533203125,3.1953125,0.76806640625,2.974609375,0.76806640625,2.974609375,0.6533203125,3.1953125,0.52099609375,3.05859375,0.71630859375,2.744140625,0.8359375,2.990234375,0.76806640625,2.974609375,0.52099609375,3.05859375,0.25390625,3.091796875,0.3603515625,2.7890625,0.25390625,3.091796875,0.27197265625,2.7548828125,0.3603515625,2.7890625,0.61376953125,2.78125,0.76806640625,2.974609375,0.52099609375,3.05859375,0.71630859375,2.744140625,0.76806640625,2.974609375,0.61376953125,2.78125,0.343505859375,2.5009765625,0.3603515625,2.7890625,0.27197265625,2.7548828125,0.27197265625,2.7548828125,0.2861328125,2.4365234375,0.343505859375,2.5009765625,0.51123046875,2.6357421875,0.52099609375,3.05859375,0.3603515625,2.7890625,0.3603515625,2.7890625,0.343505859375,2.5009765625,0.51123046875,2.6357421875,0.51123046875,2.6357421875,0.61376953125,2.78125,0.52099609375,3.05859375,0.2861328125,2.4365234375,0.3857421875,2.4033203125,0.343505859375,2.5009765625,0.343505859375,2.5009765625,0.3857421875,2.4033203125,0.51123046875,2.6357421875,0.349609375,2.19140625,0.3857421875,2.4033203125,0.2861328125,2.4365234375,0.51123046875,2.330078125,0.3857421875,2.4033203125,0.349609375,2.19140625,0.60302734375,2.5498046875,0.71630859375,2.744140625,0.61376953125,2.78125,0.60302734375,2.5498046875,0.61376953125,2.78125,0.51123046875,2.6357421875,0.71630859375,2.744140625,0.60302734375,2.5498046875,0.759765625,2.4716796875,0.3857421875,2.4033203125,0.51953125,2.44140625,0.51123046875,2.6357421875,0.51953125,2.44140625,0.60302734375,2.5498046875,0.51123046875,2.6357421875,0.3857421875,2.4033203125,0.51123046875,2.330078125,0.51953125,2.44140625,0.51953125,2.44140625,0.759765625,2.4716796875,0.60302734375,2.5498046875,0.759765625,2.4716796875,
- 0.51953125,2.44140625,0.51123046875,2.330078125,0.29931640625,3.306640625,0.44091796875,3.484375,0.197998046875,3.466796875,0.1336669921875,3.125,0.29931640625,3.306640625,0.197998046875,3.466796875,0.44091796875,3.484375,0.29931640625,3.306640625,0.450439453125,3.40625,0.71826171875,3.302734375,0.44091796875,3.484375,0.450439453125,3.40625,0.29931640625,3.306640625,0.1336669921875,3.125,0.25390625,3.091796875,0.27197265625,2.7548828125,0.25390625,3.091796875,0.1336669921875,3.125,0.450439453125,3.40625,0.6533203125,3.1953125,0.71826171875,3.302734375,0.8359375,2.990234375,0.71826171875,3.302734375,0.6533203125,3.1953125,0.450439453125,3.40625,0.29931640625,3.306640625,0.52099609375,3.05859375,0.6533203125,3.1953125,0.450439453125,3.40625,0.52099609375,3.05859375,0.29931640625,3.306640625,0.25390625,3.091796875,0.52099609375,3.05859375,0.8359375,2.990234375,0.6533203125,3.1953125,0.76806640625,2.974609375,0.76806640625,2.974609375,0.6533203125,3.1953125,0.52099609375,3.05859375,0.71630859375,2.744140625,0.8359375,2.990234375,0.76806640625,2.974609375,0.52099609375,3.05859375,0.25390625,3.091796875,0.3603515625,2.7890625,0.25390625,3.091796875,0.27197265625,2.7548828125,0.3603515625,2.7890625,0.61376953125,2.78125,0.76806640625,2.974609375,0.52099609375,3.05859375,0.71630859375,2.744140625,0.76806640625,2.974609375,0.61376953125,2.78125,0.343505859375,2.5009765625,0.3603515625,2.7890625,0.27197265625,2.7548828125,0.27197265625,2.7548828125,0.2861328125,2.4365234375,0.343505859375,2.5009765625,0.51123046875,2.6357421875,0.52099609375,3.05859375,0.3603515625,2.7890625,0.3603515625,2.7890625,0.343505859375,2.5009765625,0.51123046875,2.6357421875,0.51123046875,2.6357421875,0.61376953125,2.78125,0.52099609375,3.05859375,0.2861328125,2.4365234375,0.3857421875,2.4033203125,0.343505859375,2.5009765625,0.343505859375,2.5009765625,0.3857421875,2.4033203125,0.51123046875,2.6357421875,0.349609375,2.19140625,0.3857421875,2.4033203125,0.2861328125,2.4365234375,0.51123046875,2.330078125,0.3857421875,2.4033203125,0.349609375,2.19140625,
- 0.60302734375,2.5498046875,0.71630859375,2.744140625,0.61376953125,2.78125,0.60302734375,2.5498046875,0.61376953125,2.78125,0.51123046875,2.6357421875,0.71630859375,2.744140625,0.60302734375,2.5498046875,0.759765625,2.4716796875,0.3857421875,2.4033203125,0.51953125,2.44140625,0.51123046875,2.6357421875,0.51953125,2.44140625,0.60302734375,2.5498046875,0.51123046875,2.6357421875,0.3857421875,2.4033203125,0.51123046875,2.330078125,0.51953125,2.44140625,0.51953125,2.44140625,0.759765625,2.4716796875,0.60302734375,2.5498046875,0.759765625,2.4716796875,0.51953125,2.44140625,0.51123046875,2.330078125,0.29931640625,3.306640625,0.44091796875,3.484375,0.197998046875,3.466796875,0.1336669921875,3.125,0.29931640625,3.306640625,0.197998046875,3.466796875,0.44091796875,3.484375,0.29931640625,3.306640625,0.450439453125,3.40625,0.71826171875,3.302734375,0.44091796875,3.484375,0.450439453125,3.40625,0.29931640625,3.306640625,0.1336669921875,3.125,0.25390625,3.091796875,0.27197265625,2.7548828125,0.25390625,3.091796875,0.1336669921875,3.125,0.450439453125,3.40625,0.6533203125,3.1953125,0.71826171875,3.302734375,0.8359375,2.990234375,0.71826171875,3.302734375,0.6533203125,3.1953125,0.450439453125,3.40625,0.29931640625,3.306640625,0.52099609375,3.05859375,0.6533203125,3.1953125,0.450439453125,3.40625,0.52099609375,3.05859375,0.29931640625,3.306640625,0.25390625,3.091796875,0.52099609375,3.05859375,0.8359375,2.990234375,0.6533203125,3.1953125,0.76806640625,2.974609375,0.76806640625,2.974609375,0.6533203125,3.1953125,0.52099609375,3.05859375,0.71630859375,2.744140625,0.8359375,2.990234375,0.76806640625,2.974609375,0.52099609375,3.05859375,0.25390625,3.091796875,0.3603515625,2.7890625,0.25390625,3.091796875,0.27197265625,2.7548828125,0.3603515625,2.7890625,0.61376953125,2.78125,0.76806640625,2.974609375,0.52099609375,3.05859375,0.71630859375,2.744140625,0.76806640625,2.974609375,0.61376953125,2.78125,0.343505859375,2.5009765625,0.3603515625,2.7890625,0.27197265625,2.7548828125,0.27197265625,2.7548828125,0.2861328125,2.4365234375,0.343505859375,
- 2.5009765625,0.51123046875,2.6357421875,0.52099609375,3.05859375,0.3603515625,2.7890625,0.3603515625,2.7890625,0.343505859375,2.5009765625,0.51123046875,2.6357421875,0.51123046875,2.6357421875,0.61376953125,2.78125,0.52099609375,3.05859375,0.2861328125,2.4365234375,0.3857421875,2.4033203125,0.343505859375,2.5009765625,0.343505859375,2.5009765625,0.3857421875,2.4033203125,0.51123046875,2.6357421875,0.349609375,2.19140625,0.3857421875,2.4033203125,0.2861328125,2.4365234375,0.51123046875,2.330078125,0.3857421875,2.4033203125,0.349609375,2.19140625,0.60302734375,2.5498046875,0.71630859375,2.744140625,0.61376953125,2.78125,0.60302734375,2.5498046875,0.61376953125,2.78125,0.51123046875,2.6357421875,0.71630859375,2.744140625,0.60302734375,2.5498046875,0.759765625,2.4716796875,0.3857421875,2.4033203125,0.51953125,2.44140625,0.51123046875,2.6357421875,0.51953125,2.44140625,0.60302734375,2.5498046875,0.51123046875,2.6357421875,0.3857421875,2.4033203125,0.51123046875,2.330078125,0.51953125,2.44140625,0.51953125,2.44140625,0.759765625,2.4716796875,0.60302734375,2.5498046875,0.759765625,2.4716796875,0.51953125,2.44140625,0.51123046875,2.330078125,0.29931640625,3.306640625,0.44091796875,3.484375,0.197998046875,3.466796875,0.1336669921875,3.125,0.29931640625,3.306640625,0.197998046875,3.466796875,0.44091796875,3.484375,0.29931640625,3.306640625,0.450439453125,3.40625,0.71826171875,3.302734375,0.44091796875,3.484375,0.450439453125,3.40625,0.29931640625,3.306640625,0.1336669921875,3.125,0.25390625,3.091796875,0.27197265625,2.7548828125,0.25390625,3.091796875,0.1336669921875,3.125,0.450439453125,3.40625,0.6533203125,3.1953125,0.71826171875,3.302734375,0.8359375,2.990234375,0.71826171875,3.302734375,0.6533203125,3.1953125,0.450439453125,3.40625,0.29931640625,3.306640625,0.52099609375,3.05859375,0.6533203125,3.1953125,0.450439453125,3.40625,0.52099609375,3.05859375,0.29931640625,3.306640625,0.25390625,3.091796875,0.52099609375,3.05859375,0.8359375,2.990234375,0.6533203125,3.1953125,0.76806640625,2.974609375,0.76806640625,2.974609375,
- 0.6533203125,3.1953125,0.52099609375,3.05859375,0.71630859375,2.744140625,0.8359375,2.990234375,0.76806640625,2.974609375,0.52099609375,3.05859375,0.25390625,3.091796875,0.3603515625,2.7890625,0.25390625,3.091796875,0.27197265625,2.7548828125,0.3603515625,2.7890625,0.61376953125,2.78125,0.76806640625,2.974609375,0.52099609375,3.05859375,0.71630859375,2.744140625,0.76806640625,2.974609375,0.61376953125,2.78125,0.343505859375,2.5009765625,0.3603515625,2.7890625,0.27197265625,2.7548828125,0.27197265625,2.7548828125,0.2861328125,2.4365234375,0.343505859375,2.5009765625,0.51123046875,2.6357421875,0.52099609375,3.05859375,0.3603515625,2.7890625,0.3603515625,2.7890625,0.343505859375,2.5009765625,0.51123046875,2.6357421875,0.51123046875,2.6357421875,0.61376953125,2.78125,0.52099609375,3.05859375,0.2861328125,2.4365234375,0.3857421875,2.4033203125,0.343505859375,2.5009765625,0.343505859375,2.5009765625,0.3857421875,2.4033203125,0.51123046875,2.6357421875,0.349609375,2.19140625,0.3857421875,2.4033203125,0.2861328125,2.4365234375,0.51123046875,2.330078125,0.3857421875,2.4033203125,0.349609375,2.19140625,0.60302734375,2.5498046875,0.71630859375,2.744140625,0.61376953125,2.78125,0.60302734375,2.5498046875,0.61376953125,2.78125,0.51123046875,2.6357421875,0.71630859375,2.744140625,0.60302734375,2.5498046875,0.759765625,2.4716796875,0.3857421875,2.4033203125,0.51953125,2.44140625,0.51123046875,2.6357421875,0.51953125,2.44140625,0.60302734375,2.5498046875,0.51123046875,2.6357421875,0.3857421875,2.4033203125,0.51123046875,2.330078125,0.51953125,2.44140625,0.51953125,2.44140625,0.759765625,2.4716796875,0.60302734375,2.5498046875,0.759765625,2.4716796875,0.51953125,2.44140625,0.51123046875,2.330078125,0.308349609375,0.41259765625,0.1204833984375,0.4755859375,0.09381103515625,0.29736328125,0.159912109375,0.19921875,0.308349609375,0.41259765625,0.09381103515625,0.29736328125,0.159912109375,0.19921875,0.10272216796875,0.158203125,0.1572265625,0.169921875,0.09381103515625,0.29736328125,0.08441162109375,0.224609375,0.159912109375,0.19921875,
- 0.10272216796875,0.158203125,0.159912109375,0.19921875,0.08441162109375,0.224609375,0.10272216796875,0.158203125,0.08441162109375,0.224609375,0.060699462890625,0.1474609375,0.09381103515625,0.29736328125,0.053436279296875,0.36767578125,0.08441162109375,0.224609375,0.060699462890625,0.1474609375,0.08441162109375,0.224609375,0.0181427001953125,0.2177734375,0.08441162109375,0.224609375,0.053436279296875,0.36767578125,0.0181427001953125,0.2177734375,0.0181427001953125,0.2177734375,0.053436279296875,0.36767578125,0.015899658203125,0.36962890625,0.308349609375,0.41259765625,0.1204833984375,0.4755859375,0.09381103515625,0.29736328125,0.159912109375,0.19921875,0.308349609375,0.41259765625,0.09381103515625,0.29736328125,0.159912109375,0.19921875,0.10272216796875,0.158203125,0.1572265625,0.169921875,0.09381103515625,0.29736328125,0.08441162109375,0.224609375,0.159912109375,0.19921875,0.10272216796875,0.158203125,0.159912109375,0.19921875,0.08441162109375,0.224609375,0.10272216796875,0.158203125,0.08441162109375,0.224609375,0.060699462890625,0.1474609375,0.09381103515625,0.29736328125,0.053436279296875,0.36767578125,0.08441162109375,0.224609375,0.060699462890625,0.1474609375,0.08441162109375,0.224609375,0.0181427001953125,0.2177734375,0.08441162109375,0.224609375,0.053436279296875,0.36767578125,0.0181427001953125,0.2177734375,0.0181427001953125,0.2177734375,0.053436279296875,0.36767578125,0.015899658203125,0.36962890625,0.308349609375,0.41259765625,0.1204833984375,0.4755859375,0.09381103515625,0.29736328125,0.159912109375,0.19921875,0.308349609375,0.41259765625,0.09381103515625,0.29736328125,0.159912109375,0.19921875,0.10272216796875,0.158203125,0.1572265625,0.169921875,0.09381103515625,0.29736328125,0.08441162109375,0.224609375,0.159912109375,0.19921875,0.10272216796875,0.158203125,0.159912109375,0.19921875,0.08441162109375,0.224609375,0.10272216796875,0.158203125,0.08441162109375,0.224609375,0.060699462890625,0.1474609375,0.09381103515625,0.29736328125,0.053436279296875,0.36767578125,0.08441162109375,0.224609375,0.060699462890625,
- 0.1474609375,0.08441162109375,0.224609375,0.0181427001953125,0.2177734375,0.08441162109375,0.224609375,0.053436279296875,0.36767578125,0.0181427001953125,0.2177734375,0.0181427001953125,0.2177734375,0.053436279296875,0.36767578125,0.015899658203125,0.36962890625,0.210693359375,0.888916015625,0.210693359375,0.888916015625,0.210693359375,0.888916015625,0.06622314453125,0.986373901367188,0.0099639892578125,0.8890380859375,0.06622314453125,0.986373901367188,0.0099639892578125,0.8890380859375,0.210693359375,0.888916015625,0.06622314453125,0.986373901367188,0.0099639892578125,0.8890380859375,0.1357421875,0.624755859375,0.210693359375,0.888916015625,0.0099639892578125,0.8890380859375,0.22119140625,0.658203125,0.210693359375,0.888916015625,0.1357421875,0.624755859375,0.1357421875,0.624755859375,0.0099639892578125,0.8890380859375,0.07513427734375,0.50732421875,0.22119140625,0.658203125,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,0.1429443359375,0.4970703125,0.1357421875,0.624755859375,0.07513427734375,0.50732421875,0.13330078125,0.69091796875,0.2130126953125,0.7431640625,0.210693359375,0.888916015625,0.13330078125,0.69091796875,0.210693359375,0.888916015625,0.0787353515625,0.787109375,0.036407470703125,0.731689453125,0.13330078125,0.69091796875,0.0787353515625,0.787109375,0.210693359375,0.888916015625,0.06622314453125,0.986373901367188,0.0787353515625,0.787109375,0.036407470703125,0.731689453125,0.0787353515625,0.787109375,0.0099639892578125,0.8890380859375,0.0787353515625,0.787109375,0.06622314453125,0.986373901367188,0.0099639892578125,0.8890380859375,0.210693359375,0.888916015625,0.06622314453125,0.986373901367188,0.0099639892578125,0.8890380859375,0.1357421875,0.624755859375,0.210693359375,0.888916015625,0.0099639892578125,0.8890380859375,0.22119140625,0.658203125,0.210693359375,0.888916015625,0.1357421875,0.624755859375,0.1357421875,0.624755859375,0.0099639892578125,0.8890380859375,0.07513427734375,0.50732421875,0.22119140625,0.658203125,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,0.1429443359375,
- 0.4970703125,0.1357421875,0.624755859375,0.07513427734375,0.50732421875,0.13330078125,0.69091796875,0.2130126953125,0.7431640625,0.210693359375,0.888916015625,0.13330078125,0.69091796875,0.210693359375,0.888916015625,0.0787353515625,0.787109375,0.036407470703125,0.731689453125,0.13330078125,0.69091796875,0.0787353515625,0.787109375,0.210693359375,0.888916015625,0.06622314453125,0.986373901367188,0.0787353515625,0.787109375,0.036407470703125,0.731689453125,0.0787353515625,0.787109375,0.0099639892578125,0.8890380859375,0.0787353515625,0.787109375,0.06622314453125,0.986373901367188,0.0099639892578125,0.8890380859375,0.210693359375,0.888916015625,0.06622314453125,0.986373901367188,0.0099639892578125,0.8890380859375,0.1357421875,0.624755859375,0.210693359375,0.888916015625,0.0099639892578125,0.8890380859375,0.22119140625,0.658203125,0.210693359375,0.888916015625,0.1357421875,0.624755859375,0.1357421875,0.624755859375,0.0099639892578125,0.8890380859375,0.07513427734375,0.50732421875,0.22119140625,0.658203125,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,0.1429443359375,0.4970703125,0.1357421875,0.624755859375,0.07513427734375,0.50732421875,0.13330078125,0.69091796875,0.2130126953125,0.7431640625,0.210693359375,0.888916015625,0.13330078125,0.69091796875,0.210693359375,0.888916015625,0.0787353515625,0.787109375,0.036407470703125,0.731689453125,0.13330078125,0.69091796875,0.0787353515625,0.787109375,0.210693359375,0.888916015625,0.06622314453125,0.986373901367188,0.0787353515625,0.787109375,0.036407470703125,0.731689453125,0.0787353515625,0.787109375,0.0099639892578125,0.8890380859375,0.0787353515625,0.787109375,0.06622314453125,0.986373901367188,0.0099639892578125,0.8890380859375,0.210693359375,0.888916015625,0.06622314453125,0.986373901367188,0.0099639892578125,0.8890380859375,0.1357421875,0.624755859375,0.210693359375,0.888916015625,0.0099639892578125,0.8890380859375,0.22119140625,0.658203125,0.210693359375,0.888916015625,0.1357421875,0.624755859375,0.1357421875,0.624755859375,0.0099639892578125,0.8890380859375,
- 0.07513427734375,0.50732421875,0.22119140625,0.658203125,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,0.1429443359375,0.4970703125,0.1357421875,0.624755859375,0.07513427734375,0.50732421875,0.13330078125,0.69091796875,0.2130126953125,0.7431640625,0.210693359375,0.888916015625,0.13330078125,0.69091796875,0.210693359375,0.888916015625,0.0787353515625,0.787109375,0.036407470703125,0.731689453125,0.13330078125,0.69091796875,0.0787353515625,0.787109375,0.210693359375,0.888916015625,0.06622314453125,0.986373901367188,0.0787353515625,0.787109375,0.036407470703125,0.731689453125,0.0787353515625,0.787109375,0.0099639892578125,0.8890380859375,0.0787353515625,0.787109375,0.06622314453125,0.986373901367188,0.0099639892578125,0.8890380859375,0.349853515625,0.2568359375,0.3505859375,0.431640625,0.325927734375,0.41162109375,0.391845703125,0.27587890625,0.3505859375,0.431640625,0.349853515625,0.2568359375,0.3505859375,0.431640625,0.391845703125,0.27587890625,0.381103515625,0.43896484375,0.391845703125,0.27587890625,0.445068359375,0.28173828125,0.381103515625,0.43896484375,0.391845703125,0.27587890625,0.435302734375,0.0947265625,0.445068359375,0.28173828125,0.349853515625,0.2568359375,0.3681640625,0.13232421875,0.391845703125,0.27587890625,0.435302734375,0.0947265625,0.391845703125,0.27587890625,0.3681640625,0.13232421875,0.3681640625,0.13232421875,0.349853515625,0.2568359375,0.304443359375,0.16796875,0.376953125,0.0009765625,0.435302734375,0.0947265625,0.3681640625,0.13232421875,0.29931640625,0.02734375,0.3681640625,0.13232421875,0.304443359375,0.16796875,0.3681640625,0.13232421875,0.29931640625,0.02734375,0.376953125,0.0009765625,0.349853515625,0.2568359375,0.3505859375,0.431640625,0.325927734375,0.41162109375,0.391845703125,0.27587890625,0.3505859375,0.431640625,0.349853515625,0.2568359375,0.3505859375,0.431640625,0.391845703125,0.27587890625,0.381103515625,0.43896484375,0.391845703125,0.27587890625,0.445068359375,0.28173828125,0.381103515625,0.43896484375,0.391845703125,0.27587890625,0.435302734375,0.0947265625,0.445068359375,
- 0.28173828125,0.349853515625,0.2568359375,0.3681640625,0.13232421875,0.391845703125,0.27587890625,0.435302734375,0.0947265625,0.391845703125,0.27587890625,0.3681640625,0.13232421875,0.3681640625,0.13232421875,0.349853515625,0.2568359375,0.304443359375,0.16796875,0.376953125,0.0009765625,0.435302734375,0.0947265625,0.3681640625,0.13232421875,0.29931640625,0.02734375,0.3681640625,0.13232421875,0.304443359375,0.16796875,0.3681640625,0.13232421875,0.29931640625,0.02734375,0.376953125,0.0009765625,0.349853515625,0.2568359375,0.3505859375,0.431640625,0.325927734375,0.41162109375,0.391845703125,0.27587890625,0.3505859375,0.431640625,0.349853515625,0.2568359375,0.3505859375,0.431640625,0.391845703125,0.27587890625,0.381103515625,0.43896484375,0.391845703125,0.27587890625,0.445068359375,0.28173828125,0.381103515625,0.43896484375,0.391845703125,0.27587890625,0.435302734375,0.0947265625,0.445068359375,0.28173828125,0.349853515625,0.2568359375,0.3681640625,0.13232421875,0.391845703125,0.27587890625,0.435302734375,0.0947265625,0.391845703125,0.27587890625,0.3681640625,0.13232421875,0.3681640625,0.13232421875,0.349853515625,0.2568359375,0.304443359375,0.16796875,0.376953125,0.0009765625,0.435302734375,0.0947265625,0.3681640625,0.13232421875,0.29931640625,0.02734375,0.3681640625,0.13232421875,0.304443359375,0.16796875,0.3681640625,0.13232421875,0.29931640625,0.02734375,0.376953125,0.0009765625,0.349853515625,0.2568359375,0.3505859375,0.431640625,0.325927734375,0.41162109375,0.391845703125,0.27587890625,0.3505859375,0.431640625,0.349853515625,0.2568359375,0.3505859375,0.431640625,0.391845703125,0.27587890625,0.381103515625,0.43896484375,0.391845703125,0.27587890625,0.445068359375,0.28173828125,0.381103515625,0.43896484375,0.391845703125,0.27587890625,0.435302734375,0.0947265625,0.445068359375,0.28173828125,0.349853515625,0.2568359375,0.3681640625,0.13232421875,0.391845703125,0.27587890625,0.435302734375,0.0947265625,0.391845703125,0.27587890625,0.3681640625,0.13232421875,0.3681640625,0.13232421875,0.349853515625,0.2568359375,0.304443359375,
- 0.16796875,0.376953125,0.0009765625,0.435302734375,0.0947265625,0.3681640625,0.13232421875,0.29931640625,0.02734375,0.3681640625,0.13232421875,0.304443359375,0.16796875,0.3681640625,0.13232421875,0.29931640625,0.02734375,0.376953125,0.0009765625,0.428466796875,0.71337890625,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.428466796875,0.71337890625,0.459228515625,0.602294921875,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.525390625,0.65869140625,0.62109375,0.614990234375,0.525390625,0.65869140625,0.459228515625,0.602294921875,0.55224609375,0.5693359375,0.525390625,0.65869140625,0.55224609375,0.5693359375,0.62109375,0.614990234375,0.22119140625,0.658203125,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,0.22119140625,0.658203125,0.210693359375,0.888916015625,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,0.1357421875,0.624755859375,0.07513427734375,0.50732421875,0.1357421875,0.624755859375,0.210693359375,0.888916015625,0.1357421875,0.624755859375,0.07513427734375,0.50732421875,0.210693359375,0.888916015625,0.06622314453125,0.986373901367188,0.0099639892578125,0.8890380859375,0.07513427734375,0.50732421875,0.06622314453125,0.986373901367188,0.0099639892578125,0.8890380859375,0.22119140625,0.658203125,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,0.22119140625,0.658203125,0.210693359375,0.888916015625,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,0.1357421875,0.624755859375,0.07513427734375,0.50732421875,0.1357421875,0.624755859375,0.210693359375,0.888916015625,0.07000732421875,0.7755126953125,0.07000732421875,0.7755126953125,0.07513427734375,0.50732421875,0.1357421875,0.624755859375,0.210693359375,0.888916015625,0.06622314453125,0.986373901367188,0.07000732421875,0.7755126953125,0.0099639892578125,0.8890380859375,0.07513427734375,0.50732421875,0.07000732421875,0.7755126953125,0.07000732421875,0.7755126953125,0.06622314453125,0.986373901367188,0.0099639892578125,0.8890380859375,0.12298583984375,0.3310546875,0.30712890625,0.41259765625,0.158203125,0.46484375,0.1585693359375,
- 0.19921875,0.30712890625,0.41259765625,0.12298583984375,0.3310546875,0.0130844116210938,0.4755859375,0.12298583984375,0.3310546875,0.158203125,0.46484375,0.12298583984375,0.3310546875,0.08319091796875,0.224609375,0.1585693359375,0.19921875,0.0130844116210938,0.4755859375,0.08319091796875,0.224609375,0.12298583984375,0.3310546875,0.1416015625,0.01220703125,0.1585693359375,0.19921875,0.08319091796875,0.224609375,0.0168914794921875,0.2177734375,0.08319091796875,0.224609375,0.0130844116210938,0.4755859375,0.1416015625,0.01220703125,0.08319091796875,0.224609375,0.0168914794921875,0.2177734375,0.22119140625,0.658203125,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,0.22119140625,0.658203125,0.210693359375,0.888916015625,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,0.1357421875,0.624755859375,0.07513427734375,0.50732421875,0.1357421875,0.624755859375,0.210693359375,0.888916015625,0.07000732421875,0.7755126953125,0.1357421875,0.624755859375,0.07000732421875,0.7755126953125,0.07513427734375,0.50732421875,0.210693359375,0.888916015625,0.06622314453125,0.986373901367188,0.07000732421875,0.7755126953125,0.0099639892578125,0.8890380859375,0.07513427734375,0.50732421875,0.07000732421875,0.7755126953125,0.07000732421875,0.7755126953125,0.06622314453125,0.986373901367188,0.0099639892578125,0.8890380859375,0.12298583984375,0.3310546875,0.30712890625,0.41259765625,0.158203125,0.46484375,0.30712890625,0.41259765625,0.12298583984375,0.3310546875,0.0130844116210938,0.4755859375,0.12298583984375,0.3310546875,0.158203125,0.46484375,0.12298583984375,0.3310546875,0.08319091796875,0.224609375,0.0130844116210938,0.4755859375,0.08319091796875,0.224609375,0.12298583984375,0.3310546875,0.08319091796875,0.224609375,0.0168914794921875,0.2177734375,0.08319091796875,0.224609375,0.0130844116210938,0.4755859375,0.08319091796875,0.224609375,0.0168914794921875,0.2177734375,0.428466796875,0.71337890625,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.428466796875,0.71337890625,0.459228515625,0.602294921875,0.525390625,0.65869140625,
- 0.5986328125,0.71337890625,0.525390625,0.65869140625,0.62109375,0.614990234375,0.525390625,0.65869140625,0.459228515625,0.602294921875,0.55224609375,0.5693359375,0.525390625,0.65869140625,0.55224609375,0.5693359375,0.62109375,0.614990234375,0.45263671875,0.995662689208984,0.495849609375,0.8795166015625,0.623046875,0.95709228515625,0.45263671875,0.995662689208984,0.36669921875,0.8900146484375,0.495849609375,0.8795166015625,0.623046875,0.95709228515625,0.495849609375,0.8795166015625,0.63037109375,0.8282470703125,0.495849609375,0.8795166015625,0.36669921875,0.8900146484375,0.448486328125,0.73486328125,0.63037109375,0.8282470703125,0.495849609375,0.8795166015625,0.448486328125,0.73486328125,0.428466796875,0.71337890625,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.428466796875,0.71337890625,0.459228515625,0.602294921875,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.525390625,0.65869140625,0.62109375,0.614990234375,0.525390625,0.65869140625,0.459228515625,0.602294921875,0.55224609375,0.5693359375,0.525390625,0.65869140625,0.55224609375,0.5693359375,0.62109375,0.614990234375,0.428466796875,0.71337890625,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.428466796875,0.71337890625,0.459228515625,0.602294921875,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.525390625,0.65869140625,0.62109375,0.614990234375,0.525390625,0.65869140625,0.459228515625,0.602294921875,0.55224609375,0.5693359375,0.525390625,0.65869140625,0.55224609375,0.5693359375,0.62109375,0.614990234375,0.428466796875,0.71337890625,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.428466796875,0.71337890625,0.459228515625,0.602294921875,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.525390625,0.65869140625,0.62109375,0.614990234375,0.525390625,0.65869140625,0.459228515625,0.602294921875,0.55224609375,0.5693359375,0.525390625,0.65869140625,0.55224609375,0.5693359375,0.62109375,0.614990234375,0.428466796875,0.71337890625,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.428466796875,0.71337890625,0.459228515625,0.602294921875,
- 0.525390625,0.65869140625,0.5986328125,0.71337890625,0.525390625,0.65869140625,0.62109375,0.614990234375,0.525390625,0.65869140625,0.459228515625,0.602294921875,0.55224609375,0.5693359375,0.525390625,0.65869140625,0.55224609375,0.5693359375,0.62109375,0.614990234375,0.45263671875,0.995662689208984,0.495849609375,0.8795166015625,0.623046875,0.95709228515625,0.45263671875,0.995662689208984,0.36669921875,0.8900146484375,0.495849609375,0.8795166015625,0.623046875,0.95709228515625,0.495849609375,0.8795166015625,0.63037109375,0.8282470703125,0.495849609375,0.8795166015625,0.36669921875,0.8900146484375,0.448486328125,0.73486328125,0.63037109375,0.8282470703125,0.495849609375,0.8795166015625,0.448486328125,0.73486328125,0.428466796875,0.71337890625,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.428466796875,0.71337890625,0.459228515625,0.602294921875,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.525390625,0.65869140625,0.62109375,0.614990234375,0.525390625,0.65869140625,0.459228515625,0.602294921875,0.55224609375,0.5693359375,0.525390625,0.65869140625,0.55224609375,0.5693359375,0.62109375,0.614990234375,0.45263671875,0.995662689208984,0.495849609375,0.8795166015625,0.623046875,0.95709228515625,0.45263671875,0.995662689208984,0.36669921875,0.8900146484375,0.495849609375,0.8795166015625,0.623046875,0.95709228515625,0.495849609375,0.8795166015625,0.63037109375,0.8282470703125,0.495849609375,0.8795166015625,0.36669921875,0.8900146484375,0.448486328125,0.73486328125,0.63037109375,0.8282470703125,0.495849609375,0.8795166015625,0.448486328125,0.73486328125,0.4296875,0.71337890625,0.5263671875,0.65869140625,0.60009765625,0.71337890625,0.4296875,0.71337890625,0.46044921875,0.602294921875,0.5263671875,0.65869140625,0.60009765625,0.71337890625,0.5263671875,0.65869140625,0.62255859375,0.614990234375,0.5263671875,0.65869140625,0.46044921875,0.602294921875,0.55322265625,0.5693359375,0.5263671875,0.65869140625,0.55322265625,0.5693359375,0.62255859375,0.614990234375,0.4296875,0.71337890625,0.5263671875,0.65869140625,0.60009765625,
- 0.71337890625,0.4296875,0.71337890625,0.46044921875,0.602294921875,0.5263671875,0.65869140625,0.60009765625,0.71337890625,0.5263671875,0.65869140625,0.62255859375,0.614990234375,0.5263671875,0.65869140625,0.46044921875,0.602294921875,0.55322265625,0.5693359375,0.5263671875,0.65869140625,0.55322265625,0.5693359375,0.62255859375,0.614990234375,0.453857421875,0.995662689208984,0.4970703125,0.8795166015625,0.62451171875,0.95709228515625,0.453857421875,0.995662689208984,0.3681640625,0.8900146484375,0.4970703125,0.8795166015625,0.62451171875,0.95709228515625,0.4970703125,0.8795166015625,0.6318359375,0.8282470703125,0.4970703125,0.8795166015625,0.3681640625,0.8900146484375,0.44970703125,0.73486328125,0.6318359375,0.8282470703125,0.4970703125,0.8795166015625,0.44970703125,0.73486328125,0.45263671875,0.995662689208984,0.495849609375,0.8795166015625,0.623046875,0.95709228515625,0.45263671875,0.995662689208984,0.36669921875,0.8900146484375,0.495849609375,0.8795166015625,0.623046875,0.95709228515625,0.495849609375,0.8795166015625,0.63037109375,0.8282470703125,0.495849609375,0.8795166015625,0.36669921875,0.8900146484375,0.448486328125,0.73486328125,0.63037109375,0.8282470703125,0.495849609375,0.8795166015625,0.448486328125,0.73486328125,0.428466796875,0.71337890625,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.428466796875,0.71337890625,0.459228515625,0.602294921875,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.525390625,0.65869140625,0.62109375,0.614990234375,0.525390625,0.65869140625,0.459228515625,0.602294921875,0.55224609375,0.5693359375,0.525390625,0.65869140625,0.55224609375,0.5693359375,0.62109375,0.614990234375,0.428466796875,0.71337890625,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.428466796875,0.71337890625,0.459228515625,0.602294921875,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.525390625,0.65869140625,0.62109375,0.614990234375,0.525390625,0.65869140625,0.459228515625,0.602294921875,0.55224609375,0.5693359375,0.525390625,0.65869140625,0.55224609375,0.5693359375,0.62109375,0.614990234375,
- 0.12298583984375,0.3310546875,0.30712890625,0.41259765625,0.158203125,0.46484375,0.1585693359375,0.19921875,0.30712890625,0.41259765625,0.12298583984375,0.3310546875,0.0130844116210938,0.4755859375,0.12298583984375,0.3310546875,0.158203125,0.46484375,0.12298583984375,0.3310546875,0.08319091796875,0.224609375,0.1585693359375,0.19921875,0.0130844116210938,0.4755859375,0.08319091796875,0.224609375,0.12298583984375,0.3310546875,0.1416015625,0.01220703125,0.1585693359375,0.19921875,0.08319091796875,0.224609375,0.0168914794921875,0.2177734375,0.08319091796875,0.224609375,0.0130844116210938,0.4755859375,0.1416015625,0.01220703125,0.08319091796875,0.224609375,0.0168914794921875,0.2177734375,0.22119140625,0.658203125,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,0.22119140625,0.658203125,0.210693359375,0.888916015625,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,0.1357421875,0.624755859375,0.07513427734375,0.50732421875,0.1357421875,0.624755859375,0.210693359375,0.888916015625,0.07000732421875,0.7755126953125,0.1357421875,0.624755859375,0.07000732421875,0.7755126953125,0.07513427734375,0.50732421875,0.210693359375,0.888916015625,0.06622314453125,0.986373901367188,0.07000732421875,0.7755126953125,0.0099639892578125,0.8890380859375,0.07513427734375,0.50732421875,0.07000732421875,0.7755126953125,0.07000732421875,0.7755126953125,0.06622314453125,0.986373901367188,0.0099639892578125,0.8890380859375,0.22119140625,0.658203125,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,0.22119140625,0.658203125,0.210693359375,0.888916015625,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,0.1357421875,0.624755859375,0.07513427734375,0.50732421875,0.1357421875,0.624755859375,0.210693359375,0.888916015625,0.07000732421875,0.7755126953125,0.07000732421875,0.7755126953125,0.07513427734375,0.50732421875,0.1357421875,0.624755859375,0.210693359375,0.888916015625,0.06622314453125,0.986373901367188,0.07000732421875,0.7755126953125,0.0099639892578125,0.8890380859375,0.07513427734375,0.50732421875,0.07000732421875,
- 0.7755126953125,0.07000732421875,0.7755126953125,0.06622314453125,0.986373901367188,0.0099639892578125,0.8890380859375,0.12298583984375,0.3310546875,0.30712890625,0.41259765625,0.158203125,0.46484375,0.1585693359375,0.19921875,0.30712890625,0.41259765625,0.12298583984375,0.3310546875,0.0130844116210938,0.4755859375,0.12298583984375,0.3310546875,0.158203125,0.46484375,0.12298583984375,0.3310546875,0.08319091796875,0.224609375,0.1585693359375,0.19921875,0.0130844116210938,0.4755859375,0.08319091796875,0.224609375,0.12298583984375,0.3310546875,0.1416015625,0.01220703125,0.1585693359375,0.19921875,0.08319091796875,0.224609375,0.0168914794921875,0.2177734375,0.08319091796875,0.224609375,0.0130844116210938,0.4755859375,0.1416015625,0.01220703125,0.08319091796875,0.224609375,0.0168914794921875,0.2177734375,0.22119140625,0.658203125,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,0.22119140625,0.658203125,0.210693359375,0.888916015625,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,0.1357421875,0.624755859375,0.07513427734375,0.50732421875,0.1357421875,0.624755859375,0.210693359375,0.888916015625,0.07000732421875,0.7755126953125,0.1357421875,0.624755859375,0.07000732421875,0.7755126953125,0.07513427734375,0.50732421875,0.210693359375,0.888916015625,0.06622314453125,0.986373901367188,0.07000732421875,0.7755126953125,0.0099639892578125,0.8890380859375,0.07513427734375,0.50732421875,0.07000732421875,0.7755126953125,0.07000732421875,0.7755126953125,0.06622314453125,0.986373901367188,0.0099639892578125,0.8890380859375,0.12298583984375,0.3310546875,0.30712890625,0.41259765625,0.158203125,0.46484375,0.155029296875,0.17236328125,0.30712890625,0.41259765625,0.12298583984375,0.3310546875,0.0130844116210938,0.4755859375,0.12298583984375,0.3310546875,0.158203125,0.46484375,0.12298583984375,0.3310546875,0.08319091796875,0.224609375,0.155029296875,0.17236328125,0.0130844116210938,0.4755859375,0.08319091796875,0.224609375,0.12298583984375,0.3310546875,0.067626953125,0.1376953125,0.155029296875,0.17236328125,0.08319091796875,
- 0.224609375,0.0168914794921875,0.2177734375,0.08319091796875,0.224609375,0.0130844116210938,0.4755859375,0.067626953125,0.1376953125,0.08319091796875,0.224609375,0.0168914794921875,0.2177734375,0.428466796875,0.71337890625,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.428466796875,0.71337890625,0.459228515625,0.602294921875,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.525390625,0.65869140625,0.62109375,0.614990234375,0.525390625,0.65869140625,0.459228515625,0.602294921875,0.55224609375,0.5693359375,0.525390625,0.65869140625,0.55224609375,0.5693359375,0.62109375,0.614990234375,0.45263671875,0.995662689208984,0.495849609375,0.8795166015625,0.623046875,0.95709228515625,0.45263671875,0.995662689208984,0.36669921875,0.8900146484375,0.495849609375,0.8795166015625,0.623046875,0.95709228515625,0.495849609375,0.8795166015625,0.63037109375,0.8282470703125,0.495849609375,0.8795166015625,0.36669921875,0.8900146484375,0.448486328125,0.73486328125,0.63037109375,0.8282470703125,0.495849609375,0.8795166015625,0.448486328125,0.73486328125,0.428466796875,0.71337890625,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.428466796875,0.71337890625,0.459228515625,0.602294921875,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.525390625,0.65869140625,0.62109375,0.614990234375,0.525390625,0.65869140625,0.459228515625,0.602294921875,0.55224609375,0.5693359375,0.525390625,0.65869140625,0.55224609375,0.5693359375,0.62109375,0.614990234375,0.428466796875,0.71337890625,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.428466796875,0.71337890625,0.459228515625,0.602294921875,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.525390625,0.65869140625,0.62109375,0.614990234375,0.525390625,0.65869140625,0.459228515625,0.602294921875,0.55224609375,0.5693359375,0.525390625,0.65869140625,0.55224609375,0.5693359375,0.62109375,0.614990234375,0.428466796875,0.71337890625,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.428466796875,0.71337890625,0.459228515625,0.602294921875,0.525390625,0.65869140625,0.5986328125,
- 0.71337890625,0.525390625,0.65869140625,0.62109375,0.614990234375,0.525390625,0.65869140625,0.459228515625,0.602294921875,0.55224609375,0.5693359375,0.525390625,0.65869140625,0.55224609375,0.5693359375,0.62109375,0.614990234375,0.428466796875,0.71337890625,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.428466796875,0.71337890625,0.459228515625,0.602294921875,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.525390625,0.65869140625,0.62109375,0.614990234375,0.525390625,0.65869140625,0.459228515625,0.602294921875,0.55224609375,0.5693359375,0.525390625,0.65869140625,0.55224609375,0.5693359375,0.62109375,0.614990234375,0.45263671875,0.995662689208984,0.495849609375,0.8795166015625,0.623046875,0.95709228515625,0.45263671875,0.995662689208984,0.36669921875,0.8900146484375,0.495849609375,0.8795166015625,0.623046875,0.95709228515625,0.495849609375,0.8795166015625,0.63037109375,0.8282470703125,0.495849609375,0.8795166015625,0.36669921875,0.8900146484375,0.448486328125,0.73486328125,0.63037109375,0.8282470703125,0.495849609375,0.8795166015625,0.448486328125,0.73486328125,0.428466796875,0.71337890625,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.428466796875,0.71337890625,0.459228515625,0.602294921875,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.525390625,0.65869140625,0.62109375,0.614990234375,0.525390625,0.65869140625,0.459228515625,0.602294921875,0.55224609375,0.5693359375,0.525390625,0.65869140625,0.55224609375,0.5693359375,0.62109375,0.614990234375,0.45263671875,0.995662689208984,0.495849609375,0.8795166015625,0.623046875,0.95709228515625,0.45263671875,0.995662689208984,0.36669921875,0.8900146484375,0.495849609375,0.8795166015625,0.623046875,0.95709228515625,0.495849609375,0.8795166015625,0.63037109375,0.8282470703125,0.495849609375,0.8795166015625,0.36669921875,0.8900146484375,0.448486328125,0.73486328125,0.63037109375,0.8282470703125,0.495849609375,0.8795166015625,0.448486328125,0.73486328125,0.45263671875,0.995662689208984,0.495849609375,0.8795166015625,0.623046875,0.95709228515625,0.45263671875,
- 0.995662689208984,0.36669921875,0.8900146484375,0.495849609375,0.8795166015625,0.623046875,0.95709228515625,0.495849609375,0.8795166015625,0.63037109375,0.8282470703125,0.495849609375,0.8795166015625,0.36669921875,0.8900146484375,0.448486328125,0.73486328125,0.63037109375,0.8282470703125,0.495849609375,0.8795166015625,0.448486328125,0.73486328125,0.428466796875,0.71337890625,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.428466796875,0.71337890625,0.459228515625,0.602294921875,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.525390625,0.65869140625,0.62109375,0.614990234375,0.525390625,0.65869140625,0.459228515625,0.602294921875,0.55224609375,0.5693359375,0.525390625,0.65869140625,0.55224609375,0.5693359375,0.62109375,0.614990234375,0.428466796875,0.71337890625,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.428466796875,0.71337890625,0.459228515625,0.602294921875,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.525390625,0.65869140625,0.62109375,0.614990234375,0.525390625,0.65869140625,0.459228515625,0.602294921875,0.55224609375,0.5693359375,0.525390625,0.65869140625,0.55224609375,0.5693359375,0.62109375,0.614990234375,0.12298583984375,0.3310546875,0.30712890625,0.41259765625,0.158203125,0.46484375,0.1585693359375,0.19921875,0.30712890625,0.41259765625,0.12298583984375,0.3310546875,0.0130844116210938,0.4755859375,0.12298583984375,0.3310546875,0.158203125,0.46484375,0.12298583984375,0.3310546875,0.08319091796875,0.224609375,0.1585693359375,0.19921875,0.0130844116210938,0.4755859375,0.08319091796875,0.224609375,0.12298583984375,0.3310546875,0.1416015625,0.01220703125,0.1585693359375,0.19921875,0.08319091796875,0.224609375,0.0168914794921875,0.2177734375,0.08319091796875,0.224609375,0.0130844116210938,0.4755859375,0.1416015625,0.01220703125,0.08319091796875,0.224609375,0.0168914794921875,0.2177734375,0.22119140625,0.658203125,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,0.22119140625,0.658203125,0.210693359375,0.888916015625,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,
- 0.1357421875,0.624755859375,0.07513427734375,0.50732421875,0.1357421875,0.624755859375,0.210693359375,0.888916015625,0.07000732421875,0.7755126953125,0.1357421875,0.624755859375,0.07000732421875,0.7755126953125,0.07513427734375,0.50732421875,0.210693359375,0.888916015625,0.06622314453125,0.986373901367188,0.07000732421875,0.7755126953125,0.0099639892578125,0.8890380859375,0.07513427734375,0.50732421875,0.07000732421875,0.7755126953125,0.07000732421875,0.7755126953125,0.06622314453125,0.986373901367188,0.0099639892578125,0.8890380859375,0.22119140625,0.658203125,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,0.22119140625,0.658203125,0.210693359375,0.888916015625,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,0.1357421875,0.624755859375,0.07513427734375,0.50732421875,0.1357421875,0.624755859375,0.210693359375,0.888916015625,0.07000732421875,0.7755126953125,0.07000732421875,0.7755126953125,0.07513427734375,0.50732421875,0.1357421875,0.624755859375,0.210693359375,0.888916015625,0.06622314453125,0.986373901367188,0.07000732421875,0.7755126953125,0.0099639892578125,0.8890380859375,0.07513427734375,0.50732421875,0.07000732421875,0.7755126953125,0.07000732421875,0.7755126953125,0.06622314453125,0.986373901367188,0.0099639892578125,0.8890380859375,0.12298583984375,0.3310546875,0.30712890625,0.41259765625,0.158203125,0.46484375,0.1585693359375,0.19921875,0.30712890625,0.41259765625,0.12298583984375,0.3310546875,0.0130844116210938,0.4755859375,0.12298583984375,0.3310546875,0.158203125,0.46484375,0.12298583984375,0.3310546875,0.08319091796875,0.224609375,0.1585693359375,0.19921875,0.0130844116210938,0.4755859375,0.08319091796875,0.224609375,0.12298583984375,0.3310546875,0.1416015625,0.01220703125,0.1585693359375,0.19921875,0.08319091796875,0.224609375,0.0168914794921875,0.2177734375,0.08319091796875,0.224609375,0.0130844116210938,0.4755859375,0.1416015625,0.01220703125,0.08319091796875,0.224609375,0.0168914794921875,0.2177734375,0.22119140625,0.658203125,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,
- 0.22119140625,0.658203125,0.210693359375,0.888916015625,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,0.1357421875,0.624755859375,0.07513427734375,0.50732421875,0.1357421875,0.624755859375,0.210693359375,0.888916015625,0.07000732421875,0.7755126953125,0.1357421875,0.624755859375,0.07000732421875,0.7755126953125,0.07513427734375,0.50732421875,0.210693359375,0.888916015625,0.06622314453125,0.986373901367188,0.07000732421875,0.7755126953125,0.0099639892578125,0.8890380859375,0.07513427734375,0.50732421875,0.07000732421875,0.7755126953125,0.07000732421875,0.7755126953125,0.06622314453125,0.986373901367188,0.0099639892578125,0.8890380859375,0.12298583984375,0.3310546875,0.30712890625,0.41259765625,0.158203125,0.46484375,0.155029296875,0.17236328125,0.30712890625,0.41259765625,0.12298583984375,0.3310546875,0.0130844116210938,0.4755859375,0.12298583984375,0.3310546875,0.158203125,0.46484375,0.12298583984375,0.3310546875,0.08319091796875,0.224609375,0.155029296875,0.17236328125,0.0130844116210938,0.4755859375,0.08319091796875,0.224609375,0.12298583984375,0.3310546875,0.067626953125,0.1376953125,0.155029296875,0.17236328125,0.08319091796875,0.224609375,0.0168914794921875,0.2177734375,0.08319091796875,0.224609375,0.0130844116210938,0.4755859375,0.067626953125,0.1376953125,0.08319091796875,0.224609375,0.0168914794921875,0.2177734375,0.428466796875,0.71337890625,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.428466796875,0.71337890625,0.459228515625,0.602294921875,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.525390625,0.65869140625,0.62109375,0.614990234375,0.525390625,0.65869140625,0.459228515625,0.602294921875,0.55224609375,0.5693359375,0.525390625,0.65869140625,0.55224609375,0.5693359375,0.62109375,0.614990234375,0.45263671875,0.995662689208984,0.495849609375,0.8795166015625,0.623046875,0.95709228515625,0.45263671875,0.995662689208984,0.36669921875,0.8900146484375,0.495849609375,0.8795166015625,0.623046875,0.95709228515625,0.495849609375,0.8795166015625,0.63037109375,0.8282470703125,0.495849609375,
- 0.8795166015625,0.36669921875,0.8900146484375,0.448486328125,0.73486328125,0.63037109375,0.8282470703125,0.495849609375,0.8795166015625,0.448486328125,0.73486328125,0.428466796875,0.71337890625,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.428466796875,0.71337890625,0.459228515625,0.602294921875,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.525390625,0.65869140625,0.62109375,0.614990234375,0.525390625,0.65869140625,0.459228515625,0.602294921875,0.55224609375,0.5693359375,0.525390625,0.65869140625,0.55224609375,0.5693359375,0.62109375,0.614990234375,0.428466796875,0.71337890625,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.428466796875,0.71337890625,0.459228515625,0.602294921875,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.525390625,0.65869140625,0.62109375,0.614990234375,0.525390625,0.65869140625,0.459228515625,0.602294921875,0.55224609375,0.5693359375,0.525390625,0.65869140625,0.55224609375,0.5693359375,0.62109375,0.614990234375,0.428466796875,0.71337890625,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.428466796875,0.71337890625,0.459228515625,0.602294921875,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.525390625,0.65869140625,0.62109375,0.614990234375,0.525390625,0.65869140625,0.459228515625,0.602294921875,0.55224609375,0.5693359375,0.525390625,0.65869140625,0.55224609375,0.5693359375,0.62109375,0.614990234375,0.428466796875,0.71337890625,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.428466796875,0.71337890625,0.459228515625,0.602294921875,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.525390625,0.65869140625,0.62109375,0.614990234375,0.525390625,0.65869140625,0.459228515625,0.602294921875,0.55224609375,0.5693359375,0.525390625,0.65869140625,0.55224609375,0.5693359375,0.62109375,0.614990234375,0.45263671875,0.995662689208984,0.495849609375,0.8795166015625,0.623046875,0.95709228515625,0.45263671875,0.995662689208984,0.36669921875,0.8900146484375,0.495849609375,0.8795166015625,0.623046875,0.95709228515625,0.495849609375,0.8795166015625,0.63037109375,
- 0.8282470703125,0.495849609375,0.8795166015625,0.36669921875,0.8900146484375,0.448486328125,0.73486328125,0.63037109375,0.8282470703125,0.495849609375,0.8795166015625,0.448486328125,0.73486328125,0.428466796875,0.71337890625,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.428466796875,0.71337890625,0.459228515625,0.602294921875,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.525390625,0.65869140625,0.62109375,0.614990234375,0.525390625,0.65869140625,0.459228515625,0.602294921875,0.55224609375,0.5693359375,0.525390625,0.65869140625,0.55224609375,0.5693359375,0.62109375,0.614990234375,0.45263671875,0.995662689208984,0.495849609375,0.8795166015625,0.623046875,0.95709228515625,0.45263671875,0.995662689208984,0.36669921875,0.8900146484375,0.495849609375,0.8795166015625,0.623046875,0.95709228515625,0.495849609375,0.8795166015625,0.63037109375,0.8282470703125,0.495849609375,0.8795166015625,0.36669921875,0.8900146484375,0.448486328125,0.73486328125,0.63037109375,0.8282470703125,0.495849609375,0.8795166015625,0.448486328125,0.73486328125,0.45263671875,0.995662689208984,0.495849609375,0.8795166015625,0.623046875,0.95709228515625,0.45263671875,0.995662689208984,0.36669921875,0.8900146484375,0.495849609375,0.8795166015625,0.623046875,0.95709228515625,0.495849609375,0.8795166015625,0.63037109375,0.8282470703125,0.495849609375,0.8795166015625,0.36669921875,0.8900146484375,0.448486328125,0.73486328125,0.63037109375,0.8282470703125,0.495849609375,0.8795166015625,0.448486328125,0.73486328125,0.428466796875,0.71337890625,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.428466796875,0.71337890625,0.459228515625,0.602294921875,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.525390625,0.65869140625,0.62109375,0.614990234375,0.525390625,0.65869140625,0.459228515625,0.602294921875,0.55224609375,0.5693359375,0.525390625,0.65869140625,0.55224609375,0.5693359375,0.62109375,0.614990234375,0.428466796875,0.71337890625,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.428466796875,0.71337890625,0.459228515625,0.602294921875,
- 0.525390625,0.65869140625,0.5986328125,0.71337890625,0.525390625,0.65869140625,0.62109375,0.614990234375,0.525390625,0.65869140625,0.459228515625,0.602294921875,0.55224609375,0.5693359375,0.525390625,0.65869140625,0.55224609375,0.5693359375,0.62109375,0.614990234375,0.12298583984375,0.3310546875,0.30712890625,0.41259765625,0.158203125,0.46484375,0.1585693359375,0.19921875,0.30712890625,0.41259765625,0.12298583984375,0.3310546875,0.0130844116210938,0.4755859375,0.12298583984375,0.3310546875,0.158203125,0.46484375,0.12298583984375,0.3310546875,0.08319091796875,0.224609375,0.1585693359375,0.19921875,0.0130844116210938,0.4755859375,0.08319091796875,0.224609375,0.12298583984375,0.3310546875,0.1416015625,0.01220703125,0.1585693359375,0.19921875,0.08319091796875,0.224609375,0.0168914794921875,0.2177734375,0.08319091796875,0.224609375,0.0130844116210938,0.4755859375,0.1416015625,0.01220703125,0.08319091796875,0.224609375,0.0168914794921875,0.2177734375,0.22119140625,0.658203125,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,0.22119140625,0.658203125,0.210693359375,0.888916015625,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,0.1357421875,0.624755859375,0.07513427734375,0.50732421875,0.1357421875,0.624755859375,0.210693359375,0.888916015625,0.07000732421875,0.7755126953125,0.1357421875,0.624755859375,0.07000732421875,0.7755126953125,0.07513427734375,0.50732421875,0.210693359375,0.888916015625,0.06622314453125,0.986373901367188,0.07000732421875,0.7755126953125,0.0099639892578125,0.8890380859375,0.07513427734375,0.50732421875,0.07000732421875,0.7755126953125,0.07000732421875,0.7755126953125,0.06622314453125,0.986373901367188,0.0099639892578125,0.8890380859375,0.22119140625,0.658203125,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,0.22119140625,0.658203125,0.210693359375,0.888916015625,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,0.1357421875,0.624755859375,0.07513427734375,0.50732421875,0.1357421875,0.624755859375,0.210693359375,0.888916015625,0.07000732421875,0.7755126953125,0.07000732421875,
- 0.7755126953125,0.07513427734375,0.50732421875,0.1357421875,0.624755859375,0.210693359375,0.888916015625,0.06622314453125,0.986373901367188,0.07000732421875,0.7755126953125,0.0099639892578125,0.8890380859375,0.07513427734375,0.50732421875,0.07000732421875,0.7755126953125,0.07000732421875,0.7755126953125,0.06622314453125,0.986373901367188,0.0099639892578125,0.8890380859375,0.12298583984375,0.3310546875,0.30712890625,0.41259765625,0.158203125,0.46484375,0.1585693359375,0.19921875,0.30712890625,0.41259765625,0.12298583984375,0.3310546875,0.0130844116210938,0.4755859375,0.12298583984375,0.3310546875,0.158203125,0.46484375,0.12298583984375,0.3310546875,0.08319091796875,0.224609375,0.1585693359375,0.19921875,0.0130844116210938,0.4755859375,0.08319091796875,0.224609375,0.12298583984375,0.3310546875,0.1416015625,0.01220703125,0.1585693359375,0.19921875,0.08319091796875,0.224609375,0.0168914794921875,0.2177734375,0.08319091796875,0.224609375,0.0130844116210938,0.4755859375,0.1416015625,0.01220703125,0.08319091796875,0.224609375,0.0168914794921875,0.2177734375,0.22119140625,0.658203125,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,0.22119140625,0.658203125,0.210693359375,0.888916015625,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,0.1357421875,0.624755859375,0.07513427734375,0.50732421875,0.1357421875,0.624755859375,0.210693359375,0.888916015625,0.07000732421875,0.7755126953125,0.1357421875,0.624755859375,0.07000732421875,0.7755126953125,0.07513427734375,0.50732421875,0.210693359375,0.888916015625,0.06622314453125,0.986373901367188,0.07000732421875,0.7755126953125,0.0099639892578125,0.8890380859375,0.07513427734375,0.50732421875,0.07000732421875,0.7755126953125,0.07000732421875,0.7755126953125,0.06622314453125,0.986373901367188,0.0099639892578125,0.8890380859375,0.12298583984375,0.3310546875,0.30712890625,0.41259765625,0.158203125,0.46484375,0.155029296875,0.17236328125,0.30712890625,0.41259765625,0.12298583984375,0.3310546875,0.0130844116210938,0.4755859375,0.12298583984375,0.3310546875,0.158203125,0.46484375,
- 0.12298583984375,0.3310546875,0.08319091796875,0.224609375,0.155029296875,0.17236328125,0.0130844116210938,0.4755859375,0.08319091796875,0.224609375,0.12298583984375,0.3310546875,0.067626953125,0.1376953125,0.155029296875,0.17236328125,0.08319091796875,0.224609375,0.0168914794921875,0.2177734375,0.08319091796875,0.224609375,0.0130844116210938,0.4755859375,0.067626953125,0.1376953125,0.08319091796875,0.224609375,0.0168914794921875,0.2177734375,0.428466796875,0.71337890625,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.428466796875,0.71337890625,0.459228515625,0.602294921875,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.525390625,0.65869140625,0.62109375,0.614990234375,0.525390625,0.65869140625,0.459228515625,0.602294921875,0.55224609375,0.5693359375,0.525390625,0.65869140625,0.55224609375,0.5693359375,0.62109375,0.614990234375,0.45263671875,0.995662689208984,0.495849609375,0.8795166015625,0.623046875,0.95709228515625,0.45263671875,0.995662689208984,0.36669921875,0.8900146484375,0.495849609375,0.8795166015625,0.623046875,0.95709228515625,0.495849609375,0.8795166015625,0.63037109375,0.8282470703125,0.495849609375,0.8795166015625,0.36669921875,0.8900146484375,0.448486328125,0.73486328125,0.63037109375,0.8282470703125,0.495849609375,0.8795166015625,0.448486328125,0.73486328125,0.428466796875,0.71337890625,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.428466796875,0.71337890625,0.459228515625,0.602294921875,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.525390625,0.65869140625,0.62109375,0.614990234375,0.525390625,0.65869140625,0.459228515625,0.602294921875,0.55224609375,0.5693359375,0.525390625,0.65869140625,0.55224609375,0.5693359375,0.62109375,0.614990234375,0.428466796875,0.71337890625,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.428466796875,0.71337890625,0.459228515625,0.602294921875,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.525390625,0.65869140625,0.62109375,0.614990234375,0.525390625,0.65869140625,0.459228515625,0.602294921875,0.55224609375,0.5693359375,0.525390625,
- 0.65869140625,0.55224609375,0.5693359375,0.62109375,0.614990234375,0.428466796875,0.71337890625,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.428466796875,0.71337890625,0.459228515625,0.602294921875,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.525390625,0.65869140625,0.62109375,0.614990234375,0.525390625,0.65869140625,0.459228515625,0.602294921875,0.55224609375,0.5693359375,0.525390625,0.65869140625,0.55224609375,0.5693359375,0.62109375,0.614990234375,0.428466796875,0.71337890625,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.428466796875,0.71337890625,0.459228515625,0.602294921875,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.525390625,0.65869140625,0.62109375,0.614990234375,0.525390625,0.65869140625,0.459228515625,0.602294921875,0.55224609375,0.5693359375,0.525390625,0.65869140625,0.55224609375,0.5693359375,0.62109375,0.614990234375,0.45263671875,0.995662689208984,0.495849609375,0.8795166015625,0.623046875,0.95709228515625,0.45263671875,0.995662689208984,0.36669921875,0.8900146484375,0.495849609375,0.8795166015625,0.623046875,0.95709228515625,0.495849609375,0.8795166015625,0.63037109375,0.8282470703125,0.495849609375,0.8795166015625,0.36669921875,0.8900146484375,0.448486328125,0.73486328125,0.63037109375,0.8282470703125,0.495849609375,0.8795166015625,0.448486328125,0.73486328125,0.428466796875,0.71337890625,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.428466796875,0.71337890625,0.459228515625,0.602294921875,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.525390625,0.65869140625,0.62109375,0.614990234375,0.525390625,0.65869140625,0.459228515625,0.602294921875,0.55224609375,0.5693359375,0.525390625,0.65869140625,0.55224609375,0.5693359375,0.62109375,0.614990234375,0.45263671875,0.995662689208984,0.495849609375,0.8795166015625,0.623046875,0.95709228515625,0.45263671875,0.995662689208984,0.36669921875,0.8900146484375,0.495849609375,0.8795166015625,0.623046875,0.95709228515625,0.495849609375,0.8795166015625,0.63037109375,0.8282470703125,0.495849609375,0.8795166015625,
- 0.36669921875,0.8900146484375,0.448486328125,0.73486328125,0.63037109375,0.8282470703125,0.495849609375,0.8795166015625,0.448486328125,0.73486328125,0.45263671875,0.995662689208984,0.495849609375,0.8795166015625,0.623046875,0.95709228515625,0.45263671875,0.995662689208984,0.36669921875,0.8900146484375,0.495849609375,0.8795166015625,0.623046875,0.95709228515625,0.495849609375,0.8795166015625,0.63037109375,0.8282470703125,0.495849609375,0.8795166015625,0.36669921875,0.8900146484375,0.448486328125,0.73486328125,0.63037109375,0.8282470703125,0.495849609375,0.8795166015625,0.448486328125,0.73486328125,0.428466796875,0.71337890625,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.428466796875,0.71337890625,0.459228515625,0.602294921875,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.525390625,0.65869140625,0.62109375,0.614990234375,0.525390625,0.65869140625,0.459228515625,0.602294921875,0.55224609375,0.5693359375,0.525390625,0.65869140625,0.55224609375,0.5693359375,0.62109375,0.614990234375,0.428466796875,0.71337890625,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.428466796875,0.71337890625,0.459228515625,0.602294921875,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.525390625,0.65869140625,0.62109375,0.614990234375,0.525390625,0.65869140625,0.459228515625,0.602294921875,0.55224609375,0.5693359375,0.525390625,0.65869140625,0.55224609375,0.5693359375,0.62109375,0.614990234375,0.12298583984375,0.3310546875,0.30712890625,0.41259765625,0.158203125,0.46484375,0.1585693359375,0.19921875,0.30712890625,0.41259765625,0.12298583984375,0.3310546875,0.0130844116210938,0.4755859375,0.12298583984375,0.3310546875,0.158203125,0.46484375,0.12298583984375,0.3310546875,0.08319091796875,0.224609375,0.1585693359375,0.19921875,0.0130844116210938,0.4755859375,0.08319091796875,0.224609375,0.12298583984375,0.3310546875,0.1416015625,0.01220703125,0.1585693359375,0.19921875,0.08319091796875,0.224609375,0.0168914794921875,0.2177734375,0.08319091796875,0.224609375,0.0130844116210938,0.4755859375,0.1416015625,0.01220703125,
- 0.08319091796875,0.224609375,0.0168914794921875,0.2177734375,0.22119140625,0.658203125,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,0.22119140625,0.658203125,0.210693359375,0.888916015625,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,0.1357421875,0.624755859375,0.07513427734375,0.50732421875,0.1357421875,0.624755859375,0.210693359375,0.888916015625,0.07000732421875,0.7755126953125,0.1357421875,0.624755859375,0.07000732421875,0.7755126953125,0.07513427734375,0.50732421875,0.210693359375,0.888916015625,0.06622314453125,0.986373901367188,0.07000732421875,0.7755126953125,0.0099639892578125,0.8890380859375,0.07513427734375,0.50732421875,0.07000732421875,0.7755126953125,0.07000732421875,0.7755126953125,0.06622314453125,0.986373901367188,0.0099639892578125,0.8890380859375,0.22119140625,0.658203125,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,0.22119140625,0.658203125,0.210693359375,0.888916015625,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,0.1357421875,0.624755859375,0.07513427734375,0.50732421875,0.1357421875,0.624755859375,0.210693359375,0.888916015625,0.07000732421875,0.7755126953125,0.07000732421875,0.7755126953125,0.07513427734375,0.50732421875,0.1357421875,0.624755859375,0.210693359375,0.888916015625,0.06622314453125,0.986373901367188,0.07000732421875,0.7755126953125,0.0099639892578125,0.8890380859375,0.07513427734375,0.50732421875,0.07000732421875,0.7755126953125,0.07000732421875,0.7755126953125,0.06622314453125,0.986373901367188,0.0099639892578125,0.8890380859375,0.12298583984375,0.3310546875,0.30712890625,0.41259765625,0.158203125,0.46484375,0.1585693359375,0.19921875,0.30712890625,0.41259765625,0.12298583984375,0.3310546875,0.0130844116210938,0.4755859375,0.12298583984375,0.3310546875,0.158203125,0.46484375,0.12298583984375,0.3310546875,0.08319091796875,0.224609375,0.1585693359375,0.19921875,0.0130844116210938,0.4755859375,0.08319091796875,0.224609375,0.12298583984375,0.3310546875,0.1416015625,0.01220703125,0.1585693359375,0.19921875,0.08319091796875,0.224609375,0.0168914794921875,
- 0.2177734375,0.08319091796875,0.224609375,0.0130844116210938,0.4755859375,0.1416015625,0.01220703125,0.08319091796875,0.224609375,0.0168914794921875,0.2177734375,0.22119140625,0.658203125,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,0.22119140625,0.658203125,0.210693359375,0.888916015625,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,0.1357421875,0.624755859375,0.07513427734375,0.50732421875,0.1357421875,0.624755859375,0.210693359375,0.888916015625,0.07000732421875,0.7755126953125,0.1357421875,0.624755859375,0.07000732421875,0.7755126953125,0.07513427734375,0.50732421875,0.210693359375,0.888916015625,0.06622314453125,0.986373901367188,0.07000732421875,0.7755126953125,0.0099639892578125,0.8890380859375,0.07513427734375,0.50732421875,0.07000732421875,0.7755126953125,0.07000732421875,0.7755126953125,0.06622314453125,0.986373901367188,0.0099639892578125,0.8890380859375,0.12298583984375,0.3310546875,0.30712890625,0.41259765625,0.158203125,0.46484375,0.155029296875,0.17236328125,0.30712890625,0.41259765625,0.12298583984375,0.3310546875,0.0130844116210938,0.4755859375,0.12298583984375,0.3310546875,0.158203125,0.46484375,0.12298583984375,0.3310546875,0.08319091796875,0.224609375,0.155029296875,0.17236328125,0.0130844116210938,0.4755859375,0.08319091796875,0.224609375,0.12298583984375,0.3310546875,0.067626953125,0.1376953125,0.155029296875,0.17236328125,0.08319091796875,0.224609375,0.0168914794921875,0.2177734375,0.08319091796875,0.224609375,0.0130844116210938,0.4755859375,0.067626953125,0.1376953125,0.08319091796875,0.224609375,0.0168914794921875,0.2177734375,0.428466796875,0.71337890625,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.428466796875,0.71337890625,0.459228515625,0.602294921875,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.525390625,0.65869140625,0.62109375,0.614990234375,0.525390625,0.65869140625,0.459228515625,0.602294921875,0.55224609375,0.5693359375,0.525390625,0.65869140625,0.55224609375,0.5693359375,0.62109375,0.614990234375,0.45263671875,0.995662689208984,0.495849609375,
- 0.8795166015625,0.623046875,0.95709228515625,0.45263671875,0.995662689208984,0.36669921875,0.8900146484375,0.495849609375,0.8795166015625,0.623046875,0.95709228515625,0.495849609375,0.8795166015625,0.63037109375,0.8282470703125,0.495849609375,0.8795166015625,0.36669921875,0.8900146484375,0.448486328125,0.73486328125,0.63037109375,0.8282470703125,0.495849609375,0.8795166015625,0.448486328125,0.73486328125,0.428466796875,0.71337890625,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.428466796875,0.71337890625,0.459228515625,0.602294921875,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.525390625,0.65869140625,0.62109375,0.614990234375,0.525390625,0.65869140625,0.459228515625,0.602294921875,0.55224609375,0.5693359375,0.525390625,0.65869140625,0.55224609375,0.5693359375,0.62109375,0.614990234375,0.428466796875,0.71337890625,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.428466796875,0.71337890625,0.459228515625,0.602294921875,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.525390625,0.65869140625,0.62109375,0.614990234375,0.525390625,0.65869140625,0.459228515625,0.602294921875,0.55224609375,0.5693359375,0.525390625,0.65869140625,0.55224609375,0.5693359375,0.62109375,0.614990234375,0.428466796875,0.71337890625,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.428466796875,0.71337890625,0.459228515625,0.602294921875,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.525390625,0.65869140625,0.62109375,0.614990234375,0.525390625,0.65869140625,0.459228515625,0.602294921875,0.55224609375,0.5693359375,0.525390625,0.65869140625,0.55224609375,0.5693359375,0.62109375,0.614990234375,0.428466796875,0.71337890625,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.428466796875,0.71337890625,0.459228515625,0.602294921875,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.525390625,0.65869140625,0.62109375,0.614990234375,0.525390625,0.65869140625,0.459228515625,0.602294921875,0.55224609375,0.5693359375,0.525390625,0.65869140625,0.55224609375,0.5693359375,0.62109375,0.614990234375,0.45263671875,
- 0.995662689208984,0.495849609375,0.8795166015625,0.623046875,0.95709228515625,0.45263671875,0.995662689208984,0.36669921875,0.8900146484375,0.495849609375,0.8795166015625,0.623046875,0.95709228515625,0.495849609375,0.8795166015625,0.63037109375,0.8282470703125,0.495849609375,0.8795166015625,0.36669921875,0.8900146484375,0.448486328125,0.73486328125,0.63037109375,0.8282470703125,0.495849609375,0.8795166015625,0.448486328125,0.73486328125,0.428466796875,0.71337890625,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.428466796875,0.71337890625,0.459228515625,0.602294921875,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.525390625,0.65869140625,0.62109375,0.614990234375,0.525390625,0.65869140625,0.459228515625,0.602294921875,0.55224609375,0.5693359375,0.525390625,0.65869140625,0.55224609375,0.5693359375,0.62109375,0.614990234375,0.45263671875,0.995662689208984,0.495849609375,0.8795166015625,0.623046875,0.95709228515625,0.45263671875,0.995662689208984,0.36669921875,0.8900146484375,0.495849609375,0.8795166015625,0.623046875,0.95709228515625,0.495849609375,0.8795166015625,0.63037109375,0.8282470703125,0.495849609375,0.8795166015625,0.36669921875,0.8900146484375,0.448486328125,0.73486328125,0.63037109375,0.8282470703125,0.495849609375,0.8795166015625,0.448486328125,0.73486328125,0.2225341796875,0.658203125,0.144287109375,0.4970703125,0.136962890625,0.624755859375,0.2225341796875,0.658203125,0.136962890625,0.624755859375,0.2119140625,0.888916015625,0.144287109375,0.4970703125,0.076416015625,0.50732421875,0.136962890625,0.624755859375,0.136962890625,0.624755859375,0.09625244140625,0.8033447265625,0.2119140625,0.888916015625,0.136962890625,0.624755859375,0.076416015625,0.50732421875,0.09625244140625,0.8033447265625,0.2119140625,0.888916015625,0.09625244140625,0.8033447265625,0.0675048828125,0.986373901367188,0.076416015625,0.50732421875,0.0112228393554688,0.8890380859375,0.09625244140625,0.8033447265625,0.09625244140625,0.8033447265625,0.0112228393554688,0.8890380859375,0.0675048828125,0.986373901367188,0.453857421875,
- 0.995662689208984,0.4970703125,0.8795166015625,0.62451171875,0.95709228515625,0.453857421875,0.995662689208984,0.3681640625,0.8900146484375,0.4970703125,0.8795166015625,0.62451171875,0.95709228515625,0.4970703125,0.8795166015625,0.6318359375,0.8282470703125,0.4970703125,0.8795166015625,0.3681640625,0.8900146484375,0.44970703125,0.73486328125,0.6318359375,0.8282470703125,0.4970703125,0.8795166015625,0.44970703125,0.73486328125,0.4296875,0.71337890625,0.5263671875,0.65869140625,0.60009765625,0.71337890625,0.4296875,0.71337890625,0.46044921875,0.602294921875,0.5263671875,0.65869140625,0.60009765625,0.71337890625,0.5263671875,0.65869140625,0.62255859375,0.614990234375,0.5263671875,0.65869140625,0.46044921875,0.602294921875,0.55322265625,0.5693359375,0.5263671875,0.65869140625,0.55322265625,0.5693359375,0.62255859375,0.614990234375,0.4296875,0.71337890625,0.5263671875,0.65869140625,0.60009765625,0.71337890625,0.4296875,0.71337890625,0.46044921875,0.602294921875,0.5263671875,0.65869140625,0.60009765625,0.71337890625,0.5263671875,0.65869140625,0.62255859375,0.614990234375,0.5263671875,0.65869140625,0.46044921875,0.602294921875,0.55322265625,0.5693359375,0.5263671875,0.65869140625,0.55322265625,0.5693359375,0.62255859375,0.614990234375,0.4296875,0.71337890625,0.5263671875,0.65869140625,0.60009765625,0.71337890625,0.4296875,0.71337890625,0.46044921875,0.602294921875,0.5263671875,0.65869140625,0.60009765625,0.71337890625,0.5263671875,0.65869140625,0.62255859375,0.614990234375,0.5263671875,0.65869140625,0.46044921875,0.602294921875,0.55322265625,0.5693359375,0.5263671875,0.65869140625,0.55322265625,0.5693359375,0.62255859375,0.614990234375,0.453857421875,0.995662689208984,0.4970703125,0.8795166015625,0.62451171875,0.95709228515625,0.453857421875,0.995662689208984,0.3681640625,0.8900146484375,0.4970703125,0.8795166015625,0.62451171875,0.95709228515625,0.4970703125,0.8795166015625,0.6318359375,0.8282470703125,0.4970703125,0.8795166015625,0.3681640625,0.8900146484375,0.44970703125,0.73486328125,0.6318359375,0.8282470703125,0.4970703125,
- 0.8795166015625,0.44970703125,0.73486328125,0.2225341796875,0.658203125,0.144287109375,0.4970703125,0.136962890625,0.624755859375,0.2225341796875,0.658203125,0.136962890625,0.624755859375,0.2119140625,0.888916015625,0.144287109375,0.4970703125,0.076416015625,0.50732421875,0.136962890625,0.624755859375,0.136962890625,0.624755859375,0.09625244140625,0.8033447265625,0.2119140625,0.888916015625,0.136962890625,0.624755859375,0.076416015625,0.50732421875,0.09625244140625,0.8033447265625,0.2119140625,0.888916015625,0.09625244140625,0.8033447265625,0.0675048828125,0.986373901367188,0.076416015625,0.50732421875,0.0112228393554688,0.8890380859375,0.09625244140625,0.8033447265625,0.09625244140625,0.8033447265625,0.0112228393554688,0.8890380859375,0.0675048828125,0.986373901367188,0.453857421875,0.995662689208984,0.4970703125,0.8795166015625,0.62451171875,0.95709228515625,0.453857421875,0.995662689208984,0.3681640625,0.8900146484375,0.4970703125,0.8795166015625,0.62451171875,0.95709228515625,0.4970703125,0.8795166015625,0.6318359375,0.8282470703125,0.4970703125,0.8795166015625,0.3681640625,0.8900146484375,0.44970703125,0.73486328125,0.6318359375,0.8282470703125,0.4970703125,0.8795166015625,0.44970703125,0.73486328125,0.4296875,0.71337890625,0.5263671875,0.65869140625,0.60009765625,0.71337890625,0.4296875,0.71337890625,0.46044921875,0.602294921875,0.5263671875,0.65869140625,0.60009765625,0.71337890625,0.5263671875,0.65869140625,0.62255859375,0.614990234375,0.5263671875,0.65869140625,0.46044921875,0.602294921875,0.55322265625,0.5693359375,0.5263671875,0.65869140625,0.55322265625,0.5693359375,0.62255859375,0.614990234375,0.4296875,0.71337890625,0.5263671875,0.65869140625,0.60009765625,0.71337890625,0.4296875,0.71337890625,0.46044921875,0.602294921875,0.5263671875,0.65869140625,0.60009765625,0.71337890625,0.5263671875,0.65869140625,0.62255859375,0.614990234375,0.5263671875,0.65869140625,0.46044921875,0.602294921875,0.55322265625,0.5693359375,0.5263671875,0.65869140625,0.55322265625,0.5693359375,0.62255859375,0.614990234375,0.4296875,
- 0.71337890625,0.5263671875,0.65869140625,0.60009765625,0.71337890625,0.4296875,0.71337890625,0.46044921875,0.602294921875,0.5263671875,0.65869140625,0.60009765625,0.71337890625,0.5263671875,0.65869140625,0.62255859375,0.614990234375,0.5263671875,0.65869140625,0.46044921875,0.602294921875,0.55322265625,0.5693359375,0.5263671875,0.65869140625,0.55322265625,0.5693359375,0.62255859375,0.614990234375,0.453857421875,0.995662689208984,0.4970703125,0.8795166015625,0.62451171875,0.95709228515625,0.453857421875,0.995662689208984,0.3681640625,0.8900146484375,0.4970703125,0.8795166015625,0.62451171875,0.95709228515625,0.4970703125,0.8795166015625,0.6318359375,0.8282470703125,0.4970703125,0.8795166015625,0.3681640625,0.8900146484375,0.44970703125,0.73486328125,0.6318359375,0.8282470703125,0.4970703125,0.8795166015625,0.44970703125,0.73486328125,0.2225341796875,0.658203125,0.144287109375,0.4970703125,0.136962890625,0.624755859375,0.2225341796875,0.658203125,0.136962890625,0.624755859375,0.2119140625,0.888916015625,0.144287109375,0.4970703125,0.076416015625,0.50732421875,0.136962890625,0.624755859375,0.136962890625,0.624755859375,0.09625244140625,0.8033447265625,0.2119140625,0.888916015625,0.136962890625,0.624755859375,0.076416015625,0.50732421875,0.09625244140625,0.8033447265625,0.2119140625,0.888916015625,0.09625244140625,0.8033447265625,0.0675048828125,0.986373901367188,0.076416015625,0.50732421875,0.0112228393554688,0.8890380859375,0.09625244140625,0.8033447265625,0.09625244140625,0.8033447265625,0.0112228393554688,0.8890380859375,0.0675048828125,0.986373901367188,0.453857421875,0.995662689208984,0.4970703125,0.8795166015625,0.62451171875,0.95709228515625,0.453857421875,0.995662689208984,0.3681640625,0.8900146484375,0.4970703125,0.8795166015625,0.62451171875,0.95709228515625,0.4970703125,0.8795166015625,0.6318359375,0.8282470703125,0.4970703125,0.8795166015625,0.3681640625,0.8900146484375,0.44970703125,0.73486328125,0.6318359375,0.8282470703125,0.4970703125,0.8795166015625,0.44970703125,0.73486328125,0.4296875,0.71337890625,
- 0.5263671875,0.65869140625,0.60009765625,0.71337890625,0.4296875,0.71337890625,0.46044921875,0.602294921875,0.5263671875,0.65869140625,0.60009765625,0.71337890625,0.5263671875,0.65869140625,0.62255859375,0.614990234375,0.5263671875,0.65869140625,0.46044921875,0.602294921875,0.55322265625,0.5693359375,0.5263671875,0.65869140625,0.55322265625,0.5693359375,0.62255859375,0.614990234375,0.4296875,0.71337890625,0.5263671875,0.65869140625,0.60009765625,0.71337890625,0.4296875,0.71337890625,0.46044921875,0.602294921875,0.5263671875,0.65869140625,0.60009765625,0.71337890625,0.5263671875,0.65869140625,0.62255859375,0.614990234375,0.5263671875,0.65869140625,0.46044921875,0.602294921875,0.55322265625,0.5693359375,0.5263671875,0.65869140625,0.55322265625,0.5693359375,0.62255859375,0.614990234375,0.4296875,0.71337890625,0.5263671875,0.65869140625,0.60009765625,0.71337890625,0.4296875,0.71337890625,0.46044921875,0.602294921875,0.5263671875,0.65869140625,0.60009765625,0.71337890625,0.5263671875,0.65869140625,0.62255859375,0.614990234375,0.5263671875,0.65869140625,0.46044921875,0.602294921875,0.55322265625,0.5693359375,0.5263671875,0.65869140625,0.55322265625,0.5693359375,0.62255859375,0.614990234375,0.453857421875,0.995662689208984,0.4970703125,0.8795166015625,0.62451171875,0.95709228515625,0.453857421875,0.995662689208984,0.3681640625,0.8900146484375,0.4970703125,0.8795166015625,0.62451171875,0.95709228515625,0.4970703125,0.8795166015625,0.6318359375,0.8282470703125,0.4970703125,0.8795166015625,0.3681640625,0.8900146484375,0.44970703125,0.73486328125,0.6318359375,0.8282470703125,0.4970703125,0.8795166015625,0.44970703125,0.73486328125,0.3681640625,0.13232421875,0.29931640625,0.02734375,0.376953125,0.0009765625,0.29931640625,0.02734375,0.3681640625,0.13232421875,0.304443359375,0.16796875,0.376953125,0.0009765625,0.435302734375,0.0947265625,0.3681640625,0.13232421875,0.3681640625,0.13232421875,0.349853515625,0.2568359375,0.304443359375,0.16796875,0.435302734375,0.0947265625,0.391845703125,0.27587890625,0.3681640625,0.13232421875,0.349853515625,
- 0.2568359375,0.3681640625,0.13232421875,0.391845703125,0.27587890625,0.391845703125,0.27587890625,0.435302734375,0.0947265625,0.445068359375,0.28173828125,0.391845703125,0.27587890625,0.325927734375,0.41162109375,0.349853515625,0.2568359375,0.381103515625,0.43896484375,0.391845703125,0.27587890625,0.445068359375,0.28173828125,0.325927734375,0.41162109375,0.391845703125,0.27587890625,0.3505859375,0.431640625,0.3505859375,0.431640625,0.391845703125,0.27587890625,0.381103515625,0.43896484375,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,
- 0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.39306640625,0.27587890625,0.38232421875,0.43896484375,0.351806640625,0.431640625,0.3271484375,0.41162109375,0.39306640625,0.27587890625,0.351806640625,0.431640625,0.38232421875,0.43896484375,0.39306640625,0.27587890625,0.4462890625,0.28173828125,0.39306640625,0.27587890625,0.3271484375,0.41162109375,0.351318359375,
- 0.2568359375,0.36962890625,0.13232421875,0.4462890625,0.28173828125,0.39306640625,0.27587890625,0.351318359375,0.2568359375,0.36962890625,0.13232421875,0.39306640625,0.27587890625,0.4365234375,0.0947265625,0.4462890625,0.28173828125,0.36962890625,0.13232421875,0.36962890625,0.13232421875,0.351318359375,0.2568359375,0.3056640625,0.16796875,0.378173828125,0.0009765625,0.4365234375,0.0947265625,0.36962890625,0.13232421875,0.300537109375,0.02734375,0.36962890625,0.13232421875,0.3056640625,0.16796875,0.36962890625,0.13232421875,0.300537109375,0.02734375,0.378173828125,0.0009765625,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,
- 0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.3681640625,0.13232421875,0.29931640625,0.02734375,0.376953125,0.0009765625,0.29931640625,0.02734375,0.3681640625,0.13232421875,0.304443359375,0.16796875,0.376953125,0.0009765625,0.435302734375,0.0947265625,0.3681640625,0.13232421875,0.3681640625,0.13232421875,0.349853515625,0.2568359375,0.304443359375,0.16796875,0.435302734375,0.0947265625,0.391845703125,0.27587890625,0.3681640625,0.13232421875,0.349853515625,0.2568359375,0.3681640625,0.13232421875,0.391845703125,0.27587890625,0.391845703125,0.27587890625,0.435302734375,0.0947265625,0.445068359375,0.28173828125,0.391845703125,0.27587890625,0.325927734375,0.41162109375,0.349853515625,0.2568359375,0.381103515625,0.43896484375,0.391845703125,0.27587890625,0.445068359375,0.28173828125,0.325927734375,0.41162109375,0.391845703125,0.27587890625,0.3505859375,0.431640625,0.3505859375,0.431640625,0.391845703125,0.27587890625,0.381103515625,0.43896484375,0.40966796875,0.5390625,0.33154296875,0.62939453125,0.29638671875,0.4951171875,0.33154296875,0.62939453125,0.2437744140625,0.517333984375,0.29638671875,0.4951171875,0.40966796875,0.5390625,0.36181640625,0.77685546875,0.33154296875,0.62939453125,0.2476806640625,0.743408203125,0.2437744140625,0.517333984375,0.33154296875,0.62939453125,0.33154296875,0.62939453125,0.36181640625,0.77685546875,0.306396484375,0.8087158203125,0.33154296875,0.62939453125,0.306396484375,0.8087158203125,0.2476806640625,0.743408203125,0.316650390625,1,0.306396484375,0.8087158203125,0.36181640625,0.77685546875,0.306396484375,0.8087158203125,0.25146484375,0.95538330078125,0.2476806640625,0.743408203125,0.306396484375,0.8087158203125,0.316650390625,
- 1,0.282958984375,0.976959228515625,0.25146484375,0.95538330078125,0.306396484375,0.8087158203125,0.282958984375,0.976959228515625,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,
- 0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.3681640625,0.13232421875,0.29931640625,0.02734375,0.376953125,0.0009765625,0.29931640625,0.02734375,0.3681640625,0.13232421875,0.304443359375,0.16796875,0.376953125,0.0009765625,0.435302734375,0.0947265625,
- 0.3681640625,0.13232421875,0.3681640625,0.13232421875,0.349853515625,0.2568359375,0.304443359375,0.16796875,0.435302734375,0.0947265625,0.391845703125,0.27587890625,0.3681640625,0.13232421875,0.349853515625,0.2568359375,0.3681640625,0.13232421875,0.391845703125,0.27587890625,0.391845703125,0.27587890625,0.435302734375,0.0947265625,0.445068359375,0.28173828125,0.391845703125,0.27587890625,0.325927734375,0.41162109375,0.349853515625,0.2568359375,0.381103515625,0.43896484375,0.391845703125,0.27587890625,0.445068359375,0.28173828125,0.325927734375,0.41162109375,0.391845703125,0.27587890625,0.3505859375,0.431640625,0.3505859375,0.431640625,0.391845703125,0.27587890625,0.381103515625,0.43896484375,0.40966796875,0.5390625,0.33154296875,0.62939453125,0.29638671875,0.4951171875,0.33154296875,0.62939453125,0.2437744140625,0.517333984375,0.29638671875,0.4951171875,0.40966796875,0.5390625,0.36181640625,0.77685546875,0.33154296875,0.62939453125,0.2476806640625,0.743408203125,0.2437744140625,0.517333984375,0.33154296875,0.62939453125,0.33154296875,0.62939453125,0.36181640625,0.77685546875,0.306396484375,0.8087158203125,0.33154296875,0.62939453125,0.306396484375,0.8087158203125,0.2476806640625,0.743408203125,0.316650390625,1,0.306396484375,0.8087158203125,0.36181640625,0.77685546875,0.306396484375,0.8087158203125,0.25146484375,0.95538330078125,0.2476806640625,0.743408203125,0.306396484375,0.8087158203125,0.316650390625,1,0.282958984375,0.976959228515625,0.25146484375,0.95538330078125,0.306396484375,0.8087158203125,0.282958984375,0.976959228515625,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,
- 0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,
- 0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.3681640625,0.13232421875,0.29931640625,0.02734375,0.376953125,0.0009765625,0.29931640625,0.02734375,0.3681640625,0.13232421875,0.304443359375,0.16796875,0.376953125,0.0009765625,0.435302734375,0.0947265625,0.3681640625,0.13232421875,0.3681640625,0.13232421875,0.349853515625,0.2568359375,0.304443359375,0.16796875,0.435302734375,0.0947265625,0.391845703125,0.27587890625,0.3681640625,0.13232421875,0.349853515625,0.2568359375,0.3681640625,0.13232421875,0.391845703125,0.27587890625,0.391845703125,0.27587890625,0.435302734375,0.0947265625,0.445068359375,0.28173828125,0.391845703125,0.27587890625,0.325927734375,0.41162109375,0.349853515625,0.2568359375,0.381103515625,0.43896484375,0.391845703125,0.27587890625,0.445068359375,0.28173828125,0.325927734375,0.41162109375,0.391845703125,0.27587890625,0.3505859375,0.431640625,0.3505859375,
- 0.431640625,0.391845703125,0.27587890625,0.381103515625,0.43896484375,0.40966796875,0.5390625,0.33154296875,0.62939453125,0.29638671875,0.4951171875,0.33154296875,0.62939453125,0.2437744140625,0.517333984375,0.29638671875,0.4951171875,0.40966796875,0.5390625,0.36181640625,0.77685546875,0.33154296875,0.62939453125,0.2476806640625,0.743408203125,0.2437744140625,0.517333984375,0.33154296875,0.62939453125,0.33154296875,0.62939453125,0.36181640625,0.77685546875,0.306396484375,0.8087158203125,0.33154296875,0.62939453125,0.306396484375,0.8087158203125,0.2476806640625,0.743408203125,0.316650390625,1,0.306396484375,0.8087158203125,0.36181640625,0.77685546875,0.306396484375,0.8087158203125,0.25146484375,0.95538330078125,0.2476806640625,0.743408203125,0.306396484375,0.8087158203125,0.316650390625,1,0.282958984375,0.976959228515625,0.25146484375,0.95538330078125,0.306396484375,0.8087158203125,0.282958984375,0.976959228515625,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,
- 0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,
- 0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.3681640625,0.13232421875,0.29931640625,0.02734375,0.376953125,0.0009765625,0.29931640625,0.02734375,0.3681640625,0.13232421875,0.304443359375,0.16796875,0.376953125,0.0009765625,0.435302734375,0.0947265625,0.3681640625,0.13232421875,0.3681640625,0.13232421875,0.349853515625,0.2568359375,0.304443359375,0.16796875,0.435302734375,0.0947265625,0.391845703125,0.27587890625,0.3681640625,0.13232421875,0.349853515625,0.2568359375,0.3681640625,0.13232421875,0.391845703125,0.27587890625,0.391845703125,0.27587890625,0.435302734375,0.0947265625,0.445068359375,0.28173828125,0.391845703125,0.27587890625,0.325927734375,0.41162109375,0.349853515625,0.2568359375,0.381103515625,0.43896484375,0.391845703125,0.27587890625,0.445068359375,0.28173828125,0.325927734375,0.41162109375,0.391845703125,0.27587890625,0.3505859375,0.431640625,0.3505859375,0.431640625,0.391845703125,0.27587890625,0.381103515625,0.43896484375,0.40966796875,0.5390625,0.33154296875,0.62939453125,0.29638671875,0.4951171875,0.33154296875,0.62939453125,0.2437744140625,0.517333984375,0.29638671875,0.4951171875,0.40966796875,0.5390625,0.36181640625,0.77685546875,0.33154296875,0.62939453125,0.2476806640625,0.743408203125,0.2437744140625,0.517333984375,0.33154296875,0.62939453125,0.33154296875,0.62939453125,0.36181640625,0.77685546875,0.306396484375,0.8087158203125,0.33154296875,0.62939453125,0.306396484375,0.8087158203125,0.2476806640625,0.743408203125,0.316650390625,1,0.306396484375,0.8087158203125,
- 0.36181640625,0.77685546875,0.306396484375,0.8087158203125,0.25146484375,0.95538330078125,0.2476806640625,0.743408203125,0.306396484375,0.8087158203125,0.316650390625,1,0.282958984375,0.976959228515625,0.25146484375,0.95538330078125,0.306396484375,0.8087158203125,0.282958984375,0.976959228515625,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,
- 0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.39306640625,0.27587890625,
- 0.351806640625,0.431640625,0.38232421875,0.43896484375,0.39306640625,0.27587890625,0.3271484375,0.41162109375,0.351806640625,0.431640625,0.38232421875,0.43896484375,0.4462890625,0.28173828125,0.39306640625,0.27587890625,0.3271484375,0.41162109375,0.39306640625,0.27587890625,0.351318359375,0.2568359375,0.36962890625,0.13232421875,0.39306640625,0.27587890625,0.4462890625,0.28173828125,0.36962890625,0.13232421875,0.351318359375,0.2568359375,0.39306640625,0.27587890625,0.36962890625,0.13232421875,0.4462890625,0.28173828125,0.4365234375,0.0947265625,0.351318359375,0.2568359375,0.36962890625,0.13232421875,0.3056640625,0.16796875,0.378173828125,0.0009765625,0.36962890625,0.13232421875,0.4365234375,0.0947265625,0.36962890625,0.13232421875,0.300537109375,0.02734375,0.3056640625,0.16796875,0.300537109375,0.02734375,0.36962890625,0.13232421875,0.378173828125,0.0009765625,0.410888671875,0.5390625,0.297607421875,0.4951171875,0.332763671875,0.62939453125,0.332763671875,0.62939453125,0.297607421875,0.4951171875,0.2449951171875,0.517333984375,0.332763671875,0.62939453125,0.357177734375,0.805908203125,0.410888671875,0.5390625,0.2493896484375,0.7708740234375,0.332763671875,0.62939453125,0.2449951171875,0.517333984375,0.357177734375,0.805908203125,0.332763671875,0.62939453125,0.299560546875,0.821533203125,0.299560546875,0.821533203125,0.332763671875,0.62939453125,0.2493896484375,0.7708740234375,0.299560546875,0.821533203125,0.31787109375,1,0.357177734375,0.805908203125,0.252685546875,0.95538330078125,0.299560546875,0.821533203125,0.2493896484375,0.7708740234375,0.31787109375,1,0.299560546875,0.821533203125,0.2841796875,0.976959228515625,0.2841796875,0.976959228515625,0.299560546875,0.821533203125,0.252685546875,0.95538330078125,0.39306640625,0.27587890625,0.38232421875,0.43896484375,0.351806640625,0.431640625,0.3271484375,0.41162109375,0.39306640625,0.27587890625,0.351806640625,0.431640625,0.38232421875,0.43896484375,0.39306640625,0.27587890625,0.4462890625,0.28173828125,0.39306640625,0.27587890625,0.3271484375,0.41162109375,0.351318359375,
- 0.2568359375,0.36962890625,0.13232421875,0.4462890625,0.28173828125,0.39306640625,0.27587890625,0.351318359375,0.2568359375,0.36962890625,0.13232421875,0.39306640625,0.27587890625,0.4365234375,0.0947265625,0.4462890625,0.28173828125,0.36962890625,0.13232421875,0.36962890625,0.13232421875,0.351318359375,0.2568359375,0.3056640625,0.16796875,0.378173828125,0.0009765625,0.4365234375,0.0947265625,0.36962890625,0.13232421875,0.300537109375,0.02734375,0.36962890625,0.13232421875,0.3056640625,0.16796875,0.36962890625,0.13232421875,0.300537109375,0.02734375,0.378173828125,0.0009765625,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,
- 0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.39306640625,0.27587890625,0.351806640625,0.431640625,0.38232421875,0.43896484375,0.39306640625,0.27587890625,0.3271484375,0.41162109375,0.351806640625,0.431640625,0.38232421875,0.43896484375,0.4462890625,0.28173828125,0.39306640625,0.27587890625,0.3271484375,0.41162109375,0.39306640625,0.27587890625,0.351318359375,0.2568359375,0.36962890625,0.13232421875,0.39306640625,0.27587890625,0.4462890625,0.28173828125,0.36962890625,0.13232421875,0.351318359375,0.2568359375,0.39306640625,0.27587890625,0.36962890625,0.13232421875,0.4462890625,0.28173828125,0.4365234375,0.0947265625,0.351318359375,0.2568359375,0.36962890625,0.13232421875,0.3056640625,0.16796875,0.378173828125,0.0009765625,0.36962890625,0.13232421875,0.4365234375,0.0947265625,0.36962890625,0.13232421875,0.300537109375,0.02734375,0.3056640625,0.16796875,0.300537109375,0.02734375,0.36962890625,0.13232421875,0.378173828125,0.0009765625,0.410888671875,0.5390625,0.297607421875,0.4951171875,0.332763671875,0.62939453125,0.332763671875,0.62939453125,0.297607421875,0.4951171875,0.2449951171875,0.517333984375,0.332763671875,0.62939453125,0.357177734375,0.805908203125,0.410888671875,0.5390625,0.2493896484375,0.7708740234375,0.332763671875,0.62939453125,0.2449951171875,0.517333984375,0.357177734375,0.805908203125,0.332763671875,0.62939453125,0.299560546875,0.821533203125,0.299560546875,0.821533203125,0.332763671875,0.62939453125,0.2493896484375,0.7708740234375,0.299560546875,0.821533203125,0.31787109375,1,0.357177734375,0.805908203125,0.252685546875,0.95538330078125,0.299560546875,0.821533203125,0.2493896484375,0.7708740234375,0.31787109375,1,0.299560546875,0.821533203125,
- 0.2841796875,0.976959228515625,0.2841796875,0.976959228515625,0.299560546875,0.821533203125,0.252685546875,0.95538330078125,0.39306640625,0.27587890625,0.38232421875,0.43896484375,0.351806640625,0.431640625,0.3271484375,0.41162109375,0.39306640625,0.27587890625,0.351806640625,0.431640625,0.38232421875,0.43896484375,0.39306640625,0.27587890625,0.4462890625,0.28173828125,0.39306640625,0.27587890625,0.3271484375,0.41162109375,0.351318359375,0.2568359375,0.36962890625,0.13232421875,0.4462890625,0.28173828125,0.39306640625,0.27587890625,0.351318359375,0.2568359375,0.36962890625,0.13232421875,0.39306640625,0.27587890625,0.4365234375,0.0947265625,0.4462890625,0.28173828125,0.36962890625,0.13232421875,0.36962890625,0.13232421875,0.351318359375,0.2568359375,0.3056640625,0.16796875,0.378173828125,0.0009765625,0.4365234375,0.0947265625,0.36962890625,0.13232421875,0.300537109375,0.02734375,0.36962890625,0.13232421875,0.3056640625,0.16796875,0.36962890625,0.13232421875,0.300537109375,0.02734375,0.378173828125,0.0009765625,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,
- 0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.39306640625,0.27587890625,0.351806640625,0.431640625,0.38232421875,0.43896484375,0.39306640625,0.27587890625,0.3271484375,0.41162109375,0.351806640625,0.431640625,0.38232421875,0.43896484375,0.4462890625,0.28173828125,0.39306640625,0.27587890625,0.3271484375,0.41162109375,0.39306640625,0.27587890625,0.351318359375,0.2568359375,0.36962890625,0.13232421875,0.39306640625,0.27587890625,0.4462890625,0.28173828125,0.36962890625,0.13232421875,0.351318359375,0.2568359375,0.39306640625,0.27587890625,0.36962890625,0.13232421875,0.4462890625,0.28173828125,0.4365234375,0.0947265625,0.351318359375,0.2568359375,0.36962890625,0.13232421875,0.3056640625,0.16796875,0.378173828125,0.0009765625,0.36962890625,0.13232421875,0.4365234375,0.0947265625,0.36962890625,0.13232421875,0.300537109375,0.02734375,0.3056640625,0.16796875,0.300537109375,0.02734375,0.36962890625,0.13232421875,0.378173828125,0.0009765625,0.410888671875,0.5390625,0.297607421875,0.4951171875,0.332763671875,0.62939453125,0.332763671875,0.62939453125,0.297607421875,0.4951171875,0.2449951171875,0.517333984375,0.332763671875,0.62939453125,0.357177734375,0.805908203125,0.410888671875,0.5390625,0.2493896484375,0.7708740234375,
- 0.332763671875,0.62939453125,0.2449951171875,0.517333984375,0.357177734375,0.805908203125,0.332763671875,0.62939453125,0.299560546875,0.821533203125,0.299560546875,0.821533203125,0.332763671875,0.62939453125,0.2493896484375,0.7708740234375,0.299560546875,0.821533203125,0.31787109375,1,0.357177734375,0.805908203125,0.252685546875,0.95538330078125,0.299560546875,0.821533203125,0.2493896484375,0.7708740234375,0.31787109375,1,0.299560546875,0.821533203125,0.2841796875,0.976959228515625,0.2841796875,0.976959228515625,0.299560546875,0.821533203125,0.252685546875,0.95538330078125,0.39306640625,0.27587890625,0.38232421875,0.43896484375,0.351806640625,0.431640625,0.3271484375,0.41162109375,0.39306640625,0.27587890625,0.351806640625,0.431640625,0.38232421875,0.43896484375,0.39306640625,0.27587890625,0.4462890625,0.28173828125,0.39306640625,0.27587890625,0.3271484375,0.41162109375,0.351318359375,0.2568359375,0.36962890625,0.13232421875,0.4462890625,0.28173828125,0.39306640625,0.27587890625,0.351318359375,0.2568359375,0.36962890625,0.13232421875,0.39306640625,0.27587890625,0.4365234375,0.0947265625,0.4462890625,0.28173828125,0.36962890625,0.13232421875,0.36962890625,0.13232421875,0.351318359375,0.2568359375,0.3056640625,0.16796875,0.378173828125,0.0009765625,0.4365234375,0.0947265625,0.36962890625,0.13232421875,0.300537109375,0.02734375,0.36962890625,0.13232421875,0.3056640625,0.16796875,0.36962890625,0.13232421875,0.300537109375,0.02734375,0.378173828125,0.0009765625,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,
- 0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875
- }
- UVIndex: *5193 {
- a: 0,1,2,3,1,0,1,4,2,3,5,1,6,1,5,5,7,6,4,1,8,6,8,1,8,9,4,10,4,9,9,11,10,11,9,12,9,8,12,12,13,11,6,14,8,12,8,14,15,14,6,15,6,7,14,16,12,14,15,16,7,17,15,16,15,17,17,7,18,18,19,17,19,16,17,19,18,20,20,21,19,22,16,19,21,22,19,21,23,22,23,16,22,23,21,24,12,16,25,23,25,16,13,12,25,24,26,23,25,23,26,25,26,13,26,24,27,27,13,26,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,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,259,260,261,262,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,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,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,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,28,29,30,31,28,30,29,28,32,33,29,32,28,31,34,35,34,31,32,36,33,37,33,36,32,28,38,36,32,38,28,34,38,37,36,39,39,36,38,40,37,39,38,34,41,34,35,41,42,39,38,40,39,42,43,41,35,35,44,43,45,38,41,41,43,45,45,42,38,44,46,43,43,46,45,47,46,44,48,46,47,49,40,42,49,42,45,40,49,
- 50,46,51,45,51,49,45,46,48,51,51,50,49,50,51,48,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,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,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,52,53,54,55,52,54,55,56,57,54,58,55,56,55,58,56,58,59,54,60,58,59,58,61,58,60,61,61,60,62,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999,1000,1001,1002,
- 1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,63,64,65,66,63,65,67,63,66,66,65,68,67,66,69,69,66,68,70,71,1036,70,1037,72,73,70,72,1038,1039,72,73,72,1040,72,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,74,75,76,77,75,74,75,77,78,77,79,78,77,80,79,74,81,77,80,77,81,81,74,82,83,80,81,84,81,82,81,84,83,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,85,86,87,85,88,86,87,86,89,86,88,90,89,86,90,91,92,93,91,94,92,93,92,95,92,94,96,92,96,95,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,97,98,99,100,98,97,101,97,99,97,102,100,101,102,97,103,100,102,104,102,101,103,102,104,1334,1335,1336,1337,1338,1339,1340,
- 1341,1342,1343,1344,105,1345,105,1346,1347,1348,105,1349,1350,105,105,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,106,1428,1429,1430,1431,1432,1433,1434,106,1435,1436,1437,107,106,1438,1439,1440,1441,107,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,108,109,110,108,110,111,109,112,110,110,113,111,110,112,113,111,113,114,112,115,113,113,115,114,116,117,118,116,119,117,118,117,120,117,119,121,120,117,121,122,123,124,122,125,123,124,123,126,123,125,127,123,127,126,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,
- 1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1855,1856,1857,1858,1859,1860,1861,1862,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1924,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1946,1947,1948,1949,1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,
- 2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2129,2130,2131,2132,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144,2145,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2202,2203,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,2228,2229,2230,2231,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,2252,2253,2254,2255,2256,2257,2258,2259,2260,2261,2262,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,2303,2304,2305,2306,2307,2308,2309,2310,2311,2312,2313,2314,2315,2316,2317,2318,2319,2320,2321,2322,2323,2324,2325,2326,2327,2328,2329,2330,2331,2332,2333,2334,2335,2336,2337,2338,2339,2340,2341,2342,2343,2344,2345,2346,2347,2348,2349,2350,2351,2352,2353,2354,2355,2356,2357,2358,2359,2360,2361,2362,2363,2364,2365,2366,2367,2368,2369,2370,2371,2372,2373,2374,2375,2376,2377,2378,2379,2380,2381,2382,2383,2384,2385,2386,2387,2388,2389,2390,2391,2392,2393,2394,2395,2396,2397,2398,2399,2400,2401,2402,2403,2404,2405,2406,2407,2408,2409,2410,2411,2412,2413,2414,2415,2416,2417,2418,2419,2420,2421,2422,2423,2424,2425,2426,2427,2428,2429,2430,2431,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,2461,2462,2463,2464,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2477,2478,2479,2480,2481,2482,2483,2484,2485,2486,2487,2488,2489,2490,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,2503,2504,2505,2506,2507,2508,2509,2510,2511,2512,2513,2514,2515,2516,2517,2518,2519,
- 2520,2521,2522,2523,2524,2525,2526,2527,2528,2529,2530,2531,2532,2533,2534,2535,2536,2537,2538,2539,2540,2541,2542,2543,2544,2545,2546,2547,2548,2549,2550,2551,2552,2553,2554,2555,2556,2557,2558,2559,2560,2561,2562,2563,2564,2565,2566,2567,2568,2569,2570,2571,2572,2573,2574,2575,2576,2577,2578,2579,2580,2581,2582,2583,2584,2585,2586,2587,2588,2589,2590,2591,2592,2593,2594,2595,2596,2597,2598,2599,2600,2601,2602,2603,2604,2605,2606,2607,2608,2609,2610,2611,2612,2613,2614,2615,2616,2617,2618,2619,2620,2621,2622,2623,2624,2625,2626,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2664,2665,2666,2667,2668,2669,2670,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2687,2688,2689,2690,2691,2692,2693,2694,2695,2696,2697,2698,2699,2700,2701,2702,2703,2704,2705,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2726,2727,2728,2729,2730,2731,2732,2733,2734,2735,2736,2737,2738,2739,2740,2741,2742,2743,2744,2745,2746,2747,2748,2749,2750,2751,2752,2753,2754,2755,2756,2757,2758,2759,2760,2761,2762,2763,2764,2765,2766,2767,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2780,2781,2782,2783,2784,2785,2786,2787,2788,2789,2790,2791,2792,2793,2794,2795,2796,2797,2798,2799,2800,2801,2802,2803,2804,2805,2806,2807,2808,2809,2810,2811,2812,2813,2814,2815,2816,2817,2818,2819,2820,2821,2822,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2834,2835,2836,2837,2838,2839,2840,2841,2842,2843,2844,2845,2846,2847,2848,2849,2850,2851,2852,2853,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2865,2866,2867,2868,2869,2870,2871,2872,2873,2874,2875,2876,2877,2878,2879,2880,2881,2882,2883,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,2898,2899,2900,2901,2902,2903,2904,2905,2906,2907,2908,2909,2910,2911,2912,2913,2914,2915,2916,2917,2918,2919,2920,2921,2922,2923,2924,2925,2926,2927,2928,2929,
- 2930,2931,2932,2933,2934,2935,2936,2937,2938,2939,2940,2941,2942,2943,2944,2945,2946,2947,2948,2949,2950,2951,2952,2953,2954,2955,2956,2957,2958,2959,2960,2961,2962,2963,2964,2965,2966,2967,2968,2969,2970,2971,2972,2973,2974,2975,2976,2977,2978,2979,2980,2981,2982,2983,2984,2985,2986,2987,2988,2989,2990,2991,2992,2993,2994,2995,2996,2997,2998,2999,3000,3001,3002,3003,3004,3005,3006,3007,3008,3009,3010,3011,3012,3013,3014,3015,3016,3017,3018,3019,3020,3021,3022,3023,3024,3025,3026,3027,3028,3029,3030,3031,3032,3033,3034,3035,3036,3037,3038,3039,3040,3041,3042,3043,3044,3045,3046,3047,3048,3049,3050,3051,3052,3053,3054,3055,3056,3057,3058,3059,3060,3061,3062,3063,3064,3065,3066,3067,3068,3069,3070,3071,3072,3073,3074,3075,3076,3077,3078,3079,3080,3081,3082,3083,3084,3085,3086,3087,3088,3089,3090,3091,3092,3093,3094,3095,3096,3097,3098,3099,3100,3101,3102,3103,3104,3105,3106,3107,3108,3109,3110,3111,3112,3113,3114,3115,3116,3117,3118,3119,3120,3121,3122,3123,3124,3125,3126,3127,3128,3129,3130,3131,3132,3133,3134,3135,3136,3137,3138,3139,3140,3141,3142,3143,3144,3145,3146,3147,3148,3149,3150,3151,3152,3153,3154,3155,3156,3157,3158,3159,3160,3161,3162,3163,3164,3165,3166,3167,3168,3169,3170,3171,3172,3173,3174,3175,3176,3177,3178,3179,3180,3181,3182,3183,3184,3185,3186,3187,3188,3189,3190,3191,3192,3193,3194,3195,3196,3197,3198,3199,3200,3201,3202,3203,3204,3205,3206,3207,3208,3209,3210,3211,3212,3213,3214,3215,3216,3217,3218,3219,3220,3221,3222,3223,3224,3225,3226,3227,3228,3229,3230,3231,3232,3233,3234,3235,3236,3237,3238,3239,3240,3241,3242,3243,3244,3245,3246,3247,3248,3249,128,129,130,129,131,130,128,132,129,133,131,129,129,132,134,129,134,133,135,134,132,134,136,133,134,135,137,136,134,137,138,139,140,138,141,139,140,139,142,139,141,143,142,139,144,144,139,143,3250,3251,3252,3253,3254,3255,3256,3257,3258,3259,3260,3261,3262,3263,3264,3265,3266,3267,3268,3269,3270,3271,3272,3273,3274,3275,3276,3277,3278,3279,3280,3281,3282,3283,3284,3285,3286,3287,3288,3289,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299,3300,3301,
- 3302,3303,3304,3305,3306,3307,3308,3309,3310,3311,3312,3313,3314,3315,3316,3317,3318,3319,3320,3321,3322,3323,3324,3325,3326,3327,3328,3329,3330,3331,3332,3333,3334,3335,3336,3337,3338,3339,3340,3341,3342,3343,3344,3345,3346,3347,3348,3349,3350,3351,3352,3353,3354,3355,3356,3357,3358,3359,3360,3361,3362,3363,3364,3365,3366,3367,3368,3369,3370,3371,3372,3373,3374,3375,145,146,147,145,148,146,147,149,145,148,145,150,151,145,149,151,150,145,151,149,152,150,151,153,154,151,152,151,155,153,155,151,154,156,157,158,158,157,159,158,160,156,161,158,159,160,158,162,162,158,161,162,163,160,164,162,161,163,162,165,165,162,164,3376,3377,3378,3379,3380,3381,3382,3383,3384,3385,3386,3387,3388,3389,3390,3391,3392,3393,3394,3395,3396,3397,3398,3399,3400,3401,3402,3403,3404,3405,3406,3407,3408,3409,3410,3411,3412,3413,3414,3415,3416,3417,3418,3419,3420,3421,3422,3423,3424,3425,3426,3427,3428,3429,3430,3431,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451,3452,3453,3454,3455,3456,3457,3458,3459,3460,3461,3462,3463,3464,3465,3466,3467,3468,3469,3470,3471,3472,3473,3474,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495,3496,3497,3498,3499,3500,3501,3502,3503,3504,3505,3506,3507,3508,3509,3510,3511,3512,3513,3514,3515,3516,3517,3518,3519,3520,3521,3522,3523,3524,3525,3526,3527,3528,3529,3530,3531,3532,3533,3534,3535,3536,3537,3538,3539,3540,3541,3542,3543,3544,3545,3546,3547,3548,3549,3550,3551,3552,3553,3554,3555,3556,3557,3558,3559,3560,3561,3562,3563,3564,3565,3566,3567,3568,3569,3570,3571,3572,3573,3574,3575,3576,3577,3578,3579,3580,3581,3582,3583,3584,3585,3586,3587,3588,3589,3590,3591,3592,3593,3594,3595,3596,3597,3598,3599,3600,3601,3602,3603,3604,3605,3606,3607,3608,3609,3610,3611,3612,3613,3614,3615,3616,3617,3618,3619,3620,3621,3622,3623,3624,3625,3626,3627,3628,3629,3630,3631,3632,3633,3634,3635,3636,3637,3638,3639,3640,3641,3642,3643,3644,3645,3646,3647,3648,3649,3650,3651,3652,3653,3654,3655,3656,3657,3658,3659,3660,3661,
- 3662,3663,3664,3665,3666,3667,3668,3669,3670,3671,3672,3673,3674,3675,3676,3677,3678,3679,3680,3681,3682,3683,3684,3685,3686,3687,3688,3689,3690,3691,3692,3693,3694,3695,3696,3697,3698,3699,3700,3701,3702,3703,3704,3705,3706,3707,3708,3709,3710,3711,3712,3713,3714,3715,3716,3717,3718,3719,3720,3721,3722,3723,3724,3725,3726,3727,3728,3729,3730,3731,3732,3733,3734,3735,3736,3737,3738,3739,3740,3741,3742,3743,3744,3745,3746,3747,3748,3749,3750,3751,3752,3753,3754,3755,3756,3757,3758,3759,3760,3761,3762,3763,3764,3765,3766,3767,3768,3769,3770,3771,3772,3773,3774,3775,3776,3777,3778,3779,3780,3781,3782,3783,3784,3785,3786,3787,3788,3789,3790,3791,3792,3793,3794,3795,3796,3797,3798,3799,3800,3801,3802,3803,3804,3805,3806,3807,3808,3809,3810,3811,3812,3813,3814,3815,3816,3817,3818,3819,3820,3821,3822,3823,3824,3825,3826,3827,3828,3829,3830,3831,3832,3833,3834,3835,3836,3837,3838,3839,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3851,3852,3853,3854,3855,3856,3857,3858,3859,3860,3861,3862,3863,3864,3865,3866,3867,3868,3869,3870,3871,3872,3873,3874,3875,3876,3877,3878,3879,3880,3881,3882,3883,3884,3885,3886,3887,3888,3889,3890,3891,3892,3893,3894,3895,3896,3897,3898,3899,3900,3901,3902,3903,3904,3905,3906,3907,3908,3909,3910,3911,3912,3913,3914,3915,3916,3917,3918,3919,3920,3921,3922,3923,3924,3925,3926,3927,3928,3929,3930,3931,3932,3933,3934,3935,3936,3937,3938,3939,3940,3941,3942,3943,3944,3945,3946,3947,3948,3949,3950,3951,3952,3953,3954,3955,3956,3957,3958,3959,3960,3961,3962,3963,3964,3965,3966,3967,3968,3969,3970,3971,3972,3973,3974,3975,3976,3977,3978,3979,3980,3981,3982,3983,3984,3985,3986,3987,3988,3989,3990,3991,3992,3993,3994,3995,3996,3997,3998,3999,4000,4001,4002,4003,4004,4005,4006,4007,4008,4009,4010,4011,4012,4013,4014,4015,4016,4017,4018,4019,4020,4021,4022,4023,4024,4025,4026,4027,4028,4029,4030,4031,4032,4033,4034,4035,4036,4037,4038,4039,4040,4041,4042,4043,4044,4045,4046,4047,4048,4049,4050,4051,4052,4053,4054,4055,4056,4057,4058,4059,4060,4061,4062,4063,4064,4065,4066,4067,4068,4069,4070,4071,
- 4072,4073,4074,4075,4076,4077,4078,4079,4080,4081,4082,4083,4084,4085,4086,4087,4088,4089,4090,4091,4092,4093,4094,4095,4096,4097,4098,4099,4100,4101,4102,4103,4104,4105,4106,4107,4108,4109,4110,4111,4112,4113,4114,4115,4116,4117,4118,4119,4120,4121,4122,4123,4124,4125,4126,4127,4128,4129,4130,4131,4132,4133,4134,4135,4136,4137,4138,4139,4140,4141,4142,4143,4144,4145,4146,4147,4148,4149,4150,4151,4152,4153,4154,4155,4156,4157,4158,4159,4160,4161,4162,4163,4164,4165,4166,4167,4168,4169,4170,4171,4172,4173,4174,4175,4176,4177,4178,4179,4180,4181,4182,4183,4184,4185,4186,4187,4188,4189,4190,4191,4192,4193,4194,4195,4196,4197,4198,4199,4200,4201,4202,4203,4204,4205,4206,4207,4208,4209,4210,4211,4212,4213,4214,4215,4216,4217,4218,4219,4220,4221,4222,4223,4224,4225,4226,4227,4228,4229,4230,4231,4232,4233,4234,4235,4236,4237,4238,4239,4240,4241,4242,4243,4244,4245,4246,4247,4248,4249,4250,4251,4252,4253,4254,4255,4256,4257,4258,4259,4260,4261,4262,4263,4264,4265,4266,4267,4268,4269,4270,4271,4272,4273,4274,4275,4276,4277,4278,4279,4280,4281,4282,4283,4284,4285,4286,4287,4288,4289,4290,4291,4292,4293,4294,4295,4296,4297,4298,4299,4300,4301,4302,4303,4304,4305,4306,4307,4308,4309,4310,4311,4312,4313,4314,4315,4316,4317,4318,4319,4320,4321,4322,4323,4324,4325,4326,4327,4328,4329,4330,4331,4332,4333,4334,4335,4336,4337,4338,4339,4340,4341,4342,4343,4344,4345,4346,4347,4348,4349,4350,4351,4352,4353,4354,4355,4356,4357,4358,4359,4360,4361,4362,4363,4364,4365,4366,4367,4368,4369,4370,4371,4372,4373,4374,4375,4376,4377,4378,4379,4380,4381,4382,4383,4384,4385,4386,4387,4388,4389,4390,4391,4392,4393,4394,4395,4396,4397,4398,4399,4400,4401,4402,4403,4404,4405,4406,4407,4408,4409,4410,4411,4412,4413,4414,4415,4416,4417,4418,4419,4420,4421,4422,4423,4424,4425,4426,4427,4428,4429,4430,4431,4432,4433,4434,4435,4436,4437,4438,4439,4440,4441,4442,4443,4444,4445,4446,4447,4448,4449,4450,4451,4452,4453,4454,4455,4456,4457,4458,4459,4460,4461,4462,4463,4464,4465,4466,4467,4468,4469,4470,4471,4472,4473,4474,4475,4476,4477,4478,4479,4480,4481,
- 4482,4483,4484,4485,4486,4487,4488,4489,4490,4491,4492,4493,4494,4495,4496,4497,4498,4499,4500,4501,4502,4503,4504,4505,4506,4507,4508,4509,4510,4511,4512,4513,4514,4515,4516,4517,4518,4519,4520,4521,4522,4523,4524,4525,4526,4527,4528,4529,4530,4531,4532,4533,4534,4535,4536,4537,4538,4539,4540,4541,4542,4543,4544,4545,4546,4547,4548,4549,4550,4551,4552,4553,4554,4555,4556,4557,4558,4559,4560,4561,4562,4563,4564,4565,4566,4567,4568,4569,4570,4571,4572,4573,4574,4575,4576,4577,4578,4579,4580,4581,4582,4583,4584,4585,4586,4587,4588,4589,4590,4591,4592,4593,4594,4595,4596,4597,4598,4599,4600,4601,4602,4603,4604,4605,4606,4607,4608,4609,4610,4611,4612,4613,4614,4615,4616,4617,4618,4619,4620,4621,4622,4623,4624,4625,4626,4627,4628,4629,4630,4631,4632,4633,4634,4635,4636,4637,4638,4639,4640,4641,4642,4643,4644,4645,4646,4647,4648,4649,4650,4651,4652,4653,4654,4655,4656,4657,4658,4659,4660,4661,4662,4663,4664,4665,4666,4667,4668,4669,4670,4671,4672,4673,4674,4675,4676,4677,4678,4679,4680,4681,4682,4683,4684,4685,4686,4687,4688,4689,4690,4691,4692,4693,4694,4695,4696,4697,4698,4699,4700,4701,4702,4703,4704,4705,4706,4707,4708,4709,4710,4711,4712,4713,4714,4715,4716,4717,4718,4719,4720,4721,4722,4723,4724,4725,4726,4727,4728,4729,4730,4731,4732,4733,4734,4735,4736,4737,4738,4739,4740,4741,4742,4743,4744,4745,4746,4747,4748,4749,4750,4751,4752,4753,4754,4755,4756,4757,4758,4759,4760,4761,4762,4763,4764,4765,4766,4767,4768,4769,4770,4771,4772,4773,4774,4775,4776,4777,4778,4779,4780,4781,4782,4783,4784,4785,4786,4787,4788,4789,4790,4791,4792,4793,4794,4795,4796,4797,4798,4799,4800,4801,4802,4803,4804,4805,4806,4807,4808,4809,4810,4811,4812
- }
- }
- LayerElementUV: 1 {
- Version: 101
- Name: "LightMapUV"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *3556 {
- a: 0.5244140625,0.8748779296875,0.52783203125,0.89117431640625,0.51171875,0.8974609375,0.53515625,0.88507080078125,0.51416015625,0.90509033203125,0.54296875,0.90576171875,0.5361328125,0.91156005859375,0.55126953125,0.93426513671875,0.52294921875,0.90911865234375,0.51025390625,0.91278076171875,0.499755859375,0.90765380859375,0.51171875,0.92730712890625,0.5185546875,0.931640625,0.513671875,0.952972412109375,0.5302734375,0.936767578125,0.541015625,0.935546875,0.53173828125,0.96844482421875,0.54345703125,0.961822509765625,0.55322265625,0.96392822265625,0.5361328125,0.979339599609375,0.54443359375,0.986564636230469,0.5244140625,0.991806030273438,0.5244140625,0.982681274414063,0.5166015625,0.980178833007813,0.50927734375,0.987716674804688,0.5166015625,0.958892822265625,0.51025390625,0.972732543945313,0.50244140625,0.970108032226563,0.7705078125,0.8748779296875,0.77392578125,0.89117431640625,0.7578125,0.8974609375,0.78125,0.88507080078125,0.76025390625,0.90509033203125,0.78857421875,0.90576171875,0.78173828125,0.91156005859375,0.796875,0.93426513671875,0.7685546875,0.90911865234375,0.75634765625,0.91278076171875,0.74560546875,0.90765380859375,0.75732421875,0.92730712890625,0.7646484375,0.931640625,0.75927734375,0.952972412109375,0.7763671875,0.936767578125,0.787109375,0.935546875,0.77734375,0.96844482421875,0.78955078125,0.961822509765625,0.79931640625,0.96392822265625,0.78173828125,0.979339599609375,0.7900390625,0.986564636230469,0.77001953125,0.991806030273438,0.7705078125,0.982681274414063,0.7626953125,0.980178833007813,0.7548828125,0.987716674804688,0.7626953125,0.958892822265625,0.75634765625,0.972732543945313,0.748046875,0.970108032226563,0.6064453125,0.8748779296875,0.60986328125,0.89117431640625,0.59375,0.8974609375,0.6171875,0.88507080078125,0.59619140625,0.90509033203125,0.625,0.90576171875,0.61767578125,0.91156005859375,0.63330078125,0.93426513671875,0.6044921875,0.90911865234375,0.59228515625,0.91278076171875,0.58154296875,0.90765380859375,0.59326171875,0.92730712890625,0.6005859375,0.931640625,
- 0.595703125,0.952972412109375,0.6123046875,0.936767578125,0.623046875,0.935546875,0.61376953125,0.96844482421875,0.62548828125,0.961822509765625,0.63525390625,0.96392822265625,0.6181640625,0.979339599609375,0.6259765625,0.986564636230469,0.6064453125,0.991806030273438,0.6064453125,0.982681274414063,0.5986328125,0.980178833007813,0.59130859375,0.987716674804688,0.5986328125,0.958892822265625,0.59228515625,0.972732543945313,0.58447265625,0.970108032226563,0.6884765625,0.8748779296875,0.69189453125,0.89117431640625,0.67578125,0.8974609375,0.69921875,0.88507080078125,0.67822265625,0.90509033203125,0.70703125,0.90576171875,0.69970703125,0.91156005859375,0.71484375,0.93426513671875,0.6865234375,0.90911865234375,0.67431640625,0.91278076171875,0.66357421875,0.90765380859375,0.67529296875,0.92730712890625,0.6826171875,0.931640625,0.67724609375,0.952972412109375,0.6943359375,0.936767578125,0.705078125,0.935546875,0.6953125,0.96844482421875,0.70751953125,0.961822509765625,0.71728515625,0.96392822265625,0.7001953125,0.979339599609375,0.7080078125,0.986564636230469,0.68798828125,0.991806030273438,0.6884765625,0.982681274414063,0.6806640625,0.980178833007813,0.6728515625,0.987716674804688,0.6806640625,0.958892822265625,0.67431640625,0.972732543945313,0.666015625,0.970108032226563,0.22216796875,0.973129272460938,0.2369384765625,0.991806030273438,0.2115478515625,0.989959716796875,0.204833984375,0.95404052734375,0.2379150390625,0.983596801757813,0.265869140625,0.97271728515625,0.2174072265625,0.9505615234375,0.2193603515625,0.9151611328125,0.259033203125,0.96142578125,0.278076171875,0.93988037109375,0.245361328125,0.947052001953125,0.27099609375,0.938232421875,0.265625,0.91400146484375,0.228515625,0.91876220703125,0.2548828125,0.91790771484375,0.226806640625,0.88848876953125,0.2208251953125,0.8817138671875,0.2442626953125,0.90264892578125,0.231201171875,0.878173828125,0.2274169921875,0.85595703125,0.2442626953125,0.8704833984375,0.25390625,0.89361572265625,0.270263671875,0.8853759765625,0.2452392578125,0.8822021484375,0.4189453125,
- 0.973129272460938,0.43359375,0.991806030273438,0.408203125,0.989959716796875,0.401611328125,0.95404052734375,0.4345703125,0.983596801757813,0.462646484375,0.97271728515625,0.4140625,0.9505615234375,0.416015625,0.9151611328125,0.455810546875,0.96142578125,0.474853515625,0.93988037109375,0.44189453125,0.947052001953125,0.4677734375,0.938232421875,0.46240234375,0.91400146484375,0.42529296875,0.91876220703125,0.45166015625,0.91790771484375,0.42333984375,0.88848876953125,0.41748046875,0.8817138671875,0.44091796875,0.90264892578125,0.427978515625,0.878173828125,0.424072265625,0.85595703125,0.44091796875,0.8704833984375,0.45068359375,0.89361572265625,0.467041015625,0.8853759765625,0.44189453125,0.8822021484375,0.12384033203125,0.973129272460938,0.1385498046875,0.991806030273438,0.11322021484375,0.989959716796875,0.10650634765625,0.95404052734375,0.1396484375,0.983596801757813,0.1676025390625,0.97271728515625,0.11907958984375,0.9505615234375,0.1209716796875,0.9151611328125,0.1607666015625,0.96142578125,0.179931640625,0.93988037109375,0.14697265625,0.947052001953125,0.1727294921875,0.938232421875,0.1673583984375,0.91400146484375,0.130126953125,0.91876220703125,0.1566162109375,0.91790771484375,0.12841796875,0.88848876953125,0.1224365234375,0.8817138671875,0.14599609375,0.90264892578125,0.1328125,0.878173828125,0.1290283203125,0.85595703125,0.14599609375,0.8704833984375,0.155517578125,0.89361572265625,0.171875,0.8853759765625,0.1468505859375,0.8822021484375,0.320556640625,0.973129272460938,0.335205078125,0.991806030273438,0.309814453125,0.989959716796875,0.30322265625,0.95404052734375,0.336181640625,0.983596801757813,0.3642578125,0.97271728515625,0.315673828125,0.9505615234375,0.317626953125,0.9151611328125,0.357421875,0.96142578125,0.37646484375,0.93988037109375,0.34375,0.947052001953125,0.369384765625,0.938232421875,0.364013671875,0.91400146484375,0.326904296875,0.91876220703125,0.353271484375,0.91790771484375,0.3251953125,0.88848876953125,0.319091796875,0.8817138671875,0.342529296875,0.90264892578125,0.32958984375,0.878173828125,
- 0.32568359375,0.85595703125,0.342529296875,0.8704833984375,0.352294921875,0.89361572265625,0.36865234375,0.8853759765625,0.343505859375,0.8822021484375,0.0254974365234375,0.973129272460938,0.040283203125,0.991806030273438,0.0149154663085938,0.989959716796875,0.0081939697265625,0.95404052734375,0.041290283203125,0.983596801757813,0.06927490234375,0.97271728515625,0.020751953125,0.9505615234375,0.02264404296875,0.9151611328125,0.062469482421875,0.96142578125,0.08154296875,0.93988037109375,0.04864501953125,0.947052001953125,0.074462890625,0.938232421875,0.06903076171875,0.91400146484375,0.0318603515625,0.91876220703125,0.058349609375,0.91790771484375,0.030120849609375,0.88848876953125,0.0241241455078125,0.8817138671875,0.047637939453125,0.90264892578125,0.034515380859375,0.878173828125,0.03076171875,0.85595703125,0.047637939453125,0.8704833984375,0.057220458984375,0.89361572265625,0.0736083984375,0.8853759765625,0.048492431640625,0.8822021484375,0.9697265625,0.46728515625,0.98046875,0.435546875,0.95068359375,0.43115234375,0.9345703125,0.4423828125,0.927734375,0.4326171875,0.9296875,0.44189453125,0.93896484375,0.42919921875,0.92578125,0.42529296875,0.96240234375,0.42431640625,0.9375,0.41796875,0.962890625,0.41796875,0.87744140625,0.4072265625,0.84521484375,0.39697265625,0.8408203125,0.42626953125,0.85205078125,0.4423828125,0.84228515625,0.44921875,0.8515625,0.447265625,0.83935546875,0.4384765625,0.83544921875,0.451171875,0.833984375,0.41455078125,0.828125,0.439453125,0.82763671875,0.4140625,0.54931640625,0.42431640625,0.517578125,0.4345703125,0.51318359375,0.4052734375,0.5244140625,0.38916015625,0.5146484375,0.38232421875,0.52392578125,0.38427734375,0.51123046875,0.39306640625,0.50732421875,0.38037109375,0.50634765625,0.4169921875,0.5,0.39208984375,0.5,0.4169921875,0.8115234375,0.4404296875,0.77978515625,0.451171875,0.775390625,0.42138671875,0.78662109375,0.4052734375,0.77685546875,0.3984375,0.7861328125,0.400390625,0.77392578125,0.40966796875,0.76953125,0.39697265625,0.7685546875,0.43310546875,0.76220703125,0.408203125,
- 0.76220703125,0.43359375,0.59033203125,0.29150390625,0.572265625,0.3037109375,0.5654296875,0.29150390625,0.5810546875,0.259765625,0.591796875,0.263671875,0.5732421875,0.24560546875,0.58203125,0.244140625,0.12188720703125,0.21826171875,0.1318359375,0.224609375,0.1314697265625,0.24267578125,0.1151123046875,0.22998046875,0.10980224609375,0.2236328125,0.113525390625,0.25439453125,0.10650634765625,0.24267578125,0.6396484375,0.29150390625,0.62158203125,0.3037109375,0.61474609375,0.29150390625,0.63037109375,0.259765625,0.640625,0.263671875,0.62255859375,0.24560546875,0.630859375,0.244140625,0.1710205078125,0.21826171875,0.1810302734375,0.224609375,0.1806640625,0.24267578125,0.164306640625,0.22998046875,0.158935546875,0.2236328125,0.1627197265625,0.25439453125,0.1556396484375,0.24267578125,0.951171875,0.29150390625,0.93310546875,0.3037109375,0.92578125,0.29150390625,0.94140625,0.259765625,0.9521484375,0.263671875,0.93408203125,0.24560546875,0.9423828125,0.244140625,0.8759765625,0.2021484375,0.8857421875,0.20849609375,0.88525390625,0.22607421875,0.869140625,0.2138671875,0.86376953125,0.20703125,0.8671875,0.23779296875,0.8603515625,0.22607421875,0.41015625,0.29150390625,0.39208984375,0.3037109375,0.385009765625,0.29150390625,0.40087890625,0.259765625,0.411376953125,0.263671875,0.393310546875,0.24560546875,0.401611328125,0.244140625,0.22021484375,0.2021484375,0.2301025390625,0.20849609375,0.2298583984375,0.22607421875,0.21337890625,0.2138671875,0.2081298828125,0.20703125,0.2119140625,0.23779296875,0.204833984375,0.22607421875,0.541015625,0.29150390625,0.52294921875,0.3037109375,0.51611328125,0.29150390625,0.53173828125,0.259765625,0.54248046875,0.263671875,0.5244140625,0.24560546875,0.53271484375,0.244140625,0.371826171875,0.736083984375,0.365478515625,0.74609375,0.34765625,0.745849609375,0.360107421875,0.729248046875,0.366943359375,0.72412109375,0.3359375,0.727783203125,0.34765625,0.720703125,0.17724609375,0.17236328125,0.17724609375,0.18798828125,0.1748046875,0.1865234375,0.181396484375,0.173828125,0.180419921875,0.18896484375,
- 0.1868896484375,0.17431640625,0.1859130859375,0.15771484375,0.1790771484375,0.1611328125,0.172607421875,0.1640625,0.179931640625,0.14892578125,0.172119140625,0.1513671875,0.11163330078125,0.17236328125,0.11175537109375,0.18798828125,0.1092529296875,0.1865234375,0.11590576171875,0.173828125,0.11480712890625,0.18896484375,0.121337890625,0.17431640625,0.12030029296875,0.15771484375,0.113525390625,0.1611328125,0.1070556640625,0.1640625,0.1143798828125,0.14892578125,0.10650634765625,0.1513671875,0.308349609375,0.17236328125,0.308349609375,0.18798828125,0.305908203125,0.1865234375,0.3125,0.173828125,0.3115234375,0.18896484375,0.31787109375,0.17431640625,0.31689453125,0.15771484375,0.31005859375,0.1611328125,0.3037109375,0.1640625,0.31103515625,0.14892578125,0.30322265625,0.1513671875,0.1444091796875,0.17236328125,0.14453125,0.18798828125,0.1419677734375,0.1865234375,0.148681640625,0.173828125,0.1475830078125,0.18896484375,0.154052734375,0.17431640625,0.153076171875,0.15771484375,0.146240234375,0.1611328125,0.1397705078125,0.1640625,0.147216796875,0.14892578125,0.1392822265625,0.1513671875,0.0133209228515625,0.15576171875,0.013397216796875,0.171875,0.010894775390625,0.169921875,0.017578125,0.15771484375,0.0164794921875,0.17236328125,0.022979736328125,0.158203125,0.0219879150390625,0.14111328125,0.0151748657226563,0.14453125,0.0087127685546875,0.14794921875,0.0160675048828125,0.1328125,0.0081939697265625,0.13525390625,0.34326171875,0.1396484375,0.346923828125,0.1298828125,0.357421875,0.13623046875,0.3359375,0.130859375,0.358154296875,0.12548828125,0.3427734375,0.11767578125,0.41796875,0.807373046875,0.423828125,0.8177490234375,0.41796875,0.8255615234375,0.429931640625,0.8106689453125,0.428466796875,0.827880859375,0.433349609375,0.820556640625,0.0081939697265625,0.08642578125,0.0140914916992188,0.0966796875,0.0081939697265625,0.1044921875,0.020172119140625,0.08935546875,0.018798828125,0.10693359375,0.0237274169921875,0.099609375,0.677734375,0.579833984375,0.6474609375,0.566650390625,0.671875,0.55810546875,0.671875,0.60107421875,
- 0.6962890625,0.556396484375,0.6845703125,0.596923828125,0.6748046875,0.63134765625,0.6953125,0.59814453125,0.2315673828125,0.2802734375,0.2208251953125,0.27587890625,0.2216796875,0.26025390625,0.2303466796875,0.30810546875,0.213134765625,0.26171875,0.2125244140625,0.29443359375,0.2120361328125,0.31982421875,0.204833984375,0.30810546875,0.0841064453125,0.29638671875,0.07330322265625,0.29248046875,0.07421875,0.27685546875,0.082763671875,0.32470703125,0.06561279296875,0.2783203125,0.06494140625,0.310546875,0.064453125,0.33642578125,0.057373046875,0.32470703125,0.85693359375,0.565673828125,0.82763671875,0.55322265625,0.85107421875,0.545166015625,0.85107421875,0.586181640625,0.8740234375,0.54345703125,0.86328125,0.58203125,0.85400390625,0.614990234375,0.87353515625,0.583251953125,0.9853515625,0.345703125,0.974609375,0.341796875,0.9755859375,0.326171875,0.984375,0.37353515625,0.966796875,0.3271484375,0.96630859375,0.35986328125,0.9658203125,0.38525390625,0.958984375,0.37353515625,0.354248046875,0.37841796875,0.384521484375,0.3916015625,0.35986328125,0.39990234375,0.359375,0.3525390625,0.3359375,0.40185546875,0.34765625,0.36083984375,0.344970703125,0.3466796875,0.336669921875,0.35986328125,0.97509765625,0.0712890625,0.98046875,0.0810546875,0.97509765625,0.08837890625,0.986328125,0.07421875,0.98486328125,0.09033203125,0.98974609375,0.08349609375,0.04766845703125,0.123046875,0.051025390625,0.1142578125,0.0609130859375,0.1201171875,0.04095458984375,0.11474609375,0.061492919921875,0.1103515625,0.047332763671875,0.10302734375,0.74560546875,0.09033203125,0.755859375,0.08447265625,0.763671875,0.09033203125,0.7490234375,0.07861328125,0.76611328125,0.080078125,0.7587890625,0.0751953125,0.352294921875,0.02490234375,0.361083984375,0.02001953125,0.367919921875,0.02490234375,0.355224609375,0.0146484375,0.369873046875,0.015625,0.36376953125,0.01171875,0.82763671875,0.0546875,0.8330078125,0.064453125,0.82763671875,0.07177734375,0.8388671875,0.05810546875,0.83740234375,0.07421875,0.84228515625,0.0673828125,0.22119140625,0.0576171875,0.2308349609375,
- 0.05224609375,0.2381591796875,0.0576171875,0.2242431640625,0.04638671875,0.2403564453125,0.0478515625,0.2335205078125,0.04296875,0.966796875,0.17236328125,0.970703125,0.16162109375,0.98193359375,0.1689453125,0.958984375,0.16259765625,0.982421875,0.1572265625,0.96630859375,0.14892578125,0.286865234375,0.8607177734375,0.295166015625,0.85595703125,0.30126953125,0.8607177734375,0.289306640625,0.85107421875,0.30322265625,0.8521728515625,0.29736328125,0.8482666015625,0.6875,0.1396484375,0.69091796875,0.1298828125,0.70166015625,0.13623046875,0.68017578125,0.130859375,0.7021484375,0.12548828125,0.68701171875,0.11767578125,0.787109375,0.25,0.77783203125,0.2314453125,0.77685546875,0.24609375,0.78564453125,0.27587890625,0.76953125,0.232421875,0.77197265625,0.26611328125,0.7685546875,0.287109375,0.76220703125,0.27587890625,0.195068359375,0.123046875,0.198486328125,0.1142578125,0.2083740234375,0.1201171875,0.1884765625,0.11474609375,0.208984375,0.1103515625,0.19482421875,0.10302734375,0.5,0.09033203125,0.51025390625,0.08447265625,0.51806640625,0.09033203125,0.5029296875,0.07861328125,0.5205078125,0.07958984375,0.5126953125,0.07470703125,0.270263671875,0.0234375,0.275390625,0.0322265625,0.270263671875,0.0390625,0.28076171875,0.0263671875,0.279541015625,0.041015625,0.283935546875,0.03466796875,0.8603515625,0.041015625,0.869140625,0.0361328125,0.8759765625,0.041015625,0.86328125,0.03076171875,0.87841796875,0.0322265625,0.87158203125,0.02783203125,0.90966796875,0.0849609375,0.9169921875,0.08203125,0.912109375,0.07373046875,0.91650390625,0.09033203125,0.92041015625,0.0732421875,0.9267578125,0.0849609375,0.441650390625,0.1396484375,0.445068359375,0.1298828125,0.455810546875,0.13623046875,0.434326171875,0.130859375,0.45654296875,0.12548828125,0.441162109375,0.11767578125,0.66357421875,0.659912109375,0.66943359375,0.670166015625,0.66357421875,0.677978515625,0.67578125,0.6630859375,0.67431640625,0.680419921875,0.67919921875,0.673095703125,0.51611328125,0.33203125,0.52197265625,0.34228515625,0.51611328125,0.35009765625,0.5283203125,0.33544921875,
- 0.52685546875,0.3525390625,0.53173828125,0.34521484375,0.96044921875,0.656982421875,0.9912109375,0.670166015625,0.96630859375,0.6787109375,0.96630859375,0.6357421875,0.9423828125,0.680419921875,0.9541015625,0.639892578125,0.9638671875,0.60546875,0.94287109375,0.638671875,0.13330078125,0.29638671875,0.12249755859375,0.29248046875,0.12335205078125,0.27685546875,0.1319580078125,0.32470703125,0.11480712890625,0.2783203125,0.1141357421875,0.310546875,0.1136474609375,0.33642578125,0.10650634765625,0.32470703125,0.493896484375,0.31298828125,0.48291015625,0.30859375,0.48388671875,0.29345703125,0.492431640625,0.3408203125,0.475341796875,0.29443359375,0.474609375,0.3271484375,0.47412109375,0.3525390625,0.467041015625,0.3408203125,0.7958984375,0.60888671875,0.8251953125,0.62158203125,0.80126953125,0.629638671875,0.80126953125,0.588623046875,0.7783203125,0.63134765625,0.78955078125,0.592529296875,0.798828125,0.559814453125,0.77880859375,0.591552734375,0.755859375,0.3291015625,0.7451171875,0.3251953125,0.74609375,0.3095703125,0.7548828125,0.357421875,0.7373046875,0.31103515625,0.73681640625,0.34326171875,0.736328125,0.369140625,0.7294921875,0.357421875,0.2230224609375,0.37060546875,0.25341796875,0.35693359375,0.2288818359375,0.3486328125,0.2283935546875,0.39599609375,0.204833984375,0.3466796875,0.2164306640625,0.3876953125,0.2138671875,0.40185546875,0.2054443359375,0.388671875,0.499755859375,0.0576171875,0.50927734375,0.05224609375,0.5166015625,0.0576171875,0.5029296875,0.04638671875,0.51904296875,0.0478515625,0.51220703125,0.04296875,0.14599609375,0.123046875,0.1492919921875,0.1142578125,0.1591796875,0.1201171875,0.1392822265625,0.11474609375,0.1597900390625,0.1103515625,0.1456298828125,0.10302734375,0.6474609375,0.09033203125,0.65771484375,0.08447265625,0.66552734375,0.09033203125,0.650390625,0.07861328125,0.66796875,0.080078125,0.66064453125,0.0751953125,0.30322265625,0.02490234375,0.31201171875,0.02001953125,0.318603515625,0.02490234375,0.305908203125,0.0146484375,0.32080078125,0.015625,0.314453125,0.01171875,0.1884765625,
- 0.0546875,0.1939697265625,0.064453125,0.1884765625,0.07177734375,0.1995849609375,0.05810546875,0.1983642578125,0.07421875,0.202880859375,0.0673828125,0.45068359375,0.0576171875,0.460205078125,0.05224609375,0.467529296875,0.0576171875,0.453857421875,0.04638671875,0.4697265625,0.0478515625,0.462890625,0.04296875,0.212646484375,0.17236328125,0.216552734375,0.16162109375,0.22802734375,0.1689453125,0.204833984375,0.16259765625,0.228759765625,0.1572265625,0.2122802734375,0.14892578125,0.1884765625,0.8607177734375,0.19677734375,0.85595703125,0.203125,0.8607177734375,0.191162109375,0.85107421875,0.2049560546875,0.8521728515625,0.1990966796875,0.8482666015625,0.63818359375,0.1396484375,0.6416015625,0.1298828125,0.65234375,0.13623046875,0.630859375,0.130859375,0.65283203125,0.12548828125,0.6376953125,0.11767578125,0.49072265625,0.1396484375,0.494384765625,0.1298828125,0.5048828125,0.13623046875,0.4833984375,0.130859375,0.50537109375,0.12548828125,0.490478515625,0.11767578125,0.352294921875,0.09033203125,0.362548828125,0.08447265625,0.370361328125,0.09033203125,0.355712890625,0.07861328125,0.372802734375,0.07958984375,0.365478515625,0.07470703125,0.270263671875,0.06982421875,0.2763671875,0.080078125,0.270263671875,0.087890625,0.2822265625,0.0732421875,0.281005859375,0.09033203125,0.285888671875,0.0830078125,0.97314453125,0.727294921875,0.9423828125,0.714111328125,0.96728515625,0.70556640625,0.96728515625,0.74853515625,0.9912109375,0.703857421875,0.9794921875,0.744384765625,0.9697265625,0.77880859375,0.99072265625,0.74560546875,0.36279296875,0.2802734375,0.351806640625,0.27587890625,0.352783203125,0.26025390625,0.361328125,0.30810546875,0.34423828125,0.26171875,0.343505859375,0.29443359375,0.343017578125,0.31982421875,0.3359375,0.30810546875,0.8544921875,0.3291015625,0.84375,0.3251953125,0.84423828125,0.3095703125,0.85302734375,0.357421875,0.8359375,0.31103515625,0.83544921875,0.34326171875,0.8349609375,0.369140625,0.82763671875,0.357421875,0.39111328125,0.585693359375,0.37841796875,0.614990234375,0.370361328125,0.59130859375,
- 0.411376953125,0.59130859375,0.36865234375,0.568359375,0.407470703125,0.579345703125,0.440185546875,0.588623046875,0.408447265625,0.56884765625,0.1824951171875,0.29638671875,0.171630859375,0.29248046875,0.1724853515625,0.27685546875,0.18115234375,0.32470703125,0.1639404296875,0.2783203125,0.163330078125,0.310546875,0.162841796875,0.33642578125,0.1556396484375,0.32470703125,0.0919189453125,0.39453125,0.1224365234375,0.408203125,0.0977783203125,0.41650390625,0.09722900390625,0.36865234375,0.07373046875,0.41845703125,0.0853271484375,0.37744140625,0.082763671875,0.36328125,0.0743408203125,0.37646484375,0.1392822265625,0.07421875,0.14892578125,0.068359375,0.1561279296875,0.07421875,0.142333984375,0.06298828125,0.158447265625,0.06396484375,0.151611328125,0.0595703125,0.89990234375,0.1396484375,0.9033203125,0.13037109375,0.9130859375,0.13671875,0.89306640625,0.13134765625,0.91357421875,0.12646484375,0.8994140625,0.119140625,0.59814453125,0.09033203125,0.6083984375,0.08447265625,0.6162109375,0.09033203125,0.6015625,0.07861328125,0.61865234375,0.080078125,0.611328125,0.0751953125,0.172119140625,0.02490234375,0.180908203125,0.02001953125,0.1876220703125,0.02490234375,0.1749267578125,0.0146484375,0.189697265625,0.015625,0.183349609375,0.01171875,0.0081939697265625,0.03857421875,0.0136795043945313,0.04833984375,0.0081939697265625,0.05517578125,0.0193328857421875,0.04150390625,0.01806640625,0.0576171875,0.02264404296875,0.05078125,0.401611328125,0.0576171875,0.4111328125,0.05224609375,0.41845703125,0.0576171875,0.404541015625,0.04638671875,0.420654296875,0.0478515625,0.413818359375,0.04296875,0.8515625,0.17236328125,0.85595703125,0.16162109375,0.8671875,0.1689453125,0.84423828125,0.16259765625,0.86767578125,0.1572265625,0.8515625,0.14892578125,0.09014892578125,0.8607177734375,0.09844970703125,0.85595703125,0.104736328125,0.8607177734375,0.0927734375,0.85107421875,0.106689453125,0.8521728515625,0.10076904296875,0.8482666015625,0.736328125,0.1396484375,0.740234375,0.1298828125,0.7509765625,0.13623046875,0.7294921875,0.130859375,
- 0.75146484375,0.12548828125,0.736328125,0.11767578125,0.26123046875,0.1396484375,0.264892578125,0.1298828125,0.275634765625,0.13623046875,0.25390625,0.130859375,0.276123046875,0.12548828125,0.2607421875,0.11767578125,0.25390625,0.565673828125,0.264404296875,0.559814453125,0.272216796875,0.565673828125,0.25732421875,0.5537109375,0.2744140625,0.55517578125,0.26708984375,0.550048828125,0.4833984375,0.25,0.489501953125,0.2607421875,0.4833984375,0.2685546875,0.495361328125,0.25341796875,0.494140625,0.2705078125,0.4990234375,0.26318359375,0.73095703125,0.60791015625,0.76171875,0.62109375,0.73681640625,0.629638671875,0.73681640625,0.586669921875,0.712890625,0.63134765625,0.724609375,0.5908203125,0.734375,0.556396484375,0.71337890625,0.589599609375,0.9853515625,0.542236328125,0.974609375,0.5380859375,0.9755859375,0.522705078125,0.984375,0.5703125,0.966796875,0.52392578125,0.96630859375,0.556396484375,0.9658203125,0.58203125,0.958984375,0.5703125,0.28076171875,0.263671875,0.27001953125,0.259765625,0.270751953125,0.244140625,0.279296875,0.29150390625,0.26220703125,0.2451171875,0.261474609375,0.27783203125,0.260986328125,0.3037109375,0.25390625,0.29150390625,0.332275390625,0.565673828125,0.30322265625,0.55322265625,0.32666015625,0.545166015625,0.32666015625,0.586181640625,0.349609375,0.54345703125,0.338623046875,0.58203125,0.329345703125,0.614990234375,0.34912109375,0.583251953125,0.80517578125,0.3291015625,0.79443359375,0.3251953125,0.79541015625,0.3095703125,0.8037109375,0.357421875,0.78662109375,0.31103515625,0.7861328125,0.34326171875,0.78564453125,0.369140625,0.7783203125,0.357421875,0.0263824462890625,0.39453125,0.056854248046875,0.408203125,0.032196044921875,0.41650390625,0.03167724609375,0.36865234375,0.0081939697265625,0.41845703125,0.0197906494140625,0.37744140625,0.0172119140625,0.36328125,0.008819580078125,0.37646484375,0.59814453125,0.0576171875,0.60791015625,0.05224609375,0.615234375,0.0576171875,0.60107421875,0.04638671875,0.6171875,0.0478515625,0.6103515625,0.04296875,0.78515625,0.1396484375,0.78857421875,0.13037109375,
- 0.79833984375,0.13671875,0.7783203125,0.13134765625,0.798828125,0.12646484375,0.78466796875,0.119140625,0.6962890625,0.09033203125,0.70654296875,0.08447265625,0.71435546875,0.09033203125,0.69970703125,0.07861328125,0.716796875,0.080078125,0.70947265625,0.0751953125,0.401611328125,0.02490234375,0.410400390625,0.02001953125,0.4169921875,0.02490234375,0.404296875,0.0146484375,0.419189453125,0.015625,0.412841796875,0.01171875,0.30322265625,0.0576171875,0.312744140625,0.05224609375,0.320068359375,0.0576171875,0.30615234375,0.04638671875,0.322265625,0.0478515625,0.3154296875,0.04296875,0.6962890625,0.0576171875,0.7060546875,0.05224609375,0.71337890625,0.0576171875,0.69970703125,0.04638671875,0.7158203125,0.0478515625,0.708984375,0.04296875,0.04876708984375,0.17236328125,0.05267333984375,0.16162109375,0.06414794921875,0.1689453125,0.04095458984375,0.16259765625,0.0648193359375,0.1572265625,0.048370361328125,0.14892578125,0.3359375,0.5166015625,0.34423828125,0.51171875,0.3505859375,0.5166015625,0.338623046875,0.5068359375,0.3525390625,0.508056640625,0.3466796875,0.50390625,0.53955078125,0.1396484375,0.54345703125,0.1298828125,0.55419921875,0.13623046875,0.53271484375,0.130859375,0.5546875,0.12548828125,0.53955078125,0.11767578125,0.392333984375,0.1396484375,0.39599609375,0.1298828125,0.40673828125,0.13623046875,0.385009765625,0.130859375,0.4072265625,0.12548828125,0.39208984375,0.11767578125,0.22119140625,0.09033203125,0.2315673828125,0.08447265625,0.2393798828125,0.09033203125,0.2244873046875,0.07861328125,0.2418212890625,0.07958984375,0.2344970703125,0.07470703125,0.89306640625,0.4140625,0.89892578125,0.42431640625,0.89306640625,0.43212890625,0.9052734375,0.41748046875,0.90380859375,0.4345703125,0.90869140625,0.42724609375,0.272216796875,0.640625,0.302734375,0.65380859375,0.278076171875,0.662353515625,0.278076171875,0.619384765625,0.25390625,0.6640625,0.265625,0.62353515625,0.275390625,0.589111328125,0.254638671875,0.622314453125,0.70703125,0.3291015625,0.69580078125,0.3251953125,0.69677734375,0.3095703125,0.70556640625,
- 0.357421875,0.6884765625,0.31103515625,0.6875,0.34326171875,0.68701171875,0.369140625,0.68017578125,0.357421875,0.90380859375,0.2802734375,0.892578125,0.27587890625,0.8935546875,0.26025390625,0.90234375,0.30810546875,0.88525390625,0.26171875,0.88427734375,0.29443359375,0.8837890625,0.31982421875,0.876953125,0.30810546875,0.91064453125,0.565673828125,0.93994140625,0.55322265625,0.916015625,0.545166015625,0.916015625,0.586181640625,0.89306640625,0.54345703125,0.904296875,0.58203125,0.91357421875,0.614990234375,0.89404296875,0.583251953125,0.034942626953125,0.29638671875,0.0241241455078125,0.29248046875,0.0250396728515625,0.27685546875,0.03363037109375,0.32470703125,0.016448974609375,0.2783203125,0.0157928466796875,0.310546875,0.01531982421875,0.33642578125,0.0081939697265625,0.32470703125,0.157470703125,0.39453125,0.18798828125,0.408203125,0.163330078125,0.41650390625,0.162841796875,0.36865234375,0.1392822265625,0.41845703125,0.15087890625,0.37744140625,0.1483154296875,0.36328125,0.139892578125,0.37646484375,0.352294921875,0.0576171875,0.362060546875,0.05224609375,0.369140625,0.0576171875,0.35546875,0.04638671875,0.371337890625,0.0478515625,0.364501953125,0.04296875,0.0968017578125,0.123046875,0.10015869140625,0.1142578125,0.110107421875,0.1201171875,0.09014892578125,0.11474609375,0.11065673828125,0.1103515625,0.09649658203125,0.10302734375,0.794921875,0.06982421875,0.80078125,0.080078125,0.794921875,0.087890625,0.806640625,0.0732421875,0.80517578125,0.09033203125,0.81005859375,0.0830078125,0.22119140625,0.02490234375,0.2301025390625,0.02001953125,0.23681640625,0.02490234375,0.22412109375,0.0146484375,0.2388916015625,0.015625,0.2325439453125,0.01171875,0.6474609375,0.0576171875,0.65673828125,0.05224609375,0.6640625,0.0576171875,0.650390625,0.04638671875,0.66650390625,0.0478515625,0.65966796875,0.04296875,0.548828125,0.0576171875,0.55859375,0.05224609375,0.56591796875,0.0576171875,0.5517578125,0.04638671875,0.56787109375,0.0478515625,0.56103515625,0.04296875,0.720703125,0.7623291015625,0.724609375,0.7518310546875,0.736328125,
- 0.7589111328125,0.712890625,0.7528076171875,0.73681640625,0.747314453125,0.72021484375,0.73876953125,0.385009765625,0.8607177734375,0.3935546875,0.85595703125,0.399658203125,0.8607177734375,0.3876953125,0.85107421875,0.401611328125,0.8521728515625,0.395751953125,0.8482666015625,0.5888671875,0.1396484375,0.5927734375,0.1298828125,0.60302734375,0.13623046875,0.58154296875,0.130859375,0.60400390625,0.12548828125,0.58837890625,0.11767578125,0.6884765625,0.25,0.67919921875,0.2314453125,0.6787109375,0.24609375,0.6875,0.27587890625,0.67138671875,0.232421875,0.673828125,0.26611328125,0.67041015625,0.287109375,0.66357421875,0.27587890625,0.94921875,0.123046875,0.9521484375,0.1142578125,0.96240234375,0.1201171875,0.9423828125,0.11474609375,0.962890625,0.1103515625,0.94873046875,0.10302734375,0.548828125,0.09033203125,0.55908203125,0.08447265625,0.56689453125,0.09033203125,0.55224609375,0.07861328125,0.5693359375,0.07958984375,0.56201171875,0.07470703125,0.794921875,0.0234375,0.7998046875,0.0322265625,0.794921875,0.0390625,0.80517578125,0.0263671875,0.80419921875,0.041015625,0.80810546875,0.03466796875,0.958984375,0.041015625,0.9677734375,0.0361328125,0.974609375,0.041015625,0.96142578125,0.03076171875,0.9765625,0.0322265625,0.97021484375,0.02783203125,0.095703125,0.07421875,0.0985107421875,0.06640625,0.10687255859375,0.0712890625,0.09014892578125,0.06689453125,0.1072998046875,0.06298828125,0.095458984375,0.05712890625,0.8359375,0.25,0.82666015625,0.2314453125,0.826171875,0.24609375,0.8349609375,0.27587890625,0.81884765625,0.232421875,0.8212890625,0.26611328125,0.81787109375,0.287109375,0.81103515625,0.27587890625,0.30322265625,0.10009765625,0.312255859375,0.0966796875,0.30615234375,0.0869140625,0.311279296875,0.10693359375,0.316162109375,0.08642578125,0.323486328125,0.1005859375,0.401611328125,0.09033203125,0.411865234375,0.08447265625,0.419677734375,0.09033203125,0.40478515625,0.07861328125,0.422119140625,0.07958984375,0.41455078125,0.07470703125,0.74560546875,0.0576171875,0.75439453125,0.052734375,0.76123046875,0.0576171875,
- 0.74853515625,0.04736328125,0.763671875,0.04833984375,0.7568359375,0.0439453125,0.90966796875,0.041015625,0.91845703125,0.0361328125,0.92529296875,0.041015625,0.91259765625,0.03076171875,0.92724609375,0.0322265625,0.9208984375,0.02783203125,0.8662109375,0.09033203125,0.86865234375,0.0830078125,0.876953125,0.087890625,0.8603515625,0.08349609375,0.87744140625,0.07958984375,0.86572265625,0.0732421875,0.73779296875,0.25,0.728515625,0.2314453125,0.7275390625,0.24609375,0.736328125,0.27587890625,0.720703125,0.232421875,0.72265625,0.26611328125,0.7197265625,0.287109375,0.712890625,0.27587890625,0.83447265625,0.123046875,0.83740234375,0.1142578125,0.84765625,0.1201171875,0.82763671875,0.11474609375,0.84814453125,0.1103515625,0.833984375,0.10302734375,0.45068359375,0.09033203125,0.4609375,0.08447265625,0.46875,0.09033203125,0.453857421875,0.07861328125,0.47119140625,0.07958984375,0.4638671875,0.07470703125,0.1229248046875,0.041015625,0.1318359375,0.0361328125,0.138671875,0.041015625,0.125732421875,0.03076171875,0.1407470703125,0.0322265625,0.13427734375,0.02783203125,0.04095458984375,0.02490234375,0.049896240234375,0.01953125,0.05670166015625,0.02490234375,0.0438232421875,0.0146484375,0.05877685546875,0.015625,0.0523681640625,0.01123046875,0.04656982421875,0.07421875,0.04937744140625,0.06640625,0.05767822265625,0.0712890625,0.04095458984375,0.06689453125,0.05816650390625,0.06298828125,0.046295166015625,0.05712890625,0.572265625,0.40478515625,0.5654296875,0.39453125,0.5732421875,0.3916015625,0.56591796875,0.408203125,0.5791015625,0.40087890625,0.5703125,0.4169921875,0.57470703125,0.4189453125,0.580078125,0.41943359375,0.56787109375,0.43212890625,0.57373046875,0.4345703125,0.5703125,0.43408203125,0.71484375,0.16455078125,0.7060546875,0.17236328125,0.7021484375,0.16064453125,0.6962890625,0.16259765625,0.70947265625,0.185546875,0.69677734375,0.1826171875,0.70361328125,0.1884765625,0.70458984375,0.205078125,0.697265625,0.201171875,0.70068359375,0.203125,0.3408203125,0.47265625,0.360595703125,0.45458984375,0.3359375,0.4521484375,
- 0.357177734375,0.48388671875,0.35205078125,0.4306640625,0.387939453125,0.46435546875,0.388671875,0.43359375,0.5126953125,0.756591796875,0.53369140625,0.733642578125,0.53662109375,0.7623291015625,0.499755859375,0.73779296875,0.56201171875,0.74365234375,0.52197265625,0.701904296875,0.55810546875,0.701171875,0.791015625,0.70751953125,0.8125,0.6845703125,0.8154296875,0.713134765625,0.7783203125,0.6884765625,0.84033203125,0.694580078125,0.80078125,0.65283203125,0.8369140625,0.65185546875,0.55810546875,0.365234375,0.5732421875,0.3486328125,0.5751953125,0.369140625,0.548828125,0.3515625,0.5927734375,0.35595703125,0.56494140625,0.326171875,0.59033203125,0.32568359375,0.740234375,0.8074951171875,0.71533203125,0.83056640625,0.74609375,0.83349609375,0.7197265625,0.793701171875,0.72607421875,0.8607177734375,0.68115234375,0.8179931640625,0.68017578125,0.8565673828125,0.92333984375,0.9154052734375,0.9462890625,0.940277099609375,0.94921875,0.90924072265625,0.90966796875,0.9359130859375,0.9765625,0.929443359375,0.93359375,0.974441528320313,0.97265625,0.975418090820313,0.76806640625,0.7977294921875,0.79296875,0.7747802734375,0.76220703125,0.771728515625,0.78857421875,0.8115234375,0.7822265625,0.74462890625,0.8271484375,0.787353515625,0.828125,0.748779296875,0.184814453125,0.658447265625,0.2061767578125,0.63525390625,0.2088623046875,0.6640625,0.172119140625,0.639404296875,0.234130859375,0.645263671875,0.1944580078125,0.603515625,0.2303466796875,0.602783203125,0.92041015625,0.20263671875,0.91552734375,0.220703125,0.91943359375,0.2216796875,0.91259765625,0.21826171875,0.9267578125,0.20361328125,0.91552734375,0.20068359375,0.91796875,0.18603515625,0.92578125,0.18212890625,0.91015625,0.1904296875,0.9189453125,0.1708984375,0.90966796875,0.17431640625,0.32177734375,0.22021484375,0.30908203125,0.2158203125,0.31298828125,0.23046875,0.30322265625,0.21826171875,0.31591796875,0.24951171875,0.3037109375,0.24560546875,0.309326171875,0.25146484375,0.311279296875,0.2705078125,0.303955078125,0.265625,0.3076171875,0.26806640625,0.461669921875,0.20263671875,
- 0.46044921875,0.2216796875,0.456787109375,0.220703125,0.453857421875,0.21826171875,0.468017578125,0.20361328125,0.456787109375,0.20068359375,0.458740234375,0.18603515625,0.466796875,0.18212890625,0.451416015625,0.1904296875,0.4599609375,0.1708984375,0.45068359375,0.17431640625,0.8720703125,0.511474609375,0.89111328125,0.49072265625,0.8935546875,0.5166015625,0.8603515625,0.49462890625,0.916015625,0.5,0.88037109375,0.46240234375,0.91259765625,0.46142578125,0.1015625,0.576904296875,0.1207275390625,0.55615234375,0.12322998046875,0.58203125,0.09014892578125,0.559814453125,0.145751953125,0.565185546875,0.11029052734375,0.52783203125,0.1424560546875,0.527099609375,0.78369140625,0.521484375,0.80419921875,0.50244140625,0.7783203125,0.5,0.80078125,0.532958984375,0.79541015625,0.4775390625,0.83251953125,0.5126953125,0.83349609375,0.48095703125,0.1834716796875,0.576904296875,0.20263671875,0.55615234375,0.2052001953125,0.58203125,0.172119140625,0.559814453125,0.227783203125,0.565185546875,0.1922607421875,0.52783203125,0.224365234375,0.527099609375,0.98193359375,0.2734375,0.97509765625,0.26318359375,0.98291015625,0.2607421875,0.9755859375,0.27685546875,0.98876953125,0.27001953125,0.98046875,0.28564453125,0.984375,0.28759765625,0.98974609375,0.2880859375,0.97802734375,0.30078125,0.9833984375,0.3037109375,0.98046875,0.302734375,0.958984375,0.197265625,0.96728515625,0.205078125,0.97119140625,0.193359375,0.9775390625,0.1953125,0.96435546875,0.21826171875,0.97705078125,0.21533203125,0.97021484375,0.22119140625,0.96923828125,0.23779296875,0.9765625,0.23388671875,0.97314453125,0.23583984375,0.264892578125,0.4462890625,0.283203125,0.42626953125,0.28564453125,0.451171875,0.25390625,0.4296875,0.307373046875,0.43505859375,0.273193359375,0.39892578125,0.30419921875,0.3984375,0.266845703125,0.740234375,0.2880859375,0.71728515625,0.290771484375,0.74609375,0.25390625,0.72119140625,0.31591796875,0.727294921875,0.2763671875,0.685546875,0.312255859375,0.684814453125,0.341552734375,0.68408203125,0.36474609375,0.662841796875,0.3359375,0.659912109375,
- 0.360595703125,0.69677734375,0.354736328125,0.634765625,0.396484375,0.67431640625,0.397216796875,0.638671875,0.62353515625,0.365234375,0.638671875,0.3486328125,0.640625,0.369140625,0.61474609375,0.3515625,0.658203125,0.35595703125,0.63037109375,0.326171875,0.65576171875,0.32568359375,0.28125,0.7911376953125,0.25634765625,0.8140869140625,0.287353515625,0.817138671875,0.2607421875,0.77734375,0.26708984375,0.8443603515625,0.22216796875,0.801513671875,0.22119140625,0.8402099609375,0.8994140625,0.87969970703125,0.92431640625,0.856689453125,0.89306640625,0.853759765625,0.919921875,0.89349365234375,0.91357421875,0.8265380859375,0.95849609375,0.8692626953125,0.95947265625,0.83056640625,0.67431640625,0.7255859375,0.64990234375,0.74853515625,0.6806640625,0.7515869140625,0.65380859375,0.7119140625,0.66064453125,0.77880859375,0.61572265625,0.736083984375,0.61474609375,0.774658203125,0.0209503173828125,0.658447265625,0.042236328125,0.63525390625,0.045013427734375,0.6640625,0.0081939697265625,0.639404296875,0.0701904296875,0.645263671875,0.030609130859375,0.603515625,0.06640625,0.602783203125,0.5888671875,0.732421875,0.58154296875,0.72216796875,0.58935546875,0.719482421875,0.58203125,0.73583984375,0.59521484375,0.728759765625,0.5869140625,0.74462890625,0.5908203125,0.746337890625,0.59619140625,0.7470703125,0.58447265625,0.7596435546875,0.58984375,0.7623291015625,0.5869140625,0.7615966796875,0.8134765625,0.16455078125,0.8046875,0.17236328125,0.80078125,0.16064453125,0.794921875,0.16259765625,0.80810546875,0.185546875,0.79541015625,0.1826171875,0.8017578125,0.1884765625,0.80322265625,0.205078125,0.7958984375,0.201171875,0.79931640625,0.203125,0.4228515625,0.43994140625,0.442626953125,0.421875,0.41796875,0.41943359375,0.439208984375,0.451171875,0.43408203125,0.3974609375,0.469970703125,0.431640625,0.470703125,0.40087890625,0.70947265625,0.70751953125,0.73046875,0.6845703125,0.7333984375,0.713134765625,0.6962890625,0.6884765625,0.75830078125,0.694580078125,0.71875,0.65283203125,0.7548828125,0.65185546875,0.0209503173828125,0.740234375,
- 0.042236328125,0.71728515625,0.045013427734375,0.74609375,0.0081939697265625,0.72119140625,0.0701904296875,0.727294921875,0.030609130859375,0.685546875,0.06640625,0.684814453125,0.279296875,0.365234375,0.29443359375,0.3486328125,0.29638671875,0.369140625,0.270263671875,0.3515625,0.314208984375,0.35595703125,0.2861328125,0.326171875,0.3115234375,0.32568359375,0.55517578125,0.846923828125,0.580078125,0.823974609375,0.548828125,0.8209228515625,0.57568359375,0.8607177734375,0.5693359375,0.793701171875,0.6142578125,0.8365478515625,0.615234375,0.7978515625,0.84130859375,0.985641479492188,0.8642578125,0.96075439453125,0.8671875,0.991806030273438,0.82763671875,0.965118408203125,0.89453125,0.971588134765625,0.85205078125,0.92657470703125,0.890625,0.92559814453125,0.379638671875,0.7911376953125,0.354736328125,0.8140869140625,0.3857421875,0.817138671875,0.359130859375,0.77734375,0.365478515625,0.8443603515625,0.320556640625,0.801513671875,0.319580078125,0.8402099609375,0.1029052734375,0.658447265625,0.12420654296875,0.63525390625,0.126953125,0.6640625,0.09014892578125,0.639404296875,0.152099609375,0.645263671875,0.112548828125,0.603515625,0.1483154296875,0.602783203125,0.654296875,0.8306884765625,0.6474609375,0.8204345703125,0.6552734375,0.81787109375,0.64794921875,0.834228515625,0.6611328125,0.8270263671875,0.65234375,0.8428955078125,0.65673828125,0.8447265625,0.662109375,0.8453369140625,0.64990234375,0.8580322265625,0.65576171875,0.8607177734375,0.65234375,0.8599853515625,0.76416015625,0.16455078125,0.75537109375,0.17236328125,0.75146484375,0.16064453125,0.74560546875,0.16259765625,0.7587890625,0.185546875,0.74609375,0.1826171875,0.75244140625,0.1884765625,0.75390625,0.205078125,0.74658203125,0.201171875,0.75,0.203125,0.60888671875,0.4033203125,0.62744140625,0.4228515625,0.6298828125,0.3984375,0.59814453125,0.41943359375,0.6513671875,0.41455078125,0.6171875,0.4501953125,0.6484375,0.451171875,0.1029052734375,0.740234375,0.12420654296875,0.71728515625,0.126953125,0.74609375,0.09014892578125,0.72119140625,0.152099609375,0.727294921875,
- 0.112548828125,0.685546875,0.1483154296875,0.684814453125,0.873046875,0.691162109375,0.89453125,0.66796875,0.8974609375,0.69677734375,0.8603515625,0.672119140625,0.92236328125,0.67822265625,0.8828125,0.636474609375,0.91845703125,0.635498046875,0.90234375,0.38134765625,0.91748046875,0.365234375,0.91943359375,0.38525390625,0.89306640625,0.3681640625,0.93701171875,0.3720703125,0.9091796875,0.3427734375,0.9345703125,0.34228515625,0.1829833984375,0.7911376953125,0.1580810546875,0.8140869140625,0.1890869140625,0.817138671875,0.162353515625,0.77734375,0.1689453125,0.8443603515625,0.1239013671875,0.801513671875,0.1229248046875,0.8402099609375,0.5107421875,0.8074951171875,0.48583984375,0.83056640625,0.5166015625,0.83349609375,0.490234375,0.793701171875,0.49658203125,0.8607177734375,0.45166015625,0.8179931640625,0.45068359375,0.8565673828125,0.40771484375,0.7650146484375,0.4326171875,0.741943359375,0.401611328125,0.739013671875,0.42822265625,0.77880859375,0.421630859375,0.7119140625,0.466796875,0.7545166015625,0.4677734375,0.7158203125,0.5126953125,0.6748046875,0.53369140625,0.651611328125,0.53662109375,0.680419921875,0.499755859375,0.65576171875,0.56201171875,0.66162109375,0.52197265625,0.6201171875,0.55810546875,0.619140625,0.97216796875,0.49267578125,0.98291015625,0.4853515625,0.9853515625,0.4931640625,0.96875,0.486328125,0.97607421875,0.4990234375,0.96044921875,0.49072265625,0.95849609375,0.4951171875,0.9580078125,0.5,0.94482421875,0.48828125,0.9423828125,0.49365234375,0.94287109375,0.49072265625,0.666015625,0.16455078125,0.6572265625,0.17236328125,0.6533203125,0.16064453125,0.6474609375,0.16259765625,0.66064453125,0.185546875,0.64794921875,0.1826171875,0.654296875,0.1884765625,0.6552734375,0.205078125,0.64794921875,0.201171875,0.65185546875,0.203125,0.69091796875,0.4462890625,0.70947265625,0.42626953125,0.7119140625,0.451171875,0.68017578125,0.4296875,0.7333984375,0.43505859375,0.69921875,0.39892578125,0.73046875,0.3984375,0.184814453125,0.740234375,0.2061767578125,0.71728515625,0.2088623046875,0.74609375,0.172119140625,
- 0.72119140625,0.234130859375,0.727294921875,0.1944580078125,0.685546875,0.2303466796875,0.684814453125,0.4306640625,0.6748046875,0.451904296875,0.651611328125,0.454833984375,0.680419921875,0.41796875,0.65576171875,0.47998046875,0.66162109375,0.4404296875,0.6201171875,0.47607421875,0.619140625,0.41064453125,0.365234375,0.425537109375,0.3486328125,0.427490234375,0.369140625,0.401611328125,0.3515625,0.445556640625,0.35595703125,0.41748046875,0.326171875,0.44287109375,0.32568359375,0.0845947265625,0.7911376953125,0.059722900390625,0.8140869140625,0.09075927734375,0.817138671875,0.0640869140625,0.77734375,0.070556640625,0.8443603515625,0.0255584716796875,0.801513671875,0.0245819091796875,0.8402099609375,0.80859375,0.83349609375,0.83154296875,0.8583984375,0.83447265625,0.8272705078125,0.794921875,0.85400390625,0.86181640625,0.8475341796875,0.81884765625,0.89251708984375,0.85791015625,0.89349365234375,0.8740234375,0.7889404296875,0.89697265625,0.7640380859375,0.900390625,0.795166015625,0.8603515625,0.7684326171875,0.92724609375,0.77490234375,0.884765625,0.72998046875,0.92333984375,0.72900390625,0.59423828125,0.6748046875,0.61572265625,0.651611328125,0.61865234375,0.680419921875,0.58154296875,0.65576171875,0.6435546875,0.66162109375,0.60400390625,0.6201171875,0.64013671875,0.619140625,0.412353515625,0.20263671875,0.407470703125,0.220703125,0.4111328125,0.2216796875,0.404541015625,0.21826171875,0.418701171875,0.20361328125,0.407470703125,0.20068359375,0.40966796875,0.18603515625,0.41748046875,0.18212890625,0.402099609375,0.1904296875,0.41064453125,0.1708984375,0.401611328125,0.17431640625,0.0760498046875,0.2041015625,0.06329345703125,0.19921875,0.0672607421875,0.2138671875,0.057373046875,0.20166015625,0.07000732421875,0.23291015625,0.057861328125,0.2294921875,0.0634765625,0.23486328125,0.0655517578125,0.25439453125,0.0582275390625,0.24951171875,0.061767578125,0.251953125,0.36328125,0.20263671875,0.362060546875,0.2216796875,0.3583984375,0.220703125,0.35546875,0.21826171875,0.36962890625,0.20361328125,0.3583984375,0.20068359375,
- 0.360595703125,0.18603515625,0.368408203125,0.18212890625,0.35302734375,0.1904296875,0.361572265625,0.1708984375,0.352294921875,0.17431640625,0.1834716796875,0.4951171875,0.20263671875,0.474609375,0.2052001953125,0.500244140625,0.172119140625,0.47802734375,0.227783203125,0.4833984375,0.1922607421875,0.44580078125,0.224365234375,0.4453125,0.560546875,0.59326171875,0.57958984375,0.57275390625,0.58203125,0.598388671875,0.548828125,0.576171875,0.6044921875,0.581787109375,0.56884765625,0.544189453125,0.60107421875,0.54345703125,0.5439453125,0.511474609375,0.56298828125,0.49072265625,0.5654296875,0.5166015625,0.53271484375,0.49462890625,0.58837890625,0.5,0.552734375,0.46240234375,0.5849609375,0.46142578125,0.6259765625,0.48291015625,0.64501953125,0.503662109375,0.6474609375,0.47802734375,0.61474609375,0.5,0.67041015625,0.49462890625,0.634765625,0.531982421875,0.6669921875,0.532958984375,0.56005859375,0.20263671875,0.55517578125,0.220703125,0.55859375,0.2216796875,0.55224609375,0.21826171875,0.56591796875,0.20361328125,0.55517578125,0.20068359375,0.55712890625,0.18603515625,0.56494140625,0.18212890625,0.54931640625,0.1904296875,0.55810546875,0.1708984375,0.548828125,0.17431640625,0.453125,0.25341796875,0.440185546875,0.24853515625,0.444091796875,0.26318359375,0.434326171875,0.2509765625,0.447021484375,0.2822265625,0.434814453125,0.2783203125,0.4404296875,0.2841796875,0.442626953125,0.3037109375,0.43505859375,0.298828125,0.438720703125,0.30078125,0.5107421875,0.20263671875,0.50927734375,0.2216796875,0.505859375,0.220703125,0.5029296875,0.21826171875,0.51708984375,0.20361328125,0.505859375,0.20068359375,0.5078125,0.18603515625,0.515625,0.18212890625,0.50048828125,0.1904296875,0.5087890625,0.1708984375,0.499755859375,0.17431640625,0.1015625,0.4951171875,0.1207275390625,0.474609375,0.12322998046875,0.500244140625,0.09014892578125,0.47802734375,0.145751953125,0.4833984375,0.11029052734375,0.44580078125,0.1424560546875,0.4453125,0.478515625,0.59326171875,0.49755859375,0.57275390625,0.5,0.598388671875,0.467041015625,0.576171875,
- 0.5224609375,0.581787109375,0.4873046875,0.544189453125,0.51904296875,0.54345703125,0.7080078125,0.52783203125,0.72705078125,0.507080078125,0.7294921875,0.532958984375,0.6962890625,0.5107421875,0.751953125,0.51611328125,0.716796875,0.47900390625,0.74853515625,0.47802734375,0.380126953125,0.544189453125,0.3994140625,0.5234375,0.40185546875,0.54931640625,0.36865234375,0.527099609375,0.42431640625,0.532470703125,0.388916015625,0.4951171875,0.421142578125,0.494140625,0.60888671875,0.20263671875,0.60400390625,0.220703125,0.60791015625,0.2216796875,0.60107421875,0.21826171875,0.615234375,0.20361328125,0.60400390625,0.20068359375,0.6064453125,0.18603515625,0.6142578125,0.18212890625,0.5986328125,0.1904296875,0.607421875,0.1708984375,0.59814453125,0.17431640625,0.0269012451171875,0.2041015625,0.014129638671875,0.19921875,0.0180816650390625,0.2138671875,0.0081939697265625,0.20166015625,0.020843505859375,0.23291015625,0.00868988037109375,0.2294921875,0.01434326171875,0.23486328125,0.0164031982421875,0.25439453125,0.009063720703125,0.24951171875,0.0126113891601563,0.251953125,0.264892578125,0.20263671875,0.263671875,0.2216796875,0.260009765625,0.220703125,0.257080078125,0.21826171875,0.271240234375,0.20361328125,0.260009765625,0.20068359375,0.26220703125,0.18603515625,0.27001953125,0.18212890625,0.254638671875,0.1904296875,0.26318359375,0.1708984375,0.25390625,0.17431640625,0.0196533203125,0.4951171875,0.03875732421875,0.474609375,0.041259765625,0.500244140625,0.0081939697265625,0.47802734375,0.0638427734375,0.4833984375,0.0283203125,0.44580078125,0.06048583984375,0.4453125,0.0196533203125,0.576904296875,0.03875732421875,0.55615234375,0.041259765625,0.58203125,0.0081939697265625,0.559814453125,0.0638427734375,0.565185546875,0.0283203125,0.52783203125,0.06048583984375,0.527099609375,0.462158203125,0.511474609375,0.481201171875,0.49072265625,0.48388671875,0.5166015625,0.45068359375,0.49462890625,0.50634765625,0.5,0.470947265625,0.46240234375,0.5029296875,0.46142578125,0.259033203125,0.521484375,0.27978515625,0.50244140625,0.25390625,
- 0.5,0.276123046875,0.532958984375,0.270751953125,0.4775390625,0.308349609375,0.5126953125,0.30908203125,0.48095703125
- }
- UVIndex: *5193 {
- a: 0,1,2,3,1,0,1,4,2,3,5,1,6,1,5,5,7,6,4,1,8,6,8,1,8,9,4,10,4,9,9,11,10,11,9,12,9,8,12,12,13,11,6,14,8,12,8,14,15,14,6,15,6,7,14,16,12,14,15,16,7,17,15,16,15,17,17,7,18,18,19,17,19,16,17,19,18,20,20,21,19,22,16,19,21,22,19,21,23,22,23,16,22,23,21,24,12,16,25,23,25,16,13,12,25,24,26,23,25,23,26,25,26,13,26,24,27,27,13,26,28,29,30,31,29,28,29,32,30,31,33,29,34,29,33,33,35,34,32,29,36,34,36,29,36,37,32,38,32,37,37,39,38,39,37,40,37,36,40,40,41,39,34,42,36,40,36,42,43,42,34,43,34,35,42,44,40,42,43,44,35,45,43,44,43,45,45,35,46,46,47,45,47,44,45,47,46,48,48,49,47,50,44,47,49,50,47,49,51,50,51,44,50,51,49,52,40,44,53,51,53,44,41,40,53,52,54,51,53,51,54,53,54,41,54,52,55,55,41,54,56,57,58,59,57,56,57,60,58,59,61,57,62,57,61,61,63,62,60,57,64,62,64,57,64,65,60,66,60,65,65,67,66,67,65,68,65,64,68,68,69,67,62,70,64,68,64,70,71,70,62,71,62,63,70,72,68,70,71,72,63,73,71,72,71,73,73,63,74,74,75,73,75,72,73,75,74,76,76,77,75,78,72,75,77,78,75,77,79,78,79,72,78,79,77,80,68,72,81,79,81,72,69,68,81,80,82,79,81,79,82,81,82,69,82,80,83,83,69,82,84,85,86,87,85,84,85,88,86,87,89,85,90,85,89,89,91,90,88,85,92,90,92,85,92,93,88,94,88,93,93,95,94,95,93,96,93,92,96,96,97,95,90,98,92,96,92,98,99,98,90,99,90,91,98,100,96,98,99,100,91,101,99,100,99,101,101,91,102,102,103,101,103,100,101,103,102,104,104,105,103,106,100,103,105,106,103,105,107,106,107,100,106,107,105,108,96,100,109,107,109,100,97,96,109,108,110,107,109,107,110,109,110,97,110,108,111,111,97,110,112,113,114,115,112,114,113,112,116,117,113,116,112,115,118,119,118,115,116,120,117,121,117,120,116,112,122,120,116,122,112,118,122,121,120,123,123,120,122,124,121,123,122,118,125,118,119,125,126,123,122,124,123,126,127,125,119,119,128,127,129,122,125,125,127,129,129,126,122,128,130,127,127,130,129,131,130,128,132,130,131,133,124,126,133,126,129,124,133,134,130,135,129,135,133,129,130,132,135,135,134,133,134,135,132,136,137,138,139,136,138,137,136,140,141,137,140,136,139,142,143,142,139,140,144,141,145,141,144,140,136,146,144,140,146,136,142,146,145,144,147,147,144,146,
- 148,145,147,146,142,149,142,143,149,150,147,146,148,147,150,151,149,143,143,152,151,153,146,149,149,151,153,153,150,146,152,154,151,151,154,153,155,154,152,156,154,155,157,148,150,157,150,153,148,157,158,154,159,153,159,157,153,154,156,159,159,158,157,158,159,156,160,161,162,163,160,162,161,160,164,165,161,164,160,163,166,167,166,163,164,168,165,169,165,168,164,160,170,168,164,170,160,166,170,169,168,171,171,168,170,172,169,171,170,166,173,166,167,173,174,171,170,172,171,174,175,173,167,167,176,175,177,170,173,173,175,177,177,174,170,176,178,175,175,178,177,179,178,176,180,178,179,181,172,174,181,174,177,172,181,182,178,183,177,183,181,177,178,180,183,183,182,181,182,183,180,184,185,186,187,184,186,185,184,188,189,185,188,184,187,190,191,190,187,188,192,189,193,189,192,188,184,194,192,188,194,184,190,194,193,192,195,195,192,194,196,193,195,194,190,197,190,191,197,198,195,194,196,195,198,199,197,191,191,200,199,201,194,197,197,199,201,201,198,194,200,202,199,199,202,201,203,202,200,204,202,203,205,196,198,205,198,201,196,205,206,202,207,201,207,205,201,202,204,207,207,206,205,206,207,204,208,209,210,211,208,210,209,208,212,213,209,212,208,211,214,215,214,211,212,216,213,217,213,216,212,208,218,216,212,218,208,214,218,217,216,219,219,216,218,220,217,219,218,214,221,214,215,221,222,219,218,220,219,222,223,221,215,215,224,223,225,218,221,221,223,225,225,222,218,224,226,223,223,226,225,227,226,224,228,226,227,229,220,222,229,222,225,220,229,230,226,231,225,231,229,225,226,228,231,231,230,229,230,231,228,232,233,234,235,232,234,235,236,237,234,238,235,236,235,238,236,238,239,234,240,238,239,238,241,238,240,241,241,240,242,243,244,245,246,243,245,246,247,248,245,249,246,247,246,249,247,249,250,245,251,249,250,249,252,249,251,252,252,251,253,254,255,256,257,254,256,257,258,259,256,260,257,258,257,260,258,260,261,256,262,260,261,260,263,260,262,263,263,262,264,265,266,267,268,265,267,268,269,270,267,271,268,269,268,271,269,271,272,267,273,271,272,271,274,271,273,274,274,273,275,276,277,278,279,276,278,280,276,279,279,278,281,
- 280,279,282,282,279,281,283,284,285,283,285,286,287,283,286,285,288,286,287,286,289,286,288,289,290,291,292,293,290,292,294,290,293,293,292,295,294,293,296,296,293,295,297,298,299,297,299,300,301,297,300,299,302,300,301,300,303,300,302,303,304,305,306,307,304,306,308,304,307,307,306,309,308,307,310,310,307,309,311,312,313,311,313,314,315,311,314,313,316,314,315,314,317,314,316,317,318,319,320,321,318,320,322,318,321,321,320,323,322,321,324,324,321,323,325,326,327,325,327,328,329,325,328,327,330,328,329,328,331,328,330,331,332,333,334,335,332,334,336,332,335,335,334,337,336,335,338,338,335,337,339,340,341,339,341,342,343,339,342,341,344,342,343,342,345,342,344,345,346,347,348,349,347,346,347,349,350,349,351,350,349,352,351,346,353,349,352,349,353,353,346,354,355,352,353,356,353,354,353,356,355,357,358,359,360,358,357,358,360,361,360,362,361,360,363,362,357,364,360,363,360,364,364,357,365,366,363,364,367,364,365,364,367,366,368,369,370,371,369,368,369,371,372,371,373,372,371,374,373,368,375,371,374,371,375,375,368,376,377,374,375,378,375,376,375,378,377,379,380,381,382,380,379,380,382,383,382,384,383,382,385,384,379,386,382,385,382,386,386,379,387,388,385,386,389,386,387,386,389,388,390,391,392,393,391,390,391,393,394,393,395,394,393,396,395,390,397,393,396,393,397,397,390,398,399,396,397,400,397,398,397,400,399,401,402,403,401,404,402,403,402,405,402,404,406,405,402,406,407,408,409,407,410,408,409,408,411,408,410,412,408,412,411,413,414,415,413,416,414,415,414,417,414,416,418,414,418,417,419,420,421,422,420,419,423,419,421,419,424,422,423,424,419,425,422,424,426,424,423,425,424,426,427,428,429,427,430,428,429,428,431,428,430,432,428,432,431,430,433,432,434,431,432,432,433,434,435,436,437,435,438,436,437,436,439,436,438,440,440,439,436,438,441,440,442,439,440,440,441,442,443,444,445,446,444,443,447,443,445,443,448,446,447,448,443,449,446,448,450,448,447,449,448,450,451,452,453,451,454,452,453,452,455,452,454,456,452,456,455,454,457,456,458,455,456,456,457,458,459,460,461,462,460,459,463,459,461,459,464,462,463,464,459,
- 465,462,464,466,464,463,465,464,466,467,468,469,467,470,468,469,468,471,468,470,472,468,472,471,473,474,475,473,476,474,475,474,477,474,476,478,477,474,478,479,480,481,479,482,480,481,480,483,480,482,484,480,484,483,485,486,487,485,488,486,487,486,489,486,488,490,486,490,489,491,492,493,491,494,492,493,492,495,492,494,496,492,496,495,497,498,499,497,500,498,499,498,501,498,500,502,498,502,501,503,504,505,503,506,504,505,504,507,504,506,508,507,504,508,509,510,511,509,512,510,511,510,513,510,512,514,510,514,513,515,516,517,515,518,516,517,516,519,516,518,520,519,516,520,521,522,523,521,523,524,522,525,523,523,526,524,523,525,526,524,526,527,525,528,526,526,528,527,529,530,531,529,532,530,531,530,533,530,532,534,533,530,534,535,536,537,535,538,536,537,536,539,536,538,540,536,540,539,541,542,543,541,544,542,543,542,545,542,544,546,542,546,545,547,548,549,547,550,548,549,548,551,548,550,552,548,552,551,553,554,555,553,556,554,555,554,557,554,556,558,557,554,558,559,560,561,559,562,560,561,560,563,560,562,564,563,560,564,565,566,567,565,568,566,567,566,569,566,568,570,566,570,569,571,572,573,571,574,572,573,572,575,572,574,576,572,576,575,577,578,579,580,578,577,581,577,579,577,582,580,581,582,577,583,580,582,584,582,581,583,582,584,585,586,587,585,588,586,587,586,589,586,588,590,586,590,589,588,591,590,592,589,590,590,591,592,593,594,595,593,596,594,595,594,597,594,596,598,598,597,594,596,599,598,600,597,598,598,599,600,601,602,603,604,602,601,605,601,603,601,606,604,605,606,601,607,604,606,608,606,605,607,606,608,609,610,611,609,612,610,611,610,613,610,612,614,610,614,613,612,615,614,616,613,614,614,615,616,617,618,619,620,618,617,621,617,619,617,622,620,621,622,617,623,620,622,624,622,621,623,622,624,625,626,627,625,628,626,627,626,629,626,628,630,626,630,629,631,632,633,631,634,632,633,632,635,632,634,636,635,632,636,637,638,639,637,640,638,639,638,641,638,640,642,638,642,641,643,644,645,643,646,644,645,644,647,644,646,648,644,648,647,649,650,651,649,652,650,651,650,653,650,652,654,650,654,653,655,656,657,655,658,656,
- 657,656,659,656,658,660,656,660,659,661,662,663,661,664,662,663,662,665,662,664,666,665,662,666,667,668,669,667,670,668,669,668,671,668,670,672,668,672,671,673,674,675,673,676,674,675,674,677,674,676,678,677,674,678,679,680,681,679,682,680,681,680,683,680,682,684,683,680,684,685,686,687,685,688,686,687,686,689,686,688,690,686,690,689,691,692,693,691,694,692,693,692,695,692,694,696,692,696,695,697,698,699,700,698,697,701,697,699,697,702,700,701,702,697,703,700,702,704,702,701,703,702,704,705,706,707,705,708,706,707,706,709,706,708,710,706,710,709,708,711,710,712,709,710,710,711,712,713,714,715,713,716,714,715,714,717,714,716,718,718,717,714,716,719,718,720,717,718,718,719,720,721,722,723,724,722,721,725,721,723,721,726,724,725,726,721,727,724,726,728,726,725,727,726,728,729,730,731,729,732,730,731,730,733,730,732,734,730,734,733,732,735,734,736,733,734,734,735,736,737,738,739,740,738,737,741,737,739,737,742,740,741,742,737,743,740,742,744,742,741,743,742,744,745,746,747,745,748,746,747,746,749,746,748,750,746,750,749,751,752,753,751,754,752,753,752,755,752,754,756,755,752,756,757,758,759,757,760,758,759,758,761,758,760,762,758,762,761,763,764,765,763,766,764,765,764,767,764,766,768,764,768,767,769,770,771,769,772,770,771,770,773,770,772,774,770,774,773,775,776,777,775,778,776,777,776,779,776,778,780,776,780,779,781,782,783,781,784,782,783,782,785,782,784,786,785,782,786,787,788,789,787,790,788,789,788,791,788,790,792,788,792,791,793,794,795,793,796,794,795,794,797,794,796,798,797,794,798,799,800,801,799,802,800,801,800,803,800,802,804,803,800,804,805,806,807,805,808,806,807,806,809,806,808,810,806,810,809,811,812,813,811,814,812,813,812,815,812,814,816,812,816,815,817,818,819,820,818,817,821,817,819,817,822,820,821,822,817,823,820,822,824,822,821,823,822,824,825,826,827,825,828,826,827,826,829,826,828,830,826,830,829,828,831,830,832,829,830,830,831,832,833,834,835,833,836,834,835,834,837,834,836,838,838,837,834,836,839,838,840,837,838,838,839,840,841,842,843,844,842,841,845,841,843,841,846,844,845,846,841,847,844,846,
- 848,846,845,847,846,848,849,850,851,849,852,850,851,850,853,850,852,854,850,854,853,852,855,854,856,853,854,854,855,856,857,858,859,860,858,857,861,857,859,857,862,860,861,862,857,863,860,862,864,862,861,863,862,864,865,866,867,865,868,866,867,866,869,866,868,870,866,870,869,871,872,873,871,874,872,873,872,875,872,874,876,875,872,876,877,878,879,877,880,878,879,878,881,878,880,882,878,882,881,883,884,885,883,886,884,885,884,887,884,886,888,884,888,887,889,890,891,889,892,890,891,890,893,890,892,894,890,894,893,895,896,897,895,898,896,897,896,899,896,898,900,896,900,899,901,902,903,901,904,902,903,902,905,902,904,906,905,902,906,907,908,909,907,910,908,909,908,911,908,910,912,908,912,911,913,914,915,913,916,914,915,914,917,914,916,918,917,914,918,919,920,921,919,922,920,921,920,923,920,922,924,923,920,924,925,926,927,925,928,926,927,926,929,926,928,930,926,930,929,931,932,933,931,934,932,933,932,935,932,934,936,932,936,935,937,938,939,940,938,937,941,937,939,937,942,940,941,942,937,943,940,942,944,942,941,943,942,944,945,946,947,945,948,946,947,946,949,946,948,950,946,950,949,948,951,950,952,949,950,950,951,952,953,954,955,953,956,954,955,954,957,954,956,958,958,957,954,956,959,958,960,957,958,958,959,960,961,962,963,964,962,961,965,961,963,961,966,964,965,966,961,967,964,966,968,966,965,967,966,968,969,970,971,969,972,970,971,970,973,970,972,974,970,974,973,972,975,974,976,973,974,974,975,976,977,978,979,980,978,977,981,977,979,977,982,980,981,982,977,983,980,982,984,982,981,983,982,984,985,986,987,985,988,986,987,986,989,986,988,990,986,990,989,991,992,993,991,994,992,993,992,995,992,994,996,995,992,996,997,998,999,997,1000,998,999,998,1001,998,1000,1002,998,1002,1001,1003,1004,1005,1003,1006,1004,1005,1004,1007,1004,1006,1008,1004,1008,1007,1009,1010,1011,1009,1012,1010,1011,1010,1013,1010,1012,1014,1010,1014,1013,1015,1016,1017,1015,1018,1016,1017,1016,1019,1016,1018,1020,1016,1020,1019,1021,1022,1023,1021,1024,1022,1023,1022,1025,1022,1024,1026,1025,1022,1026,1027,1028,1029,1027,1030,1028,1029,1028,1031,1028,1030,
- 1032,1028,1032,1031,1033,1034,1035,1033,1036,1034,1035,1034,1037,1034,1036,1038,1037,1034,1038,1039,1040,1041,1039,1041,1042,1040,1043,1041,1041,1044,1042,1041,1043,1044,1042,1044,1045,1043,1046,1044,1044,1046,1045,1047,1048,1049,1047,1050,1048,1049,1048,1051,1048,1050,1052,1051,1048,1052,1053,1054,1055,1053,1056,1054,1055,1054,1057,1054,1056,1058,1054,1058,1057,1059,1060,1061,1059,1062,1060,1061,1060,1063,1060,1062,1064,1060,1064,1063,1065,1066,1067,1065,1068,1066,1067,1066,1069,1066,1068,1070,1066,1070,1069,1071,1072,1073,1071,1074,1072,1073,1072,1075,1072,1074,1076,1075,1072,1076,1077,1078,1079,1077,1079,1080,1078,1081,1079,1079,1082,1080,1079,1081,1082,1080,1082,1083,1081,1084,1082,1082,1084,1083,1085,1086,1087,1085,1088,1086,1087,1086,1089,1086,1088,1090,1089,1086,1090,1091,1092,1093,1091,1094,1092,1093,1092,1095,1092,1094,1096,1092,1096,1095,1097,1098,1099,1097,1100,1098,1099,1098,1101,1098,1100,1102,1098,1102,1101,1103,1104,1105,1103,1106,1104,1105,1104,1107,1104,1106,1108,1104,1108,1107,1109,1110,1111,1109,1112,1110,1111,1110,1113,1110,1112,1114,1113,1110,1114,1115,1116,1117,1115,1117,1118,1116,1119,1117,1117,1120,1118,1117,1119,1120,1118,1120,1121,1119,1122,1120,1120,1122,1121,1123,1124,1125,1123,1126,1124,1125,1124,1127,1124,1126,1128,1127,1124,1128,1129,1130,1131,1129,1132,1130,1131,1130,1133,1130,1132,1134,1130,1134,1133,1135,1136,1137,1135,1138,1136,1137,1136,1139,1136,1138,1140,1136,1140,1139,1141,1142,1143,1141,1144,1142,1143,1142,1145,1142,1144,1146,1142,1146,1145,1147,1148,1149,1147,1150,1148,1149,1148,1151,1148,1150,1152,1151,1148,1152,1153,1154,1155,1154,1153,1156,1155,1157,1153,1153,1158,1156,1157,1159,1153,1158,1153,1159,1159,1157,1160,1159,1161,1158,1162,1159,1160,1161,1159,1163,1163,1159,1162,1164,1165,1166,1165,1167,1166,1164,1168,1165,1169,1167,1165,1165,1168,1170,1165,1170,1169,1171,1170,1168,1170,1172,1169,1170,1171,1173,1172,1170,1173,1174,1175,1176,1174,1177,1175,1176,1175,1178,1175,1177,1179,1178,1175,1180,1180,1175,1179,1181,1182,1183,1181,1184,1182,1183,1182,1185,1182,1184,1186,1185,
- 1182,1187,1187,1182,1186,1188,1189,1190,1188,1191,1189,1190,1189,1192,1189,1191,1193,1192,1189,1194,1194,1189,1193,1195,1196,1197,1195,1198,1196,1197,1196,1199,1196,1198,1200,1199,1196,1201,1201,1196,1200,1202,1203,1204,1202,1205,1203,1204,1203,1206,1203,1205,1207,1206,1203,1208,1208,1203,1207,1209,1210,1211,1209,1212,1210,1211,1210,1213,1210,1212,1214,1213,1210,1215,1215,1210,1214,1216,1217,1218,1216,1219,1217,1218,1217,1220,1217,1219,1221,1220,1217,1222,1222,1217,1221,1223,1224,1225,1223,1226,1224,1225,1224,1227,1224,1226,1228,1227,1224,1229,1229,1224,1228,1230,1231,1232,1230,1233,1231,1232,1234,1230,1233,1230,1235,1236,1230,1234,1236,1235,1230,1236,1234,1237,1235,1236,1238,1239,1236,1237,1236,1240,1238,1240,1236,1239,1241,1242,1243,1243,1242,1244,1243,1245,1241,1246,1243,1244,1245,1243,1247,1247,1243,1246,1247,1248,1245,1249,1247,1246,1248,1247,1250,1250,1247,1249,1251,1252,1253,1254,1251,1253,1252,1251,1255,1251,1254,1256,1257,1255,1251,1256,1257,1251,1258,1255,1257,1257,1256,1259,1260,1258,1257,1261,1257,1259,1257,1261,1260,1262,1263,1264,1262,1265,1263,1264,1263,1266,1263,1265,1267,1266,1263,1268,1268,1263,1267,1269,1270,1271,1269,1272,1270,1271,1270,1273,1270,1272,1274,1273,1270,1275,1275,1270,1274,1276,1277,1278,1276,1279,1277,1278,1277,1280,1277,1279,1281,1280,1277,1282,1282,1277,1281,1283,1284,1285,1283,1286,1284,1285,1284,1287,1284,1286,1288,1287,1284,1289,1289,1284,1288,1290,1291,1292,1291,1290,1293,1292,1294,1290,1290,1295,1293,1294,1296,1290,1295,1290,1296,1296,1294,1297,1296,1298,1295,1299,1296,1297,1298,1296,1300,1300,1296,1299,1301,1302,1303,1302,1304,1303,1301,1305,1302,1306,1304,1302,1302,1305,1307,1302,1307,1306,1308,1307,1305,1307,1309,1306,1307,1308,1310,1309,1307,1310,1311,1312,1313,1311,1314,1312,1313,1312,1315,1312,1314,1316,1315,1312,1317,1317,1312,1316,1318,1319,1320,1318,1321,1319,1320,1319,1322,1319,1321,1323,1322,1319,1324,1324,1319,1323,1325,1326,1327,1325,1328,1326,1327,1326,1329,1326,1328,1330,1329,1326,1331,1331,1326,1330,1332,1333,1334,1332,1335,1333,1334,1333,1336,1333,1335,1337,
- 1336,1333,1338,1338,1333,1337,1339,1340,1341,1339,1342,1340,1341,1340,1343,1340,1342,1344,1343,1340,1345,1345,1340,1344,1346,1347,1348,1346,1349,1347,1348,1347,1350,1347,1349,1351,1350,1347,1352,1352,1347,1351,1353,1354,1355,1353,1356,1354,1355,1354,1357,1354,1356,1358,1357,1354,1359,1359,1354,1358,1360,1361,1362,1360,1363,1361,1362,1361,1364,1361,1363,1365,1364,1361,1366,1366,1361,1365,1367,1368,1369,1368,1367,1370,1369,1371,1367,1367,1372,1370,1371,1373,1367,1372,1367,1373,1373,1371,1374,1373,1375,1372,1376,1373,1374,1375,1373,1377,1377,1373,1376,1378,1379,1380,1379,1381,1380,1378,1382,1379,1383,1381,1379,1379,1382,1384,1379,1384,1383,1385,1384,1382,1384,1386,1383,1384,1385,1387,1386,1384,1387,1388,1389,1390,1388,1391,1389,1390,1389,1392,1389,1391,1393,1392,1389,1394,1394,1389,1393,1395,1396,1397,1395,1398,1396,1397,1396,1399,1396,1398,1400,1399,1396,1401,1401,1396,1400,1402,1403,1404,1402,1405,1403,1404,1403,1406,1403,1405,1407,1406,1403,1408,1408,1403,1407,1409,1410,1411,1409,1412,1410,1411,1410,1413,1410,1412,1414,1413,1410,1415,1415,1410,1414,1416,1417,1418,1416,1419,1417,1418,1417,1420,1417,1419,1421,1420,1417,1422,1422,1417,1421,1423,1424,1425,1423,1426,1424,1425,1424,1427,1424,1426,1428,1427,1424,1429,1429,1424,1428,1430,1431,1432,1430,1433,1431,1432,1431,1434,1431,1433,1435,1434,1431,1436,1436,1431,1435,1437,1438,1439,1437,1440,1438,1439,1438,1441,1438,1440,1442,1441,1438,1443,1443,1438,1442,1444,1445,1446,1445,1444,1447,1446,1448,1444,1444,1449,1447,1448,1450,1444,1449,1444,1450,1450,1448,1451,1450,1452,1449,1453,1450,1451,1452,1450,1454,1454,1450,1453,1455,1456,1457,1456,1458,1457,1455,1459,1456,1460,1458,1456,1456,1459,1461,1456,1461,1460,1462,1461,1459,1461,1463,1460,1461,1462,1464,1463,1461,1464,1465,1466,1467,1465,1468,1466,1467,1466,1469,1466,1468,1470,1469,1466,1471,1471,1466,1470,1472,1473,1474,1472,1475,1473,1474,1473,1476,1473,1475,1477,1476,1473,1478,1478,1473,1477,1479,1480,1481,1479,1482,1480,1481,1480,1483,1480,1482,1484,1483,1480,1485,1485,1480,1484,1486,1487,1488,1486,1489,1487,1488,1487,
- 1490,1487,1489,1491,1490,1487,1492,1492,1487,1491,1493,1494,1495,1493,1496,1494,1495,1494,1497,1494,1496,1498,1497,1494,1499,1499,1494,1498,1500,1501,1502,1500,1503,1501,1502,1501,1504,1501,1503,1505,1504,1501,1506,1506,1501,1505,1507,1508,1509,1507,1510,1508,1509,1508,1511,1508,1510,1512,1511,1508,1513,1513,1508,1512,1514,1515,1516,1514,1517,1515,1516,1515,1518,1515,1517,1519,1518,1515,1520,1520,1515,1519,1521,1522,1523,1522,1521,1524,1523,1525,1521,1521,1526,1524,1525,1527,1521,1526,1521,1527,1527,1525,1528,1527,1529,1526,1530,1527,1528,1529,1527,1531,1531,1527,1530,1532,1533,1534,1533,1535,1534,1532,1536,1533,1537,1535,1533,1533,1536,1538,1533,1538,1537,1539,1538,1536,1538,1540,1537,1538,1539,1541,1540,1538,1541,1542,1543,1544,1542,1545,1543,1544,1543,1546,1543,1545,1547,1546,1543,1548,1548,1543,1547,1549,1550,1551,1549,1552,1550,1551,1550,1553,1550,1552,1554,1553,1550,1555,1555,1550,1554,1556,1557,1558,1556,1559,1557,1558,1557,1560,1557,1559,1561,1560,1557,1562,1562,1557,1561,1563,1564,1565,1563,1566,1564,1565,1564,1567,1564,1566,1568,1567,1564,1569,1569,1564,1568,1570,1571,1572,1570,1573,1571,1572,1571,1574,1571,1573,1575,1574,1571,1576,1576,1571,1575,1577,1578,1579,1577,1580,1578,1579,1578,1581,1578,1580,1582,1581,1578,1583,1583,1578,1582,1584,1585,1586,1584,1587,1585,1586,1585,1588,1585,1587,1589,1588,1585,1590,1590,1585,1589,1591,1592,1593,1591,1594,1592,1593,1592,1595,1592,1594,1596,1595,1592,1597,1597,1592,1596,1598,1599,1600,1598,1601,1599,1600,1602,1598,1601,1598,1603,1604,1598,1602,1604,1603,1598,1604,1602,1605,1603,1604,1606,1607,1604,1605,1604,1608,1606,1608,1604,1607,1609,1610,1611,1611,1610,1612,1611,1613,1609,1614,1611,1612,1613,1611,1615,1615,1611,1614,1615,1616,1613,1617,1615,1614,1616,1615,1618,1618,1615,1617,1619,1620,1621,1622,1619,1621,1620,1619,1623,1619,1622,1624,1625,1623,1619,1624,1625,1619,1626,1623,1625,1625,1624,1627,1628,1626,1625,1629,1625,1627,1625,1629,1628,1630,1631,1632,1630,1633,1631,1632,1631,1634,1631,1633,1635,1634,1631,1636,1636,1631,1635,1637,1638,1639,1637,1640,1638,1639,
- 1638,1641,1638,1640,1642,1641,1638,1643,1643,1638,1642,1644,1645,1646,1644,1647,1645,1646,1645,1648,1645,1647,1649,1648,1645,1650,1650,1645,1649,1651,1652,1653,1651,1654,1652,1653,1652,1655,1652,1654,1656,1655,1652,1657,1657,1652,1656,1658,1659,1660,1658,1661,1659,1660,1662,1658,1661,1658,1663,1664,1658,1662,1664,1663,1658,1664,1662,1665,1663,1664,1666,1667,1664,1665,1664,1668,1666,1668,1664,1667,1669,1670,1671,1671,1670,1672,1671,1673,1669,1674,1671,1672,1673,1671,1675,1675,1671,1674,1675,1676,1673,1677,1675,1674,1676,1675,1678,1678,1675,1677,1679,1680,1681,1682,1679,1681,1680,1679,1683,1679,1682,1684,1685,1683,1679,1684,1685,1679,1686,1683,1685,1685,1684,1687,1688,1686,1685,1689,1685,1687,1685,1689,1688,1690,1691,1692,1690,1693,1691,1692,1691,1694,1691,1693,1695,1694,1691,1696,1696,1691,1695,1697,1698,1699,1697,1700,1698,1699,1698,1701,1698,1700,1702,1701,1698,1703,1703,1698,1702,1704,1705,1706,1704,1707,1705,1706,1705,1708,1705,1707,1709,1708,1705,1710,1710,1705,1709,1711,1712,1713,1711,1714,1712,1713,1712,1715,1712,1714,1716,1715,1712,1717,1717,1712,1716,1718,1719,1720,1718,1721,1719,1720,1722,1718,1721,1718,1723,1724,1718,1722,1724,1723,1718,1724,1722,1725,1723,1724,1726,1727,1724,1725,1724,1728,1726,1728,1724,1727,1729,1730,1731,1731,1730,1732,1731,1733,1729,1734,1731,1732,1733,1731,1735,1735,1731,1734,1735,1736,1733,1737,1735,1734,1736,1735,1738,1738,1735,1737,1739,1740,1741,1742,1739,1741,1740,1739,1743,1739,1742,1744,1745,1743,1739,1744,1745,1739,1746,1743,1745,1745,1744,1747,1748,1746,1745,1749,1745,1747,1745,1749,1748,1750,1751,1752,1750,1753,1751,1752,1751,1754,1751,1753,1755,1754,1751,1756,1756,1751,1755,1757,1758,1759,1757,1760,1758,1759,1758,1761,1758,1760,1762,1761,1758,1763,1763,1758,1762,1764,1765,1766,1764,1767,1765,1766,1765,1768,1765,1767,1769,1768,1765,1770,1770,1765,1769,1771,1772,1773,1771,1774,1772,1773,1772,1775,1772,1774,1776,1775,1772,1777,1777,1772,1776
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *3289 {
- 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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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: *1731 {
- 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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- 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: "LayerElementColor"
- 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: 2267733791904, "Geometry::", "Mesh" {
- Vertices: *2910 {
- a: -6.3896484375,350.672729492188,-82.6348876953125,-1.4169921875,324.6259765625,-87.2568359375,-6.4521484375,325.840087890625,-71.595458984375,-6.259765625,334.858154296875,-101.441650390625,-6.4560546875,308.941528320313,-69.8895263671875,-6.1826171875,301.178375244141,-111.197601318359,-1.326171875,292.377899169922,-99.1806945800781,-6.109375,254.756988525391,-119.709808349609,-1.4609375,297.874603271484,-78.9505920410156,-1.587890625,293.159301757813,-59.1531982421875,-6.630859375,302.844055175781,-42.8893432617188,-6.5234375,268.998657226563,-57.1585693359375,-1.5029296875,262.301879882813,-70.2987060546875,-6.5126953125,227.13996887207,-56.2535858154297,-3.939453125,252.633010864258,-87.1677703857422,-1.2763671875,253.555419921875,-104.371337890625,-3.9345703125,201.782073974609,-84.9073791503906,-1.2548828125,211.290954589844,-105.210021972656,-6.08984375,206.93342590332,-119.78923034668,-1.3359375,184.079071044922,-91.1650695800781,-6.1865234375,171.769668579102,-102.746932983398,-6.3955078125,165.306365966797,-70.5149230957031,-1.4560546875,179.915191650391,-72.5525817871094,-1.537109375,184.744079589844,-60.3486938476563,-6.5537109375,172.938781738281,-46.8278198242188,-1.5302734375,218.8466796875,-63.5751953125,-2.5791015625,197.027801513672,-51.2143859863281,-6.626953125,201.016036987305,-37.2017364501953,-36.21875,57.6600341796875,97.6365966796875,-27.345703125,35.9761199951172,84.3843231201172,-31.572265625,30.9502716064453,99.5166778564453,-34.6279296875,49.3818969726563,74.5557250976563,-28.7177734375,14.7368774414063,95.3394165039063,-29.634765625,21.5134582519531,53.8689270019531,-22.7021484375,10.1650695800781,62.1513977050781,-22.4931640625,-18.565673828125,29.992919921875,-22.5302734375,8.41461181640625,83.0405883789063,-20.7109375,-2.63931274414063,100.031585693359,-26.291015625,-0.030364990234375,118.625885009766,-21.5107421875,-26.5270690917969,93.6428527832031,-16.25390625,-27.426513671875,79.005126953125,-14.6162109375,-65.5665588378906,80.1756286621094,-18.0771484375,-31.1152038574219,59.8447570800781,
- -16.626953125,-24.0049743652344,43.9950256347656,-9.6396484375,-78.9341430664063,44.5785522460938,-9.7587890625,-62.8308410644531,28.7521667480469,-14.6748046875,-62.7923278808594,13.5611877441406,-4.5634765625,-92.7577819824219,32.6426086425781,-8.0205078125,-101.090454101563,17.5491943359375,-5.2568359375,-117.964416503906,45.6273803710938,-2.8974609375,-102.901000976563,48.7083740234375,-3.041015625,-102.557312011719,61.8284301757813,-5.2509765625,-118.906860351563,70.4954833984375,-8.7900390625,-69.9099426269531,70.4601745605469,-5.529296875,-94.4470825195313,74.6124877929688,-9.333984375,-96.178955078125,89.143310546875,-6.3896484375,56.15185546875,-342.57080078125,-1.4169921875,31.2838439941406,-333.550140380859,-6.4521484375,40.1658935546875,-320.594848632813,-6.259765625,33.0527648925781,-350.951171875,-6.4560546875,26.3840942382813,-310.667663574219,-6.1826171875,-0.99261474609375,-342.559997558594,-1.326171875,-2.60549926757813,-327.751983642578,-6.1083984375,-45.4508361816406,-326.720367431641,-1.4609375,12.2696533203125,-312.981323242188,-1.587890625,18.0845642089844,-293.478912353516,-6.630859375,34.6035614013672,-284.236267089844,-6.5234375,-1.841552734375,-279.670654296875,-1.5029296875,-14.2113037109375,-287.702514648438,-6.5126953125,-37.6400146484375,-257.958374023438,-3.939453125,-31.0196533203125,-297.477661132813,-1.2763671875,-38.8220520019531,-312.835723876953,-3.9345703125,-73.9273376464844,-270.093353271484,-1.2548828125,-75.8435668945313,-292.430480957031,-6.08984375,-86.9068603515625,-302.877563476563,-1.3359375,-92.3875122070313,-266.660949707031,-6.1865234375,-108.838745117188,-270.536987304688,-6.3955078125,-98.320068359375,-239.391357421875,-1.4560546875,-86.6874389648438,-248.460876464844,-1.537109375,-76.4031372070313,-240.305480957031,-6.5537109375,-79.8670043945313,-222.694152832031,-1.5302734375,-48.48291015625,-260.15087890625,-2.580078125,-61.1983337402344,-238.538177490234,-6.6279296875,-50.7381896972656,-228.396392822266,-6.3896484375,38.9090576171875,263.996948242188,-1.4169921875,25.7069396972656,241.073150634766,
- -6.4521484375,14.4901428222656,252.070220947266,-6.259765625,43.1502685546875,239.793807983398,-6.4560546875,2.32147216796875,240.221862792969,-6.1826171875,28.9746246337891,207.722671508789,-1.326171875,14.1121215820313,208.704895019531,-6.1083984375,5.65625,166.6904296875,-1.4609375,2.14846801757813,225.919952392578,-1.587890625,-16.0478515625,235.033203125,-6.630859375,-22.2811584472656,252.905364990234,-6.5234375,-33.1064758300781,217.806610107422,-1.5029296875,-27.3449401855469,204.230255126953,-6.5126953125,-60.7055358886719,186.323760986328,-3.939453125,-20.6370239257813,185.980163574219,-1.2763671875,-6.8662109375,175.62890625,-3.9345703125,-55.055419921875,148.479736328125,-1.2548828125,-33.3907470703125,142.713745117188,-6.08984375,-25.0234375,130.00390625,-1.3359375,-61.6409301757813,130.895202636719,-6.1865234375,-60.6809692382813,114.021179199219,-6.3955078125,-89.5267028808594,129.788726806641,-1.4560546875,-78.5751953125,139.669921875,-1.537109375,-84.8206176757813,151.213562011719,-6.5537109375,-102.765563964844,150.860412597656,-1.5302734375,-60.4278564453125,175.263549804688,-2.580078125,-83.9214782714844,166.495513916016,-6.6279296875,-92.0920715332031,178.556365966797,-1.4833984375,-60.9386291503906,-19.8321838378906,-6.4091796875,-65.4585571289063,-58.2153930664063,-6.6787109375,-92.3460693359375,-26.8382568359375,-6.7490234375,-58.91845703125,21.81005859375,-1.31640625,-54.8632202148438,-49.9550170898438,-6.1005859375,-10.3143615722656,-69.8827209472656,-1.533203125,-40.516845703125,11.384521484375,-6.5947265625,2.21176147460938,49.4519958496094,-1.0908203125,-5.26962280273438,-49.1485290527344,-5.970703125,41.2644653320313,-46.5245971679688,-3.865234375,-4.50506591796875,-16.8175659179688,-0.9658203125,34.776123046875,-36.218994140625,-6.1220703125,54.1157989501953,-0.837326049804688,-1.4150390625,8.71798706054688,34.8420104980469,-1.14453125,38.5311584472656,6.23526000976563,-1.4326171875,41.3158111572266,71.2816314697266,-6.578125,42.1599578857422,85.8347625732422,-3.8759765625,45.1002044677734,35.0777435302734,
- -1.38671875,58.0551147460938,77.9799194335938,-6.5078125,79.1994934082031,107.630157470703,-6.27734375,88.2668151855469,66.8898620605469,-1.1650390625,63.9679870605469,35.9640808105469,-6.1015625,88.6328125,29.134765625,-1.2431640625,68.7123107910156,57.7162170410156,-1.4833984375,79.8381195068359,-47.2819976806641,-6.408203125,64.7727966308594,-82.8727111816406,-6.6787109375,47.7242431640625,-45.2327880859375,-6.75,93.4140014648438,-7.86334228515625,-1.3154296875,77.25439453125,-77.90185546875,-6.0986328125,114.460205078125,-109.484130859375,-1.5341796875,108.169281005859,-23.0152893066406,-6.595703125,159.833236694336,1.59690856933594,-1.08984375,125.097900390625,-90.985107421875,-5.96875,170.511459350586,-101.469985961914,-3.865234375,134.866073608398,-60.1563873291016,-0.96484375,167.161315917969,-89.7605590820313,-6.1220703125,195.617309570313,-61.1932373046875,-1.416015625,161.997711181641,-14.2493591308594,-1.14453125,182.629745483398,-50.0470123291016,-1.4345703125,203.479217529297,11.6286315917969,-6.580078125,208.356414794922,25.3671569824219,-3.876953125,196.996658325195,-24.1898651123047,-1.3876953125,221.423446655273,13.3834075927734,-6.5107421875,250.010772705078,35.9443664550781,-6.279296875,247.332809448242,-5.70722961425781,-1.1650390625,215.3603515625,-28.6103515625,-6.1015625,237.13444519043,-42.0598907470703,-1.244140625,225.993850708008,-9.05107116699219,-1.4833984375,-40.4217529296875,162.093872070313,-6.4091796875,-67.6483154296875,134.664184570313,-6.6787109375,-69.4671020507813,175.945983886719,-6.7490234375,-13.1533203125,193.6318359375,-1.31640625,-54.2131958007813,134.633483886719,-6.1005859375,-31.4301452636719,91.4761047363281,-1.533203125,-5.095458984375,174.077392578125,-6.5947265625,52.0168151855469,177.699432373047,-1.0908203125,-14.6730041503906,104.688323974609,-5.970703125,23.5789642333984,78.0594329833984,-3.865234375,5.86477661132813,129.669464111328,-0.9658203125,24.8258209228516,90.1734771728516,-6.1220703125,61.868408203125,106.102783203125,-1.4150390625,48.1296691894531,162.184356689453,
- -1.14453125,53.9605102539063,121.279846191406,-1.4326171875,96.2618713378906,170.770660400391,-6.578125,105.900573730469,181.70817565918,-3.8759765625,76.9172973632813,139.936828613281,-1.38671875,113.570373535156,165.722732543945,-6.5078125,148.499725341797,176.026092529297,-6.2783203125,130.516235351563,138.361938476563,-1.1650390625,92.3172607421875,128.998901367188,-6.1015625,107.523712158203,108.414337158203,-1.2431640625,109.465148925781,143.198547363281,-1.4853515625,-32.9537353515625,-90.6236572265625,-6.4091796875,-66.3283386230469,-110.113494873047,-6.6796875,-57.4500122070313,-69.7566528320313,-6.751953125,1.51925659179688,-67.1770324707031,-1.31640625,-53.3544006347656,-113.603424072266,-6.099609375,-42.4597778320313,-161.175598144531,-1.5361328125,4.2672119140625,-88.1468505859375,-6.5986328125,60.3843994140625,-99.3626708984375,-1.0908203125,-22.8641357421875,-152.725463867188,-5.970703125,7.23583984375,-188.31103515625,-3.8662109375,3.41622924804688,-133.879669189453,-0.9658203125,11.561767578125,-176.926513671875,-6.1240234375,51.4576416015625,-171.079467773438,-1.41796875,52.6316375732422,-113.350784301758,-1.146484375,47.7271728515625,-154.376342773438,-1.4365234375,101.35107421875,-117.45556640625,-6.5830078125,113.481964111328,-109.371551513672,-3.87890625,74.7153625488281,-142.265106201172,-1.390625,116.774566650391,-126.791839599609,-6.513671875,153.179351806641,-125.835296630859,-6.2822265625,126.099243164063,-157.595092773438,-1.16796875,86.7777404785156,-156.799407958984,-6.1044921875,96.1671752929688,-180.608215332031,-1.2470703125,107.0048828125,-147.4990234375,-1.482421875,-75.6968078613281,-152.366729736328,-6.40625,-113.803771972656,-158.813537597656,-6.6767578125,-91.2454528808594,-124.192718505859,-6.7490234375,-35.16455078125,-142.60400390625,-1.3134765625,-102.898376464844,-166.661071777344,-6.09765625,-109.505554199219,-215.014343261719,-1.533203125,-39.9993591308594,-163.193695068359,-6.595703125,8.54150390625,-193.50341796875,-1.087890625,-88.1885375976563,-214.029357910156,-5.9677734375,-72.5948486328125,-257.951293945313,
- -3.86328125,-56.9459838867188,-205.678405761719,-0.962890625,-64.5273742675781,-248.829132080078,-6.12109375,-25.1370849609375,-257.447631835938,-1.4150390625,-3.65185546875,-203.85302734375,-1.1435546875,-22.728515625,-240.5029296875,-1.43359375,40.4789733886719,-224.897979736328,-6.580078125,54.6831512451172,-221.617630004883,-3.8759765625,6.79791259765625,-238.703063964844,-1.3876953125,51.6111450195313,-239.080261230469,-6.5107421875,86.0083160400391,-251.040512084961,-6.2783203125,49.4571533203125,-271.191284179688,-1.1650390625,12.9499206542969,-256.561798095703,-6.1015625,13.3265075683594,-282.151031494141,-1.244140625,35.1586303710938,-255.001525878906,-22.255859375,279.812561035156,-19.2499389648438,-19.0029296875,298.818359375,-68.78515625,-14.11328125,251.021575927734,-77.9159240722656,-4.7861328125,225.789916992188,-59.6182861328125,-6.4541015625,214.349197387695,-76.2103729248047,-3.34765625,218.035766601563,-60.5062255859375,-11.3662109375,231.532363891602,-81.1981048583984,0.8369140625,213.314926147461,-86.2905426025391,-13.1123046875,270.569122314453,-87.7111511230469,-0.9755859375,232.315887451172,-97.1763000488281,-7.859375,272.435974121094,-96.8491821289063,-36.5166015625,-32.0199584960938,132.963439941406,-39.3564453125,2.81793212890625,92.9155883789063,-27.283203125,-37.4894104003906,67.9881286621094,-12.8955078125,-65.3827514648438,76.5527954101563,-13.6552734375,-70.6712341308594,57.0484924316406,-10.265625,-72.0099487304688,73.0662231445313,-21.5927734375,-53.9425354003906,58.2381286621094,-6.9052734375,-66.9672241210938,47.2222290039063,-30.0693359375,-15.9269714355469,65.4695129394531,-12.4375,-46.0317077636719,43.4917297363281,-25.744140625,-10.2090148925781,57.5204772949219,-22.255859375,26.4777069091797,-252.24787902832,-19.0029296875,18.1695861816406,-304.649749755859,-14.11328125,-27.7890930175781,-288.659210205078,-4.7861328125,-40.4916076660156,-260.197662353516,-6.4541015625,-58.6953735351563,-268.845764160156,-3.34765625,-47.6504821777344,-257.087982177734,-11.3662109375,-46.3083190917969,-281.756561279297,
- 0.8369140625,-64.6309509277344,-277.057708740234,-13.1123046875,-15.7576599121094,-306.914886474609,-0.9755859375,-53.618408203125,-295.985595703125,-7.859375,-18.7103881835938,-315.763122558594,-22.255859375,-55.19482421875,250.45751953125,-19.0029296875,-5.03189086914063,233.177093505859,-14.11328125,-28.7604675292969,190.693634033203,-4.7861328125,-58.9957580566406,183.126312255859,-6.4541015625,-53.6397705078125,163.697143554688,-3.34765625,-63.3003845214844,176.615631103516,-11.3662109375,-38.7736206054688,173.653137207031,0.8369140625,-46.5830383300781,156.425750732422,-13.1123046875,-8.6925048828125,199.370971679688,-0.9755859375,-26.0306396484375,163.983032226563,-7.859375,-0.491668701171875,194.926300048828,-11.8583984375,32.3447265625,101.1083984375,-13.736328125,66.2856903076172,96.7651824951172,-11.623046875,62.0916748046875,75.1512451171875,-12.404296875,9.02212524414063,51.9996643066406,-7.01953125,1.0711669921875,68.5047607421875,-3.6767578125,3.30026245117188,27.4018249511719,-3.5380859375,-8.08963012695313,34.6486511230469,-6.5478515625,-51.6974792480469,-65.9884948730469,0.0107421875,-41.4183654785156,-50.8753967285156,-6.2158203125,-13.586669921875,-47.951904296875,-13.6591796875,-32.7945251464844,-74.0982360839844,-7.89453125,-41.4861145019531,-84.6921691894531,-17.1923828125,6.7393798828125,-73.2655029296875,-15.7734375,-11.1599426269531,-86.1814270019531,-11.8603515625,203.200134277344,42.7753295898438,-13.73828125,234.575500488281,29.1213989257813,-11.625,224.509002685547,9.54025268554688,-12.4052734375,167.084075927734,2.13973999023438,-7.021484375,164.061752319336,20.2092132568359,-3.6767578125,154.71696472168,-19.8787384033203,-3.5390625,145.805389404297,-9.73953247070313,-6.5458984375,75.81396484375,-94.18212890625,0.01171875,89.9065856933594,-82.5416564941406,-6.2138671875,117.446273803711,-87.5136871337891,-13.658203125,91.6976470947266,-107.250595092773,-7.892578125,80.3920593261719,-114.994659423828,-17.1904296875,129.88948059082,-117.49821472168,-15.771484375,109.094055175781,-124.897155761719,
- -11.8583984375,107.591735839844,199.784133911133,-13.736328125,131.633941650391,175.436676025391,-11.623046875,115.004333496094,161.007263183594,-12.404296875,58.9489898681641,175.504653930664,-7.01953125,62.8668518066406,193.400054931641,-3.6767578125,39.2770538330078,159.668655395508,-3.5380859375,34.7781372070313,172.396301269531,-6.5478515625,-61.6073608398438,120.059631347656,0.0107421875,-44.196044921875,125.619384765625,-6.2158203125,-20.4833374023438,110.757873535156,-13.6591796875,-51.7270202636719,102.019073486328,-7.89453125,-65.1019897460938,99.0376586914063,-17.1923828125,-20.0902099609375,78.2965087890625,-15.7744140625,-42.1459350585938,79.1655883789063,-11.8642578125,119.773162841797,-92.3401184082031,-13.7412109375,136.730712890625,-122.060302734375,-11.6279296875,116.944976806641,-131.719085693359,-12.408203125,66.5171203613281,-103.268035888672,-7.0234375,74.91357421875,-86.98486328125,-3.6796875,43.4295654296875,-113.501098632813,-3.541015625,42.3615875244141,-100.043685913086,-6.546875,-64.25390625,-125.78125,0.0107421875,-45.9979248046875,-124.895385742188,-6.2158203125,-26.9146423339844,-145.363861083984,-13.6591796875,-59.3552856445313,-145.758605957031,-7.8935546875,-73.0465087890625,-145.192016601563,-17.19140625,-34.8982543945313,-176.830871582031,-15.7724609375,-55.9854736328125,-170.308715820313,-11.8603515625,66.5833435058594,-207.906890869141,-13.73828125,71.95263671875,-241.70166015625,-11.625,50.0310363769531,-243.749237060547,-12.4052734375,12.8995971679688,-199.323059082031,-7.0205078125,26.5052795410156,-187.054290771484,-3.6767578125,-12.3141479492188,-200.743835449219,-3.5380859375,-8.56103515625,-187.77587890625,-6.5439453125,-117.395965576172,-174.204559326172,0.013671875,-100.003387451172,-179.821746826172,-6.212890625,-89.3782653808594,-205.712249755859,-13.65625,-119.868103027344,-194.624938964844,-7.890625,-132.477233886719,-189.259460449219,-17.1884765625,-107.960021972656,-232.332092285156,-15.76953125,-125.385223388672,-218.783660888672,-15.2236328125,80.2649230957031,96.6633605957031,
- -9.2041015625,59.8782501220703,145.09114074707,-10.1435546875,97.5302429199219,128.657196044922,-4.4521484375,50.6075134277344,78.2754821777344,-10.20703125,127.202758789063,105.096313476563,-12.83984375,69.1775970458984,68.4637298583984,-0.41796875,20.8043212890625,39.6881103515625,-4.6748046875,80.9146423339844,56.6763610839844,-4.9931640625,47.0183715820313,32.8933715820313,-11.8974609375,50.9936218261719,15.5385437011719,-1.5,32.0825653076172,1.15873718261719,-12.7001953125,83.1051940917969,59.4040222167969,-3.3349609375,41.7915649414063,-8.03851318359375,-17.77734375,81.7157287597656,23.7860412597656,-19.044921875,115.134887695313,49.0010986328125,-17.134765625,107.199035644531,28.4441528320313,-10.6044921875,-36.1427917480469,32.3347473144531,-13.275390625,-26.0559997558594,16.3424377441406,-2.9775390625,-41.6572570800781,-1.63186645507813,-18.3017578125,-8.473388671875,67.543212890625,-1.5556640625,-29.542236328125,-7.415283203125,-16.306640625,1.50421142578125,33.0061645507813,-17.875,25.7900848388672,67.0937957763672,-13.03125,23.9171142578125,45.5938720703125,-12.4287109375,38.7178497314453,-7.65422058105469,-2.6240234375,16,36.2734375,-6.4990234375,52.9222259521484,23.7737884521484,-1.806640625,12.6156311035156,-28.0953063964844,-9.57421875,82.874267578125,3.823486328125,-11.3515625,30.5060729980469,-35.4187316894531,1.16015625,-12.4546508789063,-67.3101196289063,-4.9423828125,43.0097503662109,-46.1259918212891,-15.6416015625,-63.4922485351563,-10.5039672851563,-17.6728515625,-106.628021240234,20.0292053222656,-13.6376953125,-66.1798095703125,26.0516357421875,-3.681640625,-81.989990234375,-48.606201171875,-8.369140625,-28.8905334472656,21.8897399902344,-10.3232421875,-58.5480346679688,-40.0177612304688,0.908203125,-60.7174987792969,-60.9079284667969,0.185546875,-43.6073608398438,-43.1337280273438,-8.07421875,199.477798461914,-73.4167327880859,-3.0673828125,171.332504272461,-90.0776519775391,-12.0009765625,182.276611328125,-70.250732421875,-13.8056640625,220.97900390625,-37.02685546875,-2.537109375,161.977203369141,-81.5452575683594,
- -14.642578125,194.038848876953,-38.3976745605469,-14.5859375,208.604553222656,-7.34173583984375,-11.45703125,190.223678588867,-16.4794464111328,-15.2255859375,247.969207763672,25.1156921386719,-9.2080078125,241.926818847656,77.3115692138672,-10.146484375,273.487060546875,51.011474609375,-4.4541015625,214.355270385742,15.7488250732422,-10.208984375,295.39404296875,20.09912109375,-12.8408203125,229.444000244141,1.13833618164063,-0.4189453125,174.956848144531,-12.9738159179688,-4.67578125,237.419723510742,-13.4591827392578,-4.994140625,198.227828979492,-26.8229522705078,-11.8974609375,197.195510864258,-44.5964813232422,-1.5,175.019683837891,-53.1189880371094,-12.701171875,240.28515625,-11.4521484375,-3.333984375,181.771545410156,-64.6640014648438,-17.77734375,228.998260498047,-45.2634582519531,-19.044921875,268.132019042969,-30.3904418945313,-17.1337890625,254.767974853516,-47.9117126464844,-10.60546875,118.223236083984,-4.12246704101563,-13.275390625,123.439590454102,-22.2957611083984,-2.978515625,103.437210083008,-35.1946258544922,-18.3037109375,154.628799438477,21.9520416259766,-1.5556640625,113.453552246094,-44.1323852539063,-16.3076171875,154.558288574219,-13.9973754882813,-17.8759765625,187.401901245117,11.9468231201172,-13.0322265625,179.595703125,-8.173828125,-12.427734375,178.927795410156,-63.4364624023438,-2.625,169.389724731445,-14.9091033935547,-6.5,201.348175048828,-37.2299499511719,-1.806640625,148.15348815918,-75.7683868408203,-9.5732421875,224.532348632813,-64.7547607421875,-11.3505859375,163.284820556641,-87.8011169433594,1.162109375,113.124176025391,-106.415863037109,-4.94140625,172.298645019531,-101.574401855469,-15.6416015625,79.9929046630859,-37.6115875244141,-17.6748046875,47.1073303222656,3.75869750976563,-13.6396484375,87.6272125244141,-1.76048278808594,-3.6806640625,51.5849914550781,-69.0273132324219,-8.369140625,122.267837524414,-16.1774749755859,-10.322265625,76.4932098388672,-67.3310089111328,0.9091796875,68.5726470947266,-86.7828216552734,0.1865234375,89.9679870605469,-74.4978332519531,-15.2236328125,142.575744628906,166.734924316406,
- -9.2041015625,156.388305664063,217.431274414063,-10.1435546875,175.896820068359,181.27766418457,-4.4521484375,107.889831542969,170.54801940918,-10.20703125,184.728454589844,144.431564331055,-12.83984375,116.459167480469,151.373229980469,-0.41796875,60.6331634521484,158.547225952148,-4.6748046875,118.430648803711,134.855453491211,-4.9931640625,77.0800018310547,137.033126831055,-11.8974609375,69.508544921875,120.919677734375,-1.5,45.7538757324219,121.260711669922,-12.7001953125,121.837005615234,135.652435302734,-3.3349609375,47.7251892089844,108.031829833984,-17.77734375,98.7799072265625,108.468383789063,-19.044921875,140.637573242188,107.711791992188,-17.134765625,121.713928222656,96.4219360351563,-10.6044921875,11.2665710449219,187.873016357422,-13.275390625,9.3463134765625,169.063110351563,-2.9775390625,-14.0194091796875,164.533325195313,-18.3017578125,54.7601165771484,198.529647827148,-1.5556640625,-8.04806518554688,152.509552001953,-16.306640625,41.3184509277344,165.187591552734,-17.8740234375,81.4571838378906,177.048004150391,-13.03125,66.7249755859375,161.276733398438,-12.4287109375,45.5426635742188,110.230163574219,-2.6240234375,54.7453002929688,158.821472167969,-6.5,76.1042938232422,126.212692260742,-1.8076171875,12.3890075683594,110.233734130859,-9.57421875,87.3821716308594,92.0384216308594,-11.3515625,21.9573059082031,93.4367980957031,1.16015625,-31.5284423828125,94.8211669921875,-4.9423828125,25.1988067626953,77.2964630126953,-15.6416015625,-36.6798095703125,171.012573242188,-17.6728515625,-51.8108825683594,221.649078369141,-13.6376953125,-16.2541809082031,201.448944091797,-3.681640625,-74.7374267578125,152.422729492188,-8.3681640625,10.5350036621094,175.177581787109,-10.3232421875,-50.986328125,144.7294921875,0.908203125,-65.5761413574219,129.621124267578,0.185546875,-41.1457214355469,133.063262939453,-15.2294921875,145.061462402344,-133.286193847656,-9.2109375,171.469024658203,-87.8600769042969,-10.1494140625,181.004257202148,-127.819961547852,-4.45703125,112.528900146484,-120.666412353516,-10.212890625,180.045059204102,-165.697128295898,
- -12.84375,115.868591308594,-141.402893066406,-0.4208984375,63.7759399414063,-120.087341308594,-4.6787109375,113.518310546875,-157.869384765625,-4.99609375,74.1246337890625,-145.111694335938,-11.900390625,62.6572265625,-158.73046875,-1.501953125,39.7925262451172,-152.281692504883,-12.7041015625,117.0146484375,-157.9775390625,-3.3359375,38.2890777587891,-165.571273803711,-17.7802734375,87.7322540283203,-178.30387878418,-19.0478515625,127.98193359375,-189.81884765625,-17.13671875,106.788391113281,-195.852233886719,-10.607421875,23.6309967041016,-79.0320892333984,-13.27734375,16.9294738769531,-96.7121276855469,-2.98046875,-6.81436157226563,-95.0692443847656,-18.3056640625,68.4015655517578,-79.9412078857422,-1.5576171875,-4.14227294921875,-108.225280761719,-16.3095703125,46.8236083984375,-108.693969726563,-17.87890625,88.6629943847656,-107.576263427734,-13.03515625,70.3649749755859,-119.018814086914,-12.4296875,36.7463836669922,-162.884475708008,-2.626953125,58.1574249267578,-118.304489135742,-6.501953125,70.3941650390625,-155.315795898438,-1.8076171875,4.71298217773438,-154.339752197266,-9.576171875,72.4864196777344,-191.242095947266,-11.3515625,9.63040161132813,-173.035614013672,1.1611328125,-41.6926879882813,-157.917297363281,-4.9423828125,8.60464477539063,-189.464691162109,-15.6435546875,-27.0407104492188,-82.9703979492188,-17.67578125,-28.6152954101563,-30.1455688476563,-13.6416015625,0.53680419921875,-58.8245239257813,-3.681640625,-68.6028137207031,-91.1282043457031,-8.37109375,19.6534423828125,-91.1102294921875,-10.32421875,-47.6357116699219,-104.680633544922,0.908203125,-65.6252136230469,-115.520721435547,0.185546875,-41.1326599121094,-118.488128662109,-15.2265625,75.7820434570313,-255.145690917969,-9.2080078125,116.530258178711,-221.972671508789,-10.146484375,111.339279174805,-262.724182128906,-4.4541015625,49.8024597167969,-231.849884033203,-10.208984375,97.0657806396484,-297.821899414063,-12.8408203125,45.6042175292969,-252.428985595703,-0.41796875,4.39559936523438,-214.089752197266,-4.67578125,37.5899353027344,-267.004791259766,
- -4.9931640625,5.23983764648438,-241.157623291016,-11.896484375,-10.2981262207031,-249.848907470703,-1.4990234375,-29.4119567871094,-235.740081787109,-12.701171875,40.82275390625,-268.34130859375,-3.3330078125,-35.5118103027344,-247.643646240234,-17.7763671875,6.24905395507813,-277.016571044922,-19.044921875,39.8387756347656,-302.004028320313,-17.1337890625,17.8800354003906,-300.163909912109,-10.6044921875,-18.6644287109375,-161.504272460938,-13.2744140625,-31.1777648925781,-175.677764892578,-2.9775390625,-52.8116149902344,-165.755950927734,-18.302734375,22.9004211425781,-178.165008544922,-1.5546875,-54.9577331542969,-179.007537841797,-16.306640625,-7.44140625,-197.4453125,-17.8759765625,32.0972290039063,-211.174255371094,-13.0322265625,10.9370727539063,-215.418395996094,-12.4267578125,-36.0065002441406,-244.584625244141,-2.6240234375,-0.231658935546875,-210.438690185547,-6.4990234375,-1.85360717773438,-249.385833740234,-1.8046875,-62.9583129882813,-225.278625488281,-9.572265625,-12.5838623046875,-283.737182617188,-11.3486328125,-64.9601135253906,-244.506011962891,1.1640625,-107.637329101563,-212.236938476563,-4.939453125,-71.7217407226563,-259.514709472656,-15.640625,-67.4620361328125,-147.294067382813,-17.6728515625,-50.2799987792969,-97.3161315917969,-13.638671875,-33.1342163085938,-134.442810058594,-3.6796875,-109.226928710938,-140.248413085938,-8.3681640625,-26.6510314941406,-171.399078369141,-10.3212890625,-94.3969116210938,-160.332458496094,0.9111328125,-115.055297851563,-164.119750976563,0.1884765625,-93.1889343261719,-175.546356201172,-12.658203125,-85.6555480957031,54.5866394042969,-4.125,-105.220764160156,29.3056030273438,-13.53125,-103.322082519531,51.6788940429688,-19.650390625,-79.0101013183594,96.1354064941406,-1.5693359375,-116.66015625,34.123046875,-16.16015625,-103.625061035156,85.6347045898438,-16.63671875,-100.596008300781,119.798522949219,-11.0986328125,-113.985015869141,104.926116943359,-8.07421875,-70.1778564453125,-258.990356445313,-3.0673828125,-102.882446289063,-259.345336914063,-12.0009765625,-83.4915771484375,-247.648803710938,
- -13.8056640625,-33.3624572753906,-238.226715087891,-2.537109375,-106.718200683594,-247.279724121094,-14.642578125,-57.3781127929688,-225.943542480469,-14.5859375,-29.2363891601563,-206.331115722656,-11.45703125,-49.7232666015625,-205.053344726563,-8.07421875,-65.3385009765625,154.099975585938,-3.0673828125,-70.6675720214844,121.830474853516,-12.0009765625,-78.8204956054688,142.957824707031,-13.8056640625,-79.3938598632813,193.961608886719,-2.537109375,-83.21728515625,120.14794921875,-14.642578125,-95.6614990234375,172.443969726563,-14.5859375,-110.088287353516,203.563079833984,-11.45703125,-114.903869628906,183.609802246094,-0.8330078125,-51.9750061035156,3.38241577148438,-9.5498046875,-90.8581848144531,-16.0437316894531,-1.0537109375,-80.3279113769531,22.7863464355469,-0.65625,-44.793212890625,-27.636962890625,-1.193359375,-122.360717773438,10.9781494140625,-0.7080078125,-91.3615417480469,-63.0451354980469,-1.001953125,-138.102386474609,-46.2176208496094,-0.6669921875,-55.967041015625,-36.631103515625,-10.9384765625,-60.0320739746094,13.6642150878906,-0.6162109375,-22.8046569824219,-14.4218444824219,-0.861328125,-92.5206909179688,-30.9884643554688,-0.82421875,-17.4158325195313,36.0021362304688,-1.248046875,-110.612915039063,34.5013427734375,-1.2705078125,-72.3102416992188,77.6585083007813,-1.0341796875,-56.8983154296875,41.8966064453125,-10.83984375,-6.50833129882813,45.9447937011719,-0.7783203125,-34.7011413574219,8.72659301757813,-1.1767578125,-51.246826171875,78.442626953125,-0.5205078125,15.72705078125,3.31298828125,-0.9580078125,14.2606506347656,96.5165100097656,-0.58203125,57.3882141113281,58.1968078613281,-2.126953125,35.4564819335938,54.2133178710938,-9.3837890625,36.1847839355469,89.9357604980469,-2.0732421875,60.4000854492188,67.4938354492188,-2.2744140625,10.1117248535156,60.7875061035156,-2.201171875,67.7914581298828,102.637161254883,-2.53125,2.0316162109375,108.222045898438,-2.51953125,32.0983276367188,135.887390136719,-0.5322265625,24.0289306640625,14.2252197265625,-11.162109375,77.1856536865234,26.5547943115234,
- -0.2509765625,53.0047912597656,-17.6709899902344,-0.7158203125,24.2527465820313,54.1550903320313,-0.0087890625,107.712768554688,-15.4278564453125,-0.5439453125,91.3353881835938,83.8724975585938,-0.1455078125,143.49836730957,49.7962188720703,-0.38671875,-2.94290161132813,-44.1284484863281,-11.0166015625,50.2229614257813,-31.8063354492188,-0.10546875,26.0385437011719,-76.0298156738281,-0.5703125,-2.71368408203125,-4.20196533203125,0.13671875,80.7525329589844,-73.7953186035156,-0.3984375,64.3677062988281,25.5122375488281,0,116.523406982422,-8.55667114257813,-0.349609375,29.3549499511719,-19.9399719238281,-11.1708984375,-9.4893798828125,-58.2208251953125,-0.5966796875,-11.9979858398438,-7.81048583984375,-0.0966796875,49.9573516845703,-54.1373748779297,-0.6669921875,-57.5323791503906,-38.2189025878906,-0.0107421875,8.17529296875,-114.44775390625,-0.306640625,-54.0981140136719,-112.535614013672,-0.7880859375,-114.251739501953,-68.5603332519531,-10.6357421875,-65.1182250976563,-56.6992797851563,-0.52734375,-87.1487426757813,-97.8469848632813,-0.9599609375,-114.380859375,-31.5751953125,-0.3056640625,-36.4990234375,-95.3173828125,-0.8037109375,-52.5066833496094,-3.48910522460938,-0.435546875,-3.91635131835938,-34.5999450683594,-1.4912109375,256.688293457031,-90.0216674804688,-10.3857421875,213.217224121094,-103.007385253906,-1.64453125,231.026885986328,-64.9985046386719,-1.275390625,258.508361816406,-123.165466308594,-1.5966796875,185.724487304688,-69.5977783203125,-1.0703125,204.316528320313,-151.207885742188,-1.220703125,159.307952880859,-125.547515869141,-1.3447265625,201.137313842773,-108.999404907227,-10.6376953125,199.126403808594,-63.7505493164063,-1.48046875,231.640289306641,-90.1849060058594,-1.373046875,168.531814575195,-102.721115112305,-1.7783203125,238.160980224609,-45.1095275878906,-1.755859375,154.478073120117,-43.3480987548828,-2.015625,190.289855957031,-5.90936279296875,-1.517578125,255.924255371094,-86.0444946289063,-10.771484375,235.825729370117,-45.4457550048828,-1.71875,276.254760742188,-56.5284423828125,
- -1.4560546875,223.551498413086,-93.4279937744141,-2.0009765625,264.065673828125,-12.652099609375,-1.759765625,186.766387939453,-44.7599792480469,-2.0859375,204.457366943359,3.93685913085938,-1.5322265625,230.928344726563,-82.1605224609375,-10.33203125,263.001708984375,-114.285400390625,-1.302734375,221.142654418945,-116.632736206055,-1.6572265625,259.219421386719,-64.7620239257813,-1.0673828125,246.763671875,-154.27734375,-1.453125,309.677490234375,-99.074462890625,-1.1142578125,308.5419921875,-150.8642578125,-0.833984375,94.931640625,-27.49609375,-9.5498046875,52.1689910888672,-35.2841339111328,-1.0556640625,73.1301879882813,-0.94207763671875,-0.65625,93.1595458984375,-59.2867431640625,-1.1943359375,29.4721069335938,-0.53570556640625,-0.70703125,38.5521240234375,-80.2720947265625,-1.001953125,-1.6248779296875,-51.0545654296875,-0.666015625,79.9175720214844,-64.8011779785156,-10.9384765625,90.068359375,-15.3740234375,-0.6162109375,117.964904785156,-52.7431030273438,-0.861328125,46.3966979980469,-49.1687316894531,-0.8251953125,137.22900390625,-5.83349609375,-1.25,47.3249816894531,18.7673645019531,-1.2734375,96.1611328125,49.501953125,-1.0361328125,100.966506958008,10.8590850830078,-10.841796875,150.480316162109,0.664886474609375,-0.7783203125,113.0107421875,-27.19140625,-1.1796875,116.604736328125,44.370361328125,-0.5205078125,159.917449951172,-46.4809875488281,-0.9609375,184.553192138672,43.4184265136719,-0.5830078125,215.255432128906,-5.42425537109375,-2.1279296875,193.083831787109,-3.12222290039063,-9.3857421875,203.765075683594,30.9740600585938,-2.07421875,220.744903564453,2.65994262695313,-2.275390625,170.585693359375,10.272216796875,-2.203125,237.661926269531,34.3377075195313,-2.533203125,176.08219909668,58.0753631591797,-2.5234375,212.681793212891,76.2374420166016,-0.5322265625,170.937973022461,-38.3217926025391,-11.162109375,225.422271728516,-41.3384704589844,-0.25,189.846801757813,-77.0447998046875,-0.716796875,182.310302734375,-0.047119140625,-0.0078125,243.002243041992,-90.1784210205078,-0.544921875,255.024536132813,9.7413330078125,
- -0.1455078125,295.587768554688,-37.5528564453125,-0.3857421875,128.734466552734,-86.8163146972656,-11.015625,183.225769042969,-89.8406372070313,-0.103515625,147.64762878418,-125.54377746582,-0.5703125,140.111145019531,-48.5451049804688,0.1396484375,200.806518554688,-138.687622070313,-0.3984375,212.823699951172,-38.7583312988281,0.0009765625,253.381988525391,-86.0428161621094,-0.3486328125,166.504943847656,-72.6151733398438,-11.1689453125,118.511001586914,-98.5173187255859,-0.5966796875,130.188415527344,-49.4151000976563,-0.0947265625,176.730697631836,-111.207778930664,-0.666015625,77.9708709716797,-65.8875274658203,-0.0078125,119.760299682617,-157.440872192383,-0.3046875,60.5019836425781,-138.204071044922,-0.787109375,15.0325927734375,-79.1715087890625,-10.634765625,65.5233764648438,-81.5127563476563,-0.525390625,32.8724212646484,-114.864883422852,-0.9599609375,25.2433776855469,-43.6238098144531,-0.302734375,82.2115325927734,-126.589248657227,-0.8046875,92.5009002685547,-33.9463653564453,-0.4345703125,130.462432861328,-77.3949890136719,-0.8330078125,-19.0499877929688,174.842590332031,-9.548828125,-61.6399230957031,183.526092529297,-1.0537109375,-29.4059448242188,207.602844238281,-0.65625,-32.5237426757813,145.993835449219,-1.193359375,-69.77783203125,224.22412109375,-0.7080078125,-91.0186767578125,146.833862304688,-1.0009765625,-117.439483642578,188.903289794922,-0.6669921875,-46.8665161132813,145.803405761719,-10.9375,-19.0534057617188,187.905578613281,-0.6162109375,-7.06436157226563,142.838958740234,-0.861328125,-72.1641235351563,172.786071777344,-0.82421875,28.2709045410156,179.213287353516,-1.248046875,-46.0243225097656,235.499114990234,-1.2705078125,10.7412109375,245.85546875,-1.0341796875,0.823150634765625,208.199127197266,-10.83984375,42.9888305664063,180.314025878906,-0.7783203125,-2.15573120117188,168.398956298828,-1.1767578125,27.8072509765625,233.484985351563,-0.5205078125,34.2059020996094,133.040863037109,-0.9580078125,90.5232543945313,207.320129394531,-0.58203125,100.847198486328,150.560089111328,-2.126953125,81.1241455078125,160.946411132813,
- -9.3837890625,103.725036621094,188.620544433594,-2.0732421875,108.950469970703,156.021759033203,-2.2744140625,65.2252502441406,181.750640869141,-2.201171875,136.439758300781,179.130172729492,-2.5302734375,88.1139221191406,224.075836181641,-2.51953125,128.843383789063,227.316040039063,-0.5322265625,47.4707183837891,136.513687133789,-11.1630859375,96.9208221435547,113.441329956055,-0.2509765625,50.6138458251953,93.5347442626953,-0.7158203125,72.2684936523438,167.809509277344,-0.0087890625,95.0658874511719,61.5658874511719,-0.5439453125,143.403839111328,149.839385986328,-0.1455078125,163.456970214844,90.8475952148438,-0.38671875,-9.74627685546875,107.204895019531,-11.017578125,39.7071685791016,84.1222076416016,-0.10546875,-6.60101318359375,64.2202758789063,-0.5703125,15.0538940429688,138.496276855469,0.13671875,37.8506469726563,32.2412719726563,-0.3984375,86.1872100830078,120.524124145508,0,106.239227294922,61.5429382324219,-0.349609375,30.5960998535156,106.332427978516,-11.1708984375,-23.589599609375,100.147705078125,-0.5966796875,5.51983642578125,141.380187988281,-0.0966796875,25.7278900146484,66.7054290771484,-0.666015625,-49.0780029296875,145.518676757813,-0.0107421875,-44.3546752929688,44.9890747070313,-0.306640625,-92.2002868652344,84.8944396972656,-0.7880859375,-112.439788818359,156.607086181641,-10.6357421875,-66.4451904296875,135.648559570313,-0.52734375,-109.161895751953,116.839080810547,-0.9599609375,-89.7354125976563,185.803649902344,-0.3056640625,-67.7276000976563,87.5985717773438,-0.8037109375,-23.7060546875,169.7607421875,-0.435546875,-4.63687133789063,115.306488037109,-0.8359375,-9.01885986328125,-83.8118286132813,-9.55078125,-47.9342041015625,-64.4488525390625,-1.056640625,-10.5852966308594,-49.4905700683594,-0.658203125,-29.4702758789063,-108.214416503906,-1.1962890625,-45.311767578125,-23.027587890625,-0.7080078125,-85.7740783691406,-92.3326721191406,-1.0029296875,-100.464416503906,-44.8765258789063,-0.6669921875,-43.3779907226563,-104.704162597656,-10.9404296875,-5.65713500976563,-71.1893615722656,
- -0.6181640625,-5.6832275390625,-117.822875976563,-0.8623046875,-60.8699951171875,-72.1151123046875,-0.828125,37.830322265625,-91.781005859375,-1.251953125,-19.4553833007813,-18.2542114257813,-1.275390625,38.0620880126953,-22.8715057373047,-1.0380859375,18.7772216796875,-56.7012939453125,-10.84375,52.3349456787109,-94.5088043212891,-0.7802734375,5.644775390625,-94.390380859375,-1.181640625,51.3648681640625,-39.2220458984375,-0.5224609375,31.6695556640625,-137.923217773438,-0.9638671875,105.222625732422,-80.6611633300781,-0.5859375,100.574584960938,-138.164672851563,-2.130859375,84.1932678222656,-123.047943115234,-9.388671875,113.160736083984,-102.131256103516,-2.0771484375,109.811233520508,-134.975875854492,-2.2783203125,74.1909484863281,-98.8500671386719,-2.20703125,142.326232910156,-119.729431152344,-2.5361328125,107.211578369141,-63.8499450683594,-2.5263671875,147.400787353516,-71.2124938964844,-0.53515625,45.3810729980469,-137.985137939453,-11.1650390625,87.2173461914063,-173.018981933594,-0.251953125,37.3454132080078,-180.322555541992,-0.7197265625,77.4048309326172,-114.134231567383,-0.009765625,72.0604553222656,-222.664154052734,-0.5478515625,141.508911132813,-149.825073242188,-0.1484375,145.686645507813,-211.992065429688,-0.3876953125,-17.455322265625,-151.563720703125,-11.017578125,24.3814544677734,-186.608779907227,-0.1044921875,-25.4905395507813,-193.907531738281,-0.572265625,14.5693054199219,-127.718780517578,0.1376953125,9.22149658203125,-236.258972167969,-0.4013671875,78.6712951660156,-163.408782958984,-0.0009765625,82.8506164550781,-225.565399169922,-0.3505859375,21.3003234863281,-162.801239013672,-11.1708984375,-32.6498107910156,-154.816802978516,-0.5986328125,6.10018920898438,-122.475982666016,-0.0966796875,6.38720703125,-199.83544921875,-0.6669921875,-45.5881652832031,-104.409454345703,-0.0087890625,-66.9243469238281,-202.762237548828,-0.3046875,-102.873718261719,-151.876647949219,-0.7880859375,-103.954223632813,-77.3712158203125,-10.63671875,-64.9124145507813,-109.472961425781,-0.5263671875,-111.032775878906,-116.641174316406,
- -0.9609375,-74.4942321777344,-55.0098571777344,-0.3037109375,-78.5305786132813,-155.570617675781,-0.8056640625,-14.8271179199219,-87.5224304199219,-0.4365234375,-10.4310302734375,-145.052124023438,-0.8330078125,-50.8983154296875,-154.445190429688,-9.5478515625,-80.4684448242188,-122.586608886719,-1.0537109375,-40.2433166503906,-121.782379150391,-0.6552734375,-78.6500854492188,-170.053405761719,-1.193359375,-63.3869934082031,-84.7610168457031,-0.705078125,-125.717346191406,-135.311096191406,-1,-122.7021484375,-85.7255859375,-0.6650390625,-90.4217834472656,-161.857330322266,-10.9375,-43.2958374023438,-143.824157714844,-0.615234375,-59.7887878417969,-187.443084716797,-0.8603515625,-95.2779541015625,-125.191040039063,-0.8251953125,-9.88223266601563,-178.446685791016,-1.2490234375,-37.5106201171875,-89.4256591796875,-1.2724609375,14.6700134277344,-114.057525634766,-1.03515625,-15.3192443847656,-138.897369384766,-10.8408203125,2.72451782226563,-186.120208740234,-0.77734375,-40.9155883789063,-169.521057128906,-1.1787109375,21.3417053222656,-134.052825927734,-0.51953125,-31.9409484863281,-219.438995361328,-0.9599609375,57.0948791503906,-191.841644287109,-0.58203125,32.4388122558594,-243.998687744141,-2.126953125,22.4516754150391,-224.069808959961,-9.3857421875,56.9393157958984,-214.731582641602,-2.07421875,42.20654296875,-244.27783203125,-2.275390625,21.6392822265625,-197.899780273438,-2.203125,78.0108184814453,-241.496017456055,-2.533203125,64.8924713134766,-176.816513061523,-2.5234375,99.8919372558594,-197.897125244141,-0.5322265625,-19.1350708007813,-224.340148925781,-11.162109375,7.63345336914063,-271.890960693359,-0.2490234375,-41.6041870117188,-261.111022949219,-0.716796875,19.2483215332031,-213.334686279297,-0.0068359375,-24.0790405273438,-312.984313964844,-0.544921875,66.6177673339844,-269.364654541016,-0.1455078125,48.5721740722656,-329.001068115234,-0.384765625,-82.7177124023438,-214.852478027344,-11.0146484375,-55.95263671875,-262.41357421875,-0.1015625,-105.188781738281,-251.630187988281,-0.5693359375,-44.335693359375,-203.852294921875,
- 0.140625,-87.669921875,-303.51171875,-0.3974609375,3.03179931640625,-259.882263183594,0.001953125,-15.0086669921875,-319.508666992188,-0.34765625,-50.4275512695313,-239.051574707031,-11.16796875,-98.0818786621094,-212.529144287109,-0.595703125,-50.4074401855469,-195.957244873047,-0.09375,-77.4585571289063,-268.433166503906,-0.6640625,-92.3855590820313,-160.801574707031,-0.005859375,-147.080078125,-245.2822265625,-0.302734375,-162.743103027344,-184.980407714844,-0.78515625,-137.442260742188,-114.893432617188,-10.6337890625,-112.252777099609,-158.713714599609,-0.5234375,-157.933044433594,-149.134216308594,-0.9580078125,-101.983673095703,-104.377227783203,-0.30078125,-141.272583007813,-197.031372070313,-0.802734375,-57.6428833007813,-155.866516113281,-0.43359375,-73.8463134765625,-211.239868164063,-16.4970703125,-25.9761962890625,58.5511474609375,-18.9345703125,-63.3754577636719,31.4800109863281,-10.9755859375,-58.1784973144531,73.2873229980469,-18.5498046875,-13.0906066894531,28.0285339355469,-3.80859375,-98.5448608398438,53.4717407226563,-11.1708984375,-53.7598266601563,-16.8574829101563,-2.4501953125,-104.08056640625,-8.13916015625,-8.416015625,-70.9666748046875,21.7188720703125,-14.5517578125,-89.6820068359375,63.5504150390625,-12.4091796875,-49.0993347167969,49.8313293457031,-2.75,-103.259918212891,16.4666442871094,-11.0888671875,-58.2990112304688,94.4177856445313,2.6923828125,-136.330078125,67.4521484375,-1.18359375,-115.844543457031,114.881042480469,-16.162109375,-28.0273132324219,62.0263977050781,-19.5849609375,-61.9085693359375,93.3033447265625,-17.9248046875,-19.189697265625,96.715576171875,-11.2578125,-55.4880981445313,44.0167846679688,-13.607421875,-45.29736328125,133.77685546875,-2.6640625,-105.975067138672,77.1694641113281,-2.9794921875,-106.062103271484,128.978912353516,-11.8681640625,-52.4699401855469,57.1277160644531,-27.6748046875,-13.4961242675781,37.9091491699219,-12.0927734375,-49.8748474121094,21.3878479003906,-15.57421875,-32.1707763671875,83.1534423828125,-18.2763671875,-13.4439086914063,-5.22418212890625,
- -25.64453125,26.1167297363281,68.1675109863281,-28.2001953125,42.5687866210938,19.1137084960938,-1.4912109375,-28.9343566894531,-301.975372314453,-10.3857421875,-73.0745849609375,-291.487670898438,-1.64453125,-38.6465759277344,-267.474700927734,-1.275390625,-43.9302062988281,-331.590362548828,-1.5966796875,-80.1788635253906,-248.806793212891,-1.0703125,-104.882690429688,-328.778198242188,-1.220703125,-131.031127929688,-284.051635742188,-1.3447265625,-86.5314636230469,-290.634979248047,-10.6376953125,-65.6486511230469,-250.443572998047,-1.48046875,-50.7079162597656,-289.592681884766,-1.373046875,-111.629486083984,-268.894134521484,-1.7783203125,-22.5232543945313,-253.816223144531,-1.755859375,-94.1140747070313,-210.450012207031,-2.015625,-44.380859375,-195.9326171875,-1.517578125,-27.6074829101563,-298.149475097656,-10.771484375,-24.7137756347656,-252.940338134766,-1.71875,4.7572021484375,-282.752563476563,-1.4560546875,-59.3347473144531,-288.357208251953,-2.0009765625,16.1394348144531,-238.660369873047,-1.759765625,-66.8574523925781,-227.816436767578,-2.0859375,-27.1885681152344,-194.490325927734,-1.5322265625,-47.3124389648438,-282.288024902344,-10.33203125,-35.5987243652344,-326.145599365234,-1.302734375,-73.0232238769531,-307.248809814453,-1.6572265625,-14.1124877929688,-281.366394042969,-1.0673828125,-69.6574096679688,-352.661315917969,-1.453125,12.4292297363281,-336.311004638672,-1.1142578125,-14.4488220214844,-380.593353271484,-1.4912109375,-15.8445434570313,187.253112792969,-10.3857421875,-33.8390808105469,145.604278564453,-1.64453125,-51.5076904296875,183.678833007813,-1.275390625,10.7152709960938,167.342224121094,-1.5966796875,-77.1048278808594,146.019195556641,-1.0703125,-2.63720703125,107.80419921875,-1.220703125,-51.2250671386719,89.8198547363281,-1.3447265625,-37.0147399902344,132.499908447266,-10.6376953125,-72.9698181152344,160.044830322266,-1.48046875,-31.8204650878906,167.959808349609,-1.373046875,-62.7826538085938,111.558166503906,-1.7783203125,-62.1585998535156,201.928314208984,-1.755859375,-117.298248291016,138.955657958984,
- -2.015625,-122.958557128906,190.455505371094,-1.517578125,-19.3822937011719,189.223175048828,-10.771484375,-63.4020690917969,199.924102783203,-1.71875,-28.9245910644531,223.770721435547,-1.4560546875,-34.53515625,159.6787109375,-2.0009765625,-70.3709716796875,242.635864257813,-1.759765625,-95.4622802734375,162.782836914063,-2.0859375,-121.394104003906,207.637145996094,-1.5322265625,-38.4248657226563,172.572204589844,-10.33203125,6.80087280273438,176.492279052734,-1.302734375,-18.3077087402344,142.917877197266,-1.6572265625,-33.5675964355469,205.427520751953,-1.0673828125,26.9990997314453,138.346755981445,-1.453125,25.151123046875,222.025146484375,-1.1142578125,64.09423828125,187.86572265625
- }
- PolygonVertexIndex: *3009 {
- a: 0,1,-3,3,1,-1,1,4,-3,3,5,-2,6,1,-6,5,7,-7,4,1,-9,6,8,-2,8,9,-5,10,4,-10,9,11,-11,11,9,-13,9,8,-13,12,13,-12,6,14,-9,12,8,-15,15,14,-7,15,6,-8,14,16,-13,14,15,-17,7,17,-16,16,15,-18,17,7,-19,18,19,-18,19,16,-18,19,18,-21,20,21,-20,22,16,-20,21,22,-20,21,23,-23,23,16,-23,23,21,-25,12,16,-26,23,25,-17,13,12,-26,24,26,-24,25,23,-27,25,26,-14,26,24,-28,27,13,-27,28,29,-31,31,29,-29,29,32,-31,31,33,-30,34,29,-34,33,35,-35,32,29,-37,34,36,-30,36,37,-33,38,32,-38,37,39,-39,39,37,-41,37,36,-41,40,41,-40,34,42,-37,40,36,-43,43,42,-35,43,34,-36,42,44,-41,42,43,-45,35,45,-44,44,43,-46,45,35,-47,46,47,-46,47,44,-46,47,46,-49,48,49,-48,50,44,-48,49,50,-48,49,51,-51,51,44,-51,51,49,-53,40,44,-54,51,53,-45,41,40,-54,52,54,-52,53,51,-55,53,54,-42,54,52,-56,55,41,-55,56,57,-59,59,57,-57,57,60,-59,59,61,-58,62,57,-62,61,63,-63,60,57,-65,62,64,-58,64,65,-61,66,60,-66,65,67,-67,67,65,-69,65,64,-69,68,69,-68,62,70,-65,68,64,-71,71,70,-63,71,62,-64,70,72,-69,70,71,-73,63,73,-72,72,71,-74,73,63,-75,74,75,-74,75,72,-74,75,74,-77,76,77,-76,78,72,-76,77,78,-76,77,79,-79,79,72,-79,79,77,-81,68,72,-82,79,81,-73,69,68,-82,80,82,-80,81,79,-83,81,82,-70,82,80,-84,83,69,-83,84,85,-87,87,85,-85,85,88,-87,87,89,-86,90,85,-90,89,91,-91,88,85,-93,90,92,-86,92,93,-89,94,88,-94,93,95,-95,95,93,-97,93,92,-97,96,97,-96,90,98,-93,96,92,-99,99,98,-91,99,90,-92,98,100,-97,98,99,-101,91,101,-100,100,99,-102,101,91,-103,102,103,-102,103,100,-102,103,102,-105,104,105,-104,106,100,-104,105,106,-104,105,107,-107,107,100,-107,107,105,-109,96,100,-110,107,109,-101,97,96,-110,108,110,-108,109,107,-111,109,110,-98,110,108,-112,111,97,-111,112,113,-115,115,112,-115,113,112,-117,117,113,-117,112,115,-119,119,118,-116,116,120,-118,121,117,-121,116,112,-123,120,116,-123,112,118,-123,121,120,-124,123,120,-123,124,121,-124,122,118,-126,118,119,-126,126,123,-123,124,123,-127,127,125,-120,119,128,-128,129,122,-126,125,127,-130,129,126,-123,128,130,-128,127,130,-130,131,130,-129,132,130,-132,133,124,-127,133,126,-130,124,133,-135,130,135,-130,135,133,-130,
- 130,132,-136,135,134,-134,134,135,-133,136,137,-139,139,136,-139,137,136,-141,141,137,-141,136,139,-143,143,142,-140,140,144,-142,145,141,-145,140,136,-147,144,140,-147,136,142,-147,145,144,-148,147,144,-147,148,145,-148,146,142,-150,142,143,-150,150,147,-147,148,147,-151,151,149,-144,143,152,-152,153,146,-150,149,151,-154,153,150,-147,152,154,-152,151,154,-154,155,154,-153,156,154,-156,157,148,-151,157,150,-154,148,157,-159,154,159,-154,159,157,-154,154,156,-160,159,158,-158,158,159,-157,160,161,-163,163,160,-163,161,160,-165,165,161,-165,160,163,-167,167,166,-164,164,168,-166,169,165,-169,164,160,-171,168,164,-171,160,166,-171,169,168,-172,171,168,-171,172,169,-172,170,166,-174,166,167,-174,174,171,-171,172,171,-175,175,173,-168,167,176,-176,177,170,-174,173,175,-178,177,174,-171,176,178,-176,175,178,-178,179,178,-177,180,178,-180,181,172,-175,181,174,-178,172,181,-183,178,183,-178,183,181,-178,178,180,-184,183,182,-182,182,183,-181,184,185,-187,187,184,-187,185,184,-189,189,185,-189,184,187,-191,191,190,-188,188,192,-190,193,189,-193,188,184,-195,192,188,-195,184,190,-195,193,192,-196,195,192,-195,196,193,-196,194,190,-198,190,191,-198,198,195,-195,196,195,-199,199,197,-192,191,200,-200,201,194,-198,197,199,-202,201,198,-195,200,202,-200,199,202,-202,203,202,-201,204,202,-204,205,196,-199,205,198,-202,196,205,-207,202,207,-202,207,205,-202,202,204,-208,207,206,-206,206,207,-205,208,209,-211,211,208,-211,209,208,-213,213,209,-213,208,211,-215,215,214,-212,212,216,-214,217,213,-217,212,208,-219,216,212,-219,208,214,-219,217,216,-220,219,216,-219,220,217,-220,218,214,-222,214,215,-222,222,219,-219,220,219,-223,223,221,-216,215,224,-224,225,218,-222,221,223,-226,225,222,-219,224,226,-224,223,226,-226,227,226,-225,228,226,-228,229,220,-223,229,222,-226,220,229,-231,226,231,-226,231,229,-226,226,228,-232,231,230,-230,230,231,-229,232,233,-235,235,232,-235,235,236,-238,234,238,-236,236,235,-239,236,238,-240,234,240,-239,239,238,-242,238,240,-242,241,240,-243,243,244,-246,246,243,-246,246,247,-249,245,249,-247,247,246,
- -250,247,249,-251,245,251,-250,250,249,-253,249,251,-253,252,251,-254,254,255,-257,257,254,-257,257,258,-260,256,260,-258,258,257,-261,258,260,-262,256,262,-261,261,260,-264,260,262,-264,263,262,-265,265,266,-268,268,265,-268,268,269,-271,267,271,-269,269,268,-272,269,271,-273,267,273,-272,272,271,-275,271,273,-275,274,273,-276,276,277,-279,279,276,-279,280,276,-280,279,278,-282,280,279,-283,282,279,-282,283,284,-286,283,285,-287,287,283,-287,285,288,-287,287,286,-290,286,288,-290,290,291,-293,293,290,-293,294,290,-294,293,292,-296,294,293,-297,296,293,-296,297,298,-300,297,299,-301,301,297,-301,299,302,-301,301,300,-304,300,302,-304,304,305,-307,307,304,-307,308,304,-308,307,306,-310,308,307,-311,310,307,-310,311,312,-314,311,313,-315,315,311,-315,313,316,-315,315,314,-318,314,316,-318,318,319,-321,321,318,-321,322,318,-322,321,320,-324,322,321,-325,324,321,-324,325,326,-328,325,327,-329,329,325,-329,327,330,-329,329,328,-332,328,330,-332,332,333,-335,335,332,-335,336,332,-336,335,334,-338,336,335,-339,338,335,-338,339,340,-342,339,341,-343,343,339,-343,341,344,-343,343,342,-346,342,344,-346,346,347,-349,349,347,-347,350,346,-349,346,351,-350,350,351,-347,352,349,-352,353,351,-351,352,351,-354,354,355,-357,354,357,-356,356,355,-359,355,357,-360,355,359,-359,357,360,-360,361,358,-360,359,360,-362,362,363,-365,362,365,-364,364,363,-367,363,365,-368,367,366,-364,365,368,-368,369,366,-368,367,368,-370,370,371,-373,373,371,-371,374,370,-373,370,375,-374,374,375,-371,376,373,-376,377,375,-375,376,375,-378,378,379,-381,381,379,-379,382,378,-381,378,383,-382,382,383,-379,384,381,-384,385,383,-383,384,383,-386,386,387,-389,386,388,-390,387,390,-389,388,391,-390,388,390,-392,389,391,-393,390,393,-392,391,393,-393,394,395,-397,397,395,-395,398,394,-397,394,399,-398,398,399,-395,400,397,-400,401,399,-399,400,399,-402,402,403,-405,402,405,-404,404,403,-407,403,405,-408,403,407,-407,405,408,-408,409,406,-408,407,408,-410,410,411,-413,410,413,-412,412,411,-415,411,413,-416,415,414,-412,413,416,-416,417,414,-416,415,416,-418,418,
- 419,-421,421,419,-419,422,418,-421,418,423,-422,422,423,-419,424,421,-424,425,423,-423,424,423,-426,426,427,-429,429,427,-427,430,426,-429,426,431,-430,430,431,-427,432,429,-432,433,431,-431,432,431,-434,434,435,-437,437,435,-435,438,434,-437,434,439,-438,438,439,-435,440,437,-440,441,439,-439,440,439,-442,442,443,-445,442,445,-444,444,443,-447,443,445,-448,443,447,-447,445,448,-448,449,446,-448,447,448,-450,450,451,-453,450,453,-452,452,451,-455,451,453,-456,455,454,-452,453,456,-456,457,454,-456,455,456,-458,458,459,-461,461,459,-459,462,458,-461,458,463,-462,462,463,-459,464,461,-464,465,463,-463,464,463,-466,466,467,-469,469,467,-467,470,466,-469,466,471,-470,470,471,-467,472,469,-472,473,471,-471,472,471,-474,474,475,-477,477,475,-475,478,474,-477,474,479,-478,478,479,-475,480,477,-480,481,479,-479,480,479,-482,482,483,-485,482,485,-484,484,483,-487,483,485,-488,483,487,-487,485,488,-488,489,486,-488,487,488,-490,490,491,-493,490,493,-492,492,491,-495,491,493,-496,495,494,-492,493,496,-496,497,494,-496,495,496,-498,498,499,-501,501,499,-499,502,498,-501,498,503,-502,502,503,-499,504,501,-504,505,503,-503,504,503,-506,506,507,-509,509,507,-507,510,506,-509,506,511,-510,510,511,-507,512,509,-512,513,511,-511,512,511,-514,514,515,-517,517,515,-515,518,514,-517,514,519,-518,518,519,-515,520,517,-520,521,519,-519,520,519,-522,522,523,-525,522,525,-524,524,523,-527,523,525,-528,523,527,-527,525,528,-528,529,526,-528,527,528,-530,530,531,-533,530,533,-532,532,531,-535,531,533,-536,535,534,-532,533,536,-536,537,534,-536,535,536,-538,538,539,-541,541,539,-539,542,538,-541,538,543,-542,542,543,-539,544,541,-544,545,543,-543,544,543,-546,546,547,-549,549,547,-547,550,546,-549,546,551,-550,550,551,-547,552,549,-552,553,551,-551,552,551,-554,554,555,-557,554,556,-558,555,558,-557,556,559,-558,556,558,-560,557,559,-561,558,561,-560,559,561,-561,562,563,-565,562,564,-566,563,566,-565,564,567,-566,564,566,-568,565,567,-569,566,569,-568,567,569,-569,570,571,-573,570,572,-574,571,574,-573,572,575,-574,572,574,-576,573,575,-577,
- 574,577,-576,575,577,-577,578,579,-581,578,581,-580,580,579,-583,579,581,-584,582,579,-585,584,579,-584,585,586,-588,585,588,-587,587,586,-590,586,588,-591,589,586,-592,591,586,-591,592,593,-595,592,595,-594,594,593,-597,593,595,-598,596,593,-599,598,593,-598,599,600,-602,599,602,-601,601,600,-604,600,602,-605,603,600,-606,605,600,-605,606,607,-609,606,609,-608,608,607,-611,607,609,-612,610,607,-613,612,607,-612,613,614,-616,613,616,-615,615,614,-618,614,616,-619,617,614,-620,619,614,-619,620,621,-623,620,623,-622,622,621,-625,621,623,-626,624,621,-627,626,621,-626,627,628,-630,627,630,-629,629,628,-632,628,630,-633,631,628,-634,633,628,-633,634,635,-637,634,637,-636,636,635,-639,635,637,-640,638,635,-641,640,635,-640,641,642,-644,641,644,-643,643,642,-646,642,644,-647,645,642,-648,647,642,-647,648,649,-651,648,651,-650,650,649,-653,649,651,-654,652,649,-655,654,649,-654,655,656,-658,655,658,-657,657,656,-660,656,658,-661,659,656,-662,661,656,-661,662,663,-665,662,665,-664,664,663,-667,663,665,-668,666,663,-669,668,663,-668,669,670,-672,669,672,-671,671,670,-674,670,672,-675,673,670,-676,675,670,-675,676,677,-679,676,679,-678,678,677,-681,677,679,-682,680,677,-683,682,677,-682,683,684,-686,683,686,-685,685,684,-688,684,686,-689,687,684,-690,689,684,-689,690,691,-693,690,693,-692,692,691,-695,691,693,-696,694,691,-697,696,691,-696,697,698,-700,697,700,-699,699,698,-702,698,700,-703,701,698,-704,703,698,-703,704,705,-707,704,707,-706,706,705,-709,705,707,-710,708,705,-711,710,705,-710,711,712,-714,711,714,-713,713,712,-716,712,714,-717,715,712,-718,717,712,-717,718,719,-721,718,721,-720,720,719,-723,719,721,-724,722,719,-725,724,719,-724,725,726,-728,725,728,-727,727,726,-730,726,728,-731,729,726,-732,731,726,-731,732,733,-735,732,735,-734,734,733,-737,733,735,-738,736,733,-739,738,733,-738,739,740,-742,739,742,-741,741,740,-744,740,742,-745,743,740,-746,745,740,-745,746,747,-749,746,749,-748,748,747,-751,747,749,-752,750,747,-753,752,747,-752,753,754,-756,753,756,-755,755,754,-758,754,756,-759,757,754,-760,759,754,
- -759,760,761,-763,760,763,-762,762,761,-765,761,763,-766,764,761,-767,766,761,-766,767,768,-770,767,770,-769,769,768,-772,768,770,-773,771,768,-774,773,768,-773,774,775,-777,774,777,-776,776,775,-779,775,777,-780,778,775,-781,780,775,-780,781,782,-784,781,784,-783,783,782,-786,782,784,-787,785,782,-788,787,782,-787,788,789,-791,788,791,-790,790,789,-793,789,791,-794,792,789,-795,794,789,-794,795,796,-798,795,798,-797,797,796,-800,796,798,-801,799,796,-802,801,796,-801,802,803,-805,802,805,-804,804,803,-807,803,805,-808,806,803,-809,808,803,-808,809,810,-812,809,812,-811,811,810,-814,810,812,-815,813,810,-816,815,810,-815,816,817,-819,816,819,-818,818,817,-821,817,819,-822,820,817,-823,822,817,-822,823,824,-826,823,826,-825,825,824,-828,824,826,-829,827,824,-830,829,824,-829,830,831,-833,830,833,-832,832,831,-835,831,833,-836,834,831,-837,836,831,-836,837,838,-840,837,840,-839,839,838,-842,838,840,-843,841,838,-844,843,838,-843,844,845,-847,844,847,-846,846,845,-849,845,847,-850,848,845,-851,850,845,-850,851,852,-854,851,854,-853,853,852,-856,852,854,-857,855,852,-858,857,852,-857,858,859,-861,858,861,-860,860,859,-863,859,861,-864,862,859,-865,864,859,-864,865,866,-868,865,868,-867,867,866,-870,866,868,-871,869,866,-872,871,866,-871,872,873,-875,872,875,-874,874,873,-877,873,875,-878,876,873,-879,878,873,-878,879,880,-882,879,882,-881,881,880,-884,880,882,-885,883,880,-886,885,880,-885,886,887,-889,886,889,-888,888,887,-891,887,889,-892,890,887,-893,892,887,-892,893,894,-896,893,896,-895,895,894,-898,894,896,-899,897,894,-900,899,894,-899,900,901,-903,900,903,-902,902,901,-905,901,903,-906,904,901,-907,906,901,-906,907,908,-910,907,910,-909,909,908,-912,908,910,-913,911,908,-914,913,908,-913,914,915,-917,914,917,-916,916,915,-919,915,917,-920,918,915,-921,920,915,-920,921,922,-924,921,924,-923,923,922,-926,922,924,-927,925,922,-928,927,922,-927,928,929,-931,928,931,-930,930,929,-933,929,931,-934,932,929,-935,934,929,-934,935,936,-938,935,938,-937,937,936,-940,936,938,-941,939,936,-942,941,936,-941,942,943,-945,942,
- 945,-944,944,943,-947,943,945,-948,946,943,-949,948,943,-948,949,950,-952,949,952,-951,951,950,-954,950,952,-955,953,950,-956,955,950,-955,956,957,-959,956,959,-958,958,957,-961,957,959,-962,960,957,-963,962,957,-962,963,964,-966,963,966,-965,965,964,-968,964,966,-969,967,964,-970,969,964,-969
- }
- Edges: *1865 {
- a: 0,1,2,3,5,6,7,9,10,12,14,15,16,19,20,21,24,25,27,29,30,31,34,35,37,39,40,42,43,47,48,50,53,54,55,58,60,61,65,67,68,69,70,72,76,77,78,79,81,83,84,87,88,90,94,95,97,98,99,104,105,106,110,112,115,116,117,120,121,122,123,125,126,127,129,130,132,134,135,136,139,140,141,144,145,147,149,150,151,154,155,157,159,160,162,163,167,168,170,173,174,175,178,180,181,185,187,188,189,190,192,196,197,198,199,201,203,204,207,208,210,214,215,217,218,219,224,225,226,230,232,235,236,237,240,241,242,243,245,246,247,249,250,252,254,255,256,259,260,261,264,265,267,269,270,271,274,275,277,279,280,282,283,287,288,290,293,294,295,298,300,301,305,307,308,309,310,312,316,317,318,319,321,323,324,327,328,330,334,335,337,338,339,344,345,346,350,352,355,356,357,360,361,362,363,365,366,367,369,370,372,374,375,376,379,380,381,384,385,387,389,390,391,394,395,397,399,400,402,403,407,408,410,413,414,415,418,420,421,425,427,428,429,430,432,436,437,438,439,441,443,444,447,448,450,454,455,457,458,459,464,465,466,470,472,475,476,477,480,481,482,483,485,487,488,489,491,493,494,495,497,498,499,501,503,505,506,509,511,514,515,518,519,521,523,524,526,528,530,533,534,536,537,538,540,542,544,546,549,550,553,555,557,558,560,561,563,566,568,569,570,571,573,577,579,584,585,586,587,588,590,592,593,594,596,598,599,600,602,603,604,606,608,610,611,614,616,619,620,623,624,626,628,629,631,633,635,638,639,641,642,643,645,647,649,651,654,655,658,660,662,663,665,666,668,671,673,674,675,676,678,682,684,689,690,691,692,693,695,697,698,699,701,703,704,705,707,708,709,711,713,715,716,719,721,724,725,728,729,731,733,734,736,738,740,743,744,746,747,748,750,752,754,756,759,760,763,765,767,768,770,771,773,776,778,779,780,781,783,787,789,794,795,796,797,798,800,802,803,804,806,808,809,810,812,813,814,816,818,820,821,824,826,829,830,833,834,836,838,839,841,843,845,848,849,851,852,853,855,857,859,861,864,865,868,870,872,873,875,876,878,881,883,884,885,886,888,892,894,899,900,901,902,903,905,907,908,909,911,913,914,915,917,918,919,921,923,925,926,929,931,934,935,938,939,
- 941,943,944,946,948,950,953,954,956,957,958,960,962,964,966,969,970,973,975,977,978,980,981,983,986,988,989,990,991,993,997,999,1004,1005,1006,1007,1008,1010,1011,1012,1013,1014,1015,1019,1021,1022,1023,1024,1027,1028,1030,1033,1034,1035,1036,1037,1038,1040,1041,1042,1043,1044,1045,1049,1051,1052,1053,1054,1057,1058,1060,1063,1064,1065,1066,1067,1068,1070,1071,1072,1073,1074,1075,1079,1081,1082,1083,1084,1087,1088,1090,1093,1094,1095,1096,1097,1098,1100,1101,1102,1103,1104,1105,1109,1111,1112,1113,1114,1117,1118,1120,1123,1124,1125,1126,1127,1128,1130,1131,1133,1135,1136,1138,1139,1142,1143,1144,1145,1147,1148,1149,1151,1152,1153,1156,1157,1159,1161,1162,1163,1164,1166,1167,1169,1171,1172,1174,1175,1178,1179,1180,1181,1183,1184,1185,1187,1188,1189,1192,1193,1195,1197,1198,1199,1200,1202,1203,1205,1207,1208,1210,1211,1214,1215,1216,1217,1219,1220,1221,1223,1224,1225,1228,1229,1231,1233,1234,1235,1236,1238,1239,1241,1243,1244,1246,1247,1250,1251,1252,1253,1255,1256,1257,1259,1260,1261,1264,1265,1267,1269,1270,1271,1272,1274,1275,1277,1279,1280,1282,1283,1286,1287,1288,1289,1291,1292,1293,1295,1296,1297,1300,1301,1303,1305,1306,1307,1308,1310,1311,1313,1314,1315,1317,1320,1322,1323,1325,1328,1329,1330,1331,1332,1333,1336,1337,1339,1340,1342,1344,1345,1347,1349,1351,1353,1354,1355,1356,1357,1360,1361,1363,1364,1365,1368,1369,1371,1373,1375,1377,1378,1379,1380,1382,1383,1385,1386,1387,1389,1392,1394,1395,1397,1400,1401,1402,1403,1404,1406,1407,1409,1410,1411,1413,1416,1418,1419,1421,1424,1425,1426,1427,1429,1430,1431,1432,1434,1435,1438,1441,1442,1443,1444,1447,1449,1450,1451,1452,1454,1455,1457,1458,1459,1461,1464,1466,1467,1469,1472,1473,1474,1475,1476,1477,1480,1481,1483,1484,1486,1488,1489,1491,1493,1495,1497,1498,1499,1500,1501,1504,1505,1507,1508,1509,1512,1513,1515,1517,1519,1521,1522,1523,1524,1526,1527,1529,1530,1531,1533,1536,1538,1539,1541,1544,1545,1546,1547,1548,1550,1551,1553,1554,1555,1557,1560,1562,1563,1565,1568,1569,1570,1571,1572,1574,1575,1577,1578,1579,1581,1584,1586,1587,1589,1592,1593,1594,1595,1596,
- 1597,1600,1601,1603,1604,1606,1608,1609,1611,1613,1615,1617,1618,1619,1620,1621,1624,1625,1627,1628,1629,1632,1633,1635,1637,1639,1641,1642,1643,1644,1646,1647,1649,1650,1651,1653,1656,1658,1659,1661,1664,1665,1666,1667,1668,1670,1671,1673,1674,1675,1677,1680,1682,1683,1685,1688,1689,1690,1691,1692,1694,1695,1697,1698,1699,1701,1704,1706,1707,1709,1712,1713,1714,1715,1716,1717,1720,1721,1723,1724,1726,1728,1729,1731,1733,1735,1737,1738,1739,1740,1741,1744,1745,1747,1748,1749,1752,1753,1755,1757,1759,1761,1762,1763,1764,1766,1767,1769,1770,1771,1773,1776,1778,1779,1781,1784,1785,1786,1787,1788,1790,1791,1793,1794,1795,1797,1800,1802,1803,1805,1808,1809,1810,1811,1812,1814,1815,1817,1818,1819,1821,1824,1826,1827,1829,1832,1833,1834,1835,1836,1837,1840,1841,1843,1844,1846,1848,1849,1851,1853,1855,1857,1858,1859,1860,1861,1864,1865,1867,1868,1869,1872,1873,1875,1877,1879,1881,1882,1883,1884,1886,1887,1889,1890,1891,1893,1896,1898,1899,1901,1904,1905,1906,1907,1908,1910,1911,1913,1914,1915,1917,1920,1922,1923,1925,1928,1929,1930,1931,1933,1934,1935,1936,1938,1939,1942,1945,1946,1947,1948,1951,1953,1954,1955,1957,1958,1959,1960,1962,1963,1966,1969,1970,1971,1972,1975,1977,1978,1979,1981,1982,1983,1984,1986,1987,1990,1993,1994,1995,1996,1999,2001,2002,2003,2004,2005,2008,2009,2011,2012,2014,2015,2018,2019,2020,2021,2022,2023,2026,2027,2029,2030,2032,2033,2036,2037,2038,2039,2040,2041,2044,2045,2047,2048,2050,2051,2054,2055,2056,2057,2058,2059,2062,2063,2065,2066,2068,2069,2072,2073,2074,2075,2076,2077,2080,2081,2083,2084,2086,2087,2090,2091,2092,2093,2094,2095,2098,2099,2101,2102,2104,2105,2108,2109,2110,2111,2112,2113,2116,2117,2119,2120,2122,2123,2126,2127,2128,2129,2130,2131,2134,2135,2137,2138,2140,2141,2144,2145,2146,2147,2148,2149,2152,2153,2155,2156,2158,2159,2162,2163,2164,2165,2166,2167,2170,2171,2173,2174,2176,2177,2180,2181,2182,2183,2184,2185,2188,2189,2191,2192,2194,2195,2198,2199,2200,2201,2202,2203,2206,2207,2209,2210,2212,2213,2216,2217,2218,2219,2220,2221,2224,2225,2227,2228,2230,2231,2234,2235,2236,2237,
- 2238,2239,2242,2243,2245,2246,2248,2249,2252,2253,2254,2255,2256,2257,2260,2261,2263,2264,2266,2267,2270,2271,2272,2273,2274,2275,2278,2279,2281,2282,2284,2285,2288,2289,2290,2291,2292,2293,2296,2297,2299,2300,2302,2303,2306,2307,2308,2309,2310,2311,2314,2315,2317,2318,2320,2321,2324,2325,2326,2327,2328,2329,2332,2333,2335,2336,2338,2339,2342,2343,2344,2345,2346,2347,2350,2351,2353,2354,2356,2357,2360,2361,2362,2363,2364,2365,2368,2369,2371,2372,2374,2375,2378,2379,2380,2381,2382,2383,2386,2387,2389,2390,2392,2393,2396,2397,2398,2399,2400,2401,2404,2405,2407,2408,2410,2411,2414,2415,2416,2417,2418,2419,2422,2423,2425,2426,2428,2429,2432,2433,2434,2435,2436,2437,2440,2441,2443,2444,2446,2447,2450,2451,2452,2453,2454,2455,2458,2459,2461,2462,2464,2465,2468,2469,2470,2471,2472,2473,2476,2477,2479,2480,2482,2483,2486,2487,2488,2489,2490,2491,2494,2495,2497,2498,2500,2501,2504,2505,2506,2507,2508,2509,2512,2513,2515,2516,2518,2519,2522,2523,2524,2525,2526,2527,2530,2531,2533,2534,2536,2537,2540,2541,2542,2543,2544,2545,2548,2549,2551,2552,2554,2555,2558,2559,2560,2561,2562,2563,2566,2567,2569,2570,2572,2573,2576,2577,2578,2579,2580,2581,2584,2585,2587,2588,2590,2591,2594,2595,2596,2597,2598,2599,2602,2603,2605,2606,2608,2609,2612,2613,2614,2615,2616,2617,2620,2621,2623,2624,2626,2627,2630,2631,2632,2633,2634,2635,2638,2639,2641,2642,2644,2645,2648,2649,2650,2651,2652,2653,2656,2657,2659,2660,2662,2663,2666,2667,2668,2669,2670,2671,2674,2675,2677,2678,2680,2681,2684,2685,2686,2687,2688,2689,2692,2693,2695,2696,2698,2699,2702,2703,2704,2705,2706,2707,2710,2711,2713,2714,2716,2717,2720,2721,2722,2723,2724,2725,2728,2729,2731,2732,2734,2735,2738,2739,2740,2741,2742,2743,2746,2747,2749,2750,2752,2753,2756,2757,2758,2759,2760,2761,2764,2765,2767,2768,2770,2771,2774,2775,2776,2777,2778,2779,2782,2783,2785,2786,2788,2789,2792,2793,2794,2795,2796,2797,2800,2801,2803,2804,2806,2807,2810,2811,2812,2813,2814,2815,2818,2819,2821,2822,2824,2825,2828,2829,2830,2831,2832,2833,2836,2837,2839,2840,2842,2843,2846,2847,2848,2849,2850,2851,
- 2854,2855,2857,2858,2860,2861,2864,2865,2866,2867,2868,2869,2872,2873,2875,2876,2878,2879,2882,2883,2884,2885,2886,2887,2890,2891,2893,2894,2896,2897,2900,2901,2902,2903,2904,2905,2908,2909,2911,2912,2914,2915,2918,2919,2920,2921,2922,2923,2926,2927,2929,2930,2932,2933,2936,2937,2938,2939,2940,2941,2944,2945,2947,2948,2950,2951,2954,2955,2956,2957,2958,2959,2962,2963,2965,2966,2968,2969,2972,2973,2974,2975,2976,2977,2980,2981,2983,2984,2986,2987,2990,2991,2992,2993,2994,2995,2998,2999,3001,3002,3004,3005,3008
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Normals: *9027 {
- a: -0.984099447727203,-0.173201501369476,-0.0393639765679836,-0.99277251958847,-0.110308051109314,0.0472748801112175,-0.941357553005219,-0.101980395615101,-0.321630477905273,-0.958611309528351,-0.133576974272728,0.251439034938812,-0.99277251958847,-0.110308051109314,0.0472748801112175,-0.984099447727203,-0.173201501369476,-0.0393639765679836,-0.99277251958847,-0.110308051109314,0.0472748801112175,-0.9520183801651,-0.212433844804764,-0.220301762223244,-0.941357553005219,-0.101980395615101,-0.321630477905273,-0.958611309528351,-0.133576974272728,0.251439034938812,-0.951106190681458,-0.0786038190126419,0.298694521188736,-0.99277251958847,-0.110308051109314,0.0472748801112175,-0.980098307132721,-0.0313631445169449,0.196019649505615,-0.99277251958847,-0.110308051109314,0.0472748801112175,-0.951106190681458,-0.0786038190126419,0.298694521188736,-0.951106190681458,-0.0786038190126419,0.298694521188736,-0.948997735977173,-0.0313718244433403,0.313718259334564,-0.980098307132721,-0.0313631445169449,0.196019649505615,-0.9520183801651,-0.212433844804764,-0.220301762223244,-0.99277251958847,-0.110308051109314,0.0472748801112175,-0.996515274047852,-0.0549260377883911,-0.0627726167440414,-0.980098307132721,-0.0313631445169449,0.196019649505615,-0.996515274047852,-0.0549260377883911,-0.0627726167440414,-0.99277251958847,-0.110308051109314,0.0472748801112175,-0.996515274047852,-0.0549260377883911,-0.0627726167440414,-0.975622236728668,-0.0550754480063915,-0.212433889508247,-0.9520183801651,-0.212433844804764,-0.220301762223244,-0.962931215763092,-0.0947145447134972,-0.252572119235992,-0.9520183801651,-0.212433844804764,-0.220301762223244,-0.975622236728668,-0.0550754480063915,-0.212433889508247,-0.975622236728668,-0.0550754480063915,-0.212433889508247,-0.912594020366669,0.0786719024181366,-0.401226699352264,-0.962931215763092,-0.0947145447134972,-0.252572119235992,-0.912594020366669,0.0786719024181366,-0.401226699352264,-0.975622236728668,-0.0550754480063915,-0.212433889508247,-0.98869913816452,0.015693636611104,-0.149089559912682,
- -0.975622236728668,-0.0550754480063915,-0.212433889508247,-0.996515274047852,-0.0549260377883911,-0.0627726167440414,-0.98869913816452,0.015693636611104,-0.149089559912682,-0.98869913816452,0.015693636611104,-0.149089559912682,-0.922289669513702,-0.0788281783461571,-0.378375262022018,-0.912594020366669,0.0786719024181366,-0.401226699352264,-0.980098307132721,-0.0313631445169449,0.196019649505615,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.996515274047852,-0.0549260377883911,-0.0627726167440414,-0.98869913816452,0.015693636611104,-0.149089559912682,-0.996515274047852,-0.0549260377883911,-0.0627726167440414,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.988520741462708,-0.015816330909729,0.150255158543587,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.980098307132721,-0.0313631445169449,0.196019649505615,-0.988520741462708,-0.015816330909729,0.150255158543587,-0.980098307132721,-0.0313631445169449,0.196019649505615,-0.948997735977173,-0.0313718244433403,0.313718259334564,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.999597251415253,-0.0236125327646732,-0.0157416891306639,-0.98869913816452,0.015693636611104,-0.149089559912682,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.988520741462708,-0.015816330909729,0.150255158543587,-0.999597251415253,-0.0236125327646732,-0.0157416891306639,-0.948997735977173,-0.0313718244433403,0.313718259334564,-0.985689163208008,0.0315420515835285,0.165595769882202,-0.988520741462708,-0.015816330909729,0.150255158543587,-0.999597251415253,-0.0236125327646732,-0.0157416891306639,-0.988520741462708,-0.015816330909729,0.150255158543587,-0.985689163208008,0.0315420515835285,0.165595769882202,-0.985689163208008,0.0315420515835285,0.165595769882202,-0.948997735977173,-0.0313718244433403,0.313718259334564,-0.954384505748749,0.0630998015403748,0.291836589574814,-0.954384505748749,0.0630998015403748,0.291836589574814,-0.978320896625519,0.157793685793877,0.134124636650085,-0.985689163208008,0.0315420515835285,0.165595769882202,
- -0.978320896625519,0.157793685793877,0.134124636650085,-0.999597251415253,-0.0236125327646732,-0.0157416891306639,-0.985689163208008,0.0315420515835285,0.165595769882202,-0.978320896625519,0.157793685793877,0.134124636650085,-0.954384505748749,0.0630998015403748,0.291836589574814,-0.958966612815857,0.20436991751194,0.196509540081024,-0.958966612815857,0.20436991751194,0.196509540081024,-0.951664984226227,0.306734979152679,-0.0157299991697073,-0.978320896625519,0.157793685793877,0.134124636650085,-0.97710520029068,0.212756782770157,4.72414957753202e-017,-0.999597251415253,-0.0236125327646732,-0.0157416891306639,-0.978320896625519,0.157793685793877,0.134124636650085,-0.951664984226227,0.306734979152679,-0.0157299991697073,-0.97710520029068,0.212756782770157,4.72414957753202e-017,-0.978320896625519,0.157793685793877,0.134124636650085,-0.951664984226227,0.306734979152679,-0.0157299991697073,-0.985842406749725,0.126187831163406,-0.11041434854269,-0.97710520029068,0.212756782770157,4.72414957753202e-017,-0.985842406749725,0.126187831163406,-0.11041434854269,-0.999597251415253,-0.0236125327646732,-0.0157416891306639,-0.97710520029068,0.212756782770157,4.72414957753202e-017,-0.985842406749725,0.126187831163406,-0.11041434854269,-0.951664984226227,0.306734979152679,-0.0157299991697073,-0.960421562194824,0.18893538415432,-0.204679980874062,-0.98869913816452,0.015693636611104,-0.149089559912682,-0.999597251415253,-0.0236125327646732,-0.0157416891306639,-0.993605554103851,-0.0473145507276058,-0.102514855563641,-0.985842406749725,0.126187831163406,-0.11041434854269,-0.993605554103851,-0.0473145507276058,-0.102514855563641,-0.999597251415253,-0.0236125327646732,-0.0157416891306639,-0.922289669513702,-0.0788281783461571,-0.378375262022018,-0.98869913816452,0.015693636611104,-0.149089559912682,-0.993605554103851,-0.0473145507276058,-0.102514855563641,-0.960421562194824,0.18893538415432,-0.204679980874062,-0.965723752975464,-0.0157028250396252,-0.259096622467041,-0.985842406749725,0.126187831163406,-0.11041434854269,-0.993605554103851,-0.0473145507276058,-0.102514855563641,
- -0.985842406749725,0.126187831163406,-0.11041434854269,-0.965723752975464,-0.0157028250396252,-0.259096622467041,-0.993605554103851,-0.0473145507276058,-0.102514855563641,-0.965723752975464,-0.0157028250396252,-0.259096622467041,-0.922289669513702,-0.0788281783461571,-0.378375262022018,-0.965723752975464,-0.0157028250396252,-0.259096622467041,-0.960421562194824,0.18893538415432,-0.204679980874062,-0.952608287334442,-0.0551095679402351,-0.299166232347488,-0.952608287334442,-0.0551095679402351,-0.299166232347488,-0.922289669513702,-0.0788281783461571,-0.378375262022018,-0.965723752975464,-0.0157028250396252,-0.259096622467041,-0.941357553005219,-0.321630477905273,-0.101980395615101,-0.956928968429565,-0.29021617770195,0.00784367974847555,-0.928989887237549,-0.149583116173744,-0.338530212640762,-0.906186282634735,-0.378234267234802,0.189117133617401,-0.956928968429565,-0.29021617770195,0.00784367974847555,-0.941357553005219,-0.321630477905273,-0.101980395615101,-0.956928968429565,-0.29021617770195,0.00784367974847555,-0.915688037872314,-0.284179031848907,-0.284179031848907,-0.928989887237549,-0.149583116173744,-0.338530212640762,-0.906186282634735,-0.378234267234802,0.189117133617401,-0.906383275985718,-0.338908523321152,0.252211004495621,-0.956928968429565,-0.29021617770195,0.00784367974847555,-0.950255274772644,-0.25916051864624,0.172773689031601,-0.956928968429565,-0.29021617770195,0.00784367974847555,-0.906383275985718,-0.338908523321152,0.252211004495621,-0.906383275985718,-0.338908523321152,0.252211004495621,-0.911494612693787,-0.298593074083328,0.282877624034882,-0.950255274772644,-0.25916051864624,0.172773689031601,-0.915688037872314,-0.284179031848907,-0.284179031848907,-0.956928968429565,-0.29021617770195,0.00784367974847555,-0.975682556629181,-0.204578593373299,-0.078684076666832,-0.950255274772644,-0.25916051864624,0.172773689031601,-0.975682556629181,-0.204578593373299,-0.078684076666832,-0.956928968429565,-0.29021617770195,0.00784367974847555,-0.975682556629181,-0.204578593373299,-0.078684076666832,-0.964735925197601,-0.142338067293167,-0.221414789557457,
- -0.915688037872314,-0.284179031848907,-0.284179031848907,-0.948772251605988,-0.166035130620003,-0.268818795681,-0.915688037872314,-0.284179031848907,-0.284179031848907,-0.964735925197601,-0.142338067293167,-0.221414789557457,-0.964735925197601,-0.142338067293167,-0.221414789557457,-0.9343181848526,0.0471084825694561,-0.353313624858856,-0.948772251605988,-0.166035130620003,-0.268818795681,-0.9343181848526,0.0471084825694561,-0.353313624858856,-0.964735925197601,-0.142338067293167,-0.221414789557457,-0.984832227230072,-0.110301204025745,-0.133937180042267,-0.964735925197601,-0.142338067293167,-0.221414789557457,-0.975682556629181,-0.204578593373299,-0.078684076666832,-0.984832227230072,-0.110301204025745,-0.133937180042267,-0.984832227230072,-0.110301204025745,-0.133937180042267,-0.916316330432892,-0.102690622210503,-0.387064665555954,-0.9343181848526,0.0471084825694561,-0.353313624858856,-0.950255274772644,-0.25916051864624,0.172773689031601,-0.987440645694733,-0.157990500330925,-3.50809382278883e-017,-0.975682556629181,-0.204578593373299,-0.078684076666832,-0.984832227230072,-0.110301204025745,-0.133937180042267,-0.975682556629181,-0.204578593373299,-0.078684076666832,-0.987440645694733,-0.157990500330925,-3.50809382278883e-017,-0.96125590801239,-0.236374408006668,0.141824632883072,-0.987440645694733,-0.157990500330925,-3.50809382278883e-017,-0.950255274772644,-0.25916051864624,0.172773689031601,-0.96125590801239,-0.236374408006668,0.141824632883072,-0.950255274772644,-0.25916051864624,0.172773689031601,-0.911494612693787,-0.298593074083328,0.282877624034882,-0.987440645694733,-0.157990500330925,-3.50809382278883e-017,-0.981789767742157,-0.188503637909889,-0.0235629547387362,-0.984832227230072,-0.110301204025745,-0.133937180042267,-0.987440645694733,-0.157990500330925,-3.50809382278883e-017,-0.96125590801239,-0.236374408006668,0.141824632883072,-0.981789767742157,-0.188503637909889,-0.0235629547387362,-0.911494612693787,-0.298593074083328,0.282877624034882,-0.966528534889221,-0.196448892354965,0.165017053484917,-0.96125590801239,-0.236374408006668,0.141824632883072,
- -0.981789767742157,-0.188503637909889,-0.0235629547387362,-0.96125590801239,-0.236374408006668,0.141824632883072,-0.966528534889221,-0.196448892354965,0.165017053484917,-0.966528534889221,-0.196448892354965,0.165017053484917,-0.911494612693787,-0.298593074083328,0.282877624034882,-0.934779226779938,-0.204237475991249,0.290645658969879,-0.934779226779938,-0.204237475991249,0.290645658969879,-0.981033563613892,-0.0706344097852707,0.180510178208351,-0.966528534889221,-0.196448892354965,0.165017053484917,-0.981033563613892,-0.0706344097852707,0.180510178208351,-0.981789767742157,-0.188503637909889,-0.0235629547387362,-0.966528534889221,-0.196448892354965,0.165017053484917,-0.981033563613892,-0.0706344097852707,0.180510178208351,-0.934779226779938,-0.204237475991249,0.290645658969879,-0.967036128044128,-0.039310410618782,0.251586616039276,-0.967036128044128,-0.039310410618782,0.251586616039276,-0.988334119319916,0.125502735376358,0.0862831398844719,-0.981033563613892,-0.0706344097852707,0.180510178208351,-0.997006475925446,0.0314017795026302,0.07065399736166,-0.981789767742157,-0.188503637909889,-0.0235629547387362,-0.981033563613892,-0.0706344097852707,0.180510178208351,-0.988334119319916,0.125502735376358,0.0862831398844719,-0.997006475925446,0.0314017795026302,0.07065399736166,-0.981033563613892,-0.0706344097852707,0.180510178208351,-0.988334119319916,0.125502735376358,0.0862831398844719,-0.998361051082611,-0.0157222207635641,-0.0550277717411518,-0.997006475925446,0.0314017795026302,0.07065399736166,-0.998361051082611,-0.0157222207635641,-0.0550277717411518,-0.981789767742157,-0.188503637909889,-0.0235629547387362,-0.997006475925446,0.0314017795026302,0.07065399736166,-0.998361051082611,-0.0157222207635641,-0.0550277717411518,-0.988334119319916,0.125502735376358,0.0862831398844719,-0.988973200321198,0.0784899368882179,-0.125583902001381,-0.984832227230072,-0.110301204025745,-0.133937180042267,-0.981789767742157,-0.188503637909889,-0.0235629547387362,-0.977226555347443,-0.181259766221046,-0.110332027077675,-0.998361051082611,-0.0157222207635641,-0.0550277717411518,
- -0.977226555347443,-0.181259766221046,-0.110332027077675,-0.981789767742157,-0.188503637909889,-0.0235629547387362,-0.916316330432892,-0.102690622210503,-0.387064665555954,-0.984832227230072,-0.110301204025745,-0.133937180042267,-0.977226555347443,-0.181259766221046,-0.110332027077675,-0.988973200321198,0.0784899368882179,-0.125583902001381,-0.96482640504837,-0.0949009582400322,-0.245160803198814,-0.998361051082611,-0.0157222207635641,-0.0550277717411518,-0.977226555347443,-0.181259766221046,-0.110332027077675,-0.998361051082611,-0.0157222207635641,-0.0550277717411518,-0.96482640504837,-0.0949009582400322,-0.245160803198814,-0.977226555347443,-0.181259766221046,-0.110332027077675,-0.96482640504837,-0.0949009582400322,-0.245160803198814,-0.916316330432892,-0.102690622210503,-0.387064665555954,-0.96482640504837,-0.0949009582400322,-0.245160803198814,-0.988973200321198,0.0784899368882179,-0.125583902001381,-0.946644306182861,-0.118330538272858,-0.299770683050156,-0.946644306182861,-0.118330538272858,-0.299770683050156,-0.916316330432892,-0.102690622210503,-0.387064665555954,-0.96482640504837,-0.0949009582400322,-0.245160803198814,-0.983764111995697,-0.173142492771149,0.0472206771373749,-0.992988288402557,-0.070927731692791,0.0945703089237213,-0.942750871181488,-0.243543967604637,-0.227831438183784,-0.95908510684967,0.00786135345697403,0.283008694648743,-0.992988288402557,-0.070927731692791,0.0945703089237213,-0.983764111995697,-0.173142492771149,0.0472206771373749,-0.992988288402557,-0.070927731692791,0.0945703089237213,-0.952696859836578,-0.291320532560349,-0.0866088047623634,-0.942750871181488,-0.243543967604637,-0.227831438183784,-0.95908510684967,0.00786135345697403,0.283008694648743,-0.951106190681458,0.0786038190126419,0.298694521188736,-0.992988288402557,-0.070927731692791,0.0945703089237213,-0.981033563613892,0.0706344097852707,0.180510178208351,-0.992988288402557,-0.070927731692791,0.0945703089237213,-0.951106190681458,0.0786038190126419,0.298694521188736,-0.951106190681458,0.0786038190126419,0.298694521188736,
- -0.949903845787048,0.13345755636692,0.28261598944664,-0.981033563613892,0.0706344097852707,0.180510178208351,-0.952696859836578,-0.291320532560349,-0.0866088047623634,-0.992988288402557,-0.070927731692791,0.0945703089237213,-0.995994210243225,-0.0862672179937363,-0.0235274210572243,-0.981033563613892,0.0706344097852707,0.180510178208351,-0.995994210243225,-0.0862672179937363,-0.0235274210572243,-0.992988288402557,-0.070927731692791,0.0945703089237213,-0.995994210243225,-0.0862672179937363,-0.0235274210572243,-0.974958479404449,-0.157251358032227,-0.157251358032227,-0.952696859836578,-0.291320532560349,-0.0866088047623634,-0.961584270000458,-0.212809637188911,-0.173400446772575,-0.952696859836578,-0.291320532560349,-0.0866088047623634,-0.974958479404449,-0.157251358032227,-0.157251358032227,-0.974958479404449,-0.157251358032227,-0.157251358032227,-0.910118877887726,-0.133379489183426,-0.392292618751526,-0.961584270000458,-0.212809637188911,-0.173400446772575,-0.910118877887726,-0.133379489183426,-0.392292618751526,-0.974958479404449,-0.157251358032227,-0.157251358032227,-0.989064633846283,-0.0627977550029755,-0.133445218205452,-0.974958479404449,-0.157251358032227,-0.157251358032227,-0.995994210243225,-0.0862672179937363,-0.0235274210572243,-0.989064633846283,-0.0627977550029755,-0.133445218205452,-0.989064633846283,-0.0627977550029755,-0.133445218205452,-0.920746207237244,-0.259697645902634,-0.291176170110703,-0.910118877887726,-0.133379489183426,-0.392292618751526,-0.981033563613892,0.0706344097852707,0.180510178208351,-0.999845147132874,0.00787279661744833,-0.0157455932348967,-0.995994210243225,-0.0862672179937363,-0.0235274210572243,-0.989064633846283,-0.0627977550029755,-0.133445218205452,-0.995994210243225,-0.0862672179937363,-0.0235274210572243,-0.999845147132874,0.00787279661744833,-0.0157455932348967,-0.987810552120209,0.0632198750972748,0.142244711518288,-0.999845147132874,0.00787279661744833,-0.0157455932348967,-0.981033563613892,0.0706344097852707,0.180510178208351,-0.987810552120209,0.0632198750972748,0.142244711518288,
- -0.981033563613892,0.0706344097852707,0.180510178208351,-0.949903845787048,0.13345755636692,0.28261598944664,-0.999845147132874,0.00787279661744833,-0.0157455932348967,-0.999504387378693,-0.0314804539084435,-6.99006495096098e-018,-0.989064633846283,-0.0627977550029755,-0.133445218205452,-0.999845147132874,0.00787279661744833,-0.0157455932348967,-0.987810552120209,0.0632198750972748,0.142244711518288,-0.999504387378693,-0.0314804539084435,-6.99006495096098e-018,-0.949903845787048,0.13345755636692,0.28261598944664,-0.985842406749725,0.11041434854269,0.126187831163406,-0.987810552120209,0.0632198750972748,0.142244711518288,-0.999504387378693,-0.0314804539084435,-6.99006495096098e-018,-0.987810552120209,0.0632198750972748,0.142244711518288,-0.985842406749725,0.11041434854269,0.126187831163406,-0.985842406749725,0.11041434854269,0.126187831163406,-0.949903845787048,0.13345755636692,0.28261598944664,-0.953583955764771,0.204902336001396,0.22066405415535,-0.953583955764771,0.204902336001396,0.22066405415535,-0.97795569896698,0.205055221915245,0.0394336953759193,-0.985842406749725,0.11041434854269,0.126187831163406,-0.97795569896698,0.205055221915245,0.0394336953759193,-0.999504387378693,-0.0314804539084435,-6.99006495096098e-018,-0.985842406749725,0.11041434854269,0.126187831163406,-0.97795569896698,0.205055221915245,0.0394336953759193,-0.953583955764771,0.204902336001396,0.22066405415535,-0.959322392940521,0.275215417146683,0.0629063844680786,-0.959322392940521,0.275215417146683,0.0629063844680786,-0.951517939567566,0.25950488448143,-0.165139466524124,-0.97795569896698,0.205055221915245,0.0394336953759193,-0.977226555347443,0.181259766221046,-0.110332027077675,-0.999504387378693,-0.0314804539084435,-6.99006495096098e-018,-0.97795569896698,0.205055221915245,0.0394336953759193,-0.951517939567566,0.25950488448143,-0.165139466524124,-0.977226555347443,0.181259766221046,-0.110332027077675,-0.97795569896698,0.205055221915245,0.0394336953759193,-0.951517939567566,0.25950488448143,-0.165139466524124,-0.985934436321259,0.0552123263478279,-0.157749503850937,
- -0.977226555347443,0.181259766221046,-0.110332027077675,-0.985934436321259,0.0552123263478279,-0.157749503850937,-0.999504387378693,-0.0314804539084435,-6.99006495096098e-018,-0.977226555347443,0.181259766221046,-0.110332027077675,-0.985934436321259,0.0552123263478279,-0.157749503850937,-0.951517939567566,0.25950488448143,-0.165139466524124,-0.959322392940521,0.0629063844680786,-0.275215417146683,-0.989064633846283,-0.0627977550029755,-0.133445218205452,-0.999504387378693,-0.0314804539084435,-6.99006495096098e-018,-0.994224011898041,-0.0867973417043686,-0.0631253346800804,-0.985934436321259,0.0552123263478279,-0.157749503850937,-0.994224011898041,-0.0867973417043686,-0.0631253346800804,-0.999504387378693,-0.0314804539084435,-6.99006495096098e-018,-0.920746207237244,-0.259697645902634,-0.291176170110703,-0.989064633846283,-0.0627977550029755,-0.133445218205452,-0.994224011898041,-0.0867973417043686,-0.0631253346800804,-0.959322392940521,0.0629063844680786,-0.275215417146683,-0.966916620731354,-0.141499981284142,-0.212249979376793,-0.985934436321259,0.0552123263478279,-0.157749503850937,-0.994224011898041,-0.0867973417043686,-0.0631253346800804,-0.985934436321259,0.0552123263478279,-0.157749503850937,-0.966916620731354,-0.141499981284142,-0.212249979376793,-0.994224011898041,-0.0867973417043686,-0.0631253346800804,-0.966916620731354,-0.141499981284142,-0.212249979376793,-0.920746207237244,-0.259697645902634,-0.291176170110703,-0.966916620731354,-0.141499981284142,-0.212249979376793,-0.959322392940521,0.0629063844680786,-0.275215417146683,-0.953406453132629,-0.196984797716141,-0.228502362966537,-0.953406453132629,-0.196984797716141,-0.228502362966537,-0.920746207237244,-0.259697645902634,-0.291176170110703,-0.966916620731354,-0.141499981284142,-0.212249979376793,-0.983124971389771,-0.0786499977111816,-0.165164992213249,-0.993204295635223,-0.102473460137844,-0.0551780164241791,-0.942082524299622,0.180565804243088,-0.2826247215271,-0.957223474979401,-0.282459378242493,0.0627687498927116,-0.993204295635223,-0.102473460137844,-0.0551780164241791,
- -0.983124971389771,-0.0786499977111816,-0.165164992213249,-0.993204295635223,-0.102473460137844,-0.0551780164241791,-0.951311945915222,0.0314483270049095,-0.306621193885803,-0.942082524299622,0.180565804243088,-0.2826247215271,-0.957223474979401,-0.282459378242493,0.0627687498927116,-0.951988935470581,-0.275368690490723,0.13375049829483,-0.993204295635223,-0.102473460137844,-0.0551780164241791,-0.981033563613892,-0.164813637733459,0.102027483284473,-0.993204295635223,-0.102473460137844,-0.0551780164241791,-0.951988935470581,-0.275368690490723,0.13375049829483,-0.951988935470581,-0.275368690490723,0.13375049829483,-0.948939442634583,-0.25880166888237,0.180376917123795,-0.981033563613892,-0.164813637733459,0.102027483284473,-0.951311945915222,0.0314483270049095,-0.306621193885803,-0.993204295635223,-0.102473460137844,-0.0551780164241791,-0.996147394180298,0.0156873594969511,-0.0862804874777794,-0.981033563613892,-0.164813637733459,0.102027483284473,-0.996147394180298,0.0156873594969511,-0.0862804874777794,-0.993204295635223,-0.102473460137844,-0.0551780164241791,-0.996147394180298,0.0156873594969511,-0.0862804874777794,-0.974416494369507,0.133589342236519,-0.180738538503647,-0.951311945915222,0.0314483270049095,-0.306621193885803,-0.962302029132843,0.134091258049011,-0.236631661653519,-0.951311945915222,0.0314483270049095,-0.306621193885803,-0.974416494369507,0.133589342236519,-0.180738538503647,-0.974416494369507,0.133589342236519,-0.180738538503647,-0.910034894943237,0.360875904560089,-0.203973323106766,-0.962302029132843,0.134091258049011,-0.236631661653519,-0.910034894943237,0.360875904560089,-0.203973323106766,-0.974416494369507,0.133589342236519,-0.180738538503647,-0.988334119319916,0.125502735376358,-0.0862831398844719,-0.974416494369507,0.133589342236519,-0.180738538503647,-0.996147394180298,0.0156873594969511,-0.0862804874777794,-0.988334119319916,0.125502735376358,-0.0862831398844719,-0.988334119319916,0.125502735376358,-0.0862831398844719,-0.920062720775604,0.243777304887772,-0.306687563657761,-0.910034894943237,0.360875904560089,-0.203973323106766,
- -0.981033563613892,-0.164813637733459,0.102027483284473,-0.999845147132874,0.0157455932348967,0.00787279661744833,-0.996147394180298,0.0156873594969511,-0.0862804874777794,-0.988334119319916,0.125502735376358,-0.0862831398844719,-0.996147394180298,0.0156873594969511,-0.0862804874777794,-0.999845147132874,0.0157455932348967,0.00787279661744833,-0.988150000572205,-0.126483201980591,0.0869572013616562,-0.999845147132874,0.0157455932348967,0.00787279661744833,-0.981033563613892,-0.164813637733459,0.102027483284473,-0.988150000572205,-0.126483201980591,0.0869572013616562,-0.981033563613892,-0.164813637733459,0.102027483284473,-0.948939442634583,-0.25880166888237,0.180376917123795,-0.999845147132874,0.0157455932348967,0.00787279661744833,-0.999690115451813,-0.00787157565355301,-0.023614726960659,-0.988334119319916,0.125502735376358,-0.0862831398844719,-0.999845147132874,0.0157455932348967,0.00787279661744833,-0.988150000572205,-0.126483201980591,0.0869572013616562,-0.999690115451813,-0.00787157565355301,-0.023614726960659,-0.948939442634583,-0.25880166888237,0.180376917123795,-0.985658526420593,-0.10250848531723,0.13404954969883,-0.988150000572205,-0.126483201980591,0.0869572013616562,-0.999690115451813,-0.00787157565355301,-0.023614726960659,-0.988150000572205,-0.126483201980591,0.0869572013616562,-0.985658526420593,-0.10250848531723,0.13404954969883,-0.985658526420593,-0.10250848531723,0.13404954969883,-0.948939442634583,-0.25880166888237,0.180376917123795,-0.954503297805786,-0.181434512138367,0.236653715372086,-0.954503297805786,-0.181434512138367,0.236653715372086,-0.978716969490051,-4.55668454641494e-017,0.205214828252792,-0.985658526420593,-0.10250848531723,0.13404954969883,-0.978716969490051,-4.55668454641494e-017,0.205214828252792,-0.999690115451813,-0.00787157565355301,-0.023614726960659,-0.985658526420593,-0.10250848531723,0.13404954969883,-0.978716969490051,-4.55668454641494e-017,0.205214828252792,-0.954503297805786,-0.181434512138367,0.236653715372086,-0.95899623632431,-0.0157212484627962,0.282982468605042,-0.95899623632431,-0.0157212484627962,0.282982468605042,
- -0.9520183801651,0.212433844804764,0.220301762223244,-0.978716969490051,-4.55668454641494e-017,0.205214828252792,-0.977257013320923,0.141859874129295,0.157622098922729,-0.999690115451813,-0.00787157565355301,-0.023614726960659,-0.978716969490051,-4.55668454641494e-017,0.205214828252792,-0.9520183801651,0.212433844804764,0.220301762223244,-0.977257013320923,0.141859874129295,0.157622098922729,-0.978716969490051,-4.55668454641494e-017,0.205214828252792,-0.9520183801651,0.212433844804764,0.220301762223244,-0.985689163208008,0.165595769882202,0.0315420515835285,-0.977257013320923,0.141859874129295,0.157622098922729,-0.985689163208008,0.165595769882202,0.0315420515835285,-0.999690115451813,-0.00787157565355301,-0.023614726960659,-0.977257013320923,0.141859874129295,0.157622098922729,-0.985689163208008,0.165595769882202,0.0315420515835285,-0.9520183801651,0.212433844804764,0.220301762223244,-0.95899623632431,0.282982468605042,0.0157212484627962,-0.988334119319916,0.125502735376358,-0.0862831398844719,-0.999690115451813,-0.00787157565355301,-0.023614726960659,-0.994378924369812,0.0473513789474964,-0.0947027578949928,-0.985689163208008,0.165595769882202,0.0315420515835285,-0.994378924369812,0.0473513789474964,-0.0947027578949928,-0.999690115451813,-0.00787157565355301,-0.023614726960659,-0.920062720775604,0.243777304887772,-0.306687563657761,-0.988334119319916,0.125502735376358,-0.0862831398844719,-0.994378924369812,0.0473513789474964,-0.0947027578949928,-0.95899623632431,0.282982468605042,0.0157212484627962,-0.965366780757904,0.188364237546921,-0.180515736341476,-0.985689163208008,0.165595769882202,0.0315420515835285,-0.994378924369812,0.0473513789474964,-0.0947027578949928,-0.985689163208008,0.165595769882202,0.0315420515835285,-0.965366780757904,0.188364237546921,-0.180515736341476,-0.994378924369812,0.0473513789474964,-0.0947027578949928,-0.965366780757904,0.188364237546921,-0.180515736341476,-0.920062720775604,0.243777304887772,-0.306687563657761,-0.965366780757904,0.188364237546921,-0.180515736341476,-0.95899623632431,0.282982468605042,0.0157212484627962,
- -0.95311051607132,0.189046710729599,-0.236308395862579,-0.95311051607132,0.189046710729599,-0.236308395862579,-0.920062720775604,0.243777304887772,-0.306687563657761,-0.965366780757904,0.188364237546921,-0.180515736341476,-0.992218255996704,0.118121221661568,-0.0393737405538559,-0.973365187644959,0.141294941306114,0.180543541908264,-0.980244815349579,0.197630003094673,-0.00790520012378693,-0.968113958835602,0.173158600926399,-0.181029438972473,-0.992218255996704,0.118121221661568,-0.0393737405538559,-0.980244815349579,0.197630003094673,-0.00790520012378693,-0.973365187644959,0.141294941306114,0.180543541908264,-0.992218255996704,0.118121221661568,-0.0393737405538559,-0.986149191856384,0.0710027366876602,0.149894669651985,-0.951664984226227,-0.0157299991697073,0.306734979152679,-0.973365187644959,0.141294941306114,0.180543541908264,-0.986149191856384,0.0710027366876602,0.149894669651985,-0.992218255996704,0.118121221661568,-0.0393737405538559,-0.968113958835602,0.173158600926399,-0.181029438972473,-0.989918947219849,0.0785649940371513,-0.117847494781017,-0.942779958248138,0.188555985689163,-0.274977475404739,-0.989918947219849,0.0785649940371513,-0.117847494781017,-0.968113958835602,0.173158600926399,-0.181029438972473,-0.986149191856384,0.0710027366876602,0.149894669651985,-0.990744948387146,-0.0235891658812761,0.133671939373016,-0.951664984226227,-0.0157299991697073,0.306734979152679,-0.955097913742065,-0.19733427464962,0.221014395356178,-0.951664984226227,-0.0157299991697073,0.306734979152679,-0.990744948387146,-0.0235891658812761,0.133671939373016,-0.986149191856384,0.0710027366876602,0.149894669651985,-0.992218255996704,0.118121221661568,-0.0393737405538559,-0.999969005584717,1.74832852910177e-018,-0.00787377171218395,-0.990744948387146,-0.0235891658812761,0.133671939373016,-0.986149191856384,0.0710027366876602,0.149894669651985,-0.999969005584717,1.74832852910177e-018,-0.00787377171218395,-0.992218255996704,0.118121221661568,-0.0393737405538559,-0.989918947219849,0.0785649940371513,-0.117847494781017,-0.999969005584717,1.74832852910177e-018,-0.00787377171218395,
- -0.955097913742065,-0.19733427464962,0.221014395356178,-0.990744948387146,-0.0235891658812761,0.133671939373016,-0.983764171600342,-0.141662031412125,0.110181584954262,-0.983764171600342,-0.141662031412125,0.110181584954262,-0.990744948387146,-0.0235891658812761,0.133671939373016,-0.999969005584717,1.74832852910177e-018,-0.00787377171218395,-0.956693589687347,-0.258777767419815,0.133309751749039,-0.955097913742065,-0.19733427464962,0.221014395356178,-0.983764171600342,-0.141662031412125,0.110181584954262,-0.999969005584717,1.74832852910177e-018,-0.00787377171218395,-0.989918947219849,0.0785649940371513,-0.117847494781017,-0.995091795921326,0.047385323792696,-0.0868730992078781,-0.989918947219849,0.0785649940371513,-0.117847494781017,-0.942779958248138,0.188555985689163,-0.274977475404739,-0.995091795921326,0.047385323792696,-0.0868730992078781,-0.998361051082611,-0.0550277717411518,0.0157222207635641,-0.983764171600342,-0.141662031412125,0.110181584954262,-0.999969005584717,1.74832852910177e-018,-0.00787377171218395,-0.956693589687347,-0.258777767419815,0.133309751749039,-0.983764171600342,-0.141662031412125,0.110181584954262,-0.998361051082611,-0.0550277717411518,0.0157222207635641,-0.973725259304047,0.157052457332611,-0.164905071258545,-0.995091795921326,0.047385323792696,-0.0868730992078781,-0.942779958248138,0.188555985689163,-0.274977475404739,-0.942779958248138,0.188555985689163,-0.274977475404739,-0.936253547668457,0.196691930294037,-0.291104078292847,-0.973725259304047,0.157052457332611,-0.164905071258545,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.999969005584717,1.74832852910177e-018,-0.00787377171218395,-0.995091795921326,0.047385323792696,-0.0868730992078781,-0.995091795921326,0.047385323792696,-0.0868730992078781,-0.973725259304047,0.157052457332611,-0.164905071258545,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.998361051082611,-0.0550277717411518,0.0157222207635641,-0.999969005584717,1.74832852910177e-018,-0.00787377171218395,
- -0.936253547668457,0.196691930294037,-0.291104078292847,-0.991542160511017,-0.0314775295555592,-0.125910118222237,-0.973725259304047,0.157052457332611,-0.164905071258545,-0.973725259304047,0.157052457332611,-0.164905071258545,-0.991542160511017,-0.0314775295555592,-0.125910118222237,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.986794292926788,-0.110520958900452,-0.11841531842947,-0.991542160511017,-0.0314775295555592,-0.125910118222237,-0.936253547668457,0.196691930294037,-0.291104078292847,-0.979510545730591,-0.197481960058212,-0.0394963920116425,-0.991542160511017,-0.0314775295555592,-0.125910118222237,-0.986794292926788,-0.110520958900452,-0.11841531842947,-0.98777973651886,-0.134338036179543,0.0790223777294159,-0.956693589687347,-0.258777767419815,0.133309751749039,-0.998361051082611,-0.0550277717411518,0.0157222207635641,-0.98777973651886,-0.134338036179543,0.0790223777294159,-0.998361051082611,-0.0550277717411518,0.0157222207635641,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.956693589687347,-0.258777767419815,0.133309751749039,-0.98777973651886,-0.134338036179543,0.0790223777294159,-0.976589918136597,-0.196893110871315,0.0866329744458199,-0.991542160511017,-0.0314775295555592,-0.125910118222237,-0.989827394485474,-0.141403913497925,-0.0157115459442139,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.989827394485474,-0.141403913497925,-0.0157115459442139,-0.98777973651886,-0.134338036179543,0.0790223777294159,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.991542160511017,-0.0314775295555592,-0.125910118222237,-0.979510545730591,-0.197481960058212,-0.0394963920116425,-0.989827394485474,-0.141403913497925,-0.0157115459442139,-0.989827394485474,-0.141403913497925,-0.0157115459442139,-0.976589918136597,-0.196893110871315,0.0866329744458199,-0.98777973651886,-0.134338036179543,0.0790223777294159,-0.976589918136597,-0.196893110871315,0.0866329744458199,-0.989827394485474,-0.141403913497925,-0.0157115459442139,-0.979510545730591,-0.197481960058212,-0.0394963920116425,
- -0.992218255996704,0.102371722459793,-0.0708727315068245,-0.973365187644959,0.180543541908264,0.141294941306114,-0.979816317558289,0.189641863107681,-0.0632139518857002,-0.969105064868927,0.110304646193981,-0.220609292387962,-0.992218255996704,0.102371722459793,-0.0708727315068245,-0.979816317558289,0.189641863107681,-0.0632139518857002,-0.973365187644959,0.180543541908264,0.141294941306114,-0.992218255996704,0.102371722459793,-0.0708727315068245,-0.985842406749725,0.11041434854269,0.126187831163406,-0.951664984226227,0.0707849934697151,0.298869997262955,-0.973365187644959,0.180543541908264,0.141294941306114,-0.985842406749725,0.11041434854269,0.126187831163406,-0.992218255996704,0.102371722459793,-0.0708727315068245,-0.969105064868927,0.110304646193981,-0.220609292387962,-0.989918947219849,0.0471389964222908,-0.133560493588448,-0.942925453186035,0.110007964074612,-0.31430846452713,-0.989918947219849,0.0471389964222908,-0.133560493588448,-0.969105064868927,0.110304646193981,-0.220609292387962,-0.985842406749725,0.11041434854269,0.126187831163406,-0.990898132324219,0.0157285425812006,0.133692607283592,-0.951664984226227,0.0707849934697151,0.298869997262955,-0.954028487205505,-0.134037047624588,0.268074095249176,-0.951664984226227,0.0707849934697151,0.298869997262955,-0.990898132324219,0.0157285425812006,0.133692607283592,-0.985842406749725,0.11041434854269,0.126187831163406,-0.992218255996704,0.102371722459793,-0.0708727315068245,-0.999969005584717,1.74832852910177e-018,-0.00787377171218395,-0.990898132324219,0.0157285425812006,0.133692607283592,-0.985842406749725,0.11041434854269,0.126187831163406,-0.999969005584717,1.74832852910177e-018,-0.00787377171218395,-0.992218255996704,0.102371722459793,-0.0708727315068245,-0.989918947219849,0.0471389964222908,-0.133560493588448,-0.999969005584717,1.74832852910177e-018,-0.00787377171218395,-0.954028487205505,-0.134037047624588,0.268074095249176,-0.990898132324219,0.0157285425812006,0.133692607283592,-0.984587788581848,-0.102397121489048,0.141780629754066,-0.984587788581848,-0.102397121489048,0.141780629754066,
- -0.990898132324219,0.0157285425812006,0.133692607283592,-0.999969005584717,1.74832852910177e-018,-0.00787377171218395,-0.955900371074677,-0.211551710963249,0.203716456890106,-0.954028487205505,-0.134037047624588,0.268074095249176,-0.984587788581848,-0.102397121489048,0.141780629754066,-0.999969005584717,1.74832852910177e-018,-0.00787377171218395,-0.989918947219849,0.0471389964222908,-0.133560493588448,-0.995215952396393,0.0236956179141998,-0.0947824716567993,-0.989918947219849,0.0471389964222908,-0.133560493588448,-0.942925453186035,0.110007964074612,-0.31430846452713,-0.995215952396393,0.0236956179141998,-0.0947824716567993,-0.998607933521271,-0.047178328037262,0.023589164018631,-0.984587788581848,-0.102397121489048,0.141780629754066,-0.999969005584717,1.74832852910177e-018,-0.00787377171218395,-0.955900371074677,-0.211551710963249,0.203716456890106,-0.984587788581848,-0.102397121489048,0.141780629754066,-0.998607933521271,-0.047178328037262,0.023589164018631,-0.973605275154114,0.102071523666382,-0.204143047332764,-0.995215952396393,0.0236956179141998,-0.0947824716567993,-0.942925453186035,0.110007964074612,-0.31430846452713,-0.942925453186035,0.110007964074612,-0.31430846452713,-0.937240362167358,0.11026357114315,-0.33079069852829,-0.973605275154114,0.102071523666382,-0.204143047332764,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.999969005584717,1.74832852910177e-018,-0.00787377171218395,-0.995215952396393,0.0236956179141998,-0.0947824716567993,-0.995215952396393,0.0236956179141998,-0.0947824716567993,-0.973605275154114,0.102071523666382,-0.204143047332764,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.998607933521271,-0.047178328037262,0.023589164018631,-0.999969005584717,1.74832852910177e-018,-0.00787377171218395,-0.937240362167358,0.11026357114315,-0.33079069852829,-0.991910755634308,-0.0629784613847733,-0.110212303698063,-0.973605275154114,0.102071523666382,-0.204143047332764,-0.973605275154114,0.102071523666382,-0.204143047332764,
- -0.991910755634308,-0.0629784613847733,-0.110212303698063,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.98777973651886,-0.134338036179543,-0.0790223777294159,-0.991910755634308,-0.0629784613847733,-0.110212303698063,-0.937240362167358,0.11026357114315,-0.33079069852829,-0.98015296459198,-0.197611466050148,0.0158089175820351,-0.991910755634308,-0.0629784613847733,-0.110212303698063,-0.98777973651886,-0.134338036179543,-0.0790223777294159,-0.987687170505524,-0.110620968043804,0.110620968043804,-0.955900371074677,-0.211551710963249,0.203716456890106,-0.998607933521271,-0.047178328037262,0.023589164018631,-0.987687170505524,-0.110620968043804,0.110620968043804,-0.998607933521271,-0.047178328037262,0.023589164018631,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.955900371074677,-0.211551710963249,0.203716456890106,-0.987687170505524,-0.110620968043804,0.110620968043804,-0.976014971733093,-0.165292844176292,0.141679584980011,-0.991910755634308,-0.0629784613847733,-0.110212303698063,-0.989674627780914,-0.141382083296776,0.0235636811703444,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.989674627780914,-0.141382083296776,0.0235636811703444,-0.987687170505524,-0.110620968043804,0.110620968043804,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.991910755634308,-0.0629784613847733,-0.110212303698063,-0.98015296459198,-0.197611466050148,0.0158089175820351,-0.989674627780914,-0.141382083296776,0.0235636811703444,-0.989674627780914,-0.141382083296776,0.0235636811703444,-0.976014971733093,-0.165292844176292,0.141679584980011,-0.987687170505524,-0.110620968043804,0.110620968043804,-0.976014971733093,-0.165292844176292,0.141679584980011,-0.989674627780914,-0.141382083296776,0.0235636811703444,-0.98015296459198,-0.197611466050148,0.0158089175820351,-0.992218255996704,0.0708727315068245,-0.102371722459793,-0.973515272140503,0.219826027750969,0.0628074333071709,-0.979510545730591,0.150086298584938,-0.134287729859352,-0.96751469373703,0.0235979184508324,-0.251711130142212,
- -0.992218255996704,0.0708727315068245,-0.102371722459793,-0.979510545730591,0.150086298584938,-0.134287729859352,-0.973515272140503,0.219826027750969,0.0628074333071709,-0.992218255996704,0.0708727315068245,-0.102371722459793,-0.98556661605835,0.149806126952171,0.0788453295826912,-0.952165842056274,0.173121064901352,0.25181245803833,-0.973515272140503,0.219826027750969,0.0628074333071709,-0.98556661605835,0.149806126952171,0.0788453295826912,-0.992218255996704,0.0708727315068245,-0.102371722459793,-0.96751469373703,0.0235979184508324,-0.251711130142212,-0.989918947219849,-0.00785649940371513,-0.141416981816292,-0.943741619586945,-0.0157290268689394,-0.33030954003334,-0.989918947219849,-0.00785649940371513,-0.141416981816292,-0.96751469373703,0.0235979184508324,-0.251711130142212,-0.98556661605835,0.149806126952171,0.0788453295826912,-0.991020619869232,0.062921941280365,0.117978647351265,-0.952165842056274,0.173121064901352,0.25181245803833,-0.953791439533234,-0.0236477218568325,0.299537807703018,-0.952165842056274,0.173121064901352,0.25181245803833,-0.991020619869232,0.062921941280365,0.117978647351265,-0.98556661605835,0.149806126952171,0.0788453295826912,-0.992218255996704,0.0708727315068245,-0.102371722459793,-0.999938011169434,-0.0078735277056694,-0.0078735277056694,-0.991020619869232,0.062921941280365,0.117978647351265,-0.98556661605835,0.149806126952171,0.0788453295826912,-0.999938011169434,-0.0078735277056694,-0.0078735277056694,-0.992218255996704,0.0708727315068245,-0.102371722459793,-0.989918947219849,-0.00785649940371513,-0.141416981816292,-0.999938011169434,-0.0078735277056694,-0.0078735277056694,-0.953791439533234,-0.0236477218568325,0.299537807703018,-0.991020619869232,0.062921941280365,0.117978647351265,-0.983764111995697,-0.0472206771373749,0.173142492771149,-0.983764111995697,-0.0472206771373749,0.173142492771149,-0.991020619869232,0.062921941280365,0.117978647351265,-0.999938011169434,-0.0078735277056694,-0.0078735277056694,-0.956605315208435,-0.117615409195423,0.266594916582108,-0.953791439533234,-0.0236477218568325,0.299537807703018,
- -0.983764111995697,-0.0472206771373749,0.173142492771149,-0.999938011169434,-0.0078735277056694,-0.0078735277056694,-0.989918947219849,-0.00785649940371513,-0.141416981816292,-0.995371222496033,-0.015799542888999,-0.0947972610592842,-0.989918947219849,-0.00785649940371513,-0.141416981816292,-0.943741619586945,-0.0157290268689394,-0.33030954003334,-0.995371222496033,-0.015799542888999,-0.0947972610592842,-0.998114347457886,-0.0392958410084248,0.0471550077199936,-0.983764111995697,-0.0472206771373749,0.173142492771149,-0.999938011169434,-0.0078735277056694,-0.0078735277056694,-0.956605315208435,-0.117615409195423,0.266594916582108,-0.983764111995697,-0.0472206771373749,0.173142492771149,-0.998114347457886,-0.0392958410084248,0.0471550077199936,-0.973605275154114,0.0157033111900091,-0.227698013186455,-0.995371222496033,-0.015799542888999,-0.0947972610592842,-0.943741619586945,-0.0157290268689394,-0.33030954003334,-0.943741619586945,-0.0157290268689394,-0.33030954003334,-0.937676668167114,-0.0236389078199863,-0.346704006195068,-0.973605275154114,0.0157033111900091,-0.227698013186455,-0.999938011169434,0.0078735277056694,-0.0078735277056694,-0.999938011169434,-0.0078735277056694,-0.0078735277056694,-0.995371222496033,-0.015799542888999,-0.0947972610592842,-0.995371222496033,-0.015799542888999,-0.0947972610592842,-0.973605275154114,0.0157033111900091,-0.227698013186455,-0.999938011169434,0.0078735277056694,-0.0078735277056694,-0.999938011169434,0.0078735277056694,-0.0078735277056694,-0.998114347457886,-0.0392958410084248,0.0471550077199936,-0.999938011169434,-0.0078735277056694,-0.0078735277056694,-0.937676668167114,-0.0236389078199863,-0.346704006195068,-0.991634249687195,-0.102311469614506,-0.0787011310458183,-0.973605275154114,0.0157033111900091,-0.227698013186455,-0.973605275154114,0.0157033111900091,-0.227698013186455,-0.991634249687195,-0.102311469614506,-0.0787011310458183,-0.999938011169434,0.0078735277056694,-0.0078735277056694,-0.987163484096527,-0.157946154475212,-0.0236919224262238,-0.991634249687195,-0.102311469614506,-0.0787011310458183,
- -0.937676668167114,-0.0236389078199863,-0.346704006195068,-0.978808522224426,-0.181553184986115,0.0947234109044075,-0.991634249687195,-0.102311469614506,-0.0787011310458183,-0.987163484096527,-0.157946154475212,-0.0236919224262238,-0.987132668495178,-0.0552794300019741,0.150044173002243,-0.956605315208435,-0.117615409195423,0.266594916582108,-0.998114347457886,-0.0392958410084248,0.0471550077199936,-0.987132668495178,-0.0552794300019741,0.150044173002243,-0.998114347457886,-0.0392958410084248,0.0471550077199936,-0.999938011169434,0.0078735277056694,-0.0078735277056694,-0.956605315208435,-0.117615409195423,0.266594916582108,-0.987132668495178,-0.0552794300019741,0.150044173002243,-0.975139439105988,-0.102232359349728,0.196600690484047,-0.991634249687195,-0.102311469614506,-0.0787011310458183,-0.990500032901764,-0.11791667342186,0.0707499980926514,-0.999938011169434,0.0078735277056694,-0.0078735277056694,-0.990500032901764,-0.11791667342186,0.0707499980926514,-0.987132668495178,-0.0552794300019741,0.150044173002243,-0.999938011169434,0.0078735277056694,-0.0078735277056694,-0.991634249687195,-0.102311469614506,-0.0787011310458183,-0.978808522224426,-0.181553184986115,0.0947234109044075,-0.990500032901764,-0.11791667342186,0.0707499980926514,-0.990500032901764,-0.11791667342186,0.0707499980926514,-0.975139439105988,-0.102232359349728,0.196600690484047,-0.987132668495178,-0.0552794300019741,0.150044173002243,-0.975139439105988,-0.102232359349728,0.196600690484047,-0.990500032901764,-0.11791667342186,0.0707499980926514,-0.978808522224426,-0.181553184986115,0.0947234109044075,-0.992218255996704,0.0393737405538559,-0.118121221661568,-0.973725259304047,0.227726057171822,5.05653423958522e-017,-0.979908049106598,0.110634781420231,-0.165952160954475,-0.968594014644623,-0.0472484864294529,-0.244117185473442,-0.992218255996704,0.0393737405538559,-0.118121221661568,-0.979908049106598,0.110634781420231,-0.165952160954475,-0.973725259304047,0.227726057171822,5.05653423958522e-017,-0.992218255996704,0.0393737405538559,-0.118121221661568,
- -0.985689163208008,0.165595769882202,0.0315420515835285,-0.951664984226227,0.235949993133545,0.196624979376793,-0.973725259304047,0.227726057171822,5.05653423958522e-017,-0.985689163208008,0.165595769882202,0.0315420515835285,-0.992218255996704,0.0393737405538559,-0.118121221661568,-0.968594014644623,-0.0472484864294529,-0.244117185473442,-0.990255177021027,-0.0392958410084248,-0.133605852723122,-0.943712413311005,-0.10223550349474,-0.314570784568787,-0.990255177021027,-0.0392958410084248,-0.133605852723122,-0.968594014644623,-0.0472484864294529,-0.244117185473442,-0.985689163208008,0.165595769882202,0.0315420515835285,-0.990285873413086,0.0943129435181618,0.1021723523736,-0.951664984226227,0.235949993133545,0.196624979376793,-0.954830169677734,0.0552381053566933,0.29197284579277,-0.951664984226227,0.235949993133545,0.196624979376793,-0.990285873413086,0.0943129435181618,0.1021723523736,-0.985689163208008,0.165595769882202,0.0315420515835285,-0.992218255996704,0.0393737405538559,-0.118121221661568,-0.999938011169434,-0.0078735277056694,-0.0078735277056694,-0.990285873413086,0.0943129435181618,0.1021723523736,-0.985689163208008,0.165595769882202,0.0315420515835285,-0.999938011169434,-0.0078735277056694,-0.0078735277056694,-0.992218255996704,0.0393737405538559,-0.118121221661568,-0.990255177021027,-0.0392958410084248,-0.133605852723122,-0.999938011169434,-0.0078735277056694,-0.0078735277056694,-0.954830169677734,0.0552381053566933,0.29197284579277,-0.990285873413086,0.0943129435181618,0.1021723523736,-0.984862864017487,-3.84882936943412e-017,0.173335865139961,-0.984862864017487,-3.84882936943412e-017,0.173335865139961,-0.990285873413086,0.0943129435181618,0.1021723523736,-0.999938011169434,-0.0078735277056694,-0.0078735277056694,-0.958049535751343,-0.0471171885728836,0.282703131437302,-0.954830169677734,0.0552381053566933,0.29197284579277,-0.984862864017487,-3.84882936943412e-017,0.173335865139961,-0.999938011169434,-0.0078735277056694,-0.0078735277056694,-0.990255177021027,-0.0392958410084248,-0.133605852723122,-0.995433330535889,-0.0395013242959976,-0.086902916431427,
- -0.990255177021027,-0.0392958410084248,-0.133605852723122,-0.943712413311005,-0.10223550349474,-0.314570784568787,-0.995433330535889,-0.0395013242959976,-0.086902916431427,-0.998206853866577,-0.0235796887427568,0.055019274353981,-0.984862864017487,-3.84882936943412e-017,0.173335865139961,-0.999938011169434,-0.0078735277056694,-0.0078735277056694,-0.958049535751343,-0.0471171885728836,0.282703131437302,-0.984862864017487,-3.84882936943412e-017,0.173335865139961,-0.998206853866577,-0.0235796887427568,0.055019274353981,-0.974687337875366,-0.039301909506321,-0.220090687274933,-0.995433330535889,-0.0395013242959976,-0.086902916431427,-0.943712413311005,-0.10223550349474,-0.314570784568787,-0.943712413311005,-0.10223550349474,-0.314570784568787,-0.937240362167358,-0.11026357114315,-0.33079069852829,-0.974687337875366,-0.039301909506321,-0.220090687274933,-0.999938011169434,0.0078735277056694,-0.0078735277056694,-0.999938011169434,-0.0078735277056694,-0.0078735277056694,-0.995433330535889,-0.0395013242959976,-0.086902916431427,-0.995433330535889,-0.0395013242959976,-0.086902916431427,-0.974687337875366,-0.039301909506321,-0.220090687274933,-0.999938011169434,0.0078735277056694,-0.0078735277056694,-0.999938011169434,0.0078735277056694,-0.0078735277056694,-0.998206853866577,-0.0235796887427568,0.055019274353981,-0.999938011169434,-0.0078735277056694,-0.0078735277056694,-0.937240362167358,-0.11026357114315,-0.33079069852829,-0.991480767726898,-0.118033424019814,-0.0550822615623474,-0.974687337875366,-0.039301909506321,-0.220090687274933,-0.974687337875366,-0.039301909506321,-0.220090687274933,-0.991480767726898,-0.118033424019814,-0.0550822615623474,-0.999938011169434,0.0078735277056694,-0.0078735277056694,-0.987317442893982,-0.157970786094666,0.0157970786094666,-0.991480767726898,-0.118033424019814,-0.0550822615623474,-0.937240362167358,-0.11026357114315,-0.33079069852829,-0.979510545730591,-0.150086298584938,0.134287729859352,-0.991480767726898,-0.118033424019814,-0.0550822615623474,-0.987317442893982,-0.157970786094666,0.0157970786094666,
- -0.987317442893982,-0.0157970786094666,0.157970786094666,-0.958049535751343,-0.0471171885728836,0.282703131437302,-0.998206853866577,-0.0235796887427568,0.055019274353981,-0.987317442893982,-0.0157970786094666,0.157970786094666,-0.998206853866577,-0.0235796887427568,0.055019274353981,-0.999938011169434,0.0078735277056694,-0.0078735277056694,-0.958049535751343,-0.0471171885728836,0.282703131437302,-0.987317442893982,-0.0157970786094666,0.157970786094666,-0.976015031337738,-0.0472265370190144,0.212519407272339,-0.991480767726898,-0.118033424019814,-0.0550822615623474,-0.990285873413086,-0.0943129435181618,0.1021723523736,-0.999938011169434,0.0078735277056694,-0.0078735277056694,-0.990285873413086,-0.0943129435181618,0.1021723523736,-0.987317442893982,-0.0157970786094666,0.157970786094666,-0.999938011169434,0.0078735277056694,-0.0078735277056694,-0.991480767726898,-0.118033424019814,-0.0550822615623474,-0.979510545730591,-0.150086298584938,0.134287729859352,-0.990285873413086,-0.0943129435181618,0.1021723523736,-0.990285873413086,-0.0943129435181618,0.1021723523736,-0.976015031337738,-0.0472265370190144,0.212519407272339,-0.987317442893982,-0.0157970786094666,0.157970786094666,-0.976015031337738,-0.0472265370190144,0.212519407272339,-0.990285873413086,-0.0943129435181618,0.1021723523736,-0.979510545730591,-0.150086298584938,0.134287729859352,-0.992002964019775,-0.0078730396926403,-0.125968635082245,-0.974085688591003,0.212099298834801,-0.0785553008317947,-0.979174554347992,0.0473794117569923,-0.197414219379425,-0.968954622745514,-0.126042872667313,-0.212697356939316,-0.992002964019775,-0.0078730396926403,-0.125968635082245,-0.979174554347992,0.0473794117569923,-0.197414219379425,-0.974085688591003,0.212099298834801,-0.0785553008317947,-0.992002964019775,-0.0078730396926403,-0.125968635082245,-0.985903739929199,0.165631830692291,-0.0236616898328066,-0.951282560825348,0.290888071060181,0.102203905582428,-0.974085688591003,0.212099298834801,-0.0785553008317947,-0.985903739929199,0.165631830692291,-0.0236616898328066,-0.992002964019775,-0.0078730396926403,-0.125968635082245,
- -0.968954622745514,-0.126042872667313,-0.212697356939316,-0.990163564682007,-0.0864428505301476,-0.110018171370029,-0.94382917881012,-0.204496309161186,-0.259553015232086,-0.990163564682007,-0.0864428505301476,-0.110018171370029,-0.968954622745514,-0.126042872667313,-0.212697356939316,-0.985903739929199,0.165631830692291,-0.0236616898328066,-0.990071713924408,0.125723391771317,0.0628616958856583,-0.951282560825348,0.290888071060181,0.102203905582428,-0.954651832580566,0.157793685793877,0.252469897270203,-0.951282560825348,0.290888071060181,0.102203905582428,-0.990071713924408,0.125723391771317,0.0628616958856583,-0.985903739929199,0.165631830692291,-0.0236616898328066,-0.992002964019775,-0.0078730396926403,-0.125968635082245,-0.999969005584717,-0.00787377171218395,-1.74832852910177e-018,-0.990071713924408,0.125723391771317,0.0628616958856583,-0.985903739929199,0.165631830692291,-0.0236616898328066,-0.999969005584717,-0.00787377171218395,-1.74832852910177e-018,-0.992002964019775,-0.0078730396926403,-0.125968635082245,-0.990163564682007,-0.0864428505301476,-0.110018171370029,-0.999969005584717,-0.00787377171218395,-1.74832852910177e-018,-0.954651832580566,0.157793685793877,0.252469897270203,-0.990071713924408,0.125723391771317,0.0628616958856583,-0.984221458435059,0.0629901736974716,0.165349200367928,-0.984221458435059,0.0629901736974716,0.165349200367928,-0.990071713924408,0.125723391771317,0.0628616958856583,-0.999969005584717,-0.00787377171218395,-1.74832852910177e-018,-0.957665741443634,0.0549480319023132,0.282589882612228,-0.954651832580566,0.157793685793877,0.252469897270203,-0.984221458435059,0.0629901736974716,0.165349200367928,-0.999969005584717,-0.00787377171218395,-1.74832852910177e-018,-0.990163564682007,-0.0864428505301476,-0.110018171370029,-0.995464503765106,-0.0632040947675705,-0.0711046010255814,-0.990163564682007,-0.0864428505301476,-0.110018171370029,-0.94382917881012,-0.204496309161186,-0.259553015232086,-0.995464503765106,-0.0632040947675705,-0.0711046010255814,-0.998453617095947,-0.00786183960735798,0.0550328753888607,
- -0.984221458435059,0.0629901736974716,0.165349200367928,-0.999969005584717,-0.00787377171218395,-1.74832852910177e-018,-0.957665741443634,0.0549480319023132,0.282589882612228,-0.984221458435059,0.0629901736974716,0.165349200367928,-0.998453617095947,-0.00786183960735798,0.0550328753888607,-0.973455131053925,-0.117756672203541,-0.1962611079216,-0.995464503765106,-0.0632040947675705,-0.0711046010255814,-0.94382917881012,-0.204496309161186,-0.259553015232086,-0.94382917881012,-0.204496309161186,-0.259553015232086,-0.935819208621979,-0.220192760229111,-0.275240927934647,-0.973455131053925,-0.117756672203541,-0.1962611079216,-0.999969005584717,1.74832852910177e-018,-0.00787377171218395,-0.999969005584717,-0.00787377171218395,-1.74832852910177e-018,-0.995464503765106,-0.0632040947675705,-0.0711046010255814,-0.995464503765106,-0.0632040947675705,-0.0711046010255814,-0.973455131053925,-0.117756672203541,-0.1962611079216,-0.999969005584717,1.74832852910177e-018,-0.00787377171218395,-0.999969005584717,1.74832852910177e-018,-0.00787377171218395,-0.998453617095947,-0.00786183960735798,0.0550328753888607,-0.999969005584717,-0.00787377171218395,-1.74832852910177e-018,-0.935819208621979,-0.220192760229111,-0.275240927934647,-0.990989983081818,-0.133704990148544,-0.00786499958485365,-0.973455131053925,-0.117756672203541,-0.1962611079216,-0.973455131053925,-0.117756672203541,-0.1962611079216,-0.990989983081818,-0.133704990148544,-0.00786499958485365,-0.999969005584717,1.74832852910177e-018,-0.00787377171218395,-0.987286627292633,-0.142169266939163,0.0710846334695816,-0.990989983081818,-0.133704990148544,-0.00786499958485365,-0.935819208621979,-0.220192760229111,-0.275240927934647,-0.978808522224426,-0.0947234109044075,0.181553184986115,-0.990989983081818,-0.133704990148544,-0.00786499958485365,-0.987286627292633,-0.142169266939163,0.0710846334695816,-0.987872242927551,0.0395148880779743,0.150156587362289,-0.957665741443634,0.0549480319023132,0.282589882612228,-0.998453617095947,-0.00786183960735798,0.0550328753888607,-0.987872242927551,0.0395148880779743,0.150156587362289,
- -0.998453617095947,-0.00786183960735798,0.0550328753888607,-0.999969005584717,1.74832852910177e-018,-0.00787377171218395,-0.957665741443634,0.0549480319023132,0.282589882612228,-0.987872242927551,0.0395148880779743,0.150156587362289,-0.974958479404449,0.0314502716064453,0.220151916146278,-0.990989983081818,-0.133704990148544,-0.00786499958485365,-0.990530550479889,-0.0550294741988182,0.125781655311584,-0.999969005584717,1.74832852910177e-018,-0.00787377171218395,-0.990530550479889,-0.0550294741988182,0.125781655311584,-0.987872242927551,0.0395148880779743,0.150156587362289,-0.999969005584717,1.74832852910177e-018,-0.00787377171218395,-0.990989983081818,-0.133704990148544,-0.00786499958485365,-0.978808522224426,-0.0947234109044075,0.181553184986115,-0.990530550479889,-0.0550294741988182,0.125781655311584,-0.990530550479889,-0.0550294741988182,0.125781655311584,-0.974958479404449,0.0314502716064453,0.220151916146278,-0.987872242927551,0.0395148880779743,0.150156587362289,-0.974958479404449,0.0314502716064453,0.220151916146278,-0.990530550479889,-0.0550294741988182,0.125781655311584,-0.978808522224426,-0.0947234109044075,0.181553184986115,-0.984221458435059,-0.165349200367928,-0.0629901736974716,-0.991757214069366,-0.0865819826722145,-0.0944530740380287,-0.978229522705078,-0.205112636089325,-0.0315557904541492,-0.954176902770996,-0.283887326717377,0.0946291163563728,-0.984221458435059,-0.165349200367928,-0.0629901736974716,-0.978229522705078,-0.205112636089325,-0.0315557904541492,-0.954176902770996,-0.283887326717377,0.0946291163563728,-0.927639722824097,-0.322315484285355,-0.188672482967377,-0.9501673579216,-0.204168185591698,0.235578685998917,-0.978229522705078,-0.205112636089325,-0.0315557904541492,-0.925139665603638,-0.221400961279869,-0.308379918336868,-0.954176902770996,-0.283887326717377,0.0946291163563728,-0.927639722824097,-0.322315484285355,-0.188672482967377,-0.954176902770996,-0.283887326717377,0.0946291163563728,-0.925139665603638,-0.221400961279869,-0.308379918336868,-0.927639722824097,-0.322315484285355,-0.188672482967377,
- -0.925139665603638,-0.221400961279869,-0.308379918336868,-0.770698487758636,-0.369620710611343,-0.519041836261749,-0.978229522705078,-0.205112636089325,-0.0315557904541492,-0.839971721172333,-0.133453443646431,-0.525963604450226,-0.925139665603638,-0.221400961279869,-0.308379918336868,-0.770698487758636,-0.369620710611343,-0.519041836261749,-0.925139665603638,-0.221400961279869,-0.308379918336868,-0.82651549577713,-0.196789398789406,-0.52739554643631,-0.925139665603638,-0.221400961279869,-0.308379918336868,-0.839971721172333,-0.133453443646431,-0.525963604450226,-0.82651549577713,-0.196789398789406,-0.52739554643631,-0.82651549577713,-0.196789398789406,-0.52739554643631,-0.839971721172333,-0.133453443646431,-0.525963604450226,-0.834128677845001,-0.133775353431702,-0.535101413726807,-0.947499692440033,-0.300041556358337,-0.110541626811028,-0.968233823776245,-0.220410957932472,-0.118077300488949,-0.929450869560242,-0.35445162653923,-0.102397128939629,-0.88641768693924,-0.462819844484329,-0.0078444043174386,-0.947499692440033,-0.300041556358337,-0.110541626811028,-0.929450869560242,-0.35445162653923,-0.102397128939629,-0.88641768693924,-0.462819844484329,-0.0078444043174386,-0.872367680072784,-0.392958402633667,-0.290789216756821,-0.889047503471375,-0.432722240686417,0.149485871195793,-0.929450869560242,-0.35445162653923,-0.102397128939629,-0.892201066017151,-0.268449872732162,-0.36319687962532,-0.88641768693924,-0.462819844484329,-0.0078444043174386,-0.872367680072784,-0.392958402633667,-0.290789216756821,-0.88641768693924,-0.462819844484329,-0.0078444043174386,-0.892201066017151,-0.268449872732162,-0.36319687962532,-0.872367680072784,-0.392958402633667,-0.290789216756821,-0.892201066017151,-0.268449872732162,-0.36319687962532,-0.727505743503571,-0.300491511821747,-0.616798341274261,-0.929450869560242,-0.35445162653923,-0.102397128939629,-0.834335386753082,-0.0944530591368675,-0.543105065822601,-0.892201066017151,-0.268449872732162,-0.36319687962532,-0.727505743503571,-0.300491511821747,-0.616798341274261,-0.892201066017151,-0.268449872732162,-0.36319687962532,
- -0.810395836830139,-0.149490505456924,-0.566490292549133,-0.892201066017151,-0.268449872732162,-0.36319687962532,-0.834335386753082,-0.0944530591368675,-0.543105065822601,-0.810395836830139,-0.149490505456924,-0.566490292549133,-0.810395836830139,-0.149490505456924,-0.566490292549133,-0.834335386753082,-0.0944530591368675,-0.543105065822601,-0.831353366374969,-0.0862725228071213,-0.549006938934326,-0.984374046325684,-0.173249840736389,0.0314999707043171,-0.992218255996704,-0.118121221661568,-0.0393737405538559,-0.977226555347443,-0.197021469473839,0.0788085907697678,-0.953406453132629,-0.196984797716141,0.228502362966537,-0.984374046325684,-0.173249840736389,0.0314999707043171,-0.977226555347443,-0.197021469473839,0.0788085907697678,-0.953406453132629,-0.196984797716141,0.228502362966537,-0.928989887237549,-0.370021402835846,-0.00787279568612576,-0.949903845787048,-0.0628035590052605,0.306167334318161,-0.977226555347443,-0.197021469473839,0.0788085907697678,-0.924244523048401,-0.347579151391983,-0.157990515232086,-0.953406453132629,-0.196984797716141,0.228502362966537,-0.928989887237549,-0.370021402835846,-0.00787279568612576,-0.953406453132629,-0.196984797716141,0.228502362966537,-0.924244523048401,-0.347579151391983,-0.157990515232086,-0.928989887237549,-0.370021402835846,-0.00787279568612576,-0.924244523048401,-0.347579151391983,-0.157990515232086,-0.76910662651062,-0.580753982067108,-0.266832917928696,-0.977226555347443,-0.197021469473839,0.0788085907697678,-0.841867506504059,-0.377660185098648,-0.385528087615967,-0.924244523048401,-0.347579151391983,-0.157990515232086,-0.76910662651062,-0.580753982067108,-0.266832917928696,-0.924244523048401,-0.347579151391983,-0.157990515232086,-0.825825095176697,-0.432575047016144,-0.361790001392365,-0.924244523048401,-0.347579151391983,-0.157990515232086,-0.841867506504059,-0.377660185098648,-0.385528087615967,-0.825825095176697,-0.432575047016144,-0.361790001392365,-0.825825095176697,-0.432575047016144,-0.361790001392365,-0.841867506504059,-0.377660185098648,-0.385528087615967,
- -0.834438860416412,-0.385731160640717,-0.39360323548317,-0.984679400920868,-0.0551420450210571,-0.165426135063171,-0.991910755634308,0.0157446153461933,-0.125956922769547,-0.977226555347443,-0.110332027077675,-0.181259766221046,-0.952726364135742,-0.259834468364716,-0.157475426793098,-0.984679400920868,-0.0551420450210571,-0.165426135063171,-0.977226555347443,-0.110332027077675,-0.181259766221046,-0.952726364135742,-0.259834468364716,-0.157475426793098,-0.92761105298996,-0.0550277754664421,-0.369472205638886,-0.949435830116272,-0.313863068819046,-0.00784657709300518,-0.977226555347443,-0.110332027077675,-0.181259766221046,-0.923754572868347,0.0947440639138222,-0.371080905199051,-0.952726364135742,-0.259834468364716,-0.157475426793098,-0.92761105298996,-0.0550277754664421,-0.369472205638886,-0.952726364135742,-0.259834468364716,-0.157475426793098,-0.923754572868347,0.0947440639138222,-0.371080905199051,-0.92761105298996,-0.0550277754664421,-0.369472205638886,-0.923754572868347,0.0947440639138222,-0.371080905199051,-0.768893539905548,0.156917050480843,-0.619822382926941,-0.977226555347443,-0.110332027077675,-0.181259766221046,-0.841060876846313,0.314415276050568,-0.440181374549866,-0.923754572868347,0.0947440639138222,-0.371080905199051,-0.768893539905548,0.156917050480843,-0.619822382926941,-0.923754572868347,0.0947440639138222,-0.371080905199051,-0.824474573135376,0.27482482790947,-0.494684725999832,-0.923754572868347,0.0947440639138222,-0.371080905199051,-0.841060876846313,0.314415276050568,-0.440181374549866,-0.824474573135376,0.27482482790947,-0.494684725999832,-0.824474573135376,0.27482482790947,-0.494684725999832,-0.841060876846313,0.314415276050568,-0.440181374549866,-0.833689987659454,0.322464972734451,-0.448304980993271,-0.999473392963409,-0.0314794778823853,0.00786986947059631,-0.994874656200409,-0.0631666406989098,-0.0789583027362823,-0.998453617095947,0.00786183960735798,-0.0550328753888607,-0.986948072910309,-0.0315823368728161,-0.157911688089371,-0.999473392963409,-0.0314794778823853,0.00786986947059631,
- -0.998453617095947,0.00786183960735798,-0.0550328753888607,-0.928558349609375,-0.346242100000381,0.133775353431702,-0.999473392963409,-0.0314794778823853,0.00786986947059631,-0.986948072910309,-0.0315823368728161,-0.157911688089371,-0.986948072910309,-0.0315823368728161,-0.157911688089371,-0.998453617095947,0.00786183960735798,-0.0550328753888607,-0.936514437198639,0.0550890862941742,-0.34627428650856,-0.928558349609375,-0.346242100000381,0.133775353431702,-0.986948072910309,-0.0315823368728161,-0.157911688089371,-0.935935080051422,-0.306735038757324,-0.173030018806458,-0.935935080051422,-0.306735038757324,-0.173030018806458,-0.986948072910309,-0.0315823368728161,-0.157911688089371,-0.936514437198639,0.0550890862941742,-0.34627428650856,-0.913640856742859,-0.236286446452141,0.330800980329514,-0.820348560810089,-0.236639022827148,0.520605802536011,-0.92054671049118,-0.125886723399162,0.369792282581329,-0.913640856742859,-0.236286446452141,0.330800980329514,-0.92054671049118,-0.125886723399162,0.369792282581329,-0.967994034290314,-0.188876897096634,0.165267258882523,-0.914520561695099,-0.339003294706345,-0.220746338367462,-0.913640856742859,-0.236286446452141,0.330800980329514,-0.967994034290314,-0.188876897096634,0.165267258882523,-0.92054671049118,-0.125886723399162,0.369792282581329,-0.960987448692322,-0.0945233553647995,0.259939223527908,-0.967994034290314,-0.188876897096634,0.165267258882523,-0.914520561695099,-0.339003294706345,-0.220746338367462,-0.967994034290314,-0.188876897096634,0.165267258882523,-0.993389487266541,-0.110376611351967,-0.0315361730754375,-0.967994034290314,-0.188876897096634,0.165267258882523,-0.960987448692322,-0.0945233553647995,0.259939223527908,-0.993389487266541,-0.110376611351967,-0.0315361730754375,-0.999597251415253,-0.0236125327646732,0.0157416891306639,-0.994224011898041,-0.0867973417043686,-0.0631253346800804,-0.998453617095947,-0.00786183960735798,-0.0550328753888607,-0.986702144145966,-0.0789361670613289,-0.14208510518074,-0.999597251415253,-0.0236125327646732,0.0157416891306639,
- -0.998453617095947,-0.00786183960735798,-0.0550328753888607,-0.928989887237549,-0.291293442249298,0.228311076760292,-0.999597251415253,-0.0236125327646732,0.0157416891306639,-0.986702144145966,-0.0789361670613289,-0.14208510518074,-0.986702144145966,-0.0789361670613289,-0.14208510518074,-0.998453617095947,-0.00786183960735798,-0.0550328753888607,-0.936891674995422,-0.0472382381558418,-0.346413761377335,-0.928989887237549,-0.291293442249298,0.228311076760292,-0.986702144145966,-0.0789361670613289,-0.14208510518074,-0.935038864612579,-0.345728695392609,-0.0785746946930885,-0.935038864612579,-0.345728695392609,-0.0785746946930885,-0.986702144145966,-0.0789361670613289,-0.14208510518074,-0.936891674995422,-0.0472382381558418,-0.346413761377335,-0.912904858589172,-0.133787781000137,0.385623604059219,-0.819100916385651,-0.0866356790065765,0.567069828510284,-0.92226105928421,-0.0157651454210281,0.386246085166931,-0.912904858589172,-0.133787781000137,0.385623604059219,-0.92226105928421,-0.0157651454210281,0.386246085166931,-0.967963933944702,-0.133783623576164,0.212479889392853,-0.914719521999359,-0.386390149593353,-0.118282705545425,-0.912904858589172,-0.133787781000137,0.385623604059219,-0.967963933944702,-0.133783623576164,0.212479889392853,-0.92226105928421,-0.0157651454210281,0.386246085166931,-0.961106777191162,-0.0157558489590883,0.275727331638336,-0.967963933944702,-0.133783623576164,0.212479889392853,-0.914719521999359,-0.386390149593353,-0.118282705545425,-0.967963933944702,-0.133783623576164,0.212479889392853,-0.992988288402557,-0.118212893605232,-2.62485352576186e-017,-0.967963933944702,-0.133783623576164,0.212479889392853,-0.961106777191162,-0.0157558489590883,0.275727331638336,-0.992988288402557,-0.118212893605232,-2.62485352576186e-017,-0.999597251415253,-0.0157416891306639,0.0236125327646732,-0.994440853595734,-0.102601043879986,-0.0236771646887064,-0.998607933521271,-0.023589164018631,-0.047178328037262,-0.986671388149261,-0.126293942332268,-0.10261382162571,-0.999597251415253,-0.0157416891306639,0.0236125327646732,
- -0.998607933521271,-0.023589164018631,-0.047178328037262,-0.927639722824097,-0.188672482967377,0.322315484285355,-0.999597251415253,-0.0157416891306639,0.0236125327646732,-0.986671388149261,-0.126293942332268,-0.10261382162571,-0.986671388149261,-0.126293942332268,-0.10261382162571,-0.998607933521271,-0.023589164018631,-0.047178328037262,-0.935935080051422,-0.173030018806458,-0.306735038757324,-0.927639722824097,-0.188672482967377,0.322315484285355,-0.986671388149261,-0.126293942332268,-0.10261382162571,-0.936514437198639,-0.34627428650856,0.0550890862941742,-0.936514437198639,-0.34627428650856,0.0550890862941742,-0.986671388149261,-0.126293942332268,-0.10261382162571,-0.935935080051422,-0.173030018806458,-0.306735038757324,-0.912396430969238,0.0157309733331203,0.409005284309387,-0.818466424942017,0.133787781000137,0.558760702610016,-0.92226105928421,0.13400374352932,0.362598359584808,-0.912396430969238,0.0157309733331203,0.409005284309387,-0.92226105928421,0.13400374352932,0.362598359584808,-0.966707527637482,-0.0471564643085003,0.251501142978668,-0.914975702762604,-0.402273803949356,0.0315508879721165,-0.912396430969238,0.0157309733331203,0.409005284309387,-0.966707527637482,-0.0471564643085003,0.251501142978668,-0.92226105928421,0.13400374352932,0.362598359584808,-0.959678411483765,0.0865283831954002,0.267451345920563,-0.966707527637482,-0.0471564643085003,0.251501142978668,-0.914975702762604,-0.402273803949356,0.0315508879721165,-0.966707527637482,-0.0471564643085003,0.251501142978668,-0.99277251958847,-0.110308051109314,0.0472748801112175,-0.966707527637482,-0.0471564643085003,0.251501142978668,-0.959678411483765,0.0865283831954002,0.267451345920563,-0.99277251958847,-0.110308051109314,0.0472748801112175,-0.999597251415253,-0.0157416891306639,0.0236125327646732,-0.994719624519348,-0.102629795670509,-2.27883924331949e-017,-0.998453617095947,-0.0393091961741447,-0.0393091961741447,-0.987810552120209,-0.142244711518288,-0.0632198750972748,-0.999597251415253,-0.0157416891306639,0.0236125327646732,-0.998453617095947,-0.0393091961741447,-0.0393091961741447,
- -0.929450869560242,-0.102397128939629,0.35445162653923,-0.999597251415253,-0.0157416891306639,0.0236125327646732,-0.987810552120209,-0.142244711518288,-0.0632198750972748,-0.987810552120209,-0.142244711518288,-0.0632198750972748,-0.998453617095947,-0.0393091961741447,-0.0393091961741447,-0.936514437198639,-0.243965968489647,-0.251835823059082,-0.929450869560242,-0.102397128939629,0.35445162653923,-0.987810552120209,-0.142244711518288,-0.0632198750972748,-0.935934960842133,-0.322465002536774,0.14156998693943,-0.935934960842133,-0.322465002536774,0.14156998693943,-0.987810552120209,-0.142244711518288,-0.0632198750972748,-0.936514437198639,-0.243965968489647,-0.251835823059082,-0.914719521999359,0.118282705545425,0.386390149593353,-0.820450603961945,0.268224239349365,0.504892706871033,-0.92054671049118,0.220301777124405,0.322584748268127,-0.914719521999359,0.118282705545425,0.386390149593353,-0.92054671049118,0.220301777124405,0.322584748268127,-0.96751469373703,0.0235979184508324,0.251711130142212,-0.915659487247467,-0.378893584012985,0.13419146835804,-0.914719521999359,0.118282705545425,0.386390149593353,-0.96751469373703,0.0235979184508324,0.251711130142212,-0.92054671049118,0.220301777124405,0.322584748268127,-0.960153818130493,0.149532154202461,0.236103400588036,-0.96751469373703,0.0235979184508324,0.251711130142212,-0.915659487247467,-0.378893584012985,0.13419146835804,-0.96751469373703,0.0235979184508324,0.251711130142212,-0.992988288402557,-0.0945703089237213,0.070927731692791,-0.96751469373703,0.0235979184508324,0.251711130142212,-0.960153818130493,0.149532154202461,0.236103400588036,-0.992988288402557,-0.0945703089237213,0.070927731692791,-0.999504387378693,-6.99006495096098e-018,0.0314804539084435,-0.994719624519348,-0.0947351977229118,0.0394730009138584,-0.998607933521271,-0.047178328037262,-0.023589164018631,-0.987409830093384,-0.15798556804657,-0.00789927877485752,-0.999504387378693,-6.99006495096098e-018,0.0314804539084435,-0.998607933521271,-0.047178328037262,-0.023589164018631,-0.928558349609375,0.031476553529501,0.369849503040314,
- -0.999504387378693,-6.99006495096098e-018,0.0314804539084435,-0.987409830093384,-0.15798556804657,-0.00789927877485752,-0.987409830093384,-0.15798556804657,-0.00789927877485752,-0.998607933521271,-0.047178328037262,-0.023589164018631,-0.937211275100708,-0.315028995275497,-0.149638786911964,-0.928558349609375,0.031476553529501,0.369849503040314,-0.987409830093384,-0.15798556804657,-0.00789927877485752,-0.936514437198639,-0.251835823059082,0.243965968489647,-0.936514437198639,-0.251835823059082,0.243965968489647,-0.987409830093384,-0.15798556804657,-0.00789927877485752,-0.937211275100708,-0.315028995275497,-0.149638786911964,-0.912481188774109,0.251718968153,0.322514891624451,-0.818491756916046,0.432856231927872,0.377765446901321,-0.92054671049118,0.322584748268127,0.220301777124405,-0.912481188774109,0.251718968153,0.322514891624451,-0.92054671049118,0.322584748268127,0.220301777124405,-0.967395067214966,0.110110007226467,0.22808501124382,-0.915175020694733,-0.307688146829605,0.26035150885582,-0.912481188774109,0.251718968153,0.322514891624451,-0.967395067214966,0.110110007226467,0.22808501124382,-0.92054671049118,0.322584748268127,0.220301777124405,-0.959529995918274,0.228084981441498,0.165164992213249,-0.967395067214966,0.110110007226467,0.22808501124382,-0.915175020694733,-0.307688146829605,0.26035150885582,-0.967395067214966,0.110110007226467,0.22808501124382,-0.992741703987122,-0.0630312189459801,0.10242572426796,-0.967395067214966,0.110110007226467,0.22808501124382,-0.959529995918274,0.228084981441498,0.165164992213249,-0.992741703987122,-0.0630312189459801,0.10242572426796,-0.996179699897766,-0.0869680717587471,-0.00790618825703859,-0.987132668495178,-0.150044173002243,0.0552794300019741,-0.990071713924408,0.0628616958856583,0.125723391771317,-0.938113749027252,-0.338982254266739,0.0709497779607773,-0.987132668495178,-0.150044173002243,0.0552794300019741,-0.996179699897766,-0.0869680717587471,-0.00790618825703859,-0.991757094860077,0.125937417149544,-0.0236132647842169,-0.996179699897766,-0.0869680717587471,-0.00790618825703859,
- -0.990071713924408,0.0628616958856583,0.125723391771317,-0.996179699897766,-0.0869680717587471,-0.00790618825703859,-0.97369521856308,-0.00785238109529018,-0.227719038724899,-0.938113749027252,-0.338982254266739,0.0709497779607773,-0.991757094860077,0.125937417149544,-0.0236132647842169,-0.97369521856308,-0.00785238109529018,-0.227719038724899,-0.996179699897766,-0.0869680717587471,-0.00790618825703859,-0.977074861526489,-0.165472343564034,-0.133953809738159,-0.938113749027252,-0.338982254266739,0.0709497779607773,-0.97369521856308,-0.00785238109529018,-0.227719038724899,-0.883095145225525,0.197119444608688,-0.42577800154686,-0.97369521856308,-0.00785238109529018,-0.227719038724899,-0.991757094860077,0.125937417149544,-0.0236132647842169,-0.977074861526489,-0.165472343564034,-0.133953809738159,-0.97369521856308,-0.00785238109529018,-0.227719038724899,-0.883095145225525,0.197119444608688,-0.42577800154686,-0.870461165904999,-0.423467606306076,0.250943750143051,-0.966707527637482,-0.188625857234001,-0.172907039523125,-0.891478836536407,-0.449684023857117,-0.0552243553102016,-0.870461165904999,-0.423467606306076,0.250943750143051,-0.966528534889221,-0.196448892354965,0.165017053484917,-0.966707527637482,-0.188625857234001,-0.172907039523125,-0.891478836536407,-0.449684023857117,-0.0552243553102016,-0.966707527637482,-0.188625857234001,-0.172907039523125,-0.926838159561157,-0.102109283208847,-0.361309796571732,-0.966707527637482,-0.188625857234001,-0.172907039523125,-0.966528534889221,-0.196448892354965,0.165017053484917,-0.978716969490051,-0.0789287835359573,-0.189429089426994,-0.966707527637482,-0.188625857234001,-0.172907039523125,-0.978716969490051,-0.0789287835359573,-0.189429089426994,-0.926838159561157,-0.102109283208847,-0.361309796571732,-0.966528534889221,-0.196448892354965,0.165017053484917,-0.990285873413086,-0.1021723523736,0.0943129435181618,-0.978716969490051,-0.0789287835359573,-0.189429089426994,-0.974958479404449,0.0314502716064453,-0.220151916146278,-0.926838159561157,-0.102109283208847,-0.361309796571732,
- -0.978716969490051,-0.0789287835359573,-0.189429089426994,-0.978716969490051,-0.0789287835359573,-0.189429089426994,-0.990285873413086,-0.1021723523736,0.0943129435181618,-0.974958479404449,0.0314502716064453,-0.220151916146278,-0.953583955764771,-0.299472659826279,-0.0315234363079071,-0.929854869842529,0.0630410090088844,-0.36248579621315,-0.917691648006439,-0.22942291200161,-0.324356526136398,-0.953583955764771,-0.299472659826279,-0.0315234363079071,-0.99737536907196,-0.0471200942993164,-0.0549734458327293,-0.929854869842529,0.0630410090088844,-0.36248579621315,-0.917691648006439,-0.22942291200161,-0.324356526136398,-0.929854869842529,0.0630410090088844,-0.36248579621315,-0.842728734016418,0.18902325630188,-0.504061996936798,-0.929854869842529,0.0630410090088844,-0.36248579621315,-0.99737536907196,-0.0471200942993164,-0.0549734458327293,-0.921831548213959,0.1733358502388,-0.3466717004776,-0.921831548213959,0.1733358502388,-0.3466717004776,-0.842728734016418,0.18902325630188,-0.504061996936798,-0.929854869842529,0.0630410090088844,-0.36248579621315,-0.99737536907196,-0.0471200942993164,-0.0549734458327293,-0.994224011898041,0.0631253346800804,-0.0867973417043686,-0.921831548213959,0.1733358502388,-0.3466717004776,-0.894895553588867,0.282598584890366,-0.345398306846619,-0.842728734016418,0.18902325630188,-0.504061996936798,-0.921831548213959,0.1733358502388,-0.3466717004776,-0.921831548213959,0.1733358502388,-0.3466717004776,-0.994224011898041,0.0631253346800804,-0.0867973417043686,-0.894895553588867,0.282598584890366,-0.345398306846619,-0.98772656917572,-0.148942902684212,0.0470345988869667,-0.972370088100433,-0.205541640520096,0.110676273703575,-0.982032120227814,-0.00785625725984573,0.188550174236298,-0.910651624202728,-0.400372684001923,0.102055780589581,-0.972370088100433,-0.205541640520096,0.110676273703575,-0.98772656917572,-0.148942902684212,0.0470345988869667,-0.996730208396912,0.0706344172358513,0.0392413474619389,-0.98772656917572,-0.148942902684212,0.0470345988869667,-0.982032120227814,-0.00785625725984573,0.188550174236298,
- -0.98772656917572,-0.148942902684212,0.0470345988869667,-0.983368337154388,-0.0550686232745647,-0.173072829842567,-0.910651624202728,-0.400372684001923,0.102055780589581,-0.996730208396912,0.0706344172358513,0.0392413474619389,-0.983368337154388,-0.0550686232745647,-0.173072829842567,-0.98772656917572,-0.148942902684212,0.0470345988869667,-0.970672905445099,-0.220966190099716,-0.0946997925639153,-0.910651624202728,-0.400372684001923,0.102055780589581,-0.983368337154388,-0.0550686232745647,-0.173072829842567,-0.921831548213959,0.1733358502388,-0.3466717004776,-0.983368337154388,-0.0550686232745647,-0.173072829842567,-0.996730208396912,0.0706344172358513,0.0392413474619389,-0.970672905445099,-0.220966190099716,-0.0946997925639153,-0.983368337154388,-0.0550686232745647,-0.173072829842567,-0.921831548213959,0.1733358502388,-0.3466717004776,-0.989522039890289,0.0549734458327293,-0.133506938815117,-0.99422413110733,-0.0315626710653305,-0.102578677237034,-0.991020619869232,0.117978647351265,0.062921941280365,-0.951988935470581,-0.13375049829483,-0.275368690490723,-0.99422413110733,-0.0315626710653305,-0.102578677237034,-0.989522039890289,0.0549734458327293,-0.133506938815117,-0.967305243015289,0.251656651496887,-0.0314570814371109,-0.989522039890289,0.0549734458327293,-0.133506938815117,-0.991020619869232,0.117978647351265,0.062921941280365,-0.989522039890289,0.0549734458327293,-0.133506938815117,-0.934174239635468,0.227655917406082,-0.274757117033005,-0.951988935470581,-0.13375049829483,-0.275368690490723,-0.967305243015289,0.251656651496887,-0.0314570814371109,-0.934174239635468,0.227655917406082,-0.274757117033005,-0.989522039890289,0.0549734458327293,-0.133506938815117,-0.871077299118042,0.109865605831146,-0.478700160980225,-0.951988935470581,-0.13375049829483,-0.275368690490723,-0.934174239635468,0.227655917406082,-0.274757117033005,-0.81278932094574,0.512925267219543,-0.276190519332886,-0.934174239635468,0.227655917406082,-0.274757117033005,-0.967305243015289,0.251656651496887,-0.0314570814371109,-0.871077299118042,0.109865605831146,-0.478700160980225,
- -0.934174239635468,0.227655917406082,-0.274757117033005,-0.81278932094574,0.512925267219543,-0.276190519332886,-0.942518174648285,0.164940670132637,-0.290609776973724,-0.928989887237549,-0.149583116173744,-0.338530212640762,-0.977317631244659,-0.149750277400017,-0.149750277400017,-0.942518174648285,0.164940670132637,-0.290609776973724,-0.977317631244659,-0.149750277400017,-0.149750277400017,-0.996392607688904,0.0470736660063267,-0.0706104934215546,-0.928989887237549,-0.149583116173744,-0.338530212640762,-0.920062720775604,-0.385325402021408,-0.0707740485668182,-0.977317631244659,-0.149750277400017,-0.149750277400017,-0.977317631244659,-0.149750277400017,-0.149750277400017,-0.982062458992004,-0.188555985689163,-4.18678393486001e-017,-0.996392607688904,0.0470736660063267,-0.0706104934215546,-0.977317631244659,-0.149750277400017,-0.149750277400017,-0.920062720775604,-0.385325402021408,-0.0707740485668182,-0.982062458992004,-0.188555985689163,-4.18678393486001e-017,-0.996392607688904,0.0470736660063267,-0.0706104934215546,-0.982062458992004,-0.188555985689163,-4.18678393486001e-017,-0.998607933521271,-0.047178328037262,0.023589164018631,-0.920062720775604,-0.385325402021408,-0.0707740485668182,-0.948239743709564,-0.30563098192215,0.0862036123871803,-0.982062458992004,-0.188555985689163,-4.18678393486001e-017,-0.982062458992004,-0.188555985689163,-4.18678393486001e-017,-0.948239743709564,-0.30563098192215,0.0862036123871803,-0.998607933521271,-0.047178328037262,0.023589164018631,-0.996086359024048,-0.0869599208235741,0.0158108938485384,-0.987440645694733,-0.126392394304276,0.0947943031787872,-0.989461004734039,0.0942343771457672,0.109940111637115,-0.937182307243347,-0.307143777608871,0.165385112166405,-0.987440645694733,-0.126392394304276,0.0947943031787872,-0.996086359024048,-0.0869599208235741,0.0158108938485384,-0.991020619869232,0.117978647351265,-0.062921941280365,-0.996086359024048,-0.0869599208235741,0.0158108938485384,-0.989461004734039,0.0942343771457672,0.109940111637115,-0.996086359024048,-0.0869599208235741,0.0158108938485384,
- -0.974657237529755,-0.07074124366045,-0.212223753333092,-0.937182307243347,-0.307143777608871,0.165385112166405,-0.991020619869232,0.117978647351265,-0.062921941280365,-0.974657237529755,-0.07074124366045,-0.212223753333092,-0.996086359024048,-0.0869599208235741,0.0158108938485384,-0.977226555347443,-0.197021469473839,-0.0788085907697678,-0.937182307243347,-0.307143777608871,0.165385112166405,-0.974657237529755,-0.07074124366045,-0.212223753333092,-0.885742247104645,0.071175716817379,-0.458687961101532,-0.974657237529755,-0.07074124366045,-0.212223753333092,-0.991020619869232,0.117978647351265,-0.062921941280365,-0.977226555347443,-0.197021469473839,-0.0788085907697678,-0.974657237529755,-0.07074124366045,-0.212223753333092,-0.885742247104645,0.071175716817379,-0.458687961101532,-0.872232973575592,-0.337892055511475,0.353607982397079,-0.967394948005676,-0.228084981441498,-0.110109992325306,-0.893734633922577,-0.442912757396698,0.0711823999881744,-0.872232973575592,-0.337892055511475,0.353607982397079,-0.966916620731354,-0.141499981284142,0.212249979376793,-0.967394948005676,-0.228084981441498,-0.110109992325306,-0.893734633922577,-0.442912757396698,0.0711823999881744,-0.967394948005676,-0.228084981441498,-0.110109992325306,-0.926238417625427,-0.196236968040466,-0.321828603744507,-0.967394948005676,-0.228084981441498,-0.110109992325306,-0.966916620731354,-0.141499981284142,0.212249979376793,-0.979327261447906,-0.126364797353745,-0.157956004142761,-0.967394948005676,-0.228084981441498,-0.110109992325306,-0.979327261447906,-0.126364797353745,-0.157956004142761,-0.926238417625427,-0.196236968040466,-0.321828603744507,-0.966916620731354,-0.141499981284142,0.212249979376793,-0.989918947219849,-0.0785649940371513,0.117847494781017,-0.979327261447906,-0.126364797353745,-0.157956004142761,-0.974958479404449,-0.0314502716064453,-0.220151916146278,-0.926238417625427,-0.196236968040466,-0.321828603744507,-0.979327261447906,-0.126364797353745,-0.157956004142761,-0.979327261447906,-0.126364797353745,-0.157956004142761,-0.989918947219849,-0.0785649940371513,0.117847494781017,
- -0.974958479404449,-0.0314502716064453,-0.220151916146278,-0.952608287334442,-0.299166232347488,0.0551095679402351,-0.93066418170929,-0.0473219081759453,-0.362801313400269,-0.91477644443512,-0.315440148115158,-0.252352118492126,-0.952608287334442,-0.299166232347488,0.0551095679402351,-0.99771386384964,-0.054992102086544,-0.0392800718545914,-0.93066418170929,-0.0473219081759453,-0.362801313400269,-0.91477644443512,-0.315440148115158,-0.252352118492126,-0.93066418170929,-0.0473219081759453,-0.362801313400269,-0.839764773845673,0.0392413437366486,-0.54153048992157,-0.93066418170929,-0.0473219081759453,-0.362801313400269,-0.99771386384964,-0.054992102086544,-0.0392800718545914,-0.922834634780884,0.0709872767329216,-0.378598839044571,-0.922834634780884,0.0709872767329216,-0.378598839044571,-0.839764773845673,0.0392413437366486,-0.54153048992157,-0.93066418170929,-0.0473219081759453,-0.362801313400269,-0.99771386384964,-0.054992102086544,-0.0392800718545914,-0.993945598602295,0.0394422858953476,-0.102549932897091,-0.922834634780884,0.0709872767329216,-0.378598839044571,-0.894868016242981,0.180543541908264,-0.408185392618179,-0.839764773845673,0.0392413437366486,-0.54153048992157,-0.922834634780884,0.0709872767329216,-0.378598839044571,-0.922834634780884,0.0709872767329216,-0.378598839044571,-0.993945598602295,0.0394422858953476,-0.102549932897091,-0.894868016242981,0.180543541908264,-0.408185392618179,-0.988334119319916,-0.125502735376358,0.0862831398844719,-0.973313391208649,-0.166175454854965,0.158262342214584,-0.981305718421936,0.0392522290349007,0.188410699367523,-0.911100924015045,-0.353444337844849,0.21206659078598,-0.973313391208649,-0.166175454854965,0.158262342214584,-0.988334119319916,-0.125502735376358,0.0862831398844719,-0.996791481971741,0.0784875229001045,0.0156975034624338,-0.988334119319916,-0.125502735376358,0.0862831398844719,-0.981305718421936,0.0392522290349007,0.188410699367523,-0.988334119319916,-0.125502735376358,0.0862831398844719,-0.984221458435059,-0.0944852605462074,-0.149601668119431,-0.911100924015045,-0.353444337844849,0.21206659078598,
- -0.996791481971741,0.0784875229001045,0.0156975034624338,-0.984221458435059,-0.0944852605462074,-0.149601668119431,-0.988334119319916,-0.125502735376358,0.0862831398844719,-0.971035838127136,-0.236838012933731,-0.0315783992409706,-0.911100924015045,-0.353444337844849,0.21206659078598,-0.984221458435059,-0.0944852605462074,-0.149601668119431,-0.922834634780884,0.0709872767329216,-0.378598839044571,-0.984221458435059,-0.0944852605462074,-0.149601668119431,-0.996791481971741,0.0784875229001045,0.0156975034624338,-0.971035838127136,-0.236838012933731,-0.0315783992409706,-0.984221458435059,-0.0944852605462074,-0.149601668119431,-0.922834634780884,0.0709872767329216,-0.378598839044571,-0.989827394485474,0.0157115459442139,-0.141403913497925,-0.993976533412933,-0.0552209168672562,-0.0946644321084023,-0.991757094860077,0.125937417149544,0.0236132647842169,-0.951900541782379,-0.204540595412254,-0.228141441941261,-0.993976533412933,-0.0552209168672562,-0.0946644321084023,-0.989827394485474,0.0157115459442139,-0.141403913497925,-0.966438949108124,0.235716819763184,-0.102143943309784,-0.989827394485474,0.0157115459442139,-0.141403913497925,-0.991757094860077,0.125937417149544,0.0236132647842169,-0.989827394485474,0.0157115459442139,-0.141403913497925,-0.935934960842133,0.14156998693943,-0.322465002536774,-0.951900541782379,-0.204540595412254,-0.228141441941261,-0.966438949108124,0.235716819763184,-0.102143943309784,-0.935934960842133,0.14156998693943,-0.322465002536774,-0.989827394485474,0.0157115459442139,-0.141403913497925,-0.872610211372375,-0.0314454138278961,-0.487403929233551,-0.951900541782379,-0.204540595412254,-0.228141441941261,-0.935934960842133,0.14156998693943,-0.322465002536774,-0.813803553581238,0.418753296136856,-0.402951270341873,-0.935934960842133,0.14156998693943,-0.322465002536774,-0.966438949108124,0.235716819763184,-0.102143943309784,-0.872610211372375,-0.0314454138278961,-0.487403929233551,-0.935934960842133,0.14156998693943,-0.322465002536774,-0.813803553581238,0.418753296136856,-0.402951270341873,-0.995744228363037,-0.0790273174643517,0.0474163927137852,
- -0.98777973651886,-0.0790223777294159,0.134338036179543,-0.990071713924408,0.125723391771317,0.0628616958856583,-0.937822282314301,-0.220664069056511,0.267949223518372,-0.98777973651886,-0.0790223777294159,0.134338036179543,-0.995744228363037,-0.0790273174643517,0.0474163927137852,-0.990989983081818,0.0865150019526482,-0.10224499553442,-0.995744228363037,-0.0790273174643517,0.0474163927137852,-0.990071713924408,0.125723391771317,0.0628616958856583,-0.995744228363037,-0.0790273174643517,0.0474163927137852,-0.974717497825623,-0.141491234302521,-0.172933742403984,-0.937822282314301,-0.220664069056511,0.267949223518372,-0.990989983081818,0.0865150019526482,-0.10224499553442,-0.974717497825623,-0.141491234302521,-0.172933742403984,-0.995744228363037,-0.0790273174643517,0.0474163927137852,-0.97710520029068,-0.212756782770157,-4.72414957753202e-017,-0.937822282314301,-0.220664069056511,0.267949223518372,-0.974717497825623,-0.141491234302521,-0.172933742403984,-0.883314847946167,-0.102527610957623,-0.457430869340897,-0.974717497825623,-0.141491234302521,-0.172933742403984,-0.990989983081818,0.0865150019526482,-0.10224499553442,-0.97710520029068,-0.212756782770157,-4.72414957753202e-017,-0.974717497825623,-0.141491234302521,-0.172933742403984,-0.883314847946167,-0.102527610957623,-0.457430869340897,-0.871721804141998,-0.180627033114433,0.455494254827499,-0.96751469373703,-0.251711130142212,-0.0235979184508324,-0.891395628452301,-0.38653439283371,0.236653715372086,-0.871721804141998,-0.180627033114433,0.455494254827499,-0.966319620609283,-0.0549937970936298,0.251400232315063,-0.96751469373703,-0.251711130142212,-0.0235979184508324,-0.891395628452301,-0.38653439283371,0.236653715372086,-0.96751469373703,-0.251711130142212,-0.0235979184508324,-0.926266849040985,-0.306139051914215,-0.219792142510414,-0.96751469373703,-0.251711130142212,-0.0235979184508324,-0.966319620609283,-0.0549937970936298,0.251400232315063,-0.978046953678131,-0.181411936879158,-0.102537177503109,-0.96751469373703,-0.251711130142212,-0.0235979184508324,-0.978046953678131,-0.181411936879158,-0.102537177503109,
- -0.926266849040985,-0.306139051914215,-0.219792142510414,-0.966319620609283,-0.0549937970936298,0.251400232315063,-0.989674627780914,-0.0235636811703444,0.141382083296776,-0.978046953678131,-0.181411936879158,-0.102537177503109,-0.974326252937317,-0.11000457406044,-0.196436733007431,-0.926266849040985,-0.306139051914215,-0.219792142510414,-0.978046953678131,-0.181411936879158,-0.102537177503109,-0.978046953678131,-0.181411936879158,-0.102537177503109,-0.989674627780914,-0.0235636811703444,0.141382083296776,-0.974326252937317,-0.11000457406044,-0.196436733007431,-0.952726364135742,-0.259834468364716,0.157475426793098,-0.930288136005402,-0.173443555831909,-0.323235720396042,-0.917490720748901,-0.379651337862015,-0.118641041219234,-0.952726364135742,-0.259834468364716,0.157475426793098,-0.99737536907196,-0.0706801414489746,-0.0157066993415356,-0.930288136005402,-0.173443555831909,-0.323235720396042,-0.917490720748901,-0.379651337862015,-0.118641041219234,-0.930288136005402,-0.173443555831909,-0.323235720396042,-0.84054172039032,-0.157110601663589,-0.518464982509613,-0.930288136005402,-0.173443555831909,-0.323235720396042,-0.99737536907196,-0.0706801414489746,-0.0157066993415356,-0.922834634780884,-0.0709872767329216,-0.378598839044571,-0.922834634780884,-0.0709872767329216,-0.378598839044571,-0.84054172039032,-0.157110601663589,-0.518464982509613,-0.930288136005402,-0.173443555831909,-0.323235720396042,-0.99737536907196,-0.0706801414489746,-0.0157066993415356,-0.993883728981018,2.45207237028402e-017,-0.110431522130966,-0.922834634780884,-0.0709872767329216,-0.378598839044571,-0.894317090511322,0.0156897734850645,-0.447158545255661,-0.84054172039032,-0.157110601663589,-0.518464982509613,-0.922834634780884,-0.0709872767329216,-0.378598839044571,-0.922834634780884,-0.0709872767329216,-0.378598839044571,-0.993883728981018,2.45207237028402e-017,-0.110431522130966,-0.894317090511322,0.0156897734850645,-0.447158545255661,-0.988334119319916,-0.0862831398844719,0.125502735376358,-0.972339630126953,-0.0948624014854431,0.213440403342247,
- -0.981456816196442,0.109923161566257,0.157033085823059,-0.91014701128006,-0.251075029373169,0.329535990953445,-0.972339630126953,-0.0948624014854431,0.213440403342247,-0.988334119319916,-0.0862831398844719,0.125502735376358,-0.996791481971741,0.0784875229001045,-0.0156975034624338,-0.988334119319916,-0.0862831398844719,0.125502735376358,-0.981456816196442,0.109923161566257,0.157033085823059,-0.988334119319916,-0.0862831398844719,0.125502735376358,-0.983459711074829,-0.149485886096954,-0.102279812097549,-0.91014701128006,-0.251075029373169,0.329535990953445,-0.996791481971741,0.0784875229001045,-0.0156975034624338,-0.983459711074829,-0.149485886096954,-0.102279812097549,-0.988334119319916,-0.0862831398844719,0.125502735376358,-0.971368849277496,-0.229021921753883,0.0631784573197365,-0.91014701128006,-0.251075029373169,0.329535990953445,-0.983459711074829,-0.149485886096954,-0.102279812097549,-0.922834634780884,-0.0709872767329216,-0.378598839044571,-0.983459711074829,-0.149485886096954,-0.102279812097549,-0.996791481971741,0.0784875229001045,-0.0156975034624338,-0.971368849277496,-0.229021921753883,0.0631784573197365,-0.983459711074829,-0.149485886096954,-0.102279812097549,-0.922834634780884,-0.0709872767329216,-0.378598839044571,-0.989186525344849,-0.0392534323036671,-0.141312345862389,-0.994224011898041,-0.0867973417043686,-0.0631253346800804,-0.991757094860077,0.125937417149544,-0.0236132647842169,-0.951988935470581,-0.275368690490723,-0.13375049829483,-0.994224011898041,-0.0867973417043686,-0.0631253346800804,-0.989186525344849,-0.0392534323036671,-0.141312345862389,-0.966767251491547,0.180777609348297,-0.180777609348297,-0.989186525344849,-0.0392534323036671,-0.141312345862389,-0.991757094860077,0.125937417149544,-0.0236132647842169,-0.989186525344849,-0.0392534323036671,-0.141312345862389,-0.935327649116516,0.00785989686846733,-0.35369536280632,-0.951988935470581,-0.275368690490723,-0.13375049829483,-0.966767251491547,0.180777609348297,-0.180777609348297,-0.935327649116516,0.00785989686846733,-0.35369536280632,
- -0.989186525344849,-0.0392534323036671,-0.141312345862389,-0.872475445270538,-0.212223753333092,-0.440167784690857,-0.951988935470581,-0.275368690490723,-0.13375049829483,-0.935327649116516,0.00785989686846733,-0.35369536280632,-0.814337372779846,0.237185657024384,-0.529714643955231,-0.935327649116516,0.00785989686846733,-0.35369536280632,-0.966767251491547,0.180777609348297,-0.180777609348297,-0.872475445270538,-0.212223753333092,-0.440167784690857,-0.935327649116516,0.00785989686846733,-0.35369536280632,-0.814337372779846,0.237185657024384,-0.529714643955231,-0.995993077754974,-0.0632376596331596,0.0632376596331596,-0.987872242927551,-0.0395148880779743,0.150156587362289,-0.989461004734039,0.141351565718651,0.0314114615321159,-0.938288569450378,-0.141926005482674,0.31539112329483,-0.987872242927551,-0.0395148880779743,0.150156587362289,-0.995993077754974,-0.0632376596331596,0.0632376596331596,-0.991480767726898,0.0550822615623474,-0.118033424019814,-0.995993077754974,-0.0632376596331596,0.0632376596331596,-0.989461004734039,0.141351565718651,0.0314114615321159,-0.995993077754974,-0.0632376596331596,0.0632376596331596,-0.973005533218384,-0.188323646783829,-0.133395910263062,-0.938288569450378,-0.141926005482674,0.31539112329483,-0.991480767726898,0.0550822615623474,-0.118033424019814,-0.973005533218384,-0.188323646783829,-0.133395910263062,-0.995993077754974,-0.0632376596331596,0.0632376596331596,-0.977226555347443,-0.204902336001396,0.0551660135388374,-0.938288569450378,-0.141926005482674,0.31539112329483,-0.973005533218384,-0.188323646783829,-0.133395910263062,-0.884553611278534,-0.221138402819633,-0.41068559885025,-0.973005533218384,-0.188323646783829,-0.133395910263062,-0.991480767726898,0.0550822615623474,-0.118033424019814,-0.977226555347443,-0.204902336001396,0.0551660135388374,-0.973005533218384,-0.188323646783829,-0.133395910263062,-0.884553611278534,-0.221138402819633,-0.41068559885025,-0.871721863746643,-0.0549734532833099,0.486907720565796,-0.968594014644623,-0.244117185473442,0.0472484864294529,-0.891950845718384,-0.315734803676605,0.323628187179565,
- -0.871721863746643,-0.0549734532833099,0.486907720565796,-0.967664361000061,0.0157343801110983,0.251750081777573,-0.968594014644623,-0.244117185473442,0.0472484864294529,-0.891950845718384,-0.315734803676605,0.323628187179565,-0.968594014644623,-0.244117185473442,0.0472484864294529,-0.925013780593872,-0.352759510278702,-0.14110378921032,-0.968594014644623,-0.244117185473442,0.0472484864294529,-0.967664361000061,0.0157343801110983,0.251750081777573,-0.979174554347992,-0.197414219379425,-0.0473794117569923,-0.968594014644623,-0.244117185473442,0.0472484864294529,-0.979174554347992,-0.197414219379425,-0.0473794117569923,-0.925013780593872,-0.352759510278702,-0.14110378921032,-0.967664361000061,0.0157343801110983,0.251750081777573,-0.989827394485474,0.0157115459442139,0.141403913497925,-0.979174554347992,-0.197414219379425,-0.0473794117569923,-0.974958479404449,-0.157251358032227,-0.157251358032227,-0.925013780593872,-0.352759510278702,-0.14110378921032,-0.979174554347992,-0.197414219379425,-0.0473794117569923,-0.979174554347992,-0.197414219379425,-0.0473794117569923,-0.989827394485474,0.0157115459442139,0.141403913497925,-0.974958479404449,-0.157251358032227,-0.157251358032227,-0.953583955764771,-0.204902336001396,0.22066405415535,-0.92985475063324,-0.252164006233215,-0.267924249172211,-0.915317356586456,-0.40242400765419,-0.0157813336700201,-0.953583955764771,-0.204902336001396,0.22066405415535,-0.997498512268066,-0.0706888660788536,-1.56960813410775e-017,-0.92985475063324,-0.252164006233215,-0.267924249172211,-0.915317356586456,-0.40242400765419,-0.0157813336700201,-0.92985475063324,-0.252164006233215,-0.267924249172211,-0.84113883972168,-0.29086109995842,-0.455944389104843,-0.92985475063324,-0.252164006233215,-0.267924249172211,-0.997498512268066,-0.0706888660788536,-1.56960813410775e-017,-0.923064351081848,-0.165678218007088,-0.347135335206985,-0.923064351081848,-0.165678218007088,-0.347135335206985,-0.84113883972168,-0.29086109995842,-0.455944389104843,-0.92985475063324,-0.252164006233215,-0.267924249172211,-0.997498512268066,-0.0706888660788536,-1.56960813410775e-017,
- -0.99422413110733,-0.0315626710653305,-0.102578677237034,-0.923064351081848,-0.165678218007088,-0.347135335206985,-0.895945131778717,-0.102169178426266,-0.432254254817963,-0.84113883972168,-0.29086109995842,-0.455944389104843,-0.923064351081848,-0.165678218007088,-0.347135335206985,-0.923064351081848,-0.165678218007088,-0.347135335206985,-0.99422413110733,-0.0315626710653305,-0.102578677237034,-0.895945131778717,-0.102169178426266,-0.432254254817963,-0.988851487636566,-0.0470881685614586,0.141264483332634,-0.972552359104156,-0.0395346470177174,0.229300960898399,-0.981941223144531,0.141399532556534,0.125688478350639,-0.909782946109772,-0.156859129667282,0.384304851293564,-0.972552359104156,-0.0395346470177174,0.229300960898399,-0.988851487636566,-0.0470881685614586,0.141264483332634,-0.997006475925446,0.07065399736166,-0.0314017795026302,-0.988851487636566,-0.0470881685614586,0.141264483332634,-0.981941223144531,0.141399532556534,0.125688478350639,-0.988851487636566,-0.0470881685614586,0.141264483332634,-0.984221458435059,-0.165349200367928,-0.0629901736974716,-0.909782946109772,-0.156859129667282,0.384304851293564,-0.997006475925446,0.07065399736166,-0.0314017795026302,-0.984221458435059,-0.165349200367928,-0.0629901736974716,-0.988851487636566,-0.0470881685614586,0.141264483332634,-0.971490025520325,-0.205355599522591,0.118474394083023,-0.909782946109772,-0.156859129667282,0.384304851293564,-0.984221458435059,-0.165349200367928,-0.0629901736974716,-0.921831548213959,-0.1733358502388,-0.3466717004776,-0.984221458435059,-0.165349200367928,-0.0629901736974716,-0.997006475925446,0.07065399736166,-0.0314017795026302,-0.971490025520325,-0.205355599522591,0.118474394083023,-0.984221458435059,-0.165349200367928,-0.0629901736974716,-0.921831548213959,-0.1733358502388,-0.3466717004776,-0.989552557468414,-0.0706823170185089,-0.125657469034195,-0.993945598602295,-0.102549932897091,-0.0394422858953476,-0.991480767726898,0.118033424019814,-0.0550822615623474,-0.952608287334442,-0.299166232347488,-0.0551095679402351,-0.993945598602295,-0.102549932897091,-0.0394422858953476,
- -0.989552557468414,-0.0706823170185089,-0.125657469034195,-0.967305243015289,0.125828325748444,-0.220199555158615,-0.989552557468414,-0.0706823170185089,-0.125657469034195,-0.991480767726898,0.118033424019814,-0.0550822615623474,-0.989552557468414,-0.0706823170185089,-0.125657469034195,-0.935038864612579,-0.0785746946930885,-0.345728695392609,-0.952608287334442,-0.299166232347488,-0.0551095679402351,-0.967305243015289,0.125828325748444,-0.220199555158615,-0.935038864612579,-0.0785746946930885,-0.345728695392609,-0.989552557468414,-0.0706823170185089,-0.125657469034195,-0.871426224708557,-0.314027458429337,-0.376832962036133,-0.952608287334442,-0.299166232347488,-0.0551095679402351,-0.935038864612579,-0.0785746946930885,-0.345728695392609,-0.812207877635956,0.0946261584758759,-0.57564252614975,-0.935038864612579,-0.0785746946930885,-0.345728695392609,-0.967305243015289,0.125828325748444,-0.220199555158615,-0.871426224708557,-0.314027458429337,-0.376832962036133,-0.935038864612579,-0.0785746946930885,-0.345728695392609,-0.812207877635956,0.0946261584758759,-0.57564252614975,-0.99571305513382,-0.0316099375486374,0.0869273319840431,-0.987317442893982,0.0157970786094666,0.157970786094666,-0.989674627780914,0.141382083296776,-0.0235636811703444,-0.937676668167114,-0.0236389078199863,0.346704006195068,-0.987317442893982,0.0157970786094666,0.157970786094666,-0.99571305513382,-0.0316099375486374,0.0869273319840431,-0.992002964019775,0.0078730396926403,-0.125968635082245,-0.99571305513382,-0.0316099375486374,0.0869273319840431,-0.989674627780914,0.141382083296776,-0.0235636811703444,-0.99571305513382,-0.0316099375486374,0.0869273319840431,-0.973965525627136,-0.219927683472633,-0.0549819208681583,-0.937676668167114,-0.0236389078199863,0.346704006195068,-0.992002964019775,0.0078730396926403,-0.125968635082245,-0.973965525627136,-0.219927683472633,-0.0549819208681583,-0.99571305513382,-0.0316099375486374,0.0869273319840431,-0.976771771907806,-0.173298224806786,0.126035064458847,-0.937676668167114,-0.0236389078199863,0.346704006195068,
- -0.973965525627136,-0.219927683472633,-0.0549819208681583,-0.885410070419312,-0.347839683294296,-0.308312445878983,-0.973965525627136,-0.219927683472633,-0.0549819208681583,-0.992002964019775,0.0078730396926403,-0.125968635082245,-0.976771771907806,-0.173298224806786,0.126035064458847,-0.973965525627136,-0.219927683472633,-0.0549819208681583,-0.885410070419312,-0.347839683294296,-0.308312445878983,-0.870300531387329,0.117608182132244,0.478273272514343,-0.968954622745514,-0.212697356939316,0.126042872667313,-0.891617596149445,-0.173589274287224,0.418192327022552,-0.870300531387329,0.117608182132244,0.478273272514343,-0.966438949108124,0.102143943309784,0.235716819763184,-0.968954622745514,-0.212697356939316,0.126042872667313,-0.891617596149445,-0.173589274287224,0.418192327022552,-0.968954622745514,-0.212697356939316,0.126042872667313,-0.926266849040985,-0.376786530017853,-0.00784971937537193,-0.968954622745514,-0.212697356939316,0.126042872667313,-0.966438949108124,0.102143943309784,0.235716819763184,-0.978442788124084,-0.205157354474068,0.0236720032989979,-0.968954622745514,-0.212697356939316,0.126042872667313,-0.978442788124084,-0.205157354474068,0.0236720032989979,-0.926266849040985,-0.376786530017853,-0.00784971937537193,-0.966438949108124,0.102143943309784,0.235716819763184,-0.990071713924408,0.0628616958856583,0.125723391771317,-0.978442788124084,-0.205157354474068,0.0236720032989979,-0.974356293678284,-0.204300507903099,-0.0942925438284874,-0.926266849040985,-0.376786530017853,-0.00784971937537193,-0.978442788124084,-0.205157354474068,0.0236720032989979,-0.978442788124084,-0.205157354474068,0.0236720032989979,-0.990071713924408,0.0628616958856583,0.125723391771317,-0.974356293678284,-0.204300507903099,-0.0942925438284874,-0.951782763004303,-0.117989592254162,0.283174991607666,-0.930317163467407,-0.331129819154739,-0.157680869102478,-0.916602432727814,-0.379283785820007,0.126427918672562,-0.951782763004303,-0.117989592254162,0.283174991607666,-0.997529208660126,-0.0628364831209183,0.0314182415604591,-0.930317163467407,-0.331129819154739,-0.157680869102478,
- -0.916602432727814,-0.379283785820007,0.126427918672562,-0.930317163467407,-0.331129819154739,-0.157680869102478,-0.841841459274292,-0.432722240686417,-0.322574734687805,-0.930317163467407,-0.331129819154739,-0.157680869102478,-0.997529208660126,-0.0628364831209183,0.0314182415604591,-0.920917332172394,-0.283359169960022,-0.267616987228394,-0.920917332172394,-0.283359169960022,-0.267616987228394,-0.841841459274292,-0.432722240686417,-0.322574734687805,-0.930317163467407,-0.331129819154739,-0.157680869102478,-0.997529208660126,-0.0628364831209183,0.0314182415604591,-0.994224011898041,-0.0631253346800804,-0.0867973417043686,-0.920917332172394,-0.283359169960022,-0.267616987228394,-0.894868075847626,-0.251191049814224,-0.368936836719513,-0.841841459274292,-0.432722240686417,-0.322574734687805,-0.920917332172394,-0.283359169960022,-0.267616987228394,-0.920917332172394,-0.283359169960022,-0.267616987228394,-0.994224011898041,-0.0631253346800804,-0.0867973417043686,-0.894868075847626,-0.251191049814224,-0.368936836719513,-0.988820910453796,-3.31086087753168e-017,0.149107918143272,-0.972218096256256,0.0474252738058567,0.229222148656845,-0.981547594070435,0.180604755878448,0.0628190487623215,-0.909447312355042,-0.0156801268458366,0.415523380041122,-0.972218096256256,0.0474252738058567,0.229222148656845,-0.988820910453796,-3.31086087753168e-017,0.149107918143272,-0.996975898742676,0.0549514293670654,-0.0549514293670654,-0.988820910453796,-3.31086087753168e-017,0.149107918143272,-0.981547594070435,0.180604755878448,0.0628190487623215,-0.988820910453796,-3.31086087753168e-017,0.149107918143272,-0.98349004983902,-0.180962175130844,-4.01816746833026e-017,-0.909447312355042,-0.0156801268458366,0.415523380041122,-0.996975898742676,0.0549514293670654,-0.0549514293670654,-0.98349004983902,-0.180962175130844,-4.01816746833026e-017,-0.988820910453796,-3.31086087753168e-017,0.149107918143272,-0.971823513507843,-0.150119081139565,0.181723102927208,-0.909447312355042,-0.0156801268458366,0.415523380041122,-0.98349004983902,-0.180962175130844,-4.01816746833026e-017,
- -0.920917332172394,-0.283359169960022,-0.267616987228394,-0.98349004983902,-0.180962175130844,-4.01816746833026e-017,-0.996975898742676,0.0549514293670654,-0.0549514293670654,-0.971823513507843,-0.150119081139565,0.181723102927208,-0.98349004983902,-0.180962175130844,-4.01816746833026e-017,-0.920917332172394,-0.283359169960022,-0.267616987228394,-0.990163564682007,-0.110018171370029,-0.0864428505301476,-0.993883728981018,-0.110431522130966,-2.45207237028402e-017,-0.991051256656647,0.0943858325481415,-0.0943858325481415,-0.950343310832977,-0.30630898475647,0.0549785383045673,-0.993883728981018,-0.110431522130966,-2.45207237028402e-017,-0.990163564682007,-0.110018171370029,-0.0864428505301476,-0.967036128044128,0.039310410618782,-0.251586616039276,-0.990163564682007,-0.110018171370029,-0.0864428505301476,-0.991051256656647,0.0943858325481415,-0.0943858325481415,-0.990163564682007,-0.110018171370029,-0.0864428505301476,-0.936253547668457,-0.196691930294037,-0.291104078292847,-0.950343310832977,-0.30630898475647,0.0549785383045673,-0.967036128044128,0.039310410618782,-0.251586616039276,-0.936253547668457,-0.196691930294037,-0.291104078292847,-0.990163564682007,-0.110018171370029,-0.0864428505301476,-0.873799085617065,-0.425091445446014,-0.236161917448044,-0.950343310832977,-0.30630898475647,0.0549785383045673,-0.936253547668457,-0.196691930294037,-0.291104078292847,-0.813828945159912,-0.11851878464222,-0.56889009475708,-0.936253547668457,-0.196691930294037,-0.291104078292847,-0.967036128044128,0.039310410618782,-0.251586616039276,-0.873799085617065,-0.425091445446014,-0.236161917448044,-0.936253547668457,-0.196691930294037,-0.291104078292847,-0.813828945159912,-0.11851878464222,-0.56889009475708,-0.971368849277496,0.0868703871965408,-0.221124619245529,-0.911550879478455,-0.180738538503647,-0.369335293769836,-0.946762144565582,-0.260359585285187,-0.189352422952652,-0.971368849277496,0.0868703871965408,-0.221124619245529,-0.946762144565582,-0.260359585285187,-0.189352422952652,-0.993605554103851,-0.102514855563641,-0.0473145507276058,
- -0.911550879478455,-0.180738538503647,-0.369335293769836,-0.850288271903992,-0.488128453493118,-0.196825981140137,-0.946762144565582,-0.260359585285187,-0.189352422952652,-0.946762144565582,-0.260359585285187,-0.189352422952652,-0.935587763786316,-0.345931649208069,-0.0707587376236916,-0.993605554103851,-0.102514855563641,-0.0473145507276058,-0.946762144565582,-0.260359585285187,-0.189352422952652,-0.850288271903992,-0.488128453493118,-0.196825981140137,-0.935587763786316,-0.345931649208069,-0.0707587376236916,-0.993605554103851,-0.102514855563641,-0.0473145507276058,-0.935587763786316,-0.345931649208069,-0.0707587376236916,-0.975441098213196,-0.22026090323925,-4.89077452401899e-017,-0.850288271903992,-0.488128453493118,-0.196825981140137,-0.881234347820282,-0.472089856863022,-0.023604491725564,-0.935587763786316,-0.345931649208069,-0.0707587376236916,-0.935587763786316,-0.345931649208069,-0.0707587376236916,-0.881234347820282,-0.472089856863022,-0.023604491725564,-0.975441098213196,-0.22026090323925,-4.89077452401899e-017,-0.941357553005219,-0.007844646461308,-0.337319761514664,-0.928472101688385,-0.298999488353729,-0.220315411686897,-0.977226555347443,-0.204902336001396,-0.0551660135388374,-0.941357553005219,-0.007844646461308,-0.337319761514664,-0.977226555347443,-0.204902336001396,-0.0551660135388374,-0.996239423751831,0.00784440524876118,-0.0862884521484375,-0.928472101688385,-0.298999488353729,-0.220315411686897,-0.919607877731323,-0.369415134191513,0.133618235588074,-0.977226555347443,-0.204902336001396,-0.0551660135388374,-0.977226555347443,-0.204902336001396,-0.0551660135388374,-0.981789767742157,-0.164940670132637,0.0942518189549446,-0.996239423751831,0.00784440524876118,-0.0862884521484375,-0.977226555347443,-0.204902336001396,-0.0551660135388374,-0.919607877731323,-0.369415134191513,0.133618235588074,-0.981789767742157,-0.164940670132637,0.0942518189549446,-0.996239423751831,0.00784440524876118,-0.0862884521484375,-0.981789767742157,-0.164940670132637,0.0942518189549446,-0.998731434345245,-0.031456109136343,0.039320133626461,
- -0.919607877731323,-0.369415134191513,0.133618235588074,-0.950401842594147,-0.219927683472633,0.219927683472633,-0.981789767742157,-0.164940670132637,0.0942518189549446,-0.981789767742157,-0.164940670132637,0.0942518189549446,-0.950401842594147,-0.219927683472633,0.219927683472633,-0.998731434345245,-0.031456109136343,0.039320133626461,-0.941995322704315,0.329698354005814,-0.0627996847033501,-0.929133951663971,0.165354341268539,-0.330708682537079,-0.976983845233917,0.015757804736495,-0.21273036301136,-0.941995322704315,0.329698354005814,-0.0627996847033501,-0.976983845233917,0.015757804736495,-0.21273036301136,-0.996239423751831,0.0862884521484375,-0.00784440524876118,-0.929133951663971,0.165354341268539,-0.330708682537079,-0.920290350914001,-0.196643248200417,-0.33822637796402,-0.976983845233917,0.015757804736495,-0.21273036301136,-0.976983845233917,0.015757804736495,-0.21273036301136,-0.981759488582611,-0.117811143398285,-0.149227440357208,-0.996239423751831,0.0862884521484375,-0.00784440524876118,-0.976983845233917,0.015757804736495,-0.21273036301136,-0.920290350914001,-0.196643248200417,-0.33822637796402,-0.981759488582611,-0.117811143398285,-0.149227440357208,-0.996239423751831,0.0862884521484375,-0.00784440524876118,-0.981759488582611,-0.117811143398285,-0.149227440357208,-0.998607933521271,-0.047178328037262,-0.023589164018631,-0.920290350914001,-0.196643248200417,-0.33822637796402,-0.948939442634583,-0.25880166888237,-0.180376917123795,-0.981759488582611,-0.117811143398285,-0.149227440357208,-0.981759488582611,-0.117811143398285,-0.149227440357208,-0.948939442634583,-0.25880166888237,-0.180376917123795,-0.998607933521271,-0.047178328037262,-0.023589164018631,-0.981033563613892,0.164813637733459,0.102027483284473,-0.999845147132874,-0.00787279661744833,-0.0157455932348967,-0.97795569896698,0.0394336953759193,0.205055221915245,-0.981033563613892,0.164813637733459,0.102027483284473,-0.98248702287674,0.165057823061943,-0.0864588618278503,-0.999845147132874,-0.00787279661744833,-0.0157455932348967,-0.97795569896698,0.0394336953759193,0.205055221915245,
- -0.999845147132874,-0.00787279661744833,-0.0157455932348967,-0.979327261447906,-0.157956004142761,0.126364797353745,-0.999845147132874,-0.00787279661744833,-0.0157455932348967,-0.98248702287674,0.165057823061943,-0.0864588618278503,-0.983216226100922,0.0235971882939339,-0.180911779403687,-0.979327261447906,-0.157956004142761,0.126364797353745,-0.999845147132874,-0.00787279661744833,-0.0157455932348967,-0.988973200321198,-0.125583902001381,-0.0784899368882179,-0.988973200321198,-0.125583902001381,-0.0784899368882179,-0.999845147132874,-0.00787279661744833,-0.0157455932348967,-0.983216226100922,0.0235971882939339,-0.180911779403687,-0.979510545730591,0.0394963920116425,-0.197481960058212,-0.999876022338867,-3.49633197622281e-018,0.0157460793852806,-0.975803375244141,0.188865169882774,-0.110171347856522,-0.979510545730591,0.0394963920116425,-0.197481960058212,-0.983947098255157,-0.133816793560982,-0.118073657155037,-0.999876022338867,-3.49633197622281e-018,0.0157460793852806,-0.975803375244141,0.188865169882774,-0.110171347856522,-0.999876022338867,-3.49633197622281e-018,0.0157460793852806,-0.978046953678131,0.181411936879158,0.102537177503109,-0.999876022338867,-3.49633197622281e-018,0.0157460793852806,-0.983947098255157,-0.133816793560982,-0.118073657155037,-0.984099447727203,-0.173201501369476,0.0393639765679836,-0.978046953678131,0.181411936879158,0.102537177503109,-0.999876022338867,-3.49633197622281e-018,0.0157460793852806,-0.989918947219849,-0.00785649940371513,0.141416981816292,-0.989918947219849,-0.00785649940371513,0.141416981816292,-0.999876022338867,-3.49633197622281e-018,0.0157460793852806,-0.984099447727203,-0.173201501369476,0.0393639765679836,-0.981305718421936,-0.188410699367523,-0.0392522290349007,-0.999721229076386,0.023615462705493,5.243686086563e-018,-0.976620197296143,-0.102387592196465,-0.18902325630188,-0.981305718421936,-0.188410699367523,-0.0392522290349007,-0.984832227230072,-0.110301204025745,0.133937180042267,-0.999721229076386,0.023615462705493,5.243686086563e-018,-0.976620197296143,-0.102387592196465,-0.18902325630188,
- -0.999721229076386,0.023615462705493,5.243686086563e-018,-0.977226555347443,0.110332027077675,-0.181259766221046,-0.999721229076386,0.023615462705493,5.243686086563e-018,-0.984832227230072,-0.110301204025745,0.133937180042267,-0.983764111995697,0.0472206771373749,0.173142492771149,-0.977226555347443,0.110332027077675,-0.181259766221046,-0.999721229076386,0.023615462705493,5.243686086563e-018,-0.987409830093384,0.15798556804657,0.00789927877485752,-0.987409830093384,0.15798556804657,0.00789927877485752,-0.999721229076386,0.023615462705493,5.243686086563e-018,-0.983764111995697,0.0472206771373749,0.173142492771149,-0.979999899864197,0.0237096734344959,-0.197580605745316,-0.999876022338867,-3.49633197622281e-018,0.0157460793852806,-0.976771771907806,0.173298224806786,-0.126035064458847,-0.979999899864197,0.0237096734344959,-0.197580605745316,-0.982638835906982,-0.149361103773117,-0.110055543482304,-0.999876022338867,-3.49633197622281e-018,0.0157460793852806,-0.976771771907806,0.173298224806786,-0.126035064458847,-0.999876022338867,-3.49633197622281e-018,0.0157460793852806,-0.978716969490051,0.189429089426994,0.0789287835359573,-0.999876022338867,-3.49633197622281e-018,0.0157460793852806,-0.982638835906982,-0.149361103773117,-0.110055543482304,-0.984221458435059,-0.165349200367928,0.0629901736974716,-0.978716969490051,0.189429089426994,0.0789287835359573,-0.999876022338867,-3.49633197622281e-018,0.0157460793852806,-0.989949524402618,-3.14018473127668e-017,0.141421347856522,-0.989949524402618,-3.14018473127668e-017,0.141421347856522,-0.999876022338867,-3.49633197622281e-018,0.0157460793852806,-0.984221458435059,-0.165349200367928,0.0629901736974716,-0.981547594070435,-0.180604755878448,-0.0628190487623215,-0.999721229076386,0.023615462705493,5.243686086563e-018,-0.976256906986237,-0.0708573535084724,-0.204699024558067,-0.981547594070435,-0.180604755878448,-0.0628190487623215,-0.984832227230072,-0.133937180042267,0.110301204025745,-0.999721229076386,0.023615462705493,5.243686086563e-018,-0.976256906986237,-0.0708573535084724,-0.204699024558067,
- -0.999721229076386,0.023615462705493,5.243686086563e-018,-0.977074861526489,0.133953809738159,-0.165472343564034,-0.999721229076386,0.023615462705493,5.243686086563e-018,-0.984832227230072,-0.133937180042267,0.110301204025745,-0.984587788581848,0.0236301068216562,0.173287451267242,-0.977074861526489,0.133953809738159,-0.165472343564034,-0.999721229076386,0.023615462705493,5.243686086563e-018,-0.986948072910309,0.157911688089371,0.0315823368728161,-0.986948072910309,0.157911688089371,0.0315823368728161,-0.999721229076386,0.023615462705493,5.243686086563e-018,-0.984587788581848,0.0236301068216562,0.173287451267242,-0.981547594070435,-0.180604755878448,-0.0628190487623215,-0.999721229076386,0.023615462705493,5.243686086563e-018,-0.976256906986237,-0.0708573535084724,-0.204699024558067,-0.981547594070435,-0.180604755878448,-0.0628190487623215,-0.984832227230072,-0.133937180042267,0.110301204025745,-0.999721229076386,0.023615462705493,5.243686086563e-018,-0.976256906986237,-0.0708573535084724,-0.204699024558067,-0.999721229076386,0.023615462705493,5.243686086563e-018,-0.977074861526489,0.133953809738159,-0.165472343564034,-0.999721229076386,0.023615462705493,5.243686086563e-018,-0.984832227230072,-0.133937180042267,0.110301204025745,-0.984587788581848,0.0236301068216562,0.173287451267242,-0.977074861526489,0.133953809738159,-0.165472343564034,-0.999721229076386,0.023615462705493,5.243686086563e-018,-0.986948072910309,0.157911688089371,0.0315823368728161,-0.986948072910309,0.157911688089371,0.0315823368728161,-0.999721229076386,0.023615462705493,5.243686086563e-018,-0.984587788581848,0.0236301068216562,0.173287451267242,-0.980822145938873,0.125545233488083,0.149084970355034,-0.999845147132874,-0.00787279661744833,-0.0157455932348967,-0.978229522705078,-0.0315557904541492,0.205112636089325,-0.980822145938873,0.125545233488083,0.149084970355034,-0.98157787322998,0.188462942838669,-0.0314104929566383,-0.999845147132874,-0.00787279661744833,-0.0157455932348967,-0.978229522705078,-0.0315557904541492,0.205112636089325,-0.999845147132874,-0.00787279661744833,-0.0157455932348967,
- -0.980128526687622,-0.188184678554535,0.062728226184845,-0.999845147132874,-0.00787279661744833,-0.0157455932348967,-0.98157787322998,0.188462942838669,-0.0314104929566383,-0.981820046901703,0.0785456076264381,-0.172800332307816,-0.980128526687622,-0.188184678554535,0.062728226184845,-0.999845147132874,-0.00787279661744833,-0.0157455932348967,-0.988577425479889,-0.0941502302885056,-0.117687791585922,-0.988577425479889,-0.0941502302885056,-0.117687791585922,-0.999845147132874,-0.00787279661744833,-0.0157455932348967,-0.981820046901703,0.0785456076264381,-0.172800332307816,-0.980459988117218,-0.180404648184776,-0.0784367993474007,-0.999721229076386,0.023615462705493,5.243686086563e-018,-0.976256906986237,-0.0708573535084724,-0.204699024558067,-0.980459988117218,-0.180404648184776,-0.0784367993474007,-0.984832227230072,-0.133937180042267,0.110301204025745,-0.999721229076386,0.023615462705493,5.243686086563e-018,-0.976256906986237,-0.0708573535084724,-0.204699024558067,-0.999721229076386,0.023615462705493,5.243686086563e-018,-0.977257013320923,0.141859874129295,-0.157622098922729,-0.999721229076386,0.023615462705493,5.243686086563e-018,-0.984832227230072,-0.133937180042267,0.110301204025745,-0.983216226100922,0.0235971882939339,0.180911779403687,-0.977257013320923,0.141859874129295,-0.157622098922729,-0.999721229076386,0.023615462705493,5.243686086563e-018,-0.987872242927551,0.150156587362289,0.0395148880779743,-0.987872242927551,0.150156587362289,0.0395148880779743,-0.999721229076386,0.023615462705493,5.243686086563e-018,-0.983216226100922,0.0235971882939339,0.180911779403687,-0.981033563613892,0.180510178208351,0.0706344097852707,-0.999752104282379,-0.0157441273331642,-0.0157441273331642,-0.977803647518158,0.0709696188569069,0.197137832641602,-0.981033563613892,0.180510178208351,0.0706344097852707,-0.982881903648376,0.141534984111786,-0.117945834994316,-0.999752104282379,-0.0157441273331642,-0.0157441273331642,-0.977803647518158,0.0709696188569069,0.197137832641602,-0.999752104282379,-0.0157441273331642,-0.0157441273331642,
- -0.97957170009613,-0.142195880413055,0.142195880413055,-0.999752104282379,-0.0157441273331642,-0.0157441273331642,-0.982881903648376,0.141534984111786,-0.117945834994316,-0.982032120227814,-0.00785625725984573,-0.188550174236298,-0.97957170009613,-0.142195880413055,0.142195880413055,-0.999752104282379,-0.0157441273331642,-0.0157441273331642,-0.988273561000824,-0.142311379313469,-0.0553433187305927,-0.988273561000824,-0.142311379313469,-0.0553433187305927,-0.999752104282379,-0.0157441273331642,-0.0157441273331642,-0.982032120227814,-0.00785625725984573,-0.188550174236298,-0.979999899864197,0.0237096734344959,-0.197580605745316,-0.999938011169434,-0.0078735277056694,0.0078735277056694,-0.977712452411652,0.173465117812157,-0.118271671235561,-0.979999899864197,0.0237096734344959,-0.197580605745316,-0.981941223144531,-0.141399532556534,-0.125688478350639,-0.999938011169434,-0.0078735277056694,0.0078735277056694,-0.977712452411652,0.173465117812157,-0.118271671235561,-0.999938011169434,-0.0078735277056694,0.0078735277056694,-0.978808522224426,0.181553184986115,0.0947234109044075,-0.999938011169434,-0.0078735277056694,0.0078735277056694,-0.981941223144531,-0.141399532556534,-0.125688478350639,-0.983764111995697,-0.173142492771149,0.0472206771373749,-0.978808522224426,0.181553184986115,0.0947234109044075,-0.999938011169434,-0.0078735277056694,0.0078735277056694,-0.989827394485474,-0.0157115459442139,0.141403913497925,-0.989827394485474,-0.0157115459442139,0.141403913497925,-0.999938011169434,-0.0078735277056694,0.0078735277056694,-0.983764111995697,-0.173142492771149,0.0472206771373749,-0.978595018386841,0.110486537218094,-0.173621699213982,-0.999938011169434,-0.0078735277056694,0.0078735277056694,-0.976620197296143,0.212651163339615,-0.0315038748085499,-0.978595018386841,0.110486537218094,-0.173621699213982,-0.983124971389771,-0.0786499977111816,-0.165164992213249,-0.999938011169434,-0.0078735277056694,0.0078735277056694,-0.976620197296143,0.212651163339615,-0.0315038748085499,-0.999938011169434,-0.0078735277056694,0.0078735277056694,
- -0.980520606040955,0.126518785953522,0.150241062045097,-0.999938011169434,-0.0078735277056694,0.0078735277056694,-0.983124971389771,-0.0786499977111816,-0.165164992213249,-0.983216226100922,-0.180911779403687,-0.0235971882939339,-0.980520606040955,0.126518785953522,0.150241062045097,-0.999938011169434,-0.0078735277056694,0.0078735277056694,-0.989552557468414,-0.0706823170185089,0.125657469034195,-0.989552557468414,-0.0706823170185089,0.125657469034195,-0.999938011169434,-0.0078735277056694,0.0078735277056694,-0.983216226100922,-0.180911779403687,-0.0235971882939339,-0.982638835906982,-0.149361103773117,0.110055543482304,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.97795569896698,-0.205055221915245,-0.0394336953759193,-0.982638835906982,-0.149361103773117,0.110055543482304,-0.984587788581848,0.0236301068216562,0.173287451267242,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.97795569896698,-0.205055221915245,-0.0394336953759193,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.977803647518158,-0.0709696188569069,-0.197137832641602,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.984587788581848,0.0236301068216562,0.173287451267242,-0.983703315258026,0.165262147784233,0.0708266347646713,-0.977803647518158,-0.0709696188569069,-0.197137832641602,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.987687170505524,0.110620968043804,-0.110620968043804,-0.987687170505524,0.110620968043804,-0.110620968043804,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.983703315258026,0.165262147784233,0.0708266347646713,-0.980973124504089,0.188346847891808,0.0470867119729519,-0.999845147132874,-0.00787279661744833,-0.0157455932348967,-0.977378308773041,0.0945850014686584,0.189170002937317,-0.980973124504089,0.188346847891808,0.0470867119729519,-0.982001841068268,0.133552238345146,-0.133552238345146,-0.999845147132874,-0.00787279661744833,-0.0157455932348967,-0.977378308773041,0.0945850014686584,0.189170002937317,-0.999845147132874,-0.00787279661744833,-0.0157455932348967,
- -0.979021966457367,-0.118430078029633,0.165802091360092,-0.999845147132874,-0.00787279661744833,-0.0157455932348967,-0.982001841068268,0.133552238345146,-0.133552238345146,-0.983216226100922,-0.0235971882939339,-0.180911779403687,-0.979021966457367,-0.118430078029633,0.165802091360092,-0.999845147132874,-0.00787279661744833,-0.0157455932348967,-0.988060593605042,-0.148993268609047,-0.0392087511718273,-0.988060593605042,-0.148993268609047,-0.0392087511718273,-0.999845147132874,-0.00787279661744833,-0.0157455932348967,-0.983216226100922,-0.0235971882939339,-0.180911779403687,-0.978595018386841,-0.0157837904989719,-0.205189272761345,-0.999876022338867,-3.49633197622281e-018,0.0157460793852806,-0.976135909557343,0.14956921339035,-0.157441273331642,-0.978595018386841,-0.0157837904989719,-0.205189272761345,-0.983124971389771,-0.165164992213249,-0.0786499977111816,-0.999876022338867,-3.49633197622281e-018,0.0157460793852806,-0.976135909557343,0.14956921339035,-0.157441273331642,-0.999876022338867,-3.49633197622281e-018,0.0157460793852806,-0.979174554347992,0.197414219379425,0.0473794117569923,-0.999876022338867,-3.49633197622281e-018,0.0157460793852806,-0.983124971389771,-0.165164992213249,-0.0786499977111816,-0.983733773231506,-0.157397404313087,0.08656857162714,-0.979174554347992,0.197414219379425,0.0473794117569923,-0.999876022338867,-3.49633197622281e-018,0.0157460793852806,-0.989461004734039,0.0314114615321159,0.141351565718651,-0.989461004734039,0.0314114615321159,0.141351565718651,-0.999876022338867,-3.49633197622281e-018,0.0157460793852806,-0.983733773231506,-0.157397404313087,0.08656857162714,-0.980459988117218,-0.196091994643211,0.0156873594969511,-0.999690115451813,0.023614726960659,-0.00787157565355301,-0.977317631244659,-0.149750277400017,-0.149750277400017,-0.980459988117218,-0.196091994643211,0.0156873594969511,-0.984954476356506,-0.0709167197346687,0.157592713832855,-0.999690115451813,0.023614726960659,-0.00787157565355301,-0.977317631244659,-0.149750277400017,-0.149750277400017,-0.999690115451813,0.023614726960659,-0.00787157565355301,
- -0.977226555347443,0.0551660135388374,-0.204902336001396,-0.999690115451813,0.023614726960659,-0.00787157565355301,-0.984954476356506,-0.0709167197346687,0.157592713832855,-0.984221458435059,0.0944852605462074,0.149601668119431,-0.977226555347443,0.0551660135388374,-0.204902336001396,-0.999690115451813,0.023614726960659,-0.00787157565355301,-0.988150000572205,0.150198802351952,-0.0316208004951477,-0.988150000572205,0.150198802351952,-0.0316208004951477,-0.999690115451813,0.023614726960659,-0.00787157565355301,-0.984221458435059,0.0944852605462074,0.149601668119431,-0.979510545730591,-0.0394963920116425,-0.197481960058212,-0.999876022338867,-3.49633197622281e-018,0.0157460793852806,-0.976771771907806,0.126035064458847,-0.173298224806786,-0.979510545730591,-0.0394963920116425,-0.197481960058212,-0.982912182807922,-0.172992557287216,-0.062906377017498,-0.999876022338867,-3.49633197622281e-018,0.0157460793852806,-0.976771771907806,0.126035064458847,-0.173298224806786,-0.999876022338867,-3.49633197622281e-018,0.0157460793852806,-0.978442788124084,0.205157354474068,0.0236720032989979,-0.999876022338867,-3.49633197622281e-018,0.0157460793852806,-0.982912182807922,-0.172992557287216,-0.062906377017498,-0.984587788581848,-0.141780629754066,0.102397121489048,-0.978442788124084,0.205157354474068,0.0236720032989979,-0.999876022338867,-3.49633197622281e-018,0.0157460793852806,-0.989186525344849,0.0392534323036671,0.141312345862389,-0.989186525344849,0.0392534323036671,0.141312345862389,-0.999876022338867,-3.49633197622281e-018,0.0157460793852806,-0.984587788581848,-0.141780629754066,0.102397121489048,-0.981941342353821,-0.188532739877701,-0.0157110616564751,-0.999690115451813,0.023614726960659,-0.00787157565355301,-0.976771771907806,-0.126035064458847,-0.173298224806786,-0.981941342353821,-0.188532739877701,-0.0157110616564751,-0.985352337360382,-0.0945938304066658,0.141890734434128,-0.999690115451813,0.023614726960659,-0.00787157565355301,-0.976771771907806,-0.126035064458847,-0.173298224806786,-0.999690115451813,0.023614726960659,-0.00787157565355301,
- -0.977226555347443,0.0788085907697678,-0.197021469473839,-0.999690115451813,0.023614726960659,-0.00787157565355301,-0.985352337360382,-0.0945938304066658,0.141890734434128,-0.984954476356506,0.0709167197346687,0.157592713832855,-0.977226555347443,0.0788085907697678,-0.197021469473839,-0.999690115451813,0.023614726960659,-0.00787157565355301,-0.987409830093384,0.15798556804657,-0.00789927877485752,-0.987409830093384,0.15798556804657,-0.00789927877485752,-0.999690115451813,0.023614726960659,-0.00787157565355301,-0.984954476356506,0.0709167197346687,0.157592713832855,-0.981941342353821,-0.188532739877701,-0.0157110616564751,-0.999690115451813,0.023614726960659,-0.00787157565355301,-0.976771771907806,-0.126035064458847,-0.173298224806786,-0.981941342353821,-0.188532739877701,-0.0157110616564751,-0.985352337360382,-0.0945938304066658,0.141890734434128,-0.999690115451813,0.023614726960659,-0.00787157565355301,-0.976771771907806,-0.126035064458847,-0.173298224806786,-0.999690115451813,0.023614726960659,-0.00787157565355301,-0.977226555347443,0.0788085907697678,-0.197021469473839,-0.999690115451813,0.023614726960659,-0.00787157565355301,-0.985352337360382,-0.0945938304066658,0.141890734434128,-0.984954476356506,0.0709167197346687,0.157592713832855,-0.977226555347443,0.0788085907697678,-0.197021469473839,-0.999690115451813,0.023614726960659,-0.00787157565355301,-0.987409830093384,0.15798556804657,-0.00789927877485752,-0.987409830093384,0.15798556804657,-0.00789927877485752,-0.999690115451813,0.023614726960659,-0.00787157565355301,-0.984954476356506,0.0709167197346687,0.157592713832855,-0.980218827724457,0.164676755666733,0.109784506261349,-0.999845147132874,-0.00787279661744833,-0.0157455932348967,-0.978442788124084,0.0236720032989979,0.205157354474068,-0.980218827724457,0.164676755666733,0.109784506261349,-0.981184661388397,0.172688513994217,-0.0863442569971085,-0.999845147132874,-0.00787279661744833,-0.0157455932348967,-0.978442788124084,0.0236720032989979,0.205157354474068,-0.999845147132874,-0.00787279661744833,-0.0157455932348967,
- -0.981456816196442,-0.157033085823059,0.109923161566257,-0.999845147132874,-0.00787279661744833,-0.0157455932348967,-0.981184661388397,0.172688513994217,-0.0863442569971085,-0.98157787322998,0.0314104929566383,-0.188462942838669,-0.981456816196442,-0.157033085823059,0.109923161566257,-0.999845147132874,-0.00787279661744833,-0.0157455932348967,-0.988334119319916,-0.125502735376358,-0.0862831398844719,-0.988334119319916,-0.125502735376358,-0.0862831398844719,-0.999845147132874,-0.00787279661744833,-0.0157455932348967,-0.98157787322998,0.0314104929566383,-0.188462942838669,-0.981789767742157,-0.188503637909889,-0.0235629547387362,-0.999690115451813,0.023614726960659,-0.00787157565355301,-0.976771771907806,-0.126035064458847,-0.173298224806786,-0.981789767742157,-0.188503637909889,-0.0235629547387362,-0.985352337360382,-0.0945938304066658,0.141890734434128,-0.999690115451813,0.023614726960659,-0.00787157565355301,-0.976771771907806,-0.126035064458847,-0.173298224806786,-0.999690115451813,0.023614726960659,-0.00787157565355301,-0.976589918136597,0.0866329744458199,-0.196893110871315,-0.999690115451813,0.023614726960659,-0.00787157565355301,-0.985352337360382,-0.0945938304066658,0.141890734434128,-0.983703315258026,0.0708266347646713,0.165262147784233,-0.976589918136597,0.0866329744458199,-0.196893110871315,-0.999690115451813,0.023614726960659,-0.00787157565355301,-0.987440645694733,0.157990500330925,3.50809382278883e-017,-0.987440645694733,0.157990500330925,3.50809382278883e-017,-0.999690115451813,0.023614726960659,-0.00787157565355301,-0.983703315258026,0.0708266347646713,0.165262147784233,-0.981789767742157,0.188503637909889,-0.0235629547387362,-0.999845147132874,-0.0157455932348967,-0.00787279661744833,-0.977257013320923,0.157622098922729,0.141859874129295,-0.981789767742157,0.188503637909889,-0.0235629547387362,-0.981820046901703,0.0785456076264381,-0.172800332307816,-0.999845147132874,-0.0157455932348967,-0.00787279661744833,-0.977257013320923,0.157622098922729,0.141859874129295,-0.999845147132874,-0.0157455932348967,-0.00787279661744833,
- -0.979174554347992,-0.0473794117569923,0.197414219379425,-0.999845147132874,-0.0157455932348967,-0.00787279661744833,-0.981820046901703,0.0785456076264381,-0.172800332307816,-0.983033776283264,-0.0943712368607521,-0.157285392284393,-0.979174554347992,-0.0473794117569923,0.197414219379425,-0.999845147132874,-0.0157455932348967,-0.00787279661744833,-0.98869913816452,-0.149089559912682,0.015693636611104,-0.98869913816452,-0.149089559912682,0.015693636611104,-0.999845147132874,-0.0157455932348967,-0.00787279661744833,-0.983033776283264,-0.0943712368607521,-0.157285392284393,-0.979510545730591,-0.0868920683860779,-0.181683406233788,-0.999938011169434,0.0078735277056694,0.0078735277056694,-0.975682556629181,0.078684076666832,-0.204578593373299,-0.979510545730591,-0.0868920683860779,-0.181683406233788,-0.983368337154388,-0.18093977868557,-0.0157338920980692,-0.999938011169434,0.0078735277056694,0.0078735277056694,-0.975682556629181,0.078684076666832,-0.204578593373299,-0.999938011169434,0.0078735277056694,0.0078735277056694,-0.978229522705078,0.205112636089325,-0.0315557904541492,-0.999938011169434,0.0078735277056694,0.0078735277056694,-0.983368337154388,-0.18093977868557,-0.0157338920980692,-0.983764171600342,-0.110181584954262,0.141662031412125,-0.978229522705078,0.205112636089325,-0.0315557904541492,-0.999938011169434,0.0078735277056694,0.0078735277056694,-0.989918947219849,0.0785649940371513,0.117847494781017,-0.989918947219849,0.0785649940371513,0.117847494781017,-0.999938011169434,0.0078735277056694,0.0078735277056694,-0.983764171600342,-0.110181584954262,0.141662031412125,-0.981184661388397,-0.172688513994217,0.0863442569971085,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.976589918136597,-0.196893110871315,-0.0866329744458199,-0.981184661388397,-0.172688513994217,0.0863442569971085,-0.984832227230072,-0.00787865743041039,0.173330470919609,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.976589918136597,-0.196893110871315,-0.0866329744458199,-0.999752104282379,0.0157441273331642,-0.0157441273331642,
- -0.978442788124084,-0.0236720032989979,-0.205157354474068,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.984832227230072,-0.00787865743041039,0.173330470919609,-0.983459711074829,0.149485886096954,0.102279812097549,-0.978442788124084,-0.0236720032989979,-0.205157354474068,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.988150000572205,0.126483201980591,-0.0869572013616562,-0.988150000572205,0.126483201980591,-0.0869572013616562,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.983459711074829,0.149485886096954,0.102279812097549,-0.979908049106598,-0.110634781420231,-0.165952160954475,-0.999938011169434,0.0078735277056694,0.0078735277056694,-0.977226555347443,0.0551660135388374,-0.204902336001396,-0.979908049106598,-0.110634781420231,-0.165952160954475,-0.98349004983902,-0.180962175130844,-4.01816746833026e-017,-0.999938011169434,0.0078735277056694,0.0078735277056694,-0.977226555347443,0.0551660135388374,-0.204902336001396,-0.999938011169434,0.0078735277056694,0.0078735277056694,-0.978777945041656,0.197334259748459,-0.055253591388464,-0.999938011169434,0.0078735277056694,0.0078735277056694,-0.98349004983902,-0.180962175130844,-4.01816746833026e-017,-0.984924018383026,-0.0866733118891716,0.149708449840546,-0.978777945041656,0.197334259748459,-0.055253591388464,-0.999938011169434,0.0078735277056694,0.0078735277056694,-0.989278018474579,0.0863655433058739,0.117771193385124,-0.989278018474579,0.0863655433058739,0.117771193385124,-0.999938011169434,0.0078735277056694,0.0078735277056694,-0.984924018383026,-0.0866733118891716,0.149708449840546,-0.982001841068268,-0.180688336491585,0.054992102086544,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.976347684860229,-0.181096747517586,-0.118106573820114,-0.982001841068268,-0.180688336491585,0.054992102086544,-0.984099447727203,-0.0393639765679836,0.173201501369476,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.976347684860229,-0.181096747517586,-0.118106573820114,-0.999752104282379,0.0157441273331642,-0.0157441273331642,
- -0.97710520029068,4.72414957753202e-017,-0.212756782770157,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.984099447727203,-0.0393639765679836,0.173201501369476,-0.984954476356506,0.126074180006981,0.118194542825222,-0.97710520029068,4.72414957753202e-017,-0.212756782770157,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.987286627292633,0.142169266939163,-0.0710846334695816,-0.987286627292633,0.142169266939163,-0.0710846334695816,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.984954476356506,0.126074180006981,0.118194542825222,-0.982001841068268,-0.180688336491585,0.054992102086544,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.976347684860229,-0.181096747517586,-0.118106573820114,-0.982001841068268,-0.180688336491585,0.054992102086544,-0.984099447727203,-0.0393639765679836,0.173201501369476,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.976347684860229,-0.181096747517586,-0.118106573820114,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.97710520029068,4.72414957753202e-017,-0.212756782770157,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.984099447727203,-0.0393639765679836,0.173201501369476,-0.984954476356506,0.126074180006981,0.118194542825222,-0.97710520029068,4.72414957753202e-017,-0.212756782770157,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.987286627292633,0.142169266939163,-0.0710846334695816,-0.987286627292633,0.142169266939163,-0.0710846334695816,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.984954476356506,0.126074180006981,0.118194542825222,-0.981305718421936,0.188410699367523,0.0392522290349007,-0.999845147132874,-0.0157455932348967,-0.00787279661744833,-0.978808522224426,0.0947234109044075,0.181553184986115,-0.981305718421936,0.188410699367523,0.0392522290349007,-0.981941223144531,0.125688478350639,-0.141399532556534,-0.999845147132874,-0.0157455932348967,-0.00787279661744833,-0.978808522224426,0.0947234109044075,0.181553184986115,-0.999845147132874,-0.0157455932348967,-0.00787279661744833,
- -0.980218827724457,-0.109784506261349,0.164676755666733,-0.999845147132874,-0.0157455932348967,-0.00787279661744833,-0.981941223144531,0.125688478350639,-0.141399532556534,-0.981305718421936,-0.0392522290349007,-0.188410699367523,-0.980218827724457,-0.109784506261349,0.164676755666733,-0.999845147132874,-0.0157455932348967,-0.00787279661744833,-0.988334119319916,-0.149034515023232,-0.0313756838440895,-0.988334119319916,-0.149034515023232,-0.0313756838440895,-0.999845147132874,-0.0157455932348967,-0.00787279661744833,-0.981305718421936,-0.0392522290349007,-0.188410699367523,-0.980973124504089,-0.188346847891808,0.0470867119729519,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.976347684860229,-0.181096747517586,-0.118106573820114,-0.980973124504089,-0.188346847891808,0.0470867119729519,-0.984099447727203,-0.0393639765679836,0.173201501369476,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.976347684860229,-0.181096747517586,-0.118106573820114,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.977074861526489,0.00787963625043631,-0.212750166654587,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.984099447727203,-0.0393639765679836,0.173201501369476,-0.984007954597473,0.125953018665314,0.125953018665314,-0.977074861526489,0.00787963625043631,-0.212750166654587,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.987810552120209,0.142244711518288,-0.0632198750972748,-0.987810552120209,0.142244711518288,-0.0632198750972748,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.984007954597473,0.125953018665314,0.125953018665314,-0.981033563613892,0.180510178208351,-0.0706344097852707,-0.999845147132874,-0.0157455932348967,-0.00787279661744833,-0.977378308773041,0.189170002937317,0.0945850014686584,-0.981033563613892,0.180510178208351,-0.0706344097852707,-0.98157787322998,0.0314104929566383,-0.188462942838669,-0.999845147132874,-0.0157455932348967,-0.00787279661744833,-0.977378308773041,0.189170002937317,0.0945850014686584,-0.999845147132874,-0.0157455932348967,-0.00787279661744833,
- -0.980244815349579,0.00790520012378693,0.197630003094673,-0.999845147132874,-0.0157455932348967,-0.00787279661744833,-0.98157787322998,0.0314104929566383,-0.188462942838669,-0.982001841068268,-0.133552238345146,-0.133552238345146,-0.980244815349579,0.00790520012378693,0.197630003094673,-0.999845147132874,-0.0157455932348967,-0.00787279661744833,-0.988455832004547,-0.141207963228226,0.0549142137169838,-0.988455832004547,-0.141207963228226,0.0549142137169838,-0.999845147132874,-0.0157455932348967,-0.00787279661744833,-0.982001841068268,-0.133552238345146,-0.133552238345146,-0.978320896625519,-0.134124636650085,-0.157793685793877,-0.999938011169434,0.0078735277056694,0.0078735277056694,-0.975169479846954,0.023592809215188,-0.220199555158615,-0.978320896625519,-0.134124636650085,-0.157793685793877,-0.983003377914429,-0.180872619152069,0.0314561054110527,-0.999938011169434,0.0078735277056694,0.0078735277056694,-0.975169479846954,0.023592809215188,-0.220199555158615,-0.999938011169434,0.0078735277056694,0.0078735277056694,-0.978716969490051,0.189429089426994,-0.0789287835359573,-0.999938011169434,0.0078735277056694,0.0078735277056694,-0.983003377914429,-0.180872619152069,0.0314561054110527,-0.983703315258026,-0.0708266347646713,0.165262147784233,-0.978716969490051,0.189429089426994,-0.0789287835359573,-0.999938011169434,0.0078735277056694,0.0078735277056694,-0.989461004734039,0.109940111637115,0.0942343771457672,-0.989461004734039,0.109940111637115,0.0942343771457672,-0.999938011169434,0.0078735277056694,0.0078735277056694,-0.983703315258026,-0.0708266347646713,0.165262147784233,-0.980822145938873,-0.149084970355034,0.125545233488083,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.976620197296143,-0.212651163339615,-0.0315038748085499,-0.980822145938873,-0.149084970355034,0.125545233488083,-0.984099447727203,0.0393639765679836,0.173201501369476,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.976620197296143,-0.212651163339615,-0.0315038748085499,-0.999752104282379,0.0157441273331642,-0.0157441273331642,
- -0.977226555347443,-0.0788085907697678,-0.197021469473839,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.984099447727203,0.0393639765679836,0.173201501369476,-0.984221458435059,0.165349200367928,0.0629901736974716,-0.977226555347443,-0.0788085907697678,-0.197021469473839,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.987625539302826,0.102713048458099,-0.118515066802502,-0.987625539302826,0.102713048458099,-0.118515066802502,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.984221458435059,0.165349200367928,0.0629901736974716,-0.979510545730591,-0.150086298584938,-0.134287729859352,-0.999938011169434,0.0078735277056694,0.0078735277056694,-0.97710520029068,4.72414957753202e-017,-0.212756782770157,-0.979510545730591,-0.150086298584938,-0.134287729859352,-0.983764111995697,-0.173142492771149,0.0472206771373749,-0.999938011169434,0.0078735277056694,0.0078735277056694,-0.97710520029068,4.72414957753202e-017,-0.212756782770157,-0.999938011169434,0.0078735277056694,0.0078735277056694,-0.979418873786926,0.173767864704132,-0.102681003510952,-0.999938011169434,0.0078735277056694,0.0078735277056694,-0.983764111995697,-0.173142492771149,0.0472206771373749,-0.98507684469223,-0.0472836866974831,0.165492907166481,-0.979418873786926,0.173767864704132,-0.102681003510952,-0.999938011169434,0.0078735277056694,0.0078735277056694,-0.989278018474579,0.117771193385124,0.0863655433058739,-0.989278018474579,0.117771193385124,0.0863655433058739,-0.999938011169434,0.0078735277056694,0.0078735277056694,-0.98507684469223,-0.0472836866974831,0.165492907166481,-0.982274770736694,-0.157163962721825,0.102156579494476,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.976771771907806,-0.204806983470917,-0.0630175322294235,-0.982274770736694,-0.157163962721825,0.102156579494476,-0.984832227230072,0.00787865743041039,0.173330470919609,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.976771771907806,-0.204806983470917,-0.0630175322294235,-0.999752104282379,0.0157441273331642,-0.0157441273331642,
- -0.977226555347443,-0.0551660135388374,-0.204902336001396,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.984832227230072,0.00787865743041039,0.173330470919609,-0.984374046325684,0.157499849796295,0.0787499248981476,-0.977226555347443,-0.0551660135388374,-0.204902336001396,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.987625539302826,0.118515066802502,-0.102713048458099,-0.987625539302826,0.118515066802502,-0.102713048458099,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.984374046325684,0.157499849796295,0.0787499248981476,-0.982274770736694,-0.157163962721825,0.102156579494476,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.976771771907806,-0.204806983470917,-0.0630175322294235,-0.982274770736694,-0.157163962721825,0.102156579494476,-0.984832227230072,0.00787865743041039,0.173330470919609,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.976771771907806,-0.204806983470917,-0.0630175322294235,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.977226555347443,-0.0551660135388374,-0.204902336001396,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.984832227230072,0.00787865743041039,0.173330470919609,-0.984374046325684,0.157499849796295,0.0787499248981476,-0.977226555347443,-0.0551660135388374,-0.204902336001396,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.987625539302826,0.118515066802502,-0.102713048458099,-0.987625539302826,0.118515066802502,-0.102713048458099,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.984374046325684,0.157499849796295,0.0787499248981476,-0.980550527572632,0.196110099554062,-0.0078444043174386,-0.999845147132874,-0.0157455932348967,-0.00787279661744833,-0.978442788124084,0.142032012343407,0.14992268383503,-0.980550527572632,0.196110099554062,-0.0078444043174386,-0.981184661388397,0.0863442569971085,-0.172688513994217,-0.999845147132874,-0.0157455932348967,-0.00787279661744833,-0.978442788124084,0.142032012343407,0.14992268383503,-0.999845147132874,-0.0157455932348967,-0.00787279661744833,
- -0.980128526687622,-0.062728226184845,0.188184678554535,-0.999845147132874,-0.0157455932348967,-0.00787279661744833,-0.981184661388397,0.0863442569971085,-0.172688513994217,-0.98248702287674,-0.0864588618278503,-0.165057823061943,-0.980128526687622,-0.062728226184845,0.188184678554535,-0.999845147132874,-0.0157455932348967,-0.00787279661744833,-0.988790571689606,-0.149103343486786,0.00784754473716021,-0.988790571689606,-0.149103343486786,0.00784754473716021,-0.999845147132874,-0.0157455932348967,-0.00787279661744833,-0.98248702287674,-0.0864588618278503,-0.165057823061943,-0.981789767742157,-0.164940670132637,0.0942518189549446,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.976771771907806,-0.204806983470917,-0.0630175322294235,-0.981789767742157,-0.164940670132637,0.0942518189549446,-0.984832227230072,0.00787865743041039,0.173330470919609,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.976771771907806,-0.204806983470917,-0.0630175322294235,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.97762131690979,-0.0473042577505112,-0.204985097050667,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.984832227230072,0.00787865743041039,0.173330470919609,-0.983733773231506,0.157397404313087,0.08656857162714,-0.97762131690979,-0.0473042577505112,-0.204985097050667,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.988397121429443,0.11860765516758,-0.0948861241340637,-0.988397121429443,0.11860765516758,-0.0948861241340637,-0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.983733773231506,0.157397404313087,0.08656857162714,-0.980942964553833,0.141255781054497,-0.133408233523369,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.976832389831543,0.212697386741638,0.0236330423504114,-0.980942964553833,0.141255781054497,-0.133408233523369,-0.982729911804199,-0.0393091961741447,-0.180822312831879,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.976832389831543,0.212697386741638,0.0236330423504114,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,
- -0.978716969490051,0.0789287835359573,0.189429089426994,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.982729911804199,-0.0393091961741447,-0.180822312831879,-0.983124971389771,-0.165164992213249,-0.0786499977111816,-0.978716969490051,0.0789287835359573,0.189429089426994,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.987817645072937,-0.117597341537476,0.101917684078217,-0.987817645072937,-0.117597341537476,0.101917684078217,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.983124971389771,-0.165164992213249,-0.0786499977111816,-0.978808522224426,-0.181553184986115,-0.0947234109044075,-0.999938011169434,0.0078735277056694,0.0078735277056694,-0.975622236728668,-0.0550754480063915,-0.212433889508247,-0.978808522224426,-0.181553184986115,-0.0947234109044075,-0.983033776283264,-0.157285392284393,0.0943712368607521,-0.999938011169434,0.0078735277056694,0.0078735277056694,-0.975622236728668,-0.0550754480063915,-0.212433889508247,-0.999938011169434,0.0078735277056694,0.0078735277056694,-0.978442788124084,0.14992268383503,-0.142032012343407,-0.999938011169434,0.0078735277056694,0.0078735277056694,-0.983033776283264,-0.157285392284393,0.0943712368607521,-0.98345959186554,-0.00786767713725567,0.180956572294235,-0.978442788124084,0.14992268383503,-0.142032012343407,-0.999938011169434,0.0078735277056694,0.0078735277056694,-0.989522039890289,0.133506938815117,0.0549734458327293,-0.989522039890289,0.133506938815117,0.0549734458327293,-0.999938011169434,0.0078735277056694,0.0078735277056694,-0.98345959186554,-0.00786767713725567,0.180956572294235,-0.980490148067474,-0.0941270589828491,0.172566279768944,-0.999690115451813,0.00787157565355301,-0.023614726960659,-0.976015031337738,-0.212519407272339,0.0472265370190144,-0.980490148067474,-0.0941270589828491,0.172566279768944,-0.985352337360382,0.0945938304066658,0.141890734434128,-0.999690115451813,0.00787157565355301,-0.023614726960659,-0.976015031337738,-0.212519407272339,0.0472265370190144,-0.999690115451813,0.00787157565355301,-0.023614726960659,
- -0.977257013320923,-0.141859874129295,-0.157622098922729,-0.999690115451813,0.00787157565355301,-0.023614726960659,-0.985352337360382,0.0945938304066658,0.141890734434128,-0.98349004983902,0.180962175130844,4.01816746833026e-017,-0.977257013320923,-0.141859874129295,-0.157622098922729,-0.999690115451813,0.00787157565355301,-0.023614726960659,-0.988273561000824,0.0553433187305927,-0.142311379313469,-0.988273561000824,0.0553433187305927,-0.142311379313469,-0.999690115451813,0.00787157565355301,-0.023614726960659,-0.98349004983902,0.180962175130844,4.01816746833026e-017,-0.98015296459198,-0.181802555918694,-0.0790445879101753,-0.999938011169434,0.0078735277056694,0.0078735277056694,-0.977803647518158,-0.0709696188569069,-0.197137832641602,-0.98015296459198,-0.181802555918694,-0.0790445879101753,-0.982638835906982,-0.149361103773117,0.110055543482304,-0.999938011169434,0.0078735277056694,0.0078735277056694,-0.977803647518158,-0.0709696188569069,-0.197137832641602,-0.999938011169434,0.0078735277056694,0.0078735277056694,-0.979327261447906,0.126364797353745,-0.157956004142761,-0.999938011169434,0.0078735277056694,0.0078735277056694,-0.982638835906982,-0.149361103773117,0.110055543482304,-0.984740495681763,0.0157558489590883,0.173314332962036,-0.979327261447906,0.126364797353745,-0.157956004142761,-0.999938011169434,0.0078735277056694,0.0078735277056694,-0.989186525344849,0.141312345862389,0.0392534323036671,-0.989186525344849,0.141312345862389,0.0392534323036671,-0.999938011169434,0.0078735277056694,0.0078735277056694,-0.984740495681763,0.0157558489590883,0.173314332962036,-0.982638835906982,-0.110055543482304,0.149361103773117,-0.999690115451813,0.00787157565355301,-0.023614726960659,-0.975320279598236,-0.220233619213104,0.0157309714704752,-0.982638835906982,-0.110055543482304,0.149361103773117,-0.984954476356506,0.0709167197346687,0.157592713832855,-0.999690115451813,0.00787157565355301,-0.023614726960659,-0.975320279598236,-0.220233619213104,0.0157309714704752,-0.999690115451813,0.00787157565355301,-0.023614726960659,
- -0.976771771907806,-0.126035064458847,-0.173298224806786,-0.999690115451813,0.00787157565355301,-0.023614726960659,-0.984954476356506,0.0709167197346687,0.157592713832855,-0.984587788581848,0.173287451267242,0.0236301068216562,-0.976771771907806,-0.126035064458847,-0.173298224806786,-0.999690115451813,0.00787157565355301,-0.023614726960659,-0.986702144145966,0.0789361670613289,-0.14208510518074,-0.986702144145966,0.0789361670613289,-0.14208510518074,-0.999690115451813,0.00787157565355301,-0.023614726960659,-0.984587788581848,0.173287451267242,0.0236301068216562,-0.982638835906982,-0.110055543482304,0.149361103773117,-0.999690115451813,0.00787157565355301,-0.023614726960659,-0.975320279598236,-0.220233619213104,0.0157309714704752,-0.982638835906982,-0.110055543482304,0.149361103773117,-0.984954476356506,0.0709167197346687,0.157592713832855,-0.999690115451813,0.00787157565355301,-0.023614726960659,-0.975320279598236,-0.220233619213104,0.0157309714704752,-0.999690115451813,0.00787157565355301,-0.023614726960659,-0.976771771907806,-0.126035064458847,-0.173298224806786,-0.999690115451813,0.00787157565355301,-0.023614726960659,-0.984954476356506,0.0709167197346687,0.157592713832855,-0.984587788581848,0.173287451267242,0.0236301068216562,-0.976771771907806,-0.126035064458847,-0.173298224806786,-0.999690115451813,0.00787157565355301,-0.023614726960659,-0.986702144145966,0.0789361670613289,-0.14208510518074,-0.986702144145966,0.0789361670613289,-0.14208510518074,-0.999690115451813,0.00787157565355301,-0.023614726960659,-0.984587788581848,0.173287451267242,0.0236301068216562,-0.980459988117218,0.180404648184776,-0.0784367993474007,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.979510545730591,0.181683406233788,0.0868920683860779,-0.980459988117218,0.180404648184776,-0.0784367993474007,-0.981789767742157,0.0235629547387362,-0.188503637909889,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.979510545730591,0.181683406233788,0.0868920683860779,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,
- -0.980550527572632,0.0078444043174386,0.196110099554062,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.981789767742157,0.0235629547387362,-0.188503637909889,-0.981941223144531,-0.141399532556534,-0.125688478350639,-0.980550527572632,0.0078444043174386,0.196110099554062,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.989064633846283,-0.133445218205452,0.0627977550029755,-0.989064633846283,-0.133445218205452,0.0627977550029755,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.981941223144531,-0.141399532556534,-0.125688478350639,-0.980822145938873,-0.125545233488083,0.149084970355034,-0.999690115451813,0.00787157565355301,-0.023614726960659,-0.975320279598236,-0.220233619213104,0.0157309714704752,-0.980822145938873,-0.125545233488083,0.149084970355034,-0.984954476356506,0.0709167197346687,0.157592713832855,-0.999690115451813,0.00787157565355301,-0.023614726960659,-0.975320279598236,-0.220233619213104,0.0157309714704752,-0.999690115451813,0.00787157565355301,-0.023614726960659,-0.976347684860229,-0.118106573820114,-0.181096747517586,-0.999690115451813,0.00787157565355301,-0.023614726960659,-0.984954476356506,0.0709167197346687,0.157592713832855,-0.983003377914429,0.180872619152069,0.0314561054110527,-0.976347684860229,-0.118106573820114,-0.181096747517586,-0.999690115451813,0.00787157565355301,-0.023614726960659,-0.98777973651886,0.0790223777294159,-0.134338036179543,-0.98777973651886,0.0790223777294159,-0.134338036179543,-0.999690115451813,0.00787157565355301,-0.023614726960659,-0.983003377914429,0.180872619152069,0.0314561054110527,-0.991542160511017,-0.0314775295555592,0.125910118222237,-0.983368337154388,-0.18093977868557,-0.0157338920980692,-0.963171243667603,-0.173686623573303,0.205265983939171,-0.991542160511017,-0.0314775295555592,0.125910118222237,-0.998021900653839,1.39593941383265e-017,-0.0628675222396851,-0.983368337154388,-0.18093977868557,-0.0157338920980692,-0.963171243667603,-0.173686623573303,0.205265983939171,-0.983368337154388,-0.18093977868557,-0.0157338920980692,
- -0.933426260948181,-0.348057270050049,0.0870143175125122,-0.983368337154388,-0.18093977868557,-0.0157338920980692,-0.998021900653839,1.39593941383265e-017,-0.0628675222396851,-0.976347684860229,-0.118106573820114,-0.181096747517586,-0.933426260948181,-0.348057270050049,0.0870143175125122,-0.983368337154388,-0.18093977868557,-0.0157338920980692,-0.951282560825348,-0.290888071060181,-0.102203905582428,-0.951282560825348,-0.290888071060181,-0.102203905582428,-0.983368337154388,-0.18093977868557,-0.0157338920980692,-0.976347684860229,-0.118106573820114,-0.181096747517586,-0.981820046901703,-0.0785456076264381,-0.172800332307816,-0.98345959186554,-0.180956572294235,0.00786767713725567,-0.99799108505249,0.0314327888190746,-0.0550073832273483,-0.981820046901703,-0.0785456076264381,-0.172800332307816,-0.951517939567566,-0.25950488448143,-0.165139466524124,-0.98345959186554,-0.180956572294235,0.00786767713725567,-0.99799108505249,0.0314327888190746,-0.0550073832273483,-0.98345959186554,-0.180956572294235,0.00786767713725567,-0.988334119319916,-0.0313756838440895,0.149034515023232,-0.98345959186554,-0.180956572294235,0.00786767713725567,-0.951517939567566,-0.25950488448143,-0.165139466524124,-0.937822341918945,-0.346757858991623,-0.0157617200165987,-0.988334119319916,-0.0313756838440895,0.149034515023232,-0.98345959186554,-0.180956572294235,0.00786767713725567,-0.962302029132843,-0.236631661653519,0.134091258049011,-0.962302029132843,-0.236631661653519,0.134091258049011,-0.98345959186554,-0.180956572294235,0.00786767713725567,-0.937822341918945,-0.346757858991623,-0.0157617200165987,-0.991910755634308,-0.0157446153461933,-0.125956922769547,-0.98345959186554,-0.180956572294235,0.00786767713725567,-0.998453617095947,0.0393091961741447,0.0393091961741447,-0.991910755634308,-0.0157446153461933,-0.125956922769547,-0.96482652425766,-0.189801946282387,-0.181893512606621,-0.98345959186554,-0.180956572294235,0.00786767713725567,-0.998453617095947,0.0393091961741447,0.0393091961741447,-0.98345959186554,-0.180956572294235,0.00786767713725567,
- -0.976620197296143,-0.102387592196465,0.18902325630188,-0.98345959186554,-0.180956572294235,0.00786767713725567,-0.96482652425766,-0.189801946282387,-0.181893512606621,-0.939428150653839,-0.331562876701355,-0.0868379026651382,-0.976620197296143,-0.102387592196465,0.18902325630188,-0.98345959186554,-0.180956572294235,0.00786767713725567,-0.956290185451508,-0.276612848043442,0.0948386937379837,-0.956290185451508,-0.276612848043442,0.0948386937379837,-0.98345959186554,-0.180956572294235,0.00786767713725567,-0.939428150653839,-0.331562876701355,-0.0868379026651382,-0.936514437198639,-0.34627428650856,0.0550890862941742,-0.987409830093384,-0.15798556804657,-0.00789927877485752,-0.931243658065796,-0.347243428230286,-0.110486537218094,-0.936514437198639,-0.34627428650856,0.0550890862941742,-0.963171243667603,-0.205265983939171,0.173686623573303,-0.987409830093384,-0.15798556804657,-0.00789927877485752,-0.931243658065796,-0.347243428230286,-0.110486537218094,-0.987409830093384,-0.15798556804657,-0.00789927877485752,-0.962871193885803,-0.165740117430687,-0.213094443082809,-0.987409830093384,-0.15798556804657,-0.00789927877485752,-0.963171243667603,-0.205265983939171,0.173686623573303,-0.991880118846893,-0.0472323894500732,0.118080973625183,-0.962871193885803,-0.165740117430687,-0.213094443082809,-0.987409830093384,-0.15798556804657,-0.00789927877485752,-0.997529208660126,-0.0314182415604591,-0.0628364831209183,-0.997529208660126,-0.0314182415604591,-0.0628364831209183,-0.987409830093384,-0.15798556804657,-0.00789927877485752,-0.991880118846893,-0.0472323894500732,0.118080973625183,-0.98157787322998,0.188462942838669,-0.0314104929566383,-0.999721229076386,-0.023615462705493,-5.243686086563e-018,-0.978320896625519,0.157793685793877,0.134124636650085,-0.98157787322998,0.188462942838669,-0.0314104929566383,-0.982912182807922,0.062906377017498,-0.172992557287216,-0.999721229076386,-0.023615462705493,-5.243686086563e-018,-0.978320896625519,0.157793685793877,0.134124636650085,-0.999721229076386,-0.023615462705493,-5.243686086563e-018,
- -0.979174554347992,-0.0473794117569923,0.197414219379425,-0.999721229076386,-0.023615462705493,-5.243686086563e-018,-0.982912182807922,0.062906377017498,-0.172992557287216,-0.982274770736694,-0.102156579494476,-0.157163962721825,-0.979174554347992,-0.0473794117569923,0.197414219379425,-0.999721229076386,-0.023615462705493,-5.243686086563e-018,-0.988366305828094,-0.150231674313545,0.0237207934260368,-0.988366305828094,-0.150231674313545,0.0237207934260368,-0.999721229076386,-0.023615462705493,-5.243686086563e-018,-0.982274770736694,-0.102156579494476,-0.157163962721825,-0.980735242366791,-0.0711823925375938,-0.181910574436188,-0.999876022338867,-3.49633197622281e-018,0.0157460793852806,-0.977378308773041,0.0945850014686584,-0.189170002937317,-0.980735242366791,-0.0711823925375938,-0.181910574436188,-0.982729911804199,-0.180822312831879,-0.0393091961741447,-0.999876022338867,-3.49633197622281e-018,0.0157460793852806,-0.977378308773041,0.0945850014686584,-0.189170002937317,-0.999876022338867,-3.49633197622281e-018,0.0157460793852806,-0.978686571121216,0.205208465456963,-0.00789263378828764,-0.999876022338867,-3.49633197622281e-018,0.0157460793852806,-0.982729911804199,-0.180822312831879,-0.0393091961741447,-0.984007954597473,-0.125953018665314,0.125953018665314,-0.978686571121216,0.205208465456963,-0.00789263378828764,-0.999876022338867,-3.49633197622281e-018,0.0157460793852806,-0.989522039890289,0.0549734458327293,0.133506938815117,-0.989522039890289,0.0549734458327293,0.133506938815117,-0.999876022338867,-3.49633197622281e-018,0.0157460793852806,-0.984007954597473,-0.125953018665314,0.125953018665314,-0.978686571121216,0.00789263378828764,-0.205208465456963,-0.999876022338867,-3.49633197622281e-018,0.0157460793852806,-0.977074861526489,0.165472343564034,-0.133953809738159,-0.978686571121216,0.00789263378828764,-0.205208465456963,-0.982274770736694,-0.157163962721825,-0.102156579494476,-0.999876022338867,-3.49633197622281e-018,0.0157460793852806,-0.977074861526489,0.165472343564034,-0.133953809738159,-0.999876022338867,-3.49633197622281e-018,0.0157460793852806,
- -0.979296684265137,0.189541295170784,0.0710779801011086,-0.999876022338867,-3.49633197622281e-018,0.0157460793852806,-0.982274770736694,-0.157163962721825,-0.102156579494476,-0.982396006584167,-0.172901704907417,0.0707325115799904,-0.979296684265137,0.189541295170784,0.0710779801011086,-0.999876022338867,-3.49633197622281e-018,0.0157460793852806,-0.989949524402618,-3.14018473127668e-017,0.141421347856522,-0.989949524402618,-3.14018473127668e-017,0.141421347856522,-0.999876022338867,-3.49633197622281e-018,0.0157460793852806,-0.982396006584167,-0.172901704907417,0.0707325115799904,-0.982396006584167,-0.0707325115799904,0.172901704907417,-0.999690115451813,0.00787157565355301,-0.023614726960659,-0.977803647518158,-0.197137832641602,0.0709696188569069,-0.982396006584167,-0.0707325115799904,0.172901704907417,-0.984832227230072,0.110301204025745,0.133937180042267,-0.999690115451813,0.00787157565355301,-0.023614726960659,-0.977803647518158,-0.197137832641602,0.0709696188569069,-0.999690115451813,0.00787157565355301,-0.023614726960659,-0.977257013320923,-0.157622098922729,-0.141859874129295,-0.999690115451813,0.00787157565355301,-0.023614726960659,-0.984832227230072,0.110301204025745,0.133937180042267,-0.984587788581848,0.173287451267242,-0.0236301068216562,-0.977257013320923,-0.157622098922729,-0.141859874129295,-0.999690115451813,0.00787157565355301,-0.023614726960659,-0.987872242927551,0.0395148880779743,-0.150156587362289,-0.987872242927551,0.0395148880779743,-0.150156587362289,-0.999690115451813,0.00787157565355301,-0.023614726960659,-0.984587788581848,0.173287451267242,-0.0236301068216562,-0.981547594070435,0.0628190487623215,0.180604755878448,-0.999721229076386,5.243686086563e-018,-0.023615462705493,-0.979418873786926,-0.102681003510952,0.173767864704132,-0.981547594070435,0.0628190487623215,0.180604755878448,-0.983003377914429,0.180872619152069,0.0314561054110527,-0.999721229076386,5.243686086563e-018,-0.023615462705493,-0.979418873786926,-0.102681003510952,0.173767864704132,-0.999721229076386,5.243686086563e-018,-0.023615462705493,
- -0.978595018386841,-0.205189272761345,-0.0157837904989719,-0.999721229076386,5.243686086563e-018,-0.023615462705493,-0.983003377914429,0.180872619152069,0.0314561054110527,-0.983003377914429,0.133688449859619,-0.125824421644211,-0.978595018386841,-0.205189272761345,-0.0157837904989719,-0.999721229076386,5.243686086563e-018,-0.023615462705493,-0.988273561000824,-0.0553433187305927,-0.142311379313469,-0.988273561000824,-0.0553433187305927,-0.142311379313469,-0.999721229076386,5.243686086563e-018,-0.023615462705493,-0.983003377914429,0.133688449859619,-0.125824421644211,-0.980735242366791,0.166092246770859,-0.102819010615349,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.977226555347443,0.204902336001396,0.0551660135388374,-0.980735242366791,0.166092246770859,-0.102819010615349,-0.982032120227814,0.00785625725984573,-0.188550174236298,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.977226555347443,0.204902336001396,0.0551660135388374,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.979174554347992,0.0473794117569923,0.197414219379425,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.982032120227814,0.00785625725984573,-0.188550174236298,-0.984587788581848,-0.141780629754066,-0.102397121489048,-0.979174554347992,0.0473794117569923,0.197414219379425,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.989918947219849,-0.117847494781017,0.0785649940371513,-0.989918947219849,-0.117847494781017,0.0785649940371513,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.984587788581848,-0.141780629754066,-0.102397121489048,-0.979999899864197,0.197580605745316,-0.0237096734344959,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.976014971733093,0.165292844176292,0.141679584980011,-0.979999899864197,0.197580605745316,-0.0237096734344959,-0.981820046901703,0.0785456076264381,-0.172800332307816,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.976014971733093,0.165292844176292,0.141679584980011,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,
- -0.979785799980164,-0.0316059924662113,0.197537466883659,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.981820046901703,0.0785456076264381,-0.172800332307816,-0.983033776283264,-0.0943712368607521,-0.157285392284393,-0.979785799980164,-0.0316059924662113,0.197537466883659,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.989674627780914,-0.141382083296776,0.0235636811703444,-0.989674627780914,-0.141382083296776,0.0235636811703444,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.983033776283264,-0.0943712368607521,-0.157285392284393,-0.982729911804199,-0.180822312831879,-0.0393091961741447,-0.999721229076386,0.023615462705493,5.243686086563e-018,-0.976620197296143,-0.102387592196465,-0.18902325630188,-0.982729911804199,-0.180822312831879,-0.0393091961741447,-0.983947098255157,-0.118073657155037,0.133816793560982,-0.999721229076386,0.023615462705493,5.243686086563e-018,-0.976620197296143,-0.102387592196465,-0.18902325630188,-0.999721229076386,0.023615462705493,5.243686086563e-018,-0.977226555347443,0.110332027077675,-0.181259766221046,-0.999721229076386,0.023615462705493,5.243686086563e-018,-0.983947098255157,-0.118073657155037,0.133816793560982,-0.983764111995697,0.0472206771373749,0.173142492771149,-0.977226555347443,0.110332027077675,-0.181259766221046,-0.999721229076386,0.023615462705493,5.243686086563e-018,-0.987317442893982,0.157970786094666,0.0157970786094666,-0.987317442893982,0.157970786094666,0.0157970786094666,-0.999721229076386,0.023615462705493,5.243686086563e-018,-0.983764111995697,0.0472206771373749,0.173142492771149
- }
- NormalsW: *3009 {
- 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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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: *9027 {
- a: 0.120289087295532,-0.81295371055603,0.569769203662872,0.11752250790596,-0.813764691352844,0.569188475608826,-0.0833820030093193,-0.853354036808014,0.514620542526245,0.123023346066475,-0.99074774980545,-0.0573081523180008,0.107703916728497,-0.992688596248627,-0.0544909872114658,0.175542548298836,-0.982196152210236,-0.0669007524847984,0.108952730894089,-0.663249671459198,0.740424990653992,-0.0138746351003647,-0.689144849777222,0.724490761756897,-0.159478679299355,-0.705553352832794,0.690478920936584,0.124053105711937,-0.990836083889008,-0.0534291975200176,0.0703323855996132,-0.996785879135132,-0.0383589491248131,0.107997305691242,-0.992946326732636,-0.0489312224090099,0.0349875167012215,-0.999274373054504,0.0150536857545376,0.110023222863674,-0.993891894817352,-0.00859341770410538,0.0824042186141014,-0.996599078178406,0.000129465013742447,0.0878699123859406,-0.995974779129028,0.0176976546645164,0.0440030731260777,-0.998477637767792,0.0332615375518799,0.0389645136892796,-0.998625993728638,0.0350424125790596,0.0933358892798424,-0.887089312076569,0.452063113451004,0.119656033813953,-0.87949925661087,0.460611969232559,0.0228838268667459,-0.903732657432556,0.427485287189484,0.0488629527390003,-0.995174646377563,0.0850868374109268,0.0494905337691307,-0.995143532752991,0.0850883200764656,0.11403151601553,-0.989829063415527,0.0850608721375465,0.0418123677372932,-0.980139672756195,0.193850815296173,0.0141483079642057,-0.981768190860748,0.189555063843727,0.166034549474716,-0.963214337825775,0.211307391524315,0.104981690645218,-0.994095087051392,-0.0274570528417826,0.221675574779511,-0.974957644939423,-0.0178174506872892,0.0630191266536713,-0.997536897659302,-0.0308005176484585,0.038350161164999,-0.995888710021973,0.0820666998624802,-0.0978525131940842,-0.994820833206177,0.0275036003440619,0.0725862830877304,-0.992774128913879,0.0955550968647003,-0.056768611073494,-0.996189475059509,-0.0662105083465576,0.0588714256882668,-0.998198509216309,-0.0115802884101868,-0.00924650207161903,-0.998995900154114,-0.0438385494053364,
- 0.0435368195176125,-0.997330546379089,0.0586202777922153,0.0512562245130539,-0.996962010860443,0.0586491450667381,-0.0246196202933788,-0.99800056219101,0.0582142695784569,-0.0107873007655144,-0.999375104904175,-0.0336605422198772,0.0842242017388344,-0.996444284915924,0.002296062419191,-0.0625594928860664,-0.996626436710358,-0.0531247928738594,0.0470563918352127,-0.996002912521362,0.0759214982390404,-0.0162911098450422,-0.997062027454376,0.0748467221856117,0.0501041784882545,-0.995850801467896,0.0759655758738518,-0.0288134329020977,-0.995856642723084,0.0862515345215797,0.0500961355865002,-0.995842099189758,0.0760857537388802,-0.0163561347872019,-0.996273815631866,0.0846814587712288,0.0254741832613945,-0.997715413570404,0.06257064640522,-0.0161639451980591,-0.998286008834839,0.0562489330768585,0.0449986085295677,-0.996837496757507,0.0654990449547768,0.0237708110362291,-0.998400807380676,0.0512921027839184,0.0411210879683495,-0.998098909854889,0.0459096319973469,0.047508642077446,-0.997904717922211,0.0439231805503368,-0.016353590413928,-0.996306896209717,0.084292009472847,0.0223008207976818,-0.996636807918549,0.0788530334830284,-0.0287779085338116,-0.995878338813782,0.0860136598348618,-0.0161665193736553,-0.998265087604523,0.0566176809370518,0.0255501158535481,-0.997681856155396,0.0630737319588661,0.0225835423916578,-0.997782051563263,0.0626180991530418,0.0475168228149414,-0.997903227806091,0.0439480878412724,-0.020931102335453,-0.997637212276459,0.0654362365603447,0.0237917341291904,-0.998393177986145,0.0514305531978607,0.0226716119796038,-0.998088896274567,0.0574858412146568,0.0247469879686832,-0.998024165630341,0.0577539578080177,-0.0232992693781853,-0.998401939868927,0.0514856539666653,-0.0195771884173155,-0.997110784053802,0.0733949691057205,0.0496514812111855,-0.997491776943207,0.0504465512931347,-0.0412292703986168,-0.995901584625244,0.0804992243647575,-0.0415068976581097,-0.995962023735046,0.0796043574810028,-0.143688082695007,-0.98359203338623,0.109089218080044,-0.0196127258241177,-0.997125446796417,0.0731862336397171,
- -0.15622378885746,-0.98747181892395,0.0222168043255806,0.0227250196039677,-0.998263001441956,0.0543557442724705,-0.0242138970643282,-0.998643934726715,0.0460875369608402,-0.144584059715271,-0.984101116657257,0.103152766823769,-0.0428928732872009,-0.996250510215759,0.0751342177391052,-0.184674650430679,-0.976165652275085,0.113999858498573,-0.193148523569107,-0.978308379650116,0.0748757869005203,-0.306964129209518,-0.948154747486115,0.0823144391179085,-0.149223133921623,-0.986194908618927,0.0717781409621239,-0.212474972009659,-0.975810945034027,0.0514534115791321,0.0225709527730942,-0.997736155986786,0.0633487328886986,-0.151656344532967,-0.986909091472626,0.0548702999949455,-0.306831806898117,-0.94718199968338,0.0932765156030655,-0.211967691779137,-0.973481237888336,0.0860466659069061,-0.147907301783562,-0.985695958137512,0.0807890295982361,-0.307049989700317,-0.951369941234589,0.0248113386332989,-0.132004603743553,-0.990132689476013,0.0470322892069817,-0.212610632181168,-0.976433992385864,0.0370596051216125,-0.134361177682877,-0.988457918167114,0.0699872747063637,0.0225128401070833,-0.997518360614777,0.0667121261358261,-0.212220087647438,-0.974640369415283,0.0709842070937157,-0.129947394132614,-0.991139054298401,0.0275142900645733,-0.306901723146439,-0.951693475246429,0.00953138899058104,-0.197252720594406,-0.980131268501282,0.0208339113742113,-0.0280101876705885,-0.996330618858337,0.0808748677372932,0.0223540272563696,-0.996870517730713,0.0758250579237938,0.0398127399384975,-0.996461153030396,0.0740278214216232,-0.136493116617203,-0.986420094966888,0.0913513153791428,0.0398640111088753,-0.996494829654694,0.073546439409256,0.022361071780324,-0.996900856494904,0.0754232183098793,0.111920841038227,-0.991506814956665,-0.0662431344389915,0.00353490328416228,-0.991788506507874,-0.127840772271156,0.0573725774884224,-0.993580877780914,-0.09749685972929,-0.188426867127419,-0.981837332248688,-0.0221545118838549,0.00801184866577387,-0.999496221542358,0.0307131875306368,-0.12637560069561,-0.991968274116516,-0.00532443402335048,
- 0.0435058102011681,-0.998288750648499,0.0390769727528095,-0.12927719950676,-0.991380751132965,0.0212540980428457,0.00675893854349852,-0.999351382255554,0.0353743433952332,0.0536118410527706,-0.996783494949341,-0.0595685541629791,0.0344193316996098,-0.997101068496704,-0.0678598657250404,0.100952543318272,-0.994128108024597,-0.0389617830514908,0.0186966042965651,-0.9997838139534,-0.00909438449889421,-0.177757352590561,-0.981447219848633,-0.0718591138720512,0.0567701384425163,-0.998382389545441,0.00314447097480297,0.0538190305233002,-0.998471796512604,0.0125578716397285,0.0776927545666695,-0.996809601783752,0.0182926002889872,0.0153669565916061,-0.999876439571381,0.00332173146307468,0.287212491035461,-0.922448098659515,0.25806713104248,0.282435208559036,-0.924338400363922,0.256571292877197,0.0875547453761101,-0.977545857429504,0.1916723549366,0.283065676689148,-0.874787390232086,-0.393218547105789,0.264227092266083,-0.881793975830078,-0.390670537948608,0.334855705499649,-0.853408396244049,-0.399456709623337,0.259849280118942,-0.84412544965744,0.46896755695343,0.137027233839035,-0.885502219200134,0.443969964981079,-0.00139707315247506,-0.913262784481049,0.407368540763855,0.28421288728714,-0.875889122486115,-0.389924824237823,0.230444461107254,-0.897006630897522,-0.377192884683609,0.264900177717209,-0.883872985839844,-0.385482013225555,0.193104311823845,-0.925418555736542,-0.326054066419601,0.269486635923386,-0.897979259490967,-0.347865223884583,0.24453467130661,-0.907719552516937,-0.340951651334763,0.250825971364975,-0.91211324930191,-0.324246376752853,0.207692980766296,-0.927752912044525,-0.310061872005463,0.198099479079247,-0.930919349193573,-0.306831806898117,0.260103285312653,-0.958096921443939,0.119986236095428,0.288674831390381,-0.94827789068222,0.132045134902,0.197101160883904,-0.975927948951721,0.0933583527803421,0.209657147526741,-0.942427515983582,-0.260526865720749,0.218205034732819,-0.940530359745026,-0.260363578796387,0.27840867638588,-0.924986124038696,-0.258629739284515,0.214589938521385,-0.964690566062927,-0.152719885110855,
- 0.179642722010612,-0.970862209796906,-0.158603355288506,0.330784916877747,-0.934521794319153,-0.131340801715851,0.260117501020432,-0.893423914909363,-0.366241216659546,0.375088304281235,-0.858208656311035,-0.350409299135208,0.218250215053558,-0.902794361114502,-0.37057963013649,0.200085490942001,-0.943116784095764,-0.265511840581894,0.0707384943962097,-0.947005569934845,-0.313331425189972,0.235489338636398,-0.938832998275757,-0.251271516084671,0.10601232945919,-0.90964549779892,-0.401629745960236,0.215588390827179,-0.909896016120911,-0.354416370391846,0.153988301753998,-0.911350607872009,-0.38174295425415,0.203803151845932,-0.936271905899048,-0.286110520362854,0.218678683042526,-0.933000147342682,-0.285815209150314,0.145045176148415,-0.946998775005341,-0.286627382040024,0.153175979852676,-0.915294885635376,-0.372521758079529,0.244970306754112,-0.908356308937073,-0.338937222957611,0.101227320730686,-0.915346205234528,-0.389736145734787,0.207471251487732,-0.94038850069046,-0.269490748643875,0.152092978358269,-0.950581073760986,-0.270672023296356,0.218385621905327,-0.938010454177856,-0.269154608249664,0.14232125878334,-0.955077528953552,-0.25994548201561,0.21838866174221,-0.937964737415314,-0.269311219453812,0.152502164244652,-0.953138589859009,-0.261285305023193,0.189498588442802,-0.940284967422485,-0.282762289047241,0.151275828480721,-0.945473909378052,-0.288434952497482,0.204787850379944,-0.937795460224152,-0.280360013246536,0.187388509511948,-0.937664330005646,-0.292696356773376,0.200696885585785,-0.933658003807068,-0.296653985977173,0.211656510829926,-0.930202126502991,-0.299875825643539,0.152485474944115,-0.953034281730652,-0.261675119400024,0.187899589538574,-0.945322394371033,-0.266569972038269,0.142349243164063,-0.954999923706055,-0.260215133428574,0.151292741298676,-0.945579648017883,-0.288079410791397,0.189599379897118,-0.940408229827881,-0.282284677028656,0.187405988574028,-0.94074422121048,-0.282629281282425,0.211666226387024,-0.930208086967468,-0.299850732088089,0.145195737481117,-0.949113965034485,-0.279465436935425,
- 0.18741849064827,-0.937702119350433,-0.29255610704422,0.187244519591331,-0.939290821552277,-0.287527740001678,0.188526049256325,-0.93908679485321,-0.287357091903687,0.142102301120758,-0.945431411266327,-0.293200224637985,0.146912276744843,-0.951085686683655,-0.271758705377579,0.214092403650284,-0.931657314300537,-0.293562799692154,0.126498520374298,-0.955943286418915,-0.26489731669426,0.126184374094009,-0.955743312835693,-0.265767186880112,0.0268495865166187,-0.971783518791199,-0.234341412782669,0.146860986948013,-0.951027512550354,-0.27198988199234,0.0100222863256931,-0.94848096370697,-0.31667572259903,0.187141269445419,-0.938371598720551,-0.290580332279205,0.140922576189041,-0.943984091281891,-0.298387050628662,0.0256951078772545,-0.970413148403168,-0.240079507231712,0.124621853232384,-0.95473724603653,-0.270085632801056,-0.0191128849983215,-0.974019646644592,-0.225655719637871,-0.0294369123876095,-0.96412992477417,-0.263793438673019,-0.143252044916153,-0.958410799503326,-0.246835082769394,0.0196293871849775,-0.962657332420349,-0.270010501146317,-0.0503651648759842,-0.957105755805969,-0.285328090190887,0.187433630228043,-0.940994918346405,-0.281775116920471,0.0163634195923805,-0.958097100257874,-0.285975873470306,-0.142674431204796,-0.961172640323639,-0.236201494932175,-0.0482730269432068,-0.966634392738342,-0.251570761203766,0.0213831327855587,-0.964995265007019,-0.261394143104553,-0.145996496081352,-0.942031383514404,-0.3020960688591,0.0312825739383698,-0.955085813999176,-0.294673681259155,-0.0512191615998745,-0.952783465385437,-0.299299955368042,0.0301459934562445,-0.961785793304443,-0.27213853597641,0.187539219856262,-0.941958487033844,-0.278465956449509,-0.0491955950856209,-0.962612867355347,-0.266376584768295,0.0322141647338867,-0.949113726615906,-0.313281655311584,-0.146640598773956,-0.937178611755371,-0.316532582044601,-0.0351661741733551,-0.948208332061768,-0.315696597099304,0.142853930592537,-0.953581571578979,-0.265094101428986,0.187811464071274,-0.944488286972046,-0.269571423530579,0.205050379037857,-0.940443694591522,-0.271145880222321,
- 0.0290789101272821,-0.9675133228302,-0.251142144203186,0.205076605081558,-0.940305292606354,-0.271605432033539,0.187800094485283,-0.94438111782074,-0.269954830408096,0.267776101827621,-0.875810980796814,-0.401560842990875,0.160232305526733,-0.874308168888092,-0.458160281181335,0.211401611566544,-0.876632869243622,-0.43223163485527,-0.028767291456461,-0.93366265296936,-0.35699674487114,0.171486094594002,-0.934036552906036,-0.313318163156509,0.033784557133913,-0.938015043735504,-0.344944149255753,0.206856220960617,-0.929666459560394,-0.304845809936523,0.0325130596756935,-0.947102904319763,-0.319278955459595,0.170479476451874,-0.935760498046875,-0.308689326047897,0.210538387298584,-0.893128216266632,-0.397486448287964,0.190957829356194,-0.893940389156342,-0.405470013618469,0.258855938911438,-0.889370918273926,-0.376846253871918,0.179571077227592,-0.919014275074005,-0.350951611995697,-0.0213290601968765,-0.914647877216339,-0.403688579797745,0.221318081021309,-0.914834976196289,-0.337780147790909,0.219039440155029,-0.918530344963074,-0.329125732183456,0.23942269384861,-0.915270686149597,-0.323969662189484,0.177065879106522,-0.923899352550507,-0.339201480150223,0.117154911160469,-0.420249044895172,0.899814248085022,0.115745313465595,-0.420753002166748,0.899761080741882,-0.0860562175512314,-0.482369095087051,0.87173068523407,0.124181292951107,-0.886645078659058,0.445465624332428,0.106161579489708,-0.886962175369263,0.449475049972534,0.176365464925766,-0.88400274515152,0.432936817407608,0.10727421194315,-0.204561948776245,0.972957789897919,-0.0164539143443108,-0.235113307833672,0.971828699111938,-0.160965010523796,-0.26602378487587,0.950432419776917,0.125174954533577,-0.88483065366745,0.448782712221146,0.0729100108146667,-0.882605969905853,0.464425534009933,0.106457471847534,-0.884335696697235,0.454551666975021,0.032703310251236,-0.857580006122589,0.513310134410858,0.108449131250381,-0.864946901798248,0.490005791187286,0.0849283263087273,-0.863240122795105,0.497598081827164,0.090352900326252,-0.853962659835815,0.512429654598236,
- 0.0385793596506119,-0.847265303134918,0.529767036437988,0.0366113036870956,-0.846960484981537,0.530393779277802,0.0903044641017914,-0.543437778949738,0.834578096866608,0.117858707904816,-0.532127320766449,0.838421046733856,0.0296151731163263,-0.56651645898819,0.82351815700531,0.0461301244795322,-0.819411516189575,0.571346461772919,0.0574374198913574,-0.818888008594513,0.571072161197662,0.112363934516907,-0.814840316772461,0.56869113445282,0.0494723357260227,-0.750814497470856,0.658657789230347,0.0161236226558685,-0.7552290558815,0.655262589454651,0.162603810429573,-0.729329824447632,0.664558470249176,0.108123816549778,-0.874228835105896,0.473321497440338,0.2182337641716,-0.85406106710434,0.472179740667343,0.0656226873397827,-0.87905079126358,0.472190052270889,0.0405171662569046,-0.82087516784668,0.569668650627136,-0.10000941157341,-0.84806752204895,0.520364761352539,0.0749918967485428,-0.811291754245758,0.579812109470367,-0.0583468675613403,-0.896083950996399,0.440033286809921,0.0612297728657722,-0.869589328765869,0.489964693784714,-0.00616359617561102,-0.886427879333496,0.46282571554184,0.045955203473568,-0.834305703639984,0.549383401870728,0.0592377707362175,-0.833673655986786,0.549071192741394,-0.0211044326424599,-0.835242629051209,0.549476504325867,-0.00764055922627449,-0.881785869598389,0.471588104963303,0.0847956463694572,-0.861652970314026,0.500363707542419,-0.0642729178071022,-0.889867961406708,0.451668262481689,0.0443577989935875,-0.824724078178406,0.563793122768402,-0.0153765417635441,-0.826051592826843,0.563384652137756,0.0580569207668304,-0.824003279209137,0.563602685928345,-0.0251727923750877,-0.819659948348999,0.572297155857086,0.0581300817430019,-0.824605524539948,0.56271368265152,-0.015459124930203,-0.82053530216217,0.571386754512787,0.026367474347353,-0.832648694515228,0.553173542022705,-0.015215402469039,-0.836332023143768,0.54801207780838,0.0422788895666599,-0.830848157405853,0.554891049861908,0.0245474688708782,-0.839110672473907,0.54340660572052,0.038706224411726,-0.841103613376617,0.539487361907959,
- 0.0419992581009865,-0.8415407538414,0.538558483123779,-0.0154556799679995,-0.8207688331604,0.571051299571991,0.0259498842060566,-0.823908805847168,0.566128015518188,-0.0251298658549786,-0.81982809305191,0.572058141231537,-0.0152187086641788,-0.836127281188965,0.548324286937714,0.0264464356005192,-0.832365334033966,0.553596019744873,0.0262170135974884,-0.832390129566193,0.553569674491882,0.0420150458812714,-0.841514110565186,0.538598954677582,-0.021945895627141,-0.831070423126221,0.555734276771545,0.0245682150125504,-0.839037716388702,0.543518304824829,0.0263086184859276,-0.835298597812653,0.549166798591614,0.0256071053445339,-0.835364282131195,0.549100160598755,-0.024376854300499,-0.838960409164429,0.543646156787872,-0.0205955673009157,-0.826617479324341,0.562387347221375,0.0441671162843704,-0.837854444980621,0.544104099273682,-0.0449248924851418,-0.821396470069885,0.568585574626923,-0.0452424958348274,-0.821963787078857,0.567739903926849,-0.143540039658546,-0.797315299510956,0.586246371269226,-0.0206372532993555,-0.826755702495575,0.562182664871216,-0.15629780292511,-0.84406566619873,0.512956261634827,0.0263596661388874,-0.83691942691803,0.546690940856934,-0.025292132049799,-0.841888904571533,0.539058029651642,-0.144453078508377,-0.800728142261505,0.581349909305573,-0.0466570071876049,-0.824480414390564,0.563964009284973,-0.187420919537544,-0.787496984004974,0.587130188941956,-0.195838361978531,-0.809237539768219,0.553879082202911,-0.307330161333084,-0.779857099056244,0.545317351818085,-0.14916755259037,-0.818194210529327,0.555254340171814,-0.212110310792923,-0.819398522377014,0.532536685466766,0.026211554184556,-0.832216858863831,0.55383038520813,-0.151640638709068,-0.827245712280273,0.540989577770233,-0.307171016931534,-0.773524343967438,0.55435186624527,-0.211771011352539,-0.800070941448212,0.561283826828003,-0.147824734449387,-0.813246786594391,0.562829911708832,-0.307552725076675,-0.811405956745148,0.497022986412048,-0.132415726780891,-0.833951711654663,0.535715222358704,-0.212176501750946,-0.82714706659317,0.520393133163452,
- -0.134745061397552,-0.820994079113007,0.554808676242828,0.0261575784534216,-0.830503106117249,0.556399524211884,-0.211950451135635,-0.808630228042603,0.548811614513397,-0.130387976765633,-0.844571352005005,0.519324839115143,-0.307440251111984,-0.819307684898376,0.483958035707474,-0.200540512800217,-0.837999701499939,0.507484138011932,-0.0243907459080219,-0.822710812091827,0.567936539649963,0.0260016471147537,-0.82555228471756,0.563726305961609,0.0363745018839836,-0.825874626636505,0.562679290771484,-0.13684855401516,-0.808533191680908,0.572316825389862,0.0364202633500099,-0.826127111911774,0.562305688858032,0.0260087866336107,-0.825778961181641,0.563393831253052,0.112687014043331,-0.891498208045959,0.438785403966904,0.00637875404208899,-0.922186672687531,0.386692434549332,0.0534119755029678,-0.910318076610565,0.41044881939888,-0.191511660814285,-0.861260235309601,0.470695495605469,0.00882423669099808,-0.850105881690979,0.526537895202637,-0.126854762434959,-0.861741423606873,0.491232752799988,0.0399664863944054,-0.845293164253235,0.532805919647217,-0.129730865359306,-0.847889065742493,0.51405668258667,0.00761859770864248,-0.847697675228119,0.530424833297729,0.0497563779354095,-0.893913865089417,0.445468842983246,0.0347419083118439,-0.897344648838043,0.439961016178131,0.101642891764641,-0.880185425281525,0.463618844747543,0.0193250179290771,-0.870291411876678,0.492158025503159,-0.180690780282021,-0.885841846466064,0.427358329296112,0.0579147264361382,-0.862826406955719,0.502171635627747,0.0550166070461273,-0.858232617378235,0.510303676128387,0.078232616186142,-0.854025959968567,0.514314532279968,0.0160651877522469,-0.864176750183105,0.502931952476501,0.119843780994415,-0.95904016494751,-0.25667005777359,0.113354206085205,-0.95920330286026,-0.258998066186905,-0.0837731882929802,-0.942676544189453,-0.323021620512009,0.122795775532722,-0.592984676361084,-0.795795440673828,0.10576044023037,-0.596759796142578,-0.795419692993164,0.179921075701714,-0.578934013843536,-0.795275986194611,0.104402326047421,-0.993978142738342,-0.0332825519144535,
- -0.013001499697566,-0.997990250587463,-0.0620199777185917,-0.159322068095207,-0.982486546039581,-0.0966261178255081,0.123852156102657,-0.59602302312851,-0.793358206748962,0.0664507001638412,-0.612364590167999,-0.787777900695801,0.106038719415665,-0.601337492465973,-0.791927337646484,0.0314574018120766,-0.654747009277344,-0.755193293094635,0.107894062995911,-0.632927775382996,-0.76665598154068,0.0784808397293091,-0.641831576824188,-0.762819170951843,0.0839558020234108,-0.65499609708786,-0.750953733921051,0.0410028696060181,-0.668131470680237,-0.742912650108337,0.0353759825229645,-0.669747352600098,-0.741745948791504,0.0948512852191925,-0.916640162467957,-0.388296574354172,0.115786746144295,-0.917995095252991,-0.379313319921494,0.0218905806541443,-0.908242344856262,-0.417871654033661,0.0448312014341354,-0.705004572868347,-0.707784414291382,0.0501863844692707,-0.70484983921051,-0.707579076290131,0.11148826032877,-0.70162558555603,-0.70376980304718,0.0419764146208763,-0.778540074825287,-0.626189529895782,0.0106042539700866,-0.77595317363739,-0.6307013630867,0.168069958686829,-0.780957698822021,-0.601546049118042,0.10548173636198,-0.617934346199036,-0.77912175655365,0.22399115562439,-0.612833321094513,-0.757801651954651,0.0607916787266731,-0.617538511753082,-0.784187853336334,0.0356037467718124,-0.702270090579987,-0.711019814014435,-0.0955070853233337,-0.661349952220917,-0.74397224187851,0.072775699198246,-0.711354613304138,-0.699055433273315,-0.0538525283336639,-0.590808928012848,-0.805012285709381,0.0567069500684738,-0.63202315568924,-0.772871971130371,-0.00808806717395782,-0.608980238437653,-0.793144226074219,0.0406819954514503,-0.686053991317749,-0.726412355899811,0.052080724388361,-0.685744822025299,-0.725976407527924,-0.0236501134932041,-0.6861252784729,-0.727098941802979,-0.00964178144931793,-0.616951704025269,-0.786942005157471,0.0838387310504913,-0.642172932624817,-0.761961340904236,-0.0596389770507813,-0.600918650627136,-0.797082245349884,0.0430529117584229,-0.698476076126099,-0.714337229728699,-0.0166311971843243,-0.698251187801361,-0.715659737586975,
- 0.0508432798087597,-0.698321521282196,-0.713976263999939,-0.0278957188129425,-0.706116616725922,-0.707545876502991,0.0508464947342873,-0.698289334774017,-0.714007556438446,-0.0166872907429934,-0.705273389816284,-0.708739042282104,0.0244853869080544,-0.689169943332672,-0.724185943603516,-0.0165203362703323,-0.684742450714111,-0.728597939014435,0.0409282445907593,-0.690613269805908,-0.722065269947052,0.0228136498481035,-0.681263506412506,-0.73168271780014,0.0374630242586136,-0.677644371986389,-0.734434962272644,0.0444811545312405,-0.675853192806244,-0.735692799091339,-0.0166851561516523,-0.705003678798676,-0.709007441997528,0.022357527166605,-0.701013386249542,-0.712797582149506,-0.0278587006032467,-0.705944299697876,-0.707719326019287,-0.0165225770324469,-0.685011029243469,-0.728345274925232,0.0245623216032982,-0.689532160758972,-0.72383850812912,0.0225323513150215,-0.689336597919464,-0.724090695381165,0.0444935783743858,-0.675880670547485,-0.735666871070862,-0.0260410830378532,-0.692448019981384,-0.72099769115448,0.0228355024009943,-0.68136727809906,-0.731585443019867,0.0225866287946701,-0.685590267181396,-0.7276371717453,0.0237461104989052,-0.68568217754364,-0.727513670921326,-0.0287866182625294,-0.680578947067261,-0.732109069824219,-0.024668674916029,-0.69829922914505,-0.715380847454071,0.0466631092131138,-0.680660545825958,-0.731111407279968,-0.0427516102790833,-0.702148854732513,-0.710745573043823,-0.0430447198450565,-0.701464653015137,-0.711403250694275,-0.143306732177734,-0.71578049659729,-0.683462917804718,-0.0247334465384483,-0.698024213314056,-0.715646862983704,-0.155612796545029,-0.651914894580841,-0.742153465747833,0.0226192120462656,-0.683312177658081,-0.729775965213776,-0.0297374948859215,-0.676417112350464,-0.73591822385788,-0.14419250190258,-0.711543798446655,-0.687687397003174,-0.0444415062665939,-0.698193073272705,-0.714528799057007,-0.187073975801468,-0.714942276477814,-0.673691987991333,-0.195551574230194,-0.686016380786896,-0.700814604759216,-0.305998772382736,-0.672678649425507,-0.673697412014008,
- -0.148746892809868,-0.688922464847565,-0.709408342838287,-0.212025791406631,-0.666762292385101,-0.714474081993103,0.0225243270397186,-0.689885318279266,-0.723568141460419,-0.151128038764,-0.676504790782928,-0.720764577388763,-0.3059241771698,-0.680455207824707,-0.665876269340515,-0.211769133806229,-0.691696643829346,-0.690441727638245,-0.147448033094406,-0.695521056652069,-0.703213751316071,-0.305785804986954,-0.630896925926209,-0.713066697120667,-0.136150345206261,-0.671715974807739,-0.728190064430237,-0.212057739496231,-0.656131207942963,-0.724239945411682,-0.138467833399773,-0.688640058040619,-0.711759448051453,0.0224891789257526,-0.692274510860443,-0.721283733844757,-0.211912781000137,-0.680882096290588,-0.701065421104431,-0.134183466434479,-0.657488286495209,-0.741420209407806,-0.305559128522873,-0.619415640830994,-0.723158359527588,-0.202381953597069,-0.644906759262085,-0.73697817325592,-0.0270830988883972,-0.702325820922852,-0.711340248584747,0.022390577942133,-0.698849856853485,-0.714917957782745,0.0349235236644745,-0.69769412279129,-0.715544044971466,-0.140539303421974,-0.703928709030151,-0.696227788925171,0.0349703840911388,-0.697358906269073,-0.715868473052979,0.0223950184881687,-0.698557734489441,-0.71520322561264,0.111913859844208,-0.586661398410797,-0.802062153816223,0.00485356105491519,-0.540286779403687,-0.841466963291168,0.0518948659300804,-0.561671018600464,-0.825731575489044,-0.193307146430016,-0.612515568733215,-0.766457378864288,0.00941840559244156,-0.666293203830719,-0.745630383491516,-0.130665346980095,-0.632320940494537,-0.763607740402222,0.0385075099766254,-0.67144638299942,-0.740052044391632,-0.133542329072952,-0.65287584066391,-0.745600163936615,0.0082089751958847,-0.66963267326355,-0.742647171020508,0.0482540540397167,-0.593474686145782,-0.803404867649078,0.0358749553561211,-0.589493155479431,-0.806976318359375,0.100785374641418,-0.609196186065674,-0.786589026451111,0.0201652646064758,-0.635964214801788,-0.771455109119415,-0.182456880807877,-0.573976993560791,-0.798285663127899,0.0609448701143265,-0.644962072372437,-0.761780560016632,
- 0.0581133514642715,-0.65199887752533,-0.755989670753479,0.0772137865424156,-0.654634535312653,-0.751991927623749,0.0168470423668623,-0.645454585552216,-0.763612806797028,-0.0564094409346581,-0.708367884159088,-0.703585743904114,-0.227663651108742,-0.688491106033325,-0.688584983348846,-0.135856956243515,-0.701821684837341,-0.699277639389038,0.00507251126691699,-0.708943605422974,-0.705246984958649,-0.0547504909336567,-0.697928071022034,-0.714071989059448,-0.131261706352234,-0.679915964603424,-0.721446216106415,-0.228801786899567,-0.648468792438507,-0.726042687892914,-0.0545766949653625,-0.696829915046692,-0.715156972408295,-0.158421829342842,-0.670841991901398,-0.724481642246246,-0.197618156671524,-0.733150720596313,-0.650720477104187,-0.225396409630775,-0.733752846717834,-0.640939354896545,-0.153695404529572,-0.730924069881439,-0.664926886558533,-0.0545639023184776,-0.696749031543732,-0.715236723423004,0.00537445349618793,-0.708118915557861,-0.706072866916656,0.0271072685718536,-0.711576640605927,-0.702085435390472,0.0590170174837112,-0.717331230640411,-0.69422835111618,0.0270352624356747,-0.711938142776489,-0.701721608638763,0.00546932918950915,-0.707859575748444,-0.706332147121429,-0.154765501618385,-0.718904912471771,-0.677660226821899,-0.0765499249100685,-0.71613872051239,-0.693747401237488,-0.202642172574997,-0.718319654464722,-0.665547251701355,-0.0159286987036467,-0.710661470890045,-0.703353881835938,-0.198272526264191,-0.731253325939178,-0.652653455734253,-0.075881615281105,-0.720276534557343,-0.689524292945862,-0.156106978654861,-0.702677130699158,-0.694172561168671,-0.0564915426075459,-0.708882510662079,-0.703060686588287,0.005551403388381,-0.709157586097717,-0.705028235912323,-0.0781410411000252,-0.70611572265625,-0.703771650791168,-0.156635850667953,-0.695873379707336,-0.700874805450439,0.00552774872630835,-0.71213173866272,-0.702024102210999,-0.0566363632678986,-0.709789752960205,-0.702133059501648,0.0278804413974285,-0.707680284976959,-0.705982565879822,0.00555477850139141,-0.708731174468994,-0.705456852912903,
- -0.0147040914744139,-0.713450133800507,-0.700551748275757,-0.0747412815690041,-0.727240443229675,-0.68230140209198,0.0217792764306068,-0.703640341758728,-0.710222542285919,0.0240267142653465,-0.712375521659851,-0.701387166976929,-0.0784139856696129,-0.704371690750122,-0.705486953258514,0.00553289288654923,-0.711487114429474,-0.702677428722382,0.0827737897634506,-0.680886268615723,-0.727696716785431,-0.0134097337722778,-0.716383874416351,-0.697577595710754,0.021943524479866,-0.70428204536438,-0.709581136703491,0.00555455451831222,-0.708759427070618,-0.705428421497345,0.0278878137469292,-0.70764297246933,-0.706019580364227,0.0279395766556263,-0.707639992237091,-0.706020593643188,0.0274745188653469,-0.709729194641113,-0.703938722610474,0.0598313957452774,-0.715664029121399,-0.695877313613892,0.0276529900729656,-0.709764182567596,-0.703896462917328,0.0280327051877975,-0.709716260433197,-0.703929722309113,0.0233141928911209,-0.709616839885712,-0.704201996326447,0.00555185554549098,-0.709100425243378,-0.705085635185242,0.089733712375164,-0.697823286056519,-0.710626840591431,0.0237647257745266,-0.711362361907959,-0.702423572540283,0.0280937235802412,-0.710574924945831,-0.703060507774353,0.00617645680904388,-0.705657958984375,-0.708525717258453,0.0275203734636307,-0.710744261741638,-0.702911972999573,0.0589022785425186,-0.717565715312958,-0.693995714187622,0.056191086769104,-0.723076343536377,-0.688478946685791,0.0612006783485413,-0.724610209465027,-0.686436116695404,0.00591549277305603,-0.706449568271637,-0.707738757133484,-0.00559835229068995,-0.710990726947784,-0.703179061412811,0.00554270297288895,-0.710254430770874,-0.703923285007477,0.02782167121768,-0.708514928817749,-0.705147206783295,0.0279814824461937,-0.707328677177429,-0.7063307762146,0.00505039794370532,-0.709066867828369,-0.705123245716095,-0.00558854732662439,-0.709745526313782,-0.704436004161835,-0.00568612245842814,-0.72213751077652,-0.691726207733154,0.0292071048170328,-0.72615921497345,-0.686905980110168,0.00543530797585845,-0.723518013954163,-0.690284132957459,
- 0.0639573335647583,-0.719320476055145,-0.691727936267853,0.10908816754818,-0.727725207805634,-0.677137970924377,0.00601828098297119,-0.706137895584106,-0.708048820495605,0.00545375049114227,-0.707847893238068,-0.706343948841095,0.111909478902817,-0.698694109916687,-0.706613659858704,-0.00557743525132537,-0.708334267139435,-0.705855131149292,0.161388754844666,-0.733188152313232,-0.660597324371338,0.109235413372517,-0.726286470890045,-0.678657233715057,0.0643329322338104,-0.718595623970032,-0.692446172237396,0.162738084793091,-0.660604178905487,-0.73288369178772,0.114512957632542,-0.668770790100098,-0.734596788883209,0.161955088376999,-0.660749912261963,-0.732925713062286,0.0399070121347904,-0.708118975162506,-0.704964578151703,0.0887317135930061,-0.695403516292572,-0.713120400905609,0.0281174387782812,-0.710908532142639,-0.702722251415253,0.0465882569551468,-0.738337457180023,-0.672820508480072,0.0299597587436438,-0.736602127552032,-0.675662517547607,-0.0057650487869978,-0.732161164283752,-0.681106984615326,0.0924084484577179,-0.704251825809479,-0.70391058921814,0.041412279009819,-0.715018510818481,-0.697877883911133,0.0802109465003014,-0.707008600234985,-0.702641546726227,0.110143393278122,-0.717236459255219,-0.688069999217987,0.113351449370384,-0.717043519020081,-0.687750041484833,-0.0056629441678524,-0.719193935394287,-0.694786369800568,0.116158366203308,-0.73942619562149,-0.663141250610352,0.0464634709060192,-0.737782776355743,-0.673437297344208,-0.00578080490231514,-0.734162211418152,-0.678949534893036,0.112437300384045,-0.69289219379425,-0.712220728397369,0.166701093316078,-0.684993088245392,-0.709221601486206,0.110328547656536,-0.693156123161316,-0.71229362487793,0.112497963011265,-0.710277497768402,-0.694874286651611,0.0827665030956268,-0.715669691562653,-0.693517625331879,0.0429149940609932,-0.721853673458099,-0.690713822841644,0.0801391527056694,-0.706764221191406,-0.70289546251297,0.111302427947521,-0.700829029083252,-0.70459246635437,0.167238429188728,-0.688331663608551,-0.705854654312134,-0.0563431158661842,-0.876756608486176,-0.477622538805008,
- -0.226420253515244,-0.853740513324738,-0.468893378973007,-0.137541502714157,-0.869042575359344,-0.475234091281891,0.00891400035470724,-0.878179669380188,-0.478247761726379,-0.0546856485307217,-0.869671285152435,-0.490592837333679,-0.132852390408516,-0.854050517082214,-0.502939403057098,-0.228048920631409,-0.825749516487122,-0.515879273414612,-0.0545087940990925,-0.86890709400177,-0.491964876651764,-0.15984334051609,-0.84616881608963,-0.508378386497498,-0.197749376296997,-0.885770499706268,-0.4198879301548,-0.223590657114983,-0.883787453174591,-0.411007225513458,-0.154936596751213,-0.887585461139679,-0.433804869651794,-0.0544986799359322,-0.86886328458786,-0.492043197154999,0.00920501258224249,-0.877629518508911,-0.479251086711884,0.0224121380597353,-0.878975510597229,-0.476340174674988,0.0530070140957832,-0.88224071264267,-0.46780526638031,0.0223665349185467,-0.879130125045776,-0.476056694984436,0.00925895478576422,-0.877527415752411,-0.479436993598938,-0.156044349074364,-0.879550457000732,-0.449489861726761,-0.0768565535545349,-0.881472110748291,-0.465940058231354,-0.202774465084076,-0.875666320323944,-0.438281953334808,-0.0109126195311546,-0.878299713134766,-0.477985948324203,-0.198401138186455,-0.884493470191956,-0.422265708446503,-0.076192244887352,-0.884287238121033,-0.460685193538666,-0.157437518239021,-0.868478775024414,-0.470061630010605,-0.0564237348735332,-0.87709766626358,-0.476986467838287,0.00376982893794775,-0.877933204174042,-0.47876825928688,-0.078435093164444,-0.874606072902679,-0.478447586297989,-0.157988756895065,-0.863758444786072,-0.478498548269272,0.00374163617379963,-0.879876434803009,-0.475187808275223,-0.0565692335367203,-0.877712249755859,-0.475837349891663,0.0229954943060875,-0.87698769569397,-0.479962289333344,0.00377357820980251,-0.877673387527466,-0.479244440793991,-0.00980847328901291,-0.879985451698303,-0.474899381399155,-0.0750615745782852,-0.888979852199554,-0.451752811670303,0.0210745930671692,-0.874236881732941,-0.485042005777359,0.0231925249099731,-0.879965424537659,-0.4744713306427,
- -0.0787046849727631,-0.873408377170563,-0.480586647987366,0.00374821410514414,-0.879424750804901,-0.476023197174072,0.0815366804599762,-0.857535362243652,-0.507922232151031,-0.00863541662693024,-0.881763100624084,-0.471613466739655,0.0212488323450089,-0.874712765216827,-0.484175652265549,0.00377324572764337,-0.877696454524994,-0.479202210903168,0.0229999497532845,-0.876972496509552,-0.479989916086197,0.0248413886874914,-0.876886129379272,-0.480056077241898,0.0228204224258661,-0.87758606672287,-0.4788758456707,0.0538600608706474,-0.881049692630768,-0.469947576522827,0.0246578436344862,-0.877816736698151,-0.478361517190933,0.0302088223397732,-0.878142416477203,-0.477444678544998,0.0225035473704338,-0.878115296363831,-0.477919667959213,0.00377130229026079,-0.877831161022186,-0.478955388069153,0.0884739831089973,-0.868844926357269,-0.487114906311035,0.0229856967926025,-0.879411339759827,-0.475507497787476,0.0302357375621796,-0.878438591957092,-0.476897686719894,0.00924969371408224,-0.87604683637619,-0.482137352228165,0.02453837916255,-0.878420472145081,-0.477258116006851,0.0530164018273354,-0.882227540016174,-0.467828869819641,0.0505509823560715,-0.885633707046509,-0.461624771356583,0.0574325621128082,-0.886908173561096,-0.458361685276031,0.00888281222432852,-0.876803874969482,-0.480766117572784,-0.006922940723598,-0.879213511943817,-0.476377665996552,0.00375801441259682,-0.878749847412109,-0.47726783156395,0.0247112382203341,-0.877546370029449,-0.478854566812515,0.0248726289719343,-0.876727283000946,-0.480344474315643,0.0084556182846427,-0.877682447433472,-0.479168027639389,-0.00691622495651245,-0.878360569477081,-0.477948635816574,-0.00698060402646661,-0.886536717414856,-0.462605535984039,0.0312344953417778,-0.889278888702393,-0.456297606229782,0.00362932286225259,-0.887432217597961,-0.460923999547958,0.0600084438920021,-0.883521318435669,-0.464531064033508,0.106132544577122,-0.887761890888214,-0.447900414466858,0.00908730179071426,-0.876382291316986,-0.481530547142029,0.0088416775688529,-0.876888632774353,-0.480612337589264,
- 0.10884901881218,-0.868691921234131,-0.483245730400085,-0.00690845865756273,-0.877374291419983,-0.479756861925125,0.155376493930817,-0.888540208339691,-0.431687891483307,0.106274418532848,-0.886829555034637,-0.449710041284561,0.0603562742471695,-0.883059918880463,-0.465362787246704,0.160870030522347,-0.839442789554596,-0.519092202186584,0.111429646611214,-0.847863495349884,-0.518373370170593,0.155821084976196,-0.840403079986572,-0.519078552722931,0.0443530678749084,-0.876098036766052,-0.4800885617733,0.0874848738312721,-0.867259442806244,-0.49010968208313,0.0302501581609249,-0.878597259521484,-0.476604521274567,0.0513358041644096,-0.897129714488983,-0.438774347305298,0.0318844020366669,-0.896169245243073,-0.442565381526947,-0.00703300721943378,-0.893191933631897,-0.449620723724365,0.0911768972873688,-0.873131096363068,-0.478882998228073,0.0458951853215694,-0.880882799625397,-0.471104323863983,0.0790266990661621,-0.875400722026825,-0.476894617080688,0.10711245238781,-0.881185173988342,-0.460477650165558,0.114840544760227,-0.880528807640076,-0.459870189428329,-0.00696586584672332,-0.884664952754974,-0.466175258159637,0.11764969676733,-0.895192980766296,-0.429869949817657,0.0511593334376812,-0.8966184258461,-0.439838647842407,-0.00704370299354196,-0.894550263881683,-0.446911871433258,0.109371736645699,-0.864704251289368,-0.490228891372681,0.164731442928314,-0.8562371134758,-0.489613711833954,0.111811921000481,-0.864389181137085,-0.490234136581421,0.113964319229126,-0.875892639160156,-0.46885421872139,0.0816057473421097,-0.88111937046051,-0.465799599885941,0.0474379472434521,-0.885590732097626,-0.462037593126297,0.0789376869797707,-0.875201284885406,-0.477275192737579,0.112769283354282,-0.869525372982025,-0.480841785669327,0.165278986096382,-0.858604848384857,-0.485263407230377,-0.0587293803691864,-0.991380095481873,-0.117116808891296,-0.225943595170975,-0.967022180557251,-0.117548212409019,-0.134615570306778,-0.983879506587982,-0.117728278040886,0.00640687253326178,-0.993025898933411,-0.11772259324789,-0.0570345818996429,-0.989568889141083,-0.132289454340935,
- -0.129873976111412,-0.980364561080933,-0.148385584354401,-0.227511465549469,-0.958559989929199,-0.171467795968056,-0.0568564422428608,-0.989365875720978,-0.133875533938408,-0.160686165094376,-0.974405467510223,-0.157206550240517,-0.194189101457596,-0.979054689407349,-0.0611774250864983,-0.223191678524017,-0.973345756530762,-0.0527607351541519,-0.155526682734489,-0.985187649726868,-0.0722267553210258,-0.0568468607962132,-0.989354908466339,-0.133960798382759,0.0067114382982254,-0.992886006832123,-0.118880160152912,0.0242570228874683,-0.993112504482269,-0.114626243710518,0.0535704307258129,-0.992946028709412,-0.105775237083435,0.0242008529603481,-0.993159472942352,-0.114230446517468,0.00679262913763523,-0.99284839630127,-0.119188711047173,-0.15668623149395,-0.983555436134338,-0.0898226872086525,-0.0754317566752434,-0.991633176803589,-0.104755759239197,-0.199159011244774,-0.976556599140167,-0.081687331199646,-0.0119883213192225,-0.993109345436096,-0.116576708853245,-0.194854289293289,-0.978748261928558,-0.063903383910656,-0.0747852921485901,-0.992274940013886,-0.0989831909537315,-0.158149242401123,-0.980913102626801,-0.113130547106266,-0.058818094432354,-0.991468846797943,-0.116318367421627,0.00874656718224287,-0.992996871471405,-0.117817103862762,-0.076971136033535,-0.989956617355347,-0.118580728769302,-0.158730357885361,-0.979658126831055,-0.122779130935669,0.00871549639850855,-0.993516862392426,-0.113351255655289,-0.0589701011776924,-0.991619527339935,-0.114949449896812,0.0249166283756495,-0.992548644542694,-0.119274824857712,0.0087513467296958,-0.992914855480194,-0.118506141006947,-0.0108602000400424,-0.993533551692963,-0.11301801353693,-0.0736745372414589,-0.993293285369873,-0.0891096815466881,0.025325583294034,-0.99163681268692,-0.126551061868668,0.0278625637292862,-0.993252336978912,-0.112576968967915,-0.0772372707724571,-0.989645302295685,-0.120982274413109,0.0087214345112443,-0.993419110774994,-0.114203065633774,0.0789951905608177,-0.985333621501923,-0.151252701878548,-0.00965737644582987,-0.993970453739166,-0.109222464263439,
- 0.0254278834909201,-0.99170583486557,-0.125988602638245,0.00875116139650345,-0.992918014526367,-0.118479482829571,0.0249222926795483,-0.992543637752533,-0.119314752519131,0.0271274596452713,-0.992472410202026,-0.119426257908344,0.0246482118964195,-0.992780804634094,-0.117382995784283,0.0544126927852631,-0.992639362812042,-0.108196295797825,0.0268731191754341,-0.992803514003754,-0.116700485348701,0.0335903950035572,-0.992655754089355,-0.116216450929642,0.0271336920559406,-0.992808640003204,-0.116597279906273,0.00874543935060501,-0.993016123771667,-0.117654718458653,0.0857322886586189,-0.988027215003967,-0.128266766667366,0.0273924265056849,-0.992967963218689,-0.115170642733574,0.033571757376194,-0.992614269256592,-0.116576358675957,0.0121741434559226,-0.99263721704483,-0.120512701570988,0.0267469696700573,-0.99296498298645,-0.115349017083645,0.0535676851868629,-0.992947101593018,-0.105767339468002,0.0511034652590752,-0.993805587291718,-0.0986858308315277,0.0598873123526573,-0.993749260902405,-0.0942123234272003,0.0117215923964977,-0.992873728275299,-0.118593968451023,-0.00691566942259669,-0.993336081504822,-0.115046091377735,0.00873745791614056,-0.993151605129242,-0.116505548357964,0.0270105414092541,-0.992625594139099,-0.118173085153103,0.0271670948714018,-0.992420196533203,-0.119851119816303,0.011697550304234,-0.992886066436768,-0.118492007255554,-0.00690006790682673,-0.993129134178162,-0.116820603609085,-0.00705121411010623,-0.995011866092682,-0.0995077639818192,0.0348343327641487,-0.995152652263641,-0.0919671580195427,0.00859831925481558,-0.995275378227234,-0.0967112109065056,0.0625610426068306,-0.992866098880768,-0.101503759622574,0.108889132738113,-0.990464627742767,-0.084398940205574,0.0120111461728811,-0.992722868919373,-0.119821645319462,0.0120575930923224,-0.992698431015015,-0.120018571615219,0.111666135489941,-0.985794246196747,-0.125460833311081,-0.00688220234587789,-0.992888569831848,-0.118848912417889,0.159224838018417,-0.984848201274872,-0.0687138363718987,0.109034344553947,-0.990268766880035,-0.0864833742380142,
- 0.0629244819283485,-0.992741286754608,-0.102495208382607,0.163827687501907,-0.971783399581909,-0.169698789715767,0.114227175712585,-0.979503273963928,-0.165908187627792,0.1596699655056,-0.972527861595154,-0.169396370649338,0.0376820042729378,-0.992335259914398,-0.117689304053783,0.0847979113459587,-0.98768675327301,-0.131469309329987,0.0335769280791283,-0.992625772953033,-0.11647642403841,0.0444168522953987,-0.996208310127258,-0.0748079791665077,0.0356124527752399,-0.996428787708282,-0.0765603929758072,-0.00717618642374873,-0.996356785297394,-0.0849810689687729,0.0884210541844368,-0.988946437835693,-0.119024373590946,0.039210245013237,-0.993375360965729,-0.108018256723881,0.0801492109894753,-0.989869773387909,-0.117192156612873,0.109925784170628,-0.988954603672028,-0.099423959851265,0.110624112188816,-0.9888796210289,-0.0993951112031937,-0.00701627088710666,-0.994601130485535,-0.103534743189812,0.113267906010151,-0.991337954998016,-0.0664792135357857,0.044311136007309,-0.996161878108978,-0.07548638433218,-0.00720197986811399,-0.996609807014465,-0.0819583833217621,0.112184539437294,-0.984688282012939,-0.133430436253548,0.167939051985741,-0.976370275020599,-0.136006250977516,0.107772082090378,-0.985210955142975,-0.133209228515625,0.109854340553284,-0.987987637519836,-0.108685202896595,0.0827951803803444,-0.99105316400528,-0.10468353331089,0.0407364889979362,-0.994320213794708,-0.0983252823352814,0.0800749585032463,-0.989834249019623,-0.117542028427124,0.108721099793911,-0.98654043674469,-0.122138686478138,0.16847987473011,-0.976902663707733,-0.131437852978706,-0.0561584271490574,-0.988226115703583,0.142322048544884,-0.225623577833176,-0.964735329151154,0.13557231426239,-0.134425148367882,-0.981022119522095,0.139733761548996,0.0121294353157282,-0.98958957195282,0.143407002091408,-0.0545038282871246,-0.990310490131378,0.127728626132011,-0.129764795303345,-0.98551082611084,0.109222956001759,-0.226970255374908,-0.97049355506897,0.081405408680439,-0.0543250218033791,-0.990521848201752,0.126156225800514,-0.161790236830711,-0.98186320066452,0.0988362655043602,
- -0.198119834065437,-0.960780143737793,0.194036155939102,-0.223135590553284,-0.954097092151642,0.199772968888283,-0.157095089554787,-0.970214486122131,0.184404402971268,-0.054316658526659,-0.99053156375885,0.126082733273506,0.0124166328459978,-0.98974597454071,0.142297744750977,0.0198244620114565,-0.989370822906494,0.144057184457779,0.0554890967905521,-0.986489415168762,0.154141753911972,0.0197942405939102,-0.98934006690979,0.144272133708,0.0124382115900517,-0.989757776260376,0.142214402556419,-0.158162534236908,-0.973219096660614,0.166820898652077,-0.0778447687625885,-0.984899044036865,0.154642194509506,-0.203146785497665,-0.9637051820755,0.1732157766819,-0.0133389439433813,-0.989547431468964,0.143589720129967,-0.198771819472313,-0.961181700229645,0.191362425684929,-0.0771418660879135,-0.983996748924255,0.160622105002403,-0.159501552581787,-0.976727545261383,0.143396303057671,-0.056237131357193,-0.988121032714844,0.14301823079586,0.00667559914290905,-0.989838778972626,0.142037644982338,-0.0795189961791039,-0.986914217472076,0.140275180339813,-0.160031363368034,-0.978023409843445,0.133642628788948,0.00663706660270691,-0.98921662569046,0.146309241652489,-0.0563820861279964,-0.987926244735718,0.144300773739815,0.020294239744544,-0.989842295646667,0.140713959932327,0.0066812327131629,-0.989928305149078,0.141411796212196,-0.0121851488947868,-0.989022254943848,0.147263586521149,-0.0759570449590683,-0.982402503490448,0.170634105801582,0.0235616415739059,-0.990718364715576,0.133872970938683,0.0258656237274408,-0.988803625106812,0.146963775157928,-0.0798024237155914,-0.987236440181732,0.137825503945351,0.00664507411420345,-0.989347279071808,0.145422905683517,0.0803297013044357,-0.991002023220062,0.107061460614204,-0.0109575120732188,-0.98844712972641,0.15116947889328,0.0236905217170715,-0.990616142749786,0.134605243802071,0.00668091187253594,-0.989923238754272,0.141447454690933,0.0202970746904612,-0.989845097064972,0.140693783760071,0.0270259100943804,-0.989738464355469,0.140311598777771,0.0202498883008957,-0.989798247814178,0.141029745340347,
- 0.0563204661011696,-0.986812591552734,0.151752695441246,0.0267776418477297,-0.989362597465515,0.142984554171562,0.0312667787075043,-0.989180326461792,0.143334344029427,0.0251718908548355,-0.989399433135986,0.143022105097771,0.00667555863037705,-0.989838123321533,0.142042174935341,0.087025098502636,-0.987646579742432,0.130310624837875,0.0255180671811104,-0.989104211330414,0.144989013671875,0.0312825217843056,-0.98913562297821,0.143639013171196,0.00875347852706909,-0.990381240844727,0.138088390231133,0.0266528464853764,-0.989171147346497,0.144326984882355,0.0554476864635944,-0.986473083496094,0.154260665178299,0.0529037527740002,-0.985444188117981,0.161558076739311,0.0579574257135391,-0.984750092029572,0.164037317037582,0.00841632019728422,-0.99017995595932,0.139545574784279,-0.00893186964094639,-0.989399015903473,0.144948408007622,0.00666241301223636,-0.989627778530121,0.14350126683712,0.026909101754427,-0.989562571048737,0.141569674015045,0.0270645879209042,-0.98979640007019,0.139894917607307,0.00792637653648853,-0.989883303642273,0.141662359237671,-0.00891993567347527,-0.98965722322464,0.143174603581429,-0.00903104618191719,-0.987101495265961,0.159841358661652,0.032488327473402,-0.985401809215546,0.167116075754166,0.00648880004882813,-0.986671805381775,0.162594258785248,0.0605478510260582,-0.985736608505249,0.157026618719101,0.106949739158154,-0.979101538658142,0.172979548573494,0.00859550107270479,-0.990287125110626,0.138771191239357,0.00830182712525129,-0.99011105298996,0.140040323138237,0.109880477190018,-0.985018968582153,0.132906213402748,-0.00890597607940435,-0.989954650402069,0.141104206442833,0.158119946718216,-0.969548106193542,0.187014937400818,0.107101820409298,-0.979438841342926,0.170964583754539,0.0608967244625092,-0.985865235328674,0.156081050634384,0.162473797798157,-0.982908964157104,0.0865575894713402,0.11265555024147,-0.989344894886017,0.0922249555587769,0.158748552203178,-0.983479380607605,0.0869907215237617,0.0384994335472584,-0.989160001277924,0.141705453395844,0.0860853493213654,-0.988154828548431,0.1270412504673,
- 0.0312955975532532,-0.989098370075226,0.143892228603363,0.0452334582805634,-0.981785356998444,0.184530571103096,0.033261101692915,-0.982679665088654,0.182303011417389,-0.00912498403340578,-0.984667003154755,0.174205929040909,0.0896595865488052,-0.986156523227692,0.139486983418465,0.0400221757590771,-0.987666428089142,0.151371940970421,0.0786957889795303,-0.986712217330933,0.142148271203041,0.108017444610596,-0.981401920318604,0.158690109848976,0.109822534024715,-0.981197953224182,0.158712565898895,-0.00900654122233391,-0.987694501876831,0.156136274337769,0.112583808600903,-0.975089967250824,0.191113814711571,0.0451207719743252,-0.981925249099731,0.183812335133553,-0.00914523843675852,-0.984107613563538,0.177337691187859,0.110442519187927,-0.986003398895264,0.124899163842201,0.16644760966301,-0.97868937253952,0.120259054005146,0.106854893267155,-0.986362814903259,0.125181779265404,0.109033785760403,-0.982704639434814,0.149677023291588,0.0812742114067078,-0.984652519226074,0.154447644948959,0.0415440239012241,-0.986072659492493,0.161042898893356,0.0786057934165001,-0.986780941486359,0.141719713807106,0.107853412628174,-0.984775722026825,0.136324748396873,0.166990995407104,-0.978004097938538,0.12498851120472,-0.0542960055172443,-0.874361276626587,0.482228606939316,-0.223897770047188,-0.855027377605438,0.467758387327194,-0.138145565986633,-0.868050038814545,0.476870059967041,0.00793395284563303,-0.875700354576111,0.48278996348381,-0.0526438988745213,-0.88128137588501,0.469650775194168,-0.133318170905113,-0.883407831192017,0.449240177869797,-0.225303694605827,-0.879381418228149,0.419436097145081,-0.0524627268314362,-0.882026255130768,0.468270599842072,-0.159037753939629,-0.883793532848358,0.440018385648727,-0.197963505983353,-0.830388784408569,0.520830988883972,-0.221359819173813,-0.822668612003326,0.523656606674194,-0.154046088457108,-0.843410730361938,0.514711678028107,-0.0524543970823288,-0.882060468196869,0.468207150697708,0.00822625402361155,-0.876251101493835,0.481784760951996,0.0224798303097487,-0.874390184879303,0.484702408313751,
- 0.0529699474573135,-0.868968665599823,0.492024004459381,0.0224344804883003,-0.874233424663544,0.484987407922745,0.00829042494297028,-0.876371800899506,0.481563925743103,-0.155170366168022,-0.8522669672966,0.499563187360764,-0.0787779167294502,-0.86667937040329,0.492606461048126,-0.203025460243225,-0.84046483039856,0.502393782138824,-0.0164266899228096,-0.874622821807861,0.484525829553604,-0.198622301220894,-0.83171159029007,0.518464088439941,-0.078056737780571,-0.863678276538849,0.497962862253189,-0.156584829092026,-0.86358505487442,0.479272454977036,-0.0543691031634808,-0.874049723148346,0.482784777879715,0.00689681665971875,-0.875895738601685,0.482451170682907,-0.0804966315627098,-0.873747408390045,0.479672759771347,-0.157144486904144,-0.868124842643738,0.470813184976578,0.00688030803576112,-0.87379914522171,0.486238330602646,-0.0545109622180462,-0.873443841934204,0.483864068984985,0.0230575557798147,-0.876380622386932,0.481066793203354,0.0068992511369288,-0.87620484828949,0.481889456510544,-0.0151777863502502,-0.872689425945282,0.48803985118866,-0.0768468305468559,-0.858597695827484,0.506857752799988,0.0235321782529354,-0.87958812713623,0.475153684616089,0.0258785709738731,-0.873194396495819,0.486684620380402,-0.0807861164212227,-0.874925971031189,0.477470576763153,0.00688375486060977,-0.874236822128296,0.485450893640518,0.0816189050674438,-0.889514207839966,0.449558466672897,-0.0138614550232887,-0.870635449886322,0.491733521223068,0.0236654207110405,-0.879229545593262,0.475810199975967,0.0068991151638329,-0.87618762254715,0.481920778751373,0.0230619143694639,-0.876395642757416,0.481039315462112,0.0212760772556067,-0.87638396024704,0.481142967939377,0.0228835921734571,-0.875782787799835,0.482162743806839,0.0538181737065315,-0.870137929916382,0.489860773086548,0.0212134514003992,-0.876061320304871,0.481732964515686,0.0335367694497108,-0.874704480171204,0.483495026826859,0.0251690894365311,-0.875145554542542,0.483204782009125,0.00689680827781558,-0.875894665718079,0.482453167438507,0.088411308825016,-0.878042042255402,0.470346540212631,
- 0.0255220159888268,-0.874176859855652,0.484936535358429,0.0335215218365192,-0.874871015548706,0.483194589614868,0.0095589542761445,-0.877662062644959,0.479184865951538,0.0211117174476385,-0.875536382198334,0.48269060254097,0.0529829859733582,-0.86898672580719,0.491990804672241,0.0505581125617027,-0.865614652633667,0.498151749372482,0.0560978129506111,-0.863956212997437,0.50043249130249,0.00919623766094446,-0.876924097537994,0.48054113984108,-0.00381585117429495,-0.874720275402069,0.484613090753555,0.00689128274098039,-0.875192940235138,0.483724981546402,0.0211365837603807,-0.87566477060318,0.482456594705582,0.0212964341044426,-0.8764888048172,0.480951130390167,0.00879597757011652,-0.876107215881348,0.482036292552948,-0.00380356749519706,-0.875582873821259,0.483053088188171,-0.00392875261604786,-0.866621077060699,0.498951554298401,0.0346071943640709,-0.86263632774353,0.504639625549316,0.00681609055027366,-0.865643501281738,0.500614523887634,0.0586302578449249,-0.867231011390686,0.494441956281662,0.111154071986675,-0.853768408298492,0.508649468421936,0.00940301176160574,-0.877344906330109,0.479768067598343,0.00917523261159658,-0.876881182193756,0.480619549751282,0.114219516515732,-0.87431675195694,0.471724659204483,-0.00379013130441308,-0.876522123813629,0.481346666812897,0.158352121710777,-0.840979278087616,0.517376601696014,0.111313335597515,-0.854840695858002,0.506810307502747,0.0589680969715118,-0.867664754390717,0.493640273809433,0.16532190144062,-0.888709425926209,0.427626192569733,0.117000371217728,-0.892770648002625,0.43505334854126,0.158933758735657,-0.889371335506439,0.428670853376389,0.0382436253130436,-0.875358104705811,0.48196017742157,0.0874440595507622,-0.879714071750641,0.467393755912781,0.0335262715816498,-0.874819159507751,0.483288168907166,0.0447947941720486,-0.853424549102783,0.519287943840027,0.0352749936282635,-0.854722082614899,0.51788604259491,-0.00402824487537146,-0.859221994876862,0.511587083339691,0.0910625234246254,-0.873392939567566,0.478427231311798,0.0397332869470119,-0.87053918838501,0.490492403507233,
- 0.0804592072963715,-0.873002111911774,0.481033951044083,0.112324237823486,-0.861635088920593,0.494942605495453,0.110734380781651,-0.861813843250275,0.494989693164825,-0.00389802572317421,-0.868856191635132,0.495049268007278,0.113358035683632,-0.844666123390198,0.523153126239777,0.0446844398975372,-0.853810131549835,0.518663465976715,-0.00404705293476582,-0.857795178890228,0.513975739479065,0.114780910313129,-0.878057718276978,0.464585840702057,0.169368401169777,-0.872804760932922,0.457740277051926,0.107898607850075,-0.8785280585289,0.465345501899719,0.109967172145844,-0.866511940956116,0.486892521381378,0.0831156149506569,-0.866678416728973,0.491894632577896,0.0412139743566513,-0.865651607513428,0.498947560787201,0.0803833901882172,-0.873180031776428,0.480723589658737,0.108840219676495,-0.873172521591187,0.475103735923767,0.169881299138069,-0.870655596256256,0.461626678705215,-0.167106777429581,0.985653936862946,0.0237016528844833,-0.0898938775062561,0.995456755161285,0.0313836000859737,-0.205785304307938,0.97839766740799,0.0197595488280058,-0.283296167850494,0.958825826644897,0.0199076160788536,-0.166658893227577,0.985883176326752,0.0161019042134285,-0.205721214413643,0.978456079959869,0.0173934698104858,-0.282189220190048,0.958852887153625,0.0311507899314165,-0.335989415645599,0.940802395343781,0.0447439812123775,-0.207123696804047,0.978236198425293,0.0124057959765196,-0.205372422933578,0.978670239448547,0.00518842507153749,-0.236924007534981,0.971436738967896,0.0133302137255669,-0.282773911952972,0.958853960037231,0.0252581834793091,-0.335287541151047,0.941243171691895,0.0405400320887566,-0.282582134008408,0.958857357501984,0.0272020995616913,-0.237745314836502,0.971196353435516,0.0159667301923037,-0.320741385221481,0.94633537530899,-0.0396778136491776,-0.237191706895828,0.971359252929688,0.0141889899969101,-0.385229110717773,0.919124007225037,-0.0825208351016045,-0.205087840557098,0.978735148906708,-0.00405529094859958,-0.162096917629242,0.986738204956055,0.00850478559732437,-0.229211434721947,0.973312735557556,-0.0111543377861381,
- -0.382412731647491,0.919864892959595,-0.0872303992509842,-0.235527500510216,0.971827387809753,0.0088602090254426,-0.236562445759773,0.971581697463989,0.00820174068212509,-0.235562086105347,0.971817910671234,0.00897081941366196,-0.183370694518089,0.982073724269867,0.0436628572642803,-0.236604243516922,0.97157096862793,0.0082712396979332,-0.235311537981033,0.971900701522827,0.00612228363752365,-0.180879265069962,0.982710897922516,0.0395223200321198,-0.182347849011421,0.98247492313385,0.0386293940246105,-0.319562256336212,0.876482963562012,0.360079944133759,-0.248878479003906,0.895081996917725,0.369983643293381,-0.367120236158371,0.860941290855408,0.35214039683342,-0.436576694250107,0.830283284187317,0.34645414352417,-0.319643348455429,0.8795565366745,0.352432370185852,-0.367175787687302,0.861497700214386,0.350718706846237,-0.434722930192947,0.82654482126236,0.357546836137772,-0.480659365653992,0.797931134700775,0.363692909479141,-0.362861335277557,0.865127384662628,0.346246123313904,-0.367544442415237,0.865376114845276,0.340639650821686,-0.396601408720016,0.850413680076599,0.345693349838257,-0.435659259557724,0.828432202339172,0.351995944976807,-0.480267822742462,0.799908578395844,0.359845906496048,-0.435357064008713,0.827822923660278,0.353798776865005,-0.397182464599609,0.849190831184387,0.348024547100067,-0.471373170614243,0.833808422088623,0.287351429462433,-0.395782232284546,0.852117121219635,0.342422008514404,-0.535154640674591,0.811102628707886,0.236055478453636,-0.367922008037567,0.869795143604279,0.328770220279694,-0.323838621377945,0.881269752979279,0.344226956367493,-0.390193045139313,0.863131880760193,0.320550680160522,-0.532771646976471,0.813865661621094,0.231898605823517,-0.394556373357773,0.8546222448349,0.337559014558792,-0.393935084342957,0.854738593101501,0.337989926338196,-0.394550889730453,0.854633390903473,0.337537288665771,-0.341499477624893,0.861954212188721,0.374717354774475,-0.393932700157166,0.854741334915161,0.337985813617706,-0.392901748418808,0.855919122695923,0.33620023727417,-0.339457392692566,0.86429089307785,0.371173828840256,
- -0.336201101541519,0.86467981338501,0.373226284980774,-0.167422518134117,0.865391612052917,-0.472299784421921,-0.0858907103538513,0.878274917602539,-0.47037860751152,-0.210657209157944,0.856057941913605,-0.472004681825638,-0.284296691417694,0.840080320835114,-0.461996257305145,-0.167004466056824,0.86180579662323,-0.478957563638687,-0.210613295435905,0.855240523815155,-0.473503619432449,-0.283113598823547,0.845852851867676,-0.452083557844162,-0.330197989940643,0.838240921497345,-0.433960199356079,-0.210261151194572,0.853195309638977,-0.477334320545197,-0.210312336683273,0.849857032299042,-0.483230590820313,-0.23785188794136,0.847864747047424,-0.473869025707245,-0.283729165792465,0.84288626909256,-0.457209467887878,-0.329469859600067,0.836495816707611,-0.437863379716873,-0.283528864383698,0.843860328197479,-0.455534011125565,-0.238678961992264,0.848971545696259,-0.471465408802032,-0.315563440322876,0.803021907806396,-0.50554484128952,-0.237906113266945,0.847937405109406,-0.473711729049683,-0.385476410388947,0.75452733039856,-0.531127512454987,-0.209959656000137,0.843949735164642,-0.493625372648239,-0.162573426961899,0.858641862869263,-0.486111223697662,-0.229931771755219,0.837064683437347,-0.496441602706909,-0.382661372423172,0.752831697463989,-0.535550832748413,-0.236237987875938,0.845693469047546,-0.478533536195755,-0.234256863594055,0.846728563308716,-0.477676153182983,-0.236266374588013,0.845731735229492,-0.478451639413834,-0.183660566806793,0.872205317020416,-0.453350514173508,-0.234333693981171,0.846774935722351,-0.477556198835373,-0.232981935143471,0.845956563949585,-0.47966331243515,-0.181187689304352,0.870681583881378,-0.457257807254791,-0.185149654746056,0.86891782283783,-0.45902219414711,-0.163978338241577,0.615488469600677,0.770898818969727,-0.0896260440349579,0.61580902338028,0.782781183719635,-0.210445284843445,0.61348956823349,0.761146128177643,-0.287093341350555,0.600240767002106,0.746517598628998,-0.163496106863022,0.621791005134583,0.765927493572235,-0.21039767563343,0.614846706390381,0.760063409805298,
- -0.285867691040039,0.591034114360809,0.754293262958527,-0.332602202892303,0.571905672550201,0.749866425991058,-0.210601359605789,0.618135809898376,0.757334291934967,-0.210075095295906,0.623565375804901,0.75301718711853,-0.239435240626335,0.613352596759796,0.752641618251801,-0.286474376916885,0.595562815666199,0.750491380691528,-0.331860333681107,0.575456321239471,0.74747496843338,-0.286277741193771,0.594088912010193,0.751733601093292,-0.240263342857361,0.611175656318665,0.754147231578827,-0.317361503839493,0.637786686420441,0.701790452003479,-0.239127442240715,0.614159405231476,0.752081334590912,-0.388848632574081,0.654767334461212,0.648133099079132,-0.209703847765923,0.632730841636658,0.745436787605286,-0.163432702422142,0.628009140491486,0.760851144790649,-0.231228798627853,0.634421944618225,0.737592101097107,-0.386027038097382,0.658858954906464,0.645668685436249,-0.23744498193264,0.618546068668365,0.749013125896454,-0.241383418440819,0.619854331016541,0.746669113636017,-0.237463548779488,0.618497908115387,0.749046981334686,-0.184458345174789,0.598264276981354,0.779778838157654,-0.241354525089264,0.619895696640015,0.746644020080566,-0.240160569548607,0.621607542037964,0.745605111122131,-0.181991964578629,0.601828813552856,0.777612388134003,-0.184373810887337,0.602689266204834,0.776383936405182,-0.014793592505157,0.657929956912994,0.75293380022049,-0.101019337773323,0.655027449131012,0.74882185459137,-0.0362943112850189,0.657666027545929,0.75243479013443,-0.140081867575645,0.652081191539764,0.745095431804657,-0.0147937852889299,0.6579350233078,0.752929449081421,-0.0362940952181816,0.657669961452484,0.752431511878967,-0.132240861654282,0.645333468914032,0.752367615699768,-0.0157260224223137,0.682078659534454,0.731109738349915,-0.141110807657242,0.642099142074585,0.753522753715515,-0.139097571372986,0.661317646503448,0.737096309661865,-0.0374548099935055,0.636397778987885,0.770451188087463,-0.2203668653965,0.675681054592133,0.703486800193787,-0.131420329213142,0.643721461296082,0.753890931606293,-0.141386032104492,0.639369547367096,0.755788743495941,
- -0.321781724691391,0.545169055461884,0.774110615253448,-0.33536559343338,0.626304149627686,0.70375645160675,-0.140159621834755,0.651338815689087,0.745729923248291,-0.23206090927124,0.642949461936951,0.729906678199768,-0.210985705256462,0.971169710159302,0.110970288515091,-0.210133850574493,0.971415638923645,0.110432595014572,-0.115291081368923,0.992036402225494,0.0507132969796658,-0.210249066352844,0.971100568771362,0.112955391407013,-0.107798427343369,0.991756618022919,0.0692699775099754,-0.174491882324219,0.979795455932617,0.0977425128221512,-0.365808039903641,0.925988137722015,0.0934373736381531,-0.208717867732048,0.970943331718445,0.117072120308876,-0.169916823506355,0.977839469909668,0.12230372428894,-0.105080507695675,0.991557836532593,0.0759681910276413,-0.0797133147716522,0.994566202163696,0.0669627040624619,-0.174021497368813,0.979620754718781,0.100297786295414,-0.361390829086304,0.929841637611389,0.0692196115851402,-0.168546229600906,0.977144956588745,0.129537835717201,-0.113814428448677,0.98282390832901,0.145270735025406,-0.17135401070118,0.978514969348907,0.114657998085022,-0.0667935609817505,0.991286337375641,0.11353400349617,-0.113289311528206,0.986978471279144,0.114188604056835,-0.0114025957882404,0.842137813568115,0.539141833782196,-0.107134290039539,0.837656497955322,0.535587310791016,-0.0363195277750492,0.841717958450317,0.538694620132446,-0.143454864621162,0.833909392356873,0.532931387424469,-0.0114027773961425,0.842141568660736,0.539135992527008,-0.0363193154335022,0.841720700263977,0.538690328598022,-0.127687975764275,0.83126175403595,0.541017293930054,-0.0122745651751757,0.859868586063385,0.510367870330811,-0.144536599516869,0.825985848903656,0.544845402240753,-0.142405956983566,0.841235935688019,0.521577000617981,-0.0374799557030201,0.826323509216309,0.561947345733643,-0.222240954637527,0.845353066921234,0.485785245895386,-0.126998841762543,0.830321192741394,0.542621433734894,-0.144825175404549,0.823805153369904,0.548060834407806,-0.322951972484589,0.739087104797363,0.591144859790802,-0.336939811706543,0.797542214393616,0.500397861003876,
- -0.143525063991547,0.833406865596771,0.533698081970215,-0.233994245529175,0.820917129516602,0.520904779434204,-0.210860550403595,0.963506698608398,-0.164902240037918,-0.214365690946579,0.963142514228821,-0.162492543458939,-0.112867034971714,0.966612815856934,-0.230045258998871,-0.210111737251282,0.964000880718231,-0.162958085536957,-0.105288207530975,0.971637308597565,-0.211743786931038,-0.17342084646225,0.968177974224091,-0.180434793233871,-0.364901423454285,0.915580868721008,-0.168993040919304,-0.208543241024017,0.965019822120667,-0.158891394734383,-0.168699488043785,0.973291337490082,-0.155706956982613,-0.102529548108578,0.973358750343323,-0.205086514353752,-0.0774809494614601,0.973659515380859,-0.214438810944557,-0.172933205962181,0.968741655349731,-0.177858412265778,-0.360487699508667,0.912538707256317,-0.193188190460205,-0.167279943823814,0.974682211875916,-0.148364290595055,-0.117114968597889,0.983765721321106,-0.135974958539009,-0.170180886983871,0.97176867723465,-0.163414195179939,-0.0643459483981133,0.983670771121979,-0.168081849813461,-0.116572342813015,0.979207694530487,-0.166021749377251,-0.01104954816401,0.982280671596527,0.187089622020721,-0.105217762291431,0.976994037628174,0.185504630208015,-0.0320225767791271,0.98186057806015,0.18688091635704,-0.143630251288414,0.972304046154022,0.184378147125244,-0.0110497297719121,0.982281982898712,0.187082782387733,-0.0320223495364189,0.981861591339111,0.186875551939011,-0.130423203110695,0.972331881523132,0.193805530667305,-0.0119294794276357,0.988048017024994,0.153684049844742,-0.144720509648323,0.969360709190369,0.198483973741531,-0.14257501065731,0.974892795085907,0.171045526862144,-0.0332477204501629,0.975869476795197,0.215808674693108,-0.223030045628548,0.96527624130249,0.136012732982636,-0.129648983478546,0.972024857997894,0.195854067802429,-0.145010143518448,0.968529939651489,0.202291384339333,-0.31954488158226,0.907564580440521,0.272429138422012,-0.333146780729294,0.927760899066925,0.168145686388016,-0.143699198961258,0.972126126289368,0.185260027647018,
- -0.234983950853348,0.955568730831146,0.177963554859161,-0.213996365666389,0.833476662635803,-0.509433329105377,-0.212349325418472,0.833215177059174,-0.510549187660217,-0.108582608401775,0.810430467128754,-0.575684368610382,-0.213468164205551,0.834311485290527,-0.508287131786346,-0.100688487291336,0.82234513759613,-0.560009181499481,-0.177389189600945,0.831864833831787,-0.525865077972412,-0.363417357206345,0.787563562393188,-0.497665971517563,-0.21263262629509,0.835626542568207,-0.50647383928299,-0.173019960522652,0.844591557979584,-0.506684601306915,-0.0977984592318535,0.826598227024078,-0.554230153560638,-0.0816892236471176,0.82453578710556,-0.559881806373596,-0.17694453895092,0.833194196224213,-0.523906707763672,-0.359014183282852,0.775895476341248,-0.518743693828583,-0.171717077493668,0.848245680332184,-0.500991463661194,-0.119240395724773,0.862052798271179,-0.492591857910156,-0.17440576851368,0.840634763240814,-0.512753188610077,-0.0687387585639954,0.850321590900421,-0.521754920482636,-0.118783257901669,0.846946954727173,-0.518238842487335,-0.0174130275845528,0.997228562831879,-0.072332464158535,-0.102359890937805,0.992103636264801,-0.0724766403436661,-0.0363897979259491,0.996710896492004,-0.072410099208355,-0.137616321444511,0.987837553024292,-0.0723792836070061,-0.0174131747335196,0.99722808599472,-0.0723389685153961,-0.0363895781338215,0.996710598468781,-0.0724152326583862,-0.132771551609039,0.98918092250824,-0.0623931251466274,-0.0181141551584005,0.994424641132355,-0.103882819414139,-0.138490006327629,0.988527595996857,-0.0602803751826286,-0.136785373091698,0.987064778804779,-0.0836241841316223,-0.0375477112829685,0.998299598693848,-0.0445877611637115,-0.220934703946114,0.968311488628387,-0.116450995206833,-0.131940737366676,0.989431500434875,-0.0601421855390072,-0.138723254203796,0.988689541816711,-0.0570004284381866,-0.321489155292511,0.946426808834076,0.0303494744002819,-0.335125297307968,0.939055323600769,-0.0765910893678665,-0.13769942522049,0.987908720970154,-0.0712409168481827,-0.232673183083534,0.969722986221313,-0.0741658061742783,
- -0.212067693471909,0.673422515392303,-0.708187520503998,-0.214480400085449,0.674213588237762,-0.706706583499908,-0.114575177431107,0.637209832668304,-0.762126088142395,-0.211401164531708,0.674834370613098,-0.70704185962677,-0.107023775577545,0.651967883110046,-0.75065553188324,-0.17225207388401,0.667243897914886,-0.724648118019104,-0.362236052751541,0.633136332035065,-0.684049248695374,-0.210154682397842,0.677463591098785,-0.704895853996277,-0.167312875390053,0.686641395092011,-0.707481503486633,-0.104282170534134,0.657239675521851,-0.746432363986969,-0.083461731672287,0.652845025062561,-0.752879559993744,-0.171739920973778,0.669299066066742,-0.722872138023376,-0.357889950275421,0.616526663303375,-0.701291441917419,-0.165815070271492,0.692342400550842,-0.702258825302124,-0.117140978574753,0.706570744514465,-0.697879493236542,-0.168851152062416,0.6807000041008,-0.712837219238281,-0.0707979872822762,0.687119007110596,-0.723087191581726,-0.11660498380661,0.68496185541153,-0.719187438488007,-0.0132234636694193,0.907499551773071,-0.41984498500824,-0.102552317082882,0.902567446231842,-0.418156772851944,-0.0329364910721779,0.907036542892456,-0.419761747121811,-0.140391707420349,0.89826899766922,-0.416417092084885,-0.01322365924716,0.907496690750122,-0.419851154088974,-0.03293626755476,0.907034277915955,-0.41976660490036,-0.131897032260895,0.903390645980835,-0.408030092716217,-0.0141619779169559,0.893096208572388,-0.449642807245255,-0.141341552138329,0.903603732585907,-0.404379636049271,-0.139479517936707,0.893128514289856,-0.42762964963913,-0.0341270081698895,0.918881952762604,-0.39305391907692,-0.219030275940895,0.865549623966217,-0.45038828253746,-0.131085097789764,0.904388546943665,-0.406076490879059,-0.141594365239143,0.905020356178284,-0.401109963655472,-0.320791304111481,0.896277248859406,-0.306235283613205,-0.334146291017532,0.851847112178802,-0.403364479541779,-0.140468895435333,0.898703217506409,-0.415452778339386,-0.230549871921539,0.88155996799469,-0.411945372819901,-0.213075697422028,0.380562573671341,-0.899872779846191,
- -0.213741570711136,0.380911022424698,-0.899567306041718,-0.110863536596298,0.325027287006378,-0.939184010028839,-0.212500527501106,0.382026612758636,-0.899388194084167,-0.103071868419647,0.34339314699173,-0.933518826961517,-0.173346683382988,0.368722587823868,-0.913233041763306,-0.363392412662506,0.350452125072479,-0.863208711147308,-0.211482360959053,0.384612560272217,-0.898525774478912,-0.168542549014091,0.392327606678009,-0.904252409934998,-0.10022196918726,0.35004797577858,-0.931354939937592,-0.0793895348906517,0.343625098466873,-0.935745239257813,-0.1728515625,0.371193051338196,-0.912325620651245,-0.359008938074112,0.32866159081459,-0.873552560806274,-0.167088285088539,0.399316936731339,-0.901458501815796,-0.119390547275543,0.4139184653759,-0.902450919151306,-0.17003545165062,0.385078281164169,-0.907084703445435,-0.0661516785621643,0.387535750865936,-0.919478118419647,-0.118908733129501,0.386821419000626,-0.914456129074097,-0.0650477334856987,0.678579390048981,0.731641173362732,-0.0622128061950207,0.67884635925293,0.731640040874481,0.134481802582741,0.683856070041656,0.717116117477417,-0.178593918681145,0.649028301239014,0.739504337310791,-0.0622924156486988,0.679234743118286,0.731272757053375,-0.0650521367788315,0.678634405136108,0.731589794158936,0.0686059668660164,0.677569210529327,0.732252180576324,-0.0648846030235291,0.676537811756134,0.733543813228607,0.135044544935226,0.673548758029938,0.726701498031616,-0.0669687166810036,0.702703058719635,0.708324491977692,-0.17483676970005,0.666633784770966,0.724590599536896,-0.184647515416145,0.662872493267059,0.72560703754425,0.067854568362236,0.672532796859741,0.736950039863586,-0.168697252869606,0.69664078950882,0.69730406999588,-0.0660452172160149,0.691086173057556,0.719748616218567,-0.210042953491211,0.646585822105408,0.733354449272156,-0.182618603110313,0.658243834972382,0.73031884431839,-0.175935387611389,0.660985291004181,0.729482889175415,-0.186339899897575,0.685485661029816,0.703837275505066,-0.171737715601921,0.682100355625153,0.71080607175827,0.0581344105303288,0.606489181518555,0.792963683605194,
- -0.211731195449829,0.689542591571808,0.692604422569275,-0.171852856874466,0.681537747383118,0.711317777633667,-0.186825200915337,0.68469512462616,0.704477787017822,-0.186303943395615,0.755304872989655,0.628335356712341,-0.255882650613785,0.714694559574127,0.650949895381927,-0.364182949066162,0.638741075992584,0.677776217460632,-0.187336340546608,0.756436884403229,0.626664459705353,-0.0636616125702858,0.806715667247772,0.587500691413879,-0.255861788988113,0.721425712108612,0.643490195274353,-0.391357660293579,0.702910125255585,0.59393322467804,-0.255553364753723,0.746026933193207,0.614928007125854,-0.316950142383575,0.728661894798279,0.607119858264923,-0.255719274282455,0.736387312412262,0.626371622085571,-0.0580777674913406,0.794027507305145,0.60510116815567,-0.181739151477814,0.762081980705261,0.621451497077942,-0.255139261484146,0.762052357196808,0.595130562782288,-0.181073725223541,0.766521036624908,0.616163790225983,-0.308400571346283,0.755907595157623,0.577488422393799,-0.0566957890987396,0.790836155414581,0.60939633846283,-0.0245184041559696,0.795962333679199,0.604849338531494,-0.181658789515495,0.762623190879822,0.620810806751251,-0.120912328362465,0.755877315998077,0.643451392650604,-0.29710727930069,0.787825345993042,0.539498507976532,-0.180510506033897,0.770205318927765,0.611718714237213,-0.181134179234505,0.766121625900269,0.616642653942108,-0.0180260371416807,0.766890525817871,0.641524732112885,-0.117118299007416,0.76893013715744,0.628513932228088,-0.202915206551552,0.56169581413269,0.802074432373047,-0.275827974081039,0.532570660114288,0.800179719924927,-0.396436661481857,0.475205391645432,0.785504817962646,-0.203473463654518,0.563631355762482,0.800573706626892,-0.0722455680370331,0.597412109375,0.798673570156097,-0.273412585258484,0.540870845317841,0.795427203178406,-0.396938323974609,0.563969075679779,0.724140107631683,-0.264106035232544,0.571565210819244,0.776892006397247,-0.324022710323334,0.569628477096558,0.755336165428162,-0.267839223146439,0.559489548206329,0.784368276596069,-0.0721288919448853,0.580453455448151,0.811092615127563,
- -0.193041115999222,0.570273399353027,0.798450589179993,-0.19072487950325,0.575782656669617,0.795046150684357,-0.306323736906052,0.6015944480896,0.737732946872711,-0.257615864276886,0.591850936412811,0.763771295547485,-0.072095051407814,0.576212227344513,0.814114153385162,-0.0347145572304726,0.576114416122437,0.816631674766541,-0.192762181162834,0.570939600467682,0.798041939735413,-0.144119068980217,0.54948627948761,0.822979092597961,-0.283717691898346,0.639791786670685,0.71426248550415,-0.188793867826462,0.580338656902313,0.792189359664917,-0.190941005945206,0.575270712375641,0.795364797115326,-0.0394176319241524,0.537442922592163,0.842378497123718,-0.136611253023148,0.563334226608276,0.814857125282288,-0.0547316037118435,0.612082540988922,0.788897693157196,-0.0401533581316471,0.614293694496155,0.788055121898651,0.14148785173893,0.630497872829437,0.763186573982239,-0.163445591926575,0.575932860374451,0.800991177558899,-0.0406955145299435,0.616088509559631,0.786625027656555,-0.0547229610383511,0.612036645412445,0.78893381357193,0.0746483355760574,0.619032204151154,0.78180992603302,-0.0543326251208782,0.609963178634644,0.790564894676209,0.143214613199234,0.619618654251099,0.771726846694946,-0.0595727451145649,0.637605369091034,0.768056333065033,-0.171868652105331,0.590231478214264,0.788725614547729,-0.171244204044342,0.590523242950439,0.788642942905426,0.0744606927037239,0.614309966564178,0.78554368019104,-0.168995693325996,0.626535773277283,0.760850429534912,-0.057284627109766,0.625587046146393,0.778048455715179,-0.206733644008636,0.566178441047668,0.797936797142029,-0.168661683797836,0.585704386234283,0.792782187461853,-0.172325134277344,0.583879590034485,0.79334020614624,-0.174236372113228,0.613633453845978,0.77012699842453,-0.170135676860809,0.612816095352173,0.771693050861359,0.0715068355202675,0.544906258583069,0.835442304611206,-0.21466726064682,0.619344413280487,0.755202412605286,-0.170198902487755,0.612030863761902,0.772302150726318,-0.174603685736656,0.612815618515015,0.77069491147995,-0.119866840541363,0.202679753303528,0.971881210803986,
- -0.106857061386108,0.201990082859993,0.973540723323822,0.0845078229904175,0.187983080744743,0.978529989719391,-0.295978099107742,0.172378182411194,0.939512014389038,-0.106778122484684,0.194563433527946,0.975060760974884,-0.120640836656094,0.193199783563614,0.973714411258698,0.0158609542995691,0.18381954729557,0.982832074165344,-0.120058663189411,0.200344741344452,0.972341477870941,0.0830533280968666,0.174355149269104,0.981174111366272,-0.119849622249603,0.202888712286949,0.971839666366577,-0.236721336841583,0.18074956536293,0.954616546630859,-0.295650005340576,0.168314322829247,0.940351724624634,0.0142835397273302,0.177895575761795,0.983945727348328,-0.216258928179741,0.251245468854904,0.943455219268799,-0.118297435343266,0.221437126398087,0.967972755432129,-0.460027307271957,0.158907204866409,0.873569309711456,-0.29578697681427,0.170003309845924,0.940004765987396,-0.239009216427803,0.172512218356133,0.955570042133331,-0.190168440341949,0.214517533779144,0.958028316497803,-0.221304848790169,0.234364420175552,0.946624219417572,-0.00754360109567642,0.0954302325844765,0.995407581329346,-0.41748896241188,0.347754865884781,0.839505612850189,-0.221582621335983,0.233426064252853,0.946791112422943,-0.190171211957932,0.214513346552849,0.958028674125671,-0.157423630356789,0.54795241355896,0.821563184261322,-0.359469652175903,0.582375645637512,0.729122877120972,-0.208623006939888,0.559153020381927,0.80238664150238,-0.15799506008625,0.546360671520233,0.822512984275818,-0.208372578024864,0.553640007972717,0.806265234947205,-0.0356753617525101,0.522609531879425,0.851825416088104,-0.366972804069519,0.491037547588348,0.790071606636047,-0.278278142213821,0.515616416931152,0.810370922088623,-0.207291200757027,0.531627893447876,0.821219980716705,-0.208134949207306,0.548570096492767,0.809784352779388,-0.1056844368577,0.550439834594727,0.828158676624298,-0.033322136849165,0.54820305109024,0.835681140422821,-0.206282049417496,0.513072669506073,0.833189189434052,-0.265147864818573,0.479455858469009,0.83655172586441,-0.108076199889183,0.562896907329559,0.819430649280548,
- -0.0333882048726082,0.54749584197998,0.836142063140869,-0.104984849691391,0.546796083450317,0.830657720565796,-0.00606951490044594,0.547020137310028,0.837097465991974,-0.262376099824905,0.471889764070511,0.84171187877655,-0.100704029202461,0.546865403652191,0.831142067909241,-0.104686751961708,0.545243501663208,0.831715226173401,-0.104771107435226,0.545682907104492,0.831416428089142,-0.100664339959621,0.546762645244598,0.831214427947998,-0.00742632523179054,0.568511486053467,0.822641849517822,-0.0665754973888397,0.855850398540497,0.51292085647583,-0.0603956468403339,0.856407701969147,0.512755513191223,0.13684007525444,0.856799781322479,0.497160911560059,-0.17865814268589,0.829808473587036,0.528676807880402,-0.0605207495391369,0.856836438179016,0.51202404499054,-0.066566176712513,0.855768620967865,0.513058543205261,0.0691851899027824,0.855151057243347,0.513741433620453,-0.06641685962677,0.854458093643188,0.515257477760315,0.137500256299973,0.849495470523834,0.509363353252411,-0.0684686079621315,0.872303545475006,0.484147369861603,-0.172018885612488,0.843494713306427,0.508847832679749,-0.184765607118607,0.839189767837524,0.511490166187286,0.0683739930391312,0.851558446884155,0.519781827926636,-0.166240632534027,0.86385190486908,0.475524872541428,-0.0675903335213661,0.864708423614502,0.497705638408661,-0.208775743842125,0.826259076595306,0.523171663284302,-0.182718381285667,0.836071252822876,0.51729953289032,-0.173076197504997,0.839517295360565,0.515029430389404,-0.183011919260025,0.85457706451416,0.486009120941162,-0.169312253594399,0.853312075138092,0.493144869804382,0.0581228882074356,0.803912580013275,0.591900587081909,-0.210630849003792,0.855566143989563,0.472907215356827,-0.169414773583412,0.852949619293213,0.493736565113068,-0.183454290032387,0.854042947292328,0.486780434846878,-0.188962653279305,0.899663865566254,0.393570899963379,-0.253270596265793,0.869466483592987,0.424125254154205,-0.361265480518341,0.804697036743164,0.471115559339523,-0.190097510814667,0.900356888771057,0.391433775424957,-0.0630998313426971,0.938864588737488,0.338454931974411,
- -0.253268271684647,0.873697340488434,0.41534098982811,-0.387702584266663,0.842453360557556,0.374111175537109,-0.253044307231903,0.888856172561646,0.381972849369049,-0.316034615039825,0.869627416133881,0.379302352666855,-0.253173738718033,0.882992684841156,0.395255774259567,-0.0575264096260071,0.931570053100586,0.358981907367706,-0.17873615026474,0.906207978725433,0.383197754621506,-0.252699762582779,0.898440599441528,0.359092563390732,-0.17819932103157,0.908468306064606,0.378061175346375,-0.307369738817215,0.887425005435944,0.343512326478958,-0.0561415702104568,0.929690659046173,0.364037662744522,-0.031209010630846,0.932594537734985,0.359574019908905,-0.178673148155212,0.906475961208344,0.382592916488647,-0.121009677648544,0.905588209629059,0.406530231237412,-0.295977503061295,0.907326638698578,0.298589676618576,-0.177745938301086,0.910336971282959,0.3737553358078,-0.178243964910507,0.908282458782196,0.378486633300781,-0.0249588042497635,0.915792882442474,0.400874614715576,-0.11722370237112,0.913931369781494,0.388571888208389,-0.204140067100525,0.763003647327423,0.613312602043152,-0.278871983289719,0.733644366264343,0.619674444198608,-0.403099477291107,0.672030806541443,0.621196866035461,-0.20472826063633,0.76449716091156,0.611253201961517,-0.0675603970885277,0.797640323638916,0.599337756633759,-0.276461184024811,0.740465998649597,0.612600445747375,-0.4035325050354,0.742312908172607,0.534914076328278,-0.267093569040298,0.765564143657684,0.585296928882599,-0.328590124845505,0.757265210151672,0.564427137374878,-0.270871251821518,0.755702614784241,0.59627366065979,-0.067508339881897,0.78425520658493,0.616754710674286,-0.189968377351761,0.771158516407013,0.607640147209167,-0.188109368085861,0.774651110172272,0.60376363992691,-0.310254633426666,0.783827543258667,0.537918627262115,-0.260546058416367,0.781880795955658,0.566372752189636,-0.0674904063344002,0.780879020690918,0.621025800704956,-0.0332920961081982,0.78135484457016,0.623198390007019,-0.189747050404549,0.771576166152954,0.607178926467896,-0.139679655432701,0.755315780639648,0.640302777290344,
- -0.286810487508774,0.814810991287231,0.503808438777924,-0.186537861824036,0.777576684951782,0.600481688976288,-0.188253924250603,0.774380803108215,0.604065358638763,-0.0381849855184555,0.751164257526398,0.659010052680969,-0.131114929914474,0.767849087715149,0.627069890499115,-0.0515101738274097,0.808592915534973,0.586109399795532,-0.0430708900094032,0.809684574604034,0.585282802581787,0.139685317873955,0.81870573759079,0.556963980197906,-0.160338312387466,0.777882635593414,0.607610285282135,-0.0434934459626675,0.810738444328308,0.583790600299835,-0.0515791326761246,0.808869421482086,0.585721671581268,0.0731034204363823,0.812835872173309,0.57788747549057,-0.0510880723595619,0.806897401809692,0.588478267192841,0.141509085893631,0.810677111148834,0.568135380744934,-0.0563866272568703,0.827797651290894,0.558185994625092,-0.165598854422569,0.789717674255371,0.590697109699249,-0.168280392885208,0.788626968860626,0.591395974159241,0.0729169324040413,0.809541761875153,0.582516491413116,-0.162809759378433,0.814686357975006,0.556578159332275,-0.0538875162601471,0.818044185638428,0.572625339031219,-0.206752121448517,0.766631782054901,0.607889235019684,-0.165734380483627,0.785209655761719,0.596638858318329,-0.166070088744164,0.785065054893494,0.596735775470734,-0.171631559729576,0.804137110710144,0.56912761926651,-0.164119154214859,0.803470492362976,0.572276294231415,0.0698442235589027,0.757113873958588,0.649538576602936,-0.214461028575897,0.80566531419754,0.552186489105225,-0.164174199104309,0.802980601787567,0.57294774055481,-0.171973764896393,0.803550839424133,0.569851815700531,-0.117861054837704,0.46614682674408,0.876821458339691,-0.109506323933601,0.466020554304123,0.877971172332764,0.0788413137197495,0.454517513513565,0.887241721153259,-0.296572893857956,0.427917897701263,0.853774428367615,-0.109467968344688,0.458955764770508,0.881689548492432,-0.118602067232132,0.457843959331512,0.881085991859436,0.0157344713807106,0.451173543930054,0.892297565937042,-0.118056587874889,0.463970929384232,0.877948462963104,0.0774598717689514,0.442478775978088,0.89342737197876,
- -0.117807179689407,0.466744691133499,0.876510679721832,-0.231855228543282,0.441513508558273,0.866780817508698,-0.296244412660599,0.424188792705536,0.855747103691101,0.0141365900635719,0.445801973342896,0.895020008087158,-0.212195977568626,0.504074454307556,0.837186813354492,-0.116349063813686,0.482619076967239,0.868067800998688,-0.45842769742012,0.397026717662811,0.795118749141693,-0.296387195587158,0.425803244113922,0.854895412921906,-0.234348490834236,0.433125734329224,0.870334923267365,-0.184813261032104,0.470896065235138,0.862612843513489,-0.217540711164474,0.487662881612778,0.845494508743286,-0.00793542712926865,0.370025962591171,0.928987503051758,-0.416775315999985,0.568248927593231,0.709500968456268,-0.217782855033875,0.486909210681915,0.845866441726685,-0.184727400541306,0.471017062664032,0.862565159797668,-0.0706502869725227,0.984926342964172,0.157887876033783,-0.0575038567185402,0.985903859138489,0.157121002674103,0.133605942130089,0.980670094490051,0.142953440546989,-0.175837486982346,0.967564105987549,0.181386306881905,-0.0576969459652901,0.986099600791931,0.155816331505775,-0.0706007331609726,0.984797239303589,0.158713221549988,0.0696144625544548,0.984880030155182,0.158635273575783,-0.0705042257905006,0.984544217586517,0.160318344831467,0.134205505251884,0.978470206260681,0.156796306371689,-0.0725117474794388,0.989354133605957,0.126176938414574,-0.169187292456627,0.972903609275818,0.157589167356491,-0.182021275162697,0.969911873340607,0.161676466464996,0.0687916651368141,0.983777761459351,0.1656773686409,-0.163520097732544,0.979148685932159,0.120537176728249,-0.0717454329133034,0.987633407115936,0.139401733875275,-0.209343701601028,0.961430311203003,0.178401246666908,-0.180002272129059,0.969188153743744,0.16814698278904,-0.17025326192379,0.971536099910736,0.164716139435768,-0.182223737239838,0.974147081375122,0.133537024259567,-0.166757926344872,0.97578626871109,0.141537830233574,0.0585252642631531,0.966360330581665,0.250444710254669,-0.211211368441582,0.970007717609406,0.120311327278614,-0.166851937770844,0.975680589675903,0.142154172062874,
- -0.182663440704346,0.973941564559937,0.134432166814804,-0.187817335128784,0.981749653816223,0.0298709757626057,-0.252761602401733,0.965003490447998,0.0698559060692787,-0.362730920314789,0.921495795249939,0.138823285698891,-0.188905835151672,0.981603622436523,0.0277299098670483,-0.065587006509304,0.997269213199615,-0.0339474081993103,-0.252699196338654,0.96567302942276,0.0601553805172443,-0.389998555183411,0.920188307762146,0.0339797027409077,-0.252253115177155,0.967369258403778,0.0237733647227287,-0.319835841655731,0.947035431861877,0.0287945307791233,-0.252469420433044,0.966852426528931,0.0381535291671753,-0.0601152330636978,0.998110353946686,-0.0127312801778317,-0.18436361849308,0.982654571533203,0.020002506673336,-0.251763045787811,0.967788636684418,-0.000792340375483036,-0.183567598462105,0.982934892177582,0.0119138490408659,-0.311208337545395,0.950265169143677,-0.0120628252625465,-0.0587558373808861,0.99824446439743,-0.00747677311301231,-0.0258520506322384,0.999562501907349,-0.0143706118687987,-0.184268370270729,0.982691764831543,0.0190281253308058,-0.120221331715584,0.991907179355621,0.0408298335969448,-0.299760431051254,0.951954483985901,-0.0626605004072189,-0.182903379201889,0.983116924762726,0.00525617646053433,-0.18364842236042,0.982909560203552,0.0127295106649399,-0.0192201398313046,0.999302744865417,0.032009482383728,-0.116294644773006,0.99299818277359,0.0207424964755774,-0.207786709070206,0.935358703136444,0.286232441663742,-0.274932950735092,0.913013577461243,0.301360756158829,-0.397160887718201,0.858085989952087,0.325502216815948,-0.208434104919434,0.936056554317474,0.283467054367065,-0.0723298192024231,0.962786674499512,0.260403960943222,-0.272547036409378,0.916577398777008,0.292581677436829,-0.397188305854797,0.890421807765961,0.22223973274231,-0.263351052999496,0.929184377193451,0.259350448846817,-0.321551859378815,0.914897978305817,0.244061931967735,-0.267035990953445,0.924340605735779,0.272554934024811,-0.0722449794411659,0.957099556922913,0.280608415603638,-0.186250731348991,0.942571520805359,0.277253985404968,
- -0.184914350509644,0.943856179714203,0.273755729198456,-0.303898125886917,0.929007530212402,0.211165904998779,-0.256933480501175,0.936997473239899,0.236687928438187,-0.0722190216183662,0.955624520778656,0.285598009824753,-0.0319757834076881,0.957162022590637,0.287782073020935,-0.186090975999832,0.942725956439972,0.276835650205612,-0.139996826648712,0.939393520355225,0.312954813241959,-0.281487613916397,0.944352865219116,0.17018361389637,-0.183763712644577,0.944948375225067,0.270746231079102,-0.184992998838425,0.943781137466431,0.273961514234543,-0.0369608998298645,0.942326426506042,0.332648098468781,-0.131499335169792,0.946032643318176,0.296192795038223,-0.0536283776164055,0.968425035476685,0.243468746542931,-0.0415052883327007,0.969442188739777,0.241783529520035,0.14219456911087,0.966893494129181,0.211890652775764,-0.1618722230196,0.947720408439636,0.274996995925903,-0.0419946275651455,0.969921708106995,0.239767447113991,-0.0536457076668739,0.968453466892242,0.243351846933365,0.0726549327373505,0.969517827033997,0.234001189470291,-0.0532278046011925,0.967764258384705,0.246169000864029,0.143981024622917,0.963573217391968,0.225380152463913,-0.0583919957280159,0.975743293762207,0.210986629128456,-0.171280011534691,0.95118510723114,0.256729394197464,-0.169774428009987,0.951614260673523,0.25613859295845,0.0724653154611588,0.968199968338013,0.239452630281448,-0.168421015143394,0.962489306926727,0.212717607617378,-0.0560710355639458,0.972302913665771,0.226898893713951,-0.203318104147911,0.938931882381439,0.277612388134003,-0.167197734117508,0.950386047363281,0.262319386005402,-0.171736732125282,0.949038326740265,0.264258682727814,-0.168263286352158,0.958429276943207,0.230436250567436,-0.16957414150238,0.958331227302551,0.229882583022118,0.0693197995424271,0.944553136825562,0.320958524942398,-0.210937663912773,0.953748404979706,0.214171528816223,-0.169636443257332,0.958092093467712,0.230831071734428,-0.168577879667282,0.958177924156189,0.23125022649765,-0.121526017785072,0.758779644966125,0.639910042285919,-0.107042476534843,0.75932502746582,0.641847014427185,
- 0.0798982009291649,0.751901268959045,0.65441632270813,-0.295826345682144,0.715082168579102,0.633359611034393,-0.106980204582214,0.754397749900818,0.647641360759735,-0.12233642488718,0.752277433872223,0.647389054298401,0.0168706327676773,0.750676155090332,0.660454928874969,-0.121710874140263,0.757311701774597,0.641611754894257,0.0785213708877563,0.742984533309937,0.664686679840088,-0.121543347835541,0.758642435073853,0.640069484710693,-0.235920265316963,0.731150209903717,0.640125751495361,-0.295494049787521,0.7123863697052,0.636544585227966,0.0152217317372561,0.746553957462311,0.665150821208954,-0.215802505612373,0.779541075229645,0.58800083398819,-0.119888603687286,0.771413087844849,0.624938905239105,-0.459204852581024,0.664073884487152,0.590031206607819,-0.295631170272827,0.713495314121246,0.635237514972687,-0.238209068775177,0.725176870822906,0.646045625209808,-0.185633704066277,0.758301496505737,0.62491512298584,-0.220827788114548,0.768108785152435,0.601035892963409,-0.00682789925485849,0.68859738111496,0.725111782550812,-0.417668342590332,0.79144012928009,0.446291089057922,-0.22109916806221,0.767479479312897,0.601739525794983,-0.185562998056412,0.758379697799683,0.624841451644897,-0.0694426670670509,0.99243026971817,-0.101291596889496,-0.0552867725491524,0.993210077285767,-0.10235770791769,0.136918261647224,0.983918488025665,-0.114707574248314,-0.173608958721161,0.981985628604889,-0.0745930522680283,-0.0555328577756882,0.993023037910461,-0.104025915265083,-0.0694067180156708,0.992497146129608,-0.100658603012562,0.0671062618494034,0.992677211761475,-0.10044326633215,-0.069299153983593,0.992694675922394,-0.0987669602036476,0.137574464082718,0.985371768474579,-0.100577056407928,-0.0712332800030708,0.988495051860809,-0.133428990840912,-0.176484137773514,0.979638040065765,-0.0957222282886505,-0.179863199591637,0.979144096374512,-0.0944781601428986,0.0663590654730797,0.993373095989227,-0.0938420817255974,-0.170106887817383,0.975867748260498,-0.136915966868401,-0.0704668238759041,0.990327417850494,-0.119524963200092,
- -0.208713591098785,0.975050747394562,-0.0755953565239906,-0.17786531150341,0.980103015899658,-0.0881029665470123,-0.177611842751503,0.98013973236084,-0.088204987347126,-0.186188220977783,0.974682331085205,-0.123808160424232,-0.173132583498955,0.977847576141357,-0.117641195654869,0.0564149543642998,0.998375535011292,-0.00797703862190247,-0.210587948560715,0.968433678150177,-0.133375868201256,-0.173255577683449,0.977920830249786,-0.116847530007362,-0.186668246984482,0.974718809127808,-0.122793897986412,-0.186095610260963,0.956376731395721,-0.225193157792091,-0.248647570610046,0.950972735881805,-0.183916509151459,-0.364605575799942,0.925570428371429,-0.101893082261086,-0.187110528349876,0.955731630325317,-0.22708298265934,-0.0605083107948303,0.954431712627411,-0.292230784893036,-0.248637273907661,0.949176490306854,-0.192985594272614,-0.391616493463516,0.897233188152313,-0.203983753919601,-0.248409643769264,0.941725015640259,-0.226818531751633,-0.318900018930435,0.922765672206879,-0.216347590088844,-0.248534873127937,0.944794237613678,-0.213527992367744,-0.0548400469124317,0.961056172847748,-0.27085742354393,-0.181179150938988,0.955004990100861,-0.23481822013855,-0.248084217309952,0.9360072016716,-0.249689266085625,-0.180559441447258,0.953495919704437,-0.241337656974792,-0.310026556253433,0.915508329868317,-0.256374776363373,-0.0534374229609966,0.962611317634583,-0.265563279390335,-0.0235700756311417,0.962041318416595,-0.271884024143219,-0.181105136871338,0.9548259973526,-0.235602274537086,-0.12129221111536,0.96868097782135,-0.216669231653214,-0.298334300518036,0.904363334178925,-0.305161595344543,-0.180035054683685,0.952201128005981,-0.246780067682266,-0.180616244673729,0.953635275363922,-0.240744143724442,-0.0168670993298292,0.973915636539459,-0.226282522082329,-0.117537423968315,0.964640855789185,-0.235908776521683,-0.202442333102226,0.97870534658432,0.0339577682316303,-0.276420772075653,0.959380626678467,0.0563961267471313,-0.402027994394302,0.910694420337677,0.0949163213372231,-0.202991306781769,0.978671967983246,0.0315544381737709,
- -0.0706885010004044,0.997493386268616,0.00321012153290212,-0.274000823497772,0.96058714389801,0.0468619428575039,-0.402198016643524,0.915418386459351,-0.0156831983476877,-0.264654248952866,0.96428120136261,0.0109470402821898,-0.326401144266129,0.945230960845947,-0.000838398816995323,-0.268409132957459,0.962975203990936,0.0252078920602798,-0.070667564868927,0.997197985649109,0.0245404448360205,-0.185727223753929,0.982282102108002,0.02504912763834,-0.184472143650055,0.982601225376129,0.021559426560998,-0.308377116918564,0.950526058673859,-0.0374674648046494,-0.25814551115036,0.966014921665192,-0.0132737196981907,-0.070657417178154,0.997054696083069,0.029823113232851,-0.034945048391819,0.998897552490234,0.0313450843095779,-0.18557895720005,0.982320427894592,0.0246365629136562,-0.141251668334007,0.988202095031738,0.0592011660337448,-0.285340696573257,0.954849481582642,-0.0827237367630005,-0.18338942527771,0.982865214347839,0.0185543708503246,-0.184539914131165,0.982584357261658,0.0217476841062307,-0.0396357886493206,0.996193170547485,0.0776412710547447,-0.133108720183373,0.990217626094818,0.04184665158391,-0.0496794581413269,0.99865448474884,-0.0148713747039437,-0.0443090982735157,0.998894393444061,-0.0157085247337818,0.136928886175156,0.989622354507446,-0.0435680784285069,-0.161128684878349,0.986703753471375,0.021288737654686,-0.0446900650858879,0.998850584030151,-0.0173319056630135,-0.0497899428009987,0.998637080192566,-0.0156505722552538,0.0714079141616821,0.997168719768524,-0.0235719252377748,-0.0492539629340172,0.998715698719025,-0.0118724880740047,0.138703987002373,0.989879786968231,-0.0299897976219654,-0.0545262172818184,0.997296988964081,-0.0492511801421642,-0.165706798434258,0.986174941062927,0.000459654256701469,-0.16909022629261,0.985598623752594,0.00198991224169731,0.0712478682398796,0.997292339801788,-0.0182120557874441,-0.162923589348793,0.98574823141098,-0.0419079773128033,-0.0519399791955948,0.998173415660858,-0.0308553762733936,-0.203647598624229,0.978686153888702,0.0264789033681154,-0.166513666510582,0.986004590988159,0.00825523864477873,
- -0.166176334023476,0.98606288433075,0.00809028465300798,-0.174967631697655,0.984208106994629,-0.026849240064621,-0.164224356412888,0.986162424087524,-0.0226710122078657,0.0684489607810974,0.995437264442444,0.0664789900183678,-0.211188390851021,0.976673305034637,-0.0388444773852825,-0.164279386401176,0.986172139644623,-0.0218363180756569,-0.175340488553047,0.984168708324432,-0.0258380770683289,-0.117912039160728,0.898301362991333,0.423262864351273,-0.109577938914299,0.898887515068054,0.424256891012192,0.0821614563465118,0.894876480102539,0.438686281442642,-0.293244063854218,0.854924023151398,0.427916884422302,-0.109510004520416,0.895450294017792,0.431481629610062,-0.118685409426689,0.894192099571228,0.431664615869522,0.0152928326278925,0.89560204744339,0.44459342956543,-0.118116587400436,0.89722740650177,0.425477832555771,0.0807578265666962,0.888847053050995,0.45103132724762,-0.11785838752985,0.898581564426422,0.422682732343674,-0.232308477163315,0.872424006462097,0.43001064658165,-0.29292032122612,0.853233695030212,0.431497395038605,0.0137397721409798,0.892967939376831,0.449910581111908,-0.212386965751648,0.904942870140076,0.36874133348465,-0.116339504718781,0.906256258487701,0.406404495239258,-0.458695471286774,0.793900609016418,0.399149477481842,-0.293024927377701,0.853778541088104,0.430347055196762,-0.234804272651672,0.867872357368469,0.437795042991638,-0.185462266206741,0.893678665161133,0.408585697412491,-0.217763260006905,0.896801173686981,0.385132163763046,-0.00804930180311203,0.852573990821838,0.522544622421265,-0.416066944599152,0.880093574523926,0.228743523359299,-0.218010455369949,0.896416068077087,0.385888248682022,-0.185388475656509,0.893737196922302,0.408491194248199,-0.0672309026122093,0.892777562141418,-0.445453077554703,-0.057129230350256,0.893027722835541,-0.446360498666763,0.13655212521553,0.880065858364105,-0.454794257879257,-0.176233425736427,0.892218410968781,-0.415798187255859,-0.0573347732424736,0.892402708530426,-0.44758266210556,-0.0672134459018707,0.892900884151459,-0.445208191871643,0.0635475814342499,0.893474757671356,-0.444595038890839,
- -0.0670604407787323,0.893978476524353,-0.443063825368881,0.137157440185547,0.886419594287872,-0.442095160484314,-0.0692874938249588,0.877485990524292,-0.474570959806442,-0.174698635935783,0.882719933986664,-0.436217963695526,-0.182412385940552,0.882664918899536,-0.433160871267319,0.0628960207104683,0.896137237548828,-0.439297556877136,-0.168641179800034,0.864989995956421,-0.472601801156998,-0.0683533549308777,0.884619474411011,-0.461276769638062,-0.210551574826241,0.885477960109711,-0.414242476224899,-0.180388182401657,0.885850012302399,-0.427469104528427,-0.175781786441803,0.885822415351868,-0.429440855979919,-0.18203017115593,0.869813024997711,-0.458574235439301,-0.171646744012833,0.873864948749542,-0.454859912395477,0.0532941520214081,0.930842339992523,-0.361513793468475,-0.212555736303329,0.858108043670654,-0.467408448457718,-0.171760380268097,0.874197483062744,-0.454177439212799,-0.182463437318802,0.870167136192322,-0.457729458808899,-0.189856559038162,0.815914750099182,-0.546111464500427,-0.24720111489296,0.824567437171936,-0.508901000022888,-0.360991030931473,0.83003705739975,-0.425116389989853,-0.191036552190781,0.814441323280334,-0.547896325588226,-0.0648574829101563,0.790819108486176,-0.608603954315186,-0.247151598334312,0.819758594036102,-0.516635239124298,-0.388208001852036,0.768444359302521,-0.508711814880371,-0.246786534786224,0.801240980625153,-0.545077383518219,-0.315905690193176,0.787622570991516,-0.529012799263,-0.246963411569595,0.808604717254639,-0.534010827541351,-0.0593451634049416,0.80396956205368,-0.591701924800873,-0.183409556746483,0.810543239116669,-0.55621999502182,-0.246374428272247,0.788080334663391,-0.564117908477783,-0.182675212621689,0.806306838989258,-0.562582433223724,-0.307246834039688,0.767049252986908,-0.563236057758331,-0.0579785108566284,0.807158529758453,-0.58748060464859,-0.0243686661124229,0.80412220954895,-0.593964338302612,-0.18332114815712,0.810032486915588,-0.556992590427399,-0.121262766420841,0.829766273498535,-0.544778287410736,-0.295856297016144,0.739900171756744,-0.604166209697723,
- -0.182054668664932,0.802738070487976,-0.567862272262573,-0.182743743062019,0.806701600551605,-0.561994016170502,-0.0177960004657507,0.831172585487366,-0.555729806423187,-0.117438212037086,0.819186270236969,-0.561375200748444,-0.207743853330612,0.927106261253357,-0.311955988407135,-0.278081715106964,0.917180180549622,-0.285396248102188,-0.39912223815918,0.886498868465424,-0.23413959145546,-0.208401620388031,0.926064252853394,-0.314601004123688,-0.0698628425598145,0.934344232082367,-0.349456876516342,-0.275663524866104,0.914905309677124,-0.294886261224747,-0.399279654026031,0.852301359176636,-0.337873190641403,-0.266286104917526,0.905486345291138,-0.330433368682861,-0.326232641935349,0.884093284606934,-0.334591299295425,-0.270068615674973,0.909395754337311,-0.316326230764389,-0.0696875527501106,0.94167423248291,-0.329231381416321,-0.191299617290497,0.926840603351593,-0.323064923286438,-0.189217656850815,0.925315678119659,-0.328614622354507,-0.308283686637878,0.876093983650208,-0.370702803134918,-0.259747445583344,0.898400247097015,-0.354130506515503,-0.0696390941739082,0.943424642086029,-0.324191838502884,-0.0318185426294804,0.94574511051178,-0.32334765791893,-0.191050633788109,0.926659822463989,-0.323730260133743,-0.143350422382355,0.944557249546051,-0.295401811599731,-0.285320281982422,0.864127576351166,-0.41457924246788,-0.187483862042427,0.924023330211639,-0.333212584257126,-0.189402222633362,0.925452053546906,-0.328123986721039,-0.0366625152528286,0.959847033023834,-0.278118133544922,-0.135652601718903,0.940562427043915,-0.311353266239166,-0.0551443658769131,0.929099977016449,-0.365694224834442,-0.0414308421313763,0.928934991359711,-0.367917388677597,0.142329260706902,0.909434974193573,-0.390730828046799,-0.165419667959213,0.930455446243286,-0.326939046382904,-0.0419257432222366,0.928144037723541,-0.369852781295776,-0.0551269315183163,0.929146528244019,-0.365578591823578,0.0715867057442665,0.92457640171051,-0.374210923910141,-0.0547680929303169,0.930100619792938,-0.363198906183243,0.144104033708572,0.914592683315277,-0.377828419208527,
- -0.0597231425344944,0.91628086566925,-0.396058738231659,-0.169794082641602,0.922793924808502,-0.345863312482834,-0.173182219266891,0.922779262065887,-0.34421843290329,0.0714221596717834,0.926601111888886,-0.36920091509819,-0.166828036308289,0.906674087047577,-0.387441039085388,-0.0575701594352722,0.922458052635193,-0.381781041622162,-0.202953189611435,0.924998342990875,-0.321229219436646,-0.170562580227852,0.925420939922333,-0.338385224342346,-0.170277118682861,0.925419092178345,-0.338533878326416,-0.172545000910759,0.912069976329803,-0.371963262557983,-0.168074518442154,0.913448452949524,-0.370625078678131,0.0685709416866302,0.95478218793869,-0.289290577173233,-0.210322737693787,0.900325894355774,-0.381021857261658,-0.168137431144714,0.913790345191956,-0.369752824306488,-0.172900408506393,0.912370979785919,-0.371059060096741,-0.116884380578995,0.990010976791382,0.078843466937542,-0.110082596540451,0.990743339061737,0.0794333517551422,0.0854494646191597,0.991839408874512,0.0946200639009476,-0.300091832876205,0.948782742023468,0.0987733155488968,-0.110008172690868,0.990073561668396,0.0874799340963364,-0.117587842047215,0.989156782627106,0.0879885256290436,0.0145407728850842,0.994924783706665,0.0995658934116364,-0.117078699171543,0.989784598350525,0.0813575237989426,0.0840060040354729,0.990542829036713,0.108479730784893,-0.116815693676472,0.990089297294617,0.0779571682214737,-0.232660308480263,0.967980980873108,0.0942446514964104,-0.299716413021088,0.948423564434052,0.103261694312096,0.0130182132124901,0.994352221488953,0.105328775942326,-0.213021010160446,0.976723253726959,0.0251734331250191,-0.115444906055927,0.99146980047226,0.0604982636868954,-0.455821216106415,0.885176301002502,0.0932212173938751,-0.299920201301575,0.948620200157166,0.100834354758263,-0.235095024108887,0.966490745544434,0.103082105517387,-0.188041687011719,0.98001891374588,0.0648334696888924,-0.218266308307648,0.974930286407471,0.0432549193501472,-0.00880015641450882,0.98226261138916,0.187304154038429,-0.414452195167542,0.905036687850952,-0.0955928862094879,
- -0.218514055013657,0.97483617067337,0.0441153161227703,-0.188010632991791,0.980027854442596,0.0647872015833855,-0.199954673647881,0.203699097037315,0.958396971225739,-0.404342919588089,0.230801790952683,0.885007083415985,-0.247102677822113,0.210697129368782,0.945804953575134,-0.200247257947922,0.201470881700516,0.958806872367859,-0.245742037892342,0.204503923654556,0.947517335414886,-0.0662667900323868,0.190198138356209,0.97950667142868,-0.393746107816696,0.124852761626244,0.910700678825378,-0.307294547557831,0.156817764043808,0.938604474067688,-0.240261882543564,0.17994624376297,0.953883409500122,-0.24454528093338,0.199089050292969,0.948979020118713,-0.151189371943474,0.211381331086159,0.965639531612396,-0.0690785348415375,0.220480114221573,0.972942292690277,-0.235659033060074,0.15976893901825,0.95861291885376,-0.287573248147964,0.11766666918993,0.95050323009491,-0.154955178499222,0.22218531370163,0.962612390518188,-0.0690161138772964,0.219802260398865,0.973100066184998,-0.149647951126099,0.206967949867249,0.966834902763367,-0.0502571277320385,0.222567275166512,0.973621189594269,-0.283233970403671,0.109175071120262,0.952816486358643,-0.138046652078629,0.209283977746964,0.968061625957489,-0.14813257753849,0.202634215354919,0.9679856300354,-0.148641154170036,0.204088106751442,0.96760219335556,-0.137921020388603,0.209046006202698,0.968130946159363,-0.0555249862372875,0.245896369218826,0.96770453453064,-0.163288161158562,0.885453820228577,0.435095995664597,-0.360383450984955,0.86871725320816,0.339785397052765,-0.209084659814835,0.885403454303741,0.415143996477127,-0.164005249738693,0.884321987628937,0.437123417854309,-0.208834633231163,0.882558465003967,0.421282142400742,-0.0343794785439968,0.878351747989655,0.476776838302612,-0.368093639612198,0.819815754890442,0.438644766807556,-0.277689844369888,0.851884543895721,0.444050818681717,-0.207749724388123,0.870886266231537,0.445418000221252,-0.208597019314766,0.87991464138031,0.426892846822739,-0.107228994369507,0.890702068805695,0.44175985455513,-0.0319225154817104,0.892606019973755,0.449705958366394,
- -0.206740617752075,0.860770165920258,0.465116202831268,-0.264562398195267,0.833832383155823,0.484489738941193,-0.109505251049995,0.896787106990814,0.428697675466537,-0.0319870449602604,0.892244517803192,0.45041811466217,-0.106510527431965,0.888754963874817,0.44583648443222,-0.0103379189968109,0.892324388027191,0.451276391744614,-0.261740356683731,0.82982462644577,0.492831707000732,-0.10225373506546,0.888741374015808,0.446859061717987,-0.106106236577034,0.887653768062592,0.448120772838593,-0.106231816112995,0.887996315956116,0.447412014007568,-0.102297455072403,0.888801217079163,0.446729987859726,-0.0115562155842781,0.903211116790771,0.429041057825089,-0.159838482737541,-0.276161968708038,0.947726964950562,-0.358564823865891,-0.184686616063118,0.915053069591522,-0.209655225276947,-0.254828274250031,0.943984866142273,-0.160468637943268,-0.278090119361877,0.947056353092194,-0.209381490945816,-0.261430621147156,0.942238569259644,-0.0349069833755493,-0.316850364208221,0.947832942008972,-0.366287410259247,-0.289630204439163,0.884278118610382,-0.275137573480606,-0.289319306612015,0.916839003562927,-0.208202689886093,-0.287428915500641,0.934899091720581,-0.209120020270348,-0.267516314983368,0.940586984157562,-0.111351698637009,-0.279899001121521,0.953549921512604,-0.0324644595384598,-0.287804305553436,0.95713883638382,-0.207114830613136,-0.308733820915222,0.928324818611145,-0.262270510196686,-0.331411123275757,0.906300663948059,-0.113244071602821,-0.268125653266907,0.9567049741745,-0.0325328782200813,-0.288616716861725,0.95689183473587,-0.110610373318195,-0.284471213817596,0.952282309532166,-0.00893126521259546,-0.289520084857941,0.957130372524261,-0.259383499622345,-0.340530663728714,0.903747320175171,-0.103058181703091,-0.286085397005081,0.95264595746994,-0.109932117164135,-0.288634747266769,0.951107203960419,-0.110160879790783,-0.287232488393784,0.951505124568939,-0.103152990341187,-0.285791873931885,0.952723681926727,-0.0102358870208263,-0.265384584665298,0.964088320732117,0.154358327388763,0.345872521400452,0.925497651100159,
- -0.0175233408808708,0.359514057636261,0.932975113391876,0.206115022301674,0.339632779359818,0.917696118354797,0.152025431394577,0.327661335468292,0.932484030723572,-0.0215418916195631,0.360277384519577,0.932596445083618,-0.0175235830247402,0.359648168087006,0.932923376560211,0.204600855708122,0.377194195985794,0.903251349925995,-0.0175153203308582,0.355171680450439,0.934636950492859,0.0609921887516975,0.365041375160217,0.928991317749023,-0.0175248943269253,0.360378682613373,0.932641446590424,-0.021379379555583,0.361083388328552,0.932288408279419,-0.158313289284706,0.382503479719162,0.910290122032166,0.0597935058176517,0.370731025934219,0.92681348323822,-0.0175155233591795,0.355278670787811,0.934596359729767,-0.116469487547874,0.332204103469849,0.935988962650299,-0.119248248636723,0.361014485359192,0.924904644489288,-0.0175286661833525,0.362512201070786,0.931814193725586,-0.160528317093849,0.359319478273392,0.919304192066193,0.163386419415474,0.729146957397461,-0.664567232131958,-0.0107153253629804,0.732741057872772,-0.680423200130463,0.214147180318832,0.72379070520401,-0.655948162078857,0.16105717420578,0.742342889308929,-0.650375008583069,-0.0176902916282415,0.731499075889587,-0.681612968444824,-0.0107215102761984,0.732376098632813,-0.680815935134888,0.212218314409256,0.696773707866669,-0.685178697109222,-0.0106536848470569,0.73635733127594,-0.676509022712708,0.0632939338684082,0.727427065372467,-0.683259606361389,-0.0107311271131039,0.731807827949524,-0.681426525115967,-0.0175111573189497,0.730824291706085,-0.682341039180756,-0.151670977473259,0.704106032848358,-0.693707883358002,0.0621719062328339,0.723678886890411,-0.687330782413483,-0.0106524555012584,0.73642909526825,-0.676430940628052,-0.0999095588922501,0.746450960636139,-0.657897472381592,-0.102805927395821,0.72665011882782,-0.679272174835205,-0.0107480911538005,0.730803072452545,-0.682503759860992,-0.154003381729126,0.721624135971069,-0.674938261508942,0.157089188694954,-0.666310250759125,-0.728940188884735,-0.016075175255537,-0.680515766143799,-0.732557117938995,
- 0.209004864096642,-0.657971441745758,-0.723457336425781,0.154874056577683,-0.652004659175873,-0.742229163646698,-0.0231585502624512,-0.681461751461029,-0.731487274169922,-0.0160798635333776,-0.680714190006256,-0.732372641563416,0.206821873784065,-0.687333166599274,-0.696274280548096,-0.0159867685288191,-0.676773250102997,-0.736018061637878,0.0576203092932701,-0.684133172035217,-0.727077543735504,-0.0160942990332842,-0.681325376033783,-0.731803774833679,-0.0229844376444817,-0.682193875312805,-0.730809986591339,-0.15717314183712,-0.692391395568848,-0.704195201396942,0.0564467906951904,-0.688261330127716,-0.723263502120972,-0.015987005084753,-0.676783204078674,-0.736008822917938,-0.110935643315315,-0.65602058172226,-0.746545612812042,-0.114331722259521,-0.678280651569366,-0.725853800773621,-0.0161287970840931,-0.682785749435425,-0.730440676212311,-0.159311264753342,-0.673983812332153,-0.721363842487335,0.164030253887177,0.658393621444702,-0.734582841396332,-0.0118232471868396,0.660450994968414,-0.750776171684265,0.209838926792145,0.654405057430267,-0.726444602012634,0.16177362203598,0.673119425773621,-0.721622943878174,-0.016070818528533,0.659493923187256,-0.751538038253784,-0.0118285054340959,0.660070955753326,-0.751110076904297,0.207997858524323,0.625375807285309,-0.752091705799103,-0.0117630511522293,0.664771914482117,-0.746953725814819,0.0659736394882202,0.654638051986694,-0.753058195114136,-0.0118380207568407,0.65938264131546,-0.751714289188385,-0.0158834364265203,0.658746778964996,-0.752197027206421,-0.15455935895443,0.63010048866272,-0.760976195335388,0.064824566245079,0.650303423404694,-0.75690370798111,-0.0117615666240454,0.664878070354462,-0.74685937166214,-0.104084521532059,0.676993787288666,-0.728591680526733,-0.106967955827713,0.654135167598724,-0.748775720596313,-0.0118545359000564,0.658184885978699,-0.752763032913208,-0.156746029853821,0.649608016014099,-0.743935525417328,0.154040724039078,-0.552178978919983,-0.819371581077576,-0.0133522553369403,-0.565245509147644,-0.82481461763382,0.209817200899124,-0.54421591758728,-0.812284290790558,
- 0.151835575699806,-0.536439180374146,-0.830168128013611,-0.0154387410730124,-0.565541744232178,-0.824575126171112,-0.0133530478924513,-0.565279006958008,-0.824791669845581,0.207498520612717,-0.577179074287415,-0.789815604686737,-0.0132581647485495,-0.561262309551239,-0.827531754970551,0.0606830343604088,-0.569769620895386,-0.819561004638672,-0.0133683709427714,-0.565927684307098,-0.824346482753754,-0.015295721590519,-0.566214919090271,-0.824115693569183,-0.154565319418907,-0.58118212223053,-0.798959910869598,0.0594755411148071,-0.574553251266479,-0.816303431987762,-0.0132613591849804,-0.561397552490234,-0.827439963817596,-0.112848065793514,-0.538262903690338,-0.835187613964081,-0.116385877132416,-0.563890218734741,-0.817607581615448,-0.0134132439270616,-0.567827343940735,-0.823038399219513,-0.156559824943542,-0.560696303844452,-0.813085913658142,0.154043838381767,-0.552201449871063,-0.819355905056,-0.0133527694270015,-0.565267264842987,-0.824799835681915,0.209815740585327,-0.544239282608032,-0.812269151210785,0.151838079094887,-0.536456942558289,-0.830156207084656,-0.0154352709650993,-0.565558075904846,-0.824564039707184,-0.0133534446358681,-0.565295815467834,-0.824780166149139,0.20749394595623,-0.577239036560059,-0.789772987365723,-0.0132597489282489,-0.561329364776611,-0.827486217021942,0.0606670081615448,-0.569833278656006,-0.819517850875854,-0.0133686792105436,-0.565940737724304,-0.824337542057037,-0.0152930468320847,-0.566227555274963,-0.824107110500336,-0.154564261436462,-0.581192553043365,-0.798952519893646,0.0594631060957909,-0.574602365493774,-0.816269755363464,-0.0132625829428434,-0.561449289321899,-0.827404856681824,-0.112855136394501,-0.538313925266266,-0.835153818130493,-0.116382345557213,-0.563864529132843,-0.817625820636749,-0.0134126273915172,-0.567801237106323,-0.82305645942688,-0.156562283635139,-0.560670256614685,-0.813103437423706,0.155433282256126,0.0423324145376682,0.986939013004303,-0.016139654442668,0.0527849979698658,0.99847549200058,0.203849628567696,0.0390990898013115,0.978221118450165,0.153048425912857,0.0224848072975874,0.987962901592255,
- -0.021680973470211,0.0534673109650612,0.998334228992462,-0.0161377061158419,0.0525085255503654,0.99849009513855,0.202131047844887,0.0790155678987503,0.97616583108902,-0.0161103438585997,0.0486406423151493,0.998686492443085,0.0525753870606422,0.0584710873663425,0.996903657913208,-0.0161426849663258,0.0532160364091396,0.998452544212341,-0.0215202942490578,0.0542972981929779,0.998292922973633,-0.166308388113976,0.0828388333320618,0.982588052749634,0.0514866188168526,0.0640464723110199,0.99661785364151,-0.0161128956824541,0.0490000806748867,0.998668789863586,-0.12054667621851,0.0252571832388639,0.992386341094971,-0.123345099389553,0.0566947758197784,0.990743041038513,-0.0161626879125834,0.0560690946877003,0.998296022415161,-0.168650075793266,0.0567626543343067,0.984040319919586,0.165777698159218,-0.543069958686829,-0.823160350322723,-0.0131714669987559,-0.55759209394455,-0.830010533332825,0.210297271609306,-0.536606788635254,-0.81720769405365,0.163586989045143,-0.526259660720825,-0.834440112113953,-0.0169795379042625,-0.558261096477509,-0.829491555690765,-0.0131759056821465,-0.557780027389526,-0.829884231090546,0.208037763834,-0.569997012615204,-0.794873416423798,-0.0130809331312776,-0.553759455680847,-0.832574009895325,0.0517105758190155,-0.561439275741577,-0.825900793075562,-0.0131911030039191,-0.558423399925232,-0.829451203346252,-0.016830375418067,-0.558968186378479,-0.829018294811249,-0.161446541547775,-0.574384152889252,-0.802507221698761,0.0506520643830299,-0.565625190734863,-0.82310539484024,-0.0130829298868775,-0.553844034671783,-0.832517743110657,-0.11420165002346,-0.530242621898651,-0.840119481086731,-0.117464013397694,-0.556307196617126,-0.822632789611816,-0.0132346600294113,-0.560267269611359,-0.828206181526184,-0.16363425552845,-0.552575945854187,-0.817241489887238,0.153398141264915,0.500213623046875,0.852206110954285,-0.0216020196676254,0.514525055885315,0.857203185558319,0.206205934286118,0.492723941802979,0.845400750637054,0.150996446609497,0.483168751001358,0.862408339977264,-0.0285241194069386,0.515563130378723,0.856376647949219,
- -0.0216026827692986,0.514630258083344,0.857140064239502,0.204527735710144,0.52753746509552,0.824544012546539,-0.0215741358697414,0.510132193565369,0.859825491905212,0.0486698225140572,0.518444240093231,0.85372531414032,-0.0216073989868164,0.515381157398224,0.856688678264618,-0.0283331647515297,0.516449451446533,0.855848908424377,-0.163675040006638,0.532779514789581,0.830275058746338,0.0476171597838402,0.522982776165009,0.851012110710144,-0.021573755890131,0.510072886943817,0.859860599040985,-0.118650577962399,0.487582385540009,0.864977180957794,-0.121572971343994,0.514051079750061,0.849100470542908,-0.0216180477291346,0.517084956169128,0.85566109418869,-0.166018590331078,0.511013448238373,0.84338790178299,0.1565300822258,0.70492035150528,-0.691798865795136,-0.0111348489299417,0.70681768655777,-0.707308113574982,0.206896066665649,0.700357675552368,-0.683149516582489,0.154127180576324,0.718483030796051,-0.678252875804901,-0.0112465769052505,0.706817865371704,-0.707306146621704,-0.0111348498612642,0.706832587718964,-0.707293272018433,0.205364674329758,0.673103988170624,-0.710462093353271,-0.0111347176134586,0.710495591163635,-0.703613579273224,0.0614879429340363,0.701791167259216,-0.709724187850952,-0.0111348424106836,0.706256449222565,-0.70786851644516,-0.0110953003168106,0.706262409687042,-0.70786315202713,-0.153720989823341,0.677160203456879,-0.719599783420563,0.0603629425168037,0.697815656661987,-0.713729441165924,-0.0111347241327167,0.710415065288544,-0.703694880008698,-0.10913398116827,0.721488177776337,-0.683772444725037,-0.111907541751862,0.699710845947266,-0.705607175827026,-0.0111347930505872,0.704796850681305,-0.709321796894073,-0.156035274267197,0.695196866989136,-0.701679587364197,0.165861561894417,0.922864735126495,-0.347578495740891,-0.0101910391822457,0.932033777236938,-0.362228184938431,0.210445567965508,0.915818810462952,-0.342035919427872,0.16333957016468,0.930205166339874,-0.328692495822906,-0.0136235021054745,0.931831002235413,-0.362636774778366,-0.0101903714239597,0.932087659835815,-0.362089574337006,
- 0.208522155880928,0.901461184024811,-0.379323750734329,-0.0101717235520482,0.933577418327332,-0.358231395483017,0.0634494945406914,0.927927494049072,-0.367321163415909,-0.0101935295388103,0.931832373142242,-0.362745821475983,-0.0134804397821426,0.931552886962891,-0.363355904817581,-0.157955974340439,0.908820867538452,-0.38612762093544,0.0623267330229282,0.925794899463654,-0.372852832078934,-0.0101731847971678,0.933461785316467,-0.358532577753067,-0.109454929828644,0.935592949390411,-0.335686594247818,-0.112262219190598,0.924622535705566,-0.363964825868607,-0.0102052735164762,0.930875480175018,-0.365194290876389,-0.160273626446724,0.918276369571686,-0.36205118894577,0.154092043638229,-0.987408995628357,0.0357666984200478,-0.0164251103997231,-0.99889200925827,0.044102493673563,0.203824117779732,-0.978448092937469,0.0330920033156872,0.152068093419075,-0.98823094367981,0.0165801364928484,-0.0161650236696005,-0.998884677886963,0.0443648211658001,-0.0164296999573708,-0.998878419399261,0.0444075651466846,0.201895162463188,-0.976749837398529,0.0720991939306259,-0.0163476653397083,-0.999106705188751,0.0389700829982758,0.0620421655476093,-0.996764242649078,0.0511059835553169,-0.0164422784000635,-0.998840689659119,0.0452439747750759,-0.0160234551876783,-0.99885106086731,0.0451646000146866,-0.160201653838158,-0.984452486038208,0.0720327794551849,0.0608225166797638,-0.996515989303589,0.0570660531520844,-0.0163474287837744,-0.999107301235199,0.0389545001089573,-0.113046236336231,-0.993462800979614,0.0158785618841648,-0.116343908011913,-0.992111802101135,0.0466729998588562,-0.0164709035307169,-0.998751997947693,0.0471503771841526,-0.162258073687553,-0.985661864280701,0.0462930612266064,0.151519596576691,0.591105878353119,0.792234599590302,-0.017296152189374,0.605888783931732,0.795361280441284,0.208449319005013,0.582125842571259,0.785925149917603,0.14914558827877,0.575838804244995,0.803844153881073,-0.0254709422588348,0.607004106044769,0.79429042339325,-0.0172958169132471,0.605970203876495,0.795299232006073,0.206819444894791,0.614525139331818,0.761304497718811,
- -0.0173110980540514,0.602211177349091,0.798149108886719,0.0600187480449677,0.610009670257568,0.790117740631104,-0.0172932744026184,0.606585502624512,0.794830143451691,-0.0252867117524147,0.607774972915649,0.793706655502319,-0.156172648072243,0.62148654460907,0.767700910568237,0.0588219687342644,0.614809215068817,0.786479294300079,-0.0173106528818607,0.602322459220886,0.79806512594223,-0.119409836828709,0.579776227474213,0.805978238582611,-0.122434504330158,0.604865968227386,0.786858856678009,-0.0172855295240879,0.608442008495331,0.793410062789917,-0.158441677689552,0.602069735527039,0.782565176486969,0.168052896857262,0.514211714267731,-0.841037750244141,-0.0135136470198631,0.513277053833008,-0.858116567134857,0.212671786546707,0.511770665645599,-0.832383036613464,0.165639162063599,0.531289756298065,-0.830839872360229,-0.0172993037849665,0.511945366859436,-0.858843922615051,-0.0135207204148173,0.512525141239166,-0.858565747737885,0.210768774151802,0.477920770645142,-0.852741658687592,-0.0134656894952059,0.518335819244385,-0.855071246623993,0.0608289875090122,0.507931113243103,-0.859247326850891,-0.0135280787944794,0.511741518974304,-0.859032988548279,-0.0171175841242075,0.511103987693787,-0.85934853553772,-0.15302287042141,0.481863141059875,-0.862781465053558,0.059771690517664,0.503350615501404,-0.862012505531311,-0.0134629858657718,0.518618762493134,-0.85489958524704,-0.103014394640923,0.533321559429169,-0.839616715908051,-0.106023073196411,0.507701873779297,-0.854984164237976,-0.0135355442762375,0.510944843292236,-0.859507024288177,-0.155421763658524,0.504153549671173,-0.849513649940491,0.160368070006371,-0.842926263809204,-0.513573288917542,-0.0162291098386049,-0.858104944229126,-0.513217806816101,0.206162720918655,-0.834504783153534,-0.510978221893311,0.158055618405342,-0.832729399204254,-0.530641436576843,-0.0201660096645355,-0.858525574207306,-0.512374043464661,-0.0162347964942455,-0.858259439468384,-0.512959182262421,0.204088196158409,-0.854798197746277,-0.477145850658417,-0.0161320902407169,-0.855462849140167,-0.517612874507904,
- 0.05774100497365,-0.860049903392792,-0.506932079792023,-0.0162506382912397,-0.858689725399017,-0.512238204479218,-0.0200063697993755,-0.858997523784637,-0.5115886926651,-0.156121507287025,-0.861630499362946,-0.482927471399307,0.0565673485398293,-0.862948775291443,-0.5021151304245,-0.0161319598555565,-0.855459272861481,-0.517618775367737,-0.110397934913635,-0.838604629039764,-0.53343653678894,-0.113591596484184,-0.854149043560028,-0.507470607757568,-0.0162872150540352,-0.859682083129883,-0.510569751262665,-0.158160626888275,-0.84885448217392,-0.504411816596985,0.162141233682632,0.42696413397789,-0.889613330364227,-0.0142588494345546,0.424241572618485,-0.905436873435974,0.211025893688202,0.425311684608459,-0.880101084709167,0.15977968275547,0.444509297609329,-0.881409049034119,-0.0164978168904781,0.423157840967178,-0.905905783176422,-0.0142642091959715,0.423513919115067,-0.905777275562286,0.209411323070526,0.389984369277954,-0.896693408489227,-0.0142168719321489,0.429885804653168,-0.902771353721619,0.0657612606883049,0.418167471885681,-0.905986428260803,-0.0142707591876388,0.422623008489609,-0.906193196773529,-0.0163098815828562,0.422245919704437,-0.906334578990936,-0.150951638817787,0.39325287938118,-0.906954169273376,0.0646078661084175,0.412951946258545,-0.908458292484283,-0.0142145548015833,0.430194765329361,-0.902624189853668,-0.109073162078857,0.447230786085129,-0.887743055820465,-0.11213606595993,0.418587684631348,-0.901226937770844,-0.0142782302573323,0.421604067087173,-0.906667590141296,-0.153137400746346,0.416105926036835,-0.896328508853912,0.15582250058651,-0.758882939815521,-0.632310032844543,-0.0132727492600679,-0.773214817047119,-0.6340052485466,0.208175152540207,-0.749845683574677,-0.628008544445038,0.153706595301628,-0.746617436408997,-0.647253274917603,-0.0169625729322433,-0.773556709289551,-0.633500158786774,-0.0132729094475508,-0.773219704627991,-0.633999466896057,0.205999374389648,-0.774987459182739,-0.597460210323334,-0.0131710320711136,-0.770149528980255,-0.637727558612823,0.0638509392738342,-0.776239395141602,-0.627196490764618,
- -0.0132895037531853,-0.773718893527985,-0.63338965177536,-0.0168144479393959,-0.774103403091431,-0.632835984230042,-0.15307080745697,-0.781284689903259,-0.6051145195961,0.0626038387417793,-0.780075788497925,-0.622545301914215,-0.013174582272768,-0.770256638526917,-0.637598037719727,-0.114743448793888,-0.749732375144959,-0.651717185974121,-0.118137173354626,-0.76972484588623,-0.627349436283112,-0.0133383311331272,-0.775186538696289,-0.631591558456421,-0.155003070831299,-0.765748262405396,-0.624182522296906,0.155821263790131,-0.758875787258148,-0.632319033145905,-0.0132724735885859,-0.773206532001495,-0.634015381336212,0.208175718784332,-0.749838471412659,-0.628016948699951,0.153708174824715,-0.746626615524292,-0.647242248058319,-0.0169603731483221,-0.77356481552124,-0.633490264415741,-0.0132731888443232,-0.773228108882904,-0.633989214897156,0.205994725227356,-0.77503627538681,-0.597398519515991,-0.0131727568805218,-0.770201563835144,-0.637664616107941,0.0638346076011658,-0.776289939880371,-0.627135694026947,-0.0132896304130554,-0.77372270822525,-0.633385002613068,-0.0168134719133377,-0.774106979370117,-0.632831573486328,-0.15307055413723,-0.781286895275116,-0.605111837387085,0.0625919327139854,-0.780112206935883,-0.622500896453857,-0.0131758321076632,-0.770294308662415,-0.637552320957184,-0.114749640226364,-0.749768912792206,-0.651674091815948,-0.118133254349232,-0.769701778888702,-0.627378463745117,-0.0133375469595194,-0.775162994861603,-0.631620526313782,-0.155005887150764,-0.76572448015213,-0.624210834503174,0.157884806394577,0.316134095191956,0.935484707355499,-0.0174610633403063,0.329721480607986,0.943916738033295,0.20223742723465,0.31105187535286,0.928626358509064,0.155434414744377,0.297139674425125,0.942097783088684,-0.0247975774109364,0.330793380737305,0.943377375602722,-0.0174608658999205,0.329638063907623,0.94394588470459,0.20041711628437,0.348527520895004,0.915620803833008,-0.0174510851502419,0.325582355260849,0.945352613925934,0.0518433228135109,0.334625959396362,0.940923869609833,-0.0174625292420387,0.330340504646301,0.94370025396347,
- -0.0246192142367363,0.331657409667969,0.943078637123108,-0.165409877896309,0.353985488414764,0.920507371425629,0.050805039703846,0.339844465255737,0.939108490943909,-0.0174516476690769,0.325812757015228,0.945273220539093,-0.120851024985313,0.30147522687912,0.945784211158752,-0.123726680874825,0.331267178058624,0.935389697551727,-0.0174682624638081,0.332792401313782,0.942838370800018,-0.167845323681831,0.329510658979416,0.92911285161972,0.159795954823494,-0.752390384674072,-0.639041423797607,-0.0130770225077868,-0.767308831214905,-0.641144454479218,0.208628281950951,-0.743910789489746,-0.634878814220428,0.157743528485298,-0.739825129508972,-0.654045760631561,-0.0184736475348473,-0.767943322658539,-0.640251457691193,-0.013081593438983,-0.767447113990784,-0.640978932380676,0.206510737538338,-0.769506633281708,-0.604328453540802,-0.0129795502871275,-0.764355719089508,-0.644664287567139,0.0596662908792496,-0.770304441452026,-0.634878814220428,-0.0130979651585221,-0.767942309379578,-0.640385210514069,-0.0183202084153891,-0.76851624250412,-0.639567971229553,-0.158469334244728,-0.775765657424927,-0.610798895359039,0.0584747046232224,-0.77393114566803,-0.630564272403717,-0.0129818469285965,-0.76442539691925,-0.644581615924835,-0.118836380541325,-0.74272745847702,-0.658964335918427,-0.122170709073544,-0.763566970825195,-0.634066104888916,-0.0131452651694417,-0.769371688365936,-0.638666152954102,-0.160611376166344,-0.759303748607636,-0.630604267120361,0.149629905819893,0.843753933906555,0.515451490879059,-0.0175548009574413,0.858335852622986,0.512787938117981,0.208754658699036,0.832701921463013,0.512863457202911,0.147366121411324,0.833997488021851,0.531724989414215,-0.0214253440499306,0.858689427375793,0.512048304080963,-0.017554983496666,0.8584064245224,0.512669801712036,0.207061797380447,0.853640854358673,0.477936029434204,-0.0175484474748373,0.855926811695099,0.516799092292786,0.0604632869362831,0.860207200050354,0.506347596645355,-0.0175560060888529,0.858807921409607,0.511996746063232,-0.0212603732943535,0.859132051467896,0.511312186717987,
- -0.159655705094337,0.862386465072632,0.48041632771492,0.0592660531401634,0.863324344158173,0.501157462596893,-0.0175486095249653,0.855986714363098,0.516699910163879,-0.117970667779446,0.838353753089905,0.532208502292633,-0.120812125504017,0.85437673330307,0.505415618419647,-0.0175589192658663,0.859971106052399,0.510040521621704,-0.161883801221848,0.849559605121613,0.502038061618805,0.165785923600197,0.164297193288803,-0.972379267215729,-0.00653530098497868,0.157512232661247,-0.987495422363281,0.215145468711853,0.165350660681725,-0.962482035160065,0.16349071264267,0.183709472417831,-0.969289243221283,-0.0129707548767328,0.156372621655464,-0.987613022327423,-0.0065357843413949,0.157459273934364,-0.987503886222839,0.213295087218285,0.125855401158333,-0.968847572803497,-0.00649468833580613,0.161951869726181,-0.986777305603027,0.0635501071810722,0.151325240731239,-0.986439168453217,-0.00654221838340163,0.156754240393639,-0.987615942955017,-0.012811959721148,0.155521467328072,-0.987749397754669,-0.155184864997864,0.125777542591095,-0.979845762252808,0.06242785602808,0.145834788680077,-0.987337350845337,-0.00649681128561497,0.161720231175423,-0.986815333366394,-0.101944208145142,0.182392790913582,-0.977926552295685,-0.104825213551521,0.153144955635071,-0.982628345489502,-0.00656284391880035,0.154491171240807,-0.987972378730774,-0.15751388669014,0.151800125837326,-0.97577977180481,0.157087951898575,-0.974041521549225,-0.162992849946022,-0.013074847869575,-0.987476527690887,-0.157223716378212,0.208910465240479,-0.964116394519806,-0.163817420601845,0.154851362109184,-0.970976591110229,-0.182278841733933,-0.0195988398045301,-0.987523972988129,-0.156244486570358,-0.0130732990801334,-0.987462997436523,-0.15730844438076,0.206690236926079,-0.970473229885101,-0.124341785907745,-0.01299365516752,-0.986760437488556,-0.161663308739662,0.0555156618356705,-0.98699152469635,-0.150883391499519,-0.0130868488922715,-0.987580835819244,-0.156565874814987,-0.019440945237875,-0.987667560577393,-0.155353903770447,-0.161906123161316,-0.978675067424774,-0.126418188214302,
- 0.0544061213731766,-0.987862467765808,-0.145491242408752,-0.0129981134086847,-0.986800193786621,-0.161419928073883,-0.108982607722282,-0.97709333896637,-0.182787969708443,-0.112186267971992,-0.981801688671112,-0.153231292963028,-0.0131330136209726,-0.987978518009186,-0.154032155871391,-0.163976073265076,-0.974652051925659,-0.152201503515244,0.159461319446564,0.0652014315128326,-0.985048770904541,-0.00740999169647694,0.0572626702487469,-0.998331665992737,0.208383977413177,0.0672159120440483,-0.975734651088715,0.15713432431221,0.0842094719409943,-0.983980476856232,-0.0104375900700688,0.0567260310053825,-0.998335242271423,-0.00741020077839494,0.0572376251220703,-0.998333096504211,0.206685572862625,0.028774730861187,-0.977984189987183,-0.00736970733851194,0.0620905980467796,-0.998043358325958,0.0665189847350121,0.0509183406829834,-0.996485114097595,-0.00741674425080419,0.0564512796700001,-0.998377799987793,-0.0102831162512302,0.0558864995837212,-0.998384177684784,-0.152559712529182,0.0272274445742369,-0.987919092178345,0.0653658583760262,0.0450989939272404,-0.996841728687286,-0.00737138604745269,0.06188989803195,-0.998055875301361,-0.110454320907593,0.085110142827034,-0.9902303814888,-0.113464988768101,0.0531967431306839,-0.992116868495941,-0.00743695721030235,0.0540186762809753,-0.998512268066406,-0.154597356915474,0.052711945027113,-0.986570358276367,0.155843183398247,-0.939661800861359,-0.304546415805817,-0.0102782100439072,-0.953592240810394,-0.300925850868225,0.209161803126335,-0.929461002349854,-0.303897380828857,0.153739303350449,-0.933836698532104,-0.322975665330887,-0.0147472228854895,-0.953657865524292,-0.300531476736069,-0.0102716526016593,-0.953492283821106,-0.301242351531982,0.206816777586937,-0.941519558429718,-0.266022145748138,-0.0101948725059628,-0.952316343784332,-0.304941892623901,0.0638700053095818,-0.953875660896301,-0.293328911066055,-0.0102855172008276,-0.953703343868256,-0.3005730509758,-0.0146038271486759,-0.953899264335632,-0.299771547317505,-0.15411651134491,-0.950244128704071,-0.270710438489914,
- 0.0626187920570374,-0.955706655979156,-0.287582576274872,-0.0102029126137495,-0.952440142631531,-0.304555207490921,-0.111779943108559,-0.938947737216949,-0.325396090745926,-0.115231305360794,-0.948214054107666,-0.295993238687515,-0.0103426845744252,-0.954569458961487,-0.29780900478363,-0.156013488769531,-0.942865133285522,-0.294389486312866,0.15584260225296,-0.939660310745239,-0.304551601409912,-0.010278076864779,-0.953590214252472,-0.300932347774506,0.209162071347237,-0.929459393024445,-0.30390202999115,0.153741329908371,-0.933842360973358,-0.322958320379257,-0.0147443078458309,-0.953662812709808,-0.30051600933075,-0.0102719841524959,-0.953497350215912,-0.301226317882538,0.206812828779221,-0.941537439823151,-0.265961945056915,-0.010196247138083,-0.952337503433228,-0.304875880479813,0.06385637819767,-0.953895807266235,-0.293266326189041,-0.0102857258170843,-0.953706562519073,-0.300562918186188,-0.0146020092070103,-0.953902304172516,-0.299761921167374,-0.154115945100784,-0.950246334075928,-0.270703315734863,0.0626091063022614,-0.955720663070679,-0.287538111209869,-0.010203879326582,-0.95245498418808,-0.304508715867996,-0.111785359680653,-0.938962697982788,-0.325351029634476,-0.115227557718754,-0.948204278945923,-0.296025723218918,-0.0103420130908489,-0.95455938577652,-0.297841578722,-0.156016007065773,-0.942854762077332,-0.294421583414078,0.153343185782433,0.642194092273712,0.751047730445862,-0.0162833128124475,0.657235741615295,0.753509104251862,0.199880361557007,0.634678184986115,0.746479511260986,0.15101632475853,0.627393662929535,0.763918340206146,-0.0241575539112091,0.657989025115967,0.752639949321747,-0.0162817537784576,0.657060205936432,0.753662288188934,0.197981745004654,0.664252161979675,0.720813691616058,-0.0162552893161774,0.654089689254761,0.756242394447327,0.0518122538924217,0.660691440105438,0.748867332935333,-0.0162865165621042,0.65759664773941,0.753194093704224,-0.0239859819412231,0.658667623996735,0.752051651477814,-0.165592104196548,0.67108690738678,0.722649157047272,0.0507369488477707,0.664858281612396,0.74524450302124,
- -0.0162576194852591,0.654350638389587,0.756016492843628,-0.119614511728287,0.632044732570648,0.765644788742065,-0.122517108917236,0.655622243881226,0.745083272457123,-0.0163053553551435,0.659725069999695,0.751330077648163,-0.168094962835312,0.651539385318756,0.739757180213928,0.164550840854645,-0.935330152511597,-0.313178330659866,-0.0100946724414825,-0.950763761997223,-0.30975204706192,0.209650978446007,-0.926499545574188,-0.31248214840889,0.162433281540871,-0.929081499576569,-0.332299500703812,-0.0163267608731985,-0.950957000255585,-0.308892250061035,-0.010091969743371,-0.950721681118011,-0.309881597757339,0.207363843917847,-0.938980340957642,-0.27443790435791,-0.0100154187530279,-0.949521422386169,-0.313542306423187,0.058284305036068,-0.951236188411713,-0.302907049655914,-0.0101056080311537,-0.950934231281281,-0.309228122234344,-0.016177449375391,-0.95121556520462,-0.308102697134018,-0.156945198774338,-0.947481215000153,-0.278653115034103,0.0571243613958359,-0.952966332435608,-0.29764398932457,-0.0100223962217569,-0.949631333351135,-0.313209116458893,-0.113339677453041,-0.935641169548035,-0.334260225296021,-0.116628795862198,-0.945307612419128,-0.304616928100586,-0.0101616224274039,-0.95180344581604,-0.306540369987488,-0.159044593572617,-0.93966805934906,-0.302867859601974,0.154095187783241,0.947331070899963,0.280746310949326,-0.0173016358166933,0.961468398571014,0.274370819330215,0.208507746458054,0.936774075031281,0.281031787395477,0.151758626103401,0.941959142684937,0.299470186233521,-0.0217380709946156,0.961629033088684,0.273490637540817,-0.0173012688755989,0.961499154567719,0.274262666702271,0.206891000270844,0.947988390922546,0.241896778345108,-0.0173163935542107,0.960195958614349,0.278790056705475,0.0616729110479355,0.961600601673126,0.267433643341064,-0.0172987431287766,0.961711525917053,0.273517191410065,-0.0215705391019583,0.961869239807129,0.272658109664917,-0.162918448448181,0.956693649291992,0.241236254572868,0.0604945346713066,0.963300168514252,0.261520862579346,-0.0173159744590521,0.960232794284821,0.278663098812103,
- -0.118714988231659,0.947038233280182,0.298371374607086,-0.121622435748577,0.955655992031097,0.268196910619736,-0.0172910634428263,0.962348580360413,0.271267861127853,-0.165335237979889,0.949683845043182,0.266016572713852,0.170767933130264,-0.0914109498262405,-0.98106187582016,-0.00863812305033207,-0.10232837498188,-0.994713246822357,0.217379242181778,-0.0880210027098656,-0.972110331058502,0.168347924947739,-0.0713084414601326,-0.98314505815506,-0.0128140244632959,-0.103326365351677,-0.994564950466156,-0.00864023342728615,-0.102627411484718,-0.994682371616364,0.215486854314804,-0.128284782171249,-0.968043684959412,-0.00860351789742708,-0.0974427834153175,-0.995203971862793,0.0592638179659843,-0.107326909899712,-0.992455959320068,-0.00864566303789616,-0.1033965498209,-0.994602680206299,-0.0126542057842016,-0.104179821908474,-0.994477987289429,-0.15507934987545,-0.13089981675148,-0.979191303253174,0.0582149997353554,-0.112531408667564,-0.991941392421722,-0.00860392767935991,-0.0975005328655243,-0.995198309421539,-0.102849066257477,-0.0755040124058723,-0.991827249526978,-0.10585705935955,-0.105166934430599,-0.988804459571838,-0.00865877140313387,-0.105256579816341,-0.994407415390015,-0.157430663704872,-0.104710079729557,-0.981963098049164,0.16127060353756,-0.982498824596405,0.0932092741131783,-0.0172794852405787,-0.994564056396484,0.102683372795582,0.209115520119667,-0.973731100559235,0.0901035740971565,0.159033358097076,-0.984548628330231,0.0732966586947441,-0.0215126946568489,-0.994369506835938,0.103761836886406,-0.0172851830720901,-0.994522154331207,0.103087067604065,0.206950515508652,-0.969686806201935,0.129919454455376,-0.0172040089964867,-0.995101273059845,0.0973532050848007,0.0580786466598511,-0.992357552051544,0.108872935175896,-0.0172973927110434,-0.994431853294373,0.103952556848526,-0.0213418453931808,-0.994273722171783,0.104710809886456,-0.156257435679436,-0.979253768920898,0.129018515348434,0.0568995662033558,-0.991793036460876,0.114495374262333,-0.0172027498483658,-0.995109856128693,0.0972647294402123,-0.111980244517326,-0.990923702716827,0.0743682309985161,
- -0.115310415625572,-0.987781047821045,0.104843340814114,-0.0173219125717878,-0.994247853755951,0.105693653225899,-0.158291354775429,-0.981884777545929,0.104145005345345,0.161943390965462,-0.190592050552368,-0.968219518661499,-0.00930182728916407,-0.201988086104393,-0.979343891143799,0.209028288722038,-0.186393111944199,-0.959981739521027,0.15958060324192,-0.1716588139534,-0.972145736217499,-0.0113528156653047,-0.202551513910294,-0.979205906391144,-0.0093032568693161,-0.202217027544975,-0.979296565055847,0.207340240478516,-0.224208816885948,-0.952229201793671,-0.00926957186311483,-0.196844607591629,-0.980390965938568,0.0655347853899002,-0.207385808229446,-0.976061701774597,-0.00930842198431492,-0.203044250607491,-0.979125320911407,-0.01119439676404,-0.203403890132904,-0.979030907154083,-0.150667414069176,-0.227924332022667,-0.961951076984406,0.0644143745303154,-0.213026687502861,-0.974920809268951,-0.00926985032856464,-0.196888983249664,-0.980381965637207,-0.106175735592842,-0.173930123448372,-0.979017376899719,-0.109246417880058,-0.204285994172096,-0.972796261310577,-0.00932100880891085,-0.205063864588737,-0.978704214096069,-0.1527199447155,-0.203299641609192,-0.967132866382599,0.152496859431267,-0.986932754516602,-0.0520421303808689,-0.01502376049757,-0.998879849910736,-0.0448710285127163,0.208258390426636,-0.976574420928955,-0.0541380345821381,0.150393337011337,-0.986076951026917,-0.0709516555070877,-0.0158243142068386,-0.998883783817291,-0.0445070639252663,-0.0150276087224483,-0.998890280723572,-0.0446370169520378,0.206094846129417,-0.978423237800598,-0.0145948249846697,-0.0149385379627347,-0.998635590076447,-0.0500383488833904,0.0641851052641869,-0.997228384017944,-0.0376290157437325,-0.0150413298979402,-0.998926997184753,-0.0438025631010532,-0.0156791750341654,-0.998922526836395,-0.0436806567013264,-0.159199059009552,-0.987120926380157,-0.0157464537769556,0.0629336312413216,-0.997517943382263,-0.0315825007855892,-0.0149389700964093,-0.998636901378632,-0.0500123053789139,-0.111403353512287,-0.991132438182831,-0.0724283009767532,
- -0.114764206111431,-0.992516756057739,-0.0417096652090549,-0.0150737464427948,-0.999011158943176,-0.0418281964957714,-0.161091461777687,-0.986066102981567,-0.0415109395980835,0.152496710419655,-0.986932814121246,-0.0520437397062778,-0.0150237111374736,-0.998879730701447,-0.0448740608990192,0.208258450031281,-0.97657436132431,-0.0541391633450985,0.150394752621651,-0.986077606678009,-0.0709390118718147,-0.0158223770558834,-0.998884320259094,-0.0444960333406925,-0.015027797780931,-0.998890817165375,-0.0446256324648857,0.206091061234474,-0.978425025939941,-0.0145301567390561,-0.0149397188797593,-0.998639166355133,-0.0499670058488846,0.0641711428761482,-0.997231781482697,-0.0375615134835243,-0.0150414379313588,-0.998927295207977,-0.0437959544360638,-0.015678059309721,-0.998922824859619,-0.0436742976307869,-0.159198805689812,-0.987121045589447,-0.0157429575920105,0.0629237145185471,-0.99752002954483,-0.0315346643328667,-0.014939796179533,-0.998639404773712,-0.0499623082578182,-0.111408762633801,-0.99113541841507,-0.0723798051476479,-0.114760503172874,-0.992515742778778,-0.0417440757155418,-0.0150732044130564,-0.999009728431702,-0.0418611913919449,-0.161093950271606,-0.986064255237579,-0.0415458641946316,0.158164501190186,0.813224375247955,0.560044765472412,-0.0174573287367821,0.829201996326447,0.558676481246948,0.202305316925049,0.805079996585846,0.557600975036621,0.155771031975746,0.801925539970398,0.576758980751038,-0.0251140370965004,0.829750776290894,0.557568728923798,-0.0174570791423321,0.829141199588776,0.558766603469849,0.200497463345528,0.827316880226135,0.524735808372498,-0.017447205260396,0.826742827892303,0.562309324741364,0.0530012398958206,0.831377983093262,0.553174138069153,-0.017458762973547,0.829556584358215,0.558149635791779,-0.0249340906739235,0.830268740653992,0.556805372238159,-0.161881640553474,0.834716498851776,0.526348650455475,0.0519069358706474,0.834522902965546,0.548522889614105,-0.0174478013068438,0.826885402202606,0.562099695205688,-0.117340087890625,0.808501482009888,0.576677203178406,-0.12013303488493,0.825682044029236,0.551196157932281,
- -0.0174646191298962,0.831016600131989,0.555973410606384,-0.164168208837509,0.820664048194885,0.547320127487183,0.159625872969627,-0.985263705253601,-0.0614418275654316,-0.0148709770292044,-0.998423874378204,-0.0541167743504047,0.208708345890045,-0.975934088230133,-0.0631933063268662,0.157570123672485,-0.984183132648468,-0.0809647291898727,-0.0173658933490515,-0.998428225517273,-0.0532867535948753,-0.0148780131712556,-0.998446702957153,-0.0536927953362465,0.206603422760963,-0.978145360946655,-0.0233806390315294,-0.01478854380548,-0.998144268989563,-0.0590716190636158,0.0582346133887768,-0.997166574001312,-0.0476189590990543,-0.0148916412144899,-0.998490393161774,-0.0528712458908558,-0.0172149650752544,-0.998476386070251,-0.0524270161986351,-0.160046070814133,-0.986805081367493,-0.0245141722261906,0.0570908412337303,-0.997481346130371,-0.0420914031565189,-0.014788000844419,-0.998142302036285,-0.0591042526066303,-0.111041739583015,-0.990475714206696,-0.0814098939299583,-0.114182367920876,-0.992160141468048,-0.0508005432784557,-0.0149230109527707,-0.99858832359314,-0.0509771183133125,-0.162123009562492,-0.985475897789001,-0.0505326129496098,0.151753261685371,0.985788464546204,-0.0720568150281906,-0.0156920682638884,0.996446251869202,-0.0827562436461449,0.210703566670418,0.975201010704041,-0.0677286386489868,0.149378195405006,0.987362623214722,-0.0529262870550156,-0.0243561416864395,0.996152460575104,-0.0841845497488976,-0.0156921613961458,0.996452271938324,-0.0826849341392517,0.208983018994331,0.971855401992798,-0.108734421432018,-0.0156974904239178,0.996790587902069,-0.0785003751516342,0.0628294795751572,0.993998885154724,-0.08954718708992,-0.0156912095844746,0.996391773223877,-0.0834112167358398,-0.0241812206804752,0.996077418327332,-0.085118904709816,-0.156025379896164,0.981512367725372,-0.110858604311943,0.0615869052708149,0.993497550487518,-0.095758281648159,-0.0156971663236618,0.996769964694977,-0.078761875629425,-0.1235491335392,0.990858376026154,-0.054178100079298,-0.126571699976921,0.988172471523285,-0.0865728557109833,
- -0.0156876780092716,0.996167540550232,-0.0860474109649658,-0.15832094848156,0.983589231967926,-0.0865255445241928,0.165997549891472,-0.432589650154114,-0.886177718639374,-0.010563213378191,-0.44711297750473,-0.894415140151978,0.215382725000381,-0.425960183143616,-0.87873101234436,0.163590043783188,-0.415014028549194,-0.894986927509308,-0.0141158401966095,-0.448099374771118,-0.893872320652008,-0.0105650555342436,-0.447580993175507,-0.894180953502655,0.213522151112556,-0.461821377277374,-0.860888659954071,-0.0105443652719259,-0.442357569932938,-0.896776795387268,0.0601610690355301,-0.450997084379196,-0.890495479106903,-0.010567975230515,-0.448324024677277,-0.893808722496033,-0.0139489397406578,-0.44890233874321,-0.893471956253052,-0.156257122755051,-0.468400776386261,-0.869588732719421,0.0590950399637222,-0.455734252929688,-0.888152003288269,-0.0105439750477672,-0.442259788513184,-0.896825015544891,-0.106725126504898,-0.419911086559296,-0.901268243789673,-0.10967555642128,-0.447417408227921,-0.887574732303619,-0.0105731645599008,-0.449649125337601,-0.893142819404602,-0.158645629882813,-0.444660633802414,-0.881537556648254,0.161489337682724,-0.886250913143158,0.434143483638763,-0.0176072437316179,-0.894208908081055,0.447303742170334,0.212021872401237,-0.878670692443848,0.427767097949982,0.159197494387627,-0.895212829113007,0.416233241558075,-0.0212517697364092,-0.893678605556488,0.448204040527344,-0.0176151879131794,-0.894006550312042,0.447707444429398,0.209837421774864,-0.860561013221741,0.464115411043167,-0.0175116769969463,-0.896620154380798,0.442454308271408,0.0563000440597534,-0.890185356140137,0.452106475830078,-0.0176306422799826,-0.893612384796143,0.448493033647537,-0.0210891906172037,-0.893256723880768,0.449051827192307,-0.160027295351028,-0.869713544845581,0.46689361333847,0.0551469698548317,-0.887731313705444,0.457046896219254,-0.0175096914172173,-0.896669745445251,0.44235372543335,-0.110897675156593,-0.900813043117523,0.419806569814682,-0.114052042365074,-0.887237906455994,0.446991235017776,-0.0176602695137262,-0.892853975296021,0.450000107288361,
- -0.162155896425247,-0.881282091140747,0.443900376558304,0.16405288875103,-0.519995152950287,-0.838267087936401,-0.0108642289415002,-0.534931004047394,-0.84482604265213,0.205223798751831,-0.514034867286682,-0.832857489585876,0.161819562315941,-0.503386616706848,-0.84877347946167,-0.0131696835160255,-0.535548269748688,-0.844401955604553,-0.0108651034533978,-0.53523451089859,-0.844633638858795,0.203479647636414,-0.546000361442566,-0.81269896030426,-0.0108503568917513,-0.530178844928741,-0.847816407680511,0.0659461170434952,-0.538760244846344,-0.839874148368835,-0.0108672697097063,-0.5359867811203,-0.844156444072723,-0.0129962433129549,-0.536327004432678,-0.843910336494446,-0.152980923652649,-0.553135871887207,-0.818924725055695,0.0648163482546806,-0.543666660785675,-0.83679473400116,-0.0108501743525267,-0.53011691570282,-0.847855150699615,-0.106534898281097,-0.508378088474274,-0.854518592357636,-0.109628662467003,-0.534639954566956,-0.837938904762268,-0.0108715258538723,-0.537472724914551,-0.843211054801941,-0.155062109231949,-0.531551122665405,-0.832711935043335,0.151089712977409,-0.941905915737152,0.29997530579567,-0.0148241864517331,-0.95037055015564,0.310767024755478,0.215063631534576,-0.931462287902832,0.293471843004227,0.14902925491333,-0.947731256484985,0.282127350568771,-0.018560566008091,-0.950057506561279,0.311522334814072,-0.0148283541202545,-0.950305759906769,0.310965061187744,0.212833240628242,-0.918802797794342,0.332420885562897,-0.0147214271128178,-0.95195335149765,0.305889278650284,0.0658019706606865,-0.946081340312958,0.317175328731537,-0.0148449568077922,-0.950046896934509,0.311754196882248,-0.0184032544493675,-0.949778914451599,0.312380164861679,-0.155651122331619,-0.929845809936523,0.3334059715271,0.0645145773887634,-0.944180607795715,0.323049157857895,-0.0147222885861993,-0.9519402384758,0.305930137634277,-0.116657286882401,-0.952625513076782,0.280883699655533,-0.120238050818443,-0.942683219909668,0.311273604631424,-0.0148852095007896,-0.949415922164917,0.313668549060822,-0.157609358429909,-0.937722325325012,0.309574097394943,
- 0.15108934044838,-0.941906988620758,0.299972146749496,-0.0148240895941854,-0.950372099876404,0.310762405395508,0.215063765645027,-0.931463122367859,0.293469220399857,0.149030268192291,-0.947728455066681,0.282136052846909,-0.0185592845082283,-0.950055301189423,0.311529338359833,-0.0148285068571568,-0.950303375720978,0.310972332954407,0.212829634547234,-0.918782770633698,0.332478225231171,-0.0147227924317122,-0.951932370662689,0.305954128503799,0.0657886043190956,-0.946061789989471,0.317236393690109,-0.0148450303822756,-0.950045764446259,0.31175771355629,-0.0184026435017586,-0.949777781963348,0.312383502721787,-0.155651047825813,-0.929845452308655,0.333406925201416,0.0645050927996635,-0.944166481494904,0.323092401027679,-0.0147232478484511,-0.951925456523895,0.305975705385208,-0.116662636399269,-0.95261162519455,0.280928552150726,-0.120234966278076,-0.942692279815674,0.311247169971466,-0.0148846469819546,-0.949424803256989,0.31364181637764,-0.157611489295959,-0.937730848789215,0.309547543525696,0.157464370131493,0.958723247051239,0.236759096384048,-0.0153240226209164,0.973075449466705,0.229976788163185,0.197475284337997,0.95114803314209,0.237320795655251,0.155047073960304,0.954081356525421,0.256298869848251,-0.0206877291202545,0.973115205764771,0.22938796877861,-0.0153227467089891,0.972994387149811,0.230319768190384,0.195795342326164,0.960105538368225,0.199654132127762,-0.0153095461428165,0.972156167030334,0.233833432197571,0.0525863282382488,0.973168253898621,0.224004909396172,-0.015325223095715,0.973151683807373,0.229654043912888,-0.0205332394689322,0.973302364349365,0.228606760501862,-0.164400517940521,0.966510117053986,0.197055250406265,0.0515100918710232,0.974460363388062,0.218572050333023,-0.0153111005201936,0.972254812717438,0.233422681689262,-0.11353711783886,0.960705101490021,0.253288447856903,-0.116308018565178,0.967569887638092,0.224234536290169,-0.0153360879048705,0.973841547966003,0.226710051298141,-0.166764885187149,0.960652947425842,0.222116231918335,0.164748638868332,-0.942745089530945,0.28998202085495,
- -0.0146383326500654,-0.953210651874542,0.301952540874481,0.215508431196213,-0.934052765369415,0.284783691167831,0.162606880068779,-0.94880622625351,0.270787417888641,-0.020092099905014,-0.952730119228363,0.30315288901329,-0.0146464677527547,-0.953088343143463,0.30233770608902,0.213341623544693,-0.921647429466248,0.324116468429565,-0.0145392566919327,-0.954683542251587,0.297267377376556,0.0578466169536114,-0.949772596359253,0.307548254728317,-0.0146629214286804,-0.952840685844421,0.303116798400879,-0.0199290327727795,-0.952449083328247,0.304045617580414,-0.161004960536957,-0.931668162345886,0.325686812400818,0.0566749311983585,-0.948128879070282,0.312793105840683,-0.0145389493554831,-0.954688131809235,0.297252833843231,-0.113547325134277,-0.955299139022827,0.272966116666794,-0.116845570504665,-0.945877015590668,0.302760392427444,-0.0147019308060408,-0.952250182628632,0.304964989423752,-0.163272172212601,-0.939642548561096,0.300689309835434,0.117051064968109,0.202193513512611,0.972325503826141,-0.0496045649051666,0.184230834245682,0.981630563735962,0.168155089020729,0.206615552306175,0.963864028453827,0.118129760026932,0.182927027344704,0.976003646850586,-0.0617977008223534,0.183696985244751,0.981038510799408,-0.0495328493416309,0.183834299445152,0.981708526611328,0.159694492816925,0.244670778512955,0.956364929676056,-0.0488828830420971,0.180241167545319,0.982407093048096,0.0162113141268492,0.201369494199753,0.979381144046783,-0.0496622920036316,0.184550061821938,0.981567621231079,-0.0617854297161102,0.184738472104073,0.980843663215637,-0.200809553265572,0.184934392571449,0.962015986442566,0.0142183061689138,0.206457167863846,0.978352308273315,-0.0489354766905308,0.180531844496727,0.982351124286652,-0.147477149963379,0.138189196586609,0.979364216327667,-0.155963599681854,0.168050959706306,0.973362326622009,-0.0501685030758381,0.187349557876587,0.98101145029068,-0.198666900396347,0.159604460000992,0.966983914375305,-0.00104459375143051,0.912588536739349,-0.408877789974213,-0.167258143424988,0.890626490116119,-0.422858327627182,
- 0.0509572550654411,0.914162814617157,-0.402131527662277,-0.00473182694986463,0.920211672782898,-0.391392707824707,-0.169341862201691,0.890138208866119,-0.423057019710541,-0.167268007993698,0.890685737133026,-0.422729581594467,0.0523875951766968,0.897694885730743,-0.437492221593857,-0.167603179812431,0.892698645591736,-0.418327927589417,-0.0929735600948334,0.899352848529816,-0.427224069833755,-0.167213410139084,0.890357971191406,-0.423440963029861,-0.169129207730293,0.889827787876129,-0.423794478178024,-0.304067730903625,0.842571377754211,-0.444540649652481,-0.0936949253082275,0.896722853183746,-0.432561576366425,-0.167589530348778,0.89261668920517,-0.418508291244507,-0.270886868238449,0.878074765205383,-0.394467920064926,-0.271531850099564,0.864232063293457,-0.423524886369705,-0.167055487632751,0.889410614967346,-0.425489544868469,-0.308225601911545,0.852775037288666,-0.421629697084427,-0.0144251799210906,0.999831199645996,-0.0113806072622538,-0.18108657002449,0.983233094215393,-0.0214587803930044,0.039020448923111,0.999205708503723,-0.00808627251535654,-0.016903942450881,0.999824047088623,0.00814053695648909,-0.188905984163284,0.981739640235901,-0.0224008653312922,-0.181084796786308,0.983243227005005,-0.0210045203566551,0.0373925305902958,0.998129844665527,-0.0483595319092274,-0.181070789694786,0.983310878276825,-0.0176972392946482,-0.10957895219326,0.99358457326889,-0.0279663149267435,-0.181087255477905,0.983229100704193,-0.0216356068849564,-0.188752830028534,0.981750011444092,-0.0232240669429302,-0.328064799308777,0.943207800388336,-0.052274189889431,-0.110710054636002,0.993271708488464,-0.0339798331260681,-0.181073158979416,0.983300685882568,-0.0182291623204947,-0.277508348226547,0.960715413093567,0.0038771778345108,-0.280129313468933,0.959616720676422,-0.0257551725953817,-0.181098312139511,0.983152985572815,-0.0247699152678251,-0.330554813146591,0.943424105644226,-0.026162663474679,0.314587414264679,-0.899196445941925,-0.30410623550415,0.153037205338478,-0.941463768482208,-0.300376087427139,0.364306718111038,-0.880431890487671,-0.30351334810257,
- 0.311548948287964,-0.893881916999817,-0.322354644536972,0.146903157234192,-0.942724287509918,-0.299483776092529,0.153032675385475,-0.94143009185791,-0.300483554601669,0.364343136548996,-0.892495095729828,-0.265907198190689,0.152859374880791,-0.940142393112183,-0.304575651884079,0.224842935800552,-0.929228544235229,-0.293223649263382,0.153062045574188,-0.941648602485657,-0.299783170223236,0.147103980183601,-0.942958414554596,-0.298646867275238,0.0136358477175236,-0.96262139081955,-0.270507454872131,0.223952770233154,-0.93117082118988,-0.287690877914429,0.152870401740074,-0.940224170684814,-0.304317593574524,0.0502244457602501,-0.944328308105469,-0.325148910284042,0.0486604161560535,-0.954127311706543,-0.295420497655869,0.153165459632874,-0.942419230937958,-0.297298431396484,0.0105214491486549,-0.955769836902618,-0.293927758932114,0.149487167596817,0.85992032289505,0.488047778606415,-0.0206497851759195,0.874174177646637,0.48517319560051,0.203704506158829,0.849927186965942,0.485930323600769,0.147133842110634,0.850488185882568,0.504996538162231,-0.0291597619652748,0.874715447425842,0.48375877737999,-0.0206501632928848,0.874190151691437,0.485144406557083,0.202042177319527,0.869422912597656,0.450868993997574,-0.0205935947597027,0.871795415878296,0.489437222480774,0.054238073527813,0.875995695590973,0.479259818792343,-0.0206598173826933,0.874598920345306,0.484406769275665,-0.0289671495556831,0.87522429227829,0.482849359512329,-0.163588687777519,0.876538932323456,0.452678948640823,0.0530965253710747,0.878779113292694,0.47426575422287,-0.0205937772989273,0.871803224086761,0.489423334598541,-0.117826610803604,0.854938805103302,0.505169868469238,-0.120731063187122,0.869816303253174,0.478375911712646,-0.0206846687942743,0.875650942325592,0.482501268386841,-0.165868327021599,0.864264249801636,0.474905222654343,0.157275006175041,0.264585703611374,-0.951451003551483,-0.0152120543643832,0.258223503828049,-0.965965449810028,0.207882955670357,0.264948844909668,-0.941587448120117,0.154999762773514,0.283177524805069,-0.946459531784058,
- -0.00898821279406548,0.258823484182358,-0.965882837772369,-0.0152140203863382,0.257755994796753,-0.966090261936188,0.206217020750046,0.2275470495224,-0.951681077480316,-0.0151871498674154,0.264069676399231,-0.964384019374847,0.0608407519757748,0.253027260303497,-0.9655442237854,-0.015217780135572,0.256859302520752,-0.966329038143158,-0.00885197520256042,0.258124023675919,-0.966071307659149,-0.15218061208725,0.226973339915276,-0.961937725543976,0.0597217306494713,0.24763397872448,-0.967011213302612,-0.0151862688362598,0.264274060726166,-0.964328050613403,-0.112725704908371,0.283629804849625,-0.952285170555115,-0.115538708865643,0.253030031919479,-0.960534572601318,-0.0152227627113461,0.255665630102158,-0.966645419597626,-0.154471158981323,0.251303166151047,-0.95550274848938,0.164942532777786,0.625498533248901,-0.762591302394867,-0.0122797964140773,0.625949323177338,-0.779767036437988,0.20881475508213,0.622258186340332,-0.75444757938385,0.162424892187119,0.641208529472351,-0.749979913234711,-0.0188160967081785,0.624907493591309,-0.780472040176392,-0.0122808404266834,0.625866651535034,-0.779833376407623,0.207003504037857,0.591398298740387,-0.779357194900513,-0.0122334761545062,0.629596829414368,-0.776825726032257,0.0632326900959015,0.619977533817291,-0.782067477703094,-0.0122883673757315,0.625270545482636,-0.780311346054077,-0.0186430942267179,0.624197840690613,-0.781043827533722,-0.161186769604683,0.593144953250885,-0.788795351982117,0.0620747841894627,0.615386307239532,-0.785777688026428,-0.0122350417077541,0.629474103450775,-0.776925146579742,-0.108393579721451,0.642293989658356,-0.758755147457123,-0.111088067293167,0.61884731054306,-0.777616560459137,-0.0123103763908148,0.623521983623505,-0.781708896160126,-0.163640484213829,0.613841593265533,-0.772282600402832,0.152666732668877,-0.837387681007385,0.524856865406036,-0.0193392168730497,-0.842896640300751,0.537728011608124,0.205040499567986,-0.830628156661987,0.517701983451843,0.150578230619431,-0.847607970237732,0.508809447288513,-0.0211092308163643,-0.84236353635788,0.538496136665344,
- -0.0193493776023388,-0.842547535896301,0.538274466991425,0.203186437487602,-0.809504747390747,0.550833284854889,-0.0192490536719561,-0.845967173576355,0.532887637615204,0.0565376803278923,-0.838415622711182,0.542091190814972,-0.0193637758493423,-0.842051565647125,0.539049327373505,-0.0209456756711006,-0.841862201690674,0.539285957813263,-0.157147109508514,-0.817281782627106,0.554396450519562,0.0553798079490662,-0.835448741912842,0.546771049499512,-0.0192451719194651,-0.846098124980927,0.532679617404938,-0.111740820109844,-0.852393209934235,0.510822892189026,-0.11499796807766,-0.835983395576477,0.536569893360138,-0.0193848591297865,-0.84132319688797,0.540184676647186,-0.159034833312035,-0.830895483493805,0.533217191696167,0.15018904209137,-0.331322401762009,0.931487321853638,-0.0223260372877121,-0.325915068387985,0.945135474205017,0.198380514979362,-0.331049740314484,0.922524392604828,0.147839277982712,-0.349719792604446,0.925116062164307,-0.0294482465833426,-0.324468791484833,0.945437908172607,-0.0223278738558292,-0.325689315795898,0.945213258266449,0.196774959564209,-0.294133991003037,0.935288727283478,-0.0222856067121029,-0.330839395523071,0.943423986434937,0.0518886856734753,-0.320231944322586,0.945917129516602,-0.0223347153514624,-0.324846714735031,0.945502936840057,-0.0292545631527901,-0.323476344347,0.945783913135529,-0.160618260502815,-0.294322550296783,0.942112565040588,0.0507638901472092,-0.31500706076622,0.947730779647827,-0.0222846493124962,-0.330954819917679,0.943383455276489,-0.11445115506649,-0.348457396030426,0.930310964584351,-0.117433413863182,-0.320215314626694,0.94003814458847,-0.0223489385098219,-0.323087990283966,0.946105003356934,-0.162782818078995,-0.317798256874084,0.934080302715302,0.156494483351707,0.983068764209747,0.0953173860907555,-0.015687009319663,0.996125102043152,0.0865373238921165,0.209505796432495,0.972935855388641,0.0974839627742767,0.154206916689873,0.981390357017517,0.114426098763943,-0.00877946987748146,0.996149361133575,0.0872326269745827,-0.015687707811594,0.99616938829422,0.0860260650515556,
- 0.208026275038719,0.97637140750885,0.0585147738456726,-0.0156783629208803,0.995576024055481,0.0926420018076897,0.064449280500412,0.994631707668304,0.08095683157444,-0.0156889762729406,0.996249973773956,0.0850873216986656,-0.00864134542644024,0.996212959289551,0.0865158811211586,-0.148139253258705,0.987300276756287,0.0573848411440849,0.0632958933711052,0.995164513587952,0.0751081705093384,-0.0156780015677214,0.995553135871887,0.0928879976272583,-0.108602873980999,0.987635374069214,0.113056890666485,-0.111354663968086,0.990353643894196,0.0824616476893425,-0.0156905483454466,0.996349811553955,0.0839096829295158,-0.150367692112923,0.985252916812897,0.0816470831632614,0.161725252866745,0.860194444656372,0.483642935752869,-0.0138055672869086,0.876653492450714,0.480924099683762,0.213840186595917,0.849954545497894,0.481507778167725,0.15937851369381,0.850638806819916,0.50101113319397,-0.0144384652376175,0.876824676990509,0.480593383312225,-0.0138075463473797,0.876779198646545,0.480694860219955,0.212002754211426,0.86959582567215,0.445935010910034,-0.0137672973796725,0.874223351478577,0.485328674316406,0.0672715753316879,0.877882122993469,0.474128156900406,-0.0138136586174369,0.877167284488678,0.479986160993576,-0.0142855439335108,0.87720775604248,0.479898631572723,-0.156235590577126,0.88005143404007,0.448441684246063,0.0660765171051025,0.880892157554626,0.468682259321213,-0.0137676270678639,0.874244272708893,0.485291212797165,-0.110680729150772,0.858281910419464,0.501100897789001,-0.113428868353367,0.873045861721039,0.474262416362762,-0.0138283194974065,0.878098249435425,0.478280514478683,-0.158647522330284,0.867832720279694,0.470847487449646,0.151242896914482,-0.662483215332031,-0.733649492263794,-0.0159648433327675,-0.675844967365265,-0.73687082529068,0.209314256906509,-0.65330958366394,-0.727581083774567,0.1491918861866,-0.648565948009491,-0.746394038200378,-0.0189788397401571,-0.676353394985199,-0.736332774162292,-0.0159691870212555,-0.676028907299042,-0.736702144145966,0.207176879048347,-0.682919085025787,-0.700499415397644,
- -0.0158769711852074,-0.672125160694122,-0.740267395973206,0.0588923022150993,-0.679625511169434,-0.731191456317902,-0.0159835312515497,-0.676636099815369,-0.736144125461578,-0.0188208352774382,-0.677000522613525,-0.735741913318634,-0.157709047198296,-0.687898874282837,-0.708465278148651,0.0576998889446259,-0.683852255344391,-0.727335512638092,-0.0158773772418499,-0.672142326831818,-0.740251779556274,-0.116014823317528,-0.649989128112793,-0.751035809516907,-0.119391292333603,-0.6732217669487,-0.729738533496857,-0.0160183515399694,-0.678110241889954,-0.734785676002502,-0.159830957651138,-0.669305264949799,-0.725592613220215
- }
- BinormalsW: *3009 {
- 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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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: *9027 {
- a: 0.119802065193653,-0.810879647731781,0.57281905412674,0.117428652942181,-0.811576426029205,0.572323501110077,-0.0845935717225075,-0.851452708244324,0.517563760280609,0.12308968603611,-0.990753889083862,-0.0570585355162621,0.107717655599117,-0.992701292037964,-0.0542320795357227,0.17553536593914,-0.982215285301209,-0.066636934876442,0.108851954340935,-0.661769032478333,0.741763472557068,-0.014496311545372,-0.687734663486481,0.725817441940308,-0.16009296476841,-0.704102218151093,0.691816747188568,0.123490288853645,-0.990789771080017,-0.0555503256618977,0.0696708932518959,-0.996749460697174,-0.0404556952416897,0.107879124581814,-0.992845892906189,-0.0511787086725235,0.0354004316031933,-0.999226450920105,0.0171259399503469,0.110127486288548,-0.993896782398224,-0.00641514454036951,0.0830314606428146,-0.996544718742371,0.00214104191400111,0.0889661684632301,-0.995808362960815,0.0212321765720844,0.0451581925153732,-0.998302817344666,0.0367732495069504,0.0396916829049587,-0.998462080955505,0.0387044958770275,0.0924781337380409,-0.885879933834076,0.45460370182991,0.1196264103055,-0.87803852558136,0.463398188352585,0.0226346850395203,-0.902410209178925,0.430283278226852,0.048689216375351,-0.995258271694183,0.084204763174057,0.0495500303804874,-0.995215535163879,0.084206834435463,0.113998509943485,-0.989907741546631,0.0841840729117393,0.0417078956961632,-0.979862928390503,0.195267200469971,0.0138349290937185,-0.981506824493408,0.190926522016525,0.165651053190231,-0.962967813014984,0.212726905941963,0.105714336037636,-0.993934512138367,-0.0303104799240828,0.22230789065361,-0.974755764007568,-0.0207446049898863,0.0636279806494713,-0.997406840324402,-0.0336304306983948,0.0386829264461994,-0.99599826335907,0.0805668383836746,-0.0972352623939514,-0.994919657707214,0.0260802526026964,0.0729802325367928,-0.992884755134583,0.0940946340560913,-0.0563157051801682,-0.996146857738495,-0.0672322958707809,0.0591099821031094,-0.998170912265778,-0.0126830153167248,-0.00907270144671202,-0.99894642829895,-0.0449859127402306,
- 0.0436026975512505,-0.997345149517059,0.0583215355873108,0.0512759573757648,-0.996978461742401,0.0583503171801567,-0.0245748460292816,-0.998018980026245,0.0579154156148434,-0.0104902815073729,-0.999310255050659,-0.0356234163045883,0.0849553942680359,-0.996384739875793,0.000501358939800411,-0.0617758557200432,-0.996579170227051,-0.0548979006707668,0.0467921905219555,-0.996116459369659,0.0745823308825493,-0.0162821188569069,-0.99716192483902,0.0735050663352013,0.0501934885978699,-0.995947122573853,0.0746320635080338,-0.0292583741247654,-0.995581090450287,0.0892312079668045,0.0498985089361668,-0.995622575283051,0.0790308713912964,-0.0163751896470785,-0.996020436286926,0.0876081958413124,0.0252603553235531,-0.997808635234833,0.0611540600657463,-0.0161542519927025,-0.998363256454468,0.0548636317253113,0.0447170808911324,-0.996942758560181,0.0640745609998703,0.0241960845887661,-0.998242020606995,0.0541066639125347,0.0416716299951077,-0.997944414615631,0.0486870557069778,0.0483877137303352,-0.997741103172302,0.0465987324714661,-0.0163714773952961,-0.996070563793182,0.0870366245508194,0.0222523007541895,-0.996416509151459,0.0816036015748978,-0.0291957892477512,-0.995620429515839,0.088812030851841,-0.0161563511937857,-0.99834668636322,0.055163212120533,0.0253252722322941,-0.997780561447144,0.0615841075778008,0.0226085130125284,-0.997871458530426,0.0611666925251484,0.0484042093157768,-0.997738003730774,0.0466489270329475,-0.0204506609588861,-0.997457921504974,0.0682618543505669,0.0242217145860195,-0.998232185840607,0.0542763285338879,0.0226826705038548,-0.998125672340393,0.0568388551473618,0.0246471222490072,-0.998064577579498,0.0570926927030087,-0.0234117805957794,-0.998433351516724,0.0508219376206398,-0.0193168967962265,-0.997002184391022,0.0749236419796944,0.0501300804316998,-0.997393071651459,0.0519041903316975,-0.0407752729952335,-0.995801031589508,0.0819621682167053,-0.0411649830639362,-0.995887577533722,0.080706425011158,-0.143513336777687,-0.983488976955414,0.110242620110512,-0.019418153911829,-0.997044682502747,0.0743290260434151,
- -0.156276777386665,-0.987472057342529,0.0218306258320808,0.0227315686643124,-0.998283743858337,0.0539709739387035,-0.0242810510098934,-0.998660504817963,0.0456909686326981,-0.144532710313797,-0.984072804450989,0.103494018316269,-0.0427915342152119,-0.996230125427246,0.0754612162709236,-0.184600815176964,-0.976140558719635,0.114334061741829,-0.193091422319412,-0.978299021720886,0.0751447305083275,-0.306961268186569,-0.948131740093231,0.0825891122221947,-0.14918415248394,-0.986181318759918,0.0720464885234833,-0.21246962249279,-0.975786328315735,0.0519411973655224,0.0225620865821838,-0.997703731060028,0.0638629496097565,-0.151584893465042,-0.986892104148865,0.055371455848217,-0.306821137666702,-0.947109401226044,0.0940462201833725,-0.211953580379486,-0.973416388034821,0.0868116319179535,-0.147797212004662,-0.985650837421417,0.0815387666225433,-0.307047039270401,-0.951381146907806,0.0244145356118679,-0.131964489817619,-0.990156352519989,0.0466469824314117,-0.212613731622696,-0.976448237895966,0.0366642475128174,-0.13435323536396,-0.98846447467804,0.0699087679386139,0.0225142296403646,-0.997523605823517,0.0666317641735077,-0.212221249938011,-0.974645733833313,0.0709075778722763,-0.129899978637695,-0.991157591342926,0.0270697176456451,-0.306896209716797,-0.951699733734131,0.00907612126320601,-0.197163358330727,-0.980158627033234,0.0203894320875406,-0.0278323441743851,-0.996431469917297,0.0796848684549332,0.0223746094852686,-0.99695873260498,0.0746502950787544,0.0399389266967773,-0.996543407440186,0.0728427469730377,-0.136466562747955,-0.986448705196381,0.0910814702510834,0.0398930944502354,-0.996513783931732,0.0732733160257339,0.0223658140748739,-0.996921300888062,0.075152613222599,0.112485438585281,-0.991347670555115,-0.0676525086164474,0.00377507461234927,-0.991583824157715,-0.129411950707436,0.0575328730046749,-0.993409931659698,-0.0991293862462044,-0.188170298933983,-0.981858134269714,-0.023377588018775,0.00833398569375277,-0.999529600143433,0.0295145139098167,-0.126235976815224,-0.991978466510773,-0.00658277003094554,
- 0.0436007790267468,-0.998319566249847,0.038170725107193,-0.129180625081062,-0.991412222385406,0.0203558690845966,0.00699879135936499,-0.999380886554718,0.0344821326434612,0.0536570399999619,-0.996753990650177,-0.0600202232599258,0.034531693905592,-0.997068345546722,-0.0682806447148323,0.101115509867668,-0.99409556388855,-0.0393658094108105,0.0182449668645859,-0.999806106090546,-0.00740966107696295,-0.178133457899094,-0.981502950191498,-0.0701457411050797,0.0562522001564503,-0.998405158519745,0.00479789404198527,0.0532869473099709,-0.998477518558502,0.0142532009631395,0.0770118832588196,-0.996830403804779,0.0199565421789885,0.014909784309566,-0.999876201152802,0.00502572394907475,0.286552876234055,-0.921648263931274,0.261633187532425,0.28217601776123,-0.923383951187134,0.260266840457916,0.0862209498882294,-0.976988852024078,0.195086434483528,0.28314682841301,-0.874865651130676,-0.392985969781876,0.264258354902267,-0.881890475749969,-0.390431642532349,0.334866672754288,-0.853517174720764,-0.399215370416641,0.259589970111847,-0.843222796916962,0.470731794834137,0.136257812380791,-0.884752035140991,0.445699036121368,-0.00216214382089674,-0.912477672100067,0.409121125936508,0.283524990081787,-0.875229477882385,-0.391901731491089,0.22966530919075,-0.896380484104156,-0.379151552915573,0.264631897211075,-0.883044540882111,-0.387559443712235,0.193620294332504,-0.926000714302063,-0.324089378118515,0.269721448421478,-0.898698329925537,-0.345820486545563,0.245260283350945,-0.908239006996155,-0.339042007923126,0.252083539962769,-0.912961423397064,-0.320866703987122,0.209005415439606,-0.928574979305267,-0.306700557470322,0.19899645447731,-0.931874752044678,-0.303331404924393,0.259200751781464,-0.957986950874329,0.122784473001957,0.2885762155056,-0.947868406772614,0.135164603590965,0.196802631020546,-0.975688695907593,0.0964380726218224,0.209449127316475,-0.942236304283142,-0.261384278535843,0.218223363161087,-0.940289676189423,-0.261216461658478,0.278336018323898,-0.924769580364227,-0.259480714797974,0.214525058865547,-0.964929699897766,-0.151293486356735,
- 0.17936772108078,-0.971136689186096,-0.157228752970696,0.33044421672821,-0.934840261936188,-0.12992450594902,0.260645061731339,-0.892189681529999,-0.368865489959717,0.375520050525665,-0.856921017169952,-0.353087991476059,0.218675345182419,-0.901615500450134,-0.373189836740494,0.200348824262619,-0.942652702331543,-0.266957551240921,0.0712814256548882,-0.946510493755341,-0.31470113992691,0.235808938741684,-0.938373804092407,-0.252683073282242,0.10639277100563,-0.909183442592621,-0.402574211359024,0.21575865149498,-0.9094557762146,-0.355441242456436,0.154081091284752,-0.910889267921448,-0.382805198431015,0.203854233026505,-0.936173439025879,-0.286396354436874,0.218683183193207,-0.932911455631256,-0.286101639270782,0.145074009895325,-0.946907460689545,-0.286914527416229,0.153337672352791,-0.914523243904114,-0.374346047639847,0.245584234595299,-0.907568454742432,-0.340599596500397,0.101890161633492,-0.914568781852722,-0.391385346651077,0.207152843475342,-0.94008594751358,-0.270788341760635,0.152035295963287,-0.950220584869385,-0.271967023611069,0.218410521745682,-0.937634766101837,-0.270440340042114,0.142020523548126,-0.955904841423035,-0.257052838802338,0.218332350254059,-0.938789129257202,-0.266469597816467,0.152622729539871,-0.953892052173615,-0.258449703454971,0.189210414886475,-0.939931631088257,-0.28412663936615,0.151212424039841,-0.945077657699585,-0.28976371884346,0.204446077346802,-0.937458217144012,-0.281733781099319,0.187963604927063,-0.938386261463165,-0.290001660585403,0.201371654868126,-0.934355437755585,-0.293988943099976,0.212650552392006,-0.93080061674118,-0.297304481267929,0.152598738670349,-0.953742146492004,-0.259016454219818,0.187976077198982,-0.946053326129913,-0.263909548521042,0.142066955566406,-0.955777943134308,-0.257498741149902,0.151226252317429,-0.945164024829865,-0.289474695920944,0.18929648399353,-0.940037369728088,-0.283719539642334,0.187360554933548,-0.940333247184753,-0.284023582935333,0.212669670581818,-0.930812060832977,-0.297254979610443,0.145802706480026,-0.9498171210289,-0.276747405529022,
- 0.18799988925457,-0.938431620597839,-0.289831221103668,0.187223687767982,-0.939104855060577,-0.288148164749146,0.188391014933586,-0.938919067382813,-0.287992775440216,0.141958400607109,-0.945256114006042,-0.293834358453751,0.147239118814468,-0.951455295085907,-0.270284324884415,0.214632079005241,-0.931974530220032,-0.292158633470535,0.127007991075516,-0.956265926361084,-0.263485491275787,0.126568228006363,-0.955987572669983,-0.26470422744751,0.0270743556320667,-0.972046375274658,-0.23322269320488,0.147105425596237,-0.951304256916046,-0.270887702703476,0.0099467821419239,-0.94836038351059,-0.317038893699646,0.187128692865372,-0.938259959220886,-0.290948897600174,0.140836328268051,-0.943877398967743,-0.298765152692795,0.0257616229355335,-0.970493078231812,-0.239749297499657,0.124735906720161,-0.954811334609985,-0.269770830869675,-0.0190257485955954,-0.974096059799194,-0.225332736968994,-0.0293673351407051,-0.964202105998993,-0.263537287712097,-0.14323778450489,-0.95848149061203,-0.246568977832794,0.0196817312389612,-0.962728142738342,-0.269753783941269,-0.0503365397453308,-0.957246065139771,-0.284861832857132,0.187449559569359,-0.941139698028564,-0.281280875205994,0.0164613071829081,-0.958237767219543,-0.285498917102814,-0.14263316988945,-0.961362481117249,-0.23545278608799,-0.0482266023755074,-0.966829359531403,-0.250828981399536,0.0215293504297733,-0.965186715126038,-0.260674387216568,-0.146013677120209,-0.941907823085785,-0.302472710609436,0.0313011854887009,-0.954970836639404,-0.295044094324112,-0.0512420684099197,-0.952663898468018,-0.299676299095154,0.0301498360931873,-0.961764097213745,-0.272214472293854,0.187536761164665,-0.941936075687408,-0.278543293476105,-0.0492001660168171,-0.962592124938965,-0.266450315713882,0.0322353355586529,-0.948972821235657,-0.313706070184708,-0.146659299731255,-0.937030375003815,-0.316962540149689,-0.0351008288562298,-0.948068499565125,-0.316123783588409,0.142972692847252,-0.953242719173431,-0.266246438026428,0.18777771294117,-0.944170594215393,-0.270705789327621,0.205115467309952,-0.940099596977234,-0.272287607192993,
- 0.0290923304855824,-0.967444598674774,-0.251405268907547,0.205091580748558,-0.940226018428802,-0.271868526935577,0.18779231607914,-0.944307923316956,-0.270216137170792,0.268230020999908,-0.875090539455414,-0.402826607227325,0.160338923335075,-0.873548626899719,-0.459569782018662,0.211431637406349,-0.875896036624908,-0.433708190917969,-0.0285856947302818,-0.933225095272064,-0.358153313398361,0.171733409166336,-0.933608174324036,-0.314457416534424,0.0338430628180504,-0.937575578689575,-0.34613111615181,0.206899270415306,-0.929373621940613,-0.305708259344101,0.0325556024909019,-0.946812868118286,-0.320133686065674,0.170664280653,-0.935446321964264,-0.309538245201111,0.210550427436829,-0.892940878868103,-0.397900938987732,0.191036716103554,-0.893748879432678,-0.405854642391205,0.25898939371109,-0.889176189899445,-0.377213835716248,0.179235756397247,-0.919680595397949,-0.349374026060104,-0.0215862262994051,-0.915342450141907,-0.402097523212433,0.220911920070648,-0.915502429008484,-0.336234092712402,0.218618929386139,-0.919199347496033,-0.327533721923828,0.238844677805901,-0.915970206260681,-0.322415709495544,0.176722884178162,-0.924551784992218,-0.337599039077759,0.116648569703102,-0.41693389415741,0.901420772075653,0.115652546286583,-0.417289793491364,0.901384353637695,-0.0872500017285347,-0.479246705770493,0.873332738876343,0.124246999621391,-0.886525630950928,0.445685058832169,0.106175072491169,-0.886843681335449,0.449705600738525,0.176356643438339,-0.883887708187103,0.433175384998322,0.107174672186375,-0.202609047293663,0.973377287387848,-0.0170712098479271,-0.233226537704468,0.972272574901581,-0.161568224430084,-0.264095813035965,0.950867593288422,0.124617293477058,-0.885851144790649,0.446921139955521,0.0722498744726181,-0.883622884750366,0.462591141462326,0.106341391801834,-0.88537323474884,0.452554732561111,0.0331071503460407,-0.85650098323822,0.515082716941834,0.108551479876041,-0.863861203193665,0.491894721984863,0.0855541005730629,-0.862187027931213,0.499313563108444,0.0914463326334953,-0.852051496505737,0.515408456325531,
- 0.0397267639636993,-0.845357060432434,0.532722473144531,0.0373227819800377,-0.844984412193298,0.533487200737,0.0894498825073242,-0.541118085384369,0.836175799369812,0.117829352617264,-0.52946937084198,0.840106189250946,0.0293535739183426,-0.56397408246994,0.825270593166351,0.0459602326154709,-0.819924533367157,0.570623874664307,0.0574981234967709,-0.819390535354614,0.570344805717468,0.112331539392471,-0.815346956253052,0.567970931529999,0.0493642836809158,-0.749864161014557,0.65974760055542,0.0158059690147638,-0.754317164421082,0.656320035457611,0.162221074104309,-0.728406667709351,0.665663599967957,0.108868896961212,-0.875514447689056,0.470767468214035,0.218867421150208,-0.855350255966187,0.469545781612396,0.0662387758493423,-0.88035249710083,0.469672083854675,0.0408536083996296,-0.821718990802765,0.568426668643951,-0.0993840098381042,-0.848864018917084,0.519184648990631,0.0753918439149857,-0.812115788459778,0.57860541343689,-0.05788803845644,-0.896556854248047,0.439129590988159,0.061470739543438,-0.870116412639618,0.488997787237167,-0.00599240511655808,-0.886960029602051,0.461807310581207,0.0460218712687492,-0.834467530250549,0.549131989479065,0.0592578537762165,-0.833837151527405,0.548820674419403,-0.0210602469742298,-0.835407972335815,0.549226760864258,-0.00734783709049225,-0.882713139057159,0.469854891300201,0.085533894598484,-0.862496852874756,0.498781859874725,-0.0634789243340492,-0.890712380409241,0.450113296508789,0.044099472463131,-0.825491368770599,0.562689363956451,-0.0153649989515543,-0.826809048652649,0.562272846698761,0.0581479221582413,-0.824752330780029,0.562496662139893,-0.0256120674312115,-0.817934513092041,0.574741005897522,0.0579287931323051,-0.822947680950165,0.565156042575836,-0.0154838040471077,-0.818852365016937,0.57379537820816,0.026146873831749,-0.833438813686371,0.551992774009705,-0.0152031052857637,-0.837091624736786,0.546851396560669,0.0420037806034088,-0.831649839878082,0.553709506988525,0.024985309690237,-0.837567925453186,0.545761585235596,0.0392448827624321,-0.839578986167908,0.541818261146545,
- 0.0428726971149445,-0.840060949325562,0.540795385837555,-0.0154788456857204,-0.819191753864288,0.573310792446136,0.0259006023406982,-0.822344124317169,0.568400681018829,-0.0255424603819847,-0.818208456039429,0.57435405254364,-0.015205804258585,-0.836925327777863,0.54710578918457,0.0262144729495049,-0.833196997642517,0.552354753017426,0.0262423288077116,-0.833193957805634,0.552357912063599,0.0428968966007233,-0.840019822120667,0.540857315063477,-0.021468386054039,-0.829501390457153,0.558091878890991,0.0250108800828457,-0.837477684020996,0.545898973941803,0.0263198148459196,-0.835654079914093,0.548625111579895,0.0255040973424912,-0.835730314254761,0.548547506332397,-0.0244886055588722,-0.839319229125977,0.543087065219879,-0.0203368533402681,-0.825758576393127,0.563657104969025,0.0446428135037422,-0.837039530277252,0.545318186283112,-0.0444679073989391,-0.820578753948212,0.569801092147827,-0.0448981188237667,-0.82134872674942,0.568656861782074,-0.143362402915955,-0.796650171279907,0.587193250656128,-0.0204438287764788,-0.826113998889923,0.563132226467133,-0.156351789832115,-0.844258904457092,0.512621700763702,0.026366300880909,-0.837130069732666,0.54636812210083,-0.0253588259220123,-0.842101335525513,0.53872287273407,-0.144400894641876,-0.800533294677734,0.581631124019623,-0.04655497148633,-0.824299454689026,0.564236879348755,-0.187348455190659,-0.787307679653168,0.587407171726227,-0.195782408118248,-0.809094667434692,0.554107367992401,-0.307326644659042,-0.779700100421906,0.545543849468231,-0.149127870798111,-0.818048238754272,0.555479884147644,-0.212107300758362,-0.819132804870605,0.532946467399597,0.0262025631964207,-0.831931352615356,0.554259598255157,-0.151567876338959,-0.826980471611023,0.541415274143219,-0.307158499956131,-0.773077189922333,0.554982423782349,-0.211760640144348,-0.799631536006927,0.561913728713989,-0.147712707519531,-0.81283313035965,0.563456654548645,-0.307550698518753,-0.811613798141479,0.496684670448303,-0.132376134395599,-0.834164679050446,0.535393238067627,-0.212177693843842,-0.827357232570648,0.520058274269104,
- -0.134737223386765,-0.821038961410522,0.554744005203247,0.0261589903384447,-0.83054792881012,0.556332588195801,-0.21195125579834,-0.808673202991486,0.548747897148132,-0.130341157317162,-0.844809532165527,0.518948912620544,-0.307435810565948,-0.819540441036224,0.483566552400589,-0.200450137257576,-0.838245868682861,0.507112920284271,-0.024215180426836,-0.823392152786255,0.566955924034119,0.0260225366801023,-0.82621556520462,0.562752842903137,0.0364949926733971,-0.826539039611816,0.561695098876953,-0.136822402477264,-0.808692932128906,0.572097480297089,0.036448035389185,-0.826280176639557,0.562078833580017,0.0260135997086763,-0.825931787490845,0.563169658184052,0.113256894052029,-0.892063617706299,0.437487602233887,0.00661524757742882,-0.922798037528992,0.385227292776108,0.0535656809806824,-0.91098541021347,0.408945560455322,-0.191252321004868,-0.861889600753784,0.46964767575264,0.00914077460765839,-0.850735068321228,0.525515377521515,-0.126716837286949,-0.862379431724548,0.490147441625595,0.0400573126971722,-0.845773577690125,0.532036125659943,-0.129635542631149,-0.848365306854248,0.513294279575348,0.00785411894321442,-0.84816962480545,0.529666483402252,0.0497996546328068,-0.894113838672638,0.445062160491943,0.0348523780703545,-0.897527277469635,0.439579516649246,0.101807475090027,-0.880358874797821,0.463253170251846,0.0188812296837568,-0.869466960430145,0.493630141019821,-0.18107096850872,-0.885034084320068,0.428868174552917,0.0574017092585564,-0.862018644809723,0.503615856170654,0.0544894859194756,-0.857389211654663,0.51177591085434,0.0775448083877563,-0.853213548660278,0.515764951705933,0.0156160295009613,-0.863323509693146,0.504409313201904,0.119329482316971,-0.96004456281662,-0.253130435943604,0.113252438604832,-0.960204005241394,-0.25530794262886,-0.0849765762686729,-0.943710505962372,-0.31967094540596,0.122863471508026,-0.593179523944855,-0.795639753341675,0.10577304661274,-0.596966445446014,-0.79526287317276,0.179912313818932,-0.579149067401886,-0.795121312141418,0.104299187660217,-0.994053781032562,-0.0312855318188667,
- -0.013627702370286,-0.998099982738495,-0.0600884109735489,-0.159931689500809,-0.982579588890076,-0.0946535617113113,0.123277857899666,-0.594371795654297,-0.794685363769531,0.065793476998806,-0.61073362827301,-0.789098083972931,0.105930268764496,-0.599548876285553,-0.793296933174133,0.0318616628646851,-0.656304895877838,-0.75382274389267,0.107989087700844,-0.634601712226868,-0.76525753736496,0.0791043043136597,-0.643338561058044,-0.761484086513519,0.0850459188222885,-0.657598674297333,-0.748552799224854,0.0421600751578808,-0.670708358287811,-0.740522086620331,0.0360883064568043,-0.672449886798859,-0.739262402057648,0.0939885526895523,-0.917807757854462,-0.385739624500275,0.115749098360538,-0.919195413589478,-0.37640655040741,0.0216271989047527,-0.909534394741058,-0.41506564617157,0.0446610227227211,-0.704381942749023,-0.708414852619171,0.0502501279115677,-0.704220712184906,-0.708200693130493,0.111458778381348,-0.701003968715668,-0.704393625259399,0.0418650060892105,-0.77944678068161,-0.625068068504334,0.0102832764387131,-0.776833772659302,-0.629621744155884,0.167684361338615,-0.781887412071228,-0.600445032119751,0.106221340596676,-0.615644752979279,-0.780832052230835,0.224625945091248,-0.610459566116333,-0.759527683258057,0.0614185035228729,-0.615289509296417,-0.785905003547668,0.0359454154968262,-0.701192498207092,-0.71206533908844,-0.0948798507452011,-0.660326898097992,-0.744960606098175,0.0731729716062546,-0.710307657718658,-0.700077772140503,-0.0533929392695427,-0.5900017619133,-0.805634737014771,0.0569521114230156,-0.631162106990814,-0.773557245731354,-0.00791156943887472,-0.608070909976959,-0.793843269348145,0.0407497882843018,-0.685834646224976,-0.726615726947784,0.0521018877625465,-0.685526430606842,-0.726181089878082,-0.023604542016983,-0.685908198356628,-0.727305173873901,-0.0093400189653039,-0.61540812253952,-0.788153409957886,0.0845806747674942,-0.640762388706207,-0.763065993785858,-0.0588428899645805,-0.59953361749649,-0.798183500766754,0.0427941158413887,-0.697521984577179,-0.715284407138824,-0.0166234169155359,-0.697287678718567,-0.716598629951477,
- 0.0509389974176884,-0.697361886501312,-0.714906811714172,-0.0283488966524601,-0.708223283290863,-0.70541912317276,0.0506345927715302,-0.700406312942505,-0.7119460105896,-0.016703687608242,-0.70735228061676,-0.706663846969604,0.0242676213383675,-0.688143968582153,-0.725168228149414,-0.0165118798613548,-0.683730602264404,-0.729547739028931,0.0406526699662209,-0.68958842754364,-0.723059594631195,0.0232461113482714,-0.683315515518188,-0.729753136634827,0.0380023792386055,-0.679674744606018,-0.732528626918793,0.0453620217740536,-0.677797317504883,-0.733848214149475,-0.0167005509138107,-0.706953823566437,-0.707062423229218,0.0223272740840912,-0.702976584434509,-0.710862398147583,-0.0282843187451363,-0.707923412322998,-0.705722630023956,-0.0165137108415365,-0.683949112892151,-0.729342877864838,0.0243333429098129,-0.688453733921051,-0.72487199306488,0.0225477274507284,-0.688281357288361,-0.725093424320221,0.045382846146822,-0.67784321308136,-0.73380446434021,-0.0255622453987598,-0.694495677947998,-0.719042718410492,0.0232727602124214,-0.683441758155823,-0.729633986949921,0.0225934088230133,-0.685117900371552,-0.728081703186035,0.023644432425499,-0.685201346874237,-0.727969765663147,-0.0288986377418041,-0.680090010166168,-0.732558846473694,-0.024409182369709,-0.699399471282959,-0.714314162731171,0.0471427440643311,-0.68171352148056,-0.730098843574524,-0.0422985702753067,-0.703204870223999,-0.709728002548218,-0.0427034422755241,-0.702261209487915,-0.710637450218201,-0.143134534358978,-0.716598093509674,-0.682641744613647,-0.0245393291115761,-0.698847830295563,-0.714849293231964,-0.155664891004562,-0.651619434356689,-0.742401897907257,0.0226232185959816,-0.683030426502228,-0.730039477348328,-0.0298043042421341,-0.676123678684235,-0.736185133457184,-0.144141927361488,-0.711787164211273,-0.687446177005768,-0.0443403795361519,-0.69843053817749,-0.714302957057953,-0.187000930309296,-0.71518212556839,-0.673457741737366,-0.195495128631592,-0.686216533184052,-0.700634479522705,-0.305997341871262,-0.67287403345108,-0.673502922058105,
- -0.148708507418633,-0.689119219779968,-0.709225296974182,-0.212023973464966,-0.66711950302124,-0.714141130447388,0.0225188657641411,-0.69025844335556,-0.723212480545044,-0.151057735085487,-0.676877617835999,-0.720429241657257,-0.305917531251907,-0.680997490882874,-0.665324687957764,-0.211760520935059,-0.692240476608276,-0.689899027347565,-0.147339656949043,-0.69606614112854,-0.702696919441223,-0.305780827999115,-0.63060075044632,-0.713330745697021,-0.136111736297607,-0.671435415744781,-0.72845596075058,-0.21205797791481,-0.655838191509247,-0.724505186080933,-0.138460233807564,-0.688584268093109,-0.711814939975739,0.0224900394678116,-0.692216455936432,-0.721339523792267,-0.211913362145424,-0.680826842784882,-0.701118767261505,-0.134137764573097,-0.657159090042114,-0.74172031879425,-0.305551320314407,-0.619071543216705,-0.723456263542175,-0.202291741967201,-0.644584059715271,-0.737285196781158,-0.0269019901752472,-0.701478779315948,-0.712182521820068,0.0224033687263727,-0.698007225990295,-0.715740144252777,0.0350427888333797,-0.696840524673462,-0.716369569301605,-0.140513956546783,-0.70374059677124,-0.696423053741455,0.0349978767335415,-0.697162210941315,-0.716058731079102,0.0223979633301497,-0.698363602161407,-0.715392589569092,0.112486436963081,-0.585482716560364,-0.802842974662781,0.00509732961654663,-0.53895366191864,-0.842320024967194,0.0520472675561905,-0.560305655002594,-0.826649129390717,-0.193048074841499,-0.611593067646027,-0.767259061336517,0.00974208861589432,-0.665396928787231,-0.746426224708557,-0.130530312657356,-0.631361603736877,-0.764424204826355,0.0385974384844303,-0.670771718025208,-0.74065887928009,-0.133449345827103,-0.652207851409912,-0.74620121717453,0.00845004618167877,-0.668968141078949,-0.743243098258972,0.0482969433069229,-0.593108892440796,-0.80367237329483,0.0359878316521645,-0.589150011539459,-0.80722188949585,0.100950762629509,-0.608866512775421,-0.786823034286499,0.0197115764021873,-0.637268424034119,-0.770389795303345,-0.182837009429932,-0.575323879718781,-0.797228515148163,0.0604314282536507,-0.646243453025818,-0.760734856128693,
- 0.0575853660702705,-0.65330308675766,-0.754903435707092,0.0765224248170853,-0.655921220779419,-0.750940561294556,0.016387552022934,-0.646759867668152,-0.762517631053925,-0.0564062558114529,-0.708347916603088,-0.703606188297272,-0.227664440870285,-0.688470602035522,-0.68860524892807,-0.135852798819542,-0.701801776885986,-0.699298501014709,0.00506876409053802,-0.708953857421875,-0.705236732959747,-0.0547521859407425,-0.697938799858093,-0.714061439037323,-0.131263926625252,-0.679926574230194,-0.721435844898224,-0.228801220655441,-0.648497581481934,-0.72601717710495,-0.0545807518064976,-0.696855545043945,-0.715131640434265,-0.15841993689537,-0.670870363712311,-0.724455773830414,-0.197634965181351,-0.733102142810822,-0.650770127773285,-0.225399494171143,-0.733703970909119,-0.640994250774384,-0.153699904680252,-0.730875074863434,-0.664979696273804,-0.0546223372220993,-0.697118401527405,-0.714872241020203,0.00524485716596246,-0.708472967147827,-0.705718398094177,0.0270350873470306,-0.711938977241516,-0.701720774173737,0.0588463246822357,-0.717679977416992,-0.69388222694397,0.0269624926149845,-0.712303280830383,-0.701353788375854,0.00533971143886447,-0.708213865756989,-0.705977857112885,-0.154763579368591,-0.718927443027496,-0.677636861801147,-0.0765463188290596,-0.71616119146347,-0.693724691867828,-0.202634692192078,-0.718342125415802,-0.665525197982788,-0.0158490370959044,-0.71084326505661,-0.703171968460083,-0.198209509253502,-0.731436610221863,-0.652467310428619,-0.0758508518338203,-0.720466077327728,-0.68932968378067,-0.156114861369133,-0.702577412128448,-0.694271624088287,-0.0564755573868752,-0.708782315254211,-0.703162908554077,0.00555220432579517,-0.709056496620178,-0.70512992143631,-0.0781289637088776,-0.7061927318573,-0.703695774078369,-0.156630039215088,-0.69594943523407,-0.700800538063049,0.00552714243531227,-0.712207674980164,-0.701947093009949,-0.0565676093101501,-0.709359109401703,-0.702573657035828,0.0279671549797058,-0.707241654396057,-0.706418514251709,0.00555820483714342,-0.708297729492188,-0.705892026424408,
- -0.0145398061722517,-0.713823318481445,-0.700174868106842,-0.074675939977169,-0.72763580083847,-0.681886851787567,0.0218789204955101,-0.704029679298401,-0.70983350276947,0.0240706354379654,-0.712545275688171,-0.701213181018829,-0.0783872306346893,-0.704542994499207,-0.705318808555603,0.00553155317902565,-0.711655080318451,-0.702507257461548,0.0830553844571114,-0.681577324867249,-0.727017343044281,-0.0131185203790665,-0.717041909694672,-0.696906685829163,0.0221250876784325,-0.704990804195404,-0.708871245384216,0.00555768236517906,-0.708363831043243,-0.705825686454773,0.0279669426381588,-0.707242727279663,-0.706417441368103,0.0279932543635368,-0.707241237163544,-0.706417918205261,0.0278738364577293,-0.707713723182678,-0.705949306488037,0.0607649758458138,-0.713746547698975,-0.69776326417923,0.0279282182455063,-0.707724332809448,-0.705936431884766,0.0280266869813204,-0.709631502628326,-0.704015493392944,0.0232922285795212,-0.709531605243683,-0.704288601875305,0.00555252749472857,-0.709015607833862,-0.70517098903656,0.0900514647364616,-0.698589384555817,-0.70983362197876,0.0239669047296047,-0.712144315242767,-0.701623916625977,0.0281512662768364,-0.711384236812592,-0.702239274978638,0.00677693635225296,-0.703832924365997,-0.710333287715912,0.0277769789099693,-0.708846151828766,-0.704815983772278,0.0597599744796753,-0.715810418128967,-0.695732831954956,0.0551368296146393,-0.7252037525177,-0.686323165893555,0.0600936859846115,-0.726719379425049,-0.68430083990097,0.00517033832147717,-0.708704590797424,-0.705486476421356,-0.00560042960569263,-0.71125453710556,-0.702912330627441,0.00554060470312834,-0.710518419742584,-0.703656792640686,0.0277855917811394,-0.708782315254211,-0.704879820346832,0.0280316174030304,-0.706956028938293,-0.706701755523682,0.00517495721578598,-0.708690643310547,-0.705500423908234,-0.00558565324172378,-0.709377944469452,-0.704806208610535,-0.00569538027048111,-0.723313271999359,-0.690496563911438,0.0292916670441628,-0.727336287498474,-0.685655891895294,0.00542560964822769,-0.724691212177277,-0.68905246257782,
- 0.0640304982662201,-0.719179391860962,-0.691867887973785,0.109103679656982,-0.727573931217194,-0.677298009395599,0.00606651604175568,-0.705991566181183,-0.708194255828857,0.00631502270698547,-0.70523726940155,-0.708943247795105,0.112146623432636,-0.696102976799011,-0.70912891626358,-0.00555720878764987,-0.70576548576355,-0.708423793315887,0.161419749259949,-0.731659710407257,-0.662282228469849,0.10939234495163,-0.724744200706482,-0.680278718471527,0.0650826543569565,-0.717145681381226,-0.693877756595612,0.162881880998611,-0.661482274532318,-0.732059299945831,0.114437855780125,-0.669682443141937,-0.733777463436127,0.161958321928978,-0.66165417432785,-0.732108771800995,0.040211945772171,-0.709520936012268,-0.703536152839661,0.0892860889434814,-0.696743071079254,-0.711742281913757,0.0282203182578087,-0.712354898452759,-0.701251804828644,0.0466405712068081,-0.738569915294647,-0.672561645507813,0.029976412653923,-0.73683226108551,-0.675410747528076,-0.005766861140728,-0.732391357421875,-0.680859506130219,0.092956081032753,-0.705562472343445,-0.702524662017822,0.0417121350765228,-0.716386616230011,-0.696455538272858,0.0806070119142532,-0.708355605602264,-0.70123815536499,0.109961450099945,-0.719074785709381,-0.686177790164948,0.113579668104649,-0.718855619430542,-0.685818016529083,-0.00567761017009616,-0.721056461334229,-0.692853093147278,0.116058267652988,-0.738624334335327,-0.664051711559296,0.046277217566967,-0.736954152584076,-0.674356758594513,-0.00577427772805095,-0.733333289623261,-0.679844915866852,0.112264186143875,-0.694809079170227,-0.710378170013428,0.167000710964203,-0.68685382604599,-0.707349002361298,0.110565505921841,-0.695021152496338,-0.710437119007111,0.112550392746925,-0.710692644119263,-0.694441080093384,0.0828858762979507,-0.7160724401474,-0.693087458610535,0.0430048108100891,-0.722260594367981,-0.690282762050629,0.0802225023508072,-0.707047879695892,-0.702600598335266,0.111339643597603,-0.701122522354126,-0.704294562339783,0.167285561561584,-0.688624918460846,-0.705557465553284,-0.0563399270176888,-0.876743137836456,-0.477647721767426,
- -0.226421296596527,-0.853726387023926,-0.468918561935425,-0.1375373005867,-0.869029343128204,-0.4752596616745,0.00891031231731176,-0.878186643123627,-0.478235065937042,-0.0546873323619366,-0.869678556919098,-0.490579724311829,-0.132854625582695,-0.854057729244232,-0.502926468849182,-0.228048026561737,-0.825770139694214,-0.515846788883209,-0.0545128472149372,-0.868924558162689,-0.491933375597,-0.159841373562813,-0.84618878364563,-0.508345603942871,-0.197766155004501,-0.885737717151642,-0.419949114322662,-0.22359436750412,-0.883755743503571,-0.411073327064514,-0.154941231012344,-0.8875532746315,-0.433869272470474,-0.0545571446418762,-0.869116187095642,-0.491590052843094,0.00907750427722931,-0.877870857715607,-0.478811591863632,0.0223395098000765,-0.879221677780151,-0.475888699293137,0.0528360307216644,-0.882478594779968,-0.467375576496124,0.0222933702170849,-0.879378080368042,-0.475601971149445,0.00913133379071951,-0.877768993377686,-0.47899717092514,-0.156042382121086,-0.879565596580505,-0.449461162090302,-0.076852984726429,-0.881487250328064,-0.465911835432053,-0.202766999602318,-0.875681757926941,-0.438254535198212,-0.0108320116996765,-0.87842321395874,-0.477760791778564,-0.198338121175766,-0.884617328643799,-0.422035723924637,-0.0761618986725807,-0.884414792060852,-0.460445255041122,-0.157445639371872,-0.868410766124725,-0.470184594392776,-0.0564077496528625,-0.877030074596405,-0.477112621068954,0.00377082009799778,-0.877864599227905,-0.478894144296646,-0.0784231945872307,-0.874658763408661,-0.478353172540665,-0.157982796430588,-0.863810896873474,-0.478406131267548,0.00374088692478836,-0.879927814006805,-0.475092649459839,-0.0565004497766495,-0.877421855926514,-0.476380735635757,0.0230827778577805,-0.876688897609711,-0.480503737926483,0.00377782294526696,-0.877378821372986,-0.47978350520134,-0.00964236259460449,-0.880237996578217,-0.474434465169907,-0.07499710470438,-0.88924366235733,-0.451243996620178,0.0211717933416367,-0.87450248003006,-0.484558761119843,0.0232352763414383,-0.880079746246338,-0.474257081747055,
- -0.0786783173680305,-0.873525738716125,-0.480377405881882,0.00374655867926776,-0.879538536071777,-0.475812941789627,0.081821121275425,-0.858007669448853,-0.507078051567078,-0.00834043323993683,-0.882207989692688,-0.47078612446785,0.0214259698987007,-0.875195741653442,-0.4832943379879,0.00377712026238441,-0.877427577972412,-0.479694277048111,0.0230796206742525,-0.876699686050415,-0.48048409819603,0.0248948149383068,-0.876614332199097,-0.480549156665802,0.0232219714671373,-0.876211524009705,-0.481366902589798,0.0547951459884644,-0.879736661911011,-0.47229328751564,0.0249316655099392,-0.876426815986633,-0.480889171361923,0.0302036087960005,-0.878085017204285,-0.477550595998764,0.0224821642041206,-0.878057599067688,-0.478026568889618,0.00377213396131992,-0.877773523330688,-0.479061007499695,0.0887953266501427,-0.869358062744141,-0.486139953136444,0.0231827571988106,-0.879939317703247,-0.474520295858383,0.0302856937050819,-0.878987908363342,-0.475881546735764,0.0098511278629303,-0.874800801277161,-0.484382748603821,0.0247937422245741,-0.877128064632416,-0.479616314172745,0.0538760423660278,-0.881027340888977,-0.469987690448761,0.0494950711727142,-0.887076258659363,-0.458961963653564,0.0563317015767097,-0.888339161872864,-0.455719530582428,0.00813639163970947,-0.878337025642395,-0.477972835302353,-0.00692434748634696,-0.879392147064209,-0.476047843694687,0.00375541811808944,-0.87892884016037,-0.476938098669052,0.0246753226965666,-0.877728283405304,-0.47852298617363,0.0249225329607725,-0.876473367214203,-0.480804890394211,0.00858042202889919,-0.877426087856293,-0.479635030031204,-0.00691426172852516,-0.878111243247986,-0.478406757116318,-0.0069867935962975,-0.887322783470154,-0.461095988750458,0.031307402998209,-0.89005845785141,-0.454770296812058,0.00361743336543441,-0.888214886188507,-0.459414035081863,0.0600811541080475,-0.883424937725067,-0.464704930782318,0.106147930026054,-0.887661278247833,-0.448096305131912,0.00913562532514334,-0.876282453536987,-0.481711119413376,0.00970450043678284,-0.875105142593384,-0.483835607767105,
- 0.109084725379944,-0.866907298564911,-0.486386924982071,-0.00689469091594219,-0.875625789165497,-0.482940971851349,0.155403926968575,-0.887538909912109,-0.433733016252518,0.106429912149906,-0.885800123214722,-0.451697736978531,0.0611016154289246,-0.882067561149597,-0.467143833637238,0.161010429263115,-0.840056300163269,-0.518055140972137,0.111354924738407,-0.848509311676025,-0.517331838607788,0.155825018882751,-0.841042220592499,-0.51804107427597,0.0446566939353943,-0.877046346664429,-0.478325873613358,0.0880455076694489,-0.868159294128418,-0.488413393497467,0.0303394719958305,-0.879578351974487,-0.474785715341568,0.0513877607882023,-0.897280097007751,-0.438460826873779,0.0318987332284451,-0.896319687366486,-0.442259728908539,-0.00703420443460345,-0.893343925476074,-0.449318796396255,0.0917309522628784,-0.874001264572144,-0.477186858654022,0.0461935736238956,-0.881799459457397,-0.469356834888458,0.0794292390346527,-0.876300811767578,-0.475171685218811,0.106931835412979,-0.882421791553497,-0.458145499229431,0.115068092942238,-0.881728172302246,-0.457509279251099,-0.0069756954908371,-0.88591331243515,-0.463798314332962,0.117549993097782,-0.894677996635437,-0.430968075990677,0.0509743914008141,-0.896081447601318,-0.440952986478806,-0.00703940307721496,-0.894004166126251,-0.448003590106964,0.10919976234436,-0.866028487682343,-0.487924456596375,0.165023803710938,-0.857501864433289,-0.487296342849731,0.112048506736755,-0.865661263465881,-0.487930029630661,0.114016652107239,-0.876170337200165,-0.468322306871414,0.0817270874977112,-0.881385564804077,-0.465274304151535,0.0475273542106152,-0.885861158370972,-0.461509823799133,0.0790224000811577,-0.875391066074371,-0.476913005113602,0.112806424498558,-0.869723975658417,-0.480473697185516,0.165324971079826,-0.858803629875183,-0.484895944595337,-0.0587262250483036,-0.991376936435699,-0.117145217955112,-0.225944638252258,-0.96701854467392,-0.117576830089092,-0.134611219167709,-0.983876705169678,-0.117756888270378,0.00640308298170567,-0.993027627468109,-0.117708191275597,-0.0570362471044064,-0.989570736885071,-0.132274553179741,
- -0.129876270890236,-0.980366408824921,-0.148370876908302,-0.227510616183281,-0.958567023277283,-0.171429887413979,-0.0568604506552219,-0.989370405673981,-0.13383974134922,-0.160684108734131,-0.974411964416504,-0.15716864168644,-0.194205909967422,-0.979046940803528,-0.0612463429570198,-0.223195284605026,-0.97334086894989,-0.0528338886797428,-0.155531495809555,-0.98518168926239,-0.0722984746098518,-0.0569047033786774,-0.989421129226685,-0.133445978164673,0.00658066943287849,-0.992946147918701,-0.118383161723614,0.0241845659911633,-0.993173062801361,-0.114115685224533,0.0534007474780083,-0.993007004261017,-0.10528752207756,0.0241278372704983,-0.993220269680023,-0.113715961575508,0.00666182860732079,-0.992908835411072,-0.118691608309746,-0.156684175133705,-0.983558714389801,-0.0897904559969902,-0.0754282027482986,-0.991636753082275,-0.104723952710629,-0.199151530861855,-0.976560831069946,-0.0816561654210091,-0.0119075085967779,-0.99314022064209,-0.116321817040443,-0.194790989160538,-0.978777766227722,-0.0636437833309174,-0.0747549906373024,-0.99230420589447,-0.0987130105495453,-0.158157736063004,-0.980895638465881,-0.113269962370396,-0.0588022992014885,-0.991453051567078,-0.116460599005222,0.00874755438417196,-0.992979884147644,-0.117959506809711,-0.0769592374563217,-0.98997038602829,-0.118473432958126,-0.158724099397659,-0.979672312736511,-0.122673831880093,0.00871474668383598,-0.993529081344604,-0.113243766129017,-0.058902133256197,-0.991552412509918,-0.11556176841259,0.02500369399786,-0.992472410202026,-0.1198885217309,0.0087555730715394,-0.992841720581055,-0.119116090238094,-0.0106936618685722,-0.993595063686371,-0.112492598593235,-0.0736101716756821,-0.993349075317383,-0.0885392650961876,0.025424886494875,-0.991703808307648,-0.126005083322525,0.0279063358902931,-0.993278503417969,-0.11233539134264,-0.0772109180688858,-0.989676356315613,-0.120744347572327,0.00871977955102921,-0.993446469306946,-0.113965526223183,0.0792779475450516,-0.98545777797699,-0.150292873382568,-0.00936177652329206,-0.994075357913971,-0.108289495110512,
- 0.0256091542541981,-0.991827249526978,-0.124991789460182,0.00875501986593008,-0.992851316928864,-0.119036167860031,0.0250017587095499,-0.992474138736725,-0.119874879717827,0.0271795727312565,-0.992403626441956,-0.119984917342663,0.025048915296793,-0.992432773113251,-0.120207265019417,0.0553407035768032,-0.9922935962677,-0.110864236950874,0.0271405205130577,-0.992455184459686,-0.119566269218922,0.0335841961205006,-0.992641925811768,-0.116336166858673,0.0271117985248566,-0.992794990539551,-0.11671794205904,0.00874626822769642,-0.993001878261566,-0.117774173617363,0.086051732301712,-0.988141119480133,-0.127170756459236,0.0275941528379917,-0.993090867996216,-0.114058002829552,0.0336310975253582,-0.992746114730835,-0.115430183708668,0.01277513243258,-0.992316961288452,-0.1230603531003,0.0269963145256042,-0.992644131183624,-0.118020631372929,0.0544208399951458,-0.992636322975159,-0.108219720423222,0.0500550344586372,-0.994153439998627,-0.0956737548112869,0.0587915293872356,-0.994093298912048,-0.091225266456604,0.0109755396842957,-0.993254959583282,-0.115430228412151,-0.00691894395276904,-0.993379235267639,-0.114673353731632,0.00873486883938313,-0.993195354938507,-0.116132915019989,0.0269755143672228,-0.992671191692352,-0.117797710001469,0.0272157602012157,-0.992355644702911,-0.120372898876667,0.011822272092104,-0.992821395397186,-0.119020842015743,-0.00689550582319498,-0.993068099021912,-0.117338843643665,-0.00706585496664047,-0.99517947435379,-0.0978158414363861,0.034921158105135,-0.995306074619293,-0.0902571752667427,0.00858627632260323,-0.995438456535339,-0.09501863270998,0.0626334324479103,-0.992841362953186,-0.101701229810715,0.108904406428337,-0.990444123744965,-0.0846182256937027,0.0120594650506973,-0.992697417736053,-0.120026499032974,0.0129197118803859,-0.992238938808441,-0.123673178255558,0.111899711191654,-0.985305726528168,-0.129038870334625,-0.00685034692287445,-0.992450296878815,-0.122456140816212,0.159252837300301,-0.984682679176331,-0.0709840580821037,0.109189108014107,-0.990054607391357,-0.0887116566300392,
- 0.0636662542819977,-0.992482900619507,-0.104518979787827,0.163976609706879,-0.971965372562408,-0.168508619070053,0.114153295755386,-0.979715645313263,-0.164701133966446,0.159674391150475,-0.972735583782196,-0.168195649981499,0.0379963479936123,-0.992556929588318,-0.115702904760838,0.0853555426001549,-0.987891256809235,-0.129558622837067,0.0336829386651516,-0.992860436439514,-0.11442818492651,0.0444709844887257,-0.996231973171234,-0.0744605511426926,0.0356295295059681,-0.996454298496246,-0.0762202367186546,-0.00717906141653657,-0.996385335922241,-0.0846445709466934,0.088972195982933,-0.989123702049255,-0.117124930024147,0.0395195558667183,-0.993574500083923,-0.106056705117226,0.080559104681015,-0.990063369274139,-0.115259744226933,0.109746478497982,-0.989234745502472,-0.0968004912137985,0.110840901732445,-0.989117085933685,-0.0967558473348618,-0.00703945616260171,-0.994875311851501,-0.100864365696907,0.113172933459282,-0.991266787052155,-0.0676902681589127,0.044118482619524,-0.996075987815857,-0.0767221972346306,-0.0071916151791811,-0.99650913476944,-0.083174005150795,0.112014055252075,-0.985060751438141,-0.130798146128654,0.168249845504761,-0.976678252220154,-0.133384957909584,0.107997268438339,-0.985535800457001,-0.130597874522209,0.109904162585735,-0.988047659397125,-0.108087740838528,0.082918792963028,-0.991104543209076,-0.104097180068493,0.0408291779458523,-0.994374632835388,-0.0977355614304543,0.0801612511277199,-0.989875555038452,-0.117135494947433,0.108756445348263,-0.986587882041931,-0.121722906827927,0.168528750538826,-0.97694981098175,-0.131023287773132,-0.0561552233994007,-0.988230288028717,0.142293781042099,-0.225624457001686,-0.964739084243774,0.135543748736382,-0.134420871734619,-0.981026709079742,0.139705389738083,0.0121257118880749,-0.989587426185608,0.143421351909637,-0.0545055121183395,-0.990308403968811,0.127743482589722,-0.129767060279846,-0.985508918762207,0.109237641096115,-0.226969540119171,-0.970490455627441,0.0814437866210938,-0.0543290786445141,-0.990517020225525,0.126191928982735,-0.161788433790207,-0.981859624385834,0.0988745093345642,
- -0.19813659787178,-0.960790574550629,0.193967521190643,-0.223138943314552,-0.954111397266388,0.199700981378555,-0.1570995002985,-0.970227241516113,0.184333443641663,-0.0543751642107964,-0.990462839603424,0.126597121357918,0.0122881829738617,-0.989676237106323,0.142793908715248,0.0197528470307589,-0.989297926425934,0.144566535949707,0.055319532752037,-0.986422777175903,0.154628798365593,0.0197221264243126,-0.989266574382782,0.144785031676292,0.0123095940798521,-0.989687919616699,0.142711207270622,-0.158160626888275,-0.973213911056519,0.166852906346321,-0.0778410509228706,-0.984894335269928,0.154673829674721,-0.203139334917068,-0.963701188564301,0.17324697971344,-0.0132590439170599,-0.989511609077454,0.143844231963158,-0.198708891868591,-0.961143255233765,0.191620841622353,-0.0771102607250214,-0.983955502510071,0.160890355706215,-0.159509226679802,-0.976746737957001,0.14325712621212,-0.0562211349606514,-0.988142430782318,0.142876714468002,0.00667687691748142,-0.989859104156494,0.141895681619644,-0.0795065686106682,-0.98689991235733,0.140382409095764,-0.160025715827942,-0.978009879589081,0.133747935295105,0.00663609895855188,-0.98920077085495,0.146416217088699,-0.0563132539391518,-0.988018989562988,0.143691644072533,0.0203802566975355,-0.989927411079407,0.140101447701454,0.00668670423328877,-0.990014970302582,0.140803545713425,-0.0120204128324986,-0.988946080207825,0.147787883877754,-0.07588991522789,-0.982309341430664,0.171198710799217,0.0236577671021223,-0.990642130374908,0.134419128298759,0.0259078722447157,-0.988766849040985,0.147203832864761,-0.0797749236226082,-0.987205445766449,0.138063490390778,0.00664293859153986,-0.989312589168549,0.145659431815147,0.0806073695421219,-0.990875065326691,0.108023576438427,-0.0106651997193694,-0.98830771446228,0.152099043130875,0.0238659307360649,-0.99047589302063,0.13560189306736,0.00668590702116489,-0.990002453327179,0.140892311930656,0.0203755907714367,-0.989922821521759,0.140134677290916,0.0270776581019163,-0.989815950393677,0.139754086732864,0.0206457525491714,-0.990187764167786,0.138210251927376,
- 0.0572479479014874,-0.987165927886963,0.149085059762001,0.0270432364195585,-0.989764451980591,0.140124946832657,0.0312606208026409,-0.989197790622711,0.143215075135231,0.0251507516950369,-0.989417195320129,0.142902001738548,0.00667663011699915,-0.989855170249939,0.14192308485508,0.0873382687568665,-0.987474501132965,0.131400600075722,0.025713050737977,-0.988936126232147,0.146096870303154,0.0313414335250854,-0.988967418670654,0.144779965281487,0.00934300292283297,-0.990727961063385,0.135539561510086,0.0269005224108696,-0.989549577236176,0.141662001609802,0.0563002079725266,-0.986804902553558,0.151810958981514,0.0518559329211712,-0.985003292560577,0.164558261632919,0.0568568147718906,-0.984314441680908,0.167010486125946,0.00768423266708851,-0.989734947681427,0.142708212137222,-0.00893436186015606,-0.989344418048859,0.145319551229477,0.00665906444191933,-0.989573836326599,0.143872618675232,0.0268743205815554,-0.98950982093811,0.141944065690041,0.0271129123866558,-0.989868581295013,0.139374181628227,0.00804844405502081,-0.989957690238953,0.141135066747665,-0.00891645718365908,-0.989731848239899,0.142658263444901,-0.00904211215674877,-0.986827969551086,0.161520212888718,0.0325747169554234,-0.985110461711884,0.1688082665205,0.00647340575233102,-0.986393928527832,0.164271429181099,0.0606205612421036,-0.985763490200043,0.156829580664635,0.106966122984886,-0.979138076305389,0.172762751579285,0.00864286907017231,-0.990315437316895,0.138566464185715,0.00914589036256075,-0.990612745285034,0.136391907930374,0.110133096575737,-0.985467791557312,0.129320874810219,-0.00888163223862648,-0.990461111068726,0.13750621676445,0.158151894807816,-0.969971477985382,0.184779405593872,0.107267692685127,-0.979803025722504,0.168759420514107,0.0616419315338135,-0.986136794090271,0.154060125350952,0.162618055939674,-0.982779026031494,0.087755024433136,0.112575121223927,-0.989239394664764,0.0934465825557709,0.158750608563423,-0.983370840549469,0.0882046744227409,0.0388110131025314,-0.98886251449585,0.143682599067688,0.0866321176290512,-0.98786062002182,0.1289431899786,
- 0.0314008705317974,-0.988796174526215,0.145931705832481,0.0452870614826679,-0.981718599796295,0.184872284531593,0.0332781001925468,-0.98261684179306,0.182638347148895,-0.00912713911384344,-0.984608054161072,0.174538671970367,0.090199701488018,-0.985839068889618,0.14137028157711,0.0403286963701248,-0.987353503704071,0.153319016098976,0.0790985748171806,-0.986401557922363,0.144067168235779,0.107824474573135,-0.980997920036316,0.161297857761383,0.110049024224281,-0.980746567249298,0.161324381828308,-0.00902408733963966,-0.987271547317505,0.158787593245506,0.112484313547611,-0.975333750247955,0.189924463629723,0.0449299737811089,-0.982160866260529,0.182596266269684,-0.00913747865706682,-0.984323382377625,0.176136434078217,0.11025808006525,-0.985686063766479,0.127538979053497,0.166748225688934,-0.978313624858856,0.122871793806553,0.107089497148991,-0.98600310087204,0.127787590026855,0.109085753560066,-0.982608556747437,0.150269418954849,0.0813956409692764,-0.984551310539246,0.155027836561203,0.0416358783841133,-0.985973238945007,0.161626905202866,0.0786905586719513,-0.986716210842133,0.142123401165009,0.107890248298645,-0.984714329242706,0.136738389730453,0.167038276791573,-0.977943181991577,0.125401541590691,-0.054292730987072,-0.874375283718109,0.4822036921978,-0.223898693919182,-0.855041086673737,0.46773299574852,-0.138141244649887,-0.868064343929291,0.476845145225525,0.00793024152517319,-0.875693261623383,0.48280268907547,-0.0526456348598003,-0.881274282932281,0.469664007425308,-0.133320450782776,-0.883400917053223,0.449253261089325,-0.225302934646606,-0.879364967346191,0.419470936059952,-0.0524668917059898,-0.882009267807007,0.468302309513092,-0.159035727381706,-0.883776605129242,0.44005286693573,-0.197980418801308,-0.830422818660736,0.520770490169525,-0.221363246440887,-0.822707414627075,0.523594319820404,-0.154050812125206,-0.843447685241699,0.514649927616119,-0.0525143258273602,-0.881814479827881,0.468663692474365,0.00809842348098755,-0.876010298728943,0.482224404811859,0.0224081054329872,-0.874142169952393,0.485153079032898,
- 0.0528003573417664,-0.868734359741211,0.492456048727036,0.0223622191697359,-0.873983263969421,0.48544117808342,0.00816249847412109,-0.876130998134613,0.482004016637802,-0.155168324708939,-0.852250754833221,0.499591261148453,-0.07877416908741,-0.866663813591003,0.492634415626526,-0.203017964959145,-0.840450048446655,0.50242155790329,-0.0163466464728117,-0.874499261379242,0.484751284122467,-0.198558911681175,-0.831584513187408,0.518692195415497,-0.0780248045921326,-0.863544940948486,0.498199224472046,-0.15659311413765,-0.863652050495148,0.479148954153061,-0.054352693259716,-0.874119758605957,0.482659906148911,0.0068973614834249,-0.875964879989624,0.482325524091721,-0.080484077334404,-0.873696148395538,0.479767978191376,-0.157138362526894,-0.868074953556061,0.470907002687454,0.0068798940628767,-0.873746573925018,0.486332893371582,-0.0544403418898582,-0.873745799064636,0.48332679271698,0.0231437180191278,-0.876676321029663,0.480523675680161,0.00690158037468791,-0.87650066614151,0.481351137161255,-0.0150127112865448,-0.872432708740234,0.488503634929657,-0.0767790079116821,-0.858311176300049,0.507352888584137,0.0236302874982357,-0.87932425737381,0.475637137889862,0.0259217582643032,-0.873075127601624,0.486896246671677,-0.0807583183050156,-0.874812960624695,0.477682292461395,0.0068828403018415,-0.874120712280273,0.485659956932068,0.0818975567817688,-0.889055848121643,0.450413703918457,-0.0135689452290535,-0.870176732540131,0.492552846670151,0.023844376206398,-0.878747165203094,0.476691663265228,0.00690124183893204,-0.876457691192627,0.481429427862167,0.0231405552476645,-0.876665472984314,0.480543583631516,0.0213285069912672,-0.876653790473938,0.480648756027222,0.0232802089303732,-0.877144038677216,0.479662746191025,0.0547457486391068,-0.871410429477692,0.487490296363831,0.0214820969849825,-0.877442836761475,0.479199886322021,0.0335314236581326,-0.874762833118439,0.48338970541954,0.0251474827528,-0.875204682350159,0.483098715543747,0.006897266022861,-0.875952780246735,0.482347786426544,0.0887255743145943,-0.877496004104614,0.471305370330811,
- 0.0257210917770863,-0.873628795146942,0.48591274023056,0.033572793006897,-0.874310255050659,0.484204947948456,0.0101619958877563,-0.878884136676788,0.476927042007446,0.0213623661547899,-0.876827895641327,0.480329513549805,0.053835816681385,-0.87016224861145,0.489815711975098,0.049510195851326,-0.864143848419189,0.500803530216217,0.0549844801425934,-0.862503290176392,0.503055453300476,0.00844790134578943,-0.875394701957703,0.483335256576538,-0.00381843466311693,-0.874538421630859,0.484941214323044,0.00688985409215093,-0.875011444091797,0.484053254127502,0.0211013499647379,-0.87548291683197,0.482788145542145,0.0213453955948353,-0.876740694046021,0.480489611625671,0.00892114639282227,-0.876362860202789,0.481568843126297,-0.00379997002892196,-0.875834763050079,0.482596188783646,-0.00394035270437598,-0.865771114826202,0.500424802303314,0.0346818156540394,-0.861766874790192,0.506117641925812,0.00680937385186553,-0.864790439605713,0.502086818218231,0.0587038397789001,-0.867325603961945,0.494267523288727,0.111170545220375,-0.853879332542419,0.508459687232971,0.00945147126913071,-0.877443552017212,0.479586839675903,0.0100405598059297,-0.878638625144959,0.477382034063339,0.114471964538097,-0.875999927520752,0.468529999256134,-0.00376503309234977,-0.878265142440796,0.478159219026566,0.158383056521416,-0.842164993286133,0.515434682369232,0.111479938030243,-0.855961859226227,0.504877746105194,0.0597223937511444,-0.868630290031433,0.491848170757294,0.165468394756317,-0.888164699077606,0.428700149059296,0.116920173168182,-0.892241299152374,0.436159580945969,0.158936440944672,-0.888841211795807,0.429768234491348,0.0385482124984264,-0.874380826950073,0.48370686173439,0.0879925861954689,-0.878767430782318,0.469068557024002,0.0336178950965405,-0.873815655708313,0.485093861818314,0.0448470860719681,-0.853241741657257,0.519583880901337,0.0352896451950073,-0.854545056819916,0.518177092075348,-0.00403053034096956,-0.859049081802368,0.511877357959747,0.0916043445467949,-0.872430682182312,0.480076283216476,0.0400328636169434,-0.869558215141296,0.492205172777176,
- 0.0808705389499664,-0.872034430503845,0.482717275619507,0.112130969762802,-0.860337674617767,0.497238099575043,0.110949762165546,-0.860470294952393,0.497273653745651,-0.00391637394204736,-0.867524266242981,0.49737948179245,0.113263711333275,-0.845313370227814,0.522127091884613,0.0444982573390007,-0.854459226131439,0.517609417438507,-0.00403881119564176,-0.858421504497528,0.512929022312164,0.11459644138813,-0.876829266548157,0.466945499181747,0.169673711061478,-0.871529281139374,0.460051655769348,0.108122453093529,-0.87727165222168,0.467657953500748,0.110016673803329,-0.866212844848633,0.487413197755814,0.0832396596670151,-0.866378843784332,0.492401152849197,0.0413037016987801,-0.865352272987366,0.499459117650986,0.0804699882864952,-0.872976779937744,0.481078058481216,0.10887536406517,-0.872969090938568,0.475469499826431,0.169929325580597,-0.870452702045441,0.461991459131241,-0.0550061538815498,-0.0524332746863365,0.997108459472656,-0.0898709446191788,-0.0553828701376915,0.994412422180176,-0.0218168199062347,-0.0495708994567394,0.998532295227051,0.0859747156500816,0.0428216606378555,0.995376646518707,-0.0624152086675167,-0.00867616850882769,0.998012602329254,-0.0325968973338604,0.00169794168323278,0.999467194080353,0.100472562015057,-0.00605896953493357,0.994921386241913,-0.177723079919815,-0.063356414437294,0.982039034366608,0.235996916890144,0.0226563066244125,0.971489667892456,-0.0252333451062441,-0.0333678163588047,0.999124526977539,-0.297895342111588,-0.0801477804780006,0.951228022575378,0.101861998438835,-0.0107894884422421,0.994740009307861,-0.178076475858688,-0.0623398870229721,0.982039988040924,0.100147061049938,-0.00495194504037499,0.994960308074951,-0.296448320150375,-0.0860995501279831,0.95116001367569,-0.180559813976288,-0.0551781021058559,0.982015073299408,-0.291218250989914,-0.107215210795403,0.950629711151123,-0.480661243200302,-0.197524473071098,0.854370474815369,-0.0232143625617027,-0.0429480522871017,0.998807549476624,-0.51847904920578,-0.0885675996541977,0.850491166114807,-0.300355583429337,-0.0699143186211586,0.951261520385742,
- -0.482636898756027,-0.193222463130951,0.854240477085114,-0.292359232902527,-0.102660104632378,0.950782299041748,-0.493235886096954,-0.198329359292984,0.846985161304474,-0.299577385187149,-0.0731671378016472,0.951262295246124,-0.515318214893341,-0.107455030083656,0.85023558139801,-0.516451597213745,-0.107630953192711,0.849525332450867,-0.515441238880157,-0.112003892660141,0.84957367181778,-0.514553487300873,-0.111856356263161,0.850131034851074,-0.523532867431641,-0.113347262144089,0.844432175159454,-0.319540679454803,0.875771760940552,0.361825287342072,-0.248923599720001,0.894348204135895,0.371723502874374,-0.36705070734024,0.86025458574295,0.353886783123016,-0.436749488115311,0.830632030963898,0.345398843288422,-0.319652616977692,0.879966497421265,0.351398944854736,-0.367215901613235,0.861903548240662,0.349678069353104,-0.433373630046844,0.823828041553497,0.365369349718094,-0.481448173522949,0.793751239776611,0.371707767248154,-0.360521286725998,0.862983047962189,0.353955894708633,-0.36799493432045,0.870720207691193,0.326230078935623,-0.392788231372833,0.858145415782928,0.330611407756805,-0.437936455011368,0.833030164241791,0.338042140007019,-0.479323476552963,0.804442942142487,0.350885450839996,-0.436802923679352,0.830740034580231,0.345071345567703,-0.394832193851471,0.854063212871552,0.338649749755859,-0.474478989839554,0.823803901672363,0.310188502073288,-0.400876671075821,0.841119050979614,0.363065600395203,-0.545152127742767,0.799016535282135,0.253735482692719,-0.367931187152863,0.86991024017334,0.328455299139023,-0.323687165975571,0.881426930427551,0.343966871500015,-0.390119284391403,0.86327052116394,0.320267021656036,-0.533914029598236,0.812546610832214,0.233888760209084,-0.395144999027252,0.853425920009613,0.339889287948608,-0.395063072443008,0.85344123840332,0.339946031570435,-0.395916521549225,0.851839542388916,0.342957109212875,-0.3441062271595,0.858930826187134,0.379247725009918,-0.396537661552429,0.851731896400452,0.342506527900696,-0.387895226478577,0.861536145210266,0.327555775642395,-0.334447681903839,0.869906783103943,0.362501084804535,
- -0.331096857786179,0.870306015014648,0.364612847566605,-0.167525038123131,0.866275906562805,-0.470639377832413,-0.0860608220100403,0.879148483276367,-0.468712598085403,-0.210704788565636,0.856954038143158,-0.470354437828064,-0.284410059452057,0.839511096477509,-0.462960004806519,-0.166942238807678,0.861274719238281,-0.479933500289917,-0.210584223270416,0.854704439640045,-0.474483579397202,-0.282229632139206,0.849980235099792,-0.444837212562561,-0.331701666116714,0.841841697692871,-0.425765872001648,-0.208326101303101,0.857482314109802,-0.470451325178146,-0.209853619337082,0.842244327068329,-0.496574193239212,-0.232602179050446,0.840746283531189,-0.488919109106064,-0.285221815109253,0.835350871086121,-0.469933360815048,-0.327751785516739,0.832374930381775,-0.446912437677383,-0.284476518630981,0.83917635679245,-0.463525950908661,-0.235424548387527,0.844593286514282,-0.480871737003326,-0.320322245359421,0.814504981040955,-0.483710020780563,-0.244968011975288,0.857251703739166,-0.452890872955322,-0.39741712808609,0.761539995670319,-0.511973083019257,-0.209949284791946,0.843782126903534,-0.493915975093842,-0.162398934364319,0.858524262905121,-0.486377120018005,-0.229832798242569,0.83692741394043,-0.496718555688858,-0.384015023708344,0.753649115562439,-0.533428251743317,-0.237040251493454,0.846774697303772,-0.476218938827515,-0.235590353608131,0.847531318664551,-0.475592136383057,-0.238132745027542,0.848241090774536,-0.473053753376007,-0.186721876263618,0.874066770076752,-0.44848906993866,-0.237420260906219,0.848625183105469,-0.472723007202148,-0.227079421281815,0.842326283454895,-0.488795876502991,-0.175339475274086,0.867006659507751,-0.466428518295288,-0.179176956415176,0.865299105644226,-0.468138039112091,-0.058575227856636,-0.788958430290222,0.611648201942444,-0.0897366628050804,-0.788789629936218,0.608077526092529,-0.0250391513109207,-0.788275122642517,0.614813327789307,0.0940461084246635,-0.745047032833099,0.66034859418869,-0.0605558231472969,-0.781505107879639,0.62095308303833,-0.0293185971677303,-0.77580326795578,0.630293488502502,
- 0.104787819087505,-0.767506241798401,0.632419049739838,-0.183225750923157,-0.794906973838806,0.578404009342194,0.236671552062035,-0.731906056404114,0.638983726501465,-0.0246874466538429,-0.789284288883209,0.613531470298767,-0.299729257822037,-0.782002747058868,0.546474277973175,0.106363698840141,-0.7707359790802,0.628213942050934,-0.187794789671898,-0.786313414573669,0.588595271110535,0.100410103797913,-0.758445918560028,0.643954694271088,-0.301229000091553,-0.778096497058868,0.551204979419708,-0.186625719070435,-0.788533806800842,0.585990905761719,-0.293667048215866,-0.797179281711578,0.52750837802887,-0.48040908575058,-0.78148478269577,0.398106217384338,-0.023467592895031,-0.792766034603119,0.609074115753174,-0.516303479671478,-0.709372878074646,0.479813516139984,-0.303096503019333,-0.773144006729126,0.557118356227875,-0.482400745153427,-0.778617858886719,0.401302695274353,-0.294818460941315,-0.79436993598938,0.531091868877411,-0.493907809257507,-0.776144444942474,0.391988456249237,-0.302270323038101,-0.775347232818604,0.55449914932251,-0.513148427009583,-0.721213698387146,0.465327382087708,-0.517631649971008,-0.71951162815094,0.462990760803223,-0.516603589057922,-0.722357094287872,0.459696620702744,-0.512387752532959,-0.723931670188904,0.461932599544525,-0.523564875125885,-0.719706177711487,0.455963641405106,-0.0147760901600122,0.657473921775818,0.753332495689392,-0.101022012531757,0.654569447040558,0.749221861362457,-0.0363198705017567,0.657208681106567,0.752833127975464,-0.140130057930946,0.651621282100677,0.745488703250885,-0.0147760901600122,0.657473921775818,0.753332495689392,-0.0363198705017567,0.657208681106567,0.752833127975464,-0.134067565202713,0.648914396762848,0.748956620693207,-0.0158826243132353,0.686105489730835,0.727328777313232,-0.140660032629967,0.646514773368835,0.74982225894928,-0.140096753835678,0.651939332485199,0.745216846466064,-0.0379645377397537,0.626722693443298,0.778316974639893,-0.223607629537582,0.666854977607727,0.710847437381744,-0.133996114134789,0.64877450466156,0.749090552330017,
- -0.140727862715721,0.645854592323303,0.7503781914711,-0.322896033525467,0.551280796527863,0.769303381443024,-0.334637641906738,0.621487021446228,0.708358347415924,-0.14067006111145,0.646417260169983,0.749904453754425,-0.23382930457592,0.637779951095581,0.73386687040329,-0.211548432707787,0.971219658851624,0.109451740980148,-0.210976466536522,0.971384644508362,0.109090737998486,-0.115887835621834,0.992041528224945,0.0492295064032078,-0.210084050893784,0.971084535121918,0.113399758934975,-0.107620395720005,0.991745233535767,0.0697092860937119,-0.174403935670853,0.979763209819794,0.0982206538319588,-0.365835905075073,0.925961256027222,0.093593992292881,-0.208656251430511,0.97093665599823,0.11723755300045,-0.16988679766655,0.977824866771698,0.122462972998619,-0.104325689375401,0.991493582725525,0.0778253450989723,-0.0791805014014244,0.994476437568665,0.0688998773694038,-0.173655644059181,0.979480683803558,0.102280609309673,-0.361449033021927,0.929795682430267,0.0695313215255737,-0.168480575084686,0.97711044549942,0.129882991313934,-0.113819263875484,0.982775807380676,0.145591452717781,-0.171801373362541,0.978713929653168,0.112265147268772,-0.0674629956483841,0.991512179374695,0.111141234636307,-0.113244146108627,0.987258791923523,0.111784815788269,-0.0113868555054069,0.841811299324036,0.53965175151825,-0.10713816434145,0.837328374385834,0.536099433898926,-0.0363450683653355,0.841390013694763,0.539204895496368,-0.143501207232475,0.833577871322632,0.533437252044678,-0.0113868555054069,0.841811299324036,0.53965175151825,-0.0363450683653355,0.841390013694763,0.539204895496368,-0.129518061876297,0.833746790885925,0.536741435527802,-0.0124158505350351,0.862675130367279,0.505606055259705,-0.144105210900307,0.829192399978638,0.54006814956665,-0.143371090292931,0.834506988525391,0.532017648220062,-0.0379894152283669,0.819231390953064,0.572203457355499,-0.225448489189148,0.838937640190125,0.495335012674332,-0.129576206207275,0.833825469017029,0.536605179309845,-0.144195541739464,0.828526079654694,0.541065752506256,-0.324090093374252,0.743600964546204,0.584827482700348,
- -0.33619236946106,0.794209122657776,0.50616854429245,-0.144016265869141,0.829845786094666,0.539087533950806,-0.235741078853607,0.817059874534607,0.526155173778534,-0.210186541080475,0.963951766490936,-0.16315221786499,-0.213361695408821,0.963621139526367,-0.160969212651253,-0.112162806093693,0.967097997665405,-0.228343918919563,-0.205248564481735,0.96708881855011,-0.150373995304108,-0.100131385028362,0.974809169769287,-0.199301093816757,-0.170822307467461,0.97108656167984,-0.166765674948692,-0.363322049379349,0.914539515972137,-0.177805289626122,-0.212003335356712,0.962742567062378,-0.167872726917267,-0.170384362339973,0.971553862094879,-0.164476364850998,-0.0995645076036453,0.975145697593689,-0.197933793067932,-0.0753662511706352,0.975440979003906,-0.206965744495392,-0.171470165252686,0.97038334608078,-0.17015977203846,-0.356279373168945,0.909283876419067,-0.215100139379501,-0.171889469027519,0.969920456409454,-0.172361418604851,-0.116716913878918,0.980422079563141,-0.158586651086807,-0.173013731837273,0.96864926815033,-0.17828343808651,-0.068577453494072,0.98071813583374,-0.183000385761261,-0.116258151829243,0.976568460464478,-0.181102931499481,-0.0110337138175964,0.982167422771454,0.187684431672096,-0.105220213532448,0.976880073547363,0.18610206246376,-0.0320480056107044,0.981746256351471,0.187476366758347,-0.143676623702049,0.972184598445892,0.184971064329147,-0.0110337138175964,0.982167422771454,0.187684431672096,-0.0320480056107044,0.981746256351471,0.187476366758347,-0.132266819477081,0.973044693470001,0.188916772603989,-0.0120716700330377,0.988880753517151,0.148219808936119,-0.144288763403893,0.970560252666473,0.19285623729229,-0.143541112542152,0.972532331943512,0.183240130543709,-0.0337558425962925,0.973086297512054,0.227955490350723,-0.226268082857132,0.962870836257935,0.147249847650528,-0.132246673107147,0.97303706407547,0.188970327377319,-0.144380047917366,0.970310568809509,0.194041192531586,-0.320668458938599,0.909401834011078,0.26487734913826,-0.332406342029572,0.926807403564453,0.17473991215229,-0.144190847873688,0.970826148986816,0.191587507724762,
- -0.236749202013016,0.953936100006104,0.18427075445652,-0.210797443985939,0.83849161863327,-0.502490162849426,-0.207565009593964,0.837981343269348,-0.504682302474976,-0.105230040848255,0.815544188022614,-0.569047033786774,-0.211617365479469,0.837215542793274,-0.504270076751709,-0.0987129658460617,0.825258612632751,-0.556061148643494,-0.176384925842285,0.834855914115906,-0.521444082260132,-0.365581274032593,0.793338537216187,-0.486789762973785,-0.207824170589447,0.843065857887268,-0.496033370494843,-0.170626610517502,0.851256012916565,-0.496235609054565,-0.0992710068821907,0.824438333511353,-0.557177424430847,-0.0827505216002464,0.822321772575378,-0.56297367811203,-0.177676185965538,0.831002712249756,-0.527129828929901,-0.359965801239014,0.778408348560333,-0.51430070400238,-0.170626625418663,0.851256132125854,-0.496235609054565,-0.119310222566128,0.864643931388855,-0.488012284040451,-0.172422096133232,0.846276223659515,-0.504070639610291,-0.0657980889081955,0.855865120887756,-0.512996673583984,-0.118955567479134,0.852330386638641,-0.509296178817749,-0.0173994451761246,0.997272431850433,-0.0717282369732857,-0.102364391088486,0.992147266864777,-0.0718700587749481,-0.0364152975380421,0.996753752231598,-0.0718051120638847,-0.137660458683968,0.987875461578369,-0.0717750787734985,-0.0173994451761246,0.997272431850433,-0.0717282369732857,-0.0364152975380421,0.996753752231598,-0.0718051120638847,-0.136305093765259,0.988048076629639,-0.0719861313700676,-0.0183491408824921,0.993239879608154,-0.114620357751846,-0.137682214379311,0.987894058227539,-0.0714769810438156,-0.136802271008492,0.987081527709961,-0.0833978652954102,-0.0375570505857468,0.998309433460236,-0.0443603321909904,-0.220993995666504,0.968323111534119,-0.116241693496704,-0.134497955441475,0.988641023635864,-0.067076101899147,-0.138122618198395,0.988253235816956,-0.0654037669301033,-0.322608381509781,0.946263313293457,0.0225778166204691,-0.334392249584198,0.939832746982574,-0.0699740871787071,-0.13816611468792,0.988286972045898,-0.064799927175045,-0.234437867999077,0.96977424621582,-0.0676530748605728,
- -0.211403369903564,0.674829721450806,-0.707045614719391,-0.213480353355408,0.675510406494141,-0.705770432949066,-0.113864101469517,0.638614475727081,-0.761056244373322,-0.206613838672638,0.68485301733017,-0.698775470256805,-0.101815238595009,0.661944568157196,-0.742605566978455,-0.169606491923332,0.677749872207642,-0.715463995933533,-0.360651195049286,0.627027690410614,-0.690483212471008,-0.213548868894577,0.670269668102264,-0.710728883743286,-0.169031545519829,0.679997384548187,-0.713464796543121,-0.101287081837654,0.662947058677673,-0.741783082485199,-0.081334188580513,0.658740282058716,-0.747961223125458,-0.170249670743942,0.675220668315887,-0.71769917011261,-0.353672116994858,0.600804388523102,-0.716903209686279,-0.170522212982178,0.674144208431244,-0.718645751476288,-0.116747230291367,0.690352559089661,-0.713991224765778,-0.171740740537643,0.669295847415924,-0.722874999046326,-0.0750590637326241,0.675804197788239,-0.733249545097351,-0.116293802857399,0.673819959163666,-0.729686617851257,-0.0132061522454023,0.907753884792328,-0.419295340776443,-0.102554731070995,0.902822732925415,-0.417604774236679,-0.0329614877700806,0.907290279865265,-0.419211000204086,-0.140435889363289,0.898517549037933,-0.415865391492844,-0.0132061522454023,0.907753884792328,-0.419295340776443,-0.0329614877700806,0.907290279865265,-0.419211000204086,-0.135459050536156,0.898943781852722,-0.416594535112381,-0.0144642144441605,0.888195097446442,-0.459238797426224,-0.14053413271904,0.899070143699646,-0.414635986089706,-0.139496490359306,0.89322429895401,-0.42742395401001,-0.0341361686587334,0.918971180915833,-0.392844468355179,-0.219089448451996,0.865634381771088,-0.450196474790573,-0.133661672472954,0.901201784610748,-0.412274152040482,-0.140994071960449,0.901654362678528,-0.408827722072601,-0.321893811225891,0.893380463123322,-0.313457667827606,-0.333426952362061,0.854905128479004,-0.39744645357132,-0.140936747193336,0.901332497596741,-0.40955662727356,-0.232309624552727,0.8839111328125,-0.405873596668243,-0.213641062378883,0.379120826721191,-0.900347113609314,
- -0.214586496353149,0.379615664482117,-0.899913609027863,-0.111461915075779,0.323606371879578,-0.939603745937347,-0.212334752082825,0.382448196411133,-0.89924818277359,-0.102893248200417,0.343811213970184,-0.933384656906128,-0.173256784677505,0.369171768426895,-0.91306859254837,-0.36342054605484,0.350594848394394,-0.863138854503632,-0.211420342326164,0.384769678115845,-0.898472964763641,-0.168511748313904,0.392476350069046,-0.904193580150604,-0.0994642972946167,0.351811617612839,-0.930771470069885,-0.078846201300621,0.345455795526505,-0.93511688709259,-0.172477275133133,0.37305474281311,-0.911636888980865,-0.359067648649216,0.328947752714157,-0.873420715332031,-0.167020931839943,0.399638921022415,-0.901328265666962,-0.119395241141319,0.414213329553604,-0.902314901351929,-0.17049378156662,0.382837265729904,-0.907946825027466,-0.066835343837738,0.385303020477295,-0.920366644859314,-0.118864774703979,0.38459387421608,-0.915400862693787,0.0654981359839439,-0.684221625328064,-0.726326942443848,0.0633585751056671,-0.684425830841064,-0.726324260234833,-0.134154126048088,-0.689583957195282,-0.711671769618988,0.177819773554802,-0.647250592708588,-0.7412468791008,0.0619134530425072,-0.677384853363037,-0.733018755912781,0.0649002343416214,-0.676733374595642,-0.733362138271332,-0.0678433328866959,-0.672457456588745,-0.737019896507263,0.0644821673631668,-0.671505868434906,-0.738188326358795,-0.135314285755157,-0.668376386165619,-0.731411755084991,0.0665654912590981,-0.697626173496246,-0.713362991809845,0.175982013344765,-0.660743474960327,-0.729690611362457,0.182597562670708,-0.658195793628693,-0.730367422103882,-0.0688325464725494,-0.679085791110992,-0.730824589729309,0.167326182126999,-0.703003406524658,-0.691222250461578,0.0665726959705353,-0.697716891765594,-0.713273644447327,0.209626317024231,-0.637912690639496,-0.741029262542725,0.179368138313293,-0.65080451965332,-0.737753689289093,0.177746772766113,-0.651473045349121,-0.737556099891663,0.189530819654465,-0.680264532566071,-0.70803827047348,0.172898828983307,-0.676384508609772,-0.715967953205109,
- -0.0572452396154404,-0.600369572639465,-0.797671318054199,0.211540579795837,-0.683703124523163,-0.698427319526672,0.172992289066315,-0.675920248031616,-0.716383635997772,0.189994916319847,-0.679500758647919,-0.708647191524506,-0.189682722091675,0.758999049663544,0.62284904718399,-0.255865722894669,0.720607578754425,0.644404709339142,-0.366283416748047,0.64361310005188,0.672010898590088,-0.19200898706913,0.761524677276611,0.619041919708252,-0.0662585869431496,0.812502920627594,0.579179465770721,-0.25580620765686,0.729046225547791,0.634866058826447,-0.389816701412201,0.699195384979248,0.599306881427765,-0.255633264780045,0.741815090179443,0.619969487190247,-0.318329036235809,0.723979949951172,0.611980140209198,-0.255776762962341,0.731863081455231,0.631628632545471,-0.0563819110393524,0.790108501911163,0.610368549823761,-0.182420939207077,0.757433354854584,0.626910924911499,-0.255230069160461,0.759065210819244,0.598896980285645,-0.1815295368433,0.763490617275238,0.61978155374527,-0.309413760900497,0.752829015254974,0.580957531929016,-0.0564534738659859,0.790274500846863,0.610146999359131,-0.0243856515735388,0.795383393764496,0.605615973472595,-0.181754395365715,0.761979222297668,0.621573030948639,-0.118315823376179,0.764861762523651,0.633235991001129,-0.293902575969696,0.796153604984283,0.528924107551575,-0.179078727960587,0.7792848944664,0.600538074970245,-0.18110953271389,0.766284465789795,0.616447389125824,-0.0180628038942814,0.767059445381165,0.641321659088135,-0.117069497704506,0.769095003604889,0.628321349620819,-0.204563230276108,0.567412376403809,0.797619760036469,-0.273669570684433,0.539994478225708,0.795933961868286,-0.39662891626358,0.481848895549774,0.781349718570709,-0.205745935440063,0.571519732475281,0.794376492500305,-0.0722917765378952,0.605761051177979,0.79235565662384,-0.270559996366501,0.550491094589233,0.789782762527466,-0.397042095661163,0.558632969856262,0.728207945823669,-0.265782713890076,0.566179752349854,0.780256450176239,-0.326973259449005,0.564110994338989,0.758200168609619,-0.269582957029343,0.553741991519928,0.787841856479645,
- -0.072084441781044,0.574926793575287,0.815023362636566,-0.195458441972733,0.564471542835236,0.801977515220642,-0.192322194576263,0.571988642215729,0.797396421432495,-0.308421820402145,0.597903251647949,0.739856541156769,-0.258875757455826,0.58798086643219,0.766330122947693,-0.0720885545015335,0.575422048568726,0.814673364162445,-0.0348129831254482,0.575324177742004,0.817184388637543,-0.193099319934845,0.570134460926056,0.798535883426666,-0.138256654143333,0.56032121181488,0.816654920578003,-0.27735510468483,0.650045990943909,0.707470417022705,-0.183878630399704,0.591785728931427,0.784842848777771,-0.19085481762886,0.575474917888641,0.79523777961731,-0.0393909476697445,0.537667512893677,0.842236280441284,-0.136501595377922,0.563534557819366,0.814736843109131,0.0540229715406895,-0.608316659927368,-0.791853785514832,0.0390333570539951,-0.610577642917633,-0.790993869304657,-0.142101973295212,-0.62666243314743,-0.766225278377533,0.16130168735981,-0.571901738643646,-0.804307222366333,0.0394178815186024,-0.611854791641235,-0.78998738527298,0.0538980774581432,-0.607652187347412,-0.792372286319733,-0.0745511576533318,-0.616580724716187,-0.783753991127014,0.0538854785263538,-0.60758513212204,-0.792424559593201,-0.143596708774567,-0.617170929908752,-0.773614883422852,0.0604951940476894,-0.642427504062653,-0.763954997062683,0.171451464295387,-0.595880627632141,-0.784557700157166,0.173587962985039,-0.594885528087616,-0.784842908382416,-0.0746195167303085,-0.618303954601288,-0.782388746738434,0.16865947842598,-0.630431592464447,-0.757700562477112,0.0580459535121918,-0.629594922065735,-0.774752199649811,0.207337349653244,-0.57009494304657,-0.794986128807068,0.170433059334755,-0.589011073112488,-0.789948582649231,0.172014310956001,-0.588224649429321,-0.790191650390625,0.178577899932861,-0.603894412517548,-0.776802062988281,0.170959874987602,-0.602358043193817,-0.779703557491302,-0.0710059702396393,-0.533874809741974,-0.84257698059082,0.213151425123215,-0.608875632286072,-0.764092206954956,0.170996993780136,-0.601875305175781,-0.780068039894104,
- 0.178853765130043,-0.603270292282104,-0.777223587036133,-0.0798764079809189,-0.97871857881546,0.189023390412331,0.0123689454048872,-0.983107507228851,0.182611003518105,-0.104117795825005,-0.976160764694214,0.190446272492409,0.0623797066509724,-0.965388357639313,0.253247320652008,0.00619304925203323,-0.971058368682861,0.238762259483337,-0.0829606801271439,-0.973277270793915,0.21412381529808,-0.252856642007828,-0.947379589080811,0.196304813027382,-0.0795066580176353,-0.979321122169495,0.18603478372097,-0.104339547455311,-0.976639688014984,0.187851563096046,-0.0806990712881088,-0.977340161800385,0.195688396692276,-0.273114889860153,-0.95173853635788,0.140007212758064,0.0689048022031784,-0.970044434070587,0.232950627803802,-0.253507256507874,-0.955810546875,0.14886349439621,-0.274667382240295,-0.950319290161133,0.146461635828018,-0.0769758448004723,-0.983168721199036,0.165692657232285,-0.22615721821785,-0.954905986785889,0.192373231053352,0.0356610156595707,-0.941835224628448,0.334177583456039,-0.278067201375961,-0.947013735771179,0.160759925842285,-0.553978025913239,-0.827202439308167,0.0940451472997665,-0.277565896511078,-0.947518646717072,0.158637180924416,-0.253371626138687,-0.953480303287506,0.163334935903549,-0.222748816013336,-0.957029104232788,0.185683771967888,-0.277727752923965,-0.947356283664703,0.15932197868824,-0.537818789482117,-0.842881619930267,0.0173724312335253,0.280495077371597,0.863188207149506,-0.419796168804169,0.0503639727830887,0.855084896087646,-0.51603627204895,-0.0444962829351425,0.83652138710022,-0.546124637126923,0.295157909393311,0.81865918636322,-0.492624521255493,-0.0431479848921299,0.833073914051056,-0.55147647857666,0.0777779221534729,0.839385747909546,-0.53794252872467,0.0490623190999031,0.856841325759888,-0.513240396976471,-0.269507348537445,0.753630697727203,-0.599505245685577,-0.0447102040052414,0.837065577507019,-0.545272648334503,-0.0432121530175209,0.83323860168457,-0.551222383975983,-0.157395124435425,0.819766283035278,-0.550645112991333,0.0780179351568222,0.835504472255707,-0.543916881084442,
- -0.0442774556577206,0.835963904857636,-0.546995282173157,-0.282023429870605,0.776818692684174,-0.563041388988495,-0.156384065747261,0.814500391483307,-0.558688879013062,0.0789157822728157,0.819967329502106,-0.566944539546967,-0.156174600124359,0.813409447669983,-0.560334444046021,-0.0522298067808151,0.821953356266022,-0.567154943943024,-0.280681252479553,0.77435714006424,-0.567088186740875,-0.298940539360046,0.76755964756012,-0.566998064517975,-0.155942991375923,0.812203049659729,-0.562146008014679,-0.156416729092598,0.814670503139496,-0.558431565761566,-0.301850706338882,0.783187448978424,-0.543602585792542,-0.0522800087928772,0.825898289680481,-0.561390221118927,-0.0667648613452911,0.857509613037109,0.510117292404175,-0.0608736984431744,0.858043372631073,0.509956777095795,0.136681899428368,0.8584805727005,0.494296669960022,-0.178979784250259,0.830308318138123,0.527782440185547,-0.0606752522289753,0.857365250587463,0.511119723320007,-0.0666284933686256,0.856315076351166,0.512137889862061,0.0694268569350243,0.85621589422226,0.511931896209717,-0.0665367990732193,0.855510950088501,0.513491868972778,0.137404501438141,0.850585222244263,0.507567465305328,-0.0678843930363655,0.867258965969086,0.493207484483719,-0.173636808991432,0.837374746799469,0.518318235874176,-0.18176294863224,0.834606766700745,0.519993960857391,0.0682665035128593,0.851080417633057,0.520578384399414,-0.166378915309906,0.863390564918518,0.476313799619675,-0.0675354674458504,0.864231824874878,0.498540252447128,-0.208401530981064,0.821152567863464,0.531297624111176,-0.179997503757477,0.831885755062103,0.52494478225708,-0.174546614289284,0.833846926689148,0.523672580718994,-0.171573624014854,0.867988526821136,0.466002464294434,-0.165155157446861,0.867431581020355,0.46934649348259,0.0614601485431194,0.819864749908447,0.569249093532562,-0.211304485797882,0.869450807571411,0.446548700332642,-0.165318831801414,0.866896569728851,0.470276594161987,-0.172075808048248,0.8674156665802,0.46688324213028,-0.192311018705368,0.901694297790527,0.387251794338226,-0.253269553184509,0.873291254043579,0.416193515062332,
- -0.363340616226196,0.807773590087891,0.464204013347626,-0.194722414016724,0.903129577636719,0.382675111293793,-0.0656832307577133,0.942098140716553,0.328841745853424,-0.253234595060349,0.878580629825592,0.404929995536804,-0.386180192232132,0.840376794338226,0.380304992198944,-0.253109455108643,0.886228203773499,0.387988895177841,-0.317443817853928,0.866482675075531,0.385275661945343,-0.253216683864594,0.880126655101776,0.401570081710815,-0.0558400005102158,0.929277896881104,0.365136325359344,-0.179413706064224,0.903278231620789,0.389742404222488,-0.252778738737106,0.896625697612762,0.363545656204224,-0.178651049733162,0.906569838523865,0.382380694150925,-0.308402329683304,0.885434448719025,0.347697854042053,-0.0559006035327911,0.929360926151276,0.364915609359741,-0.0310750119388103,0.932252466678619,0.36047151684761,-0.178768157958984,0.906071484088898,0.383505463600159,-0.118413917720318,0.91135972738266,0.394210249185562,-0.292723506689072,0.912378549575806,0.286144107580185,-0.176329523324966,0.915946424007416,0.360485941171646,-0.178219512104988,0.908384323120117,0.37825345993042,-0.0249960012733936,0.915897965431213,0.400632202625275,-0.117174908518791,0.914035797119141,0.388340920209885,-0.205810740590096,0.767241418361664,0.607439339160919,-0.276780068874359,0.739572525024414,0.613535046577454,-0.403293609619141,0.67726081609726,0.615363359451294,-0.207031711935997,0.77032995223999,0.603100061416626,-0.0675737261772156,0.803886353969574,0.590931951999664,-0.273694276809692,0.748106837272644,0.604506134986877,-0.403648197650909,0.738329887390137,0.540312230587006,-0.268729954957962,0.761334300041199,0.590046167373657,-0.331560701131821,0.752754867076874,0.568706870079041,-0.272567212581635,0.751163065433502,0.601216375827789,-0.0674856975674629,0.780046463012695,0.62207168340683,-0.192378029227257,0.766579627990723,0.612655103206635,-0.189700394868851,0.771664142608643,0.607081711292267,-0.312366306781769,0.780876755714417,0.540979504585266,-0.261779338121414,0.778880000114441,0.56992781162262,-0.067487008869648,0.780276238918304,0.621783435344696,
- -0.0333936102688313,0.780750632286072,0.623949944972992,-0.190083190798759,0.770941615104675,0.607879400253296,-0.13380528986454,0.763954043388367,0.631245136260986,-0.280407816171646,0.822731494903564,0.494453579187393,-0.181642636656761,0.786534070968628,0.590229034423828,-0.18816801905632,0.77454149723053,0.603886008262634,-0.0381574854254723,0.75134015083313,0.658811092376709,-0.131004720926285,0.768007874488831,0.626898467540741,0.0530702099204063,-0.814813852310181,-0.577288508415222,0.0455366149544716,-0.815799593925476,-0.57653933763504,-0.138206705451012,-0.825016140937805,-0.547948181629181,0.162904977798462,-0.781381964683533,-0.602415323257446,0.0449953936040401,-0.814464509487152,-0.578466057777405,0.0525459088385105,-0.812731087207794,-0.580264687538147,-0.0730009973049164,-0.811024844646454,-0.580439150333405,0.0506497249007225,-0.805131137371063,-0.590930163860321,-0.141914770007133,-0.808853149414063,-0.57062840461731,0.0522143915295601,-0.811410009860992,-0.582140505313873,0.167522132396698,-0.769766986370087,-0.615950703620911,0.157467246055603,-0.773938059806824,-0.613370954990387,-0.0723933428525925,-0.800372004508972,-0.5951167345047,0.163857042789459,-0.805782735347748,-0.569091320037842,0.0515933260321617,-0.808926343917847,-0.585641860961914,0.203239694237709,-0.749236285686493,-0.630348086357117,0.155391663312912,-0.771066725254059,-0.617502689361572,0.167892903089523,-0.765600740909576,-0.621021270751953,0.163461789488792,-0.817814767360687,-0.551778376102448,0.162437617778778,-0.817728757858276,-0.552208185195923,-0.0707868561148643,-0.772872924804688,-0.630600333213806,0.217124372720718,-0.819494783878326,-0.530363380908966,0.162538677453995,-0.816908419132233,-0.553391218185425,0.163951963186264,-0.817011117935181,-0.552822411060333,0.118426561355591,-0.459824532270432,-0.880077540874481,0.109472192823887,-0.459676921367645,-0.88131320476532,-0.0781043916940689,-0.4480901658535,-0.890569984912872,0.296005636453629,-0.421510607004166,-0.857152104377747,0.109427385032177,-0.452557235956192,-0.884995877742767,
- 0.119171261787415,-0.451357901096344,-0.884349703788757,-0.0182547029107809,-0.459614336490631,-0.887930989265442,0.117290735244751,-0.472432345151901,-0.873527646064758,-0.0784547999501228,-0.451144844293594,-0.888995707035065,0.115995056927204,-0.48638904094696,-0.866008639335632,0.225387722253799,-0.462776005268097,-0.857343971729279,0.297892153263092,-0.443466156721115,-0.845339000225067,-0.0201749503612518,-0.466019779443741,-0.884544253349304,0.205602735280991,-0.523749828338623,-0.826688289642334,0.114327847957611,-0.503726303577423,-0.856264531612396,0.456593841314316,-0.406842619180679,-0.791202366352081,0.29717892408371,-0.434940755367279,-0.850006639957428,0.231555595993996,-0.442514389753342,-0.866350531578064,0.188376739621162,-0.465858787298203,-0.86457496881485,0.219418600201607,-0.481794595718384,-0.848368704319,0.00966785103082657,-0.363954037427902,-0.931366801261902,0.418389767408371,-0.562996983528137,-0.712730228900909,0.219494044780731,-0.481557786464691,-0.848483622074127,0.187970459461212,-0.4664346575737,-0.864352881908417,-0.0708428770303726,0.985422849655151,0.154670983552933,-0.0579784289002419,0.986382007598877,0.153912737965584,0.133459985256195,0.981163263320923,0.139668226242065,-0.176158711314201,0.967695593833923,0.180370301008224,-0.0578501522541046,0.98625373840332,0.154780492186546,-0.0706642642617226,0.984962701797485,0.157654911279678,0.0698561370372772,0.98519504070282,0.156559452414513,-0.0706261694431305,0.984863579273224,0.15828962624073,0.134117320179939,0.978812098503113,0.154723703861237,-0.0719167813658714,0.988030970096588,0.136465921998024,-0.170841112732887,0.970754384994507,0.168669149279594,-0.179022237658501,0.968821883201599,0.171275451779366,0.0686841681599617,0.983630359172821,0.166594609618187,-0.163660824298859,0.979013442993164,0.121441006660461,-0.071689710021019,0.987502694129944,0.140353858470917,-0.208969503641129,0.959711790084839,0.187843307852745,-0.17728416621685,0.968148112297058,0.176803857088089,-0.171757534146309,0.969495713710785,0.174864277243614,
- -0.170643121004105,0.979168117046356,0.110049046576023,-0.162534341216087,0.980068624019623,0.114228419959545,0.0618634894490242,0.972741305828094,0.223488852381706,-0.211880281567574,0.973079741001129,0.0906784683465958,-0.162692695856094,0.979923963546753,0.115239307284355,-0.171144247055054,0.978966236114502,0.111061967909336,-0.195055931806564,0.980668187141418,0.0155889522284269,-0.252616614103317,0.966231226921082,0.05081457644701,-0.367274403572083,0.9220050573349,0.122541353106499,-0.19128680229187,0.981263816356659,0.0230384506285191,-0.0669209808111191,0.996990561485291,-0.0391358435153961,-0.252649575471878,0.966035544872284,0.0542548112571239,-0.398738771677017,0.917055666446686,-0.00405828701332211,-0.25142377614975,0.967768609523773,-0.0144899059087038,-0.31158658862114,0.950161755084991,-0.0103247538208961,-0.252314954996109,0.967252969741821,0.0275485888123512,-0.0627019554376602,0.997773110866547,-0.0227477848529816,-0.183283448219299,0.983018398284912,0.00905557721853256,-0.251870840787888,0.967752575874329,0.00401090132072568,-0.184033170342445,0.982779383659363,0.0166297983378172,-0.312213718891144,0.949982881546021,-0.00743264704942703,-0.0611966475844383,0.997982442378998,-0.0169159807264805,-0.0272277407348156,0.999340236186981,-0.0240374803543091,-0.183275640010834,0.983020603656769,0.00897734984755516,-0.1175771728158,0.99268913269043,0.0272768940776587,-0.296570599079132,0.951971888542175,-0.0761275812983513,-0.18144004046917,0.983359634876251,-0.00913125276565552,-0.180613607168198,0.983405530452728,-0.017095485702157,-0.0236617345362902,0.999719619750977,0.000987804494798183,-0.110395312309265,0.993847072124481,-0.00899360235780478,-0.20942996442318,0.937117993831635,0.279193460941315,-0.272781610488892,0.916232585906982,0.293441832065582,-0.39731952548027,0.860773503780365,0.318129360675812,-0.210696205496788,0.938446521759033,0.273724734783173,-0.0723602473735809,0.96546596288681,0.250278949737549,-0.269703298807144,0.920663118362427,0.282204896211624,-0.397321969270706,0.888718664646149,0.228723481297493,
- -0.265022158622742,0.927021145820618,0.265320628881454,-0.324549913406372,0.912312626838684,0.249705910682678,-0.268774420022964,0.921960532665253,0.278835356235504,-0.0722107663750649,0.955171763896942,0.287110716104507,-0.18867814540863,0.940192580223084,0.283616840839386,-0.186513006687164,0.942317247390747,0.277940958738327,-0.306024640798569,0.927405774593353,0.215098798274994,-0.258189380168915,0.935528516769409,0.241090685129166,-0.0721427276730537,0.951684951782227,0.298481464385986,-0.0333992131054401,0.953167676925659,0.30059289932251,-0.19078341126442,0.938081741333008,0.289144217967987,-0.134109780192375,0.94403749704361,0.301343679428101,-0.275062382221222,0.948257267475128,0.158583775162697,-0.178852632641792,0.949465453624725,0.257928550243378,-0.174767211079597,0.953047633171082,0.247298628091812,-0.0336826741695404,0.952349364757538,0.303144067525864,-0.118469372391701,0.955413699150085,0.270462036132813,0.0551791861653328,-0.970917344093323,-0.232969582080841,0.0440214686095715,-0.971863031387329,-0.231396898627281,-0.140758410096169,-0.969391167163849,-0.20116625726223,0.164450615644455,-0.949032247066498,-0.268875241279602,0.0435252115130425,-0.97139436006546,-0.233449295163155,0.0546078234910965,-0.970011353492737,-0.236846178770065,-0.0725494250655174,-0.968786299228668,-0.237043604254723,0.0527920387685299,-0.967037558555603,-0.24910107254982,-0.144374519586563,-0.962808966636658,-0.228374406695366,0.0542400069534779,-0.969420552253723,-0.239336550235748,0.173087745904922,-0.941999733448029,-0.287536352872849,0.158913016319275,-0.946166336536407,-0.281985998153687,-0.0719264894723892,-0.964378416538239,-0.254560112953186,0.169426113367081,-0.958893001079559,-0.22763803601265,0.0537907630205154,-0.968690872192383,-0.242372781038284,0.199719652533531,-0.931202054023743,-0.304917722940445,0.156810849905014,-0.945030868053436,-0.28692689538002,0.173444285988808,-0.939948320388794,-0.293962806463242,0.160053610801697,-0.964673817157745,-0.209254324436188,0.167951658368111,-0.964046597480774,-0.205928400158882,
- -0.0702850073575974,-0.952124059200287,-0.297522693872452,0.213709056377411,-0.958489716053009,-0.188748732209206,0.16805699467659,-0.963703393936157,-0.207442939281464,0.160523235797882,-0.964332759380341,-0.210463032126427,-0.120886072516441,0.763795495033264,0.634037137031555,-0.107099890708923,0.76433140039444,0.635867357254028,0.0806879475712776,0.756996035575867,0.648418545722961,-0.296205550432205,0.718195796012878,0.629648387432098,-0.107020333409309,0.757520854473114,0.643979072570801,-0.121940664947033,0.755474090576172,0.643730819225311,0.0150759220123291,0.74618798494339,0.665564596652985,-0.12226839363575,0.752829790115356,0.646759450435638,0.0778105333447456,0.738363921642303,0.669898748397827,-0.122743986546993,0.748941540718079,0.651168644428253,-0.240092247724533,0.720184564590454,0.650914669036865,-0.294302672147751,0.702949404716492,0.647493720054626,0.0124788954854012,0.739631414413452,0.672896444797516,-0.218763217329979,0.772855877876282,0.595681667327881,-0.12081615626812,0.764337420463562,0.633397161960602,-0.459406316280365,0.663207828998566,0.590847969055176,-0.295537948608398,0.712741017341614,0.636127054691315,-0.238520830869675,0.724355280399323,0.646851778030396,-0.189190074801445,0.754354238510132,0.628614962100983,-0.222701713442802,0.76373827457428,0.605894207954407,-0.00855251401662827,0.683842360973358,0.72957968711853,-0.420090705156326,0.785885453224182,0.453770697116852,-0.22367587685585,0.76144278049469,0.608419358730316,-0.190448060631752,0.75294828414917,0.629919350147247,0.0698777362704277,-0.991583645343781,0.108990669250488,0.0564168244600296,-0.992326498031616,0.110024757683277,-0.136541351675987,-0.983024179935455,0.122555904090405,0.17282871901989,-0.982307553291321,0.0721270516514778,0.0551601871848106,-0.993305146694183,0.101499877870083,0.069259487092495,-0.992766499519348,0.0980703085660934,-0.0663193687796593,-0.993408739566803,0.0934920012950897,0.068910151720047,-0.993375599384308,0.0919592976570129,-0.137887388467789,-0.986014187335968,0.0936112031340599,0.0708435997366905,-0.989455163478851,0.126331567764282,
- 0.177651450037956,-0.980156421661377,0.0879396349191666,0.177797168493271,-0.980134844779968,0.0878858864307404,-0.0673675239086151,-0.992422699928284,0.102756664156914,0.168711334466934,-0.974844813346863,0.14565110206604,0.0709745585918427,-0.989139199256897,0.128710031509399,0.208256304264069,-0.975973784923553,0.0640661120414734,0.174588829278946,-0.9815713763237,0.0776946172118187,0.179458007216454,-0.980846047401428,0.0757359489798546,0.189357608556747,-0.974900722503662,0.1170993745327,0.174314707517624,-0.97852885723114,0.109980419278145,-0.0555014982819557,-0.998458564281464,0.000265281618339941,0.210365101695061,-0.969573616981506,0.125194296240807,0.174416169524193,-0.978584885597229,0.109319537878037,0.189816161990166,-0.974928021430969,0.116126470267773,-0.189457550644875,0.954219162464142,-0.231455698609352,-0.2486382573843,0.949264526367188,-0.192551136016846,-0.36669072508812,0.923904180526733,-0.109265461564064,-0.190635964274406,0.953448712825775,-0.233652412891388,-0.0624494887888432,0.952037036418915,-0.299542516469955,-0.248608082532883,0.947407841682434,-0.201525315642357,-0.39009165763855,0.899283707141876,-0.197780728340149,-0.248475670814514,0.943223118782043,-0.22043189406395,-0.320317625999451,0.923814296722412,-0.20967572927475,-0.248521059751511,0.944400429725647,-0.215279638767242,-0.0552715994417667,0.960570931434631,-0.272485852241516,-0.18100842833519,0.954591631889343,-0.236624136567116,-0.248161822557449,0.937215864658356,-0.245035395026207,-0.180997595191002,0.954565286636353,-0.236738607287407,-0.311065822839737,0.916416347026825,-0.251831650733948,-0.0545094572007656,0.961425721645355,-0.269609808921814,-0.0241811908781528,0.960845112800598,-0.276028901338577,-0.180690363049507,0.953816711902618,-0.239968568086624,-0.123170614242554,0.97057431936264,-0.206916525959969,-0.30069425702095,0.90674215555191,-0.295637577772141,-0.181018248200417,0.954615414142609,-0.236520513892174,-0.181749373674393,0.956372678279877,-0.228732272982597,-0.0150407599285245,0.976758599281311,-0.213814049959183,
- -0.119887426495552,0.967208802700043,-0.223906695842743,-0.204093351960182,0.978586912155151,0.0267129875719547,-0.274269074201584,0.960458695888519,0.0479138195514679,-0.402202516794205,0.911397635936737,0.0871064588427544,-0.205268412828445,0.978468954563141,0.0215255115181208,-0.0706869885325432,0.997472047805786,-0.00726841436699033,-0.271156847476959,0.961869716644287,0.0357846133410931,-0.402328163385391,0.915451467037201,-0.00897814054042101,-0.266327172517776,0.96372789144516,0.0172739308327436,-0.329362809658051,0.944188594818115,0.00529035180807114,-0.27014821767807,0.962290585041046,0.031887948513031,-0.0706541761755943,0.997009038925171,0.0313198603689671,-0.188152000308037,0.981624662876129,0.0318105928599834,-0.18606898188591,0.982192695140839,0.0260005258023739,-0.310482800006866,0.94999748468399,-0.0332456305623055,-0.259403079748154,0.965730547904968,-0.00864160899072886,-0.070655345916748,0.997025549411774,0.0307906605303288,-0.0350434072315693,0.998863399028778,0.0323088876903057,-0.185917228460312,0.982232511043549,0.0255779959261417,-0.135408073663712,0.989686965942383,0.046738013625145,-0.278956383466721,0.955595433712006,-0.0949775576591492,-0.178483918309212,0.983930110931396,0.00500194728374481,-0.184453576803207,0.982605874538422,0.0215078704059124,-0.0396091416478157,0.996214926242828,0.0773763135075569,-0.132999315857887,0.990242123603821,0.041614081710577,-0.0494302660226822,0.998691499233246,-0.0131147094070911,-0.0439020618796349,0.998938143253326,-0.0139745883643627,0.13716447353363,0.989666879177094,-0.0417778119444847,-0.161339700222015,0.986680150032043,0.0207795575261116,-0.0448141694068909,0.998835682868958,-0.0178608428686857,-0.0498671978712082,0.998624503612518,-0.0161955375224352,0.0716010481119156,0.996978104114532,-0.0301326923072338,-0.0501534789800644,0.998575448989868,-0.0182158499956131,0.137860000133514,0.989780068397522,-0.0364712029695511,-0.0554121434688568,0.996915459632874,-0.0555798672139645,-0.16526585817337,0.98622727394104,-0.00656735710799694,-0.17145274579525,0.985185146331787,-0.00377174420282245,
- 0.071399912238121,0.997175574302673,-0.0233023166656494,-0.162574619054794,0.985580086708069,-0.0469190329313278,-0.0526703409850597,0.997961521148682,-0.0360385440289974,-0.203984633088112,0.97868686914444,0.0237163938581944,-0.167519271373749,0.98585170507431,0.00581224635243416,-0.165991336107254,0.986114203929901,0.00506487628445029,-0.179304257035255,0.9836785197258,-0.0150529369711876,-0.165079176425934,0.986234545707703,-0.00950336921960115,0.067969799041748,0.99450695514679,0.0795992016792297,-0.209760636091232,0.977410793304443,-0.0258586704730988,-0.165063887834549,0.986234843730927,-0.00974297896027565,-0.179365143179893,0.983669936656952,-0.0148867629468441,-0.117265090346336,0.901637613773346,0.416291505098343,-0.109637394547462,0.902181088924408,0.417191714048386,0.0829582586884499,0.898252665996552,0.431578546762466,-0.293633759021759,0.856973469257355,0.423527628183365,-0.10955174267292,0.89752584695816,0.427136868238449,-0.118285194039345,0.896335422992706,0.427307307720184,0.0135125294327736,0.892579793930054,0.450687021017075,-0.118680387735367,0.894219219684601,0.431609779596329,0.0800403133034706,0.885725319385529,0.457257270812988,-0.119073286652565,0.892079889774323,0.435907304286957,-0.236555904150009,0.864609479904175,0.443274021148682,-0.291699260473251,0.846948146820068,0.444511443376541,0.011017388664186,0.888271808624268,0.459186106920242,-0.215386778116226,0.900455117225647,0.377874433994293,-0.11727474629879,0.901588499546051,0.416395127773285,-0.458905339241028,0.793270409107208,0.400159955024719,-0.292929172515869,0.853279590606689,0.43140059709549,-0.235120996832848,0.867286741733551,0.438784748315811,-0.189039200544357,0.890820264816284,0.413162738084793,-0.219658523797989,0.893823444843292,0.390934705734253,-0.0097615197300911,0.849127948284149,0.528097033500671,-0.418542683124542,0.876633405685425,0.237352102994919,-0.220614567399025,0.89229941368103,0.393866777420044,-0.190302148461342,0.889800608158112,0.41477707028389,-0.0674378126859665,0.891306519508362,-0.448358029127121,
- -0.0576146580278873,0.891548275947571,-0.449246466159821,0.136406511068344,0.878553569316864,-0.457751989364624,-0.176554918289185,0.891733705997467,-0.416700780391693,-0.0574913881719112,0.891925036907196,-0.44851365685463,-0.067281499505043,0.892419099807739,-0.446162939071655,0.0637776553630829,0.892524778842926,-0.44646617770195,-0.0671914890408516,0.893055975437164,-0.444900304079056,0.137069657444954,0.885491013526917,-0.443979471921921,-0.0686482042074203,0.88240247964859,-0.465460360050201,-0.176334619522095,0.887397527694702,-0.425948053598404,-0.179411098361015,0.887367963790894,-0.42472305893898,0.0627935752272606,0.89655214548111,-0.438464879989624,-0.168781071901321,0.865406334400177,-0.471788972616196,-0.0682932510972023,0.885067522525787,-0.460425436496735,-0.210159778594971,0.889575064182281,-0.405572593212128,-0.177668079733849,0.890044808387756,-0.419826477766037,-0.177268028259277,0.89004373550415,-0.41999813914299,-0.170561373233795,0.86017370223999,-0.480635046958923,-0.167439594864845,0.861401438713074,-0.47953274846077,0.0564751252532005,0.920253753662109,-0.387225747108459,-0.213271021842957,0.843308806419373,-0.49330085515976,-0.167612493038177,0.861919224262238,-0.478540897369385,-0.171057060360909,0.860600888729095,-0.479693472385406,-0.193229496479034,0.811684250831604,-0.551208853721619,-0.247153431177139,0.819909512996674,-0.516394793987274,-0.363118886947632,0.82586395740509,-0.431385397911072,-0.195695668458939,0.808553993701935,-0.554926693439484,-0.0674552917480469,0.784460425376892,-0.616499483585358,-0.247059464454651,0.813570559024811,-0.526369333267212,-0.38663387298584,0.772563993930817,-0.503645718097687,-0.246879279613495,0.804892778396606,-0.539627850055695,-0.317315220832825,0.790965497493744,-0.523148775100708,-0.247038513422012,0.812398016452789,-0.528186976909637,-0.0576489344239235,0.807923555374146,-0.586460769176483,-0.184088289737701,0.814472198486328,-0.550224125385284,-0.246470838785172,0.79084712266922,-0.560190141201019,-0.183129906654358,0.808928310871124,-0.558657646179199,
- -0.308279663324356,0.769506335258484,-0.559306383132935,-0.0546008571982384,0.81492018699646,-0.576995551586151,-0.022498182952404,0.812026679515839,-0.583186507225037,-0.184628620743752,0.817609310150146,-0.545368909835815,-0.118628516793251,0.822500228881836,-0.556255877017975,-0.292601734399796,0.732127606868744,-0.615120649337769,-0.180624067783356,0.794547736644745,-0.579714477062225,-0.17977699637413,0.789721071720123,-0.586532831192017,-0.0221536345779896,0.813464641571045,-0.581192255020142,-0.111565008759499,0.802561461925507,-0.586044669151306,-0.211342573165894,0.921272873878479,-0.326482206583023,-0.273489773273468,0.91280472278595,-0.303300112485886,-0.399459272623062,0.881879687309265,-0.250440537929535,-0.20958536863327,0.924161970615387,-0.319372236728668,-0.0699015036225319,0.932449519634247,-0.354473799467087,-0.274235248565674,0.913530886173248,-0.300426930189133,-0.398176819086075,0.837566137313843,-0.374083310365677,-0.25644052028656,0.894666492938995,-0.365800648927689,-0.308737307786942,0.876311361789703,-0.369810491800308,-0.26742759346962,0.906681299209595,-0.326207756996155,-0.0697759240865707,0.938201665878296,-0.338982403278351,-0.187544330954552,0.924068808555603,-0.333052575588226,-0.190830111503601,0.926499366760254,-0.324319243431091,-0.310383200645447,0.877093434333801,-0.366564333438873,-0.260990113019943,0.899777770042419,-0.349691540002823,-0.0697261914610863,0.940204083919525,-0.33339849114418,-0.0308160893619061,0.942587673664093,-0.332533955574036,-0.187601834535599,0.92411196231842,-0.332900434732437,-0.137485295534134,0.941539525985718,-0.307573258876801,-0.27895051240921,0.860487341880798,-0.426319420337677,-0.182530969381332,0.920221090316772,-0.346230447292328,-0.179098576307297,0.917491614818573,-0.355151861906052,-0.0334818437695503,0.950805008411407,-0.307975232601166,-0.122703120112419,0.933202862739563,-0.337751895189285,-0.0548986904323101,0.929754257202148,-0.364064961671829,-0.0410200394690037,0.929588258266449,-0.366310179233551,0.142559692263603,0.910109996795654,-0.389071255922318,
- -0.165630146861076,0.930253267288208,-0.327407330274582,-0.0420508086681366,0.927943348884583,-0.370341718196869,-0.055203303694725,0.928942620754242,-0.366085052490234,0.0717837661504745,0.92208069562912,-0.380281776189804,-0.0556546002626419,0.927730739116669,-0.369077861309052,0.143279373645782,0.912208259105682,-0.383858323097229,-0.0605978555977345,0.913694083690643,-0.4018594622612,-0.169348895549774,0.920374393463135,-0.35246554017067,-0.175538584589958,0.920358061790466,-0.349467128515244,0.071577250957489,0.924694240093231,-0.373921424150467,-0.166473805904388,0.904748916625977,-0.392066150903702,-0.0582893230021,0.920424520969391,-0.38655024766922,-0.203286170959473,0.924022674560547,-0.32381609082222,-0.171565324068069,0.924415946006775,-0.340617805719376,-0.170090585947037,0.924405336380005,-0.34138548374176,-0.176928356289864,0.915726542472839,-0.360751122236252,-0.168944284319878,0.918175399303436,-0.358345836400986,0.0680838152766228,0.958544194698334,-0.276690721511841,-0.208913579583168,0.905589520931244,-0.369137763977051,-0.168936222791672,0.918131649494171,-0.358461856842041,-0.176966413855553,0.915757715702057,-0.360653221607208,-0.0762252435088158,-0.0939181074500084,0.992657661437988,0.0112115871161222,-0.100904293358326,0.994832992553711,-0.103053972125053,-0.0916193649172783,0.990447342395782,0.0622335746884346,-0.0139619279652834,0.997963964939117,0.00335879507474601,-0.0302291568368673,0.999537408351898,-0.0809653028845787,-0.0533254519104958,0.995289504528046,-0.253977030515671,-0.0776923298835754,0.96408486366272,-0.0758581086993217,-0.0970107316970825,0.992388248443604,-0.10327972471714,-0.0942613631486893,0.990175783634186,-0.0793790146708488,-0.0670500844717026,0.994586944580078,-0.272841483354568,-0.114926151931286,0.955169916152954,0.0672040805220604,-0.0295018702745438,0.997303009033203,-0.254442811012268,-0.110373966395855,0.960768699645996,-0.273719906806946,-0.111051395535469,0.955376982688904,-0.0752388164401054,-0.102211087942123,0.991913318634033,-0.212303936481476,-0.103438459336758,0.971713721752167,
- 0.0466357879340649,0.0344944484531879,0.99831622838974,-0.268559992313385,-0.133521437644959,0.953964114189148,-0.552994906902313,-0.14284211397171,0.820848822593689,-0.273012578487396,-0.114173039793968,0.955211341381073,-0.254458785057068,-0.111992381513119,0.960577189922333,-0.210005879402161,-0.108154460787773,0.971699714660645,-0.268733143806458,-0.132778629660606,0.954019069671631,-0.531993925571442,-0.241933524608612,0.811449766159058,-0.197199329733849,0.2242571413517,0.954369485378265,-0.405908077955246,0.252060353755951,0.878466963768005,-0.251820206642151,0.23248465359211,0.93943464756012,-0.19813933968544,0.217328310012817,0.955776751041412,-0.249271929264069,0.220653638243675,0.942961037158966,-0.0677718818187714,0.206344574689865,0.976129591464996,-0.393027424812317,0.118991032242775,0.911795377731323,-0.304728835821152,0.151670649647713,0.940285325050354,-0.239005714654922,0.174400299787521,0.9552281498909,-0.239674955606461,0.177351251244545,0.954516887664795,-0.143596649169922,0.189691454172134,0.971286416053772,-0.0670063942670822,0.198114618659019,0.977885842323303,-0.224984392523766,0.114399045705795,0.967623293399811,-0.267915934324265,0.0795334130525589,0.960153996944427,-0.140369087457657,0.180508360266685,0.973505735397339,-0.0682568028569222,0.211577549576759,0.974974811077118,-0.146903112530708,0.199121743440628,0.968901455402374,-0.0484341867268085,0.214494243264198,0.975523710250854,-0.293135285377502,0.12861442565918,0.947380661964417,-0.148151591420174,0.228438645601273,0.962219774723053,-0.155463963747025,0.22364741563797,0.962191641330719,-0.154023289680481,0.219508841633797,0.963375687599182,-0.145522147417068,0.223451793193817,0.963790774345398,-0.0591769553720951,0.262069374322891,0.963232934474945,0.280464708805084,0.53759229183197,-0.795194327831268,0.0519044250249863,0.482916504144669,-0.874126791954041,-0.0443338975310326,0.451384484767914,-0.891227543354034,0.295637905597687,0.462649464607239,-0.835795342922211,-0.0429872199892998,0.445742845535278,-0.894128322601318,0.0802824273705482,0.458137840032578,-0.885248184204102,
- 0.0505836680531502,0.485868543386459,-0.872567057609558,-0.271497666835785,0.351834297180176,-0.895824551582336,-0.0445492602884769,0.452285647392273,-0.890759825706482,-0.0430528707802296,0.446018129587173,-0.893987834453583,-0.158121928572655,0.434535950422287,-0.88666558265686,0.0805171057581902,0.451667070388794,-0.888545870780945,-0.0441229604184628,0.450501531362534,-0.891684651374817,-0.284125715494156,0.390575349330902,-0.875627458095551,-0.157085776329041,0.425865262746811,-0.891046047210693,0.0813804566860199,0.426545411348343,-0.900797545909882,-0.156889051198959,0.424228489398956,-0.891860961914063,-0.049013763666153,0.428310126066208,-0.902301609516144,-0.283483654260635,0.388581037521362,-0.876722157001495,-0.291821271181107,0.385927677154541,-0.875157237052917,-0.156907856464386,0.424384951591492,-0.891783237457275,-0.156290739774704,0.419268906116486,-0.894307971000671,-0.293570846319199,0.400778949260712,-0.867866635322571,-0.0490072220563889,0.427799105644226,-0.902544260025024,0.280231475830078,0.875601649284363,0.393436282873154,0.051978312432766,0.943958699703217,0.325945049524307,-0.0478488244116306,0.955665767192841,0.290540188550949,0.297570705413818,0.906976878643036,0.298068016767502,-0.043647687882185,0.961400032043457,0.27167084813118,0.0804793685674667,0.955094695091248,0.285161733627319,0.0514122322201729,0.94351589679718,0.327314049005508,-0.271703660488129,0.943261682987213,0.190878704190254,-0.0476293005049229,0.955975592136383,0.289554983377457,-0.0463389866054058,0.957774341106415,0.283762335777283,-0.155562222003937,0.949000120162964,0.274224996566772,0.0802993252873421,0.953500926494598,0.290496021509171,-0.0473242737352848,0.956404447555542,0.288185834884644,-0.284217029809952,0.930126368999481,0.232563525438309,-0.154524803161621,0.951714813709259,0.265256702899933,0.0806612297892571,0.956696748733521,0.279687583446503,-0.156074166297913,0.947615325450897,0.278686314821243,-0.0519127249717712,0.958279192447662,0.28108024597168,-0.283579438924789,0.930858254432678,0.230403169989586,
- -0.296160191297531,0.927805781364441,0.226860553026199,-0.154341459274292,0.952182054519653,0.263681709766388,-0.156108528375626,0.947521269321442,0.278986722230911,-0.300233453512192,0.916427195072174,0.264615178108215,-0.0519549250602722,0.956979513168335,0.285466194152832,0.155532389879227,0.355166345834732,0.921773612499237,-0.0175390467047691,0.368665456771851,0.929396629333496,0.205765753984451,0.349129468202591,0.914204061031342,0.152148589491844,0.32861453294754,0.932128429412842,-0.0213538855314255,0.361209779977798,0.932240068912506,-0.0175253096967936,0.360610842704773,0.932551681995392,0.204608753323555,0.377018839120865,0.903322815895081,-0.017514992505312,0.354997634887695,0.93470311164856,0.0610282868146896,0.364869654178619,0.929056346416473,-0.0175319574773312,0.364416211843491,0.931071102619171,-0.0205933414399624,0.364976644515991,0.93078887462616,-0.157922863960266,0.386461973190308,0.908684551715851,0.0608140900731087,0.365888357162476,0.928669691085815,-0.0175056848675013,0.35019662976265,0.936512649059296,-0.115980938076973,0.327223271131516,0.937802493572235,-0.119318097829819,0.361749768257141,0.924608290195465,-0.0175299327820539,0.363240629434586,0.93153041601181,-0.160459250211716,0.360061943531036,0.919025719165802,0.11599887162447,-0.690942049026489,-0.713542819023132,-0.0116278082132339,-0.674300193786621,-0.738365828990936,-0.0454139858484268,-0.667950034141541,-0.742819130420685,0.117191597819328,-0.68568080663681,-0.718406558036804,0.17793382704258,-0.684807121753693,-0.706667304039001,-0.0115601122379303,-0.678978502750397,-0.734067142009735,-0.0456361770629883,-0.668697595596313,-0.742132663726807,-0.0116235613822937,-0.674595475196838,-0.738096177577972,-0.195904850959778,-0.632733643054962,-0.749179184436798,-0.0115929869934917,-0.67671412229538,-0.736154675483704,0.177073746919632,-0.649731397628784,-0.739252388477325,0.0875037610530853,-0.665621697902679,-0.741141557693481,-0.198488056659698,-0.661176204681396,-0.723497450351715,-0.0116521120071411,-0.672605931758881,-0.739909112453461,
- -0.0997452884912491,-0.670196890830994,-0.735450208187103,-0.0976016372442245,-0.685704946517944,-0.721306204795837,-0.0115872286260128,-0.677111744880676,-0.735789000988007,0.0865166410803795,-0.660980641841888,-0.745398938655853,0.156882837414742,-0.664972007274628,-0.730205535888672,-0.0160439070314169,-0.679192125797272,-0.733785212039948,0.209098160266876,-0.656581580638886,-0.724692165851593,0.1546411216259,-0.650507986545563,-0.743589639663696,-0.023505374789238,-0.680000960826874,-0.73283439874649,-0.016044344753027,-0.679210603237152,-0.733768105506897,0.206554561853409,-0.690578997135162,-0.693134903907776,-0.0160638429224491,-0.680036067962646,-0.733002722263336,0.0567078366875649,-0.687345623970032,-0.724113404750824,-0.016055166721344,-0.679668724536896,-0.733343541622162,-0.0233655404299498,-0.680590271949768,-0.732291579246521,-0.157366454601288,-0.690779626369476,-0.705733180046082,0.0558184906840324,-0.690459549427032,-0.721214175224304,-0.0160416960716248,-0.67909848690033,-0.73387199640274,-0.111283324658871,-0.658296406269073,-0.744487643241882,-0.1139852181077,-0.676006376743317,-0.728026628494263,-0.0160751212388277,-0.680513441562653,-0.732559263706207,-0.159572020173073,-0.671646952629089,-0.723482668399811,-0.164374679327011,-0.656085550785065,0.736568212509155,0.0118542304262519,-0.658207058906555,0.752743601799011,-0.209704279899597,-0.652136623859406,0.728520452976227,-0.161390349268913,-0.675554692745209,0.719429731369019,0.0166750177741051,-0.661899089813232,0.749407529830933,0.0117939012125134,-0.662563800811768,0.748912692070007,-0.208213150501251,-0.628576993942261,0.749358594417572,0.0117196477949619,-0.667856693267822,0.744197607040405,-0.0667814984917641,-0.657676935195923,0.750334143638611,0.0118145057931542,-0.661081671714783,0.750221073627472,0.0162930097430944,-0.66037917137146,0.750755548477173,0.15475170314312,-0.631796419620514,0.759529709815979,-0.0651748925447464,-0.651626408100128,0.755734920501709,0.0117422034963965,-0.666256964206696,0.745629847049713,0.1039107888937,-0.678326904773712,0.727375566959381,
- 0.107560276985168,-0.649260461330414,0.752921998500824,0.0119198020547628,-0.653413593769073,0.756907403469086,0.156214699149132,-0.644820928573608,0.748199820518494,-0.154012978076935,0.551979601383209,0.819511234760284,0.0133476015180349,0.565048515796661,0.824949741363525,-0.209830448031425,0.544010102748871,0.812418699264526,-0.151913240551949,0.536990225315094,0.829797446727753,0.0153241455554962,0.56608122587204,0.824207067489624,0.0133661748841405,0.565834760665894,0.824410319328308,-0.207733750343323,0.574078142642975,0.792010843753815,0.0131849870085716,0.558164477348328,0.82962554693222,-0.061449907720089,0.56671679019928,0.821617901325226,0.0133751938119531,0.56621652841568,0.824148058891296,0.015236422419548,0.566493928432465,0.823925077915192,0.154536947607994,0.581464052200317,0.798760294914246,-0.0599139407277107,0.572819769382477,0.817488849163055,0.0132183190435171,0.559575498104095,0.828673899173737,0.112600028514862,0.536476254463196,0.836369812488556,0.116440415382385,0.564287483692169,0.81732577085495,0.0134225888177752,0.568222939968109,0.822765171527863,0.156521633267403,0.561101615428925,0.812813580036163,-0.111751198768616,0.808374404907227,-0.577964067459106,0.0196064952760935,0.830008268356323,-0.557406365871429,0.0548761002719402,0.833259046077728,-0.550152599811554,-0.113567344844341,0.814904391765594,-0.568360328674316,-0.173062801361084,0.803847968578339,-0.569102585315704,0.0195764135569334,0.828734815120697,-0.559298992156982,0.055155772715807,0.832526445388794,-0.551232814788818,0.0195975340902805,0.829628884792328,-0.557971179485321,0.201493561267853,0.832801222801209,-0.515599131584167,0.0195524841547012,0.827721774578094,-0.560797989368439,-0.172355070710182,0.828372180461884,-0.53300404548645,-0.0767434984445572,0.831966459751129,-0.549492597579956,0.204073131084442,0.810732007026672,-0.548696517944336,0.0196071956306696,0.830038011074066,-0.557362079620361,0.114031054079533,0.82376354932785,-0.555347084999084,0.111598998308182,0.812055706977844,-0.572809934616089,0.0195397678762674,0.827183425426483,-0.561592161655426,
- -0.0758372396230698,0.835144877433777,-0.544776797294617,0.154648005962372,0.035741463303566,0.987322926521301,-0.0160937085747719,0.0463056862354279,0.998797655105591,0.204104825854301,0.0324277058243752,0.978411912918091,0.153129070997238,0.0231479462236166,0.987935125827789,-0.021555108949542,0.0541174560785294,0.998301923274994,-0.0161424446851015,0.0531817451119423,0.998454391956329,0.202196061611176,0.0776329860091209,0.976263225078583,-0.0161006506532431,0.0472784414887428,0.998752057552338,0.0528372675180435,0.0571284592151642,0.996967673301697,-0.0161451455205679,0.0535657815635204,0.998433828353882,-0.0214551724493504,0.0546336472034454,0.998275995254517,-0.166276678442955,0.0831830576062202,0.982564330101013,0.0518976077437401,0.0619431175291538,0.996729493141174,-0.0160972457379103,0.0468009896576405,0.998774528503418,-0.120350994169712,0.023107323795557,0.992462456226349,-0.123387485742569,0.0571812577545643,0.990709841251373,-0.016166040673852,0.0565489269793034,0.998269021511078,-0.168607383966446,0.057250089943409,0.98401927947998,0.165581122040749,-0.54154896736145,-0.824201345443726,-0.0131360273808241,-0.556091785430908,-0.831017136573792,0.210393577814102,-0.535040199756622,-0.8182093501091,0.163364246487617,-0.524567127227783,-0.83554869890213,-0.0173280518501997,-0.556607246398926,-0.830595076084137,-0.0131356455385685,-0.556075692176819,-0.831027865409851,0.207762628793716,-0.573693752288818,-0.792281568050385,-0.0131681822240353,-0.557453036308289,-0.830104053020477,0.050792507827282,-0.565070927143097,-0.823477327823639,-0.0131467552855611,-0.556545972824097,-0.830712795257568,-0.0172128155827522,-0.557154417037964,-0.830230534076691,-0.161636143922806,-0.572553336620331,-0.803776443004608,0.0496778264641762,-0.569460093975067,-0.820516586303711,-0.0131780840456486,-0.557872235774994,-0.829822182655334,-0.11470066010952,-0.534205138683319,-0.837537229061127,-0.117711648344994,-0.558301687240601,-0.821244895458221,-0.0132815334945917,-0.562251627445221,-0.826859593391418,-0.163436576724052,-0.55461049079895,-0.815901815891266,
- 0.115401074290276,0.836681604385376,-0.53539377450943,-0.0053438157774508,0.85610568523407,-0.516773402690887,-0.040429662913084,0.859296262264252,-0.509877800941467,0.118299506604671,0.846225202083588,-0.519526839256287,0.182570219039917,0.834163904190063,-0.520421802997589,-0.00547238998115063,0.85916543006897,-0.511668682098389,-0.0407133251428604,0.858596503734589,-0.511032819747925,-0.00532970437780023,0.855768144130707,-0.517331957817078,-0.193623840808868,0.857881486415863,-0.475971788167953,-0.0056335711851716,0.862964630126953,-0.505232930183411,0.181039229035378,0.860726773738861,-0.475788146257401,0.0876879319548607,0.865724444389343,-0.492779821157455,-0.195259854197502,0.841669619083405,-0.5034539103508,-0.00554380193352699,0.860853731632233,-0.508822321891785,-0.0947470664978027,0.855762302875519,-0.508619546890259,-0.0933877304196358,0.850086092948914,-0.518297553062439,-0.00562913622707129,0.862860679626465,-0.505410492420197,0.086648017168045,0.868817269802094,-0.487492471933365,0.156302124261856,0.706232786178589,-0.690510630607605,-0.0111348377540708,0.708094000816345,-0.706030428409576,0.206962078809738,0.701645016670227,-0.681807160377502,0.153933495283127,0.719550669193268,-0.677164137363434,-0.0115344524383545,0.707873642444611,-0.706244945526123,-0.0111348414793611,0.707926094532013,-0.706198811531067,0.205588489770889,0.676828026771545,-0.706850290298462,-0.0111342966556549,0.714076459407806,-0.699979186058044,0.0624880492687225,0.705311894416809,-0.706137776374817,-0.0111348424106836,0.707853853702545,-0.706271171569824,-0.011513464152813,0.70779675245285,-0.706322371959686,-0.153927817940712,0.678758502006531,-0.71804815530777,0.0607959255576134,0.699347615242004,-0.712191581726074,-0.0111345741897821,0.712013959884644,-0.702077031135559,-0.10893028229475,0.72302907705307,-0.682175397872925,-0.111848793923855,0.700188100337982,-0.705142915248871,-0.0111348144710064,0.70526260137558,-0.708858788013458,-0.156094551086426,0.695663452148438,-0.701203882694244,0.165635421872139,0.923546969890594,-0.345869779586792,
- -0.0101829133927822,0.932687103748322,-0.360542833805084,0.210526943206787,0.916451811790466,-0.340285956859589,0.16314697265625,0.930741906166077,-0.327265381813049,-0.0139016229659319,0.932370126247406,-0.361237972974777,-0.010183404199779,0.93264776468277,-0.360644489526749,0.208790376782417,0.903404355049133,-0.374522626399994,-0.0101484842598438,0.935392796993256,-0.353464692831039,0.0644011944532394,0.929712057113647,-0.362612843513489,-0.0101904850453138,0.932078540325165,-0.362113058567047,-0.0136017687618732,0.931788802146912,-0.362746030092239,-0.158017307519913,0.909073352813721,-0.38550791144371,0.0634391754865646,0.927908003330231,-0.367372125387192,-0.0101452153176069,0.935644686222076,-0.352797567844391,-0.108888268470764,0.937657713890076,-0.330062687397003,-0.112233459949493,0.924741387367249,-0.363671511411667,-0.0102038830518723,0.930989325046539,-0.364903837442398,-0.160301297903061,0.918388187885284,-0.361754953861237,0.100192360579968,0.0720493346452713,0.99235600233078,-0.0149912144988775,0.0468474887311459,0.998789548873901,-0.0485017672181129,0.0393841303884983,0.998046398162842,0.10308575630188,0.0536537654697895,0.993224382400513,0.174437418580055,0.0613572746515274,0.982754766941071,-0.0150970043614507,0.0404092855751514,0.999069154262543,-0.0487766526639462,0.0407079122960567,0.997979819774628,-0.0149803562089801,0.0475060231983662,0.998758614063263,-0.198316752910614,0.00989754125475883,0.980087995529175,-0.0152117423713207,0.0333812944591045,0.999326944351196,0.173549234867096,0.00950233638286591,0.984779417514801,0.0754817947745323,0.0220521260052919,0.996903300285339,-0.200304299592972,0.0406033769249916,0.978892087936401,-0.015145436860621,0.0374486036598682,0.999183773994446,-0.106884457170963,0.039174035191536,0.993499517440796,-0.105541527271271,0.0507823303341866,0.993117392063141,-0.0152107682079077,0.0334411449730396,0.999324977397919,0.0744734704494476,0.015968007966876,0.997095108032227,0.152273416519165,0.595984220504761,0.788426101207733,-0.0172759164124727,0.610710918903351,0.791665136814117,
- 0.20822112262249,0.587172091007233,0.782223045825958,0.149604722857475,0.57878041267395,0.801643192768097,-0.0247843042016029,0.609873592853546,0.792111158370972,-0.0172834787517786,0.60892927646637,0.793036162853241,0.207092434167862,0.609609186649323,0.765172898769379,-0.0173304621130228,0.597284913063049,0.801841855049133,0.0612219795584679,0.605151832103729,0.793752610683441,-0.0172846093773842,0.608660697937012,0.793242335319519,-0.0248066633939743,0.609780311584473,0.792182207107544,-0.155927911400795,0.623511910438538,0.76610666513443,0.0590888038277626,0.613741934299469,0.787292420864105,-0.0173151418566704,0.601198613643646,0.798912107944489,-0.119275733828545,0.578673183917999,0.806790411472321,-0.122473239898682,0.60519003868103,0.786603689193726,-0.0172841716557741,0.6087646484375,0.79316258430481,-0.15840420126915,0.602400243282318,0.782318413257599,0.117167569696903,-0.862412393093109,-0.492459774017334,-0.00819820910692215,-0.853769719600677,-0.520586252212524,-0.0449855923652649,-0.848545134067535,-0.527207255363464,0.119906075298786,-0.854062139987946,-0.506162643432617,0.182328373193741,-0.849690139293671,-0.494755625724792,-0.00823623221367598,-0.852292537689209,-0.523000717163086,-0.0453728213906288,-0.849469006061554,-0.525684058666229,-0.00818278454244137,-0.854366302490234,-0.519606828689575,-0.191196218132973,-0.81820410490036,-0.542204856872559,-0.00815896689891815,-0.855284512042999,-0.5180943608284,0.181605726480484,-0.829434335231781,-0.528259575366974,0.0890963301062584,-0.845988988876343,-0.525703728199005,-0.193612083792686,-0.837795257568359,-0.510503172874451,-0.00822919141501188,-0.852566838264465,-0.522553622722626,-0.101064100861549,-0.848897933959961,-0.518804728984833,-0.0988296344876289,-0.859957218170166,-0.500705897808075,-0.00815495103597641,-0.855439126491547,-0.517839372158051,0.0880831554532051,-0.842668235301971,-0.531179368495941,0.160156548023224,-0.84199583530426,-0.515162944793701,-0.0161949973553419,-0.857177257537842,-0.514766991138458,0.206252530217171,-0.833516478538513,-0.512552678585052,
- 0.157816901803017,-0.831673800945282,-0.532365202903748,-0.0205123368650675,-0.857499063014984,-0.51407665014267,-0.0161960441619158,-0.8572056889534,-0.514719605445862,0.20383021235466,-0.857037603855133,-0.47322279214859,-0.0162161458283663,-0.857752561569214,-0.513807117938995,0.0568286739289761,-0.862306237220764,-0.50318843126297,-0.0162079315632582,-0.857529163360596,-0.514180123806,-0.0203866250813007,-0.857872009277344,-0.513458847999573,-0.156307399272919,-0.860512912273407,-0.484856277704239,0.0559391416609287,-0.864486813545227,-0.499533116817474,-0.0161915998905897,-0.85708475112915,-0.514921069145203,-0.110726982355118,-0.840218961238861,-0.530821681022644,-0.113264590501785,-0.852570414543152,-0.510191023349762,-0.0162286460399628,-0.858092367649078,-0.513239026069641,-0.158410862088203,-0.847204387187958,-0.507100164890289,0.117592222988606,-0.908229172229767,-0.401611596345901,-0.00677652377635241,-0.902656137943268,-0.430309265851974,-0.0385368876159191,-0.898870706558228,-0.43651619553566,0.121943801641464,-0.896704614162445,-0.425500363111496,0.183405786752701,-0.891259491443634,-0.414751589298248,-0.00696774292737246,-0.896765291690826,-0.442451655864716,-0.0387746430933475,-0.899343550205231,-0.435519993305206,-0.00676903082057834,-0.902882814407349,-0.429833471775055,-0.193155586719513,-0.868538022041321,-0.456434905529022,-0.00690493267029524,-0.898722589015961,-0.43846321105957,0.182620838284492,-0.873564422130585,-0.451148599386215,0.0818853229284287,-0.891066372394562,-0.446425259113312,-0.195959329605103,-0.886113226413727,-0.420004040002823,-0.00678491778671741,-0.902401745319366,-0.430842250585556,-0.0967569500207901,-0.898753523826599,-0.427644908428192,-0.0959191024303436,-0.902036488056183,-0.420868068933487,-0.00689671887084842,-0.898976922035217,-0.437941640615463,0.0810419172048569,-0.888703405857086,-0.451263219118118,0.105821296572685,-0.616190552711487,0.780455589294434,-0.0211917329579592,-0.641509115695953,0.766822636127472,-0.0517675802111626,-0.645987987518311,0.761590242385864,
- 0.107575371861458,-0.624737501144409,0.773389041423798,0.169946104288101,-0.613578736782074,0.77112877368927,-0.0211610533297062,-0.639709413051605,0.768325626850128,-0.0521343946456909,-0.644658505916595,0.762690901756287,-0.0211759265512228,-0.640581429004669,0.767598330974579,-0.199727311730385,-0.655215501785278,0.728561341762543,-0.0211290493607521,-0.637835502624512,0.76988273859024,0.169189408421516,-0.646454036235809,0.743957102298737,0.0752004384994507,-0.645169973373413,0.760329246520996,-0.202200308442116,-0.627476632595062,0.751922965049744,-0.021220650523901,-0.643208563327789,0.765397012233734,-0.108230106532574,-0.638332366943359,0.762114286422729,-0.105552926659584,-0.62086695432663,0.77677720785141,-0.0211136974394321,-0.636937916278839,0.770625948905945,0.0743343755602837,-0.649388790130615,0.756814777851105,0.155880361795425,-0.759219169616699,-0.631892144680023,-0.0132837919518352,-0.773547112941742,-0.633599698543549,0.208147540688515,-0.750197947025299,-0.627596616744995,0.153723478317261,-0.746715128421783,-0.647136569023132,-0.0169370304793119,-0.773650884628296,-0.63338565826416,-0.0132761327549815,-0.77331668138504,-0.633881092071533,0.206147074699402,-0.773427844047546,-0.599426925182343,-0.0131189301609993,-0.768576085567474,-0.639623999595642,0.06435277312994,-0.774685263633728,-0.629063963890076,-0.0133040565997362,-0.77415657043457,-0.632854461669922,-0.0166996084153652,-0.774526715278625,-0.632320642471313,-0.15301613509655,-0.781706988811493,-0.604582726955414,0.0631847307085991,-0.778293490409851,-0.624713659286499,-0.0131124025210738,-0.768378734588623,-0.639861047267914,-0.114428758621216,-0.747874855995178,-0.653903186321259,-0.118192762136459,-0.770051658153534,-0.626937747001648,-0.0133492201566696,-0.775513589382172,-0.63118976354599,-0.154962673783302,-0.766086101531982,-0.62377792596817,0.157855570316315,0.315905183553696,0.935566961765289,-0.0174605287611485,0.329495996236801,0.943995475769043,0.202247709035873,0.310818046331406,0.928702414035797,0.155516281723976,0.297768324613571,0.941885769367218,
- -0.0246706642210484,0.331408202648163,0.943164885044098,-0.0174623727798462,0.33027383685112,0.943723678588867,0.200605347752571,0.344958066940308,0.916930437088013,-0.0174422916024923,0.322040349245071,0.946565210819244,0.0525361858308315,0.33113306760788,0.942120373249054,-0.0174633078277111,0.330670744180679,0.943584561347961,-0.024553507566452,0.331975609064102,0.942968308925629,-0.165376752614975,0.35430920124054,0.92038881778717,0.0512016825377941,0.337853163480759,0.939805209636688,-0.0174465123564005,0.323728233575821,0.945989310741425,-0.120650596916676,0.299433469772339,0.946458160877228,-0.123770140111446,0.331724971532822,0.935221672058105,-0.0174693074077368,0.333245605230331,0.942678213119507,-0.167800590395927,0.329972892999649,0.928956866264343,0.159605354070663,-0.751219809055328,-0.640464603900909,-0.0130387227982283,-0.766149401664734,-0.64253032207489,0.208718940615654,-0.742687940597534,-0.636279165744781,0.157527610659599,-0.738508284091949,-0.655584156513214,-0.0188157167285681,-0.766663253307343,-0.641773641109467,-0.0130380745977163,-0.766129732131958,-0.642553687095642,0.206249892711639,-0.772331655025482,-0.60080361366272,-0.0130737964063883,-0.767211139202118,-0.641261339187622,0.0587425455451012,-0.773118674755096,-0.631535351276398,-0.0130500290542841,-0.766491830348969,-0.642121613025665,-0.0186957474797964,-0.767112493515015,-0.641240060329437,-0.158658862113953,-0.774361550807953,-0.612528800964355,0.0574958622455597,-0.776886761188507,-0.627009689807892,-0.0130846193060279,-0.767538607120514,-0.640869140625,-0.119330003857613,-0.74581253528595,-0.65538078546524,-0.1224150583148,-0.76509416103363,-0.632175266742706,-0.0131959319114685,-0.770900726318359,-0.636818766593933,-0.160413399338722,-0.760882318019867,-0.628749251365662,0.150356441736221,0.84686940908432,0.510103285312653,-0.0175624769181013,0.861436367034912,0.50756174325943,0.208517029881477,0.83601039648056,0.507550358772278,0.147809103131294,0.83591228723526,0.528585910797119,-0.0207330081611872,0.860542416572571,0.508956849575043,
- -0.0175597593188286,0.860311925411224,0.509465515613556,0.207344233989716,0.850516140460968,0.483353495597839,-0.0175395086407661,0.852730691432953,0.522056221961975,0.0616609156131744,0.857050120830536,0.511530160903931,-0.0175593476742506,0.860144257545471,0.509748458862305,-0.0207768231630325,0.860425412654877,0.50915265083313,-0.159421280026436,0.863671720027924,0.478180050849915,0.0595316290855408,0.862636089324951,0.502309560775757,-0.0175466313958168,0.855259478092194,0.517902970314026,-0.117843151092529,0.837630748748779,0.533373892307281,-0.120848849415779,0.854582726955414,0.505058288574219,-0.0175594314932823,0.860178470611572,0.509690701961517,-0.161848068237305,0.849774360656738,0.501685917377472,0.165573745965958,0.16611784696579,-0.972106039524078,-0.00651899864897132,0.159296527504921,-0.987209320068359,0.215223103761673,0.16718016564846,-0.962148606777191,0.163250893354416,0.185702964663506,-0.968949735164642,-0.013336431235075,0.158332407474518,-0.987295806407928,-0.00651726871728897,0.159485563635826,-0.98717874288559,0.213064432144165,0.121379062533379,-0.969469249248505,-0.00653485860675573,0.157560676336288,-0.98748767375946,0.0626671984791756,0.147005319595337,-0.987148642539978,-0.00652183732017875,0.15898609161377,-0.987259387969971,-0.0132132396101952,0.157672211527824,-0.987403094768524,-0.155386060476303,0.127981930971146,-0.979528367519379,0.0618197321891785,0.142861768603325,-0.98781019449234,-0.00652529066428542,0.15860815346241,-0.987320065498352,-0.102247789502144,0.179360955953598,-0.978455424308777,-0.104523628950119,0.156257688999176,-0.982170283794403,-0.00653488375246525,0.157557904720306,-0.987488150596619,-0.157785266637802,0.154907464981079,-0.975247442722321,0.1578468978405,-0.975013375282288,-0.156311973929405,-0.0131939277052879,-0.988494515419006,-0.150680109858513,0.208555772900581,-0.965309083461761,-0.157108217477798,0.15523236989975,-0.971519231796265,-0.179034426808357,-0.0190327800810337,-0.988034963607788,-0.153051480650902,-0.0131333991885185,-0.987981855869293,-0.154011055827141,
- 0.206862270832062,-0.970064878463745,-0.127209380269051,-0.0129420459270477,-0.9862961769104,-0.164476215839386,0.0560849383473396,-0.986532151699066,-0.153651371598244,-0.0131603572517633,-0.988211393356323,-0.152528703212738,-0.0187506154179573,-0.988285601139069,-0.151459664106369,-0.161576628684998,-0.979236543178558,-0.122429333627224,0.0548762008547783,-0.987497329711914,-0.147775262594223,-0.0129543067887425,-0.986407101154327,-0.163808614015579,-0.108725614845753,-0.976684093475342,-0.185113102197647,-0.112460136413574,-0.982169210910797,-0.150653749704361,-0.0131791951134801,-0.988370656967163,-0.151491776108742,-0.163773998618126,-0.975084662437439,-0.149626091122627,0.117933720350266,-0.992412805557251,-0.0347620211541653,-0.00836086086928844,-0.997920691967011,-0.0639086216688156,-0.0413012728095055,-0.996596693992615,-0.0713391751050949,0.119465008378029,-0.991855144500732,-0.0441756844520569,0.180843412876129,-0.982844591140747,-0.0362234525382519,-0.00833197683095932,-0.998163819313049,-0.0599972456693649,-0.0415472947061062,-0.996668457984924,-0.0701851770281792,-0.00835675373673439,-0.997956275939941,-0.0633514672517776,-0.191209733486176,-0.976430773735046,-0.100108750164509,-0.0083411131054163,-0.998088777065277,-0.0612324923276901,0.180351302027702,-0.980170011520386,-0.0820981860160828,0.0767381116747856,-0.994525671005249,-0.0709220543503761,-0.194011986255646,-0.979151248931885,-0.0601849853992462,-0.00836238358169794,-0.99790757894516,-0.0641151070594788,-0.0941913574934006,-0.993585407733917,-0.0625781118869781,-0.092074066400528,-0.994783401489258,-0.0439143031835556,-0.00833086669445038,-0.99817281961441,-0.0598472133278847,0.07602608948946,-0.994247555732727,-0.0754453465342522,-0.155817046761513,0.939590692520142,0.304779291152954,0.0102734882384539,0.95352029800415,0.301153779029846,-0.209175258874893,0.929381787776947,0.304130107164383,-0.153812646865845,0.934042930603027,0.322343707084656,0.0146298445761204,0.953855514526367,0.299909442663193,0.010284973308444,0.953695058822632,0.300599277019501,
- -0.207055196166039,0.940431237220764,0.269661694765091,0.0101207289844751,0.951169490814209,0.308503210544586,-0.064632922410965,0.952739834785461,0.296832680702209,0.0102924359962344,0.953808605670929,0.300238907337189,0.0145431105047464,0.954001307487488,0.299449801445007,0.154089406132698,0.950342953205109,0.270379215478897,-0.0630547404289246,0.955073237419128,0.2895847260952,0.0101593332365155,0.951767981052399,0.306650340557098,0.111535891890526,0.938269555568695,0.327429443597794,0.11528491973877,0.948353052139282,0.295526534318924,0.0103521589189768,0.954712390899658,0.297350287437439,0.155977070331573,0.943015992641449,0.293925195932388,-0.105115048587322,0.28094482421875,-0.953950107097626,0.0198410339653492,0.309074997901917,-0.950830698013306,0.0558979399502277,0.316261440515518,-0.947023868560791,-0.107175074517727,0.293349236249924,-0.949978888034821,-0.177223578095436,0.282591134309769,-0.942726910114288,0.019839271903038,0.308909267187119,-0.950884580612183,0.0562129057943821,0.314856439828873,-0.947473287582397,0.0198325775563717,0.308279782533646,-0.951088964939117,0.200332790613174,0.336720705032349,-0.920046806335449,0.0198081843554974,0.305991590023041,-0.951828122138977,-0.176542684435844,0.323932230472565,-0.929462552070618,-0.0730652213096619,0.315998613834381,-0.945942044258118,0.202922835946083,0.300510436296463,-0.93194192647934,0.0198535360395908,0.310252904891968,-0.950446724891663,0.112212993204594,0.306667417287827,-0.945179045200348,0.10984792560339,0.287031948566437,-0.95160186290741,0.0198021456599236,0.305426567792892,-0.952009677886963,-0.0721435844898224,0.321519523859024,-0.944150686264038,-0.15331469476223,-0.642012119293213,-0.751209139823914,0.0162817128002644,-0.657055675983429,-0.753666162490845,-0.199891328811646,-0.634489357471466,-0.746637046337128,-0.151096075773239,-0.627898812294006,-0.763487458229065,0.0240331888198853,-0.658480942249298,-0.752213537693024,0.0162862632423639,-0.657568097114563,-0.753219127655029,-0.197818845510483,-0.666544377803802,-0.718739449977875,
- 0.0162757895886898,-0.656389057636261,-0.754246890544891,-0.0512282252311707,-0.662957966327667,-0.74690192937851,0.0162844192236662,-0.657360553741455,-0.753400266170502,0.0240436159074306,-0.658439755439758,-0.752249419689178,0.165622502565384,-0.67085736989975,-0.72285521030426,-0.0498907789587975,-0.668117940425873,-0.742380857467651,0.0162880774587393,-0.657772719860077,-0.753040373325348,0.120032660663128,-0.635420918464661,-0.762779474258423,0.122547775506973,-0.655873119831085,-0.744857370853424,0.0163075644522905,-0.659975051879883,-0.75111049413681,0.168063133955002,-0.651796400547028,-0.739537954330444,0.164359614253044,-0.934773504734039,-0.314935505390167,-0.0100587671622634,-0.950202584266663,-0.311470866203308,0.20974899828434,-0.925883710384369,-0.314236760139465,0.162216439843178,-0.928431451320648,-0.334216743707657,-0.016683790832758,-0.950335562229156,-0.310779601335526,-0.0100511852651834,-0.950083673000336,-0.311833411455154,0.207084909081459,-0.940293371677399,-0.270118802785873,-0.0101037519052625,-0.950905323028564,-0.309317082166672,0.0573693439364433,-0.952603757381439,-0.298755645751953,-0.0100607089698315,-0.950232923030853,-0.311377882957459,-0.0165691245347261,-0.950535655021667,-0.310173571109772,-0.157133206725121,-0.946821510791779,-0.280781656503677,0.056154478341341,-0.954387545585632,-0.293242365121841,-0.0101186549291015,-0.951137185096741,-0.308602601289749,-0.113845750689507,-0.937166571617126,-0.329784750938416,-0.116880252957344,-0.946021676063538,-0.30229464173317,-0.0102090872824192,-0.952535033226013,-0.304257959127426,-0.158848121762276,-0.940442383289337,-0.300558596849442,0.154825270175934,0.948961853981018,0.274773806333542,-0.0172815732657909,0.963118076324463,0.268523454666138,0.208281695842743,0.938599288463593,0.275045573711395,0.150386899709702,0.938701868057251,0.310197919607162,-0.023861788213253,0.958517551422119,0.284033089876175,-0.0173371098935604,0.958318293094635,0.285176157951355,0.206390887498856,0.950771808624268,0.2311622351408,-0.0172807462513447,0.963184416294098,0.268285930156708,
- 0.0596088916063309,0.964550614356995,0.257078051567078,-0.0173318050801754,0.958809852600098,0.283519446849823,-0.0235094521194696,0.959042370319366,0.28228548169136,-0.163895770907402,0.953973710536957,0.251142382621765,0.0583712086081505,0.966259121894836,0.250870853662491,-0.0172780901193619,0.963395714759827,0.267525911331177,-0.119774013757706,0.950245261192322,0.287555515766144,-0.121659860014915,0.955762982368469,0.267798602581024,-0.0172897204756737,0.962458908557892,0.270876497030258,-0.165297403931618,0.9498011469841,0.265621036291122,0.171560183167458,-0.0981144532561302,-0.980275869369507,-0.0086844377219677,-0.108909904956818,-0.994013726711273,0.217085480690002,-0.0948128625750542,-0.971537113189697,0.168746337294579,-0.0745806321501732,-0.982833921909332,-0.0122125744819641,-0.106537505984306,-0.994233727455139,-0.00866361521184444,-0.105944827198982,-0.994334280490875,0.21563421189785,-0.125406295061111,-0.968387961387634,-0.00858331844210625,-0.094603456556797,-0.99547803401947,0.0598261058330536,-0.104531988501549,-0.992720484733582,-0.00867424532771111,-0.107457228004932,-0.994171857833862,-0.0119211245328188,-0.108092896640301,-0.994069337844849,-0.15471051633358,-0.134893581271172,-0.978707492351532,0.058679461479187,-0.110228024423122,-0.992172658443451,-0.0085867689922452,-0.0950877964496613,-0.995431840419769,-0.102606698870659,-0.0731498599052429,-0.992028772830963,-0.106115333735943,-0.107753872871399,-0.988498210906982,-0.00867674313485622,-0.107813037931919,-0.994133353233337,-0.157202586531639,-0.107308253645897,-0.981719017028809,0.161067456007004,-0.982704102993011,0.0913783311843872,-0.0172541104257107,-0.994748175144196,0.100887939333916,0.20920792222023,-0.9738809466362,0.0882504805922508,0.158803671598434,-0.984733581542969,0.0712824463844299,-0.021868409588933,-0.994566023349762,0.101785369217396,-0.017256373539567,-0.994731962680817,0.101047895848751,0.206685245037079,-0.969132423400879,0.134401187300682,-0.0172666516155005,-0.994657635688782,0.101774714887142,0.0571667142212391,-0.991923809051514,0.113222621381283,
- -0.0172656532377005,-0.994664907455444,0.101704068481922,-0.0217325091362,-0.994491398334503,0.102540597319603,-0.156442776322365,-0.97951340675354,0.126804307103157,0.0562716573476791,-0.991479277610779,0.117484286427498,-0.0172472391277552,-0.994797468185425,0.100402288138866,-0.112318873405457,-0.99065113067627,0.0774263292551041,-0.114973552525043,-0.988146960735321,0.101718991994858,-0.0172783564776182,-0.994572341442108,0.102603241801262,-0.15854075551033,-0.982172608375549,0.101003810763359,0.159964770078659,-0.174708858132362,-0.97153902053833,-0.00920316204428673,-0.186363875865936,-0.982437670230865,0.209650874137878,-0.170245841145515,-0.962841033935547,0.15917444229126,-0.168445870280266,-0.972774088382721,-0.0119386557489634,-0.199397459626198,-0.979846060276031,-0.00928288046270609,-0.19896274805069,-0.979963064193726,0.207191437482834,-0.227227464318275,-0.951545834541321,-0.00928830914199352,-0.199828296899796,-0.97978687286377,0.0649509727954865,-0.21032740175724,-0.975471138954163,-0.0092945909127593,-0.200831323862076,-0.979581713676453,-0.0115911206230521,-0.201268821954727,-0.979467451572418,-0.150853291153908,-0.225746780633926,-0.962435364723206,0.0647585988044739,-0.211295604705811,-0.975274562835693,-0.00925842672586441,-0.195075616240501,-0.980744600296021,-0.105993933975697,-0.172158911824226,-0.9793501496315,-0.109867490828037,-0.210531547665596,-0.971393704414368,-0.00935930199921131,-0.211242437362671,-0.977388918399811,-0.15220633149147,-0.209584578871727,-0.965871393680573,-0.152470171451569,0.986924052238464,0.0522854067385197,0.0150198368355632,0.998869180679321,0.0451094880700111,-0.208270788192749,0.976558148860931,0.054383285343647,-0.150468155741692,0.986113131046295,0.0702880248427391,0.0157097522169352,0.998914420604706,0.0438547544181347,0.0150386737659574,0.99891996383667,0.0439641587436199,-0.206316754221916,0.978312373161316,0.0183946844190359,0.0148766860365868,0.998442411422729,0.0537728369235992,-0.0649454444646835,0.997033536434174,0.0413077250123024,0.0150470798835158,0.998942136764526,0.0434526167809963,
- 0.0156198926270008,0.998938143253326,0.0433431155979633,0.159172967076302,0.987130582332611,0.0154008213430643,-0.0633681192994118,0.99742180109024,0.0336805619299412,0.0149025712162256,0.998524844646454,0.0522115901112556,0.111164875328541,0.991000473499298,0.0745691508054733,0.114816553890705,0.99253112077713,0.041222907602787,0.0150816263630986,0.999031007289886,0.0413477122783661,0.161056637763977,0.986092209815979,0.0410233549773693,0.152556732296944,-0.986952126026154,-0.0514964014291763,-0.0150325335562229,-0.998903572559357,-0.0443375706672668,0.208230450749397,-0.976610720157623,-0.0535873845219612,0.150410294532776,-0.98608523607254,-0.0708013847470284,-0.0157986171543598,-0.99889063835144,-0.0443607494235039,-0.0150300916284323,-0.998896956443787,-0.0444860868155956,0.206242516636848,-0.978351175785065,-0.0171180013567209,-0.0148976175114512,-0.998509228229523,-0.0525104813277721,0.0646890699863434,-0.99710088968277,-0.0400668866932392,-0.0150526817888021,-0.998956978321075,-0.0431117378175259,-0.0155621506273746,-0.998953342437744,-0.0430143401026726,-0.159147754311562,-0.987139880657196,-0.0150671871379018,0.0635162144899368,-0.997388005256653,-0.0343959555029869,-0.0148901399224997,-0.998485565185547,-0.0529616288840771,-0.111083388328552,-0.990954339504242,-0.0752993896603584,-0.114820964634418,-0.992532193660736,-0.0411817319691181,-0.0150823090225458,-0.99903279542923,-0.0413061045110226,-0.161053717136383,-0.986094415187836,-0.0409825630486012,0.15738832950592,0.809563279151917,0.565540671348572,-0.0174422524869442,0.825562059879303,0.56404185295105,0.20257805287838,0.801214575767517,0.563042998313904,0.155850812792778,0.802302598953247,0.576212704181671,-0.024987168610096,0.830116033554077,0.557030558586121,-0.0174586027860641,0.829517364501953,0.558207929134369,0.200565919280052,0.826562166213989,0.525897681713104,-0.0174439903348684,0.825974881649017,0.563436985015869,0.0532629638910294,0.830621004104614,0.554284989833832,-0.0174595527350903,0.829751968383789,0.557859241962433,-0.0248683989048004,0.830457627773285,0.5565265417099,
- -0.16184963285923,0.834904849529266,0.526059508323669,0.0523176491260529,0.83334618806839,0.550269901752472,-0.017442598938942,0.825644493103027,0.563921093940735,-0.117140367627144,0.807269811630249,0.578440606594086,-0.120176419615746,0.825948238372803,0.550787746906281,-0.0174656808376312,0.831283748149872,0.55557382106781,-0.164125040173531,0.820940554141998,0.546918213367462,0.159434780478477,-0.985178053379059,-0.0632826089859009,-0.0148410256952047,-0.998325049877167,-0.055919848382473,0.208798378705978,-0.975793123245239,-0.0650470852851868,0.157353714108467,-0.984049439430237,-0.0829853117465973,-0.017714312300086,-0.998314201831818,-0.0552715845406055,-0.0148440012708306,-0.998334944248199,-0.0557407923042774,0.206344053149223,-0.978297591209412,-0.0188658330589533,-0.0148623734712601,-0.998395800590515,-0.0546350404620171,0.0573314614593983,-0.997417807579041,-0.0432536415755749,-0.0148541685193777,-0.998368740081787,-0.0551289655268192,-0.0175973307341337,-0.998352944850922,-0.0546051524579525,-0.160228118300438,-0.986717760562897,-0.0267416909337044,0.0561332292854786,-0.997719943523407,-0.0374692678451538,-0.0148685723543167,-0.998416066169739,-0.054261676967144,-0.111533619463444,-0.990797340869904,-0.0766881555318832,-0.11442656815052,-0.992253303527832,-0.0483731999993324,-0.0149626154452562,-0.998707234859467,-0.0485812574625015,-0.16193351149559,-0.985628604888916,-0.048101581633091,0.152506783604622,0.985202372074127,-0.0782179981470108,-0.0156838558614254,0.995924830436707,-0.088812530040741,0.21046482026577,0.974798560142517,-0.0739749372005463,0.149837180972099,0.987089872360229,-0.0565900430083275,-0.0236830543726683,0.995858430862427,-0.0877787172794342,-0.0156871993094683,0.996137142181396,-0.0863988623023033,0.209267467260361,0.972470343112946,-0.102511271834373,-0.0157048031687737,0.997254967689514,-0.0723607912659645,0.0640371590852737,0.99444854259491,-0.0834948942065239,-0.0156877227127552,0.996170341968536,-0.0860152766108513,-0.0237107202410698,0.99587082862854,-0.0876310244202614,
- -0.155777618288994,0.981258690357208,-0.113423019647598,0.0618545860052109,0.993608891963959,-0.0944216549396515,-0.0156988948583603,0.996879756450653,-0.0773595348000526,-0.123418800532818,0.990948438644409,-0.052810974419117,-0.126609191298485,0.988131582736969,-0.086983434855938,-0.0156871266663074,0.996132493019104,-0.0864524319767952,-0.158282980322838,0.98355907201767,-0.0869368985295296,0.166808530688286,-0.438580602407455,-0.88307523727417,-0.0105862766504288,-0.453019291162491,-0.891437888145447,0.215090572834015,-0.432110905647278,-0.875794589519501,0.163997024297714,-0.417963892221451,-0.893538534641266,-0.0135153532028198,-0.450986176729202,-0.892428636550903,-0.0105767156928778,-0.450558692216873,-0.8926842212677,0.213668406009674,-0.459249645471573,-0.862227082252502,-0.0105341151356697,-0.439797401428223,-0.898035287857056,0.0607265755534172,-0.448475658893585,-0.891729652881622,-0.0105822021141648,-0.451968461275101,-0.891971170902252,-0.0132167618721724,-0.452419608831406,-0.891707241535187,-0.155885845422745,-0.471965700387955,-0.867725849151611,0.0595620572566986,-0.453661531209946,-0.88918137550354,-0.0105352606624365,-0.44008269906044,-0.897895455360413,-0.106493800878525,-0.417777180671692,-0.90228670835495,-0.109920933842659,-0.449730306863785,-0.886374592781067,-0.0105821099132299,-0.45194485783577,-0.891983151435852,-0.158416122198105,-0.447005689144135,-0.88039219379425,0.161281302571297,-0.887090146541595,0.432503581047058,-0.0175754502415657,-0.895015358924866,0.445688933134079,0.212113484740257,-0.87946492433548,0.426086187362671,0.158962458372116,-0.896097600460052,0.414415270090103,-0.0215931218117476,-0.894561767578125,0.446422308683395,-0.0175790749490261,-0.894923746585846,0.445872902870178,0.209572955965996,-0.858458280563354,0.468111842870712,-0.0175900794565678,-0.894644737243652,0.446431785821915,0.0553867593407631,-0.888243675231934,0.456021338701248,-0.0175908394157887,-0.89462548494339,0.446470409631729,-0.0214641336351633,-0.894228458404541,0.44709587097168,-0.160215869545937,-0.870738327503204,0.464914858341217,
- 0.0545179694890976,-0.886382400989532,0.459732711315155,-0.0175653547048569,-0.895270645618439,0.445176512002945,-0.111221596598625,-0.899477601051331,0.422575384378433,-0.113730490207672,-0.888681530952454,0.444196730852127,-0.0176056604832411,-0.894249081611633,0.447223275899887,-0.162409320473671,-0.882659256458282,0.441062152385712,0.164393082261086,-0.522549569606781,-0.836610376834869,-0.0108714597299695,-0.537449300289154,-0.843225955963135,0.205092877149582,-0.516662895679474,-0.831261992454529,0.161440789699554,-0.500596404075623,-0.850494086742401,-0.0137748792767525,-0.532826840877533,-0.846112191677094,-0.0108569590374827,-0.53242814540863,-0.846405625343323,0.203688487410545,-0.542476534843445,-0.815003335475922,-0.0108399037271738,-0.526662111282349,-0.850005626678467,0.0667409896850586,-0.535290956497192,-0.842026889324188,-0.0108569115400314,-0.532411873340607,-0.846415877342224,-0.013763964176178,-0.532876014709473,-0.846081376075745,-0.153327345848084,-0.549639403820038,-0.821210920810699,0.0651611462235451,-0.542172372341156,-0.837736964225769,-0.0108455251902342,-0.528546690940857,-0.848835051059723,-0.106352165341377,-0.506838798522949,-0.855455219745636,-0.108660936355591,-0.526383399963379,-0.843275427818298,-0.0108476495370269,-0.529263019561768,-0.848388493061066,-0.155835062265396,-0.523158729076386,-0.837866544723511,-0.151063352823257,0.941983640193939,-0.299744606018066,0.0148194096982479,0.950444757938385,-0.310540080070496,-0.2150759100914,0.931533515453339,-0.293236553668976,-0.149103134870529,0.947530686855316,-0.282761216163635,0.018446696922183,0.949855923652649,-0.312143296003342,0.0148418266326189,0.95009571313858,-0.311605423688889,-0.213055402040482,0.920043349266052,-0.328827977180481,0.0146462861448526,0.953091204166412,-0.302329063415527,-0.0665688216686249,0.947197437286377,-0.313664734363556,0.0148519612848759,0.949937462806702,-0.312087178230286,0.0183442812412977,0.949674248695374,-0.312701612710953,0.155623465776443,0.929733216762543,-0.333732664585114,-0.0649526044726372,0.944831192493439,-0.32105341553688,
- 0.0146780796349049,0.952611744403839,-0.303834795951843,0.116412974894047,0.953256726264954,-0.278836399316788,0.120291635394096,0.942524135112762,-0.311734110116959,0.0148948021233082,0.949264764785767,-0.314125031232834,0.157572224736214,0.937574863433838,-0.310039460659027,-0.151494279503822,0.940703630447388,-0.303522914648056,0.0148975253105164,0.949221849441528,-0.314254611730576,-0.214872777462006,0.930358707904816,-0.297089815139771,-0.14904560148716,0.947686910629272,-0.282267510890961,0.0185356717556715,0.95001357793808,-0.311658143997192,0.0148313008248806,0.950259864330292,-0.311105132102966,-0.21285043656826,0.918898701667786,-0.332144647836685,0.0147158224135637,0.952038764953613,-0.305623531341553,-0.0658598840236664,0.946166038513184,-0.3169105052948,0.0148453786969185,0.950040221214294,-0.31177431344986,0.0183997061103582,0.949772655963898,-0.312399536371231,0.155649676918983,0.929839909076691,-0.33342319726944,-0.0644305273890495,0.944055438041687,-0.32343190908432,0.0147307654842734,0.951810777187347,-0.306332141160965,0.116704173386097,0.952503859996796,-0.281276881694794,0.119995318353176,0.943399488925934,-0.309190034866333,0.0148417642340064,0.950096726417542,-0.311602413654327,0.157776832580566,0.938386797904968,-0.307468324899673,0.116468876600266,0.211018398404121,-0.970518529415131,-0.00374700431711972,0.237934768199921,-0.971274018287659,-0.0403993166983128,0.245425701141357,-0.968573212623596,0.11778262257576,0.218996614217758,-0.968590617179871,0.189231023192406,0.208775207400322,-0.959481358528137,-0.00367807596921921,0.233557820320129,-0.972335994243622,-0.040680781006813,0.244066804647446,-0.968904793262482,-0.00373557233251631,0.237208843231201,-0.9714515209198,-0.186887577176094,0.267878353595734,-0.945153057575226,-0.00368205457925797,0.23381045460701,-0.972275197505951,0.188265562057495,0.253329992294312,-0.948883593082428,0.0884272307157516,0.244288578629494,-0.965662360191345,-0.189150705933571,0.228852510452271,-0.954907596111298,-0.00374336377717555,0.237703591585159,-0.971330523490906,
- -0.0930742025375366,0.234476625919342,-0.967655897140503,-0.0906644463539124,0.214313954114914,-0.972547948360443,-0.00365555426105857,0.23212768137455,-0.972678422927856,0.0876316353678703,0.248843565583229,-0.964571177959442,0.164555355906487,-0.943316161632538,0.288229554891586,-0.0146019393578172,-0.953755021095276,0.300230413675308,0.215597450733185,-0.93457442522049,0.282999247312546,0.162387773394585,-0.949394285678864,0.268850684165955,-0.0204383824020624,-0.953324317932129,0.301256060600281,-0.0146051207557321,-0.953707456588745,0.300380975008011,0.213505819439888,-0.922570765018463,0.321369618177414,-0.0144816311076283,-0.955527484416962,0.294546574354172,0.0584432780742645,-0.950599074363709,0.304870396852493,-0.0146316112950444,-0.953311502933502,0.30163437128067,-0.0201904606074095,-0.95289933681488,0.3026143014431,-0.161140307784081,-0.932151138782501,0.324234575033188,0.0575195476412773,-0.949316561222076,0.309014111757278,-0.0144548863172531,-0.955915927886963,0.293284893035889,-0.113111332058907,-0.956452131271362,0.269082069396973,-0.116533353924751,-0.946823835372925,0.299907714128494,-0.0146422442048788,-0.953151881694794,0.302137702703476,-0.163525313138962,-0.940516710281372,0.297804981470108,0.117154687643051,0.200380593538284,0.972688257694244,-0.0492887608706951,0.182484775781631,0.981972515583038,0.168545171618462,0.204823821783066,0.964178383350372,0.118212230503559,0.181416690349579,0.976275503635406,-0.0618152096867561,0.182200402021408,0.981316447257996,-0.0492622517049313,0.18233822286129,0.982001125812531,0.160814955830574,0.239717215299606,0.957431077957153,-0.0479895919561386,0.175304815173149,0.983343899250031,0.0180465001612902,0.196678102016449,0.980302095413208,-0.0492674857378006,0.182367160916328,0.981995403766632,-0.0618110187351704,0.182559847831726,0.981249928474426,-0.20062980055809,0.182751134037972,0.962470710277557,0.0150119289755821,0.204432144761086,0.978765606880188,-0.0485376864671707,0.178333312273026,0.982772290706635,-0.146874144673347,0.136081695556641,0.979749917984009,
- -0.155785575509071,0.167420566082001,0.973499476909637,-0.0500539168715477,0.186715796589851,0.981138050556183,-0.198609799146652,0.158948749303818,0.967103660106659,0.189813926815987,-0.407248795032501,-0.893375098705292,0.0675550624728203,-0.406757324934006,-0.911035120487213,0.0375580415129662,-0.405695617198944,-0.913236260414124,0.189812570810318,-0.402657598257065,-0.895454227924347,0.260289549827576,-0.39323303103447,-0.881825983524323,0.0688681453466415,-0.413752108812332,-0.907781004905701,0.0375209785997868,-0.406358897686005,-0.912942826747894,0.067587174475193,-0.406928360462189,-0.910956203937531,-0.124522849917412,-0.39695405960083,-0.90935230255127,0.0676716715097427,-0.4073785841465,-0.910748839378357,0.251300036907196,-0.346251547336578,-0.903857350349426,0.155846655368805,-0.380051523447037,-0.911741614341736,-0.121198415756226,-0.430569499731064,-0.894382953643799,0.0667914748191834,-0.402688324451447,-0.912897169589996,-0.0237542279064655,-0.41800794005394,-0.90813273191452,-0.0180038325488567,-0.436511516571045,-0.899518489837646,0.0677129253745079,-0.407598435878754,-0.910647392272949,0.153967827558517,-0.374858111143112,-0.914207518100739,0.126207992434502,-0.0161193516105413,-0.991872906684875,-0.00610035704448819,-0.0103210220113397,-0.999928116798401,-0.0396847613155842,-0.00881955120712519,-0.99917334318161,0.12613520026207,-0.0108902854844928,-0.991953372955322,0.186611652374268,-0.00713493954390287,-0.982407927513123,-0.00454505020752549,-0.0187687948346138,-0.999813497066498,-0.0397187285125256,-0.0096918186172843,-0.999163866043091,-0.00605032499879599,-0.0105928285047412,-0.999925673007965,-0.189459636807442,-0.00553504284471273,-0.981872975826263,-0.00325560756027699,-0.0257700737565756,-0.999662578105927,0.179499223828316,0.0298787914216518,-0.983304262161255,0.0910529866814613,0.00283232890069485,-0.995842039585114,-0.184418246150017,-0.052801638841629,-0.981428563594818,-0.00472745485603809,-0.017778217792511,-0.999830842018127,-0.0888191014528275,-0.0342399217188358,-0.995459079742432,
- -0.082195445895195,-0.056976743042469,-0.994986176490784,-0.00304514588788152,-0.026912609115243,-0.999633193016052,0.0891257077455521,0.0083305686712265,-0.995985627174377,0.314300060272217,-0.898699462413788,-0.305867493152618,0.152964621782303,-0.940924048423767,-0.302099019289017,0.364290982484818,-0.879829347133636,-0.305274188518524,0.311301320791245,-0.893443167209625,-0.323806673288345,0.146559938788414,-0.942322611808777,-0.300912410020828,0.152970537543297,-0.940967977046967,-0.301959097385406,0.364248216152191,-0.89571076631546,-0.255001157522202,0.153304934501648,-0.943460702896118,-0.293903917074203,0.223151698708534,-0.932876825332642,-0.282744169235229,0.152971506118774,-0.940975189208984,-0.301936417818069,0.14660519361496,-0.942375719547272,-0.300724148750305,0.0133528765290976,-0.962022185325623,-0.272644728422165,0.222451791167259,-0.934335231781006,-0.278447389602661,0.153275445103645,-0.943240284919739,-0.294625997543335,0.0497331321239471,-0.947540402412415,-0.31574335694313,0.0486942939460278,-0.953927993774414,-0.296057939529419,0.153139472007751,-0.942225515842438,-0.29792520403862,0.0104366838932037,-0.955575466156006,-0.294562041759491,0.115926370024681,0.456784605979919,-0.881991505622864,-0.0114370649680495,0.484169095754623,-0.874899804592133,-0.0405223555862904,0.489272236824036,-0.871189177036285,0.118762910366058,0.473058551549912,-0.87298971414566,0.182316690683365,0.462283790111542,-0.867787063121796,-0.0115467505529523,0.488812386989594,-0.872312486171722,-0.040803536772728,0.488084077835083,-0.871842324733734,-0.0114207919687033,0.483480185270309,-0.875280737876892,-0.193998411297798,0.505007565021515,-0.841030299663544,-0.0116692325100303,0.493997484445572,-0.869385123252869,0.180756896734238,0.50748598575592,-0.842487454414368,0.0852684676647186,0.503155529499054,-0.859979033470154,-0.195818468928337,0.477101147174835,-0.856755375862122,-0.0115967812016606,0.490930378437042,-0.871121644973755,-0.0948318988084793,0.486784785985947,-0.86835902929306,-0.0934779196977615,0.476999133825302,-0.873918652534485,
- -0.0116563281044364,0.493451207876205,-0.869695365428925,0.084257647395134,0.508334577083588,-0.857027769088745,0.157060131430626,0.266366720199585,-0.950989484786987,-0.0152046922594309,0.259966462850571,-0.965497970581055,0.207955062389374,0.26673486828804,-0.941067039966583,0.154816791415215,0.284647822380066,-0.946048319339752,-0.00927002355456352,0.260269969701767,-0.965491414070129,-0.0152077227830887,0.259250968694687,-0.96569037437439,0.205669775605202,0.216515511274338,-0.954369425773621,-0.0152326198294759,0.253287106752396,-0.967271327972412,0.0586362704634666,0.2424036860466,-0.968401968479156,-0.0152085926383734,0.25904455780983,-0.965745627880096,-0.00926114525645971,0.260224431753159,-0.965503752231598,-0.152387350797653,0.229133456945419,-0.961392760276794,0.0577767193317413,0.238262787461281,-0.969480633735657,-0.0152277173474431,0.254472881555557,-0.96696001291275,-0.113617867231369,0.274089276790619,-0.954969167709351,-0.115480788052082,0.253675699234009,-0.960371196269989,-0.0152201130986214,0.256300985813141,-0.966477155685425,-0.154530435800552,0.251944988965988,-0.955324113368988,0.164715483784676,0.626943647861481,-0.761452853679657,-0.012261962518096,0.62735778093338,-0.778634607791901,0.208891659975052,0.623681843280792,-0.753249764442444,0.16223156452179,0.64238703250885,-0.749012589454651,-0.019100233912468,0.626071929931641,-0.779531419277191,-0.0122655406594276,0.627075612545013,-0.778861820697784,0.206425070762634,0.582394182682037,-0.786260724067688,-0.0123433750122786,0.620885252952576,-0.783804297447205,0.0610703304409981,0.611392736434937,-0.788967370986938,-0.0122660435736179,0.627035915851593,-0.778893768787384,-0.0190563276410103,0.625892102718353,-0.779676914215088,-0.161397576332092,0.594902217388153,-0.787427544593811,0.0601679868996143,0.607796669006348,-0.791809976100922,-0.0123348403722048,0.621568977832794,-0.783262372016907,-0.109292395412922,0.634632587432861,-0.765046834945679,-0.111029550433159,0.619372189044952,-0.77720695734024,-0.012303926050663,0.62403529882431,-0.781299293041229,
- -0.163700714707375,0.614356756210327,-0.771860003471375,0.152467012405396,-0.838390350341797,0.523311972618103,-0.0193109065294266,-0.843865990638733,0.536206364631653,0.205120354890823,-0.831595540046692,0.516115009784698,0.150408118963242,-0.848415195941925,0.507512629032135,-0.0213714595884085,-0.843165814876556,0.53722870349884,-0.0193251259624958,-0.843379676342011,0.536970436573029,0.202591523528099,-0.803160965442657,0.560258269309998,-0.0194240380078554,-0.839962601661682,0.542296707630157,0.0542412325739861,-0.832509577274323,0.551348924636841,-0.01932836137712,-0.843268930912018,0.537144362926483,-0.0213271379470825,-0.843030333518982,0.537443101406097,-0.157318487763405,-0.818509519100189,0.552533388137817,0.0533532053232193,-0.830202460289001,0.554902970790863,-0.0194044318050146,-0.840644598007202,0.541239440441132,-0.112807944417,-0.847162902355194,0.519219934940338,-0.114928156137466,-0.836349308490753,0.536014437675476,-0.0193745903670788,-0.841678321361542,0.539631605148315,-0.159083440899849,-0.831248879432678,0.532651603221893,0.115283519029617,0.947949349880219,0.29681932926178,-0.00765603082254529,0.945990025997162,0.32410529255867,-0.040225300937891,0.942956447601318,0.330477088689804,0.118120409548283,0.941937029361725,0.314328461885452,0.181781724095345,0.934967160224915,0.304617613554001,-0.00778340455144644,0.944124400615692,0.329497456550598,-0.0404976271092892,0.943391621112823,0.329199284315109,-0.00764028960838914,0.946218192577362,0.323438942432404,-0.197535663843155,0.915040791034698,0.351681590080261,-0.00793748162686825,0.941821336746216,0.336020052433014,0.180208936333656,0.917923152446747,0.353471219539642,0.0828186273574829,0.93458217382431,0.345972985029221,-0.199323818087578,0.925946772098541,0.320769071578979,-0.0078502269461751,0.943131864070892,0.332326292991638,-0.0998775660991669,0.939270436763763,0.328322410583496,-0.0984622687101364,0.943329036235809,0.31691563129425,-0.00792931951582432,0.941944658756256,0.335674524307251,0.0818539708852768,0.93262791633606,0.351433008909225,
- 0.113732382655144,0.0575650855898857,-0.991842329502106,-0.00132322066929191,0.0840245112776756,-0.996462821960449,-0.0368902646005154,0.0919675678014755,-0.995078504085541,0.116656720638275,0.0758026987314224,-0.990275263786316,0.188652634620667,0.0663000121712685,-0.979803323745728,-0.00142272410448641,0.0903429836034775,-0.995909750461578,-0.0371762625873089,0.0906336531043053,-0.995190143585205,-0.00131333514582366,0.083396777510643,-0.996515572071075,-0.190602496266365,0.120321430265903,-0.97426563501358,-0.00154466682579368,0.098086342215538,-0.995176732540131,0.188135236501694,0.118931844830513,-0.974915564060211,0.0873907282948494,0.108313582837582,-0.990268170833588,-0.192727506160736,0.0887563824653625,-0.977229952812195,-0.00147621904034168,0.0937398970127106,-0.995595693588257,-0.0896460562944412,0.0918754860758781,-0.991727113723755,-0.0884577184915543,0.0812018290162086,-0.992764592170715,-0.0015435058157891,0.0980126187205315,-0.995184004306793,0.0864746421575546,0.114251315593719,-0.98968118429184,-0.161510154604912,-0.859322011470795,-0.485263019800186,0.0137918666005135,-0.875783503055573,-0.482507050037384,-0.213915854692459,-0.849021553993225,-0.483117461204529,-0.159195095300674,-0.849888622760773,-0.50234067440033,0.0147270057350397,-0.876100540161133,-0.481903672218323,0.0137957977131009,-0.876033186912537,-0.482053458690643,-0.212256669998169,-0.867170512676239,-0.450513750314713,0.0137281846255064,-0.871739745140076,-0.489776909351349,-0.0682367533445358,-0.875420451164246,-0.478521585464478,0.0137965157628059,-0.87607878446579,-0.481970578432083,0.0147046968340874,-0.876156508922577,-0.481802374124527,0.156450167298317,-0.879008173942566,-0.450408697128296,-0.0664940550923347,-0.879845261573792,-0.470585733652115,0.0137502420693636,-0.873140394687653,-0.48727485537529,0.11047750711441,-0.85718047618866,-0.503027260303497,0.113370284438133,-0.872733771800995,-0.474850535392761,0.0138233695179224,-0.877783954143524,-0.47885724902153,0.158709079027176,-0.867506206035614,-0.471428096294403,0.15104515850544,-0.661135733127594,-0.734904766082764,
- -0.0159333907067776,-0.674513459205627,-0.738090693950653,0.209405094385147,-0.651912152767181,-0.728807270526886,0.149023458361626,-0.647428631782532,-0.747414350509644,-0.0192491244524717,-0.675245046615601,-0.737342238426209,-0.0159422308206558,-0.674887776374817,-0.737748265266418,0.206511333584785,-0.691097617149353,-0.692630708217621,-0.0160712283104658,-0.680348634719849,-0.73271244764328,0.0566008239984512,-0.687721192836761,-0.723765134811401,-0.0159441828727722,-0.674970388412476,-0.737672626972198,-0.0192137639969587,-0.675390183925629,-0.737210273742676,-0.157900109887123,-0.686277985572815,-0.709993004798889,0.0556784421205521,-0.690948486328125,-0.720756709575653,-0.0160539373755455,-0.679616689682007,-0.73339182138443,-0.1170868948102,-0.657349705696106,-0.744434118270874,-0.119321249425411,-0.672738254070282,-0.730195701122284,-0.0160069484263659,-0.677627503871918,-0.735231161117554,-0.159885540604591,-0.668808877468109,-0.726038157939911
- }
- BinormalsW: *3009 {
- 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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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: *9027 {
- a: 0.130685970187187,-0.55597448348999,-0.820861458778381,0.0243154224008322,-0.570630490779877,-0.820846855640411,0.326945841312408,-0.511260092258453,-0.794807851314545,-0.256767719984055,0.0240033715963364,-0.966175138950348,-0.0529400184750557,0.049005463719368,-0.997394502162933,0.0270758345723152,0.0727470368146896,-0.99698281288147,0.050319779664278,-0.740224301815033,-0.670474469661713,0.305726170539856,-0.692785143852234,-0.653131127357483,0.297342747449875,-0.701280653476715,-0.647914171218872,-0.256271779537201,0.0200260393321514,-0.966397285461426,-0.300749629735947,0.0154755329713225,-0.95357757806778,-0.0523389093577862,0.0434720143675804,-0.997682750225067,-0.195405274629593,-0.0216123312711716,-0.980484426021576,-0.0479340255260468,0.00332997622899711,-0.998844981193542,-0.297668516635895,-0.0247368235141039,-0.954348862171173,-0.296101123094559,-0.0430786125361919,-0.954184770584106,-0.312197148799896,-0.0453696846961975,-0.948933362960815,-0.194651260972023,-0.0419828183948994,-0.979973614215851,0.29146084189415,-0.409810334444046,-0.864353001117706,0.00923096295446157,-0.462939649820328,-0.886341750621796,0.0802097469568253,-0.424559146165848,-0.901840329170227,-0.192405238747597,-0.092971570789814,-0.976901590824127,0.0671413317322731,-0.0816851705312729,-0.994394183158875,-0.0374111495912075,-0.0898369178175926,-0.995253622531891,0.0721733942627907,-0.190550625324249,-0.979020774364471,0.219000682234764,-0.181928545236588,-0.958614051342011,0.257086634635925,-0.164590790867805,-0.952269017696381,0.24848011136055,0.0529546998441219,-0.96718841791153,0.210999891161919,0.0657980665564537,-0.975269138813019,0.210214331746101,0.0434370711445808,-0.976689994335175,0.216080322861671,-0.071919210255146,-0.973723232746124,0.396984905004501,-0.0643606632947922,-0.91556578874588,0.259797513484955,-0.0736797153949738,-0.962848126888275,0.404906719923019,0.0376462377607822,-0.913582682609558,0.211413338780403,0.0238042678683996,-0.977106928825378,0.149627849459648,0.0419645793735981,-0.987851440906525,
- 0.215095400810242,-0.0479425489902496,-0.975415647029877,0.0658032819628716,-0.0552272833883762,-0.996303200721741,0.147877871990204,-0.0612269267439842,-0.987108707427979,0.149524658918381,0.0316718742251396,-0.988250613212585,0.377210825681686,0.0297507178038359,-0.925649464130402,0.404052525758743,0.0233808308839798,-0.914436936378479,-0.192854985594749,-0.0836344957351685,-0.977656483650208,0.006671158131212,-0.0749633759260178,-0.997164070606232,0.0666846558451653,-0.07255569845438,-0.995132684707642,0.147118240594864,-0.0895726159214973,-0.985054910182953,0.0666906908154488,-0.0726759433746338,-0.995123386383057,0.00651013059541583,-0.0847970992326736,-0.996376991271973,-0.148922249674797,-0.0656800046563149,-0.98666524887085,0.00697359628975391,-0.056367464363575,-0.998385727405548,-0.19334551692009,-0.0730161219835281,-0.978410124778748,-0.149203598499298,-0.0542749911546707,-0.987315833568573,-0.194207116961479,-0.0530564934015274,-0.979524672031403,-0.311682939529419,-0.0565873272716999,-0.94849967956543,0.00651652598753572,-0.0844076946377754,-0.996410012245178,0.0175506696105003,-0.0784702226519585,-0.996761977672577,0.147125169634819,-0.0893321111798286,-0.98507559299469,0.00696762604638934,-0.0567361824214458,-0.998364984989166,-0.148909255862236,-0.0661887228488922,-0.98663330078125,0.0171853434294462,-0.062237374484539,-0.997913420200348,-0.311681747436523,-0.0566135346889496,-0.948498606681824,-0.167268499732018,-0.0610336847603321,-0.984020411968231,-0.149200275540352,-0.0544149987399578,-0.987308621406555,0.0170689895749092,-0.0571057982742786,-0.998222231864929,-0.149044811725616,-0.0608093440532684,-0.986958920955658,-0.166955098509789,-0.0468905903398991,-0.984848856925964,-0.167432352900505,-0.0691027268767357,-0.983458817005157,-0.311348795890808,-0.0634502395987511,-0.948175072669983,-0.295720040798187,-0.064795009791851,-0.953074753284454,-0.295681178569794,-0.0638599395751953,-0.953149795532227,-0.149137511849403,-0.087452158331871,-0.984941780567169,-0.167428195476532,-0.0688910931348801,-0.983474373817444,
- -0.135949999094009,-0.000781701877713203,-0.990715503692627,0.0169978216290474,-0.0539761260151863,-0.998397648334503,-0.166824892163277,-0.041418269276619,-0.985116243362427,-0.148269042372704,-0.0815242230892181,-0.98558109998703,-0.295483291149139,-0.0591892227530479,-0.953512609004974,-0.215123996138573,-0.0730317309498787,-0.973852157592773,-0.207549288868904,-0.0338478498160839,-0.977638781070709,-0.0103342421352863,-0.0831643119454384,-0.996482253074646,-0.143599167466164,-0.0502075552940369,-0.988361537456512,-0.0109470626339316,-0.0502753928303719,-0.998675405979156,0.0172018781304359,-0.0629679188132286,-0.997867405414581,-0.14102703332901,-0.0333399102091789,-0.989444315433502,-0.0137119963765144,-0.093594454228878,-0.995516002178192,-0.0183070097118616,-0.0840766429901123,-0.996291100978851,-0.14495413005352,-0.059199582785368,-0.987665891647339,0.00735454028472304,-0.0284419767558575,-0.999568402767181,0.103389956057072,-0.0609416328370571,-0.992772221565247,-0.0078846849501133,-0.0362111330032349,-0.999313056468964,0.100308381021023,-0.0838318169116974,-0.991418421268463,0.0172778647392988,-0.0663308650255203,-0.997648060321808,-0.0151023743674159,-0.0693590492010117,-0.997477531433105,0.105964004993439,-0.0414728112518787,-0.993504703044891,0.0120465271174908,-0.0138982534408569,-0.999830961227417,0.196677014231682,-0.0603830255568028,-0.978607296943665,0.147273272275925,-0.0841369405388832,-0.98551082611084,0.0174828488379717,-0.0754426270723343,-0.996996879577637,0.105654656887054,-0.0694730579853058,-0.991973102092743,0.0973875001072884,-0.105128802359104,-0.989678561687469,0.105635337531567,-0.0689895004034042,-0.992008984088898,0.01747384108603,-0.0750408470630646,-0.997027456760406,0.369939804077148,0.103443428874016,-0.92327892780304,0.149871602654457,0.126923069357872,-0.980524897575378,0.0972437933087349,0.102754950523376,-0.989941954612732,0.205148205161095,-0.0172895342111588,-0.978578209877014,0.259448349475861,-0.0275846086442471,-0.965362966060638,0.11019940674305,-0.00870462693274021,-0.99387139081955,
- 0.104188345372677,-0.0343671068549156,-0.993963718414307,0.106780648231506,-0.0352272503077984,-0.993658363819122,0.259484022855759,-0.0324106216430664,-0.965203404426575,0.0993666723370552,0.06468366086483,-0.992946267127991,0.25727990269661,0.0744518116116524,-0.963464558124542,0.373082220554352,0.0741319954395294,-0.924832046031952,0.258897840976715,0.0136268921196461,-0.965808689594269,0.214459344744682,0.0326316729187965,-0.976187765598297,0.298855572938919,0.0139882573857903,-0.954195857048035,0.299401074647903,0.00413810415193439,-0.954118371009827,0.378610044717789,0.0125259356573224,-0.925471544265747,0.259116768836975,0.000773651932831854,-0.965845704078674,0.177073806524277,-0.213643372058868,-0.960729598999023,0.067210927605629,-0.24773582816124,-0.966493487358093,0.359599739313126,-0.148421749472618,-0.921226918697357,-0.314166009426117,0.30279666185379,-0.899785459041595,-0.12029542028904,0.371771425008774,-0.920497179031372,-0.0414464697241783,0.410180270671844,-0.911062180995941,0.129480928182602,-0.450806826353073,-0.883180558681488,0.377808123826981,-0.367597728967667,-0.849784076213837,0.370102524757385,-0.3789142370224,-0.848203003406525,-0.313128560781479,0.29959499835968,-0.901217699050903,-0.35406881570816,0.283760696649551,-0.891131401062012,-0.118805959820747,0.366801172494888,-0.922682106494904,-0.244388312101364,0.276471257209778,-0.92942887544632,-0.107999585568905,0.330768555402756,-0.937511742115021,-0.344488263130188,0.247358545660973,-0.905616700649261,-0.339934855699539,0.230630412697792,-0.911731243133545,-0.355022817850113,0.223868012428284,-0.907657384872437,-0.240357056260109,0.257342159748077,-0.935950577259064,0.306368589401245,-0.0359540656208992,-0.951233744621277,0.0308836493641138,-0.128622099757195,-0.991212785243988,0.0958890989422798,-0.0755793899297714,-0.992518544197083,-0.230344980955124,0.211343809962273,-0.949881672859192,0.0207399539649487,0.271201491355896,-0.962299227714539,-0.0823138281702995,0.24530653655529,-0.965944707393646,0.0446625575423241,0.16589093208313,-0.985132217407227,
- 0.192387998104095,0.192785918712616,-0.962195754051209,0.228247195482254,0.214269325137138,-0.949732542037964,0.1793602257967,0.417403966188431,-0.890844464302063,0.14430595934391,0.427457869052887,-0.892443716526031,0.147144436836243,0.405835300683975,-0.902023434638977,0.171027556061745,0.300450682640076,-0.938338398933411,0.34935051202774,0.317744076251984,-0.881472051143646,0.210656091570854,0.301703423261642,-0.929838299751282,0.340310275554657,0.412705540657043,-0.844904184341431,0.151017472147942,0.389652639627457,-0.908495783805847,0.0799570083618164,0.396577507257462,-0.914512515068054,0.166580036282539,0.321146100759506,-0.932264029979706,0.014940588735044,0.296071469783783,-0.95504903793335,0.0952230021357536,0.301706790924072,-0.948633551597595,0.0815024077892303,0.387387365102768,-0.918307363986969,0.31678694486618,0.405393064022064,-0.857497811317444,0.341764152050018,0.399902552366257,-0.8504558801651,-0.232315734028816,0.22023943066597,-0.947377443313599,-0.0427636094391346,0.267272561788559,-0.962671637535095,0.0187432188540697,0.279792904853821,-0.95987743139267,0.0992480963468552,0.275064796209335,-0.956289291381836,0.0187075845897198,0.279945969581604,-0.959833443164825,-0.0412805899977684,0.258003711700439,-0.96526163816452,-0.200193345546722,0.244931355118752,-0.948647081851959,-0.0455699861049652,0.284812390804291,-0.957499504089355,-0.234684616327286,0.231031611561775,-0.944217920303345,-0.202169820666313,0.254779815673828,-0.945629239082336,-0.238192528486252,0.247221872210503,-0.939226090908051,-0.352674216032028,0.213462308049202,-0.911073386669159,-0.0413421764969826,0.258388638496399,-0.965156018733978,-0.0279748179018497,0.26614311337471,-0.963527500629425,0.0992079600691795,0.275334089994431,-0.956215918064117,-0.0455138087272644,0.284461289644241,-0.957606554031372,-0.200097903609276,0.244457930326462,-0.948789298534393,-0.0311099421232939,0.281898438930511,-0.958939850330353,-0.35266837477684,0.21343669295311,-0.911081671714783,-0.211520612239838,0.246151521801949,-0.945869147777557,
- -0.202142030000687,0.254640728235245,-0.945672631263733,-0.0320675559341908,0.286703854799271,-0.957482516765594,-0.201109483838081,0.249486044049263,-0.947265386581421,-0.213611200451851,0.259937018156052,-0.94170218706131,-0.210332006216049,0.238419517874718,-0.9481121301651,-0.351200819015503,0.207018956542015,-0.91312712430954,-0.331942707300186,0.21085424721241,-0.919431626796722,-0.332062244415283,0.211758688092232,-0.919180572032928,-0.191969379782677,0.225050166249275,-0.955248773097992,-0.210367828607559,0.238651379942894,-0.94804584980011,-0.193578660488129,0.308860391378403,-0.931199550628662,-0.0326646454632282,0.289698421955109,-0.956560432910919,-0.214391320943832,0.265144914388657,-0.940071582794189,-0.19212731719017,0.230887830257416,-0.953822791576386,-0.332651823759079,0.216249614953995,-0.91792094707489,-0.253920912742615,0.223025783896446,-0.941160798072815,-0.252932012081146,0.26250371336937,-0.931191265583038,-0.0517162084579468,0.256315767765045,-0.96520859003067,-0.192841470241547,0.261346042156219,-0.945785582065582,-0.0586635321378708,0.288032442331314,-0.955822110176086,-0.0309430100023746,0.281060427427292,-0.959191203117371,-0.193146020174026,0.277598172426224,-0.94108122587204,-0.0532890632748604,0.245756417512894,-0.967865824699402,-0.060396820306778,0.254228353500366,-0.965256631374359,-0.192654892802238,0.252576559782028,-0.948203146457672,-0.0433675497770309,0.311168879270554,-0.949364721775055,0.0479233153164387,0.295912116765976,-0.954012274742126,-0.0579194016754627,0.302022814750671,-0.951539576053619,0.0486463084816933,0.2733513712883,-0.960683405399323,-0.0302965231239796,0.277814000844955,-0.960157036781311,-0.0596477426588535,0.269055008888245,-0.961275994777679,0.0473021306097507,0.314540863037109,-0.948064625263214,-0.0411370098590851,0.325492531061172,-0.944649338722229,0.143858700990677,0.307799160480499,-0.940512835979462,0.0984798595309258,0.280206680297852,-0.954874932765961,-0.0285602658987045,0.269087880849838,-0.962692081928253,0.054613221436739,0.287594556808472,-0.956193923950195,
- 0.0492916032671928,0.252330720424652,-0.966384887695313,0.054514653980732,0.288046568632126,-0.956063449382782,-0.0286350548267365,0.269463986158371,-0.962584614753723,0.297758936882019,0.47160342335701,-0.830017983913422,0.0665667206048965,0.472672075033188,-0.878720641136169,0.0183744803071022,0.445712596178055,-0.894987523555756,0.145273640751839,0.34944748878479,-0.925625205039978,0.199254974722862,0.344339340925217,-0.917457401752472,0.0461935810744762,0.346237868070602,-0.937008798122406,0.047315701842308,0.320726245641708,-0.945989370346069,0.0470971874892712,0.32054477930069,-0.946061789989471,0.200116872787476,0.339626491069794,-0.919025063514709,0.0264923591166735,0.411663502454758,-0.910950899124146,0.180679634213448,0.43802347779274,-0.880619287490845,0.305545449256897,0.445504367351532,-0.841527104377747,0.1920006275177,0.382631182670593,-0.903730690479279,0.146550551056862,0.396558612585068,-0.906236410140991,0.234271019697189,0.386102318763733,-0.89221203327179,0.236402839422226,0.377226591110229,-0.895440578460693,0.321000307798386,0.389530748128891,-0.86326390504837,0.194313362240791,0.370680153369904,-0.908206224441528,0.135951638221741,-0.890737056732178,-0.433710366487503,0.0240272600203753,-0.904398262500763,-0.426012367010117,0.322203576564789,-0.841431140899658,-0.433795392513275,-0.254430204629898,-0.462383806705475,-0.84939181804657,-0.0520000457763672,-0.45636323094368,-0.888272941112518,0.0332165472209454,-0.434235841035843,-0.900186598300934,0.0496641919016838,-0.976280510425568,-0.210736304521561,0.303476542234421,-0.92728316783905,-0.219198331236839,0.292080640792847,-0.932693779468536,-0.211592078208923,-0.25394281744957,-0.465846419334412,-0.847643911838531,-0.300135165452957,-0.463495790958405,-0.833720922470093,-0.0513915717601776,-0.461432188749313,-0.885685741901398,-0.191059246659279,-0.50947767496109,-0.839004695415497,-0.047043289989233,-0.49682605266571,-0.866574168205261,-0.296958178281784,-0.498636215925217,-0.814357280731201,-0.295352905988693,-0.514362931251526,-0.805107116699219,
- -0.310152143239975,-0.514130890369415,-0.799671828746796,-0.190349042415619,-0.526942789554596,-0.828310668468475,0.29019621014595,-0.787278711795807,-0.544039011001587,0.00914384610950947,-0.843688189983368,-0.536755621433258,0.0843712761998177,-0.819522500038147,-0.566801905632019,-0.188268840312958,-0.568836987018585,-0.800611853599548,0.0685311257839203,-0.567433178424835,-0.820562660694122,-0.0367237292230129,-0.575329899787903,-0.817096590995789,0.0744853019714355,-0.654855370521545,-0.752074718475342,0.221801728010178,-0.636318385601044,-0.738852441310883,0.256765902042389,-0.619039833545685,-0.742200076580048,0.252319037914276,-0.436389803886414,-0.863654494285584,0.211524859070778,-0.430943161249161,-0.877237260341644,0.212484449148178,-0.450046420097351,-0.86735725402832,0.218664899468422,-0.549031913280487,-0.806690573692322,0.402096688747406,-0.512826859951019,-0.758503198623657,0.264067947864532,-0.544534504413605,-0.796084344387054,0.41021853685379,-0.423371613025665,-0.80776059627533,0.213791698217392,-0.46806675195694,-0.857441902160645,0.147353976964951,-0.45858708024025,-0.876347482204437,0.217586994171143,-0.528399467468262,-0.820639908313751,0.0669810324907303,-0.545477986335754,-0.835444390773773,0.145965024828911,-0.546284019947052,-0.824783623218536,0.147284775972366,-0.467450708150864,-0.871663391590118,0.38083615899086,-0.436017572879791,-0.815385043621063,0.409331887960434,-0.436285555362701,-0.801312863826752,-0.188694268465042,-0.561106979846954,-0.805948793888092,0.0085712568834424,-0.563539445400238,-0.826044678688049,0.0680071115493774,-0.55997908115387,-0.825710892677307,0.145318672060966,-0.569398045539856,-0.809115827083588,0.0679445862770081,-0.559091866016388,-0.826317012310028,0.00842143315821886,-0.571541607379913,-0.820529878139496,-0.1534114331007,-0.550181329250336,-0.820832192897797,0.00885412469506264,-0.548166751861572,-0.83632230758667,-0.189170926809311,-0.551998436450958,-0.812103509902954,-0.153713151812553,-0.540274560451508,-0.827330470085144,-0.189934134483337,-0.536242067813873,-0.822416841983795,
- -0.309707552194595,-0.523448407649994,-0.793777644634247,0.00842775404453278,-0.571206152439117,-0.820763349533081,0.0178219731897116,-0.565847396850586,-0.824317336082459,0.145326107740402,-0.569155931472778,-0.809284806251526,0.00884844176471233,-0.548478960990906,-0.836117565631866,-0.153397843241692,-0.550609827041626,-0.820547342300415,0.0174266193062067,-0.553295314311981,-0.832802891731262,-0.309705436229706,-0.523491322994232,-0.79375022649765,-0.166232004761696,-0.545097053050995,-0.821727514266968,-0.153709828853607,-0.540387809276581,-0.827257096767426,0.017288014292717,-0.548894584178925,-0.835712790489197,-0.153540179133415,-0.546049356460571,-0.823562681674957,-0.16589292883873,-0.532873392105103,-0.82977432012558,-0.166404694318771,-0.551826357841492,-0.817188560962677,-0.309405863285065,-0.529328882694244,-0.789986670017242,-0.297757208347321,-0.532280802726746,-0.792475759983063,-0.297709107398987,-0.531404256820679,-0.793081820011139,-0.151653945446014,-0.567662596702576,-0.809172570705414,-0.166399538516998,-0.551619291305542,-0.817329406738281,-0.138468995690346,-0.495485097169876,-0.857508540153503,0.0172100719064474,-0.546419978141785,-0.837334513664246,-0.165755853056908,-0.528234660625458,-0.832762360572815,-0.150784507393837,-0.562838137149811,-0.812697529792786,-0.29749071598053,-0.527491450309753,-0.795771360397339,-0.211125835776329,-0.551457107067108,-0.807044565677643,-0.203342258930206,-0.519029021263123,-0.830217301845551,-0.0127273099496961,-0.569631516933441,-0.821801662445068,-0.146122217178345,-0.537131905555725,-0.830745220184326,-0.00612157769501209,-0.543811559677124,-0.839185059070587,0.0174348298460245,-0.553555905818939,-0.832629501819611,-0.143554091453552,-0.523084044456482,-0.840104341506958,-0.0161176137626171,-0.578201830387115,-0.815734684467316,-0.0134647255763412,-0.571866571903229,-0.820236146450043,-0.14748053252697,-0.544593453407288,-0.825631558895111,0.00501523399725556,-0.523715317249298,-0.851878702640533,0.101977370679379,-0.549068570137024,-0.829532563686371,
- -0.00306553463451564,-0.531951904296875,-0.846769154071808,0.0988791212439537,-0.568260908126831,-0.816885828971863,0.0175157114863396,-0.556123733520508,-0.830914914608002,-0.0102596571668983,-0.559698224067688,-0.828633010387421,0.104557566344738,-0.53258889913559,-0.839890956878662,0.00971054937690496,-0.511265218257904,-0.859368145465851,0.198706433176994,-0.542032659053802,-0.816527009010315,0.145451977849007,-0.564980804920197,-0.812182545661926,0.0177463628351688,-0.563446879386902,-0.825961649417877,0.100972674787045,-0.557133138179779,-0.824261605739594,0.0959467738866806,-0.585854649543762,-0.804716467857361,0.100956179201603,-0.556758761405945,-0.824516534805298,0.0177359003573656,-0.563114643096924,-0.826188564300537,0.373534560203552,-0.371198207139969,-0.85010814666748,0.147344812750816,-0.381612628698349,-0.912502884864807,0.0930900126695633,-0.404706418514252,-0.909696102142334,0.20742230117321,-0.504255592823029,-0.838273406028748,0.254940062761307,-0.507245302200317,-0.823230087757111,0.108817175030708,-0.504334568977356,-0.856624484062195,0.0996055528521538,-0.527205586433411,-0.843879759311676,0.105371795594692,-0.527291119098663,-0.843125641345978,0.2549789249897,-0.51125955581665,-0.820731043815613,0.095094121992588,-0.439754873514175,-0.893069267272949,0.252715826034546,-0.418031632900238,-0.872573375701904,0.376689732074738,-0.397279292345047,-0.836823761463165,0.254359662532806,-0.471774011850357,-0.844233632087708,0.216913729906082,-0.459703207015991,-0.861174404621124,0.296078026294708,-0.465539991855621,-0.834032535552979,0.29663023352623,-0.473955363035202,-0.829081892967224,0.382238268852234,-0.450773656368256,-0.80665796995163,0.254586338996887,-0.482883393764496,-0.83786004781723,0.138212755322456,0.272132724523544,-0.952282011508942,0.0263864491134882,0.263492614030838,-0.964300572872162,0.324750334024429,0.280636608600616,-0.903205573558807,-0.262000799179077,0.754046320915222,-0.602303683757782,-0.0485813543200493,0.795849859714508,-0.603541970252991,0.0330711789429188,0.811572313308716,-0.583315253257751,
- 0.0514351278543472,0.0388170778751373,-0.997921764850616,0.307955414056778,0.0550138205289841,-0.949809014797211,0.295122385025024,0.0460014156997204,-0.954351544380188,-0.26150307059288,0.751647055149078,-0.605510413646698,-0.298833429813385,0.741068005561829,-0.60126268863678,-0.04797088727355,0.792396664619446,-0.608117043972015,-0.19126832485199,0.73766040802002,-0.647513389587402,-0.0436381362378597,0.767399311065674,-0.639682769775391,-0.295901775360107,0.715698480606079,-0.632627725601196,-0.294395208358765,0.703670501708984,-0.646667838096619,-0.312782466411591,0.697583019733429,-0.644627809524536,-0.190582484006882,0.724068343639374,-0.662875056266785,0.29327255487442,0.398474544286728,-0.869027733802795,0.0117835225537419,0.38312441110611,-0.923621594905853,0.0849188789725304,0.418150454759598,-0.904399812221527,-0.188582390546799,0.68978625535965,-0.699021995067596,0.0719148367643356,0.709183156490326,-0.70134699344635,-0.0334034264087677,0.705138802528381,-0.708282053470612,0.0769960731267929,0.627398788928986,-0.774882137775421,0.22449965775013,0.616482436656952,-0.754685044288635,0.25837579369545,0.623791754245758,-0.737648844718933,0.250696271657944,0.774710714817047,-0.580495238304138,0.211739271879196,0.789586186408997,-0.575951516628265,0.216372177004814,0.775113046169281,-0.593618631362915,0.221911922097206,0.699264347553253,-0.679547250270844,0.403379380702972,0.657559752464294,-0.636317729949951,0.262066185474396,0.689923346042633,-0.674779295921326,0.411018759012222,0.721604764461517,-0.557090818881989,0.217478379607201,0.763348281383514,-0.608278334140778,0.152086466550827,0.783193588256836,-0.602890968322754,0.221037343144417,0.715180933475494,-0.663067638874054,0.0705550462007523,0.727673053741455,-0.682285845279694,0.150453940033913,0.716576039791107,-0.681089103221893,0.15199588239193,0.776929676532745,-0.610964477062225,0.382695317268372,0.726764500141144,-0.570401310920715,0.410219103097916,0.713207840919495,-0.568379163742065,-0.188996270298958,0.696396231651306,-0.692324161529541,0.00577129330486059,0.715679705142975,-0.698404788970947,
- 0.0714519172906876,0.715612351894379,-0.694833517074585,0.149724915623665,0.696884751319885,-0.701380133628845,0.0714496374130249,0.715643763542175,-0.694801390171051,0.0056070713326335,0.708760559558868,-0.705426871776581,-0.151525646448135,0.713475167751312,-0.684100270271301,0.00608133617788553,0.72861510515213,-0.684896409511566,-0.18946772813797,0.70419442653656,-0.684260308742523,-0.151786342263222,0.721028447151184,-0.676076054573059,-0.190183237195015,0.716683089733124,-0.670966267585754,-0.312306821346283,0.690104484558105,-0.652855455875397,0.00561342388391495,0.709028899669647,-0.705157101154327,0.0109433913603425,0.713104665279388,-0.700972139835358,0.149731799960136,0.697059333324432,-0.701205134391785,0.0060752434656024,0.728362560272217,-0.685165107250214,-0.151513189077377,0.713125169277191,-0.684467911720276,0.0105787701904774,0.72439843416214,-0.689300417900085,-0.31230503320694,0.690077602863312,-0.652884721755981,-0.166730716824532,0.714148283004761,-0.679847836494446,-0.151783064007759,0.720930397510529,-0.676181375980377,0.0104623828083277,0.727945148944855,-0.685555636882782,-0.151643246412277,0.716827750205994,-0.680560290813446,-0.166278690099716,0.725468337535858,-0.667867541313171,-0.166939288377762,0.708428025245667,-0.685755789279938,-0.311988264322281,0.685363411903381,-0.657982051372528,-0.295119911432266,0.688526332378387,-0.662446796894073,-0.295077294111252,0.689223408699036,-0.661740481853485,-0.146888762712479,0.698325395584106,-0.700546503067017,-0.166929706931114,0.708698928356171,-0.685478150844574,-0.133782625198364,0.758292257785797,-0.63804018497467,0.010391753166914,0.73008394241333,-0.683278441429138,-0.166111260652542,0.729350388050079,-0.663667917251587,-0.146019339561462,0.702641725540161,-0.696399986743927,-0.294870167970657,0.692537307739258,-0.658364355564117,-0.212907433509827,0.699006795883179,-0.682685911655426,-0.205148294568062,0.727416217327118,-0.654812812805176,-0.00507614482194185,0.708784461021423,-0.705406963825226,-0.141377106308937,0.72483503818512,-0.674260079860687,
- -0.00374128040857613,0.731644630432129,-0.681675970554352,0.0105958348140121,0.723875820636749,-0.689848899841309,-0.138828814029694,0.7364382147789,-0.662106692790985,-0.00845081731677055,0.701322078704834,-0.712794482707977,-0.0110806943848729,0.708118379116058,-0.70600688457489,-0.142731234431267,0.71850574016571,-0.680718243122101,0.0124918138608336,0.746217787265778,-0.665584683418274,0.0993978977203369,0.722063541412354,-0.684649050235748,-0.00068021792685613,0.741193413734436,-0.671291172504425,0.0961432382464409,0.705941140651703,-0.701714754104614,0.0106702335178852,0.721591353416443,-0.692237079143524,-0.00786900520324707,0.71852308511734,-0.695458590984344,0.102037526667118,0.735042333602905,-0.670299291610718,0.0171649474650621,0.755775213241577,-0.65460616350174,0.198413148522377,0.709940969944,-0.675733685493469,0.149874031543732,0.700704991817474,-0.697531580924988,0.0108756124973297,0.715225160121918,-0.698809564113617,0.0999555885791779,0.714829206466675,-0.692118585109711,0.0930890291929245,0.690697133541107,-0.717127621173859,0.0999392047524452,0.715156257152557,-0.691783010959625,0.0108664678409696,0.715510427951813,-0.698517560958862,0.375446289777756,0.772270083427429,-0.512483179569244,0.152224034070969,0.832069337368011,-0.533374786376953,0.0922912135720253,0.82600462436676,-0.556056439876556,0.207264542579651,0.738068878650665,-0.642102718353271,0.260726511478424,0.721506953239441,-0.641443192958832,0.106505520641804,0.75680136680603,-0.644909501075745,0.0986303091049194,0.739538848400116,-0.665848672389984,0.102875202894211,0.739142239093781,-0.665646731853485,0.26076740026474,0.718408763408661,-0.644894778728485,0.0942459478974342,0.803458690643311,-0.587853789329529,0.258418291807175,0.785504221916199,-0.56231963634491,0.378585427999496,0.754620850086212,-0.535929501056671,0.260116070508957,0.74837726354599,-0.610140264034271,0.216877192258835,0.768421351909637,-0.602073848247528,0.296422064304352,0.740462899208069,-0.603198707103729,0.296990185976028,0.734274387359619,-0.610440909862518,
- 0.384086787700653,0.715560138225555,-0.583481788635254,0.260352075099945,0.740207672119141,-0.619927048683167,0.110999502241611,0.695889592170715,-0.709518730640411,-0.0270090494304895,0.711347818374634,-0.702320992946625,0.143746301531792,0.684389352798462,-0.714806497097015,0.250459223985672,0.683677613735199,-0.685459792613983,0.111827097833157,0.706359505653381,-0.698964178562164,0.147954285144806,0.706156253814697,-0.692425310611725,-0.0144906928762794,0.748013377189636,-0.663525462150574,0.1119120195508,0.707442939281464,-0.697854042053223,-0.049115464091301,0.738193511962891,-0.672798633575439,-0.23511877655983,0.679884314537048,-0.69460529088974,-0.0419128350913525,0.664561927318573,-0.746056795120239,-0.0623499862849712,0.678755223751068,-0.731712937355042,0.11191825568676,0.707522571086884,-0.697772264480591,0.250452935695648,0.684531807899475,-0.684609115123749,0.139016851782799,0.698202192783356,-0.702273488044739,0.32815083861351,0.670732915401459,-0.665157496929169,0.139030873775482,0.69783353805542,-0.702637016773224,0.250450879335403,0.684800028800964,-0.684341609477997,-0.0596442744135857,0.691472589969635,-0.71993625164032,-0.112092547118664,0.697559237480164,-0.707704961299896,-0.230802819132805,0.695535361766815,-0.68041205406189,-0.295862197875977,0.675292193889618,-0.675607919692993,-0.234567224979401,0.681924521923065,-0.692789375782013,-0.112546019256115,0.693285882472992,-0.711820244789124,-0.0560394078493118,0.707957327365875,-0.704028487205505,0.110957741737366,0.695365369319916,-0.710039019584656,0.00558374542742968,0.705050110816956,-0.709135591983795,-0.110989265143871,0.707703411579132,-0.697737216949463,-0.0545436851680279,0.714645981788635,-0.697356522083282,0.00560716260224581,0.702045917510986,-0.712109684944153,0.110883891582489,0.694439232349396,-0.710956335067749,0.138863861560822,0.702151119709015,-0.698355674743652,0.00558038800954819,0.705478668212891,-0.708709180355072,-0.295925557613373,0.672345221042633,-0.678513050079346,-0.113306514918804,0.685977399349213,-0.718746662139893,
- -0.178139746189117,0.696291744709015,-0.695301413536072,-0.177850589156151,0.687352180480957,-0.70421314239502,-0.110796608030796,0.709439277648926,-0.696002900600433,0.00560208642855287,0.702699184417725,-0.711465060710907,-0.279080480337143,0.685148179531097,-0.672819495201111,-0.295987039804459,0.66921854019165,-0.681570410728455,-0.178119584918022,0.695642650127411,-0.695955991744995,0.00558061106130481,0.705450296401978,-0.70873749256134,0.138862386345863,0.702188670635223,-0.698318183422089,0.0949298888444901,0.704982459545136,-0.702842831611633,0.138944745063782,0.700080037117004,-0.700415790081024,0.328003317117691,0.672511458396912,-0.663432121276855,0.0950137749314308,0.702843904495239,-0.704970121383667,-0.0498940087854862,0.702335298061371,-0.710095643997192,-0.177945390343666,0.690199851989746,-0.701398313045502,0.00558329466730356,0.705107510089874,-0.709078431129456,-0.276921063661575,0.667889773845673,-0.690824151039124,-0.177885785698891,0.688400745391846,-0.703179359436035,-0.049859669059515,0.70146656036377,-0.710956275463104,0.227642267942429,0.690927922725677,-0.686146914958954,0.0950522720813751,0.701852738857269,-0.705951690673828,0.32817143201828,0.670482039451599,-0.665400147438049,0.328646510839462,0.664535403251648,-0.671106696128845,0.345953434705734,0.660493969917297,-0.666381239891052,0.227649196982384,0.690118551254272,-0.686958730220795,0.00553667265921831,0.703157305717468,-0.711012780666351,0.00559238158166409,0.703945100307465,-0.710232377052307,0.094964511692524,0.704103171825409,-0.703719019889832,0.0949175432324409,0.705294787883759,-0.702531099319458,0.227670088410378,0.687429130077362,-0.689643144607544,0.00554656889289618,0.704414129257202,-0.709767520427704,0.00544649222865701,0.691704750061035,-0.722159862518311,-0.0492157451808453,0.685320913791656,-0.726576268672943,0.00569681404158473,0.690305531024933,-0.723495543003082,0.345454424619675,0.666250944137573,-0.660886466503143,0.0703133121132851,0.685146152973175,-0.725004017353058,0.227646514773369,0.690437436103821,-0.686639070510864,
- 0.227660775184631,0.688684284687042,-0.688392817974091,0.0657302141189575,0.714727759361267,-0.696307301521301,0.00555774290114641,0.705833256244659,-0.708356201648712,0.0138108404353261,0.670984625816345,-0.741342723369598,0.0700843408703804,0.686671078205109,-0.723582088947296,0.345384687185287,0.667032718658447,-0.660133898258209,-0.118639834225178,0.724294900894165,-0.679206550121307,0.0610817223787308,0.742802023887634,-0.666719019412994,-0.00276073627173901,0.742424845695496,-0.669923663139343,-0.150660783052444,0.69319611787796,-0.704826593399048,-0.277243763208389,0.67040890455246,-0.688249826431274,-0.0498462878167629,0.701128423213959,-0.711290597915649,-0.148730576038361,0.660916864871979,-0.735573351383209,-0.0487612299621105,0.674084067344666,-0.737043440341949,0.00536287948489189,0.681085884571075,-0.732183873653412,-0.27604004740715,0.661107778549194,-0.69766640663147,-0.150253996253014,0.686077117919922,-0.711844027042389,-0.199595525860786,0.679243683815002,-0.706250429153442,0.0686485767364502,0.696118593215942,-0.714637160301209,-0.0859846994280815,0.682534694671631,-0.725777566432953,0.00547058833763003,0.694764792919159,-0.719216227531433,-0.0821532607078552,0.658220291137695,-0.748329401016235,-0.148769602179527,0.661535978317261,-0.735008656978607,0.00534589262679219,0.67892849445343,-0.734184980392456,0.0648231953382492,0.720353782176971,-0.690571010112762,-0.113003715872765,0.70127409696579,-0.703878402709961,-0.0898305475711823,0.706781089305878,-0.701705753803253,-0.0870983675122261,0.689573049545288,-0.71895968914032,-0.198549419641495,0.670111954212189,-0.715211927890778,-0.149831742048264,0.678881883621216,-0.718797564506531,-0.199624359607697,0.679497897624969,-0.70599764585495,-0.088621012866497,0.699173629283905,-0.709438264369965,-0.112206943333149,0.697997391223907,-0.707254707813263,0.11103317886591,0.469912618398666,-0.87570184469223,-0.0359735414385796,0.488396525382996,-0.871879994869232,0.145059898495674,0.456947565078735,-0.877585649490356,0.246487528085709,0.465438812971115,-0.850065052509308,
- 0.111858814954758,0.482899457216263,-0.868502020835876,0.14936625957489,0.484390079975128,-0.862006962299347,-0.0235355477780104,0.534361124038696,-0.844928562641144,0.111945107579231,0.484273314476013,-0.867725551128387,-0.0506439246237278,0.521351218223572,-0.851838052272797,-0.23500844836235,0.458693981170654,-0.856954395771027,-0.0506699942052364,0.431652426719666,-0.900615870952606,-0.0641042217612267,0.447214424610138,-0.892126739025116,0.111950024962425,0.48435178399086,-0.86768114566803,0.246476843953133,0.466475307941437,-0.849499821662903,0.139850586652756,0.474531471729279,-0.869057953357697,0.328758001327515,0.457766026258469,-0.826055943965912,0.139857888221741,0.474244832992554,-0.869213223457336,0.246474802494049,0.466667383909225,-0.849394917488098,-0.0613584443926811,0.462817072868347,-0.884327709674835,-0.110517732799053,0.47197425365448,-0.874657869338989,-0.230686604976654,0.477700769901276,-0.847694337368011,-0.299517214298248,0.458937585353851,-0.83646023273468,-0.234458476305008,0.461151629686356,-0.855785250663757,-0.110976710915565,0.466678380966187,-0.877436876296997,-0.0576899163424969,0.483273476362228,-0.873566746711731,0.110992230474949,0.469275802373886,-0.876048505306244,0.0069126458838582,0.47878310084343,-0.877906024456024,-0.109403111040592,0.484578967094421,-0.867879152297974,-0.0561626926064491,0.491660445928574,-0.868973970413208,0.00692794565111399,0.475202530622482,-0.879849195480347,0.110918149352074,0.468125283718109,-0.876673221588135,0.139755845069885,0.478195041418076,-0.867062747478485,0.00691060023382306,0.47925928235054,-0.877646148204803,-0.299555420875549,0.455696910619736,-0.838216483592987,-0.111744552850723,0.45767617225647,-0.882068991661072,-0.173616752028465,0.474578440189362,-0.862920939922333,-0.173346549272537,0.46387043595314,-0.868777990341187,-0.109209336340427,0.486734569072723,-0.86669647693634,0.00692438986152411,0.476038008928299,-0.879397571086884,-0.282145857810974,0.468912690877914,-0.836967527866364,-0.299591511487961,0.452247619628906,-0.840069651603699,
- -0.173595502972603,0.473700731992722,-0.8634073138237,0.00691078184172511,0.479217052459717,-0.877669215202332,0.139755114912987,0.478222995996475,-0.867047429084778,0.094488650560379,0.480113953351974,-0.872102320194244,0.139784544706345,0.477096110582352,-0.867663264274597,0.328619331121445,0.460054159164429,-0.824839055538177,0.094536729156971,0.478410214185715,-0.873033046722412,-0.0432396903634071,0.476067423820496,-0.878345131874084,-0.173437342047691,0.467363297939301,-0.866885840892792,0.0069118426181376,0.478970289230347,-0.877804040908813,-0.280047982931137,0.447609692811966,-0.849245965480804,-0.173374086618423,0.464919924736023,-0.868211328983307,-0.0432208590209484,0.475520581007004,-0.878642201423645,0.228051319718361,0.471299678087235,-0.851979613304138,0.0945677906274796,0.477300703525543,-0.873636662960052,0.328756481409073,0.457791268825531,-0.826042592525482,0.32914462685585,0.451166421175003,-0.829525709152222,0.343921542167664,0.448593199253082,-0.824913382530212,0.228065878152847,0.469889760017395,-0.85275411605835,0.00375088956207037,0.476362884044647,-0.879240751266479,0.00691907666623592,0.477282613515854,-0.878722608089447,0.0945227667689323,0.478905916213989,-0.872762620449066,0.0944804474711418,0.480403959751129,-0.871943652629852,0.228082224726677,0.468246608972549,-0.853653073310852,0.00376325915567577,0.477933824062347,-0.878387808799744,0.00364244938828051,0.462591260671616,-0.886564314365387,-0.0425047129392624,0.45492559671402,-0.88951450586319,0.00698743714019656,0.460938274860382,-0.887404680252075,0.343481481075287,0.455227464437485,-0.821455061435699,0.0696342065930367,0.455974340438843,-0.887264609336853,0.228057846426964,0.470675706863403,-0.852322697639465,0.228067576885223,0.469731599092484,-0.852840781211853,0.0653064548969269,0.491333097219467,-0.868519902229309,0.00377749651670456,0.479741990566254,-0.877401471138,0.012222439981997,0.438690751791,-0.898554980754852,0.0694174841046333,0.457784980535507,-0.886348783969879,0.343420535326004,0.456122010946274,-0.820984184741974,
- -0.115849241614342,0.506246566772461,-0.854572057723999,0.0607986263930798,0.526461064815521,-0.84802258014679,-0.00332134589552879,0.525048613548279,-0.851065754890442,-0.150022685527802,0.469270944595337,-0.870217204093933,-0.280358552932739,0.450673878192902,-0.847521185874939,-0.0432107634842396,0.475227475166321,-0.878801286220551,-0.147778987884521,0.427692979574203,-0.891762375831604,-0.0420193895697594,0.441197216510773,-0.896426022052765,0.00354020949453115,0.44960680603981,-0.893219590187073,-0.279179692268372,0.439190179109573,-0.85391491651535,-0.149558126926422,0.460226714611053,-0.875113546848297,-0.202853664755821,0.454259783029556,-0.867466688156128,0.068117268383503,0.468557864427567,-0.880802810192108,-0.0857659131288528,0.452415853738785,-0.887673556804657,0.00367055786773562,0.466160863637924,-0.884692490100861,-0.0818699523806572,0.42265909910202,-0.902583301067352,-0.147840186953545,0.428763777017593,-0.89123797416687,0.0035188808105886,0.446898013353348,-0.894577980041504,0.0644271895289421,0.498317420482636,-0.86459755897522,-0.110289461910725,0.477292090654373,-0.871796131134033,-0.0896785110235214,0.482537597417831,-0.871272206306458,-0.0869268402457237,0.461327701807022,-0.882961213588715,-0.201829954981804,0.443065494298935,-0.873474478721619,-0.149075955152512,0.45110097527504,-0.879934251308441,-0.202888324856758,0.454643845558167,-0.867257356643677,-0.0884716287255287,0.473219662904739,-0.876490712165833,-0.109467230737209,0.473019510507584,-0.874225199222565,0.109789676964283,0.110193207859993,-0.987827777862549,-0.0348960310220718,0.12862591445446,-0.991079032421112,0.149792328476906,0.0972388610243797,-0.983924210071564,0.252733707427979,0.115511029958725,-0.960615992546082,0.110679589211941,0.125421285629272,-0.985910534858704,0.153921559453011,0.127904742956162,-0.979769647121429,-0.0225116722285748,0.181215912103653,-0.983185648918152,0.110771209001541,0.127013236284256,-0.985696375370026,-0.0532768331468105,0.167606890201569,-0.984413385391235,-0.235947012901306,0.107150264084339,-0.965840458869934,
- -0.0495351031422615,0.0653814524412155,-0.996630072593689,-0.0668574348092079,0.0834468305110931,-0.994266927242279,0.110776126384735,0.127098828554153,-0.985684812068939,0.252725750207901,0.116707637906075,-0.960473358631134,0.139542415738106,0.11690104752779,-0.983291447162628,0.326315820217133,0.117519326508045,-0.937927186489105,0.139552161097527,0.116501294076443,-0.98333752155304,0.252723574638367,0.117026604712009,-0.960435092449188,-0.0640927702188492,0.100880227982998,-0.992832064628601,-0.110400103032589,0.11271445453167,-0.987475216388702,-0.231767311692238,0.127930596470833,-0.96432238817215,-0.300230532884598,0.114780806005001,-0.946935594081879,-0.235397949814796,0.109913349151611,-0.965663969516754,-0.110839039087296,0.106917448341846,-0.988070547580719,-0.0603927634656429,0.123966999351978,-0.990446805953979,0.109742186963558,0.109391912817955,-0.987922191619873,0.00689075281843543,0.117878668010235,-0.993004202842712,-0.109332412481308,0.1265968978405,-0.985910594463348,-0.058848399668932,0.133522167801857,-0.989297091960907,0.00693000666797161,0.113412834703922,-0.993523776531219,0.109660588204861,0.108018070459366,-0.988082408905029,0.139426156878471,0.121596038341522,-0.982738494873047,0.00688468106091022,0.118567682802677,-0.992922127246857,-0.300273448228836,0.111048646271229,-0.947366893291473,-0.111580453813076,0.0970015674829483,-0.989009976387024,-0.177670300006866,0.12011144310236,-0.976732552051544,-0.177290141582489,0.105924993753433,-0.978441774845123,-0.109144568443298,0.129008278250694,-0.985618770122528,0.00692253233864903,0.11426467448473,-0.993426322937012,-0.280474632978439,0.123629428446293,-0.951866567134857,-0.300314515829086,0.107068195939064,-0.947812020778656,-0.177655696868896,0.11954040825367,-0.97680526971817,0.00688491621986032,0.118541024625301,-0.99292528629303,0.139425128698349,0.121636368334293,-0.982733547687531,0.0921967849135399,0.121445067226887,-0.988307058811188,0.139473840594292,0.119685329496861,-0.982966184616089,0.326176434755325,0.120082393288612,-0.937650978565216,
- 0.0922712385654449,0.118707798421383,-0.988632619380951,-0.0513755194842815,0.114413365721703,-0.99210399389267,-0.177403137087822,0.110006213188171,-0.977970719337463,0.00689218146726489,0.117716260254383,-0.993023335933685,-0.278489172458649,0.099844865500927,-0.955235481262207,-0.177363395690918,0.10855795443058,-0.978139758110046,-0.0513876937329769,0.114773444831371,-0.992061674594879,0.227913931012154,0.120103821158409,-0.966245591640472,0.0923078805208206,0.117350615561008,-0.988791227340698,0.326316237449646,0.117510937154293,-0.937927961349487,0.326711237430573,0.110013887286186,-0.93869948387146,0.342309772968292,0.109103865921497,-0.933231174945831,0.227937594056129,0.118132673203945,-0.966482877731323,0.0087268790230155,0.114984512329102,-0.993328928947449,0.00690229889005423,0.116567134857178,-0.993158936500549,0.0922311097383499,0.120186612010002,-0.988457679748535,0.0921851173043251,0.121871709823608,-0.988255620002747,0.227938950061798,0.118027947843075,-0.966495335102081,0.00873921997845173,0.116759017109871,-0.993121802806854,0.00861772894859314,0.0994460731744766,-0.99500572681427,-0.05054035410285,0.0901511162519455,-0.9946448802948,0.00707486784085631,0.0967729091644287,-0.995281338691711,0.341831207275391,0.116867877542973,-0.932466268539429,0.0693157017230988,0.0922625660896301,-0.993319153785706,0.227922558784485,0.11939387768507,-0.966331422328949,0.227920189499855,0.119596190750599,-0.966306984424591,0.0647470355033875,0.133199512958527,-0.988972067832947,0.00875329691916704,0.118787355720997,-0.992881238460541,0.012479848228395,0.0716041326522827,-0.997355163097382,0.069087028503418,0.0943410024046898,-0.993139863014221,0.341764509677887,0.11792353540659,-0.932357788085938,-0.122859969735146,0.150584265589714,-0.980933129787445,0.0601137019693851,0.173510044813156,-0.982995748519897,-0.00371444714255631,0.17100478708744,-0.985263168811798,-0.155399933457375,0.110520988702774,-0.98164963722229,-0.278775095939636,0.103157542645931,-0.954799950122833,-0.0513843111693859,0.114673465490341,-0.9920734167099,
- -0.153610587120056,0.067180909216404,-0.98584508895874,-0.0499951131641865,0.0747367218136787,-0.995949268341064,0.00851394142955542,0.0849193036556244,-0.996351480484009,-0.277647197246552,0.0902867466211319,-0.956431150436401,-0.155021384358406,0.100745096802711,-0.982760906219482,-0.206589877605438,0.0985212996602058,-0.973454773426056,0.0676596313714981,0.107243485748768,-0.991927921772003,-0.0816835910081863,0.0906241983175278,-0.992529630661011,0.00864620227366686,0.103473082184792,-0.994594693183899,-0.0779762044548988,0.0578339472413063,-0.99527633190155,-0.153641119599342,0.0678664520382881,-0.985793471336365,0.00849213451147079,0.0818965956568718,-0.996604681015015,0.0638446137309074,0.141143247485161,-0.98792839050293,-0.117177493870258,0.117216311395168,-0.986169338226318,-0.0854112505912781,0.124318845570087,-0.988559424877167,-0.0827158913016319,0.0998804941773415,-0.991555333137512,-0.205543771386147,0.0858034491539001,-0.974879264831543,-0.154627323150635,0.0909478291869164,-0.98377788066864,-0.206618681550026,0.098877064883709,-0.973412573337555,-0.0841998904943466,0.113286346197128,-0.989988267421722,-0.116398476064205,0.112693481147289,-0.986788511276245,0.111126713454723,-0.147848024964333,-0.982747077941895,-0.0308733489364386,-0.13201017677784,-0.990767478942871,0.147343322634697,-0.159234374761581,-0.976183593273163,0.248351559042931,-0.13594214618206,-0.959083557128906,0.111947529017925,-0.1331727206707,-0.984750092029572,0.151463806629181,-0.128563210368156,-0.980066537857056,-0.0185381416231394,-0.0792664960026741,-0.996681094169617,0.112034402787685,-0.131591454148293,-0.984952807426453,-0.0473368428647518,-0.0923186466097832,-0.99460369348526,-0.234696239233017,-0.145702123641968,-0.961087286472321,-0.0454935021698475,-0.194524005055428,-0.979842305183411,-0.0611391477286816,-0.176810324192047,-0.982344210147858,0.112038470804691,-0.131517559289932,-0.984962284564972,0.248337402939796,-0.134797647595406,-0.959248840808868,0.137846574187279,-0.140004709362984,-0.98050856590271,0.326079517602921,-0.128010243177414,-0.936635315418243,
- 0.137850910425186,-0.14022159576416,-0.980476915836334,0.248336285352707,-0.134711638092995,-0.959261119365692,-0.0583221651613712,-0.159444779157639,-0.985482573509216,-0.115214191377163,-0.145186379551888,-0.982673287391663,-0.230358764529228,-0.124899655580521,-0.965056955814362,-0.296852618455887,-0.133209198713303,-0.945586621761322,-0.234144285321236,-0.143029421567917,-0.961623132228851,-0.11568596214056,-0.151180014014244,-0.981713473796844,-0.0545538179576397,-0.136313185095787,-0.989162683486938,0.111086897552013,-0.148548096418381,-0.982645988464355,0.00891186017543077,-0.141976282000542,-0.989829957485199,-0.114065140485764,-0.130787864327431,-0.984826743602753,-0.0529795140028,-0.126682355999947,-0.990527510643005,0.00894059333950281,-0.146247908473015,-0.989207565784454,0.111013412475586,-0.149837806820869,-0.982458591461182,0.13777819275856,-0.136631295084953,-0.980993926525116,0.00890763849020004,-0.141350418329239,-0.989919543266296,-0.296902179718018,-0.137053981423378,-0.945021331310272,-0.116467297077179,-0.161215797066689,-0.980022847652435,-0.1717269718647,-0.135930582880974,-0.975721657276154,-0.171395167708397,-0.14922259747982,-0.97383588552475,-0.113867029547691,-0.128333032131195,-0.98517256975174,0.00893464311957359,-0.145361572504044,-0.989338278770447,-0.275114923715591,-0.125279635190964,-0.953213930130005,-0.296950042247772,-0.141141891479492,-0.944404482841492,-0.171709224581718,-0.136674091219902,-0.975620925426483,0.00890787877142429,-0.141386076807976,-0.98991447687149,0.137777775526047,-0.136610940098763,-0.980996787548065,0.091553658246994,-0.137322217226028,-0.986286342144012,0.137784719467163,-0.136949926614761,-0.980948567390442,0.32593697309494,-0.125494137406349,-0.937025368213654,0.0916265845298767,-0.140004545450211,-0.985902369022369,-0.0510442070662975,-0.144797593355179,-0.988143801689148,-0.171498417854309,-0.145220324397087,-0.974422574043274,0.00891188997775316,-0.141980811953545,-0.989829301834106,-0.273070931434631,-0.149446308612823,-0.950314819812775,-0.171447202563286,-0.147217467427254,-0.974131882190704,
- -0.0510345511138439,-0.145102575421333,-0.988099575042725,0.223400831222534,-0.132666453719139,-0.965656101703644,0.0916629582643509,-0.141351670026779,-0.985706627368927,0.326086550951004,-0.128135487437248,-0.936615645885468,0.326508909463882,-0.135822385549545,-0.935384511947632,0.34383350610733,-0.134570613503456,-0.929338097572327,0.223413795232773,-0.134160950779915,-0.965446591377258,0.00664880545809865,-0.145009726285934,-0.989407896995544,0.00892172381281853,-0.143439918756485,-0.989618837833405,0.0915880501270294,-0.138584673404694,-0.98610645532608,0.0915422290563583,-0.136904075741768,-0.986345410346985,0.223431691527367,-0.136331990361214,-0.965138256549835,0.00666480557993054,-0.143235966563225,-0.989666104316711,0.00651345308870077,-0.159902542829514,-0.987111330032349,-0.0502755641937256,-0.168603897094727,-0.984400987625122,0.00904877483844757,-0.162533074617386,-0.986661612987518,0.343386799097061,-0.127143025398254,-0.930548310279846,0.0743484795093536,-0.165614858269691,-0.98338395357132,0.223407000303268,-0.133366763591766,-0.965558290481567,0.223418056964874,-0.134668365120888,-0.965374946594238,0.0699444487690926,-0.125721484422684,-0.989596843719482,0.00668344972655177,-0.14116558432579,-0.989963531494141,0.0142268519848585,-0.187140941619873,-0.982230067253113,0.0741292238235474,-0.163608685135841,-0.983736276626587,0.343325108289719,-0.126141384243965,-0.930707395076752,-0.119001522660255,-0.1066023260355,-0.987154901027679,0.0653809905052185,-0.0852339416742325,-0.99421352148056,-0.00179410551209003,-0.0883952081203461,-0.996083974838257,-0.154019847512245,-0.145990043878555,-0.977223098278046,-0.273368626832962,-0.14604839682579,-0.950757324695587,-0.0510265305638313,-0.145356073975563,-0.988062679767609,-0.152178362011909,-0.189335808157921,-0.970048308372498,-0.0497676841914654,-0.183806106448174,-0.981701850891113,0.00638118525967002,-0.17426697909832,-0.984677791595459,-0.272217303514481,-0.158982485532761,-0.949011325836182,-0.153631180524826,-0.155774474143982,-0.975772380828857,-0.202982291579247,-0.155463203787804,-0.96676230430603,
- 0.0727885812520981,-0.151388347148895,-0.985790848731995,-0.0852826684713364,-0.168391615152359,-0.982024013996124,0.00654729641973972,-0.156197503209114,-0.987704157829285,-0.0816027671098709,-0.200760245323181,-0.976235806941986,-0.152211830019951,-0.188608884811401,-0.970184743404388,0.00635212380439043,-0.177398696541786,-0.984118580818176,0.0690535753965378,-0.117751687765121,-0.990639269351959,-0.113376758992672,-0.140146896243095,-0.983618199825287,-0.0889727398753166,-0.134883344173431,-0.98685884475708,-0.0862887352705002,-0.159363269805908,-0.983441710472107,-0.201963722705841,-0.16801555454731,-0.964873790740967,-0.153226658701897,-0.165563195943832,-0.974222958087921,-0.20301716029644,-0.155025810003281,-0.966825246810913,-0.0877596363425255,-0.146020084619522,-0.985381364822388,-0.112574897706509,-0.144852414727211,-0.983028411865234,0.113938696682453,-0.485211759805679,-0.866941452026367,-0.0320442989468575,-0.473225176334381,-0.880358636379242,0.148771584033966,-0.494210928678513,-0.856517732143402,0.247111350297928,-0.466113984584808,-0.849513828754425,0.11471139639616,-0.472526401281357,-0.873819231987,0.153112560510635,-0.466203540563583,-0.87132716178894,-0.0198820270597935,-0.426265507936478,-0.904379606246948,0.114794366061687,-0.47113448381424,-0.874559640884399,-0.0519689843058586,-0.437578827142715,-0.897677004337311,-0.236372485756874,-0.475224763154984,-0.84751957654953,-0.0464422106742859,-0.527475357055664,-0.848299980163574,-0.0652961209416389,-0.511101126670837,-0.857036769390106,0.114798165857792,-0.471070498228073,-0.874593615531921,0.247101798653603,-0.465077787637711,-0.85008430480957,0.138097822666168,-0.47746142745018,-0.867732405662537,0.32616052031517,-0.450638085603714,-0.830990135669708,0.138105198740959,-0.477748543024063,-0.867573201656342,0.247099652886391,-0.464850217103958,-0.850209414958954,-0.062577486038208,-0.496192753314972,-0.865954279899597,-0.116413079202175,-0.482763558626175,-0.867978870868683,-0.23203918337822,-0.457168519496918,-0.858577311038971,-0.29727104306221,-0.458406239748001,-0.837552309036255,
- -0.235819190740585,-0.472905904054642,-0.848969578742981,-0.116897866129875,-0.488112181425095,-0.864916980266571,-0.0589488968253136,-0.476221591234207,-0.87734717130661,0.11390382796526,-0.485772728919983,-0.866631865501404,0.00379871041513979,-0.482436209917068,-0.875922858715057,-0.115231312811375,-0.469850242137909,-0.875192821025848,-0.0574403330683708,-0.467894732952118,-0.881915628910065,0.00382852973416448,-0.486223340034485,-0.873826324939728,0.113836005330086,-0.486861258745193,-0.866029739379883,0.138002634048462,-0.47379806637764,-0.869753360748291,0.00379428802989423,-0.481874525547028,-0.876232028007507,-0.297337412834167,-0.462076187133789,-0.835509479045868,-0.117696784436703,-0.496994763612747,-0.859734654426575,-0.175369203090668,-0.471547484397888,-0.864227175712585,-0.17503833770752,-0.483284443616867,-0.857786536216736,-0.115028545260429,-0.467651784420013,-0.876396179199219,0.00382232875563204,-0.485435843467712,-0.874263942241669,-0.276070058345795,-0.45359143614769,-0.847372472286224,-0.297401666641235,-0.465934693813324,-0.83334094285965,-0.175351276993752,-0.472215682268143,-0.863865911960602,0.00379453436471522,-0.481905817985535,-0.876214802265167,0.138001888990402,-0.473770320415497,-0.869768440723419,0.0927251577377319,-0.477447897195816,-0.873753845691681,0.138031482696533,-0.474902302026749,-0.869146227836609,0.326021671295166,-0.448376268148422,-0.832267284393311,0.0927394405007362,-0.478039652109146,-0.873428702354431,-0.0443363450467587,-0.484592974185944,-0.873615443706512,-0.175141766667366,-0.47974219918251,-0.859751582145691,0.00379872554913163,-0.482438206672668,-0.875921785831451,-0.273970365524292,-0.475418835878372,-0.836012661457062,-0.175090685486794,-0.48150497674942,-0.858775973320007,-0.0443478636443615,-0.484292209148407,-0.873781740665436,0.22867813706398,-0.46458888053894,-0.855490207672119,0.0927626341581345,-0.479000180959702,-0.87289971113205,0.326158404350281,-0.450603365898132,-0.831009805202484,0.326543062925339,-0.457047641277313,-0.827331304550171,0.347987741231918,-0.452873975038528,-0.820859253406525,
- 0.228693008422852,-0.465980350971222,-0.854729115962982,0.00688734883442521,-0.484628111124039,-0.874693155288696,0.00380874099209905,-0.483709990978241,-0.875220060348511,0.092757061123848,-0.478765457868576,-0.873029053211212,0.0927204862236977,-0.477255403995514,-0.873859345912933,0.228708729147911,-0.467514365911484,-0.853886783123016,0.00689414003863931,-0.48306804895401,-0.875555694103241,0.00682357465848327,-0.498966962099075,-0.866594135761261,-0.0435059666633606,-0.505763709545136,-0.861574292182922,0.00394172267988324,-0.500598967075348,-0.865670323371887,0.347570031881332,-0.44657090306282,-0.82448148727417,0.0747238472104073,-0.50319230556488,-0.860937774181366,0.228684633970261,-0.465187311172485,-0.855163335800171,0.22869385778904,-0.466060936450958,-0.854685068130493,0.0699484497308731,-0.46657606959343,-0.881710827350616,0.00690153567120433,-0.481361597776413,-0.876494944095612,0.0137743409723043,-0.522055387496948,-0.852800369262695,0.0744863897562027,-0.501368522644043,-0.862021803855896,0.34751284122467,-0.445727616548538,-0.82496166229248,-0.120841808617115,-0.448578834533691,-0.885536134243011,0.0651904568076134,-0.430213361978531,-0.900370419025421,-0.0022768194321543,-0.434518724679947,-0.900659918785095,-0.150485396385193,-0.481857597827911,-0.86323082447052,-0.27428063750267,-0.472317725419998,-0.837667047977448,-0.0443442687392235,-0.484385907649994,-0.873730003833771,-0.14866691827774,-0.519716382026672,-0.841304361820221,-0.0429662838578224,-0.519026458263397,-0.8536776304245,0.00676531624048948,-0.511602938175201,-0.859195351600647,-0.273100614547729,-0.483906656503677,-0.831414699554443,-0.150098949670792,-0.490510046482086,-0.858411431312561,-0.207321733236313,-0.486701369285584,-0.84861034154892,0.0729530677199364,-0.489599794149399,-0.868890166282654,-0.0811613574624062,-0.504230737686157,-0.85974657535553,0.00684117479249835,-0.495064616203308,-0.868829250335693,-0.0774546638131142,-0.53245747089386,-0.842905580997467,-0.14870011806488,-0.519082844257355,-0.84168952703476,0.00675408216193318,-0.51399165391922,-0.857768595218658,
- 0.0690233707427979,-0.459497153759003,-0.885493159294128,-0.115101777017117,-0.478789478540421,-0.870351910591125,-0.0848949924111366,-0.474510580301285,-0.87614643573761,-0.0821978598833084,-0.496113747358322,-0.864357948303223,-0.206271126866341,-0.497874885797501,-0.842361450195313,-0.149699151515961,-0.499085009098053,-0.853524625301361,-0.207351133227348,-0.486382097005844,-0.848786175251007,-0.0836843699216843,-0.484294861555099,-0.870893478393555,-0.114343427121639,-0.482686638832092,-0.86829686164856,-0.0581674687564373,-0.0338537581264973,0.997732758522034,-0.0913066864013672,-0.039615660905838,0.995034515857697,-0.026821181178093,-0.0258230939507484,0.999306678771973,0.0963843762874603,0.0078126834705472,0.99531364440918,-0.0594385117292404,-0.0263457130640745,0.997884273529053,-0.0273083318024874,-0.0235064998269081,0.999350666999817,0.0995786860585213,-0.00302005955018103,0.995025217533112,-0.163081854581833,-0.104898251593113,0.981020212173462,0.232984453439713,0.0370063409209251,0.971776068210602,-0.0298184882849455,-0.0115561559796333,0.999488532543182,-0.29662024974823,-0.0853949189186096,0.951169908046722,0.0979059338569641,0.00265785632655025,0.995192110538483,-0.164520025253296,-0.100866086781025,0.981202960014343,0.0984581112861633,0.00078487180871889,0.995140910148621,-0.295962363481522,-0.0880873277783394,0.951129257678986,-0.191336199641228,-0.0237083490937948,0.981238186359406,-0.296406239271164,-0.0862719640135765,0.951157450675964,-0.507565200328827,-0.136351332068443,0.850756049156189,-0.03171656280756,-0.00250470568425953,0.999493777751923,-0.517853379249573,-0.092400848865509,0.850464582443237,-0.302619725465775,-0.0603648982942104,0.951197981834412,-0.509690523147583,-0.131259858608246,0.85028612613678,-0.297730386257172,-0.080828882753849,0.951222002506256,-0.510793805122375,-0.131540849804878,0.84958028793335,-0.297702997922897,-0.0809418857097626,0.951220989227295,-0.510708093643188,-0.133121877908707,0.849385678768158,-0.510774493217468,-0.131620332598686,0.849579632282257,-0.511371314525604,-0.129162415862083,0.849597811698914,
- -0.511595785617828,-0.128333538770676,0.84958827495575,-0.520556092262268,-0.129796490073204,0.843904197216034,0.0111510958522558,-0.37650054693222,0.926349282264709,-0.0241404250264168,-0.387617588043213,0.921504259109497,0.0366588123142719,-0.364889234304428,0.930328965187073,0.153832763433456,-0.310527741909027,0.938034117221832,0.00851674564182758,-0.36926344037056,0.929285764694214,0.0360979177057743,-0.363573551177979,0.930865943431854,0.158996000885963,-0.320345968008041,0.933862268924713,-0.0891136005520821,-0.45704448223114,0.884968400001526,0.279152691364288,-0.25358659029007,0.926157474517822,0.0321282334625721,-0.35424330830574,0.934601247310638,-0.216066285967827,-0.452472358942032,0.865207552909851,0.15641213953495,-0.315432906150818,0.935968637466431,-0.0912003517150879,-0.453574687242508,0.88653975725174,0.157251298427582,-0.3170285820961,0.935288667678833,-0.214996322989464,-0.454763293266296,0.864272475242615,-0.129545331001282,-0.387746304273605,0.912617564201355,-0.21756312251091,-0.449256151914597,0.866507470607758,-0.429354071617126,-0.501814186573029,0.750891208648682,0.0274686142802238,-0.343249887228012,0.938842356204987,-0.446108758449554,-0.463079124689102,0.765862047672272,-0.227435007691383,-0.427712559700012,0.874834418296814,-0.432307541370392,-0.497320294380188,0.752185463905334,-0.219778448343277,-0.444472134113312,0.86841344833374,-0.433674782514572,-0.497065991163254,0.751566112041473,-0.219788312911987,-0.44445076584816,0.868421912193298,-0.432738482952118,-0.49811002612114,0.75141453742981,-0.433676928281784,-0.497061312198639,0.751567959785461,-0.434611111879349,-0.49503031373024,0.75236839056015,-0.434342235326767,-0.494044452905655,0.75317120552063,-0.442515999078751,-0.494859635829926,0.747859299182892,-0.0545660518109798,0.470193445682526,0.880874931812286,-0.0901426672935486,0.463336408138275,0.881585896015167,-0.0255303345620632,0.477857083082199,0.878066539764404,0.100954115390778,0.505432665348053,0.856940090656281,-0.0558324605226517,0.476734012365341,0.877272725105286,
- -0.0258900746703148,0.47931843996048,0.877259135246277,0.104225769639015,0.495711445808411,0.862210631370544,-0.167173877358437,0.400545030832291,0.900897622108459,0.23124223947525,0.517796754837036,0.823658645153046,-0.0282307732850313,0.488800197839737,0.87193888425827,-0.298661679029465,0.400392413139343,0.866306602954865,0.102538138628006,0.500739216804504,0.859503448009491,-0.168604403734207,0.4041768014431,0.899007022380829,0.103090770542622,0.499095976352692,0.86039263010025,-0.298001110553741,0.398040294647217,0.867617130279541,-0.193384453654289,0.46716171503067,0.862764537334442,-0.298618316650391,0.400238543748856,0.86639267206192,-0.509787142276764,0.305635869503021,0.804178953170776,-0.0307443030178547,0.498930394649506,0.866096556186676,-0.514615416526794,0.346564620733261,0.784260153770447,-0.304800987243652,0.422506302595139,0.853571772575378,-0.511903584003448,0.309789061546326,0.801240086555481,-0.299939721822739,0.404958575963974,0.863738775253296,-0.51296865940094,0.309725105762482,0.800583243370056,-0.299917340278625,0.404878437519073,0.86378413438797,-0.507472097873688,0.310854762792587,0.803642570972443,-0.512933552265167,0.3095982670784,0.800654768943787,-0.513548970222473,0.311827450990677,0.799394249916077,-0.508360266685486,0.315097540616989,0.801425874233246,-0.519068002700806,0.310150414705276,0.796476721763611,-0.0593089535832405,-0.786214470863342,0.615100979804993,-0.0898900106549263,-0.78773820400238,0.609416544437408,-0.0272221788764,-0.781957447528839,0.622737109661102,0.0994478166103363,-0.756437122821808,0.646461963653564,-0.0606256760656834,-0.781239569187164,0.621280312538147,-0.0275876373052597,-0.780890762805939,0.624058127403259,0.102918043732643,-0.763652205467224,0.637372076511383,-0.170039802789688,-0.818471610546112,0.548808395862579,0.23284900188446,-0.720692813396454,0.652980268001556,-0.0299454033374786,-0.773946464061737,0.632542610168457,-0.29891175031662,-0.784105956554413,0.543902218341827,0.101217031478882,-0.760125637054443,0.64184433221817,-0.171483233571053,-0.815979182720184,0.552061140537262,
- 0.101771928369999,-0.76127827167511,0.640389025211334,-0.298246562480927,-0.785804033279419,0.541812717914581,-0.197026476264,-0.768244802951813,0.60908168554306,-0.299158066511154,-0.783474206924438,0.544676661491394,-0.507542610168457,-0.739362478256226,0.442429423332214,-0.0324430875480175,-0.7664715051651,0.64145839214325,-0.515661180019379,-0.711862146854401,0.476808160543442,-0.305304318666458,-0.767158687114716,0.56414258480072,-0.509691953659058,-0.735718667507172,0.446018159389496,-0.300495207309723,-0.780015587806702,0.548888266086578,-0.511835634708405,-0.735018372535706,0.444715946912766,-0.300480514764786,-0.780053794384003,0.548842012882233,-0.508519172668457,-0.7370365858078,0.445180118083954,-0.511849224567413,-0.734983444213867,0.444758027791977,-0.512410521507263,-0.733536243438721,0.446497529745102,-0.509407043457031,-0.734128832817078,0.448953598737717,-0.520545184612274,-0.729919195175171,0.443001866340637,0.0288797840476036,-0.752420902252197,0.65804922580719,-0.00441929930821061,-0.75296014547348,0.658051252365112,-0.0421087741851807,-0.753268599510193,0.656363666057587,-0.0794393867254257,-0.757491052150726,0.64799439907074,0.0288796853274107,-0.752416491508484,0.658054232597351,-0.0421089641749859,-0.753265202045441,0.656367540359497,0.346831083297729,-0.680926740169525,0.645017147064209,0.0283828377723694,-0.730601012706757,0.682214498519897,-0.0775969624519348,-0.765970826148987,0.638175070285797,-0.0811505392193794,-0.749440848827362,0.657079100608826,-0.0410799458622932,-0.771320998668671,0.635119199752808,-0.272725403308868,-0.735132873058319,0.620645225048065,0.347142845392227,-0.682450890541077,0.64323616027832,-0.0770943611860275,-0.76825076341629,0.635489761829376,0.143116161227226,-0.78019517660141,0.608944535255432,0.107497371733189,-0.716698527336121,0.689048290252686,-0.079302117228508,-0.758129477500916,0.647264122962952,-0.262846767902374,-0.763924956321716,0.5893474817276,0.347484588623047,-0.0315927267074585,0.937153339385986,0.531857311725616,0.0188036728650332,0.846625328063965,
- 0.373231500387192,-0.00405020639300346,0.927729427814484,0.347930818796158,-0.0336500629782677,0.93691611289978,0.375464111566544,-0.0239032208919525,0.926528632640839,0.18038934469223,-0.0657763853669167,0.981393575668335,-0.172732904553413,-0.166201174259186,0.970845282077789,0.34885162115097,-0.0379177741706371,0.93641060590744,0.184705257415771,-0.0903075784444809,0.978636145591736,0.376233816146851,-0.0310743078589439,0.926003515720367,0.264856308698654,-0.0436296984553337,0.963300347328186,0.180843144655228,-0.0683276057243347,0.981135725975037,-0.181793436408043,-0.143078446388245,0.972871899604797,0.185956850647926,-0.0975366458296776,0.977704882621765,-0.0149599621072412,-0.147899657487869,0.988889217376709,0.183372721076012,-0.0826690271496773,0.979561269283295,0.268405824899673,-0.0917424932122231,0.95892733335495,-0.0185217782855034,-0.117006465792656,0.992958426475525,0.0259871762245893,-0.538745164871216,0.842067897319794,-0.00638979068025947,-0.539256751537323,0.842117309570313,-0.0420870259404182,-0.539860308170319,0.840701818466187,-0.0764185562729836,-0.546227276325226,0.834143877029419,0.0259870961308479,-0.538739323616028,0.842071652412415,-0.0420872122049332,-0.539856016635895,0.840704560279846,0.347381055355072,-0.473447024822235,0.80942839384079,0.0255868565291166,-0.509969115257263,0.859812080860138,-0.0743523687124252,-0.558136582374573,0.826411068439484,-0.0783557370305061,-0.534874856472015,0.841290235519409,-0.0410569980740547,-0.56314092874527,0.825340330600739,-0.269894272089005,-0.532115459442139,0.802502453327179,0.347633600234985,-0.475094616413116,0.808354020118713,-0.0737887322902679,-0.561350286006927,0.824282169342041,0.146302208304405,-0.578119277954102,0.802728950977325,0.110335260629654,-0.494366377592087,0.862222731113434,-0.0762866139411926,-0.546993732452393,0.833653509616852,-0.25977036356926,-0.569090187549591,0.780163884162903,0.349489003419876,0.231852859258652,0.907800495624542,0.532091379165649,0.254658102989197,0.807482659816742,0.369723677635193,0.255756229162216,0.893248677253723,
- 0.349939733743668,0.229789286851883,0.908151566982269,0.371952921152115,0.235950201749802,0.897763073444366,0.181579142808914,0.211502820253372,0.960362195968628,-0.173594623804092,0.111419714987278,0.978494048118591,0.350876688957214,0.225471913814545,0.908871829509735,0.185973763465881,0.186563968658447,0.964680075645447,0.372722774744034,0.228744938969612,0.899307250976563,0.265085846185684,0.227462157607079,0.937011420726776,0.182043612003326,0.208905398845673,0.960842788219452,-0.182583570480347,0.134073555469513,0.974005937576294,0.187251657247543,0.179154932498932,0.965836703777313,-0.0160739850252867,0.135021537542343,0.990712285041809,0.184619143605232,0.19433905184269,0.963404417037964,0.2685766518116,0.179286524653435,0.946426391601563,-0.0196259133517742,0.164857655763626,0.986122190952301,0.0261392462998629,-0.186753377318382,0.982059121131897,-0.00409947894513607,-0.186964616179466,0.98235809803009,-0.0419141724705696,-0.188131526112556,0.981249094009399,-0.0764859914779663,-0.196659058332443,0.977484047412872,0.0261391680687666,-0.186746522784233,0.982060432434082,-0.0419143475592136,-0.188126161694527,0.981250107288361,0.349963366985321,-0.137744277715683,0.926580905914307,0.0257495567202568,-0.153340458869934,0.987837851047516,-0.0744025483727455,-0.210688784718513,0.974717676639557,-0.0784353911876678,-0.183395862579346,0.979905009269714,-0.0409491248428822,-0.217076808214188,0.97529524564743,-0.272549718618393,-0.195710182189941,0.942026734352112,0.350250959396362,-0.139894157648087,0.926150143146515,-0.073836475610733,-0.21447516977787,0.973934590816498,0.144332110881805,-0.237530395388603,0.960597515106201,0.109334029257298,-0.139118120074272,0.984221637248993,-0.0763563588261604,-0.197536274790764,0.977317333221436,-0.262313395738602,-0.238640114665031,0.93500941991806,0.348910212516785,0.552330791950226,0.75709468126297,0.533873081207275,0.536519765853882,0.653548836708069,0.371004551649094,0.570303082466125,0.732877850532532,0.349233627319336,0.551068961620331,0.757864713668823,0.373224318027496,0.552984118461609,0.744924247264862,
- 0.184417009353638,0.552971303462982,0.812534987926483,-0.175349652767181,0.466818362474442,0.866794764995575,0.349743008613586,0.549072742462158,0.759077727794647,0.188522309064865,0.53333055973053,0.824632108211517,0.373992025852203,0.546606421470642,0.749233841896057,0.268968850374222,0.559154331684113,0.78422075510025,0.184843689203262,0.550966262817383,0.81379908323288,-0.184196785092354,0.485965102910995,0.85434752702713,0.189709782600403,0.527499258518219,0.828103065490723,-0.0135833891108632,0.494668692350388,0.868975460529327,0.187240973114967,0.539545595645905,0.82087230682373,0.272566258907318,0.519101202487946,0.810087382793427,-0.0171265974640846,0.520108699798584,0.85392838716507,0.0224084593355656,0.0727145075798035,0.997101128101349,-0.00743826245889068,0.0720939338207245,0.99737012386322,-0.0420262850821018,0.0708676725625992,0.996600031852722,-0.0727465450763702,0.0627969428896904,0.995371639728546,0.0224083457142115,0.0727210119366646,0.997100651264191,-0.042026475071907,0.0708727985620499,0.996599614620209,0.344227880239487,0.105052433907986,0.932990431785584,0.0218455884605646,0.104268699884415,0.994309306144714,-0.0710691586136818,0.0507902763783932,0.996177554130554,-0.0742972046136856,0.0739572942256927,0.994489967823029,-0.0409950502216816,0.0430428422987461,0.998231887817383,-0.272265583276749,0.0534187667071819,0.960738182067871,0.344547182321548,0.102665811777115,0.933138251304626,-0.0706128403544426,0.0475355572998524,0.996370613574982,0.143772274255753,0.0171080846339464,0.989462912082672,0.108244098722935,0.119127959012985,0.986960887908936,-0.0725891068577766,0.0616671927273273,0.995453655719757,-0.262304902076721,0.0108619146049023,0.964923918247223,0.343970149755478,0.729733765125275,0.590908765792847,0.529961347579956,0.688107430934906,0.49563005566597,0.373451888561249,0.738532841205597,0.561340272426605,0.344380170106888,0.728428304195404,0.592279076576233,0.375685691833496,0.725537836551666,0.576589345932007,0.185052886605263,0.744465410709381,0.6415034532547,-0.174220368266106,0.67496520280838,0.716986238956451,
- 0.345142215490341,0.725983679294586,0.594831526279449,0.189530372619629,0.726613223552704,0.660387337207794,0.376455873250961,0.720765650272369,0.582046270370483,0.266718626022339,0.742585718631744,0.614351391792297,0.185528293251991,0.742618262767792,0.643503963947296,-0.182982191443443,0.690169930458069,0.700130701065063,0.190842136740685,0.721183180809021,0.665938496589661,-0.0158832110464573,0.701294660568237,0.712694525718689,0.188161268830299,0.732182204723358,0.654602706432343,0.270355939865112,0.71099054813385,0.649153351783752,-0.0194309931248426,0.722415268421173,0.691186487674713,0.028568496927619,0.420053154230118,0.907049715518951,-0.00398712186142802,0.419996798038483,0.907516837120056,-0.0411998890340328,0.418400436639786,0.907327771186829,-0.0728835612535477,0.410065293312073,0.909139394760132,0.0285684075206518,0.420059353113174,0.907046854496002,-0.0412000678479671,0.418405324220657,0.907325506210327,0.346961945295334,0.427661776542664,0.834699213504791,0.0281150639057159,0.449865818023682,0.89265364408493,-0.0710239708423615,0.398171931505203,0.914557099342346,-0.0746143758296967,0.421143889427185,0.903919517993927,-0.0402192622423172,0.391701698303223,0.919212818145752,-0.271405190229416,0.389333605766296,0.88020384311676,0.347269535064697,0.425547480583191,0.835651397705078,-0.0705185979604721,0.394941419363022,0.915995836257935,0.141540139913559,0.365055948495865,0.920163333415985,0.106240093708038,0.459277004003525,0.881917178630829,-0.072734646499157,0.409112542867661,0.90958046913147,-0.261690258979797,0.351580590009689,0.898837745189667,0.349252045154572,0.88983690738678,0.293620944023132,0.533278405666351,0.817032694816589,0.219253182411194,0.374570488929749,0.888986170291901,0.263439893722534,0.349602311849594,0.88920933008194,0.295101672410965,0.376789033412933,0.882054567337036,0.28286001086235,0.184656128287315,0.92299485206604,0.337613165378571,-0.174358353018761,0.884596705436707,0.432536512613297,0.350219279527664,0.888093888759613,0.2977175116539,0.189051330089569,0.913211286067963,0.360977530479431,
- 0.377557069063187,0.879434764385223,0.289905428886414,0.270184248685837,0.910987973213196,0.311611026525497,0.185119703412056,0.922004103660584,0.340057611465454,-0.183214202523232,0.892921924591064,0.41124564409256,0.190337896347046,0.910176753997803,0.367899090051651,-0.0144866704940796,0.908129215240479,0.418439358472824,0.187709704041481,0.9162917137146,0.35380020737648,0.273726493120193,0.893192768096924,0.356763958930969,-0.0180188193917274,0.919997990131378,0.39150869846344,0.0582644566893578,-0.729360461235046,0.681644141674042,0.147304564714432,-0.718786716461182,0.67944610118866,0.0408975668251514,-0.726903915405273,0.68552029132843,0.296727210283279,-0.681067824363709,0.669402420520782,0.147270932793617,-0.7184197306633,0.679841458797455,0.0582595467567444,-0.72930920124054,0.681699275970459,-0.108217567205429,-0.724596261978149,0.680624127388,0.0584460534155369,-0.731254458427429,0.679596185684204,0.0389991514384747,-0.736464858055115,0.675350725650787,0.0560459308326244,-0.706147968769073,0.705842673778534,-0.146115452051163,-0.745344042778015,0.650471031665802,0.292998522520065,-0.667601108551025,0.684441924095154,-0.108690284192562,-0.729273200035095,0.675534665584564,-0.153162866830826,-0.717377185821533,0.679640471935272,0.0571312792599201,-0.717521131038666,0.694189786911011,0.0347372405230999,-0.744678258895874,0.666519045829773,0.294267296791077,-0.672165274620056,0.679411947727203,-0.14479073882103,-0.750357806682587,0.644979655742645,-0.430604726076126,-0.70089465379715,0.568617820739746,-0.149745717644691,-0.731216430664063,0.665506422519684,-0.114185012876987,-0.785054683685303,0.608811259269714,0.0222400184720755,-0.705088555812836,0.708770394325256,-0.149613589048386,-0.731740832328796,0.664959490299225,-0.430394381284714,-0.701666951179504,0.567824065685272,0.455618649721146,-0.500189661979675,0.73635721206665,-0.000789737445302308,-0.673522114753723,0.739166736602783,0.269511103630066,-0.624334931373596,0.733191430568695,0.455195158720016,-0.49847611784935,0.73777973651886,0.248535633087158,-0.557330906391144,0.792219877243042,
- -0.00336070172488689,-0.666307091712952,0.745669841766357,0.2282644957304,-0.551091313362122,0.802616775035858,-0.0130019886419177,-0.638642489910126,0.769393861293793,-0.201280102133751,-0.677219033241272,0.707715153694153,-0.00917666312307119,-0.64973384141922,0.760106384754181,0.249899491667748,-0.575263619422913,0.778859436511993,-0.0953100919723511,-0.642651796340942,0.760206997394562,-0.0195071902126074,-0.619432508945465,0.784807503223419,-0.0965683162212372,-0.637350559234619,0.764499068260193,-0.21414989233017,-0.646666407585144,0.732094526290894,0.250216692686081,-0.579643130302429,0.775503516197205,0.13686840236187,-0.596661269664764,0.790735304355621,-0.0954631790518761,-0.642009496688843,0.76073032617569,-0.186644554138184,-0.653957426548004,0.7331463098526,-0.229561179876328,-0.607375502586365,0.760523974895477,-0.0976170748472214,-0.632893443107605,0.768060564994812,-0.0964548587799072,-0.637830674648285,0.764112889766693,0.137873843312263,-0.633592665195465,0.761282563209534,-0.189048379659653,-0.638558804988861,0.74599152803421,0.222492769360542,-0.771241843700409,0.596391618251801,-0.243493512272835,-0.844034552574158,0.477824836969376,0.0260768290609121,-0.849438011646271,0.527043700218201,0.221982344985008,-0.76982843875885,0.598404586315155,0.00479177106171846,-0.800548911094666,0.599248290061951,-0.24620258808136,-0.83873987197876,0.485695064067841,-0.0167927220463753,-0.793286859989166,0.608616471290588,-0.256160318851471,-0.818131446838379,0.514823138713837,-0.429904162883759,-0.799871027469635,0.418794453144073,-0.252254396677017,-0.826436519622803,0.503359138965607,0.00630923639982939,-0.812928974628448,0.582328677177429,-0.336097747087479,-0.802958846092224,0.492235064506531,-0.337417542934418,-0.799017548561096,0.497715145349503,-0.442689627408981,-0.776115000247955,0.449078649282455,-0.262686431407928,-0.803578555583954,0.534095108509064,0.00668476149439812,-0.815940678119659,0.578096985816956,-0.101555339992046,-0.814927875995636,0.570595383644104,-0.336257845163345,-0.802485346794128,0.492897510528564,
- -0.422364413738251,-0.7862588763237,0.451005041599274,-0.457506954669952,-0.74494081735611,0.485541671514511,-0.338501811027527,-0.795714735984802,0.502249777317047,-0.337295293807983,-0.799386203289032,0.497205764055252,-0.0998240411281586,-0.840934216976166,0.531850337982178,-0.424852102994919,-0.776397228240967,0.465519070625305,0.146289750933647,-0.776640892028809,0.612722039222717,0.229965880513191,-0.761837184429169,0.605573952198029,0.124876283109188,-0.776151359081268,0.618057608604431,0.379472315311432,-0.712743401527405,0.589913368225098,0.229870557785034,-0.760386645793915,0.607430577278137,0.146292984485626,-0.776677012443542,0.612675428390503,-0.0309310555458069,-0.78218287229538,0.622280836105347,0.146438419818878,-0.778306543827057,0.610569357872009,0.122892089188099,-0.784863710403442,0.607360303401947,0.144386038184166,-0.755827605724335,0.638652741909027,-0.0587190240621567,-0.80535352230072,0.589879512786865,0.376017391681671,-0.700702488422394,0.606322467327118,-0.0313800536096096,-0.785897016525269,0.617560684680939,-0.0665373355150223,-0.777444899082184,0.625421822071075,0.145309031009674,-0.765804767608643,0.626441061496735,0.122700072824955,-0.794113278388977,0.595255255699158,0.377182841300964,-0.704735517501831,0.600900173187256,-0.0573655739426613,-0.809970498085022,0.583658456802368,-0.346220016479492,-0.770330309867859,0.535465359687805,-0.0635657235980034,-0.788304448127747,0.611993074417114,-0.0376280508935452,-0.835516571998596,0.54817533493042,0.108222387731075,-0.753383338451386,0.648615002632141,-0.0633962824940681,-0.788914263248444,0.611224353313446,-0.34603488445282,-0.770981013774872,0.534647703170776,-0.0804868042469025,-0.977700769901276,0.193966552615166,0.0100076887756586,-0.978878974914551,0.204196110367775,-0.103617377579212,-0.975060701370239,0.196265205740929,0.0781926363706589,-0.975908100605011,0.203689336776733,0.0108174458146095,-0.980382025241852,0.196809858083725,-0.079321950674057,-0.979618191719055,0.184543386101723,-0.253118634223938,-0.950199604034424,0.181801110506058,
- -0.0802003666758537,-0.978181958198547,0.191645488142967,-0.104786820709705,-0.977589547634125,0.182588055729866,-0.0805124416947365,-0.977657556533813,0.194174319505692,-0.26698637008667,-0.956818878650665,0.114960514008999,0.0794240161776543,-0.976617157459259,0.199776694178581,-0.253212541341782,-0.951326489448547,0.175673857331276,-0.283814638853073,-0.940770268440247,0.185474425554276,-0.0827761813998222,-0.973623931407928,0.212613716721535,-0.17204412817955,-0.981161594390869,0.0878793001174927,0.0789125189185143,-0.976324558258057,0.201402917504311,-0.264940172433853,-0.95833832025528,0.106744579970837,-0.550644636154175,-0.83119785785675,0.0768153592944145,-0.279897809028625,-0.945116996765137,0.168555855751038,-0.25350284576416,-0.96310019493103,0.0904117599129677,-0.258703142404556,-0.931126356124878,0.257053703069687,-0.279677987098694,-0.945349216461182,0.16761602461338,-0.550643682479858,-0.831198930740356,0.0768105313181877,0.29474949836731,0.820087015628815,-0.490489542484283,0.0880872681736946,0.799039125442505,-0.594791650772095,-0.0364243313670158,0.815427958965302,-0.577711403369904,0.294443607330322,0.821148335933685,-0.488895058631897,-0.0378307029604912,0.819181025028229,-0.572286009788513,0.0770002603530884,0.851271629333496,-0.519044935703278,0.0480496808886528,0.858199894428253,-0.51106184720993,-0.275764226913452,0.765286922454834,-0.581627070903778,-0.0433664843440056,0.833634614944458,-0.550611197948456,-0.039116907864809,0.822584748268127,-0.567295491695404,-0.156154289841652,0.813303649425507,-0.560493767261505,0.078047476708889,0.835019528865814,-0.544656932353973,-0.0479375123977661,0.845181226730347,-0.532325744628906,-0.288411557674408,0.788445591926575,-0.543297648429871,-0.154508545994759,0.804732084274292,-0.573178291320801,0.0780192241072655,0.835483312606812,-0.543949127197266,-0.156625494360924,0.815757751464844,-0.556783437728882,-0.0523966103792191,0.83578896522522,-0.546544969081879,-0.290935397148132,0.792997121810913,-0.535268306732178,-0.301164507865906,0.779440820217133,-0.54933774471283,
- -0.156824871897697,0.816796243190765,-0.555202484130859,-0.156768530607224,0.816502809524536,-0.555649876594543,-0.301177769899368,0.779512882232666,-0.549228191375732,-0.0522215664386749,0.821321487426758,-0.568070411682129,0.0581353232264519,-0.509860873222351,0.858290374279022,0.145990967750549,-0.500590443611145,0.853285312652588,0.0473470203578472,-0.506965577602386,0.860665082931519,0.299617737531662,-0.465919107198715,0.8325554728508,0.145939141511917,-0.499856293201447,0.853724479675293,0.0581459924578667,-0.509998142719269,0.858208119869232,-0.114418275654316,-0.504775047302246,0.85563462972641,0.0583164878189564,-0.512190759181976,0.856889605522156,0.045394092798233,-0.519112050533295,0.853500008583069,0.0558932982385159,-0.481169998645782,0.874843657016754,-0.143013074994087,-0.5324587225914,0.834287106990814,0.295890480279922,-0.448802024126053,0.843223333358765,-0.114904873073101,-0.510812282562256,0.851978659629822,-0.149690702557564,-0.498754024505615,0.853719711303711,0.0569522716104984,-0.494689166545868,0.86720198392868,0.0379597321152687,-0.527710556983948,0.84857565164566,0.297159045934677,-0.454585045576096,0.839671909809113,-0.141731679439545,-0.538708031177521,0.830485284328461,-0.426576226949692,-0.51442414522171,0.743908941745758,-0.146207422018051,-0.516579329967499,0.843664169311523,-0.12041537463665,-0.582928478717804,0.803551197052002,0.0257469173520803,-0.478737026453018,0.877580761909485,-0.146088615059853,-0.517177700996399,0.843318045139313,-0.426386177539825,-0.515310287475586,0.743404448032379,0.451112806797028,-0.276466816663742,0.848565459251404,0.000999673269689083,-0.438184201717377,0.898884654045105,0.265943259000778,-0.395336538553238,0.879194617271423,0.450635731220245,-0.274201452732086,0.849553406238556,0.247165337204933,-0.3138647377491,0.916732370853424,-0.00146973901428282,-0.429686158895493,0.902977108955383,0.22566644847393,-0.306758403778076,0.924647986888886,-0.0107496716082096,-0.397381335496902,0.917590618133545,-0.205437868833542,-0.453033357858658,0.867499887943268,
- -0.00707440311089158,-0.410245418548584,0.911947846412659,0.248521640896797,-0.334895581007004,0.90889048576355,-0.094718299806118,-0.403508424758911,0.910060107707977,-0.0170236695557833,-0.375209093093872,0.926783859729767,-0.0957243964076042,-0.398393303155899,0.912205934524536,-0.218188911676407,-0.417094647884369,0.882284343242645,0.248838141560555,-0.34007802605629,0.906877338886261,0.138153851032257,-0.352271229028702,0.925644934177399,-0.0948370471596718,-0.402906149625778,0.910314559936523,-0.186581462621689,-0.422990560531616,0.886716604232788,-0.233409285545349,-0.371819198131561,0.898482501506805,-0.0965636447072029,-0.394104808568954,0.913978576660156,-0.0956412777304649,-0.398816972970963,0.912029504776001,0.139418616890907,-0.393892019987106,0.908521592617035,-0.188983038067818,-0.40464848279953,0.894731819629669,0.225531235337257,-0.572996616363525,0.787915468215942,-0.236842930316925,-0.677883982658386,0.69597327709198,0.0263620149344206,-0.669979214668274,0.741911649703979,0.22499743103981,-0.57100236415863,0.789514064788818,0.00162747304420918,-0.600621283054352,0.799531996250153,-0.23965260386467,-0.670425772666931,0.702207863330841,-0.0185908284038305,-0.591159105300903,0.80634069442749,-0.250050365924835,-0.641616821289063,0.725122630596161,-0.432231068611145,-0.651927590370178,0.623030304908752,-0.24595308303833,-0.653203010559082,0.716123521327972,0.0031110355630517,-0.617996454238892,0.786174714565277,-0.335094481706619,-0.63267320394516,0.698166489601135,-0.336141526699066,-0.628391981124878,0.701521515846252,-0.445575147867203,-0.619737446308136,0.646055936813354,-0.256865561008453,-0.621629297733307,0.739998042583466,0.00347853312268853,-0.622257113456726,0.782805204391479,-0.104708254337311,-0.622839391231537,0.775311052799225,-0.335219830274582,-0.632163763046265,0.698567569255829,-0.423911392688751,-0.630001664161682,0.650689661502838,-0.461015075445175,-0.578397154808044,0.672994673252106,-0.337016135454178,-0.624768257141113,0.704332828521729,-0.336060583591461,-0.628725111484528,0.701261758804321,
- -0.103024691343308,-0.658935964107513,0.745110273361206,-0.426638185977936,-0.6146639585495,0.663451611995697,0.14332626760006,-0.574827432632446,0.805624604225159,0.225402191281319,-0.562846958637238,0.795234024524689,0.132390826940537,-0.572870075702667,0.808883547782898,0.379719316959381,-0.519591867923737,0.765400230884552,0.225320994853973,-0.561327815055847,0.796330034732819,0.143301457166672,-0.574438273906708,0.805906534194946,-0.0325974635779858,-0.577180862426758,0.815965473651886,0.143477261066437,-0.577205061912537,0.803895890712738,0.130439653992653,-0.584176242351532,0.801076531410217,0.141478836536407,-0.546809017658234,0.825217306613922,-0.0623309090733528,-0.60615062713623,0.79290372133255,0.376266986131668,-0.503134727478027,0.77799654006958,-0.0330124944448471,-0.581792056560516,0.812667310237885,-0.0692900121212006,-0.572152733802795,0.817214906215668,0.142449483275414,-0.561295568943024,0.815264046192169,0.119762249290943,-0.59681111574173,0.793393671512604,0.377395361661911,-0.508451461791992,0.773983120918274,-0.0610643178224564,-0.612164497375488,0.788369059562683,-0.344846189022064,-0.590190172195435,0.729901909828186,-0.0661288499832153,-0.587799072265625,0.80629974603653,-0.0390958897769451,-0.648550868034363,0.760166585445404,0.105337150394917,-0.542965173721313,0.833122372627258,-0.06599210947752,-0.588468194007874,0.805822730064392,-0.344675630331039,-0.590988039970398,0.729336619377136,-0.0796912014484406,-0.884567856788635,0.459553092718124,0.00436680298298597,-0.883049011230469,0.469260513782501,-0.101004287600517,-0.881789982318878,0.460700064897537,0.0770057216286659,-0.880368888378143,0.46799647808075,0.00524091441184282,-0.886741399765015,0.462236136198044,-0.0785841718316078,-0.888893842697144,0.45132303237915,-0.256414175033569,-0.860743880271912,0.439740538597107,-0.0794012174010277,-0.885711073875427,0.457396268844604,-0.102067574858665,-0.887892067432404,0.448586583137512,-0.0797708928585052,-0.884252548217773,0.460145652294159,-0.265082836151123,-0.886015772819519,0.380404233932495,
- 0.0782599896192551,-0.882171869277954,0.464379578828812,-0.256507217884064,-0.863538205623627,0.434172600507736,-0.281066924333572,-0.851978302001953,0.441740393638611,-0.0818828567862511,-0.875689446926117,0.475881516933441,-0.168509542942047,-0.917268216609955,0.360865026712418,0.0777174681425095,-0.881393730640411,0.465945601463318,-0.262881189584732,-0.89014607667923,0.372200787067413,-0.550970077514648,-0.77646803855896,0.305825680494308,-0.276950895786285,-0.861477255821228,0.425623536109924,-0.256773859262466,-0.898620247840881,0.355736970901489,-0.254656195640564,-0.822255671024323,0.50896543264389,-0.27676048874855,-0.861903309822083,0.424883842468262,-0.550998866558075,-0.776394665241241,0.305960118770599,0.0591791048645973,-0.153865948319435,0.986317932605743,0.144860461354256,-0.147475972771645,0.978399872779846,0.0436739921569824,-0.149932861328125,0.987731099128723,0.299283474683762,-0.122992590069771,0.946204125881195,0.144783645868301,-0.146161317825317,0.97860848903656,0.0592381730675697,-0.154690116643906,0.986185491085052,-0.114423401653767,-0.150088250637054,0.982029020786285,0.0593530721962452,-0.156292989850044,0.985925912857056,0.0417953357100487,-0.163675978779793,0.985628485679626,0.0568829700350761,-0.122201710939407,0.990873992443085,-0.145950391888618,-0.182863101363182,0.972244620323181,0.29556331038475,-0.102851331233978,0.949770450592041,-0.114919930696487,-0.157151013612747,0.98086541891098,-0.152272894978523,-0.145767822861671,0.977530002593994,0.0578466020524502,-0.135406538844109,0.98910003900528,0.037956066429615,-0.17431677877903,0.983957827091217,0.296797215938568,-0.109460517764091,0.948646306991577,-0.144705533981323,-0.189994245767593,0.971062660217285,-0.431913673877716,-0.201309993863106,0.879161477088928,-0.148719996213913,-0.166797459125519,0.974710702896118,-0.120472714304924,-0.242204278707504,0.962716698646545,0.0255970600992441,-0.117556817829609,0.992736220359802,-0.148614525794983,-0.167414501309395,0.974621117115021,-0.431727886199951,-0.202301815152168,0.879025042057037,
- 0.452576816082001,0.0595105327665806,0.88973742723465,-0.00518858851864934,-0.0735512748360634,0.997278034687042,0.271735370159149,-0.0379048362374306,0.961625218391418,0.452123552560806,0.0618727542459965,0.889806747436523,0.248846814036369,0.0492926314473152,0.967287719249725,-0.00764611549675465,-0.064164400100708,0.997910141944885,0.230900302529335,0.0620052441954613,0.970999717712402,-0.0168438833206892,-0.0289537273347378,0.99943882226944,-0.199335798621178,-0.0969688147306442,0.975121676921844,-0.0132120456546545,-0.0428718514740467,0.998993217945099,0.250225007534027,0.0274154655635357,0.967799484729767,-0.0971299335360527,-0.0384675152599812,0.99452805519104,-0.0230372305959463,-0.00517448130995035,0.999721229076386,-0.0986260548233986,-0.0304748080670834,0.994657814502716,-0.212553724646568,-0.0572277493774891,0.975472152233124,0.250547707080841,0.0219961814582348,0.96785432100296,0.14098159968853,0.017877247184515,0.98985081911087,-0.0973105132579803,-0.0375047586858273,0.994547188282013,-0.190355509519577,-0.0633974596858025,0.97966605424881,-0.228414952754974,-0.00784464552998543,0.973532259464264,-0.0998524874448776,-0.0238951798528433,0.99471527338028,-0.0984754860401154,-0.0312808491289616,0.994647741317749,0.142037764191628,-0.0289615895599127,0.989437460899353,-0.192779541015625,-0.04305449873209,0.980297088623047,0.221669048070908,-0.239979863166809,0.945130944252014,-0.242849498987198,-0.369220435619354,0.89705091714859,0.0217731241136789,-0.345764845609665,0.938068568706512,0.221060395240784,-0.237243250012398,0.94596403837204,0.00328318541869521,-0.260856539011002,0.965371966362,-0.245524153113365,-0.360282182693481,0.899952590465546,-0.0212669558823109,-0.251025706529617,0.967746794223785,-0.255362927913666,-0.326395094394684,0.910085737705231,-0.435997813940048,-0.371857583522797,0.819529056549072,-0.251507014036179,-0.339870184659958,0.906218767166138,0.00480056786909699,-0.281006693840027,0.959693908691406,-0.337174952030182,-0.326373845338821,0.883058965206146,-0.337909668684006,-0.322639614343643,0.884149730205536,
- -0.448481440544128,-0.335054278373718,0.828615128993988,-0.261819005012512,-0.30323800444603,0.916240990161896,0.00517640076577663,-0.285982728004456,0.958220779895782,-0.105700850486755,-0.289553046226501,0.951307713985443,-0.337263137102127,-0.325927346944809,0.883190214633942,-0.424968034029007,-0.34248161315918,0.837919175624847,-0.462876260280609,-0.288987904787064,0.8379927277565,-0.33853679895401,-0.319426715373993,0.885075926780701,-0.337866634130478,-0.322859287261963,0.884086012840271,-0.10406256467104,-0.334695219993591,0.936563014984131,-0.427673786878586,-0.323691308498383,0.843989968299866,0.142547234892845,-0.23389795422554,0.961754679679871,0.229854315519333,-0.226236820220947,0.946564376354218,0.128542587161064,-0.230290785431862,0.964594721794128,0.381352841854095,-0.196944952011108,0.903206884860992,0.229765385389328,-0.224172040820122,0.947076976299286,0.142540708184242,-0.23378024995327,0.961784243583679,-0.0335851758718491,-0.232109874486923,0.97210955619812,0.142697289586067,-0.236616984009743,0.961067080497742,0.126538380980492,-0.243810683488846,0.961532413959503,0.140663027763367,-0.201196923851967,0.969398617744446,-0.0589097067713737,-0.270001500844955,0.961056113243103,0.37790110707283,-0.177176967263222,0.908734858036041,-0.0339923724532127,-0.2375468313694,0.970781147480011,-0.0666449293494225,-0.226425245404243,0.971745908260345,0.141604229807854,-0.217214837670326,0.965798079967499,0.12289959192276,-0.25681871175766,0.958613514900208,0.37904816865921,-0.183651506900787,0.906970024108887,-0.0575646348297596,-0.277452975511551,0.959013223648071,-0.346502155065537,-0.276358813047409,0.896416246891022,-0.0636536628007889,-0.243424221873283,0.967828929424286,-0.0400183722376823,-0.318840533494949,0.94696319103241,0.109306313097477,-0.194712802767754,0.974750757217407,-0.0634874328970909,-0.244363412261009,0.967603147029877,-0.346349209547043,-0.277229100465775,0.896206617355347,-0.0821062698960304,-0.650163531303406,0.755344927310944,0.00777796981856227,-0.644896805286407,0.764230072498322,
- -0.100170366466045,-0.647135436534882,0.755765736103058,0.0787648037075996,-0.642518222332001,0.762211561203003,0.00859194621443748,-0.650653779506683,0.759325921535492,-0.080893836915493,-0.657676160335541,0.748944759368896,-0.255100905895233,-0.635456383228302,0.728778958320618,-0.0818320140242577,-0.651872932910919,0.753899991512299,-0.101253211498261,-0.657353579998016,0.746748983860016,-0.0820806100964546,-0.650323688983917,0.755209863185883,-0.263635784387589,-0.682171225547791,0.68201071023941,0.0800024271011353,-0.645505905151367,0.759553790092468,-0.25520458817482,-0.640294253826141,0.724495649337769,-0.28034171462059,-0.626301765441895,0.727430164813995,-0.0844791904091835,-0.635122895240784,0.767777442932129,-0.167085319757462,-0.716914892196655,0.676842331886292,0.0794941708445549,-0.644279837608337,0.760647177696228,-0.261569529771805,-0.688517808914185,0.676405668258667,-0.549904406070709,-0.607224702835083,0.573483645915985,-0.276400595903397,-0.640271246433258,0.716697692871094,-0.255566954612732,-0.702248632907867,0.66447901725769,-0.25365287065506,-0.573222160339355,0.779151201248169,-0.276183545589447,-0.641025364398956,0.716106951236725,-0.549928188323975,-0.607127130031586,0.573563992977142,0.0563535206019878,0.105277113616467,0.992844998836517,0.145092383027077,0.109418012201786,0.983349323272705,0.0471204109489918,0.109197869896889,0.99290257692337,0.299122869968414,0.124744534492493,0.946025550365448,0.144998371601105,0.111102938652039,0.983174264431,0.0563977360725403,0.104644380509853,0.99290931224823,-0.111636444926262,0.107508338987827,0.987916648387909,0.0565299093723297,0.102753527462482,0.993099331855774,0.0451686903834343,0.0951956585049629,0.994433283805847,0.0540723130106926,0.137398958206177,0.98903876543045,-0.14870648086071,0.069595992565155,0.986429333686829,0.295404464006424,0.145375058054924,0.94424706697464,-0.112082190811634,0.100875198841095,0.988565504550934,-0.155961260199547,0.11052842438221,0.981559753417969,0.0550675503909588,0.123502165079117,0.990815222263336,0.0383000001311302,0.0853876993060112,0.995611488819122,
- 0.296611666679382,0.138763144612312,0.944863140583038,-0.147357746958733,0.0621312446892262,0.987129986286163,-0.42766672372818,0.0330501236021519,0.903332114219666,-0.152595460414886,0.0913703441619873,0.984055936336517,-0.117402285337448,0.0145679311826825,0.992977678775787,0.0260955952107906,0.141955718398094,0.989528954029083,-0.152455776929855,0.0905817076563835,0.984150469303131,-0.427457392215729,0.0319558195769787,0.903470516204834,0.45328751206398,0.286917150020599,0.843924760818481,3.48503235727549e-005,0.189888656139374,0.981805622577667,0.267369478940964,0.2088802754879,0.940681993961334,0.452869534492493,0.289058744907379,0.843418180942535,0.244876340031624,0.298014312982559,0.922617495059967,-0.00226393830962479,0.198672458529472,0.980063438415527,0.225965157151222,0.308681577444077,0.923934757709503,-0.0108752204105258,0.231432065367699,0.9727903008461,-0.206524446606636,0.155126512050629,0.966066062450409,-0.00748575013130903,0.218564838171005,0.975793719291687,0.246207728981972,0.275905042886734,0.92911684513092,-0.0916040316224098,0.221343874931335,0.970883905887604,-0.0167285185307264,0.25356912612915,0.967172622680664,-0.0928195640444756,0.227756902575493,0.969283938407898,-0.219620361924171,0.193404302000999,0.956222712993622,0.246515989303589,0.270429044961929,0.930643975734711,0.14030809700489,0.272451132535934,0.95188444852829,-0.0917503237724304,0.222115099430084,0.970694065093994,-0.186397925019264,0.19217012822628,0.96349710226059,-0.235257729887962,0.24018257856369,0.941788792610168,-0.0938326269388199,0.233110815286636,0.967912614345551,-0.0927089899778366,0.227173030376434,0.969431519508362,0.141270786523819,0.226365730166435,0.963743388652802,-0.188788086175919,0.211518362164497,0.958967804908752,0.222923099994659,0.0122901611030102,0.974758565425873,-0.242820248007774,-0.126500025391579,0.961788058280945,0.0238246414810419,-0.0932231098413467,0.995360255241394,0.222423315048218,0.014703075401485,0.974839329719543,0.000226877818931825,-0.00320209376513958,0.999994874000549,-0.245547652244568,-0.116986252367496,0.962299644947052,
- -0.0207578185945749,0.00800788216292858,0.999752461910248,-0.25559389591217,-0.0810864567756653,0.963377892971039,-0.431216686964035,-0.148115575313568,0.890007972717285,-0.251647889614105,-0.0953529924154282,0.963110268115997,0.00173473497852683,-0.0244790557771921,0.99969881772995,-0.336834698915482,-0.0875944271683693,0.937480449676514,-0.337523728609085,-0.0839375481009483,0.937567293643951,-0.444284826517105,-0.109087474644184,0.889219284057617,-0.262165993452072,-0.0568208210170269,0.963348627090454,0.00210817065089941,-0.0297485124319792,0.999555289745331,-0.101476259529591,-0.0347486548125744,0.994230926036835,-0.336916416883469,-0.087162159383297,0.937491476535797,-0.42110601067543,-0.114097625017166,0.899806320667267,-0.459419369697571,-0.0605173446238041,0.886155486106873,-0.338113188743591,-0.0807878226041794,0.937631487846375,-0.337486654520035,-0.0841348394751549,0.937562942504883,-0.0997375473380089,-0.0812586024403572,0.991690218448639,-0.423750400543213,-0.0950291231274605,0.900780379772186,0.14037412405014,0.0217235218733549,0.9898601770401,0.228426411747932,0.0254374817013741,0.973228812217712,0.130544632673264,0.0255709085613489,0.991112649440765,0.382534384727478,0.0425544083118439,0.922960758209229,0.228352174162865,0.0271036606281996,0.973201274871826,0.140334948897362,0.0225096382200718,0.9898481965065,-0.0296474155038595,0.0257436949759722,0.999228835105896,0.140523999929428,0.0186979621648788,0.989900708198547,0.128657013177872,0.0120147233828902,0.991616368293762,0.13856340944767,0.0564047135412693,0.988746047019959,-0.0620433278381824,-0.0108903013169765,0.998014032840729,0.379082441329956,0.0631718039512634,0.923204123973846,-0.0300300065428019,0.0203948486596346,0.999341011047363,-0.0690219104290009,0.0309841465204954,0.99713397026062,0.139553561806679,0.0378486588597298,0.989490926265717,0.121386848390102,-0.00159696338232607,0.99260401725769,0.380221307277679,0.0564815402030945,0.923169434070587,-0.0607745498418808,-0.018430108204484,0.997981369495392,-0.34585103392601,-0.0359058491885662,0.937602281570435,
- -0.0658671855926514,0.0119687784463167,0.997756719589233,-0.0359555184841156,-0.0641305670142174,0.997293591499329,0.107733823359013,0.0627574324607849,0.992197036743164,-0.0657297745347023,0.0111437849700451,0.997775256633759,-0.345662117004395,-0.0369672290980816,0.937630593776703,-0.0829610824584961,-0.43365740776062,0.897250771522522,0.00805334001779556,-0.426010310649872,0.904682576656342,-0.10107147693634,-0.430423408746719,0.896950662136078,0.0809037908911705,-0.423797756433487,0.902136504650116,0.00892980303615332,-0.433188587427139,0.901259064674377,-0.0818508714437485,-0.442068576812744,0.893239080905914,-0.253153592348099,-0.426690012216568,0.868244707584381,-0.0826695635914803,-0.435874938964844,0.896202445030212,-0.102196469902992,-0.44274052977562,0.890806794166565,-0.083037294447422,-0.433076530694962,0.897524118423462,-0.267834037542343,-0.482392370700836,0.834003925323486,0.0820680931210518,-0.427190661430359,0.900429308414459,-0.253242611885071,-0.432175368070602,0.865501403808594,-0.283891022205353,-0.418215781450272,0.862845122814178,-0.0851522535085678,-0.416777580976486,0.905011475086212,-0.173823997378349,-0.520680904388428,0.835868775844574,0.0816939473152161,-0.426100671291351,0.90097975730896,-0.265648752450943,-0.490533977746964,0.8299440741539,-0.553102314472198,-0.438616454601288,0.708303213119507,-0.279788255691528,-0.435400545597076,0.855654656887054,-0.253487288951874,-0.507232546806335,0.823686420917511,-0.259816527366638,-0.356120854616165,0.897593080997467,-0.279595702886581,-0.436192989349365,0.855313956737518,-0.55312705039978,-0.438497215509415,0.708357751369476,0.0635260194540024,0.449387580156326,0.891075313091278,0.148123502731323,0.449724286794662,0.880799472332001,0.0435621589422226,0.453315943479538,0.890284776687622,0.299506664276123,0.450985103845596,0.840778350830078,0.148044034838676,0.450963348150253,0.880178987979889,0.0635444819927216,0.449142277240753,0.891197681427002,-0.109049469232559,0.449044555425644,0.886829853057861,0.0637059360742569,0.446993798017502,0.892265737056732,
- 0.0416170246899128,0.440762281417847,0.896658599376678,0.0612763464450836,0.478559464216232,0.875914394855499,-0.144470036029816,0.415255904197693,0.898159742355347,0.295784026384354,0.469407945871353,0.83196634054184,-0.109426572918892,0.443707376718521,0.889465928077698,-0.151497021317482,0.451025605201721,0.879559278488159,0.0623166933655739,0.465241104364395,0.882987856864929,0.0398137085139751,0.431157201528549,0.901398003101349,0.297022849321365,0.463369131088257,0.834905087947845,-0.143150165677071,0.408595740795136,0.901419758796692,-0.427684485912323,0.349904090166092,0.833458542823792,-0.148083046078682,0.43358039855957,0.888864159584045,-0.114410743117332,0.365336149930954,0.923817992210388,0.0271507408469915,0.483340829610825,0.875011146068573,-0.147951245307922,0.432909518480301,0.889213144779205,-0.427499830722809,0.349022537469864,0.833922743797302,0.454457372426987,0.566084384918213,0.687762320041656,-0.00431105913594365,0.524259865283966,0.851547420024872,0.273319512605667,0.530004978179932,0.802739918231964,0.453962594270706,0.568202137947083,0.686341226100922,0.248574540019035,0.603466510772705,0.757653534412384,-0.00656224694103003,0.531747817993164,0.846877336502075,0.233050659298897,0.615922093391418,0.752547383308411,-0.0149458106607199,0.559260904788971,0.828856945037842,-0.20550748705864,0.487527191638947,0.848577558994293,-0.0116638401523232,0.548560202121735,0.836029708385468,0.249947905540466,0.585832417011261,0.77092570066452,-0.0949254855513573,0.548570990562439,0.830697894096375,-0.020654471591115,0.577658355236053,0.816017270088196,-0.096331000328064,0.55477899312973,0.826402246952057,-0.21824087202549,0.5192950963974,0.826258778572083,0.250268429517746,0.581430673599243,0.77414733171463,0.138434588909149,0.591131031513214,0.794606804847717,-0.0950960740447044,0.549324870109558,0.830180048942566,-0.1895392537117,0.519373953342438,0.833262026309967,-0.23344974219799,0.557296812534332,0.796819746494293,-0.0974986106157303,0.559930324554443,0.82278311252594,-0.0962009578943253,0.554204881191254,0.826802611351013,
- 0.139431938529015,0.552449703216553,0.821801722049713,-0.191932410001755,0.535905957221985,0.822171986103058,0.225725725293159,0.355742186307907,0.906915307044983,-0.239125087857246,0.221660777926445,0.945349514484406,0.0232727881520987,0.26507306098938,0.963947534561157,0.225118592381477,0.358445912599564,0.906001210212708,0.00739680137485266,0.35078838467598,0.936425566673279,-0.241908773779869,0.230870798230171,0.942432403564453,-0.0203950945287943,0.360175430774689,0.932661592960358,-0.252194195985794,0.265419572591782,0.930564641952515,-0.429971307516098,0.176438421010971,0.885434567928314,-0.248139396309853,0.251699000597,0.935454130172729,0.00889800675213337,0.330607354640961,0.943726420402527,-0.339581698179245,0.246321052312851,0.907750070095062,-0.340746164321899,0.251989036798477,0.905755817890167,-0.443017095327377,0.212628453969955,0.870933413505554,-0.25892361998558,0.288496434688568,0.921807110309601,0.00926967151463032,0.32557874917984,0.945469498634338,-0.102499611675739,0.318718284368515,0.94229120016098,-0.339721828699112,0.247000426054001,0.907513022422791,-0.422684162855148,0.211458384990692,0.881262421607971,-0.458143353462219,0.256972879171371,0.850922822952271,-0.341703206300735,0.25668740272522,0.904074490070343,-0.340643614530563,0.251487821340561,0.905933678150177,-0.100868470966816,0.273329496383667,0.95661723613739,-0.42521721124649,0.228572800755501,0.875753819942474,0.138536185026169,0.36982861161232,0.918713629245758,0.230381101369858,0.367192834615707,0.901162683963776,0.127697676420212,0.374579876661301,0.918358981609344,0.381499528884888,0.366069585084915,0.848793983459473,0.23029151558876,0.369187861680985,0.900370001792908,0.138543114066124,0.369711637496948,0.918759524822235,-0.0302434004843235,0.377012997865677,0.925714075565338,0.13868536055088,0.367305010557175,0.919702887535095,0.125691458582878,0.361804097890854,0.923742115497589,0.136624738574028,0.400536358356476,0.90603768825531,-0.062588170170784,0.340153127908707,0.938284933567047,0.378038972616196,0.385009825229645,0.841934680938721,
- -0.0306299142539501,0.372009098529816,0.927723586559296,-0.0701121762394905,0.381044417619705,0.921894490718842,0.137545809149742,0.386097311973572,0.912145972251892,0.119870938360691,0.349059373140335,0.929402232170105,0.379228115081787,0.378616273403168,0.844296038150787,-0.0612618215382099,0.332944691181183,0.940954208374023,-0.349484622478485,0.296371459960938,0.888833224773407,-0.0670691281557083,0.364506095647812,0.92878258228302,-0.0365696214139462,0.292183727025986,0.955662786960602,0.106411345303059,0.408506512641907,0.90653133392334,-0.0669112876057625,0.363648235797882,0.929130256175995,-0.34930893778801,0.295443594455719,0.889211058616638,-0.076905146241188,-0.0881717279553413,0.9931321144104,0.00877194385975599,-0.0789475068449974,0.996840178966522,-0.102546386420727,-0.0857081115245819,0.991028964519501,0.0824178382754326,-0.0773699432611465,0.99359005689621,0.00966054294258356,-0.0869448781013489,0.996166288852692,-0.0758252218365669,-0.0972876474261284,0.992363691329956,-0.254223734140396,-0.0926255509257317,0.962699770927429,-0.0766089707612991,-0.0906778573989868,0.99292927980423,-0.103732161223888,-0.0995800048112869,0.989607751369476,-0.077009491622448,-0.0872882306575775,0.993202149868011,-0.263246029615402,-0.155965253710747,0.952037990093231,0.0837728977203369,-0.0816560834646225,0.993133723735809,-0.254306256771088,-0.098581537604332,0.962086379528046,-0.279376715421677,-0.0855799987912178,0.956360161304474,-0.0790494978427887,-0.0698825493454933,0.994418203830719,-0.16941736638546,-0.189104199409485,0.967231810092926,0.0830402299761772,-0.0793380662798882,0.99338299036026,-0.261074006557465,-0.164948120713234,0.951121807098389,-0.549839019775391,-0.159738391637802,0.819854199886322,-0.275298267602921,-0.104035772383213,0.955713033676147,-0.254487097263336,-0.18334387242794,0.949537456035614,-0.254370898008347,-0.0143488449975848,0.967000305652618,-0.275101661682129,-0.104913450777531,0.955673813819885,-0.549849569797516,-0.159683078527451,0.819857776165009,0.128299221396446,0.975171983242035,-0.180496841669083,
- -0.0747116357088089,0.956067025661469,-0.283467888832092,-0.206353381276131,0.942241787910461,-0.263815611600876,0.127842083573341,0.975634694099426,-0.178306981921196,-0.207971900701523,0.943605363368988,-0.257597863674164,-0.0914148464798927,0.976378798484802,-0.195775300264359,-0.118486203253269,0.975574493408203,-0.184974759817123,-0.427293717861176,0.858567893505096,-0.283339530229568,-0.214279443025589,0.948594868183136,-0.23292076587677,-0.209377780556679,0.944762647151947,-0.252159684896469,-0.319088220596313,0.914138615131378,-0.25006702542305,-0.0893091186881065,0.96998929977417,-0.22615185379982,-0.219331413507462,0.952201008796692,-0.21261927485466,-0.44080775976181,0.864803552627563,-0.240423262119293,-0.317276537418365,0.911572813987732,-0.261477768421173,-0.0893573686480522,0.970143139362335,-0.225471928715706,-0.319813996553421,0.915147840976715,-0.245404645800591,-0.214450657367706,0.949709951877594,-0.228170901536942,-0.443608433008194,0.865916609764099,-0.231084868311882,-0.452072113752365,0.856347799301147,-0.249598696827888,-0.320518732070923,0.916117191314697,-0.240825831890106,-0.320283174514771,0.915794372558594,-0.24236199259758,-0.452110439538956,0.856405913829803,-0.249329671263695,-0.213147431612015,0.943938732147217,-0.252087384462357,0.295267879962921,0.464661210775375,-0.834809601306915,0.0897961333394051,0.394879281520844,-0.914334177970886,-0.0362197905778885,0.417224049568176,-0.908081591129303,0.294870167970657,0.466811627149582,-0.833749651908875,-0.0376344658434391,0.423208683729172,-0.905250251293182,0.0795315951108933,0.477950394153595,-0.874778926372528,0.0494634807109833,0.48836612701416,-0.871235847473145,-0.277866393327713,0.371248185634613,-0.885982513427734,-0.0432238653302193,0.446735024452209,-0.893621563911438,-0.0389299616217613,0.428678512573242,-0.902617990970612,-0.156814455986023,0.423608779907227,-0.892168641090393,0.0805492550134659,0.450769305229187,-0.888998806476593,-0.0478181429207325,0.465928971767426,-0.88352906703949,-0.290393054485321,0.410190224647522,-0.864532172679901,
- -0.155233487486839,0.410569876432419,-0.898518204689026,0.0805236622691154,0.451484352350235,-0.888638198375702,-0.157303333282471,0.427678883075714,-0.890138447284698,-0.0492817126214504,0.4502974152565,-0.891517579555511,-0.292939186096191,0.418238639831543,-0.859804093837738,-0.293735504150391,0.402207255363464,-0.867149829864502,-0.157576337456703,0.429959684610367,-0.888990640640259,-0.157491698861122,0.429251968860626,-0.889347553253174,-0.293720304965973,0.402074992656708,-0.867216408252716,-0.0490103326737881,0.428042382001877,-0.902428805828094,0.295121133327484,0.90279221534729,0.312841773033142,0.0902304723858833,0.968787312507629,0.230888813734055,-0.0393345579504967,0.96685791015625,0.25226679444313,0.294778943061829,0.902200043201447,0.314865857362747,-0.0407666005194187,0.965093731880188,0.258712887763977,0.0793014913797379,0.944542407989502,0.318670898675919,0.0504360310733318,0.942747175693512,0.329672455787659,-0.278145611286163,0.936816811561584,0.212153807282448,-0.0464129038155079,0.957672357559204,0.284094244241714,-0.0420872494578362,0.963424503803253,0.264654397964478,-0.15410740673542,0.95277339220047,0.261675029993057,0.0803323686122894,0.953794002532959,0.289523273706436,-0.0510487146675587,0.951017916202545,0.304891616106033,-0.290309906005859,0.92276656627655,0.253420740365982,-0.152722224593163,0.956153333187103,0.249893501400948,0.0803046897053719,0.953548491001129,0.290338516235352,-0.154640376567841,0.951418340206146,0.266251176595688,-0.0519853457808495,0.956008553504944,0.28869566321373,-0.292892247438431,0.91944020986557,0.262381047010422,-0.298149526119232,0.922592580318451,0.244806051254272,-0.155123263597488,0.950163424015045,0.270418673753738,-0.15496090054512,0.950588345527649,0.269015073776245,-0.298116713762283,0.922683417797089,0.244502991437912,-0.0517442710697651,0.962987780570984,0.26453223824501,-0.117246113717556,-0.923692941665649,0.364752888679504,0.00168437499087304,-0.933106482028961,0.359596282243729,0.0334553234279156,-0.939731121063232,0.340273678302765,-0.120255619287491,-0.930308818817139,0.346502602100372,
- -0.185081526637077,-0.91812652349472,0.350412249565125,0.00168188149109483,-0.933054864406586,0.359730452299118,0.0417270958423615,-0.925294280052185,0.376947373151779,0.00176578667014837,-0.934767961502075,0.355254530906677,0.192868128418922,-0.91749370098114,0.347860872745514,0.00166816613636911,-0.932772874832153,0.360460788011551,-0.185100376605988,-0.917809844017029,0.351230949163437,-0.0906796604394913,-0.923652708530426,0.372347861528397,0.193243101239204,-0.915209472179413,0.353622227907181,0.0017637643031776,-0.934727311134338,0.355361491441727,0.0914704725146294,-0.934809684753418,0.343167632818222,0.0878171175718308,-0.924065589904785,0.372009307146072,0.00162801670376211,-0.93194580078125,0.36259400844574,-0.0866981223225594,-0.932916343212128,0.349500715732574,-0.117745354771614,0.683216512203217,0.720660269260406,0.0115377986803651,0.68050754070282,0.732650220394135,0.0441447645425797,0.663669347763062,0.746722340583801,-0.120911858975887,0.66885507106781,0.733493864536285,-0.177582010626793,0.668582260608673,0.722123503684998,0.0115320524200797,0.68090033531189,0.73228532075882,0.0526418872177601,0.691980063915253,0.719994783401489,0.0115947406738997,0.676592886447906,0.736266016960144,0.198539808392525,0.661770045757294,0.722940146923065,0.0115231033414602,0.681511044502258,0.731717109680176,-0.177599757909775,0.669319808483124,0.721435606479645,-0.0924348384141922,0.688647925853729,0.71917998790741,0.198893994092941,0.665866792201996,0.719070613384247,0.0115958703681827,0.676514744758606,0.736337780952454,0.100392065942287,0.665394067764282,0.739710867404938,0.0974239632487297,0.686962842941284,0.720132410526276,0.0115072829648852,0.682588398456573,0.730712473392487,-0.0884943380951881,0.670268595218658,0.736823499202728,-0.11118595302105,0.721479117870331,-0.683451235294342,0.0172996874898672,0.732352793216705,-0.680705606937408,0.0502988547086716,0.746049821376801,-0.663987696170807,-0.114251248538494,0.734432756900787,-0.668995678424835,-0.171956986188889,0.723493993282318,-0.668571054935455,0.0172953568398952,0.73216837644577,-0.680904090404511,
- 0.0586321130394936,0.71908962726593,-0.692439436912537,0.0173813719302416,0.735812723636627,-0.676962018013,0.20422574877739,0.720963716506958,-0.66219574213028,0.0172819290310144,0.731599688529968,-0.681515395641327,-0.171980336308479,0.72280365228653,-0.669311285018921,-0.0866298079490662,0.719975352287292,-0.688571631908417,0.204553216695786,0.717023849487305,-0.66635936498642,0.0173811372369528,0.735803544521332,-0.676971971988678,0.112761348485947,0.738022804260254,-0.665287435054779,0.109316498041153,0.71761828660965,-0.687803685665131,0.017249695956707,0.730236947536469,-0.682976186275482,-0.0826319456100464,0.737235426902771,-0.670563876628876,-0.112669095396996,0.752300262451172,0.649114787578583,0.0103995129466057,0.750869154930115,0.660369098186493,0.0434135906398296,0.736017525196075,0.675568997859955,-0.115885891020298,0.739153683185577,0.663492500782013,-0.184831514954567,0.736721813678741,0.650444686412811,0.0103935291990638,0.751203238964081,0.65998911857605,0.0515168607234955,0.760836958885193,0.646894991397858,0.0104675525799394,0.7470463514328,0.664689540863037,0.194320902228355,0.731823563575745,0.653202652931213,0.010382691398263,0.751807510852814,0.659300863742828,-0.184847727417946,0.737390041351318,0.649682521820068,-0.086136668920517,0.758704900741577,0.64571475982666,0.194707229733467,0.73567795753479,0.64874267578125,0.0104692224413157,0.746951937675476,0.664795577526093,0.0957413613796234,0.735988736152649,0.670189678668976,0.0925086811184883,0.756377696990967,0.647560775279999,0.0103638311848044,0.752856373786926,0.658103287220001,-0.0820902213454247,0.74207079410553,0.665275990962982,-0.113295055925846,0.81392902135849,-0.569810509681702,0.0194783937186003,0.824584662914276,-0.565403163433075,0.0538441576063633,0.835947513580322,-0.546161651611328,-0.116233699023724,0.824387609958649,-0.553962767124176,-0.172821223735809,0.813771188259125,-0.55489593744278,0.0194778759032488,0.824561655521393,-0.565436720848084,0.0621837452054024,0.813537657260895,-0.578177869319916,0.0195425115525723,0.82730096578598,-0.561418890953064,
- 0.204064428806305,0.810813784599304,-0.548578798770905,0.019467368721962,0.824116587638855,-0.566085577011108,-0.172833919525146,0.81330281496048,-0.555578052997589,-0.0818320587277412,0.813430368900299,-0.57587718963623,0.204419612884521,0.807431101799011,-0.553414523601532,0.0195403266698122,0.827209234237671,-0.561554133892059,0.114886283874512,0.827850818634033,-0.54905754327774,0.111300826072693,0.810611963272095,-0.574909031391144,0.0194364339113235,0.822808861732483,-0.567985713481903,-0.0779483318328857,0.827684283256531,-0.555754244327545,-0.113290794193745,0.813913702964783,-0.569833040237427,0.0194780416786671,0.824569761753082,-0.565424859523773,0.0538500137627125,0.835932314395905,-0.546184301376343,-0.116230435669422,0.824376046657562,-0.553980648517609,-0.172821506857872,0.813759744167328,-0.554912447929382,0.019477603957057,0.824550151824951,-0.56545352935791,0.0621990412473679,0.81349515914917,-0.578236043453217,0.0195414386689663,0.827255487442017,-0.561485946178436,0.204069182276726,0.810769021511078,-0.548643171787262,0.0194671582430601,0.824107646942139,-0.566098630428314,-0.172834157943726,0.813294053077698,-0.555590808391571,-0.0818340331315994,0.813422918319702,-0.575887441635132,0.204423233866692,0.807396173477173,-0.55346417427063,0.0195394996553659,0.827174186706543,-0.561605989933014,0.114879339933395,0.827817738056183,-0.549109041690826,0.111304514110088,0.810629844665527,-0.574883103370667,0.0194368623197079,0.822826981544495,-0.567959666252136,-0.0779434069991112,0.827701926231384,-0.555728673934937,-0.117594353854656,-0.991184294223785,0.0610344707965851,0.00702967774122953,-0.99857497215271,0.0529038868844509,0.03888825699687,-0.998736977577209,0.0318152494728565,-0.120681881904602,-0.991833090782166,0.0412680953741074,-0.189828440546989,-0.980623781681061,0.0483962669968605,0.00703417090699077,-0.99858945608139,0.0526274405419827,0.0470107793807983,-0.9963738322258,0.0709169507026672,0.00709654809907079,-0.998785316944122,0.0487599335610867,0.191269770264626,-0.980391561985016,0.0474152937531471,
- 0.00702274264767766,-0.998552083969116,0.0533348843455315,-0.189846724271774,-0.980578184127808,0.0492412447929382,-0.0914925560355186,-0.993462800979614,0.0682700350880623,0.191565707325935,-0.980043172836304,0.053084772080183,0.00709073198959231,-0.998767733573914,0.0491193421185017,0.0904609337449074,-0.995237588882446,0.0363181792199612,0.0866063982248306,-0.993942379951477,0.0676601454615593,0.00697654346004128,-0.99839586019516,0.0561876557767391,-0.0871006399393082,-0.995293200016022,0.0424839854240417,-0.105905272066593,0.820078790187836,-0.562365412712097,0.0196010954678059,0.829779088497162,-0.557747662067413,0.0519377030432224,0.840852200984955,-0.538767099380493,-0.109258733689785,0.830966293811798,-0.545488357543945,-0.172676622867584,0.818782866001129,-0.547519326210022,0.019598139449954,0.829652786254883,-0.55793559551239,0.0603551976382732,0.818585813045502,-0.571204483509064,0.0196615867316723,0.832341730594635,-0.55391389131546,0.20565739274025,0.81526792049408,-0.541334688663483,0.0195879191160202,0.829219877719879,-0.55857914686203,-0.172691240906715,0.818300426006317,-0.548235714435577,-0.084975928068161,0.818245708942413,-0.568553447723389,0.2059206366539,0.812369346618652,-0.545575618743896,0.0196602400392294,0.832285523414612,-0.553998470306396,0.105196997523308,0.834443390369415,-0.540960073471069,0.101541303098202,0.817297577857971,-0.567198395729065,0.0195584744215012,0.827975213527679,-0.56042355298996,-0.0806829035282135,0.833128392696381,-0.54716295003891,-0.118499599397182,-0.846878111362457,0.518416345119476,0.00539517030119896,-0.857330799102783,0.514737606048584,0.037136759608984,-0.867286860942841,0.496421575546265,-0.121545150876045,-0.856717109680176,0.501261174678802,-0.182015761733055,-0.845081329345703,0.502700448036194,0.0053925234824419,-0.857267677783966,0.514842748641968,0.0454800128936768,-0.846562206745148,0.530343234539032,0.00550561165437102,-0.859951913356781,0.510345339775085,0.195116847753525,-0.843205749988556,0.500932633876801,0.00537359481677413,-0.856816470623016,0.515593528747559,
- -0.182045593857765,-0.844539999961853,0.503598570823669,-0.0939328148961067,-0.846217632293701,0.52449244260788,0.19537641108036,-0.84039831161499,0.505528151988983,0.00550709664821625,-0.859987080097198,0.510286092758179,0.0961116552352905,-0.861400544643402,0.49875009059906,0.0923873633146286,-0.84587174654007,0.525324285030365,0.00533058680593967,-0.855789303779602,0.517297089099884,-0.0897258073091507,-0.859536826610565,0.503135919570923,-0.122876264154911,0.708890080451965,0.694533109664917,-3.86034025723347e-006,0.707351922988892,0.706861555576324,0.0356701388955116,0.692393720149994,0.720637619495392,-0.125877156853676,0.695140302181244,0.707767605781555,-0.188851624727249,0.693119525909424,0.695643842220306,-3.62597279490728e-006,0.707337141036987,0.706876397132874,0.0436312630772591,0.718916475772858,0.693725764751434,5.41843146493193e-005,0.703657627105713,0.710539221763611,0.19532872736454,0.688859641551971,0.698082447052002,-1.26901677504065e-005,0.707912266254425,0.706300377845764,-0.188860580325127,0.693685472011566,0.695077061653137,-0.092617355287075,0.715175330638886,0.692781567573547,0.195679292082787,0.692886590957642,0.693986892700195,5.29088501934893e-005,0.703738927841187,0.710458695888519,0.0912780836224556,0.692248582839966,0.715863287448883,0.0878556817770004,0.7142533659935,0.694351136684418,-3.56271957571153e-005,0.709365487098694,0.704840838909149,-0.0886628851294518,0.697655320167542,0.710926115512848,-0.121826589107513,0.368935704231262,0.921436250209808,0.00448638061061502,0.362285971641541,0.932056188583374,0.043882492929697,0.34066903591156,0.939158737659454,-0.125187695026398,0.350016117095947,0.92834085226059,-0.182427242398262,0.354267120361328,0.917177796363831,0.00448789726942778,0.362147361040115,0.932110071182251,0.0522640980780125,0.377024412155151,0.924727559089661,0.00453000143170357,0.358289271593094,0.933599650859833,0.185885831713676,0.350633233785629,0.917879521846771,0.00448072096332908,0.362803637981415,0.931854963302612,-0.182437866926193,0.354997754096985,0.916893124580383,
- -0.0913006439805031,0.375919610261917,0.922143518924713,0.186265289783478,0.356225818395615,0.915646433830261,0.00452671851962805,0.358590453863144,0.933484017848969,0.0938371270895004,0.345933347940445,0.933554887771606,0.0904598534107208,0.374268889427185,0.922897517681122,0.00445390585809946,0.365251988172531,0.930898010730743,-0.0871680602431297,0.352192550897598,0.931859493255615,-0.103327669203281,-0.0521044284105301,-0.993281722068787,0.0150323305279016,-0.0443501621484756,-0.998903036117554,0.0453695133328438,-0.0243249740451574,-0.998674094676971,-0.106283873319626,-0.0330282226204872,-0.993787229061127,-0.174142524600029,-0.0408798642456532,-0.983871638774872,0.0150273144245148,-0.044655229896307,-0.998889446258545,0.0533011667430401,-0.0625483393669128,-0.996617615222931,0.0151165081188083,-0.0392178036272526,-0.999116361141205,0.20012691617012,-0.0377407595515251,-0.979042828083038,0.0150135522708297,-0.0454916283488274,-0.998851895332336,-0.174155592918396,-0.0416918508708477,-0.983835160732269,-0.08162971585989,-0.059512335807085,-0.994884371757507,0.200500950217247,-0.0438089743256569,-0.978713512420654,0.0151167614385486,-0.0392022207379341,-0.999116957187653,0.108141347765923,-0.0281883422285318,-0.993735909461975,0.104585349559784,-0.0589683949947357,-0.992766141891479,0.0149821368977427,-0.0473980084061623,-0.998763740062714,-0.0774616077542305,-0.0340464375913143,-0.996413826942444,-0.121381655335426,-0.784295439720154,0.608397245407104,-0.00327834719792008,-0.795510411262512,0.605931043624878,0.0357840210199356,-0.807578563690186,0.588673412799835,-0.124287150800228,-0.795572221279144,0.592973470687866,-0.18714602291584,-0.783396363258362,0.592677414417267,-0.00328009226359427,-0.795448362827301,0.606012463569641,0.0442417301237583,-0.783206582069397,0.620185554027557,-0.00319853937253356,-0.798298001289368,0.602254152297974,0.194714576005936,-0.78349381685257,0.590104818344116,-0.00329346745274961,-0.794979274272919,0.606627643108368,-0.187170997262001,-0.78279846906662,0.593459010124207,-0.0943186357617378,-0.783069431781769,0.61474084854126,
- 0.195079445838928,-0.779733240604401,0.594945430755615,-0.00320096965879202,-0.798214077949524,0.602365374565125,0.0973530188202858,-0.801037192344666,0.590645253658295,0.0935206413269043,-0.782264769077301,0.615886151790619,-0.00333392154425383,-0.793559312820435,0.608483791351318,-0.090455174446106,-0.798094868659973,0.595703542232513,-0.118785507977009,0.857518136501312,0.500552594661713,0.00808210205286741,0.858223080635071,0.513213455677032,0.0439250431954861,0.846002340316772,0.531366944313049,-0.122128762304783,0.84704315662384,0.517303109169006,-0.182115435600281,0.842990219593048,0.506163477897644,0.00807026121765375,0.858672201633453,0.512461602687836,0.0522994324564934,0.865575432777405,0.49804013967514,0.00816175621002913,0.855177164077759,0.518271505832672,0.193693101406097,0.838470995426178,0.509361684322357,0.0080579211935401,0.859139502048492,0.511678040027618,-0.182132601737976,0.84350061416626,0.505306243896484,-0.0940853357315063,0.861994206905365,0.498110413551331,0.194022014737129,0.841228842735291,0.504667937755585,0.00816621258854866,0.85500556230545,0.518554508686066,0.101759418845177,0.845329225063324,0.524465024471283,0.0986207574605942,0.860960006713867,0.499020874500275,0.00804537814110518,0.859613478183746,0.51088148355484,-0.0900673940777779,0.849149763584137,0.520415723323822,-0.113930888473988,0.501022279262543,-0.857902348041534,0.0188741330057383,0.512931048870087,-0.858222305774689,0.0484481900930405,0.530260920524597,-0.846449136734009,-0.117117866873741,0.517793238162994,-0.847451210021973,-0.171633258461952,0.507843136787415,-0.84417849779129,0.0188692342489958,0.512672424316406,-0.858376920223236,0.0565535388886929,0.496885269880295,-0.865971565246582,0.0189571361988783,0.517325520515442,-0.855578720569611,0.204191654920578,0.507218778133392,-0.837278246879578,0.018855594098568,0.511951565742493,-0.858807325363159,-0.171651944518089,0.507044434547424,-0.844654679298401,-0.0832718387246132,0.498663604259491,-0.862786412239075,0.204519897699356,0.502270996570587,-0.840175867080688,
- 0.0189572516828775,0.517331421375275,-0.855575144290924,0.106638886034489,0.52362447977066,-0.845248818397522,0.103230349719524,0.497865229845047,-0.861088693141937,0.0188240166753531,0.510283350944519,-0.859800338745117,-0.0793305560946465,0.520114064216614,-0.850404620170593,-0.119454234838486,0.903405606746674,0.411811888217926,0.00668014073744416,0.905549049377441,0.424188941717148,0.0372178554534912,0.8962282538414,0.44202908873558,-0.122595056891441,0.894903182983398,0.429090887308121,-0.183334276080132,0.889388024806976,0.418780982494354,0.00666868407279253,0.905889570713043,0.423461437225342,0.0454311855137348,0.912155330181122,0.407318860292435,0.00676901638507843,0.902883291244507,0.429832518100739,0.195768624544144,0.884899079799652,0.422644346952438,0.00665465649217367,0.90630567073822,0.422570675611496,-0.183351114392281,0.889821410179138,0.417852222919464,-0.0883205607533455,0.908432960510254,0.408594012260437,0.196152284741402,0.887345016002655,0.41730460524559,0.00677388114854693,0.902736127376556,0.430141419172287,0.0980461910367012,0.893556833267212,0.438113182783127,0.09452785551548,0.907327711582184,0.409659564495087,0.00663861213251948,0.906780123710632,0.42155185341835,-0.0844739750027657,0.898194909095764,0.431404709815979,-0.107288286089897,0.623339414596558,-0.7745561003685,0.0210582781583071,0.633704364299774,-0.773288667201996,0.0507958345115185,0.649497270584106,-0.758665323257446,-0.11029826104641,0.637979567050934,-0.762113094329834,-0.169685706496239,0.626627564430237,-0.760621190071106,0.0210581719875336,0.633698523044586,-0.773293435573578,0.0590029954910278,0.619281530380249,-0.782948970794678,0.021122058853507,0.637426257133484,-0.770221829414368,0.202364310622215,0.625493049621582,-0.753529787063599,0.0210476983338594,0.633088767528534,-0.77379298210144,-0.169700443744659,0.625952124595642,-0.761173903942108,-0.0802120417356491,0.620133101940155,-0.780385136604309,0.202753573656082,0.620702087879181,-0.757376968860626,0.0211198516190052,0.637296795845032,-0.770329117774963,0.108884252607822,0.642605543136597,-0.758420944213867,
- 0.105192422866821,0.618517756462097,-0.778697848320007,0.021016800776124,0.631290853023529,-0.775261342525482,-0.0764113515615463,0.639218688011169,-0.765219390392303,-0.107290089130402,0.623348236083984,-0.774548828601837,0.021058451384306,0.633714497089386,-0.773280382156372,0.050793532282114,0.649505615234375,-0.758658349514008,-0.110296040773392,0.637968778610229,-0.762122452259064,-0.169685930013657,0.626617550849915,-0.76062947511673,0.0210579950362444,0.633688271045685,-0.773301839828491,0.0590192303061485,0.619220435619354,-0.78299605846405,0.0211209822446108,0.637363314628601,-0.770273923873901,0.202369451522827,0.625430405139923,-0.753580391407013,0.0210476201027632,0.633084118366241,-0.773796796798706,-0.169700548052788,0.625947654247284,-0.761177539825439,-0.0802125707268715,0.62013041973114,-0.780387222766876,0.202757254242897,0.620656311511993,-0.757413506507874,0.0211190693080425,0.637251138687134,-0.770366907119751,0.10887772589922,0.642562925815582,-0.758458018302917,0.105196826159954,0.618546485900879,-0.778674423694611,0.021017299965024,0.63131982088089,-0.775237739086151,-0.0764056146144867,0.639247059822083,-0.765196263790131,-0.119345963001251,-0.934312999248505,0.335880547761917,0.00223961751908064,-0.944045424461365,0.329807847738266,0.0418321453034878,-0.950098097324371,0.309133768081665,-0.122520267963409,-0.940526247024536,0.316858321428299,-0.191472545266151,-0.927768528461456,0.320287138223648,0.00224118656478822,-0.94407457113266,0.329724431037903,0.0498283803462982,-0.936999559402466,0.345758467912674,0.00231604953296483,-0.94548100233078,0.325669348239899,0.184539318084717,-0.929174959659576,0.320279806852341,0.00222819880582392,-0.943828999996185,0.330426782369614,-0.191495552659035,-0.927460014820099,0.321165710687637,-0.0956267341971397,-0.934723317623138,0.342268705368042,0.184827864170074,-0.927278995513916,0.325564563274384,0.00231177965179086,-0.945401549339294,0.325899630784988,0.092686265707016,-0.945178151130676,0.313125371932983,0.0888111889362335,-0.935153007507324,0.342930674552917,
- 0.00218276376836002,-0.942967355251312,0.332878351211548,-0.0912844464182854,-0.943629324436188,0.31816828250885,-0.102733090519905,0.631169617176056,-0.768811345100403,0.0211803764104843,0.640842854976654,-0.767379820346832,0.0489014387130737,0.656286478042603,-0.752925395965576,-0.105857536196709,0.645852327346802,-0.756087958812714,-0.169527858495712,0.63349437713623,-0.754947125911713,0.0211775489151478,0.640677332878113,-0.767518103122711,0.0571875348687172,0.626078903675079,-0.777659952640533,0.0212402623146772,0.644362330436707,-0.764425277709961,0.206669062376022,0.631764113903046,-0.747102439403534,0.0211674254387617,0.64008367061615,-0.768013596534729,-0.169544488191605,0.63279914855957,-0.75552624464035,-0.0849438235163689,0.627033770084381,-0.774346947669983,0.207009360194206,0.627315938472748,-0.750747501850128,0.021238861605525,0.644279658794403,-0.764495015144348,0.104110106825829,0.650688171386719,-0.752174317836761,0.100176423788071,0.6261026263237,-0.773278832435608,0.0211380925029516,0.638364791870117,-0.769443690776825,-0.0808205977082253,0.64687043428421,-0.758305132389069,-0.117045819759369,-0.502539277076721,0.856594741344452,0.00131665985099971,-0.512846708297729,0.85847932100296,0.0372884012758732,-0.530813276767731,0.846668064594269,-0.11988353729248,-0.518569767475128,0.846589267253876,-0.188600957393646,-0.506441593170166,0.841395616531372,0.00131426972802728,-0.512728571891785,0.858549892902374,0.0457640774548054,-0.496440052986145,0.866863965988159,0.00139873893931508,-0.516857147216797,0.856070518493652,0.193807572126389,-0.507739007472992,0.839428246021271,0.00130051642190665,-0.512055575847626,0.858951330184937,-0.188619628548622,-0.505690336227417,0.84184318780899,-0.0903033018112183,-0.497376918792725,0.862821817398071,0.194177031517029,-0.502420544624329,0.84253716468811,0.0013966882834211,-0.516758024692535,0.856130361557007,0.0925035551190376,-0.524342715740204,0.846467852592468,0.0887604653835297,-0.49780797958374,0.86273330450058,0.00126051541883498,-0.510099709033966,0.860114336013794,
- -0.0862453579902649,-0.518982291221619,0.850422918796539,-0.114342138171196,0.982576429843903,0.146525368094444,0.00901525001972914,0.987485647201538,0.157451003789902,0.041904803365469,0.983091056346893,0.178258284926414,-0.117600508034229,0.97913259267807,0.165739327669144,-0.181158825755119,0.970983326435089,0.156118810176849,0.00901490077376366,0.987494111061096,0.15739805996418,0.0504855588078499,0.988923370838165,0.139577850699425,0.00904455035924912,0.98676735162735,0.16189070045948,0.197555929422379,0.96696925163269,0.161065742373466,0.00901023391634226,0.987606346607208,0.156693026423454,-0.181170135736465,0.971119999885559,0.155253082513809,-0.090143047273159,0.985920906066895,0.14083394408226,0.197913438081741,0.967812478542328,0.155464634299278,0.00904302392154932,0.986805260181427,0.161659061908722,0.0983253195881844,0.980081856250763,0.172544822096825,0.0952479317784309,0.985075712203979,0.143365487456322,0.00899521820247173,0.987962782382965,0.154429912567139,-0.08600864559412,0.982250869274139,0.166690647602081,-0.11224988847971,0.146362438797951,-0.982841908931732,0.0180223062634468,0.156978875398636,-0.98743748664856,0.0512697473168373,0.178080961108208,-0.982679307460785,-0.115315712988377,0.165478676557541,-0.97944837808609,-0.17239898443222,0.157271683216095,-0.972390949726105,0.0180234313011169,0.157063618302345,-0.98742401599884,0.0595929361879826,0.139337122440338,-0.988450229167938,0.0180809255689383,0.16141864657402,-0.986720383167267,0.198916837573051,0.159020200371742,-0.967028796672821,0.018013596534729,0.15632101893425,-0.987542033195496,-0.172416865825653,0.156367227435112,-0.972533643245697,-0.0812009498476982,0.140886902809143,-0.986690163612366,0.199223160743713,0.15351665019989,-0.967854738235474,0.0180777199566364,0.161175280809402,-0.986760318279266,0.108084909617901,0.171145111322403,-0.979299247264862,0.104755915701389,0.141660109162331,-0.984357059001923,0.0179799646139145,0.153787210583687,-0.987940490245819,-0.0769352540373802,0.16645547747612,-0.983043015003204,-0.119800962507725,0.991720080375671,0.0462494343519211,
- 0.0083112521097064,0.99832808971405,0.0572007782757282,0.0400546938180923,0.996212184429169,0.0771808847784996,-0.122837215662003,0.990287184715271,0.0651330202817917,-0.180660918354988,0.981852769851685,0.057678297162056,0.00831106677651405,0.998329520225525,0.0571757294237614,0.0480554811656475,0.998062491416931,0.0395214520394802,0.00834699161350727,0.998039484024048,0.0620287209749222,0.193827226758003,0.979013025760651,0.0629642233252525,0.00830522924661636,0.998374402523041,0.0563893914222717,-0.180669769644737,0.981900930404663,0.0568246729671955,-0.0815500169992447,0.995864748954773,0.0400398150086403,0.194219157099724,0.97929847240448,0.0570408254861832,0.00834550894796848,0.998051941394806,0.0618280135095119,0.0955452919006348,0.992621421813965,0.074658140540123,0.0919497609138489,0.994842350482941,0.0428269095718861,0.00828713271766901,0.998508989810944,0.0539567805826664,-0.0776179134845734,0.994841396808624,0.06531672924757,-0.106701970100403,0.290495008230209,-0.950908720493317,0.0197512935847044,0.300689429044724,-0.95351767539978,0.0547406263649464,0.321412891149521,-0.945355594158173,-0.109711572527885,0.308708220720291,-0.9448082447052,-0.177005112171173,0.298307120800018,-0.937913775444031,0.0197547078132629,0.301005989313126,-0.953417718410492,0.0630238950252533,0.284156531095505,-0.956704258918762,0.0197944305837154,0.304705828428268,-0.952240824699402,0.20294351875782,0.30020198225975,-0.932036876678467,0.0197474919259548,0.300336599349976,-0.953628838062286,-0.177016973495483,0.297534435987473,-0.938156843185425,-0.0781840905547142,0.284853219985962,-0.955377459526062,0.20333306491375,0.294321000576019,-0.9338259100914,0.0197902880609035,0.304319024085999,-0.952364563941956,0.113006062805653,0.313313335180283,-0.942902088165283,0.10948458313942,0.284038990736008,-0.952541351318359,0.0197176057845354,0.297572314739227,-0.954495668411255,-0.0743265971541405,0.308400183916092,-0.948348522186279,-0.10670281201601,0.290500104427338,-0.950907051563263,0.0197513625025749,0.300695896148682,-0.953515529632568,
- 0.0547395907342434,0.321417480707169,-0.945354104042053,-0.109708748757839,0.308691084384918,-0.944814145565033,-0.177005335688591,0.298291385173798,-0.937918663024902,0.0197545345872641,0.300989955663681,-0.953422784805298,0.0630369186401367,0.284097284078598,-0.956721007823944,0.019793726503849,0.304639786481857,-0.952262043952942,0.202947810292244,0.300137937068939,-0.932056546211243,0.019747382029891,0.300326466560364,-0.953632056713104,-0.177017122507095,0.297524631023407,-0.938159942626953,-0.0781852379441261,0.284846127033234,-0.955379486083984,0.203336045145988,0.294275492429733,-0.933839619159698,0.0197897907346487,0.304272562265396,-0.952379524707794,0.113000720739365,0.313268452882767,-0.94291764497757,0.109488517045975,0.284071326255798,-0.952531218528748,0.0197179596871138,0.297604888677597,-0.954485595226288,-0.0743213221430779,0.308432072401047,-0.948338568210602,-0.116297893226147,-0.743026435375214,0.659080147743225,0.00669017899781466,-0.753520607948303,0.657390296459198,0.0445187836885452,-0.766949355602264,0.640161693096161,-0.11930376291275,-0.755565106868744,0.644118010997772,-0.187637507915497,-0.742464065551758,0.643070220947266,0.00669399928301573,-0.753673732280731,0.65721470117569,0.0523191429674625,-0.741482675075531,0.668929100036621,0.00675793876871467,-0.756253123283386,0.654244244098663,0.191014558076859,-0.742586076259613,0.641934037208557,0.00668240990489721,-0.75320565700531,0.657751202583313,-0.18765951693058,-0.741862118244171,0.643758118152618,-0.0980743169784546,-0.740338921546936,0.665041148662567,0.191303014755249,-0.738857865333557,0.646136462688446,0.00675230985507369,-0.756027340888977,0.65450519323349,0.0942766442894936,-0.760465800762177,0.642498016357422,0.0904725342988968,-0.740235269069672,0.666233062744141,0.00663626054301858,-0.751342058181763,0.659879565238953,-0.0937198847532272,-0.757598757743835,0.645957350730896,-0.103027760982513,0.299471348524094,-0.948526322841644,0.0198457259684801,0.309516370296478,-0.950687110424042,0.0528361909091473,0.329852372407913,-0.942552804946899,
- -0.106334961950779,0.318328440189362,-0.941997826099396,-0.176866382360458,0.30680850148201,-0.935193479061127,0.0198471006006002,0.309645861387253,-0.950644791126251,0.0611999444663525,0.292437821626663,-0.954324185848236,0.0198858324438334,0.313306897878647,-0.949443697929382,0.20476245880127,0.30836284160614,-0.92896968126297,0.0198401603847742,0.308992356061935,-0.950857579708099,-0.176880106329918,0.306005626916885,-0.93545389175415,-0.0842409208416939,0.293964624404907,-0.95209676027298,0.2050891071558,0.302973717451096,-0.93066942691803,0.0198823139071465,0.312973648309708,-0.949553668498993,0.106697857379913,0.323020428419113,-0.940358102321625,0.103092364966869,0.293530523777008,-0.95037454366684,0.0198115259408951,0.306304395198822,-0.951727449893951,-0.0802069008350372,0.318056493997574,-0.94467294216156,-0.117591753602028,-0.264537185430527,0.957179427146912,-0.00324930087663233,-0.27446448802948,0.961591720581055,0.0354419834911823,-0.294396102428436,0.955026090145111,-0.120592139661312,-0.283070921897888,0.951487481594086,-0.189821898937225,-0.27254918217659,0.943230926990509,-0.00325122009962797,-0.27435639500618,0.961622595787048,0.0439058803021908,-0.255993485450745,0.96568101644516,-0.00316974450834095,-0.278883188962936,0.960319817066193,0.187927037477493,-0.274338871240616,0.943091630935669,-0.00326462369412184,-0.273611009120941,0.961834907531738,-0.189841046929359,-0.271700412034988,0.943472027778625,-0.095550924539566,-0.258652567863464,0.961233019828796,0.188309639692307,-0.268310010433197,0.944748222827911,-0.00317205162718892,-0.278756231069565,0.960356652736664,0.0941382348537445,-0.288407742977142,0.952868819236755,0.0903506502509117,-0.258421987295151,0.961797714233398,-0.00330509920604527,-0.271361947059631,0.962471723556519,-0.0913052931427956,-0.283309668302536,0.954672157764435,-0.117160491645336,0.98673939704895,-0.112333424389362,0.00702621694654226,0.994719505310059,-0.10239002853632,0.0423169992864132,0.995839297771454,-0.080706812441349,-0.120611935853958,0.988395512104034,-0.0923421382904053,
- -0.183139830827713,0.978063881397247,-0.0992524772882462,0.00702362135052681,0.99468868970871,-0.102689072489738,0.0510871186852455,0.991456687450409,-0.120015449821949,0.00706854555755854,0.995209991931915,-0.0975044816732407,0.196471199393272,0.976011037826538,-0.093816377222538,0.00701693817973137,0.99460905790329,-0.10345821082592,-0.183150932192802,0.977973341941834,-0.100120328366756,-0.090985581278801,0.98886239528656,-0.117782823741436,0.196784511208534,0.975424706935883,-0.0991087779402733,0.00706804543733597,0.995204329490662,-0.0975622311234474,0.101926513016224,0.99106627702713,-0.0860155150294304,0.098798930644989,0.988358795642853,-0.115696512162685,0.0070007536560297,0.994413912296295,-0.1053182259202,-0.0868537575006485,0.991977512836456,-0.0918533429503441,-0.109451934695244,-0.111668474972248,-0.987699568271637,0.0140418838709593,-0.102929964661598,-0.994589507579803,0.0498369298875332,-0.0814090147614479,-0.995433986186981,-0.112677969038486,-0.091856874525547,-0.989376664161682,-0.176310762763023,-0.0983859375119209,-0.979405283927917,0.014034871943295,-0.103333652019501,-0.994547724723816,0.0581764131784439,-0.120362222194672,-0.99102395772934,0.0141342552378774,-0.0975999161601067,-0.995125353336334,0.204095870256424,-0.0949507877230644,-0.974335253238678,0.0140198236331344,-0.10419911891222,-0.99445766210556,-0.176331534981728,-0.0993494093418121,-0.979304313659668,-0.0830164700746536,-0.117140114307404,-0.989639580249786,0.204427719116211,-0.100677475333214,-0.973690569400787,0.0141357844695449,-0.0975114703178406,-0.995134115219116,0.109800815582275,-0.0867193192243576,-0.990163505077362,0.10629815608263,-0.117211982607841,-0.98740166425705,0.0139895128086209,-0.10594018548727,-0.994274199008942,-0.0790693834424019,-0.0925309509038925,-0.992565393447876,-0.119722306728363,0.970128238201141,-0.210992410778999,0.00612053275108337,0.979356348514557,-0.202048778533936,0.039656400680542,0.982475340366364,-0.182125672698021,-0.122854076325893,0.973656713962555,-0.192092478275299,-0.179106757044792,0.963843643665314,-0.197297245264053,
- 0.00611835904419422,0.97930908203125,-0.202277734875679,0.0477019399404526,0.974541127681732,-0.219075590372086,0.00616927212104201,0.980403065681458,-0.196905359625816,0.190902724862099,0.962702393531799,-0.191729739308357,0.00611049868166447,0.979138016700745,-0.203104987740517,-0.179116725921631,0.96366411447525,-0.198163226246834,-0.0832044556736946,0.9725301861763,-0.217398896813393,0.191283687949181,0.961469888687134,-0.197449177503586,0.00616885116323829,0.980394184589386,-0.196949765086174,0.100278466939926,0.977690279483795,-0.184569671750069,0.0969241037964821,0.971800982952118,-0.214961722493172,0.0060912799090147,0.978717029094696,-0.205124571919441,-0.079374261200428,0.97797429561615,-0.193044632673264,-0.109000839293003,0.0355411097407341,-0.993406176567078,0.016432948410511,0.0446233712136745,-0.998868823051453,0.0504534766077995,0.0660044252872467,-0.996542930603027,-0.111885271966457,0.0543303489685059,-0.992234826087952,-0.172786325216293,0.0465748272836208,-0.983857572078705,0.0164294298738241,0.0443893559277058,-0.998879194259644,0.0586686730384827,0.0272433962672949,-0.997905790805817,0.0165104512125254,0.0497907474637032,-0.998623192310333,0.202258601784706,0.0499237515032291,-0.978058934211731,0.016416871920228,0.0435548909008503,-0.998916149139404,-0.172799557447433,0.0457357950508595,-0.98389458656311,-0.0752556324005127,0.0280373133718967,-0.996770024299622,0.202651485800743,0.0437585078179836,-0.97827285528183,0.016510060057044,0.0497647076845169,-0.998624503612518,0.110386073589325,0.0600894652307034,-0.99207067489624,0.10688766092062,0.0294057503342628,-0.993836283683777,0.0163871068507433,0.0415805019438267,-0.999000787734985,-0.0711146742105484,0.0535482354462147,-0.996029853820801,-0.109001085162163,0.0355427078902721,-0.993406116962433,0.0164329931139946,0.0446264035999775,-0.998868584632874,0.0504532381892204,0.066005527973175,-0.996542870998383,-0.111883349716663,0.0543177798390388,-0.992235720157623,-0.172786504030228,0.0465636253356934,-0.983858048915863,0.0164292585104704,0.0443779677152634,-0.998879730701447,
- 0.0586820207536221,0.0271799881011248,-0.997906625270844,0.0165093839168549,0.0497194081544876,-0.99862676858902,0.202262997627258,0.0498549267649651,-0.978061437606812,0.0164167713373899,0.0435482822358608,-0.998916447162628,-0.172799661755562,0.0457293391227722,-0.983894884586334,-0.0752561911940575,0.0280338525772095,-0.996770083904266,0.202654540538788,0.0437097288668156,-0.978274285793304,0.0165093131363392,0.049714706838131,-0.998627007007599,0.110380627214909,0.060041006654501,-0.992074191570282,0.106891617178917,0.0294401124119759,-0.993834733963013,0.0163876060396433,0.0416135005652905,-0.9989994764328,-0.0711090192198753,0.0535828061401844,-0.996028304100037,-0.11620969325304,-0.547911465167999,0.828425228595734,0.00226856768131256,-0.558727324008942,0.82934832572937,0.0415025725960732,-0.575910747051239,0.816458404064178,-0.119398877024651,-0.564319372177124,0.816876709461212,-0.191431283950806,-0.551414847373962,0.811970293521881,0.00227049109525979,-0.558817446231842,0.829287588596344,0.0495042502880096,-0.543483018875122,0.837959170341492,0.00234508444555104,-0.562359571456909,0.826889455318451,0.19115224480629,-0.552155733108521,0.811532557010651,0.00225751171819866,-0.558200597763062,0.829702973365784,-0.191454812884331,-0.550634682178497,0.812494039535522,-0.0922689735889435,-0.543850541114807,0.834094166755676,0.191452249884605,-0.547390937805176,0.814683496952057,0.00234064273536205,-0.562149941921234,0.827032029628754,0.0923292189836502,-0.56929212808609,0.816934406757355,0.088664785027504,-0.544074773788452,0.834338784217834,0.00221170950680971,-0.556024789810181,0.831162810325623,-0.0881363451480865,-0.564832150936127,0.820485591888428,-0.102997146546841,0.0452779307961464,-0.993650615215302,0.0165713373571634,0.0538692362606525,-0.998410582542419,0.0485585518181324,0.0748777315020561,-0.996009826660156,-0.106115430593491,0.064639076590538,-0.992250621318817,-0.172638222575188,0.0554885528981686,-0.983421206474304,0.0165650229901075,0.0534452497959137,-0.998433470726013,0.0568517632782459,0.0358571782708168,-0.997738540172577,
- 0.016644936054945,0.0588241405785084,-0.998129606246948,0.202151730656624,0.0584905445575714,-0.977606117725372,0.0165527742356062,0.0526236742734909,-0.998477220535278,-0.172653317451477,0.0546156913042068,-0.98346734046936,-0.0815678089857101,0.0379703715443611,-0.995944261550903,0.202477693557739,0.0528522245585918,-0.977859616279602,0.0166454184800386,0.0588567778468132,-0.998127639293671,0.103638231754303,0.0699289813637733,-0.992153763771057,0.100167565047741,0.03937678784132,-0.994191110134125,0.0165244936943054,0.0507295392453671,-0.998575806617737,-0.0773575380444527,0.0637453868985176,-0.994963467121124,-0.121333844959736,0.0909287557005882,0.988438189029694,-0.00130308663938195,0.0827459916472435,0.996569931507111,0.0374526903033257,0.0611799545586109,0.997423946857452,-0.124246172606945,0.0718459561467171,0.989647030830383,-0.183435827493668,0.0783265382051468,0.979906260967255,-0.0013019636971876,0.0826746821403503,0.996575832366943,0.0460954047739506,0.101276405155659,0.993789970874786,-0.0012360728578642,0.078490637242794,0.996914088726044,0.195360153913498,0.0757396221160889,0.977802574634552,-0.00131339963991195,0.0834008678793907,0.996515214443207,-0.18345895409584,0.0792763829231262,0.979825556278229,-0.0955059006810188,0.096716471016407,0.990719199180603,0.195755451917648,0.0820539146661758,0.977213978767395,-0.00124019046779722,0.0787521004676819,0.996893465518951,0.0946147963404655,0.0661099329590797,0.993316531181335,0.090531513094902,0.0984180793166161,0.991018652915955,-0.00135490950196981,0.0860367491841316,0.996291041374207,-0.0916502922773361,0.0726134851574898,0.993140339851379,-0.119912020862103,0.883122086524963,-0.453559786081314,0.00352184637449682,0.894442856311798,-0.447168409824371,0.0420918948948383,0.903064012527466,-0.427438497543335,-0.12317617982626,0.89151668548584,-0.435919553041458,-0.182880744338036,0.880038797855377,-0.438276588916779,0.00351631967350841,0.89420884847641,-0.447636485099792,0.0506926663219929,0.885261476039886,-0.462323069572449,0.00357788079418242,0.896804213523865,-0.442413151264191,
- 0.197561532258987,0.879843711853027,-0.432255387306213,0.00350753869861364,0.893836557865143,-0.448379456996918,-0.182893544435501,0.879629492759705,-0.439092189073563,-0.0916018411517143,0.883481085300446,-0.459423810243607,0.1978829652071,0.877399265766144,-0.437050193548203,0.00357902934774756,0.896852433681488,-0.442315399646759,0.0972415953874588,0.897691786289215,-0.429759800434113,0.0939013138413429,0.884303987026215,-0.457371830940247,0.00349185988306999,0.893170595169067,-0.449704438447952,-0.087399922311306,0.895664572715759,-0.43605762720108,-0.112072363495827,-0.453541040420532,-0.884160816669464,0.0175955090671778,-0.447580873966217,-0.894070327281952,0.0494122467935085,-0.427520096302032,-0.902654409408569,-0.115304745733738,-0.435584723949432,-0.892732203006744,-0.169202044606209,-0.438623458147049,-0.882598519325256,0.01758754812181,-0.44798469543457,-0.893868207931519,0.0579921863973141,-0.462893456220627,-0.88451486825943,0.017690634354949,-0.442730724811554,-0.896480083465576,0.204448655247688,-0.432950049638748,-0.877926528453827,0.0175720565021038,-0.448770463466644,-0.893474400043488,-0.169222384691238,-0.439481943845749,-0.88216757774353,-0.0844900831580162,-0.459185212850571,-0.884313523769379,0.204762697219849,-0.437959909439087,-0.87536484003067,0.0176926031708717,-0.442630141973495,-0.896529734134674,0.104962445795536,-0.430665731430054,-0.896387159824371,0.101526066660881,-0.45798048377037,-0.883145689964294,0.0175422914326191,-0.450277656316757,-0.892716228961945,-0.0803291723132133,-0.436571568250656,-0.896076142787933,-0.111296303570271,0.83459746837616,-0.539499998092651,0.00243996805511415,0.84485912322998,-0.534983277320862,0.042228139936924,0.854828357696533,-0.517189800739288,-0.114519193768501,0.844718754291534,-0.522815048694611,-0.185060858726501,0.831191539764404,-0.524283468723297,0.00243606395088136,0.84466677904129,-0.535286903381348,0.0499604046344757,0.834773659706116,-0.548322081565857,0.00250092754140496,0.847849309444427,-0.530231356620789,0.191230937838554,0.83292818069458,-0.519289314746857,
- 0.00242638448253274,0.844189643859863,-0.536039113998413,-0.185073122382164,0.830689251422882,-0.525074541568756,-0.0829635262489319,0.832942068576813,-0.547105610370636,0.191616803407669,0.829733967781067,-0.524237096309662,0.0025017186999321,0.847888052463531,-0.530169427394867,0.100798442959785,0.849460124969482,-0.517935454845428,0.097424678504467,0.833181321620941,-0.544350564479828,0.00240723928436637,0.84324437379837,-0.537524998188019,-0.0790053531527519,0.846879661083221,-0.525883078575134,-0.107670180499554,-0.317334324121475,-0.942181646823883,0.0199965126812458,-0.311020821332932,-0.950192809104919,0.0499795563519001,-0.289612203836441,-0.95583838224411,-0.110504493117332,-0.299488455057144,-0.947678983211517,-0.171814292669296,-0.303910315036774,-0.937079727649689,0.0199934151023626,-0.311218857765198,-0.950127959251404,0.058756597340107,-0.327564895153046,-0.942999958992004,0.0200722943991423,-0.306142121553421,-0.951774179935455,0.203929424285889,-0.298404484987259,-0.932398796081543,0.019981088116765,-0.312008142471313,-0.949869275093079,-0.171831220388412,-0.304780036211014,-0.936794102191925,-0.0797474235296249,-0.324589401483536,-0.942487180233002,0.204340353608131,-0.304365068674088,-0.93038010597229,0.020071666687727,-0.306182980537415,-0.951761066913605,0.113181985914707,-0.29372376203537,-0.949166059494019,0.109370499849319,-0.324218332767487,-0.939638555049896,0.0199511311948299,-0.313922852277756,-0.949238836765289,-0.075803779065609,-0.301078528165817,-0.950581669807434,-0.107670664787292,-0.31733113527298,-0.942182540893555,0.0199965834617615,-0.311016172170639,-0.950194239616394,0.0499789603054523,-0.289609640836716,-0.955839097499847,-0.110503129661083,-0.299497157335281,-0.947676360607147,-0.171814426779747,-0.303917407989502,-0.937077403068542,0.0199933014810085,-0.31122612953186,-0.950125575065613,0.0587695427238941,-0.327620774507523,-0.942979753017426,0.020071292296052,-0.306207031011581,-0.951753437519073,0.203933760523796,-0.29846653342247,-0.932378113269806,0.0199810341000557,-0.312011659145355,-0.949868142604828,
- -0.171831279993057,-0.304783403873444,-0.936792969703674,-0.0797475874423981,-0.324590355157852,-0.942486941814423,0.204343318939209,-0.304408878087997,-0.930365025997162,0.0200709607452154,-0.306228578090668,-0.95174640417099,0.113176465034485,-0.293768793344498,-0.949152767658234,0.109373904764652,-0.324191838502884,-0.939647376537323,0.0199515484273434,-0.313896119594574,-0.949247658252716,-0.0757993832230568,-0.301052331924438,-0.950590312480927,-0.117911614477634,-0.219781816005707,0.96839702129364,0.00362123246304691,-0.22994826734066,0.973196089267731,0.0395299643278122,-0.249617233872414,0.967537403106689,-0.121072620153427,-0.239129424095154,0.963409960269928,-0.188840836286545,-0.229110509157181,0.954907178878784,0.00362663343548775,-0.230291217565537,0.973115026950836,0.0471517071127892,-0.212576359510422,0.976006150245667,0.003681959817186,-0.233804434537888,0.97227668762207,0.189090937376022,-0.229960829019547,0.954653143882751,0.00361615046858788,-0.229625567793846,0.973272323608398,-0.188857704401016,-0.228314369916916,0.955094516277313,-0.0936156585812569,-0.214159920811653,0.972302258014679,0.189386978745461,-0.224422618746758,0.955911755561829,0.00367549248039722,-0.233393743634224,0.972375392913818,0.0941302478313446,-0.243388757109642,0.965350389480591,0.0906842350959778,-0.214478522539139,0.972509801387787,0.00356979435309768,-0.22668194770813,0.973962306976318,-0.0893358662724495,-0.23906546831131,0.966885089874268,-0.104143261909485,-0.308982342481613,-0.945348680019379,0.0201329626142979,-0.302204638719559,-0.953030467033386,0.048025369644165,-0.281145423650742,-0.958462715148926,-0.107456669211388,-0.289836525917053,-0.951024651527405,-0.171641930937767,-0.295425444841385,-0.939820647239685,0.0201270375400782,-0.302589893341064,-0.952908337116241,0.0568829402327538,-0.319473445415497,-0.945886492729187,0.0202046390622854,-0.297518670558929,-0.954502284526825,0.208324208855629,-0.28979817032814,-0.934140384197235,0.020115053281188,-0.303369104862213,-0.952660799026489,-0.171660959720612,-0.296330451965332,-0.939532339572906,
- -0.0882144793868065,-0.315086662769318,-0.944954395294189,0.208646014332771,-0.295131206512451,-0.932397246360779,0.0202048625797033,-0.297504067420959,-0.954506754875183,0.106762573122978,-0.284884095191956,-0.952597916126251,0.103142417967319,-0.314757347106934,-0.943551540374756,0.020086569711566,-0.305217653512955,-0.952070772647858,-0.0839439556002617,-0.290442705154419,-0.95320326089859,0.0560646168887615,-0.978839695453644,0.19679893553257,0.174717336893082,-0.966084778308868,0.190142184495926,0.209821432828903,-0.9628826379776,0.169799864292145,0.0537545457482338,-0.982622444629669,0.177661418914795,-0.0115485740825534,-0.982982933521271,0.183333605527878,0.174737691879272,-0.966160416603088,0.189739286899567,0.216330379247665,-0.953923046588898,0.207923054695129,0.174920618534088,-0.966837167739868,0.18608832359314,0.358402818441391,-0.915590882301331,0.182321146130562,0.174700930714607,-0.966023862361908,0.190466567873955,-0.0116140488535166,-0.982787728309631,0.184373036026955,0.080129399895668,-0.975628077983856,0.204277187585831,0.358487397432327,-0.914457082748413,0.187763795256615,0.174905896186829,-0.966782867908478,0.186383664608002,0.270761877298355,-0.946724832057953,0.174356311559677,0.265964031219482,-0.94188266992569,0.205231890082359,0.174556240439415,-0.965484797954559,0.193311080336571,0.0853033065795898,-0.980090439319611,0.179293319582939,-0.189811155200005,0.401263922452927,0.896079778671265,-0.0695118382573128,0.41718003153801,0.906161665916443,-0.03764558583498,0.404126673936844,0.913928031921387,-0.18975505232811,0.383459478616714,0.903853893280029,-0.256782293319702,0.374581277370453,0.89092743396759,-0.0694880858063698,0.417053550481796,0.906221807003021,-0.0356282517313957,0.439494997262955,0.897538185119629,-0.0686757117509842,0.412727266550064,0.908262014389038,0.120630167424679,0.436096370220184,0.891778171062469,-0.06961939483881,0.417752712965012,0.905889630317688,-0.256922394037247,0.375318109989166,0.890576899051666,-0.16742829978466,0.412107467651367,0.895619988441467,0.120070725679398,0.441479116678238,0.889201462268829,
- -0.0687090009450912,0.412904560565948,0.908178865909576,0.0243985261768103,0.415920794010162,0.90907347202301,0.0156665928661823,0.443968862295151,0.895905256271362,-0.069997526705265,0.419766068458557,0.904929161071777,-0.159644618630409,0.390555560588837,0.906631112098694,-0.126114845275879,0.009471595287323,0.991970419883728,0.00385265029035509,0.0225285738706589,0.999738872051239,0.0395958423614502,0.00653990497812629,0.999194383621216,-0.125806584954262,-0.0102038532495499,0.992002308368683,-0.182823777198792,-0.0127478269860148,0.983063042163849,0.00393492542207241,0.0220818128436804,0.999748528003693,0.0411366522312164,0.0468148849904537,0.998056292533875,0.00453394744545221,0.0188291259109974,0.999812424182892,0.184947192668915,0.0480254366993904,0.981574296951294,0.00382061372511089,0.0227024797350168,0.999735057353973,-0.182981893420219,-0.0119257187470794,0.983043968677521,-0.0992383658885956,0.0206193868070841,0.994850039482117,0.184272333979607,0.0541121624410152,0.981384515762329,0.00443761609494686,0.0193522721529007,0.999802887439728,0.0921854749321938,0.0226108245551586,0.995485126972198,0.0838845819234848,0.0511965155601501,0.995159447193146,0.00325285061262548,0.0257850345224142,0.999662220478058,-0.090599536895752,-0.00412674294784665,0.995878875255585,-0.154840081930161,0.267469555139542,-0.951043963432312,-0.0400182008743286,0.297803163528442,-0.953788161277771,-0.00811715144664049,0.322895884513855,-0.946399688720703,-0.160866245627403,0.284726798534393,-0.945014655590057,-0.225212439894676,0.262939065694809,-0.938159167766571,-0.0400354415178299,0.297909259796143,-0.953754305839539,0.00627415720373392,0.287879407405853,-0.957646131515503,-0.040692113339901,0.301948457956314,-0.952455401420593,0.149414509534836,0.33024936914444,-0.931992828845978,-0.0399230644106865,0.297217905521393,-0.953974664211273,-0.225081294775009,0.262098073959351,-0.938425838947296,-0.126443937420845,0.266700804233551,-0.955448925495148,0.150745406746864,0.32473236322403,-0.933715522289276,-0.0406506955623627,0.301693737506866,-0.952537894248962,
- 0.0491226501762867,0.32750141620636,-0.943572878837585,0.050672423094511,0.297748237848282,-0.95329874753952,-0.0395244248211384,0.294765263795853,-0.954751908779144,-0.126741126179695,0.290298670530319,-0.948505878448486,-0.118989437818527,-0.474361419677734,0.872251570224762,0.0114576034247875,-0.48503789305687,0.874418079853058,0.03731944039464,-0.502717554569244,0.863644778728485,-0.121887378394604,-0.491071850061417,0.862549662590027,-0.181750774383545,-0.480536818504334,0.857934176921844,0.0114569496363401,-0.485009104013443,0.874434053897858,0.0454667396843433,-0.468193382024765,0.88245552778244,0.0115582542493939,-0.489300727844238,0.872038662433624,0.195641040802002,-0.47998633980751,0.855182826519012,0.0114395376294851,-0.484271734952927,0.874843001365662,-0.181781575083733,-0.479609578847885,0.858446300029755,-0.0915161669254303,-0.470365315675735,0.877713680267334,0.195953920483589,-0.474870979785919,0.857962489128113,0.0115579077973962,-0.489286780357361,0.8720463514328,0.0961723104119301,-0.4964978992939,0.862693905830383,0.0924999564886093,-0.4699467420578,0.877834737300873,0.0113944951444864,-0.482366770505905,0.875895380973816,-0.0873165130615234,-0.492555916309357,0.865889430046082,-0.115857496857643,0.961731493473053,0.248293325304985,0.00406600814312696,0.966085314750671,0.258191525936127,0.03893968090415,0.959612429141998,0.278617858886719,-0.118884235620499,0.95642226934433,0.266688942909241,-0.18482731282711,0.948848605155945,0.255978852510452,0.00405864603817463,0.966210067272186,0.257724046707153,0.0469696931540966,0.96916264295578,0.241904616355896,0.0041580623947084,0.964503705501556,0.264036953449249,0.19614078104496,0.945445239543915,0.260119408369064,0.00404452625662088,0.966448843479156,0.25682744383812,-0.184833884239197,0.949039161205292,0.255266845226288,-0.0925709903240204,0.96572208404541,0.242511212825775,0.196484386920929,0.946872174739838,0.254611432552338,0.00416128057986498,0.964447617530823,0.264241278171539,0.0902169421315193,0.957356810569763,0.274461030960083,0.0865851640701294,0.965895295143127,0.244027227163315,
- 0.00402573077008128,0.966765284538269,0.255633920431137,-0.0886960700154305,0.959678471088409,0.266740441322327,-0.122338734567165,0.780185461044312,0.613468766212463,0.00985624827444553,0.779863715171814,0.62587171792984,0.0414863675832748,0.765123307704926,0.642545878887177,-0.125662073493004,0.76732611656189,0.628824055194855,-0.1865004748106,0.764715731143951,0.616787970066071,0.00985494628548622,0.779930055141449,0.625789105892181,0.0497419945895672,0.789219200611115,0.612093806266785,0.0099136820062995,0.776922047138214,0.629518747329712,0.192300826311111,0.76138162612915,0.619127154350281,0.00984555948525667,0.780408084392548,0.625192999839783,-0.186517834663391,0.765295088291168,0.61606377363205,-0.0944294109940529,0.786310434341431,0.610572636127472,0.192677721381187,0.765097260475159,0.614411473274231,0.00991174951195717,0.777021467685699,0.629396080970764,0.0908340662717819,0.76645839214325,0.635838568210602,0.087518222630024,0.785511314868927,0.612627565860748,0.00981802772730589,0.78180593252182,0.623444736003876,-0.0901104137301445,0.770262062549591,0.631329298019409,-0.107661314308643,-0.542013645172119,-0.833444833755493,0.0156720019876957,-0.538018047809601,-0.842787623405457,0.0431092754006386,-0.520762503147125,-0.852612495422363,-0.110563479363918,-0.525887608528137,-0.843337416648865,-0.172220557928085,-0.527501046657562,-0.831915080547333,0.0156594514846802,-0.538564562797546,-0.842438697814941,0.0511398427188396,-0.553026914596558,-0.831592559814453,0.0157826244831085,-0.533177018165588,-0.845856487751007,0.204383060336113,-0.52174186706543,-0.828258991241455,0.0156416390091181,-0.539339601993561,-0.841943085193634,-0.172240525484085,-0.528300762176514,-0.831403374671936,-0.076757475733757,-0.549565315246582,-0.831917226314545,0.204699814319611,-0.526479601860046,-0.825177073478699,0.0157873593270779,-0.532969057559967,-0.845987439155579,0.107807330787182,-0.521406352519989,-0.846470892429352,0.104325912892818,-0.54733020067215,-0.830388903617859,0.0156155144795775,-0.540475130081177,-0.841215193271637,
- -0.0727657005190849,-0.528757154941559,-0.845648288726807,-0.118353568017483,-0.941424131393433,-0.315774023532867,0.00769664859399199,-0.945399165153503,-0.325824171304703,0.0371999181807041,-0.938009977340698,-0.344606280326843,-0.12127597630024,-0.934745967388153,-0.333979517221451,-0.181210353970528,-0.928442299365997,-0.324280291795731,0.00769134378060699,-0.945476949214935,-0.325598478317261,0.0449253506958485,-0.95023250579834,-0.308285385370255,0.00781289208680391,-0.943687081336975,-0.330747097730637,0.199146538972855,-0.924850821495056,-0.32402440905571,0.00767145166173577,-0.945766687393188,-0.324756115674973,-0.181241735816002,-0.928788661956787,-0.323269724845886,-0.0889165922999382,-0.946309506893158,-0.310792863368988,0.199436187744141,-0.926643371582031,-0.318680554628372,0.00781560130417347,-0.943646609783173,-0.330862522125244,0.101075932383537,-0.935689389705658,-0.338037103414536,0.0975951105356216,-0.945726871490479,-0.309961169958115,0.0076298750936985,-0.946368932723999,-0.322997868061066,-0.0848889723420143,-0.93868613243103,-0.334158927202225,-0.116909645497799,-0.0773905068635941,0.990122735500336,0.00136262341402471,-0.086526595056057,0.996248602867126,0.0336983017623425,-0.106821522116661,0.993707001209259,-0.119910880923271,-0.0963663086295128,0.988096714019775,-0.188509479165077,-0.0873206108808517,0.978181719779968,0.00135457294527441,-0.0860153958201408,0.996292889118195,0.0418727025389671,-0.068658173084259,0.99676114320755,0.00145874847657979,-0.0926305204629898,0.9956995844841,0.192518785595894,-0.09199408441782,0.976971745491028,0.0013397914590314,-0.0850767716765404,0.996373474597931,-0.188515856862068,-0.0865907147526741,0.978245377540588,-0.0929606407880783,-0.0716694444417953,0.993086993694305,0.192901045084,-0.0860395208001137,0.977438688278198,0.00146262196358293,-0.0928764790296555,0.995676577091217,0.0909170359373093,-0.103384770452976,0.990477502346039,0.0875250250101089,-0.0728817656636238,0.993492662906647,0.00132124847732484,-0.0838992819190025,0.996473371982574,-0.0893110856413841,-0.0957859382033348,0.991387188434601,
- -0.115953393280506,-0.470135539770126,0.87494421005249,0.00757266953587532,-0.480864524841309,0.876762330532074,0.0408314168453217,-0.500255584716797,0.864914536476135,-0.119158439338207,-0.487212002277374,0.865116000175476,-0.189264103770256,-0.474351197481155,0.859749972820282,0.00756905972957611,-0.480635315179825,0.876888036727905,0.0494941025972366,-0.465275675058365,0.883781015872955,0.00764202512800694,-0.48526856303215,0.874331891536713,0.188399896025658,-0.477832645177841,0.858010172843933,0.00755789969116449,-0.479926645755768,0.877276062965393,-0.189275696873665,-0.473642617464066,0.86013799905777,-0.0960992500185966,-0.46540692448616,0.879864513874054,0.188822329044342,-0.472260713577271,0.860997080802917,0.00764143373817205,-0.485231012105942,0.87435257434845,0.0910709574818611,-0.493318736553192,0.865068018436432,0.0876243785023689,-0.46669265627861,0.880068123340607,0.00753104267641902,-0.478221207857132,0.878207147121429,-0.0920629501342773,-0.487811893224716,0.868080615997314,-0.106618531048298,0.726924598217011,-0.678390204906464,0.017401559278369,0.736665368080139,-0.676033616065979,0.0489954352378845,0.750135600566864,-0.659466505050659,-0.109470091760159,0.739368379116058,-0.66434234380722,-0.177448928356171,0.727052092552185,-0.663254976272583,0.0173975992947817,0.73649662733078,-0.676217436790466,0.0573651380836964,0.723283112049103,-0.688164889812469,0.0174817219376564,0.740060925483704,-0.672312617301941,0.203862592577934,0.72521448135376,-0.657650411128998,0.0173844285309315,0.735938787460327,-0.676824867725372,-0.177465751767159,0.726449608802795,-0.663910329341888,-0.0856503173708916,0.724268853664398,-0.684177339076996,0.20420329272747,0.721230208873749,-0.661912381649017,0.0174813363701105,0.740045309066772,-0.672329783439636,0.108373776078224,0.743343412876129,-0.660072505474091,0.104642428457737,0.72236955165863,-0.683543860912323,0.0173523053526878,0.734580755233765,-0.678299367427826,-0.0816222056746483,0.741485476493835,-0.665985822677612
- }
- TangentsW: *3009 {
- 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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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: *9027 {
- a: 0.131132557988167,-0.558995008468628,-0.818736135959625,0.024764696136117,-0.5737384557724,-0.818664073944092,0.326634466648102,-0.514420390129089,-0.79289448261261,-0.256735891103745,0.0237474087625742,-0.966189801692963,-0.0529120601713657,0.0487477779388428,-0.997408628463745,0.0271222833544016,0.0724871382117271,-0.997000515460968,0.0505374260246754,-0.741548359394073,-0.668993353843689,0.305697351694107,-0.694185137748718,-0.65165650844574,0.297012448310852,-0.70273756980896,-0.646485507488251,-0.256543457508087,0.0222008936107159,-0.966277718544006,-0.300903558731079,0.0176673475652933,-0.953490912914276,-0.0525820776820183,0.0457088425755501,-0.997569978237152,-0.195330917835236,-0.0237242858856916,-0.980450510978699,-0.0476939752697945,0.00116251711733639,-0.998861312866211,-0.297494143247604,-0.0268374010920525,-0.954346358776093,-0.295773595571518,-0.0467677637934685,-0.954112648963928,-0.312032163143158,-0.0490646734833717,-0.948803782463074,-0.194504275918007,-0.0457145608961582,-0.97983580827713,0.291734129190445,-0.412417978048325,-0.863019466400146,0.00960736349225044,-0.465704351663589,-0.884888350963593,0.0802804082632065,-0.427362978458405,-0.9005087018013,-0.192449241876602,-0.0920729860663414,-0.976977944374084,0.067097432911396,-0.0808030143380165,-0.994469106197357,-0.0375115945935249,-0.0889649018645287,-0.99532824754715,0.0722338110208511,-0.191968604922295,-0.978739142417908,0.219020664691925,-0.18333312869072,-0.958341777324677,0.257333904504776,-0.166026711463928,-0.951952934265137,0.248169332742691,0.055887408554554,-0.96710330247879,0.210333585739136,0.0687240734696388,-0.975211262702942,0.210030853748322,0.0463273376226425,-0.976596653461456,0.216020986437798,-0.0703852251172066,-0.973848462104797,0.39713653922081,-0.0628140643239021,-0.915607452392578,0.259687125682831,-0.0721738860011101,-0.962991952896118,0.404969960451126,0.0387604273855686,-0.913508057594299,0.211346730589867,0.0249307900667191,-0.977093160152435,0.149638488888741,0.0431248918175697,-0.987799882888794,
- 0.21508201956749,-0.047637090086937,-0.975433468818665,0.0657878965139389,-0.054928258061409,-0.99632066488266,0.14788530766964,-0.0609247758984566,-0.987126171588898,0.149545788764954,0.0336568504571915,-0.988181829452515,0.377046823501587,0.0316826216876507,-0.925652146339417,0.404173076152802,0.0253133736550808,-0.914332211017609,-0.19291926920414,-0.0822702050209045,-0.977759540081024,0.00669306889176369,-0.0736218616366386,-0.997263789176941,0.066617451608181,-0.0712212175130844,-0.995233476161957,0.147030383348465,-0.0925849452614784,-0.984789371490479,0.0668386816978455,-0.0756232142448425,-0.994893848896027,0.00646205246448517,-0.0877235308289528,-0.996123909950256,-0.148958668112755,-0.0642475485801697,-0.986754059791565,0.00699601648375392,-0.0549823045730591,-0.998462796211243,-0.19341079890728,-0.071564793586731,-0.978504359722137,-0.149135231971741,-0.057121142745018,-0.987165570259094,-0.194089725613594,-0.0558865554630756,-0.979390561580658,-0.311547696590424,-0.0594022013247013,-0.948372006416321,0.00647144997492433,-0.0871520191431046,-0.996173977851868,0.0176121480762959,-0.0812204331159592,-0.996540546417236,0.147042825818062,-0.0921611711382866,-0.984827280044556,0.00699116894975305,-0.0552818514406681,-0.99844628572464,-0.148947641253471,-0.0646824166178703,-0.986727297306061,0.0171524807810783,-0.0607861615717411,-0.998003423213959,-0.311545133590698,-0.0594549998641014,-0.94836950302124,-0.167327910661697,-0.0638984218239784,-0.98382842540741,-0.149131074547768,-0.0572927109897137,-0.987156271934509,0.0170542914420366,-0.0564588978886604,-0.998259246349335,-0.149061381816864,-0.0601406767964363,-0.986997485160828,-0.166939362883568,-0.0462177433073521,-0.984883427619934,-0.167462587356567,-0.0706526264548302,-0.983343541622162,-0.311272084712982,-0.0649836808443069,-0.948096394538879,-0.295782953500748,-0.0663237050175667,-0.952949941158295,-0.295728981494904,-0.0650115087628365,-0.953057110309601,-0.149305671453476,-0.0886039808392525,-0.984813272953033,-0.167450875043869,-0.0700497478246689,-0.983388662338257,
- -0.135889068245888,-0.000396789837395772,-0.990723967552185,0.0169890616089106,-0.0535914115607738,-0.998418509960175,-0.166815131902695,-0.0410162508487701,-0.985134720802307,-0.148319095373154,-0.0818649604916573,-0.985545337200165,-0.295498013496399,-0.0595308914780617,-0.953486859798431,-0.215187355875969,-0.073366716504097,-0.973812997341156,-0.207602441310883,-0.0341169759631157,-0.977618277072906,-0.0104188555851579,-0.0834256634116173,-0.996459543704987,-0.14363968372345,-0.0504753068089485,-0.988341987133026,-0.0110508408397436,-0.0507520027458668,-0.998650133609772,0.0172135047614574,-0.0634820610284805,-0.997834503650665,-0.141103819012642,-0.0338397845625877,-0.989416301250458,-0.0139492331072688,-0.0943267866969109,-0.99544358253479,-0.0184697601944208,-0.0848240926861763,-0.996224761009216,-0.145066350698471,-0.0599478296935558,-0.987604200839996,0.00747642992064357,-0.0280643068253994,-0.999578177928925,0.103441178798676,-0.0605573430657387,-0.992790400981903,-0.00780056929215789,-0.0358248241245747,-0.999327659606934,0.100319020450115,-0.0837535560131073,-0.991423964500427,0.0172760542482138,-0.0662505179643631,-0.997653543949127,-0.0150860659778118,-0.0692841559648514,-0.997482895851135,0.106022156774998,-0.0410293005406857,-0.99351704120636,0.0121862720698118,-0.0134649034589529,-0.999835193157196,0.196766585111618,-0.0599378496408463,-0.978616654872894,0.147306978702545,-0.0829338729381561,-0.985607743263245,0.0174564998596907,-0.0742680206894875,-0.997085511684418,0.10560704022646,-0.0682826340198517,-0.992060899734497,0.0974247083067894,-0.104859851300716,-0.989703416824341,0.105624362826347,-0.0687151476740837,-0.992029190063477,0.0174677688628435,-0.0747702643275261,-0.997047781944275,0.369768530130386,0.104956924915314,-0.923176765441895,0.149865731596947,0.128512293100357,-0.9803187251091,0.0971490368247032,0.104393482208252,-0.989779829978943,0.205383583903313,-0.0160623602569103,-0.978549838066101,0.259438216686249,-0.026343559846282,-0.965400338172913,0.110359326004982,-0.00744869047775865,-0.993863821029663,
- 0.104148633778095,-0.0334569215774536,-0.993998944759369,0.106897480785847,-0.0343310758471489,-0.993677258491516,0.259477645158768,-0.0314868502318859,-0.965235710144043,0.0993422716856003,0.0651370733976364,-0.992919087409973,0.257264882326126,0.0748872980475426,-0.963434934616089,0.373038083314896,0.0745662972331047,-0.924814939498901,0.258930027484894,0.0118828946724534,-0.965822994709015,0.214147001504898,0.0309091303497553,-0.976312279701233,0.298953473567963,0.012258242815733,-0.954188942909241,0.29949626326561,0.00236393767409027,-0.954094648361206,0.37874910235405,0.0107336780056357,-0.925437152385712,0.259143501520157,-0.000990386120975018,-0.965838432312012,0.178139209747314,-0.217067584395409,-0.95976459980011,0.0682909190654755,-0.251270174980164,-0.965504884719849,0.359921872615814,-0.152044922113419,-0.920509934425354,-0.314092844724655,0.302570581436157,-0.899887084960938,-0.120226830244064,0.371542543172836,-0.92059850692749,-0.0413577705621719,0.409954190254211,-0.911167979240417,0.13000001013279,-0.452493041753769,-0.882241487503052,0.378086358308792,-0.369399696588516,-0.848878562450409,0.370098829269409,-0.380801290273666,-0.847359001636505,-0.313751578330994,0.301516592502594,-0.900359869003296,-0.354574710130692,0.285732507705688,-0.890299797058105,-0.119402341544628,0.368791162967682,-0.92181134223938,-0.243979722261429,0.274515151977539,-0.930115759372711,-0.107411794364452,0.328810006380081,-0.938267886638641,-0.343972086906433,0.245444670319557,-0.906333446502686,-0.339003384113312,0.227249979972839,-0.912926256656647,-0.354251742362976,0.220432952046394,-0.908798635005951,-0.239614963531494,0.253860920667648,-0.937090873718262,0.307132571935654,-0.038772851228714,-0.950876593589783,0.0317921750247478,-0.131606414914131,-0.990792214870453,0.0965003147721291,-0.0786077082157135,-0.992224037647247,-0.230534136295319,0.212194472551346,-0.94964599609375,0.0205465331673622,0.272035002708435,-0.96206796169281,-0.0825591012835503,0.246121451258659,-0.965716540813446,0.0449731834232807,0.164494127035141,-0.985352277755737,
- 0.192644372582436,0.19139888882637,-0.962421238422394,0.22874017059803,0.212875619530678,-0.94992733001709,0.178592726588249,0.420035630464554,-0.889761030673981,0.143178775906563,0.430033355951309,-0.891387224197388,0.146511882543564,0.408447563648224,-0.90094667673111,0.170719012618065,0.301903694868088,-0.937928140163422,0.349240124225616,0.319215685129166,-0.880983948707581,0.210298284888268,0.303128600120544,-0.929455697536469,0.340191513299942,0.413722395896912,-0.844454526901245,0.150774121284485,0.390679061412811,-0.908095300197601,0.0797780528664589,0.39763605594635,-0.914068400859833,0.166517525911331,0.321433186531067,-0.932176291942596,0.0148750049993396,0.296351224184036,-0.954963207244873,0.095179095864296,0.301993429660797,-0.948546707630157,0.0811978280544281,0.389205634593964,-0.917565166950226,0.31631126999855,0.407153904438019,-0.856838881969452,0.341567128896713,0.401677548885345,-0.849698185920715,-0.23259973526001,0.221527457237244,-0.947007358074188,-0.0429682061076164,0.268551290035248,-0.962306678295136,0.0184506233781576,0.281049370765686,-0.959516048431396,0.0996779650449753,0.272175759077072,-0.957070887088776,0.0193537883460522,0.277168989181519,-0.960626244544983,-0.0408325977623463,0.255203753709793,-0.966024816036224,-0.200465723872185,0.246283695101738,-0.948239326477051,-0.0457799173891544,0.286124467849731,-0.957098186016083,-0.234982386231422,0.232396110892296,-0.943808972835541,-0.201635256409645,0.252107948064804,-0.946459114551544,-0.23762235045433,0.244572818279266,-0.940063714981079,-0.352075725793839,0.210837349295616,-0.911915719509125,-0.0409221388399601,0.255763381719589,-0.965873003005981,-0.0274561047554016,0.263532966375351,-0.964259564876556,0.0996117889881134,0.272621095180511,-0.956951022148132,-0.0457342565059662,0.285839080810547,-0.957185685634613,-0.200384467840195,0.245880156755447,-0.948361217975616,-0.0313824452459812,0.283266216516495,-0.958527743816376,-0.352064192295074,0.210786834359169,-0.911931872367859,-0.211102679371834,0.243424281477928,-0.946667969226837,
- -0.201601430773735,0.251938998699188,-0.946511387825012,-0.032188892364502,0.287312477827072,-0.957295894622803,-0.201235964894295,0.250116258859634,-0.947072327136993,-0.213706865906715,0.260573714971542,-0.94150447845459,-0.210103332996368,0.236940503120422,-0.948533475399017,-0.35087126493454,0.205586403608322,-0.913577377796173,-0.331748127937317,0.209386438131332,-0.919837236404419,-0.331916153430939,0.210653498768806,-0.919487237930298,-0.191937819123268,0.223912090063095,-0.955522477626801,-0.210197001695633,0.237545788288116,-0.948361456394196,-0.1935825496912,0.309230297803879,-0.931075930595398,-0.032736748456955,0.290059953927994,-0.956448495388031,-0.214447990059853,0.265524595975876,-0.939951479434967,-0.192118436098099,0.230551868677139,-0.953905940055847,-0.332609057426453,0.215922206640244,-0.918013513088226,-0.253927499055862,0.222691550850868,-0.941238284111023,-0.252940088510513,0.262238502502441,-0.93126380443573,-0.0517557077109814,0.256051510572433,-0.965276658535004,-0.192836165428162,0.261084765195847,-0.945858955383301,-0.0586880892515183,0.287565588951111,-0.955961167812347,-0.030846431851387,0.280575513839722,-0.959336161613464,-0.193137690424919,0.277112573385239,-0.941226065158844,-0.0533993951976299,0.245012849569321,-0.96804815530777,-0.0604338869452477,0.253485530614853,-0.965449571609497,-0.192638605833054,0.251844048500061,-0.948401272296906,-0.0433096140623093,0.311542600393295,-0.949244678020477,0.0479111634194851,0.296282976865768,-0.953897774219513,-0.0578991435468197,0.302399694919586,-0.951421201229095,0.0486439242959023,0.273427426815033,-0.960661888122559,-0.0303116329014301,0.277889907360077,-0.96013468503952,-0.0596439689397812,0.269128888845444,-0.961255550384521,0.0472877100110054,0.314965784549713,-0.947924375534058,-0.0410702563822269,0.325919091701508,-0.944505155086517,0.143874660134315,0.308229804039001,-0.940369307994843,0.0983073562383652,0.28135746717453,-0.954554259777069,-0.0287815798074007,0.27020075917244,-0.962373733520508,0.0543683134019375,0.288717478513718,-0.955869495868683,
- 0.0492836758494377,0.252594113349915,-0.966316401958466,0.0544582158327103,0.288305371999741,-0.955988764762878,-0.0286860354244709,0.26972034573555,-0.962511301040649,0.297350078821182,0.47293895483017,-0.829404413700104,0.0663095116615295,0.474074453115463,-0.877984344959259,0.018025541678071,0.447158843278885,-0.894272923469543,0.14530947804451,0.350614160299301,-0.925178289413452,0.199041813611984,0.345499098300934,-0.917067468166351,0.0461507365107536,0.347426116466522,-0.936571002006531,0.0471270643174648,0.321573823690414,-0.945711016654968,0.0470677874982357,0.321400463581085,-0.945772886276245,0.199959293007851,0.340490877628326,-0.918739497661591,0.0263965427875519,0.412069827318192,-0.910769820213318,0.180596187710762,0.438413977622986,-0.880442082881927,0.305432349443436,0.445892810821533,-0.841362416744232,0.192313700914383,0.381026864051819,-0.904341757297516,0.146512880921364,0.394952744245529,-0.906943380832672,0.234654009342194,0.384516984224319,-0.892795741558075,0.236791759729385,0.375593483448029,-0.896024107933044,0.321430623531342,0.387883096933365,-0.863845527172089,0.194625362753868,0.369049996137619,-0.908803105354309,0.136386349797249,-0.892293572425842,-0.430361390113831,0.0244699139147997,-0.906001389026642,-0.422566831111908,0.321882367134094,-0.843213498592377,-0.430561006069183,-0.254398137331009,-0.462612837553024,-0.849276721477509,-0.0519724860787392,-0.456593453884125,-0.888156235218048,0.0332632772624493,-0.43447008728981,-0.900071859359741,0.0498786345124245,-0.976687669754028,-0.20879003405571,0.303442418575287,-0.927759528160095,-0.217220976948738,0.291747391223907,-0.933241546154022,-0.209627583622932,-0.254216969013214,-0.463903158903122,-0.848626911640167,-0.300294756889343,-0.461553961038589,-0.834740102291107,-0.0516313314437866,-0.459438264369965,-0.886707782745361,-0.190989688038826,-0.511289536952972,-0.837917625904083,-0.0468066371977329,-0.498711496591568,-0.865503430366516,-0.296778500080109,-0.500454783439636,-0.813306570053101,-0.295016199350357,-0.517522692680359,-0.803203403949738,
- -0.310007244348526,-0.517262518405914,-0.797706067562103,-0.190210819244385,-0.530105948448181,-0.826321661472321,0.290460765361786,-0.788874864578247,-0.541580080986023,0.00951473228633404,-0.845358848571777,-0.534114301204681,0.0844626426696777,-0.821274101734161,-0.564247190952301,-0.188310384750366,-0.568097412586212,-0.801127016544342,0.0684802010655403,-0.566707313060761,-0.821068406105042,-0.036822721362114,-0.574611723423004,-0.817597389221191,0.0745569542050362,-0.655943334102631,-0.751118898391724,0.221824586391449,-0.637399256229401,-0.737913310527802,0.257007896900177,-0.620125830173492,-0.741209089756012,0.251998454332352,-0.43380469083786,-0.865049302577972,0.210869163274765,-0.428378880023956,-0.878649950027466,0.212293237447739,-0.447494685649872,-0.868723392486572,0.218602314591408,-0.547768175601959,-0.807566285133362,0.402251690626144,-0.511507391929626,-0.759311378002167,0.263954043388367,-0.543304860591888,-0.796961784362793,0.410283535718918,-0.422369182109833,-0.808252274990082,0.213722541928291,-0.467086166143417,-0.857993721961975,0.147361025214195,-0.457556903362274,-0.876884460449219,0.217572897672653,-0.52814382314682,-0.820808231830597,0.0669632703065872,-0.545228004455566,-0.835608959197998,0.145971402525902,-0.546031177043915,-0.824949860572815,0.147299662232399,-0.465697377920151,-0.872598886489868,0.380670964717865,-0.43434602022171,-0.816353559494019,0.409455806016922,-0.43455895781517,-0.802187442779541,-0.188754811882973,-0.559977531433105,-0.806719779968262,0.00859193596988916,-0.562427639961243,-0.826801896095276,0.067929320037365,-0.558875322341919,-0.826464772224426,0.145241901278496,-0.571873784065247,-0.807381689548492,0.0681162849068642,-0.561529219150543,-0.824648439884186,0.00837597157806158,-0.573950231075287,-0.818847358226776,-0.153449192643166,-0.548983633518219,-0.821626782417297,0.0088752219453454,-0.547006011009216,-0.837081611156464,-0.18923220038414,-0.550789773464203,-0.812909483909607,-0.153642594814301,-0.542663037776947,-0.825778901576996,-0.189823552966118,-0.53862601518631,-0.820883095264435,
- -0.309587866067886,-0.525820076465607,-0.792255401611328,0.00838513299822807,-0.573465704917908,-0.819186687469482,0.0178935173898935,-0.568118989467621,-0.822751998901367,0.145254150032997,-0.571481764316559,-0.80765700340271,0.00887059979140759,-0.547260463237762,-0.836915373802185,-0.15343764424324,-0.549350678920746,-0.821383416652679,0.0173884704709053,-0.552084147930145,-0.833607077598572,-0.309584498405457,-0.525885760784149,-0.792213082313538,-0.166294351220131,-0.547481656074524,-0.820128083229065,-0.153638422489166,-0.542802453041077,-0.825688064098358,0.0172709636390209,-0.548353254795074,-0.836068570613861,-0.153557330369949,-0.545488834381104,-0.823930859565735,-0.165876463055611,-0.532308101654053,-0.83014041185379,-0.16643650829792,-0.553110778331757,-0.81631326675415,-0.309337586164474,-0.530616581439972,-0.789149105548859,-0.297825783491135,-0.533540666103363,-0.791602253913879,-0.297761231660843,-0.532354652881622,-0.792424619197845,-0.151821881532669,-0.56859564781189,-0.808485686779022,-0.166423410177231,-0.552579879760742,-0.816675424575806,-0.138408005237579,-0.495155781507492,-0.85770857334137,0.0171999093145132,-0.546097338199615,-0.837545156478882,-0.165745660662651,-0.527895867824554,-0.832979202270508,-0.150834485888481,-0.563115239143372,-0.812496244907379,-0.29750669002533,-0.527774214744568,-0.795577883720398,-0.211190149188042,-0.55172735452652,-0.806843042373657,-0.203396111726761,-0.519251585006714,-0.830064952373505,-0.0128120062872767,-0.569846451282501,-0.821651339530945,-0.14616271853447,-0.537354052066803,-0.830594420433044,-0.00622516917064786,-0.544211745262146,-0.838924944400787,0.017448341473937,-0.553984880447388,-0.832343876361847,-0.143630921840668,-0.523503243923187,-0.839830040931702,-0.016355074942112,-0.578799605369568,-0.815305769443512,-0.0136273978278041,-0.572480976581573,-0.819804728031158,-0.14759273827076,-0.545210778713226,-0.825204014778137,0.005137347150594,-0.523393094539642,-0.85207599401474,0.102028757333755,-0.548744857311249,-0.829740464687347,-0.00298165180720389,-0.531624794006348,-0.846974730491638,
- 0.0988897830247879,-0.568195939064026,-0.816929757595062,0.0175136029720306,-0.55605685710907,-0.830959737300873,-0.010243371129036,-0.559636116027832,-0.828675270080566,0.104615919291973,-0.532210946083069,-0.840123355388641,0.00985057186335325,-0.510891973972321,-0.859588444232941,0.198797553777695,-0.541651725769043,-0.816757559776306,0.145481303334236,-0.56398743391037,-0.812867403030396,0.0177157185971737,-0.562473893165588,-0.826625227928162,0.1009291857481,-0.55614697933197,-0.824932634830475,0.0959840640425682,-0.585634231567383,-0.804872393608093,0.1009461581707,-0.556531488895416,-0.82467120885849,0.0177288390696049,-0.562890470027924,-0.826341331005096,0.373362153768539,-0.36983734369278,-0.850776731967926,0.147334381937981,-0.380131900310516,-0.913122296333313,0.0930016487836838,-0.40320211648941,-0.910372853279114,0.207661464810371,-0.50317907333374,-0.838860988616943,0.254928886890411,-0.506189405918121,-0.823883235454559,0.108977764844894,-0.503242790699005,-0.857246041297913,0.0995690673589706,-0.526434481143951,-0.844365298748016,0.105489030480385,-0.526524424552917,-0.843590021133423,0.254971772432327,-0.510476291179657,-0.821220636367798,0.095071479678154,-0.439347922801971,-0.89327210187912,0.252700626850128,-0.417639315128326,-0.872765600681305,0.37664532661438,-0.396894723176956,-0.837026357650757,0.254393011331558,-0.473291665315628,-0.843373835086823,0.216596454381943,-0.461256325244904,-0.860423505306244,0.296177953481674,-0.467034190893173,-0.833161413669586,0.296727538108826,-0.475479453802109,-0.828173935413361,0.382378399372101,-0.452309399843216,-0.805731356143951,0.254614293575287,-0.484407216310501,-0.836971461772919,0.138657033443451,0.26856791973114,-0.953229010105133,0.0268198028206825,0.259821951389313,-0.965284049510956,0.324437528848648,0.277139872312546,-0.904396951198578,-0.261969059705734,0.753893136978149,-0.602509379386902,-0.0485538877546787,0.795694828033447,-0.603748500347137,0.0331188626587391,0.811418831348419,-0.583526015281677,0.0516439452767372,0.0368279442191124,-0.997986376285553,
- 0.307928323745728,0.0529842860996723,-0.949933171272278,0.294792473316193,0.043970812112093,-0.954549193382263,-0.261774301528931,0.752953469753265,-0.603767573833466,-0.298978805541992,0.742412686347961,-0.599529087543488,-0.0482099130749702,0.793750822544098,-0.606329441070557,-0.191201403737068,0.736274659633636,-0.649108350276947,-0.0434024706482887,0.766015708446503,-0.641355097293854,-0.295735716819763,0.714344203472137,-0.634234011173248,-0.294082134962082,0.701238989830017,-0.649445593357086,-0.312628597021103,0.695105791091919,-0.647372603416443,-0.190448880195618,0.721559166908264,-0.665643751621246,0.293550193309784,0.395777612924576,-0.870165705680847,0.0121476147323847,0.380235403776169,-0.924809992313385,0.0849863439798355,0.415332615375519,-0.905691087245941,-0.188622757792473,0.690422117710114,-0.698383033275604,0.0718703046441078,0.709807813167572,-0.70071929693222,-0.0335016399621964,0.705756723880768,-0.707661688327789,0.0770567059516907,0.626272022724152,-0.775787115097046,0.224514558911324,0.615372359752655,-0.755585908889771,0.258626222610474,0.622626066207886,-0.738545358181,0.250383794307709,0.776531457901001,-0.578192710876465,0.211065709590912,0.791422843933105,-0.573673367500305,0.216195046901703,0.776899456977844,-0.591343343257904,0.221856832504272,0.700344920158386,-0.678451597690582,0.40352737903595,0.658587157726288,-0.635160326957703,0.26195552945137,0.691001176834106,-0.673718571662903,0.411078721284866,0.722264885902405,-0.556190371513367,0.217414304614067,0.764060378074646,-0.607406556606293,0.152095764875412,0.78389984369278,-0.601970195770264,0.221024855971336,0.715391337871552,-0.662844836711884,0.0705394148826599,0.727878749370575,-0.68206799030304,0.150461107492447,0.716783821582794,-0.680868864059448,0.15201473236084,0.778152883052826,-0.609400987625122,0.382532000541687,0.728008389472961,-0.568922698497772,0.41033411026001,0.714372515678406,-0.566831529140472,-0.189055040478706,0.697351813316345,-0.691345512866974,0.00579366413876414,0.716618478298187,-0.697441339492798,0.0713837146759033,0.716547548770905,-0.693876028060913,
- 0.149639770388603,0.694743752479553,-0.70351904630661,0.071599967777729,0.713571965694427,-0.696913659572601,0.00555803021416068,0.706685841083527,-0.707505643367767,-0.151560664176941,0.714464783668518,-0.68305891752243,0.00610425602644682,0.729564607143402,-0.683884620666504,-0.189527049660683,0.705198049545288,-0.683209538459778,-0.151720717549324,0.719084084033966,-0.678158462047577,-0.190076231956482,0.714757919311523,-0.673047006130219,-0.31218010187149,0.688195168972015,-0.65492832660675,0.00556744681671262,0.70708441734314,-0.707107305526733,0.0110049862414598,0.711169362068176,-0.702934563159943,0.149651989340782,0.695049285888672,-0.703214585781097,0.0060993111692369,0.729359865188599,-0.68410313129425,-0.151550129055977,0.714166283607483,-0.683373332023621,0.0105459559708834,0.725401163101196,-0.688245534896851,-0.312177062034607,0.688149869441986,-0.654977262020111,-0.166804805397987,0.712157130241394,-0.68191522359848,-0.151716634631157,0.718964099884033,-0.678286612033844,0.0104477303102613,0.72838968038559,-0.685083508491516,-0.151659145951271,0.717287302017212,-0.680072367191315,-0.166259273886681,0.725926756858826,-0.667374193668365,-0.166977450251579,0.707341909408569,-0.686866879463196,-0.311916142702103,0.684316039085388,-0.659105360507965,-0.295185178518295,0.687447786331177,-0.663536965847015,-0.295126885175705,0.688411712646484,-0.662562727928162,-0.147056549787521,0.697486340999603,-0.701346695423126,-0.16695836186409,0.707886815071106,-0.686309814453125,-0.133721977472305,0.758546054363251,-0.63775098323822,0.0103830257430673,0.730347514152527,-0.682996869087219,-0.166099295020103,0.729622364044189,-0.663371860980988,-0.146069273352623,0.702395260334015,-0.696638166904449,-0.294885396957397,0.69229781627655,-0.658609390258789,-0.212971612811089,0.698761403560638,-0.682917058467865,-0.205202102661133,0.727227509021759,-0.655005633831024,-0.00516052497550845,0.708598911762238,-0.705592632293701,-0.141417473554611,0.724647998809814,-0.674452662467957,-0.00384481577202678,0.731318950653076,-0.682024776935577,
- 0.0106074428185821,0.723520159721375,-0.690221726894379,-0.138905331492424,0.736095607280731,-0.6624715924263,-0.0086874645203352,0.700795471668243,-0.713309347629547,-0.0112433889880776,0.707586705684662,-0.706537067890167,-0.142843097448349,0.717977643013,-0.681251764297485,0.0126131251454353,0.746468007564545,-0.665301740169525,0.0994507744908333,0.722324371337891,-0.684366166591644,-0.000596403784584254,0.741452693939209,-0.671004891395569,0.0961541831493378,0.705995619297028,-0.701658487319946,0.010668421164155,0.721647083759308,-0.692178964614868,-0.00785271916538477,0.718575417995453,-0.695404708385468,0.102097600698471,0.735336661338806,-0.669967234134674,0.0173040274530649,0.75605708360672,-0.654276907444,0.198505118489265,0.710234045982361,-0.675398647785187,0.149906665086746,0.701553106307983,-0.696671605110168,0.010849243029952,0.716047465801239,-0.697967350482941,0.0999138355255127,0.715661346912384,-0.691264092922211,0.0931272879242897,0.69088876247406,-0.716938018798828,0.099929578602314,0.7153480052948,-0.691586077213287,0.0108603937551379,0.715699851512909,-0.698323547840118,0.375275135040283,0.773164093494415,-0.511259138584137,0.15221606194973,0.83293342590332,-0.532026529312134,0.0922053605318069,0.826931357383728,-0.554691553115845,0.207505851984024,0.738833487033844,-0.641144633293152,0.260714620351791,0.722333610057831,-0.640516996383667,0.10667097568512,0.757601857185364,-0.643941581249237,0.0985951349139214,0.740150809288025,-0.665173530578613,0.102995790541172,0.739731729030609,-0.664972841739655,0.260759681463242,0.719027519226074,-0.644207894802094,0.0942239612340927,0.803728640079498,-0.587487995624542,0.258402556180954,0.785761535167694,-0.561967015266418,0.378541439771652,0.754886984825134,-0.535585880279541,0.260150849819183,0.747266948223114,-0.611484825611115,0.216556832194328,0.767413437366486,-0.60347306728363,0.296527177095413,0.739344835281372,-0.604517042636871,0.297092974185944,0.733114242553711,-0.611783683300018,0.384225130081177,0.714380860328674,-0.584834218025208,0.260381370782852,0.739067375659943,-0.621273636817932,
- 0.111001133918762,0.695909976959229,-0.709498524665833,-0.0270024836063385,0.711367666721344,-0.702301144599915,0.143750235438347,0.684409737586975,-0.714786112308502,0.250459283590317,0.683667004108429,-0.685470342636108,0.11182627081871,0.706348955631256,-0.698974967002869,0.147952318191528,0.706146061420441,-0.692436158657074,-0.0144994966685772,0.74798846244812,-0.663553416728973,0.111910037696362,0.707417666912079,-0.697879910469055,-0.049121554940939,0.738167762756348,-0.67282646894455,-0.235104694962502,0.679936707019806,-0.69455885887146,-0.041896253824234,0.66461592912674,-0.746009647846222,-0.0623388960957527,0.678807973861694,-0.731664955615997,0.111889742314816,0.707158625125885,-0.698145687580109,0.25045570731163,0.684165298938751,-0.684974372386932,0.139030918478966,0.697832703590393,-0.702637910842896,0.328181475400925,0.670359671115875,-0.665518462657928,0.139045000076294,0.697460830211639,-0.70300418138504,0.250453680753708,0.684433579444885,-0.684707045555115,-0.0596493110060692,0.691449284553528,-0.719958305358887,-0.112095013260841,0.697536170482636,-0.707727313041687,-0.230809360742569,0.695512175559998,-0.680433571338654,-0.295866519212723,0.675100862979889,-0.675797283649445,-0.234620526432991,0.681728065013886,-0.692964792251587,-0.112566769123077,0.693089008331299,-0.712008774280548,-0.0560174211859703,0.708056211471558,-0.703930735588074,0.110965870320797,0.695467412471771,-0.709937751293182,0.00558294868096709,0.705151736736298,-0.709034442901611,-0.110997773706913,0.707626581192017,-0.697813808917999,-0.0545603558421135,0.714571893215179,-0.697431147098541,0.00560776004567742,0.701968848705292,-0.712185561656952,0.11091897636652,0.694879174232483,-0.710520923137665,0.138846427202225,0.70259290933609,-0.697914659976959,0.00557697471231222,0.705913901329041,-0.708275735378265,-0.295933693647385,0.671949028968811,-0.678901851177216,-0.113349571824074,0.685557961463928,-0.719139873981476,-0.1781275421381,0.695898056030273,-0.69569855928421,-0.177844658493996,0.68717622756958,-0.704386353492737,
- -0.110815532505512,0.709269165992737,-0.696173250675201,0.00560340890660882,0.702529013156891,-0.711633026599884,-0.278996795415878,0.684460699558258,-0.67355352640152,-0.296000093221664,0.668513417243958,-0.682256400585175,-0.178097128868103,0.694924354553223,-0.696678936481476,0.00557749532163143,0.705847561359406,-0.708341836929321,0.138846471905708,0.702591836452484,-0.697915732860565,0.0949140787124634,0.705382525920868,-0.702443480491638,0.138865187764168,0.702117443084717,-0.698389232158661,0.327831655740738,0.674546182155609,-0.661448299884796,0.0949332341551781,0.704897820949554,-0.70292729139328,-0.0498973838984966,0.702420949935913,-0.710010647773743,-0.177948281168938,0.690287470817566,-0.701311349868774,0.00558262644335628,0.705192804336548,-0.70899361371994,-0.276817917823792,0.667088449001312,-0.691639244556427,-0.177858665585518,0.687591731548309,-0.703977286815643,-0.0498271957039833,0.700645744800568,-0.711767375469208,0.2276251912117,0.692786991596222,-0.684275507926941,0.0949776023626328,0.703769683837891,-0.704050779342651,0.328016340732574,0.672355592250824,-0.663583636283875,0.328825026750565,0.662213087081909,-0.673311173915863,0.346147447824478,0.658172607421875,-0.668573677539825,0.227667346596718,0.68780255317688,-0.689271509647369,0.00553457206115127,0.702890515327454,-0.711276531219482,0.00559446029365063,0.703678607940674,-0.710496366024017,0.0949750766158104,0.703833937644959,-0.703986883163452,0.0949027538299561,0.705668330192566,-0.702157855033875,0.227667257189751,0.687816917896271,-0.689257204532623,0.00554948346689343,0.704784333705902,-0.709399938583374,0.00543681066483259,0.690475165843964,-0.723335683345795,-0.0491654649376869,0.684071600437164,-0.727756023406982,0.00570605136454105,0.689073801040649,-0.724668741226196,0.345440864562988,0.666403293609619,-0.660739958286285,0.0702892392873764,0.6853067278862,-0.724854528903961,0.227645233273506,0.690587043762207,-0.686489045619965,0.227638483047485,0.691357314586639,-0.68571549654007,0.0653247907757759,0.717251539230347,-0.6937455534935,
- 0.00557796750217676,0.708401799201965,-0.705787360668182,0.0134436348453164,0.672650873661041,-0.739837884902954,0.0698391199111938,0.688298642635345,-0.722057819366455,0.345244199037552,0.668591320514679,-0.658628940582275,-0.118442334234715,0.723492980003357,-0.680095076560974,0.0612223036587238,0.741980135440826,-0.667620599269867,-0.00256336270831525,0.741619050502777,-0.670816361904144,-0.150579676032066,0.691761076450348,-0.706252336502075,-0.277065724134445,0.669016540050507,-0.689674854278564,-0.0497881174087524,0.699658811092377,-0.712740242481232,-0.148714169859886,0.660657107830048,-0.735809981822968,-0.0487509928643703,0.673832416534424,-0.737274169921875,0.00536093069240451,0.680838406085968,-0.732414066791534,-0.275856107473373,0.659708857536316,-0.699061989784241,-0.150171041488647,0.684648454189301,-0.713235676288605,-0.199435904622078,0.677838861942291,-0.707643866539001,0.0689396113157272,0.694219470024109,-0.716454267501831,-0.0856830254197121,0.680625855922699,-0.727603495121002,0.00545536680147052,0.692831575870514,-0.721078813076019,-0.0822946056723595,0.65911990404129,-0.747521579265594,-0.148827657103539,0.662459015846252,-0.734165191650391,0.00535294273868203,0.679823815822601,-0.733355939388275,0.0651225447654724,0.718505084514618,-0.692466259002686,-0.112560421228409,0.699451744556427,-0.705760180950165,-0.0895387306809425,0.704947233200073,-0.703585267066956,-0.0870305821299553,0.689145088195801,-0.719378054141998,-0.198499619960785,0.669681549072266,-0.715628802776337,-0.149805977940559,0.678448975086212,-0.719211518764496,-0.199590876698494,0.679202735424042,-0.706291079521179,-0.0885742604732513,0.698879241943359,-0.70973402261734,-0.112136662006378,0.697708129882813,-0.707551240921021,0.111034795641899,0.469937831163406,-0.875688135623932,-0.0359670072793961,0.48842117190361,-0.871866464614868,0.145063892006874,0.456972807645798,-0.877571821212769,0.246487662196159,0.465425670146942,-0.850072205066681,0.111857987940311,0.48288631439209,-0.868509411811829,0.149364277720451,0.484377324581146,-0.862014591693878,
- -0.023544343188405,0.534329295158386,-0.844948470592499,0.111943125724792,0.484241813421249,-0.867743372917175,-0.0506500750780106,0.521318674087524,-0.851857602596283,-0.234994322061539,0.458757221698761,-0.856924414634705,-0.0506535843014717,0.431717276573181,-0.90058571100235,-0.0640930309891701,0.447278410196304,-0.892095327377319,0.111921548843384,0.483897984027863,-0.867937982082367,0.246481567621231,0.466021239757538,-0.849747657775879,0.139862209558487,0.474074959754944,-0.869305193424225,0.328785508871078,0.457307159900665,-0.826299130916595,0.139869570732117,0.473784893751144,-0.869462132453918,0.246479570865631,0.46621298789978,-0.849643051624298,-0.0613635145127773,0.462788492441177,-0.884342312812805,-0.11052019149065,0.4719457924366,-0.874672770500183,-0.230693146586418,0.477672457695007,-0.847708523273468,-0.299520134925842,0.458701193332672,-0.836588859558105,-0.234511777758598,0.460913926362991,-0.855898678302765,-0.110997542738914,0.466436564922333,-0.877562820911407,-0.0576677471399307,0.483395665884018,-0.873500466346741,0.11100035905838,0.469402104616165,-0.875979781150818,0.00691210525110364,0.478908985853195,-0.877837359905243,-0.109411649405956,0.484483808279037,-0.867931187152863,-0.0561795085668564,0.49156853556633,-0.869024872779846,0.00692835031077266,0.475107371807098,-0.879900574684143,0.110953211784363,0.468669384717941,-0.876378118991852,0.139741465449333,0.478742688894272,-0.866762816905975,0.00690828077495098,0.479798376560211,-0.877351582050323,-0.299560815095901,0.455208867788315,-0.838479697704315,-0.11178782582283,0.457163333892822,-0.882329404354095,-0.173604920506477,0.474088877439499,-0.86319237947464,-0.173340827226639,0.463653385639191,-0.868894994258881,-0.109228327870369,0.486523747444153,-0.866812467575073,0.00692528486251831,0.475827693939209,-0.87951123714447,-0.282063484191895,0.468047767877579,-0.83747923374176,-0.299599885940552,0.451379209756851,-0.84053361415863,-0.173573732376099,0.472807914018631,-0.86390095949173,0.00690866587683558,0.479709208011627,-0.877400457859039,
- 0.139742001891136,0.478722900152206,-0.866773784160614,0.094474583864212,0.480609774589539,-0.871830701828003,0.139718413352966,0.479615807533264,-0.86628383398056,0.328464686870575,0.462559938430786,-0.82349818944931,0.0944648683071136,0.48095166683197,-0.87164318561554,-0.043243333697319,0.476173311471939,-0.878287553787231,-0.173440113663673,0.467471569776535,-0.866826891899109,0.0069113876670599,0.479075849056244,-0.877746284008026,-0.279946267604828,0.446612268686295,-0.84980446100235,-0.173347845673561,0.463919997215271,-0.868751287460327,-0.0431858748197556,0.47450464963913,-0.879193127155304,0.228026121854782,0.473608553409576,-0.850705027580261,0.0945011675357819,0.479671776294708,-0.872344255447388,0.328616708517075,0.460097014904022,-0.824816226959229,0.329305052757263,0.448323637247086,-0.831001996994019,0.344103574752808,0.445752739906311,-0.826375961303711,0.228093713521957,0.467017769813538,-0.854322910308838,0.00374829303473234,0.476033091545105,-0.879419386386871,0.0069204862229526,0.476952880620956,-0.878901600837708,0.0945321470499039,0.478572487831116,-0.872944474220276,0.0944672897458076,0.480866998434067,-0.871689796447754,0.228077590465546,0.468726843595505,-0.853390872478485,0.00376686593517661,0.478391885757446,-0.878138363361359,0.00363056338392198,0.461081713438034,-0.887350261211395,-0.0424510426819324,0.453398615121841,-0.890296339988709,0.00699359970167279,0.459428280591965,-0.888187348842621,0.343468755483627,0.45541450381279,-0.82135671377182,0.0696107745170593,0.456170290708542,-0.887165725231171,0.228055909276009,0.470861405134201,-0.85222065448761,0.228032499551773,0.473045915365219,-0.851016283035278,0.064911961555481,0.494474947452545,-0.866764783859253,0.00380256725475192,0.482925981283188,-0.87565290927887,0.0118685765191913,0.440713047981262,-0.897569596767426,0.0691788494586945,0.459773719310761,-0.885337471961975,0.343288689851761,0.458037883043289,-0.819972038269043,-0.115654021501541,0.505227863788605,-0.855201125144959,0.0609353929758072,0.525419652462006,-0.848658382892609,
- -0.00313145061954856,0.524024069309235,-0.851697683334351,-0.149932608008385,0.467496395111084,-0.871187448501587,-0.280182987451553,0.44893816113472,-0.848499834537506,-0.0431481003761292,0.473409086465836,-0.879785239696503,-0.147760927677155,0.427377551794052,-0.891916573047638,-0.0420085154473782,0.440891593694687,-0.896576881408691,0.00353783136233687,0.449304789304733,-0.893371522426605,-0.278998136520386,0.437455952167511,-0.854863941669464,-0.14946623146534,0.458467781543732,-0.876052021980286,-0.20269638299942,0.452521085739136,-0.868411660194397,0.0684004500508308,0.466224700212479,-0.882018208503723,-0.0854603722691536,0.45007386803627,-0.888892590999603,0.0036518422421068,0.463783979415894,-0.885940909385681,-0.0820130631327629,0.423748195171356,-0.902059495449066,-0.147904053330421,0.429884850978851,-0.890687167644501,0.00352747668512166,0.447989642620087,-0.894031763076782,0.0647182539105415,0.496012628078461,-0.865900099277496,-0.109851524233818,0.475016087293625,-0.873093545436859,-0.0893827378749847,0.480251759290695,-0.872564733028412,-0.0868581756949425,0.460800051689148,-0.883243441581726,-0.201780840754509,0.442535579204559,-0.873754382133484,-0.14904747903347,0.450569778680801,-0.880211174488068,-0.202855333685875,0.454278349876404,-0.867456555366516,-0.0884242653846741,0.472854495048523,-0.876692533493042,-0.109397746622562,0.472658574581146,-0.874428987503052,0.109791368246078,0.110221721231937,-0.987824380397797,-0.0348895117640495,0.128653809428215,-0.99107563495636,0.1497962474823,0.0972674638032913,-0.983920812606812,0.252733767032623,0.115496128797531,-0.960617661476135,0.110678724944592,0.125406324863434,-0.985912501811981,0.153919607400894,0.127890050411224,-0.979771852493286,-0.0225204434245825,0.181178957223892,-0.983192265033722,0.110769145190716,0.12697733938694,-0.985701262950897,-0.0532830096781254,0.167569354176521,-0.984419345855713,-0.235933154821396,0.107220135629177,-0.965836107730865,-0.0495187267661095,0.0654529109597206,-0.996626317501068,-0.0668462216854095,0.0835179015994072,-0.994261801242828,
- 0.110746435821056,0.126582100987434,-0.985754728317261,0.252729207277298,0.116193868219852,-0.960534691810608,0.139554977416992,0.116385385394096,-0.983350813388824,0.326343595981598,0.117002993822098,-0.937981963157654,0.139564797282219,0.115981675684452,-0.983397126197815,0.252727061510086,0.116512730717659,-0.960496664047241,-0.0640978589653969,0.100848294794559,-0.992834985256195,-0.110402546823025,0.112682528793812,-0.987478673458099,-0.231773793697357,0.127899035811424,-0.964325129985809,-0.300233751535416,0.114513494074345,-0.946966946125031,-0.235450327396393,0.10965022444725,-0.965681076049805,-0.110859483480453,0.106646105647087,-0.988097548484802,-0.0603705011308193,0.1241050735116,-0.990430891513824,0.109750650823116,0.109534651041031,-0.987905442714691,0.00688949739560485,0.118021070957184,-0.992987215518951,-0.109340786933899,0.126489162445068,-0.98592346906662,-0.0588652938604355,0.133417889475822,-0.989310145378113,0.00693094963207841,0.113305360078812,-0.993536055088043,0.109697096049786,0.108632571995258,-0.988010883331299,0.139410570263863,0.122215881943703,-0.982663810253143,0.0068793036043644,0.119177646934986,-0.992849111557007,-0.300279408693314,0.110497608780861,-0.947429418563843,-0.111622914671898,0.0964286625385284,-0.989061117172241,-0.177656129002571,0.119557157158852,-0.976803243160248,-0.177283257246017,0.105679757893085,-0.978469550609589,-0.109163209795952,0.128769382834435,-0.985647916793823,0.00692461617290974,0.114027120172977,-0.993453502655029,-0.280394792556763,0.122635871171951,-0.95201849937439,-0.300323873758316,0.106089793145657,-0.947919070720673,-0.177629664540291,0.11852840334177,-0.976933419704437,0.00688000861555338,0.119097724556923,-0.992858707904816,0.13941091299057,0.122202098369598,-0.982665479183197,0.0921814367175102,0.122006081044674,-0.988239407539368,0.139402434229851,0.122537784278393,-0.982624769210815,0.326020240783691,0.122906751930714,-0.937339186668396,0.0921929404139519,0.121585667133331,-0.988290131092072,-0.0513795651495457,0.114533133804798,-0.992089867591858,
- -0.177406489849091,0.110128723084927,-0.977956354618073,0.00689112907275558,0.117835730314255,-0.993009209632874,-0.278390616178513,0.0987112522125244,-0.955381989479065,-0.177332133054733,0.107428453862667,-0.97827023267746,-0.0513488762080669,0.113626651465893,-0.992195665836334,0.227881014347076,0.122721076011658,-0.965924322605133,0.092235267162323,0.120033510029316,-0.988475918769836,0.326175034046173,0.120107173919678,-0.937648177146912,0.326873481273651,0.106824956834316,-0.93901127576828,0.342499673366547,0.105923056602478,-0.933527886867523,0.227974742650986,0.114882580935955,-0.966865837574005,0.00872428435832262,0.114611767232418,-0.993372142314911,0.00690557667985559,0.116194494068623,-0.993202567100525,0.0922413617372513,0.119809649884701,-0.988502502441406,0.0921707600355148,0.122395694255829,-0.988192200660706,0.227932512760162,0.11857121437788,-0.966430366039276,0.00874282047152519,0.117277264595032,-0.993060708045959,0.00860572699457407,0.097754143178463,-0.995173394680023,-0.0504803992807865,0.0884402692317963,-0.99480152130127,0.00708947842940688,0.0950803458690643,-0.995444357395172,0.34181797504425,0.117078132927418,-0.932444751262665,0.0692916586995125,0.0924812331795692,-0.993300497531891,0.227920025587082,0.119604349136353,-0.966306090354919,0.227872937917709,0.123350627720356,-0.965846002101898,0.0643425211310387,0.136766001582146,-0.988511562347412,0.00877824798226357,0.122394621372223,-0.992442786693573,0.0121173551306129,0.0738458707928658,-0.997196137905121,0.0688422024250031,0.0965628251433373,-0.992943406105042,0.34162712097168,0.12007836997509,-0.932133197784424,-0.122661136090755,0.149405226111412,-0.981138288974762,0.0602539069950581,0.172307267785072,-0.983198702335358,-0.003519874997437,0.169819578528404,-0.985468864440918,-0.155323371291161,0.108512967824936,-0.981885731220245,-0.278604865074158,0.101181104779243,-0.955061078071594,-0.0513148941099644,0.11262409389019,-0.992311835289001,-0.15359491109848,0.0668298304080963,-0.985871374607086,-0.0499829538166523,0.0743964016437531,-0.995975434780121,
- 0.00851151719689369,0.0845827981829643,-0.996380090713501,-0.27747106552124,0.0883227959275246,-0.956665515899658,-0.154942825436592,0.0987623631954193,-0.982974529266357,-0.206430420279503,0.0965563505887985,-0.973685562610626,0.0679500922560692,0.10462786257267,-0.99218738079071,-0.0813891738653183,0.087994672358036,-0.992790400981903,0.00862733647227287,0.100802689790726,-0.9948690533638,-0.0781139805912972,0.0590402185916901,-0.995194792747498,-0.153696551918983,0.0691152736544609,-0.985698044300079,0.00850091315805912,0.0831122249364853,-0.996503949165344,0.0641432479023933,0.138519570231438,-0.988280415534973,-0.116730764508247,0.114621132612228,-0.98652720451355,-0.0851263180375099,0.121716372668743,-0.988907814025879,-0.0826496928930283,0.0992851853370667,-0.991620659828186,-0.205493927001953,0.0852073729038239,-0.974942028522491,-0.154602870345116,0.0903517752885818,-0.983836650848389,-0.206585228443146,0.098463661968708,-0.97346156835556,-0.0841542184352875,0.112872019410133,-0.99003940820694,-0.116327695548534,0.11228308826685,-0.986843645572662,0.111128330230713,-0.147819608449936,-0.982751190662384,-0.0308668408542871,-0.131982356309891,-0.990771353244781,0.14734722673893,-0.159205868840218,-0.976187646389008,0.248351737856865,-0.135956972837448,-0.959081411361694,0.111946702003479,-0.133187681436539,-0.984748184680939,0.151461839675903,-0.128577962517738,-0.980064809322357,-0.0185468811541796,-0.0793038681149483,-0.996677935123444,0.112032435834408,-0.131627351045609,-0.984948217868805,-0.0473430640995502,-0.0923563912510872,-0.994599878787994,-0.23468205332756,-0.145633488893509,-0.961101055145264,-0.045477107167244,-0.194453880190849,-0.979856908321381,-0.0611277967691422,-0.176740229129791,-0.982357501983643,0.112010091543198,-0.132034838199615,-0.984896302223206,0.248343780636787,-0.135309562087059,-0.959175109863281,0.137856855988503,-0.140518665313721,-0.980433583259583,0.326108306646347,-0.128523200750351,-0.936554968357086,0.137861251831055,-0.140739127993584,-0.980401337146759,0.24834269285202,-0.135224223136902,-0.95918732881546,
- -0.0583273023366928,-0.159476399421692,-0.985477149486542,-0.115216687321663,-0.145218089222908,-0.982668220996857,-0.230365335941315,-0.124930806457996,-0.965051352977753,-0.296856164932251,-0.133475512266159,-0.945547819137573,-0.234197691082954,-0.14328770339489,-0.96157169342041,-0.115707047283649,-0.151448890566826,-0.981669664382935,-0.0545313693583012,-0.136175751686096,-0.989182770252228,0.111094996333122,-0.148405790328979,-0.982666611671448,0.00891090370714664,-0.141834333539009,-0.989850401878357,-0.114073812961578,-0.130895331501961,-0.984811544418335,-0.0529965274035931,-0.126786351203918,-0.990513324737549,0.00894131232053041,-0.146354913711548,-0.989191830158234,0.111048333346844,-0.149225264787674,-0.982547760009766,0.137765496969223,-0.136013269424438,-0.981081604957581,0.00890353135764599,-0.140742167830467,-0.990006268024445,-0.296908915042877,-0.13760270178318,-0.944939494132996,-0.116511039435863,-0.161781787872314,-0.979924380779266,-0.171713754534721,-0.136485144495964,-0.975646555423737,-0.171388790011406,-0.149466335773468,-0.973799645900726,-0.113886319100857,-0.128571510314941,-0.985139310359955,0.00893623195588589,-0.145598083734512,-0.989303469657898,-0.275033712387085,-0.126279890537262,-0.953105390071869,-0.296960681676865,-0.142114818096161,-0.944255232810974,-0.171684935688972,-0.13768607378006,-0.975482881069183,0.00890413112938404,-0.140830919146538,-0.989993631839752,0.137766182422638,-0.136046797037125,-0.981076836585999,0.0915383622050285,-0.136762753129005,-0.986365377902985,0.137725964188576,-0.134105011820793,-0.981349766254425,0.325775295495987,-0.122684888541698,-0.937453389167786,0.0915485471487045,-0.137134924530983,-0.986312866210938,-0.0510479807853699,-0.144678205251694,-0.988161087036133,-0.171501517295837,-0.145098388195038,-0.974440217018127,0.00891108717769384,-0.141861721873283,-0.989846348762512,-0.272970944643021,-0.150579109787941,-0.95016473531723,-0.171418055891991,-0.148342356085777,-0.973966300487518,-0.0509983897209167,-0.146244734525681,-0.987933039665222,
- 0.223376959562302,-0.130052372813225,-0.966017127037048,0.0915905758738518,-0.138677343726158,-0.986093163490295,0.325940430164337,-0.125555485486984,-0.93701583147049,0.326676994562149,-0.138983324170113,-0.934861481189728,0.344017207622528,-0.1377212703228,-0.928808391094208,0.223440170288086,-0.137404665350914,-0.964984178543091,0.00664545502513647,-0.145380899310112,-0.989353537559509,0.00892422255128622,-0.143811270594597,-0.989564895629883,0.0915982648730278,-0.138960391283035,-0.986052632331848,0.0915279239416122,-0.136381521821022,-0.986419141292572,0.223427325487137,-0.135791167616844,-0.965215504169464,0.00666945846751332,-0.142719626426697,-0.989740669727325,0.00649808254092932,-0.16158139705658,-0.986838102340698,-0.0502196326851845,-0.17029781639576,-0.984112203121185,0.00905979331582785,-0.164210274815559,-0.986383736133575,0.343374013900757,-0.126934304833412,-0.930581629276276,0.0743248984217644,-0.165399000048637,-0.983422100543976,0.223405137658119,-0.133156776428223,-0.965587615966797,0.223385125398636,-0.130926549434662,-0.965897262096405,0.0695459917187691,-0.122152782976627,-0.990071833133698,0.00671576475724578,-0.137567609548569,-0.990469634532928,0.0138670150190592,-0.184934258460999,-0.982653081417084,0.0738890022039413,-0.161413162946701,-0.984116971492767,0.343192100524902,-0.124000787734985,-0.931044042110443,-0.118804343044758,-0.107794582843781,-0.987049162387848,0.0655193701386452,-0.0864495858550072,-0.99409943819046,-0.0016006191726774,-0.089593805372715,-0.995977103710175,-0.153941601514816,-0.147991329431534,-0.976934254169464,-0.273195832967758,-0.148025125265121,-0.950501263141632,-0.050961822271347,-0.147397682070732,-0.987763643264771,-0.152162432670593,-0.18968166410923,-0.969983339309692,-0.0497563183307648,-0.184141784906387,-0.981639504432678,0.00637810118496418,-0.174599707126617,-0.984618842601776,-0.272038787603378,-0.160939440131187,-0.948732495307922,-0.153550997376442,-0.157745286822319,-0.975468337535858,-0.202825665473938,-0.157421693205833,-0.966478228569031,0.0730741173028946,-0.153984487056732,-0.98536741733551,
- -0.0849902182817459,-0.171001181006432,-0.981598317623138,0.00652309088036418,-0.158848807215691,-0.987281382083893,-0.0817398503422737,-0.199572294950485,-0.976467847824097,-0.152268245816231,-0.187378093600273,-0.970414280891418,0.00636328058317304,-0.176197454333305,-0.984334290027618,0.0693476870656013,-0.12037917226553,-0.990302860736847,-0.112934142351151,-0.142746463418007,-0.983295142650604,-0.0886902362108231,-0.137487828731537,-0.986524879932404,-0.0862230509519577,-0.159955203533173,-0.983351469039917,-0.201914802193642,-0.168607607483864,-0.964780747890472,-0.153201729059219,-0.166154310107231,-0.974126279354095,-0.202984318137169,-0.155437812209129,-0.966765999794006,-0.0877143517136574,-0.146433487534523,-0.985324025154114,-0.112504705786705,-0.145263314247131,-0.982975721359253,0.113940253853798,-0.485186636447906,-0.8669553399086,-0.0320378355681896,-0.473200470209122,-0.880372047424316,0.148775607347488,-0.49418568611145,-0.85653156042099,0.247111469507217,-0.466127127408981,-0.849506556987762,0.114710599184036,-0.472539722919464,-0.873812139034271,0.153110548853874,-0.466216713190079,-0.871320366859436,-0.0198907051235437,-0.42629936337471,-0.904363453388214,0.114792466163635,-0.471166431903839,-0.874542653560638,-0.051975104957819,-0.43761283159256,-0.897660076618195,-0.236358344554901,-0.475165456533432,-0.84755676984787,-0.0464259535074234,-0.527414917945862,-0.848338425159454,-0.0652850046753883,-0.511040329933167,-0.857073903083801,0.114770784974098,-0.471530944108963,-0.874349176883698,0.24710601568222,-0.465531021356583,-0.849834978580475,0.138109490275383,-0.477915495634079,-0.867480576038361,0.326188027858734,-0.451089829206467,-0.830734193325043,0.138116911053658,-0.478205859661102,-0.867319345474243,0.247103914618492,-0.465303868055344,-0.849959969520569,-0.0625825300812721,-0.49622043967247,-0.865938067436218,-0.116415619850159,-0.482791483402252,-0.867963016033173,-0.232045710086823,-0.457195639610291,-0.858560979366302,-0.297275453805923,-0.458641707897186,-0.837421834468842,-0.235872551798821,-0.473129361867905,-0.848830223083496,
- -0.116919189691544,-0.488348126411438,-0.864780902862549,-0.058926846832037,-0.476099997758865,-0.877414643764496,0.113911658525467,-0.48564675450325,-0.866701424121857,0.00379772135056555,-0.482310593128204,-0.875992059707642,-0.115240082144737,-0.46994537115097,-0.875140607357025,-0.0574570633471012,-0.467987149953842,-0.881865501403809,0.00382927362807095,-0.486317813396454,-0.873773634433746,0.113869801163673,-0.486319333314896,-0.866329729557037,0.137988194823265,-0.47325074672699,-0.870053470134735,0.00379004958085716,-0.481336236000061,-0.876527845859528,-0.297345787286758,-0.462560623884201,-0.835238397121429,-0.117741033434868,-0.497489303350449,-0.859442532062531,-0.175356015563011,-0.472039490938187,-0.863961219787598,-0.175031945109367,-0.483499884605408,-0.857666432857513,-0.115048058331013,-0.467863142490387,-0.876280784606934,0.00382397486828268,-0.485644906759262,-0.874147832393646,-0.275987535715103,-0.454489201307297,-0.846918225288391,-0.297415167093277,-0.466790735721588,-0.832856893539429,-0.175327017903328,-0.473112821578979,-0.863379836082459,0.00379066588357091,-0.481414526700974,-0.876484870910645,0.137988716363907,-0.473270803689957,-0.870042443275452,0.0927131101489067,-0.476952165365219,-0.874025702476501,0.137965142726898,-0.472383260726929,-0.870528399944305,0.325867176055908,-0.445898145437241,-0.83365786075592,0.0926775708794594,-0.475498974323273,-0.87482088804245,-0.0443403869867325,-0.484487503767014,-0.873673737049103,-0.175144866108894,-0.479634255170822,-0.859811186790466,0.00379789550788701,-0.482332795858383,-0.875979840755463,-0.273868769407272,-0.476425886154175,-0.835472464561462,-0.17506155371666,-0.482498705387115,-0.858224034309387,-0.0443090572953224,-0.48530375957489,-0.873222172260284,0.228652134537697,-0.462272673845291,-0.856750965118408,0.0927052348852158,-0.476631999015808,-0.87420117855072,0.32601872086525,-0.448329120874405,-0.832293689250946,0.326703608036041,-0.459822446107864,-0.825728833675385,0.348165363073349,-0.455634981393814,-0.819254338741302,0.228721871972084,-0.468847155570984,-0.85315215587616,
- 0.00688591646030545,-0.484956234693527,-0.874511301517487,0.0038113254122436,-0.484038233757019,-0.87503856420517,0.0927650779485703,-0.4790980219841,-0.872845768928528,0.0927092283964157,-0.476792484521866,-0.874113202095032,0.228703886270523,-0.467034816741943,-0.854150474071503,0.00689612375572324,-0.482611149549484,-0.875807583332062,0.00681688217446208,-0.500440299510956,-0.865744233131409,-0.0434464998543262,-0.507243633270264,-0.860706865787506,0.00395331531763077,-0.502071261405945,-0.864817261695862,0.347557604312897,-0.446387261152267,-0.824586033821106,0.074699342250824,-0.50300407409668,-0.861049890518188,0.228682592511177,-0.465001344680786,-0.855264902114868,0.228657469153404,-0.462739378213882,-0.856497526168823,0.0695345401763916,-0.463408201932907,-0.883412599563599,0.00691525964066386,-0.478174030780792,-0.878237903118134,0.0134139750152826,-0.52014034986496,-0.853975474834442,0.0742368102073669,-0.49945205450058,-0.863155126571655,0.347384035587311,-0.443842977285385,-0.826031446456909,-0.120641186833382,-0.449656635522842,-0.885016858577728,0.0653341934084892,-0.431310176849365,-0.899834990501404,-0.00208311714231968,-0.435602307319641,-0.900136828422546,-0.150407657027245,-0.483628809452057,-0.862253248691559,-0.274105161428452,-0.47407665848732,-0.836730360984802,-0.0442748479545116,-0.486193865537643,-0.872728765010834,-0.148651167750359,-0.520016610622406,-0.841121733188629,-0.0429542548954487,-0.519317865371704,-0.853500962257385,0.0067639546468854,-0.511893212795258,-0.859022438526154,-0.27291938662529,-0.485639125108719,-0.830463647842407,-0.150019317865372,-0.492247015237808,-0.857430517673492,-0.207161635160446,-0.488433092832565,-0.847653925418854,0.0732497796416283,-0.491876125335693,-0.867578566074371,-0.0808666720986366,-0.50652015209198,-0.858427584171295,0.00683068763464689,-0.497394889593124,-0.867497384548187,-0.0775925293564796,-0.531429350376129,-0.843541502952576,-0.148755952715874,-0.518013596534729,-0.842338144779205,0.00675901491194963,-0.512944996356964,-0.858394980430603,
- 0.069329209625721,-0.461836993694305,-0.884251117706299,-0.114651255309582,-0.481107234954834,-0.869132280349731,-0.0846097096800804,-0.476829290390015,-0.874914288520813,-0.0821315869688988,-0.496635735034943,-0.864064455032349,-0.206221103668213,-0.498396039009094,-0.842065453529358,-0.149674415588379,-0.4996038377285,-0.853225409984589,-0.207317546010017,-0.48674675822258,-0.848585307598114,-0.0836386531591415,-0.484661549329758,-0.870693862438202,-0.114272028207779,-0.483052343130112,-0.868102729320526,-0.168173849582672,0.984840273857117,0.0425107255578041,-0.0913292691111565,0.994704127311707,0.0471451468765736,-0.20637583732605,0.977482259273529,0.0440168157219887,-0.286626935005188,0.957901000976563,-0.016452306881547,-0.165567085146904,0.986196935176849,-0.00178103265352547,-0.204949796199799,0.978736996650696,-0.00834701303392649,-0.28187221288681,0.958838522434235,0.034304216504097,-0.328480005264282,0.944509863853455,0.00148902065120637,-0.203684628009796,0.9786736369133,0.0266557801514864,-0.205986052751541,0.978169500827789,0.0274657066911459,-0.235318765044212,0.971883714199066,0.00819357205182314,-0.281373083591461,0.958796918392181,0.0392124094069004,-0.328288525342941,0.944577515125275,0.000432154338341206,-0.281988054513931,0.95884495973587,0.0331555157899857,-0.237139105796814,0.97137451171875,0.0140201598405838,-0.326929241418839,0.945022821426392,-0.0070118261501193,-0.24353338778019,0.969271242618561,0.0347130484879017,-0.418316453695297,0.907945275306702,-0.0254305340349674,-0.206223338842392,0.977795720100403,0.0372514985501766,-0.160084322094917,0.98708975315094,0.00520146265625954,-0.232170417904854,0.972673535346985,-0.00181850465014577,-0.41603547334671,0.90887051820755,-0.0294763278216124,-0.242162436246872,0.969764173030853,0.0302463229745626,-0.271275728940964,0.960176765918732,0.0668587014079094,-0.233173668384552,0.972434163093567,0.00136310467496514,-0.169984295964241,0.985212445259094,0.0214881971478462,-0.223941668868065,0.974520146846771,-0.0126735437661409,-0.226257473230362,0.974027335643768,-0.00886042043566704,
- -0.172285303473473,0.984722554683685,0.0252872481942177,-0.173616513609886,0.984508395195007,0.0245104096829891,0.0117533784359694,-0.3781518638134,0.925668954849243,-0.0236702840775251,-0.389307498931885,0.920803666114807,0.0373481549322605,-0.366505324840546,0.929666042327881,0.153341606259346,-0.30959364771843,0.938423216342926,0.00816134922206402,-0.368285298347473,0.92967700958252,0.0356874987483025,-0.362610399723053,0.931257247924805,0.16263772547245,-0.327269405126572,0.930829584598541,-0.0847486332058907,-0.464265823364258,0.881632089614868,0.282168328762054,-0.260790765285492,0.923238456249237,0.0264735110104084,-0.340896427631378,0.939728021621704,-0.222923174500465,-0.437631279230118,0.871082186698914,0.149917960166931,-0.303081870079041,0.941098272800446,-0.0960399806499481,-0.445483267307281,0.890124261379242,0.153189197182655,-0.309303790330887,0.938543677330017,-0.219282627105713,-0.445545464754105,0.867988705635071,-0.117662087082863,-0.408571779727936,0.905110359191895,-0.208026885986328,-0.469524651765823,0.858062565326691,-0.416586756706238,-0.520842969417572,0.745102763175964,0.0273452177643776,-0.342958152294159,0.938952565193176,-0.446218758821487,-0.46277990937233,0.765978991985321,-0.227561518549919,-0.427432656288147,0.874938309192657,-0.430895805358887,-0.499472677707672,0.751568913459778,-0.218718364834785,-0.446765005588531,0.867504060268402,-0.432647436857224,-0.499290227890015,0.750683307647705,-0.217318683862686,-0.449782371520996,0.86629593372345,-0.430668562650681,-0.503305613994598,0.749138236045837,-0.431296348571777,-0.502200543880463,0.749518573284149,-0.439085364341736,-0.485188692808151,0.756171941757202,-0.438211411237717,-0.484087705612183,0.757383584976196,-0.446347922086716,-0.484896540641785,0.75209629535675,-0.0542505383491516,0.46856227517128,0.881763279438019,-0.0899802669882774,0.46167665719986,0.882472813129425,-0.0251345857977867,0.476248204708099,0.878951609134674,0.100634202361107,0.506377398967743,0.856419682502747,-0.0560182742774487,0.477692753076553,0.876739203929901,
- -0.0261253975331783,0.48027378320694,0.876729488372803,0.106596305966377,0.488600760698318,0.865971565246582,-0.164170160889626,0.392920821905136,0.904799222946167,0.232987031340599,0.510666131973267,0.827609300613403,-0.0314596854150295,0.501803755760193,0.864409208297729,-0.302768111228943,0.415131807327271,0.857902705669403,0.0983098894357681,0.513211309909821,0.852613210678101,-0.171920299530029,0.412596851587296,0.894543170928955,0.100446172058582,0.506932079792023,0.85611355304718,-0.300578773021698,0.407248109579086,0.862439215183258,-0.185395479202271,0.446839869022369,0.875192940235138,-0.292853027582169,0.379879325628281,0.87745600938797,-0.500534355640411,0.287717908620834,0.816507041454315,-0.0308147687464952,0.499213606119156,0.8659308552742,-0.514670491218567,0.346855729818344,0.784095287322998,-0.304875582456589,0.422777980566025,0.853410601615906,-0.510888934135437,0.307795345783234,0.802654683589935,-0.299306064844131,0.40269261598587,0.865017056465149,-0.512357592582703,0.307521641254425,0.801823019981384,-0.298437595367432,0.399594604969025,0.866752088069916,-0.506353676319122,0.305581778287888,0.806365728378296,-0.511512219905853,0.304490238428116,0.803517997264862,-0.516186058521271,0.321504801511765,0.793842971324921,-0.510406911373138,0.325072705745697,0.796123445034027,-0.521159827709198,0.320107847452164,0.791153192520142,-0.164241880178452,0.611967265605927,0.773641169071198,-0.0897795706987381,0.614461600780487,0.783821761608124,-0.210716158151627,0.605350494384766,0.76756078004837,-0.288907945156097,0.61432158946991,0.734262347221375,-0.163522005081177,0.62145721912384,0.766192853450775,-0.210163459181786,0.621253788471222,0.754900693893433,-0.285187631845474,0.586020767688751,0.758450865745544,-0.32552433013916,0.604230761528015,0.727281987667084,-0.206296339631081,0.604816973209381,0.769180297851563,-0.210757657885551,0.604034066200256,0.768585741519928,-0.238411083817482,0.616031885147095,0.750776171684265,-0.284603625535965,0.581766366958618,0.761937439441681,-0.322910010814667,0.6153724193573,0.71905905008316,
- -0.286758214235306,0.597700476646423,0.748681426048279,-0.236513361334801,0.62095844745636,0.747309863567352,-0.323587089776993,0.612524628639221,0.721183061599731,-0.245839700102806,0.596262454986572,0.764221131801605,-0.421912163496017,0.603869676589966,0.676263034343719,-0.210896968841553,0.599457144737244,0.772122800350189,-0.161392033100128,0.630819499492645,0.758959412574768,-0.234115317463875,0.627113938331604,0.7429119348526,-0.419633507728577,0.607561826705933,0.674371063709259,-0.244457721710205,0.600000083446503,0.761735200881958,-0.276218622922897,0.567513167858124,0.77564948797226,-0.235181048512459,0.624387860298157,0.744868874549866,-0.171158775687218,0.617247045040131,0.767926275730133,-0.228690087795258,0.637788593769073,0.735477089881897,-0.231002971529961,0.634564101696014,0.737540543079376,-0.173422560095787,0.614057064056396,0.76997321844101,-0.175615563988686,0.614849030971527,0.768843173980713,0.0288887433707714,-0.752819418907166,0.657592833042145,-0.00435786182060838,-0.753358364105225,0.657595753669739,-0.042086735367775,-0.753667712211609,0.655906796455383,-0.0793543383479118,-0.75788676738739,0.64754194021225,0.0288887433707714,-0.752819418907166,0.657592833042145,-0.042086735367775,-0.753667712211609,0.655906796455383,0.346129059791565,-0.677514970302582,0.648974716663361,0.0282955076545477,-0.726820766925812,0.686244189739227,-0.0784111171960831,-0.762247443199158,0.642518877983093,-0.0794131308794022,-0.757613182067871,0.647854804992676,-0.0406093373894691,-0.779202699661255,0.625455021858215,-0.270074665546417,-0.743148505687714,0.612200975418091,0.346156716346741,-0.677648901939392,0.648820102214813,-0.0782893225550652,-0.762807011604309,0.641869485378265,0.140584096312523,-0.775888681411743,0.615006446838379,0.109742425382137,-0.720879673957825,0.684316515922546,-0.0783931165933609,-0.762330234050751,0.642423033714294,-0.261274844408035,-0.768245995044708,0.584408700466156,0.347142308950424,-0.0300191640853882,0.937331914901733,0.531523585319519,0.0203431509435177,0.846799194812775,
- 0.373046666383743,-0.00246363319456577,0.927809417247772,0.348030507564545,-0.0341106466948986,0.936862468719482,0.375515162944794,-0.0243734624236822,0.926495730876923,0.18047434091568,-0.0662537589669228,0.98134583234787,-0.172673895955086,-0.166350573301315,0.970830261707306,0.348888516426086,-0.0380893051624298,0.936389982700348,0.184732884168625,-0.0904666781425476,0.978616118431091,0.376443803310394,-0.033063031733036,0.925849258899689,0.265016078948975,-0.0456297919154167,0.963163733482361,0.181194484233856,-0.0703074261546135,0.980930924415588,-0.181677639484406,-0.143376365303993,0.972849667072296,0.186016321182251,-0.0978816077113152,0.977658987045288,-0.0149230463430285,-0.148218423128128,0.988842070102692,0.182953655719757,-0.0802788287401199,0.979838371276855,0.268238335847855,-0.0892690643668175,0.959207594394684,-0.0187959410250187,-0.114617139101028,0.993231892585754,0.0259940810501575,-0.539255201816559,0.841741263866425,-0.00632463069632649,-0.539766073226929,0.841791331768036,-0.0420649722218513,-0.540371239185333,0.840374708175659,-0.0763315185904503,-0.546733021736145,0.833820462226868,0.0259940810501575,-0.539255201816559,0.841741263866425,-0.0420649722218513,-0.540371239185333,0.840374708175659,0.346702873706818,-0.469056934118271,0.812270104885101,0.0255185980349779,-0.505207002162933,0.862620830535889,-0.0751850605010986,-0.553361594676971,0.829540908336639,-0.0765755027532578,-0.545313775539398,0.834726929664612,-0.0405860655009747,-0.573409259319305,0.818263173103333,-0.267220765352249,-0.542173683643341,0.796643435955048,0.346681147813797,-0.468917101621628,0.812360107898712,-0.075011670589447,-0.554358720779419,0.82889062166214,0.143763437867165,-0.572301745414734,0.807343065738678,0.112592250108719,-0.499703466892242,0.858847737312317,-0.0753552168607712,-0.552381277084351,0.830178558826447,-0.258186161518097,-0.574614346027374,0.77663266658783,0.349894762039185,0.229995340108871,0.908116638660431,0.532494783401489,0.252840995788574,0.807787716388702,0.369937926530838,0.253915131092072,0.893685102462769,
- 0.352814048528671,0.216425836086273,0.910319805145264,0.373374193906784,0.222482994198799,0.900607049465179,0.184025853872299,0.197719469666481,0.962829947471619,-0.176876410841942,0.119667239487171,0.976931154727936,0.348796993494034,0.235005334019661,0.907255947589874,0.184431374073029,0.195410430431366,0.963223695755005,0.373525738716125,0.221003025770187,0.900908529758453,0.265694826841354,0.21969673037529,0.938690483570099,0.183422356843948,0.201142475008965,0.962235927581787,-0.190665125846863,0.154614597558975,0.969402492046356,0.183029428124428,0.203362673521042,0.961843967437744,-0.0187469813972712,0.1574746966362,0.987345159053802,0.181967064738274,0.209333866834641,0.960763931274414,0.267527461051941,0.194791585206985,0.94365531206131,-0.0214087013155222,0.179833084344864,0.983464241027832,0.0261459294706583,-0.187348306179047,0.981945514678955,-0.00403548497706652,-0.18755878508091,0.982245087623596,-0.0418947339057922,-0.188727349042892,0.981135487556458,-0.0763988494873047,-0.197248831391335,0.977372050285339,0.0261459294706583,-0.187348306179047,0.981945514678955,-0.0418947339057922,-0.188727349042892,0.981135487556458,0.349270761013031,-0.132615059614182,0.927590012550354,0.0256832037121058,-0.147875070571899,0.988672494888306,-0.0752363950014114,-0.205091759562492,0.975846767425537,-0.0766530707478523,-0.19552706182003,0.977698028087616,-0.0405312851071358,-0.22923070192337,0.972527921199799,-0.269867539405823,-0.207220643758774,0.940335750579834,0.349278390407562,-0.132671222090721,0.92757910490036,-0.07506113499403,-0.20627024769783,0.975611805915833,0.141818344593048,-0.230396136641502,0.962707221508026,0.111564919352531,-0.145334497094154,0.983072400093079,-0.0754238367080688,-0.20382983982563,0.976096630096436,-0.260721266269684,-0.245084717869759,0.933786869049072,0.350852131843567,0.544687449932098,0.761720657348633,0.535751342773438,0.529044628143311,0.658089876174927,0.371969372034073,0.562966108322144,0.738043308258057,0.350358217954636,0.5466468334198,0.760543465614319,0.373751670122147,0.548626720905304,0.747875928878784,
- 0.185377761721611,0.548444926738739,0.815379202365875,-0.170792251825333,0.456935197114944,0.872949182987213,0.352621495723724,0.537580251693726,0.765940964221954,0.190691143274307,0.522627472877502,0.830961763858795,0.373603850603104,0.549858510494232,0.747044682502747,0.268644243478775,0.562405407428741,0.782004117965698,0.184140533208847,0.554266095161438,0.811715066432953,-0.182330176234245,0.481929808855057,0.857029378414154,0.190691158175468,0.522627413272858,0.830961763858795,-0.0129557307809591,0.49012553691864,0.87155556678772,0.189069271087646,0.530653297901154,0.826232492923737,0.273291051387787,0.509909570217133,0.8156618475914,-0.0158856492489576,0.511238813400269,0.859291911125183,0.0224190056324005,0.072110190987587,0.99714469909668,-0.00737601052969694,0.0714905634522438,0.997414112091064,-0.0420041903853416,0.070262610912323,0.996643781661987,-0.0726629868149757,0.0621973089873791,0.995415270328522,0.0224190056324005,0.072110190987587,0.99714469909668,-0.0420041903853416,0.070262610912323,0.996643781661987,0.342844069004059,0.115221135318279,0.932299435138702,0.0216485857963562,0.11500746011734,0.993128716945648,-0.072621762752533,0.061901468783617,0.995436728000641,-0.0742660835385323,0.0737326815724373,0.994509041309357,-0.040986493229866,0.0428153984248638,0.998242020606995,-0.272217452526093,0.0532078184187412,0.960763514041901,0.343557000160217,0.110016949474812,0.932665467262268,-0.0717805922031403,0.0558744482696056,0.995854318141937,0.141243025660515,0.0245402920991182,0.989670753479004,0.110487908124924,0.112831093370914,0.987452030181885,-0.0716968327760696,0.0552752129733562,0.995893776416779,-0.26072895526886,0.00431822799146175,0.965402483940125,0.344378858804703,0.728432655334473,0.592274606227875,0.530364990234375,0.686834394931793,0.496962279081345,0.373669296503067,0.737318575382233,0.562789976596832,0.347273498773575,0.719017088413239,0.60200959444046,0.377130538225174,0.716447174549103,0.58692079782486,0.187480643391609,0.734913766384125,0.651730597019196,-0.17747788131237,0.680643796920776,0.710792243480682,
- 0.343052506446838,0.732630729675293,0.587849617004395,0.187999188899994,0.732834756374359,0.653918623924255,0.377272725105286,0.715519607067108,0.587960004806519,0.267375081777573,0.737361073493958,0.620329916477203,0.186896786093712,0.737238228321075,0.649268448352814,-0.191007167100906,0.703898966312408,0.68413633108139,0.186648160219193,0.738222658634186,0.648220479488373,-0.0185572244226933,0.717265546321869,0.696552813053131,0.185527563095093,0.742621183395386,0.643500804901123,0.269204050302505,0.721754014492035,0.637652218341827,-0.0212141703814268,0.732818722724915,0.680093228816986,0.0285765044391155,0.41950324177742,0.907303929328918,-0.00392474979162216,0.419447809457779,0.907770991325378,-0.041179895401001,0.417849868535995,0.907582342624664,-0.0727983638644218,0.409520208835602,0.9093918800354,0.0285765044391155,0.41950324177742,0.907303929328918,-0.041179895401001,0.417849868535995,0.907582342624664,0.345586836338043,0.436931788921356,0.830457925796509,0.0279607716947794,0.459466516971588,0.887754857540131,-0.0726085156202316,0.408305585384369,0.90995317697525,-0.0745826289057732,0.420940637588501,0.9040167927742,-0.0402114875614643,0.391492366790771,0.919302344322205,-0.271357446908951,0.389144986867905,0.880301952362061,0.346285969018936,0.432255268096924,0.832611203193665,-0.0717113092541695,0.402566760778427,0.912577390670776,0.139014571905136,0.37208878993988,0.917728126049042,0.108476497232914,0.453559190034866,0.88459986448288,-0.0718239098787308,0.403286933898926,0.912250518798828,-0.260129332542419,0.345626771450043,0.901595711708069,0.348906487226486,0.890452146530151,0.292163103818893,0.532938957214355,0.817635357379913,0.21782723069191,0.374392867088318,0.889504373073578,0.261938840150833,0.349703013896942,0.889028072357178,0.295528113842011,0.376837909221649,0.881891787052155,0.283302485942841,0.184740483760834,0.922815263271332,0.338057637214661,-0.174299716949463,0.884540140628815,0.432675778865814,0.350256711244583,0.88802582025528,0.297876507043839,0.189078778028488,0.913147330284119,0.361124813556671,
- 0.377757370471954,0.878730714321136,0.291773349046707,0.27034330368042,0.910295307636261,0.313491553068161,0.18546849489212,0.921252489089966,0.341899812221527,-0.183099135756493,0.892816543579102,0.411525547504425,0.190397024154663,0.91003555059433,0.368218004703522,-0.0144478948786855,0.907994747161865,0.418732434511185,0.187293499708176,0.917230248451233,0.351581811904907,0.273560374975204,0.894158184528351,0.354465663433075,-0.0183065254241228,0.920931398868561,0.389294564723969,-0.0577576719224453,0.724070012569427,-0.687303900718689,-0.146815404295921,0.713476002216339,-0.685125708580017,-0.0419599413871765,0.721472382545471,-0.691170692443848,-0.297191798686981,0.682757496833801,-0.667472362518311,-0.147430643439293,0.720164239406586,-0.677958488464355,-0.0584287159144878,0.731073558330536,-0.679792284965515,0.108697302639484,0.729342758655548,-0.675458490848541,-0.0588897652924061,0.735878050327301,-0.674548447132111,-0.0380527600646019,0.741162240505219,-0.670246601104736,-0.0565242543816566,0.711163997650146,-0.700750172138214,0.144734054803848,0.750570714473724,-0.644744634628296,-0.294280380010605,0.672212362289429,-0.67935973405838,0.108073614537716,0.723175168037415,-0.682156801223755,0.154659524559975,0.711143136024475,-0.685824990272522,-0.0565157383680344,0.711075067520142,-0.700841069221497,-0.0371690057218075,0.752121329307556,-0.657975852489471,-0.296259820461273,0.679370701313019,-0.671331286430359,0.142561241984367,0.75863116979599,-0.635731935501099,0.429209798574448,0.70596319437027,-0.563378095626831,0.148403570055962,0.736506938934326,-0.659950017929077,0.114633359014988,0.78974437713623,-0.602630078792572,-0.0239857789129019,0.710752427577972,-0.703033208847046,0.148294597864151,0.736932933330536,-0.659498751163483,0.429004639387131,0.706698536872864,-0.562612116336823,0.45422238111496,-0.494566142559052,0.741003632545471,-0.00304673961363733,-0.667191922664642,0.744879722595215,0.266649454832077,-0.619311273097992,0.738479256629944,0.453243970870972,-0.49066835641861,0.744187116622925,0.247855931520462,-0.548859596252441,0.798323631286621,
- -0.00630508130416274,-0.657960414886475,0.753026127815247,0.230886101722717,-0.555796802043915,0.798612236976624,-0.011322776786983,-0.643529891967773,0.765337228775024,-0.199092194437981,-0.682221949100494,0.70351654291153,-0.0074027911759913,-0.654825747013092,0.755743622779846,0.250287592411041,-0.580634593963623,0.774738550186157,-0.0939986109733582,-0.648124158382416,0.755711138248444,-0.0182802639901638,-0.62308931350708,0.781937062740326,-0.0957087203860283,-0.640977680683136,0.761569082736969,-0.212683320045471,-0.650247812271118,0.729344606399536,0.250271439552307,-0.580408573150635,0.77491295337677,0.136892139911652,-0.597433030605316,0.790148437023163,-0.0952810347080231,-0.642773628234863,0.760107636451721,-0.188301220536232,-0.643426239490509,0.741987407207489,-0.233650013804436,-0.596416890621185,0.767915725708008,-0.100219465792179,-0.621679484844208,0.776833772659302,-0.0965011343359947,-0.637634932994843,0.764270424842834,0.137869045138359,-0.633388221263886,0.761453688144684,-0.189078599214554,-0.638360261917114,0.746153771877289,0.220978498458862,-0.767045855522156,0.602336406707764,-0.245916903018951,-0.839304327964783,0.48486402630806,0.0229686852544546,-0.845687210559845,0.533184409141541,0.219877749681473,-0.76399040222168,0.6066073179245,0.00403509847819805,-0.794250130653381,0.607577562332153,-0.249333992600441,-0.832457423210144,0.494820386171341,-0.01412867102772,-0.797053515911102,0.603743374347687,-0.254420250654221,-0.82186758518219,0.509709715843201,-0.427664339542389,-0.803771734237671,0.41358694434166,-0.250389993190765,-0.830298542976379,0.4979048371315,0.0067982729524374,-0.816846966743469,0.576814413070679,-0.334697753190994,-0.807048082351685,0.486467719078064,-0.336509704589844,-0.801738023757935,0.493940889835358,-0.44123038649559,-0.778962075710297,0.44557136297226,-0.261444896459579,-0.806414604187012,0.530417084693909,0.00675455713644624,-0.816498219966888,0.577308654785156,-0.101521633565426,-0.815485954284668,0.569803476333618,-0.336064338684082,-0.803057551383972,0.492096841335297,
- -0.424319505691528,-0.778574466705322,0.46235778927803,-0.461391896009445,-0.736009836196899,0.49538591504097,-0.341196775436401,-0.787238419055939,0.513653993606567,-0.337344080209732,-0.799239218235016,0.497408956289291,-0.099834568798542,-0.840790569782257,0.53207540512085,-0.424887418746948,-0.776251912117004,0.46572944521904,-0.146552920341492,0.77959406375885,-0.608896851539612,-0.230158627033234,0.764818668365479,-0.601730346679688,-0.124176986515522,0.779251337051392,-0.614286303520203,-0.380388587713242,0.715981960296631,-0.585384070873261,-0.230093091726303,0.763797461986542,-0.603051245212555,-0.146598905324936,0.780112087726593,-0.608221888542175,0.0311645697802305,0.784116685390472,-0.61983048915863,-0.146603539586067,0.780164301395416,-0.608153820037842,-0.122445411980152,0.786789894104004,-0.604953587055206,-0.144001990556717,0.751733243465424,-0.643553078174591,0.0599262565374374,0.801182746887207,-0.595411717891693,-0.374941200017929,0.69700288772583,-0.611233353614807,0.031000480055809,0.782758712768555,-0.621552884578705,0.0673850402235985,0.774289071559906,-0.629234254360199,-0.145006582140923,0.762513160705566,-0.6305131316185,-0.121677175164223,0.79130631685257,-0.599190294742584,-0.376385748386383,0.701974153518677,-0.604620575904846,0.0582909621298313,0.806820452213287,-0.587914049625397,0.34400075674057,0.77798855304718,-0.525734961032867,0.0613145902752876,0.796324253082275,-0.601754307746887,0.0385648868978024,0.842608153820038,-0.537144541740417,-0.111178159713745,0.761869013309479,-0.638118326663971,0.0612109676003456,0.79668915271759,-0.601281642913818,0.343857407569885,0.778472661972046,-0.525111794471741,-0.12027445435524,0.19770684838295,0.972854614257813,-0.10660957545042,0.180287450551987,0.977819442749023,0.0838905200362206,0.182184860110283,0.979679048061371,-0.299709647893906,0.223911225795746,0.927382290363312,-0.107145808637142,0.236747875809669,0.965644955635071,-0.118168123066425,0.222956046462059,0.967639863491058,0.0195996128022671,0.197840794920921,0.980038225650787,-0.120519191026688,0.194700196385384,0.973430514335632,
- 0.0836145356297493,0.179599523544312,0.980179905891418,-0.11972401291132,0.204411849379539,0.971535861492157,-0.229623436927795,0.205831363797188,0.951265752315521,-0.298277109861374,0.202792182564735,0.93268758058548,0.00739548215642571,0.151971027255058,0.988357305526733,-0.227764174342155,0.21228751540184,0.950293481349945,-0.122151143848896,0.174233347177505,0.977098703384399,-0.435978472232819,0.275833457708359,0.856643855571747,-0.304048359394073,0.308313459157944,0.901386499404907,-0.22360073029995,0.226578652858734,0.947979331016541,-0.180227339267731,0.229442358016968,0.956490635871887,-0.224222779273987,0.224457934498787,0.948336839675903,0.011110620573163,0.165965050458908,0.986069142818451,-0.437729686498642,0.268374800682068,0.858118712902069,-0.224022224545479,0.225142121315002,0.948222041130066,-0.223885118961334,0.162660554051399,0.960945904254913,0.181609466671944,-0.47718009352684,-0.859835565090179,0.366662353277206,-0.496442198753357,-0.786831557750702,0.207051604986191,-0.527073860168457,-0.824210405349731,0.156656563282013,-0.55008339881897,-0.820284843444824,0.207336783409119,-0.532506227493286,-0.820639133453369,0.0339465141296387,-0.541493892669678,-0.840019047260284,0.366838783025742,-0.493404269218445,-0.788658082485199,0.284342080354691,-0.532508254051209,-0.797235548496246,0.207005515694618,-0.5262091755867,-0.824774265289307,0.207323417067528,-0.532248318195343,-0.820809781551361,0.103827439248562,-0.540767908096313,-0.834739446640015,0.0333912186324596,-0.547463655471802,-0.83616304397583,0.207098543643951,-0.527957618236542,-0.823632895946503,0.271932750940323,-0.498073428869247,-0.823392629623413,0.105344124138355,-0.548667371273041,-0.829377353191376,0.031210133805871,-0.570471584796906,-0.820724129676819,0.105654411017895,-0.550283372402191,-0.828266501426697,0.00736822932958603,-0.567597448825836,-0.823273241519928,0.273317873477936,-0.501891732215881,-0.820610761642456,0.107125766575336,-0.563419878482819,-0.819196045398712,0.105996005237103,-0.552062511444092,-0.827038109302521,
- 0.105295613408089,-0.548414647579193,-0.829550623893738,0.0986281931400299,-0.541486144065857,-0.834904313087463,0.00700320117175579,-0.56184196472168,-0.827215075492859,0.0579177588224411,-0.507065296173096,0.859959602355957,0.145792305469513,-0.49778163433075,0.854960978031158,0.047801710665226,-0.504114091396332,0.862313151359558,0.299425721168518,-0.465027719736099,0.833122730255127,0.145874977111816,-0.498948723077774,0.854266166687012,0.058074563741684,-0.509080052375793,0.858757734298706,-0.114271812140942,-0.502966642379761,0.856718599796295,0.0581796057522297,-0.510430216789246,0.857948780059814,0.0456831268966198,-0.517324507236481,0.854569137096405,0.0566014088690281,-0.49020391702652,0.869768023490906,-0.141044318675995,-0.542032480239868,0.828436672687531,0.297744423151016,-0.457268208265305,0.838006019592285,-0.11496876180172,-0.511608421802521,0.85149222612381,-0.149536952376366,-0.499552249908447,0.853279709815979,0.057017307728529,-0.4955213367939,0.866722345352173,0.0399631634354591,-0.53562206029892,0.843511819839478,0.298815011978149,-0.46220001578331,0.834913611412048,-0.139916852116585,-0.54744416475296,0.82506251335144,-0.431304037570953,-0.491456896066666,0.75660240650177,-0.150887459516525,-0.492501884698868,0.857131898403168,-0.118746712803841,-0.560270369052887,0.81975382566452,0.019459480419755,-0.453031837940216,0.891281962394714,-0.150708094239235,-0.493443071842194,0.856621861457825,-0.431103885173798,-0.49246734380722,0.756059110164642,0.449695587158203,-0.269771069288254,0.851467847824097,-0.00123058445751667,-0.430510967969894,0.902584493160248,0.263101071119308,-0.389011740684509,0.882863342761993,0.448656678199768,-0.264926463365555,0.853534519672394,0.246491387486458,-0.304021269083023,0.920224487781525,-0.00438202451914549,-0.419610917568207,0.90769350528717,0.228261947631836,-0.31240239739418,0.92211776971817,-0.00908813904970884,-0.403208345174789,0.915063083171844,-0.203253611922264,-0.459019541740417,0.864863574504852,-0.00531862210482359,-0.416358590126038,0.90918505191803,
- 0.24890598654747,-0.341204345226288,0.906435549259186,-0.0934285148978233,-0.41002482175827,0.907276570796967,-0.0158081483095884,-0.379525691270828,0.925046145915985,-0.0948786810040474,-0.402694821357727,0.910403728485107,-0.216726943850517,-0.421303778886795,0.880643248558044,0.2488923817873,-0.340978056192398,0.906524419784546,0.138184055685997,-0.353175491094589,0.925295770168304,-0.0946578532457352,-0.403814852237701,0.909930467605591,-0.188239544630051,-0.410407662391663,0.892261981964111,-0.237477377057076,-0.359244376420975,0.902523100376129,-0.0991264805197716,-0.380885988473892,0.919293105602264,-0.0956868529319763,-0.398584812879562,0.912126302719116,0.139411941170692,-0.393647700548172,0.908628523349762,-0.189013302326202,-0.404412537813187,0.894832074642181,0.224007666110992,-0.567309558391571,0.792452156543732,-0.239284232258797,-0.671411275863647,0.701391458511353,0.0232021119445562,-0.664691925048828,0.746757209300995,0.222879737615585,-0.563108682632446,0.795759677886963,0.000919875514227897,-0.592235267162323,0.805764555931091,-0.242807745933533,-0.661888837814331,0.709187984466553,-0.0158829353749752,-0.596126317977905,0.802733540534973,-0.248290941119194,-0.6466304063797,0.721263289451599,-0.429956614971161,-0.657130300998688,0.619126200675964,-0.244072243571281,-0.658418297767639,0.71197897195816,0.00356874661520123,-0.62330037355423,0.781974375247955,-0.333716928958893,-0.638213515281677,0.693769872188568,-0.335246235132217,-0.632056355476379,0.69865208864212,-0.444097310304642,-0.623451411724091,0.643495082855225,-0.255608588457108,-0.625385224819183,0.737263560295105,0.00354387261904776,-0.623012840747833,0.782203614711761,-0.104675926268101,-0.623596727848053,0.774706423282623,-0.335029363632202,-0.632937431335449,0.69795823097229,-0.425802081823349,-0.619498431682587,0.659480333328247,-0.464937210083008,-0.567074060440063,0.679897367954254,-0.339679598808289,-0.613453388214111,0.712946474552155,-0.336108714342117,-0.628527104854584,0.70141613483429,-0.103034883737564,-0.658735454082489,0.745286166667938,
- -0.426672041416168,-0.614465594291687,0.663613557815552,-0.142755970358849,0.565974831581116,-0.811968743801117,-0.224917009472847,0.553946614265442,-0.801595568656921,-0.133933663368225,0.563744246959686,-0.815017938613892,-0.378625273704529,0.514314413070679,-0.769495666027069,-0.225025907158852,0.555907666683197,-0.800206363201141,-0.142949789762497,0.568961560726166,-0.809844493865967,0.032826155424118,0.579722702503204,-0.814152359962463,-0.143632590770721,0.579666197299957,-0.802095234394073,-0.12999814748764,0.586699068546295,-0.799302637577057,-0.143071204423904,0.570844054222107,-0.808497190475464,0.0569601692259312,0.631293475627899,-0.773449599742889,-0.380918890237808,0.525449275970459,-0.760791599750519,0.034145399928093,0.594343721866608,-0.803486049175262,0.0667757093906403,0.584625244140625,-0.808550894260406,-0.143296360969543,0.57435816526413,-0.805964529514313,-0.125630676746368,0.618508517742157,-0.775670111179352,-0.381770372390747,0.529653906822205,-0.757441997528076,0.0558577924966812,0.636339545249939,-0.76938408613205,0.348792940378189,0.571086585521698,-0.743104040622711,0.0701580420136452,0.567796111106873,-0.820174157619476,0.037362102419138,0.629688262939453,-0.775949060916901,-0.0997318923473358,0.521858274936676,-0.847182095050812,0.0699235498905182,0.568975567817688,-0.819376289844513,0.348562806844711,0.572235703468323,-0.742327630519867,0.0788483619689941,0.887870788574219,-0.453286230564117,-0.00515187811106443,0.886367857456207,-0.462953239679337,0.10157523304224,0.88507354259491,-0.454232931137085,-0.0791583508253098,0.883454561233521,-0.461781293153763,-0.00602920167148113,0.890023946762085,-0.455873936414719,0.0777182877063751,0.892204701900482,-0.444893956184387,0.256247103214264,0.856266558170319,-0.448492169380188,0.080528236925602,0.881226897239685,-0.465783625841141,0.101304814219475,0.883520305156708,-0.45730647444725,0.0823836848139763,0.873601198196411,-0.479618698358536,0.270603239536285,0.875097870826721,-0.401220113039017,-0.0717331320047379,0.872640192508698,-0.483066707849503,
- 0.256103038787842,0.852797269821167,-0.455135226249695,0.285925269126892,0.840026319026947,-0.46108865737915,0.0846820548176765,0.863720417022705,-0.496805816888809,0.173417001962662,0.912956893444061,-0.369372814893723,-0.074632853269577,0.876920580863953,-0.474805474281311,0.265344619750977,0.885516226291656,-0.381383329629898,0.549761950969696,0.779500782489777,-0.300234168767929,0.275465458631516,0.864772737026215,-0.419865310192108,0.25671449303627,0.90109658241272,-0.349460452795029,0.251994878053665,0.825860500335693,-0.504433393478394,0.27540534734726,0.864904642105103,-0.419633001089096,0.549901008605957,0.77915632724762,-0.300872951745987,0.0589484199881554,-0.15065361559391,0.986827552318573,0.14467117190361,-0.144243165850639,0.97890967130661,0.0441180281341076,-0.146671086549759,0.988201081752777,0.299094498157501,-0.121953703463078,0.946398317813873,0.144722491502762,-0.145117551088333,0.978772878646851,0.0591623820364475,-0.153633311390877,0.986355245113373,-0.114276021718979,-0.148006409406662,0.98236209154129,0.0592078901827335,-0.154267132282257,0.986253559589386,0.042077399790287,-0.161618396639824,0.985955893993378,0.0576333329081535,-0.132475093007088,0.989509344100952,-0.144011005759239,-0.193948954343796,0.970383763313293,0.297389388084412,-0.112657062709332,0.948086440563202,-0.114984214305878,-0.158070966601372,0.980710029602051,-0.152121618390083,-0.146673157811165,0.977418124675751,0.0579156503081322,-0.136357262730598,0.988965451717377,0.0399649292230606,-0.183542668819427,0.982199013233185,0.298428773880005,-0.118307434022427,0.947071075439453,-0.142916768789291,-0.200145944952965,0.969286561012268,-0.436618626117706,-0.17526538670063,0.882409334182739,-0.153324589133263,-0.13944810628891,0.978287160396576,-0.118793055415154,-0.215149983763695,0.969328999519348,0.0192924682050943,-0.0886023938655853,0.995880246162415,-0.15315654873848,-0.140460819005966,0.978168606758118,-0.436422437429428,-0.176389336585999,0.882282435894012,0.44950458407402,0.0752576366066933,0.890102326869965,-0.0100104724988341,-0.0551250800490379,0.998429298400879,
- 0.265562355518341,-0.0223159715533257,0.96383535861969,0.451121360063553,0.0670469179749489,0.889940559864044,0.248491406440735,0.0546416789293289,0.967091679573059,-0.00913990754634142,-0.058454342186451,0.998248338699341,0.215455949306488,0.0979805365204811,0.9715855717659,-0.0264846030622721,0.00808611884713173,0.999616622924805,-0.211998909711838,-0.0589208044111729,0.975492179393768,-0.0158908795565367,-0.0326077751815319,0.999341905117035,0.249589383602142,0.0377449132502079,0.967615842819214,-0.099153146147728,-0.0276501458138227,0.994687974452972,-0.0218273531645536,-0.00982423219829798,0.999713599681854,-0.0977545753121376,-0.0351349636912346,0.994590163230896,-0.211074218153954,-0.0617375113070011,0.975518524646759,0.249962732195854,0.0317310951650143,0.967735409736633,0.140722393989563,0.0276387985795736,0.989663243293762,-0.0991675555706024,-0.0275728348642588,0.99468868970871,-0.19200000166893,-0.0496730655431747,0.980137050151825,-0.23254157602787,0.00533055886626244,0.972571849822998,-0.102487437427044,-0.00967355631291866,0.994687259197235,-0.103936970233917,-0.00179942243266851,0.99458235502243,0.141365721821785,0.00236774003133178,0.989954710006714,-0.196217402815819,-0.0129229919984937,0.980475246906281,0.220117136836052,-0.233014896512032,0.947234153747559,-0.245263502001762,-0.361158192157745,0.899672508239746,0.0186551511287689,-0.339019119739532,0.940594494342804,0.218905389308929,-0.227605283260345,0.948828876018524,0.00252546835690737,-0.250758618116379,0.968046367168427,-0.248644590377808,-0.34970960021019,0.903260231018066,-0.0186033230274916,-0.256990343332291,0.966234922409058,-0.253628194332123,-0.332489252090454,0.908363163471222,-0.433770686388016,-0.378156006336212,0.817826986312866,-0.249648362398148,-0.346274733543396,0.90430611371994,0.00529043097048998,-0.287491351366043,0.957768619060516,-0.335822641849518,-0.333164781332016,0.881035983562469,-0.337029933929443,-0.327107131481171,0.882843017578125,-0.447033107280731,-0.339462548494339,0.827602922916412,-0.260580599308014,-0.307739824056625,0.915092349052429,
- 0.00614888360723853,-0.298831194639206,0.954286277294159,-0.105259746313095,-0.302442699670792,0.947337746620178,-0.334631085395813,-0.339062660932541,0.879237473011017,-0.426862388849258,-0.329465091228485,0.842164635658264,-0.466723024845123,-0.275906503200531,0.840265095233917,-0.341156870126724,-0.305738806724548,0.888895928859711,-0.343267679214478,-0.294382393360138,0.891911625862122,-0.105169385671616,-0.305009573698044,0.946524441242218,-0.43146488070488,-0.294853389263153,0.852584064006805,-0.141954138875008,0.223326668143272,-0.964351832866669,-0.229385688900948,0.21560038626194,-0.949156820774078,-0.130113661289215,0.219539731740952,-0.966888189315796,-0.380248099565506,0.190523564815521,-0.905048131942749,-0.229480355978012,0.217701956629753,-0.948654115200043,-0.142174884676933,0.227229729294777,-0.963406980037689,0.0338124893605709,0.235144212841988,-0.971372187137604,-0.142859101295471,0.239569559693336,-0.960311353206635,-0.126089230179787,0.246811196208,-0.960825562477112,-0.142315611243248,0.22973720729351,-0.962791323661804,0.0533650256693363,0.300483763217926,-0.952292859554291,-0.382595419883728,0.204281106591225,-0.901049375534058,0.0351181291043758,0.252614289522171,-0.96692955493927,0.064046710729599,0.24120169878006,-0.968359410762787,-0.142486065626144,0.232794418931007,-0.962031543254852,-0.128664746880531,0.283569604158401,-0.950280845165253,-0.383461803197861,0.209470808506012,-0.899488210678101,0.0521945655345917,0.306840419769287,-0.950328826904297,0.350369960069656,0.253703236579895,-0.901596128940582,0.0678190514445305,0.219700291752815,-0.973207235336304,0.0382978096604347,0.295464843511581,-0.954585790634155,-0.103783488273621,0.169842809438705,-0.979991018772125,0.0675575435161591,0.221200600266457,-0.972885549068451,0.350155055522919,0.254996478557587,-0.901314735412598,-0.083045594394207,-0.644263684749603,0.760281383991241,0.00694292411208153,-0.638955295085907,0.769212543964386,-0.0995353013277054,-0.641168355941772,0.760917782783508,0.0773264020681381,-0.639035940170288,0.765280187129974,
- 0.0080769183114171,-0.64701509475708,0.762434422969818,-0.0814891681075096,-0.654001593589783,0.752091348171234,-0.255213260650635,-0.640720665454865,0.724115490913391,-0.080996610224247,-0.657043755054474,0.749488532543182,-0.101800508797169,-0.662539482116699,0.742076873779297,-0.0802740827202797,-0.661472499370575,0.745661020278931,-0.259842067956924,-0.693737983703613,0.671721458435059,0.0842796862125397,-0.655770063400269,0.750241816043854,-0.255353420972824,-0.64827835559845,0.717307329177856,-0.278037518262863,-0.634532988071442,0.721153914928436,-0.0831472873687744,-0.643620729446411,0.760814607143402,-0.166530728340149,-0.717716157436371,0.676129460334778,0.0798400118947029,-0.645114243030548,0.759903430938721,-0.261285305023193,-0.689382076263428,0.675634801387787,-0.548690974712372,-0.612121403217316,0.569425702095032,-0.274892956018448,-0.645478188991547,0.712595105171204,-0.255515038967133,-0.706879854202271,0.659570276737213,-0.24962055683136,-0.580814182758331,0.774819016456604,-0.274100869894028,-0.648184537887573,0.710440397262573,-0.548255562782288,-0.613849997520447,0.567982375621796,-0.0558131039142609,-0.112972848117352,-0.992029249668121,-0.144656732678413,-0.117161743342876,-0.982520997524261,-0.0482016950845718,-0.116975322365761,-0.991964399814606,-0.299574345350266,-0.122184619307518,-0.946216762065887,-0.145140558481216,-0.108551576733589,-0.98343825340271,-0.0565784499049187,-0.10205714404583,-0.993168294429779,0.112105689942837,-0.100523427128792,-0.988598704338074,-0.0570034570991993,-0.0959485173225403,-0.993752717971802,-0.0442042388021946,-0.0882933884859085,-0.9951131939888,-0.0545818507671356,-0.130305334925652,-0.98997038602829,0.147310003638268,-0.0618677735328674,-0.987153649330139,-0.296652525663376,-0.138537973165512,-0.944883346557617,0.111478962004185,-0.109832867980003,-0.987678706645966,0.157469838857651,-0.119213908910751,-0.98030161857605,-0.0544115751981735,-0.132682546973228,-0.9896639585495,-0.0407132878899574,-0.0740957781672478,-0.996419727802277,-0.298552006483078,-0.127963736653328,-0.945775866508484,
- 0.145103737711906,-0.0497525259852409,-0.988164782524109,0.426272869110107,-0.0258142333477736,-0.904226243495941,0.151243641972542,-0.0837586894631386,-0.98494154214859,0.117836862802505,-0.0068140528164804,-0.993009686470032,-0.0278349053114653,-0.133948192000389,-0.990597367286682,0.15112666785717,-0.0831021070480347,-0.985015213489532,0.426068902015686,-0.0247653238475323,-0.904351711273193,0.451892673969269,0.294013261795044,0.842228710651398,-0.00215372233651578,0.198251664638519,0.980148792266846,0.264502555131912,0.216130882501602,0.939854145050049,0.451396822929382,0.296502023935318,0.841621935367584,0.244388490915298,0.305578261613846,0.92026960849762,-0.00443220138549805,0.206942573189735,0.978343069553375,0.228587329387665,0.302655398845673,0.925282537937164,-0.00924534536898136,0.225249081850052,0.974257349967957,-0.204318806529045,0.148754894733429,0.967535972595215,-0.00793196074664593,0.220260784029961,0.975408792495728,0.246111199259758,0.277589499950409,0.928640604019165,-0.0919409468770027,0.223120242357254,0.970445394515991,-0.0155353182926774,0.249065056443214,0.968362152576447,-0.0919623076915741,0.223232865333557,0.970417559146881,-0.218145847320557,0.189055189490318,0.957429230213165,0.246281132102013,0.274614542722702,0.929479658603668,0.140204071998596,0.276640266180038,0.950690805912018,-0.0925644636154175,0.226410076022148,0.969623804092407,-0.185162052512169,0.182366296648979,0.965638518333435,-0.232233718037605,0.231039747595787,0.944821774959564,-0.0919216349720955,0.223018333315849,0.970470726490021,-0.0904673784971237,0.215357646346092,0.972335696220398,0.14147686958313,0.213765814900398,0.966585993766785,-0.187304526567459,0.199447274208069,0.961840867996216,0.221412509679794,0.0195629894733429,0.974983990192413,-0.24524798989296,-0.118036210536957,0.962247848510742,0.0206706635653973,-0.0860773473978043,0.996074020862579,0.22032356262207,0.0247689783573151,0.975112318992615,-0.000513837730977684,0.00725022936239839,0.999973595142365,-0.248684644699097,-0.105924002826214,0.96277529001236,
- -0.0180600676685572,0.0018685725517571,0.999835252761841,-0.253850251436234,-0.0874177664518356,0.963285207748413,-0.428958743810654,-0.154621049761772,0.889992535114288,-0.249779969453812,-0.102030411362648,0.962912142276764,0.00221396423876286,-0.0312415156513453,0.999509513378143,-0.335486263036728,-0.0946774259209633,0.937275409698486,-0.33664608001709,-0.0885912775993347,0.937454640865326,-0.442815870046616,-0.113598696887493,0.889387130737305,-0.260921746492386,-0.061464935541153,0.963401198387146,0.00217656511813402,-0.0307136327028275,0.999525845050812,-0.101442351937294,-0.0357169806957245,0.994200170040131,-0.336729913949966,-0.0881485715508461,0.937466263771057,-0.423021227121353,-0.100405417382717,0.900539755821228,-0.463323712348938,-0.0472992844879627,0.884926080703735,-0.3407281935215,-0.0665751919150352,0.937801718711853,-0.337533831596375,-0.0838835090398788,0.937568366527557,-0.0997481346130371,-0.0809924304485321,0.991710901260376,-0.423784703016281,-0.094773456454277,0.900791049003601,0.140462070703506,0.0199512392282486,0.989885032176971,0.228504985570908,0.0236578043550253,0.973255276679993,0.130297094583511,0.0237833634018898,0.99118971824646,0.382445424795151,0.0430987402796745,0.92297238111496,0.228327855467796,0.0276465360075235,0.973191678524017,0.140307500958443,0.0230594407767057,0.989839434623718,-0.029177887365222,0.0322908908128738,0.99905252456665,0.14020548760891,0.0250976718962193,0.98980438709259,0.129560947418213,0.0184851624071598,0.991399168968201,0.138211518526077,0.0627879947423935,0.988410472869873,-0.0632085278630257,-0.00394639186561108,0.997992515563965,0.378019839525223,0.0693215951323509,0.923198640346527,-0.0296666864305735,0.0254746433347464,0.999235153198242,-0.0698398947715759,0.0359381213784218,0.996910750865936,0.139279574155808,0.0430772118270397,0.989315807819366,0.120819643139839,0.0011267198715359,0.992673933506012,0.379779279232025,0.059090580791235,0.923187971115112,-0.0612780377268791,-0.0154407843947411,0.998001396656036,-0.343622714281082,-0.048283439129591,0.937865734100342,
- -0.0636944621801376,-0.00104494718834758,0.997968912124634,-0.0368532985448837,-0.0772265419363976,0.996332228183746,0.110487915575504,0.0499727055430412,0.992620348930359,-0.0637340918183327,-0.000808154756668955,0.997966587543488,-0.343590945005417,-0.0484577342867851,0.937868416309357,-0.0838730409741402,-0.426677525043488,0.900506317615509,0.00719890277832747,-0.418990224599838,0.907962203025818,-0.100418493151665,-0.423332333564758,0.900392174720764,0.0794777199625969,-0.419637948274612,0.904205322265625,0.00840238481760025,-0.428871750831604,0.903326332569122,-0.0824281722307205,-0.437706410884857,0.895331621170044,-0.253254860639572,-0.432976454496384,0.865097343921661,-0.0818581432104111,-0.442013591527939,0.89326548576355,-0.102759405970573,-0.448953032493591,0.887627124786377,-0.0812855660915375,-0.446315586566925,0.891176223754883,-0.264090180397034,-0.496262580156326,0.827030718326569,0.0863078534603119,-0.439520686864853,0.894076347351074,-0.253375679254532,-0.44174712896347,0.860616326332092,-0.281621813774109,-0.42779266834259,0.858884513378143,-0.0838595330715179,-0.426781296730042,0.90045839548111,-0.173269212245941,-0.521640539169312,0.835385501384735,0.0820366144180298,-0.427098959684372,0.900475680828094,-0.265368491411209,-0.491568803787231,0.829421281814575,-0.551890015602112,-0.444393008947372,0.705643177032471,-0.278302848339081,-0.441481411457062,0.853019297122955,-0.253427147865295,-0.512980461120605,0.820137619972229,-0.255809277296066,-0.364555507898331,0.89535516500473,-0.277545541524887,-0.444553524255753,0.851669311523438,-0.551455795764923,-0.446431189775467,0.704695463180542,0.0633063241839409,0.452298104763031,0.889617204666138,0.147935345768929,0.452650278806686,0.879330933094025,0.0440159700810909,0.456239759922028,0.888767600059509,0.299317270517349,0.451942831277847,0.840331375598907,0.14798329770565,0.451907306909561,0.879704892635345,0.0634724274277687,0.450098901987076,0.890720188617706,-0.108915090560913,0.450929790735245,0.885889410972595,0.0635677129030228,0.448833853006363,0.891351521015167,
- 0.0419053062796593,0.442625015974045,0.895727097988129,0.0619917064905167,0.469432353973389,0.880789577960968,-0.142468601465225,0.405163466930389,0.903075456619263,0.297614067792892,0.460455536842346,0.836305439472198,-0.109485395252705,0.442868441343308,0.889876663684845,-0.151341155171394,0.450226277112961,0.87999552488327,0.0623825453221798,0.464388132095337,0.883431971073151,0.0418325662612915,0.422639310359955,0.905332028865814,0.298657864332199,0.455259710550308,0.838774144649506,-0.141305536031723,0.39931708574295,0.905857920646667,-0.432386189699173,0.372972935438156,0.820934474468231,-0.152824014425278,0.457842200994492,0.875799834728241,-0.11287447065115,0.391243159770966,0.913339018821716,0.0207984112203121,0.508721947669983,0.860679626464844,-0.152634337544441,0.456866651773453,0.876342177391052,-0.432190328836441,0.371986389160156,0.821485042572021,0.45303350687027,0.572133839130402,0.683683812618256,-0.00649207551032305,0.531515061855316,0.847024083137512,0.270486116409302,0.536484360694885,0.799388408660889,0.451973736286163,0.576549053192139,0.680669605731964,0.247882187366486,0.611709475517273,0.751242935657501,-0.00941260438412428,0.541168034076691,0.840861797332764,0.23565286397934,0.610746741294861,0.755947232246399,-0.0133264260366559,0.55399227142334,0.832415163516998,-0.203324273228645,0.482084542512894,0.852205216884613,-0.00994700100272894,0.542926609516144,0.839721202850342,0.250344574451447,0.58036732673645,0.774920225143433,-0.0936024114489555,0.542720556259155,0.834681510925293,-0.0194703098386526,0.573864698410034,0.818718671798706,-0.095463752746582,0.550949573516846,0.829060435295105,-0.216779515147209,0.515647053718567,0.828923881053925,0.25102698802948,0.570501267910004,0.781993448734283,0.138750851154327,0.580225050449371,0.802550375461578,-0.0925320461392403,0.537982761859894,0.837861776351929,-0.191199019551277,0.530805647373199,0.825644195079803,-0.237516164779663,0.567469000816345,0.788393914699554,-0.100124053657055,0.571493148803711,0.814475774765015,-0.101637236773968,0.578144490718842,0.809579432010651,
- 0.138806268572807,0.57820725440979,0.803995788097382,-0.195404782891274,0.56049656867981,0.8047736287117,0.222359925508499,0.370587050914764,0.90178781747818,-0.244363650679588,0.239041090011597,0.939758360385895,0.016506114974618,0.280057162046433,0.959841430187225,0.224016949534416,0.36332231760025,0.904330313205719,0.00702202739194036,0.355794161558151,0.934538066387177,-0.243526741862297,0.236250594258308,0.940680801868439,-0.0359919257462025,0.39322629570961,0.9187371134758,-0.262199282646179,0.299874812364578,0.917238593101501,-0.442701101303101,0.211730927228928,0.87131267786026,-0.250983446836472,0.261308401823044,0.932054340839386,0.00817618425935507,0.340337067842484,0.940267980098724,-0.341670006513596,0.256523847579956,0.904133379459381,-0.339845806360245,0.247601851820946,0.907302796840668,-0.441548705101013,0.208467274904251,0.87268328666687,-0.257670968770981,0.284170836210251,0.923500180244446,0.00858997367322445,0.334765374660492,0.942262351512909,-0.10280542075634,0.327938497066498,0.939088582992554,-0.341638445854187,0.256368339061737,0.90418940782547,-0.424628108739853,0.224514096975327,0.877088606357574,-0.462049335241318,0.268910974264145,0.845101952552795,-0.344374388456345,0.270001232624054,0.899169385433197,-0.346171885728836,0.279135674238205,0.895683169364929,-0.101968415081501,0.303290277719498,0.947426855564117,-0.429133147001266,0.256973654031754,0.865915298461914,0.138633713126183,0.368180871009827,0.919360399246216,0.230454593896866,0.365536093711853,0.901817202568054,0.127440378069878,0.372936546802521,0.9190633893013,0.381408184766769,0.366582930088043,0.848613440990448,0.230268716812134,0.369691908359528,0.900169014930725,0.138512700796127,0.370223820209503,0.91855788230896,-0.0297726597636938,0.383076399564743,0.923236846923828,0.138331979513168,0.373250424861908,0.917359471321106,0.126630693674088,0.367774546146393,0.921252727508545,0.136239036917686,0.406402677297592,0.903479814529419,-0.0637829229235649,0.346646368503571,0.935824811458588,0.376950621604919,0.390762329101563,0.839769661426544,
- -0.0302657354623079,0.376723915338516,0.925831139087677,-0.0709491521120071,0.385593175888062,0.919937014579773,0.137242570519447,0.390920370817184,0.91013503074646,0.119305305182934,0.351633906364441,0.928504109382629,0.378775507211685,0.381063371896744,0.843397796154022,-0.0617778524756432,0.335749238729477,0.939923405647278,-0.347286105155945,0.28487291932106,0.893442690372467,-0.06484704464674,0.352429568767548,0.933588922023773,-0.0374687276780605,0.279595226049423,0.959386587142944,0.109151899814606,0.396701216697693,0.911435127258301,-0.0648680403828621,0.35254368185997,0.933544397354126,-0.34726670384407,0.284772574901581,0.893482208251953,-0.117328956723213,0.989482402801514,0.0846081152558327,-0.109860919415951,0.98874831199646,0.101525247097015,0.0848366171121597,0.991310834884644,0.100526317954063,-0.304917722940445,0.951829850673676,0.0323313288390636,-0.110380433499813,0.993423938751221,0.0304151847958565,-0.114109486341476,0.992498159408569,0.0438932627439499,0.0183522216975689,0.996202111244202,0.0851152241230011,-0.117566667497158,0.989183962345123,0.0877107083797455,0.0845616310834885,0.991063117980957,0.103165991604328,-0.115218594670296,0.991665422916412,0.0576574094593525,-0.221329674124718,0.973706483840942,0.0539343021810055,-0.303860872983933,0.951474905014038,0.0486221127212048,0.0099995993077755,0.993112444877625,0.116737864911556,-0.220242440700531,0.974155962467194,0.0501337572932243,-0.117963902652264,0.988660156726837,0.0929280519485474,-0.437495410442352,0.899220645427704,0.000135847789351828,-0.307689607143402,0.951306998729706,-0.0184966046363115,-0.22650571167469,0.971331298351288,0.0721863359212875,-0.178547456860542,0.982623755931854,0.0507087595760822,-0.221118599176407,0.973795056343079,0.0531955398619175,0.00958490185439587,0.992931306362152,0.118303559720516,-0.438603162765503,0.898665606975555,0.00523356487974525,-0.226300239562988,0.971433043479919,0.0714568272233009,-0.233805596828461,0.963027358055115,0.133841261267662,0.132495224475861,0.970650434494019,-0.200705632567406,
- -0.0656780451536179,0.950683534145355,-0.303129076957703,-0.200569286942482,0.937103927135468,-0.285671472549438,0.131085336208344,0.972225248813629,-0.193893507122993,-0.203727647662163,0.93996000289917,-0.273806840181351,-0.0903046801686287,0.973094463348389,-0.211972758173943,-0.120848968625069,0.976306676864624,-0.179501563310623,-0.429127275943756,0.859492063522339,-0.277710556983948,-0.215679690241814,0.94963014125824,-0.227343022823334,-0.214935764670372,0.949083566665649,-0.230311140418053,-0.322576373815537,0.918884336948395,-0.227147594094276,-0.0908741280436516,0.974803328514099,-0.203716978430748,-0.23026829957962,0.958710551261902,-0.166885539889336,-0.453024208545685,0.869140386581421,-0.19840370118618,-0.323993891477585,0.920732319355011,-0.217439517378807,-0.089938722550869,0.971970081329346,-0.21722200512886,-0.321084082126617,0.916887044906616,-0.237114310264587,-0.2148697078228,0.951565742492676,-0.219894617795944,-0.437128782272339,0.863243281841278,-0.252447009086609,-0.448862016201019,0.851438164710999,-0.27124884724617,-0.317027539014816,0.91121518611908,-0.26302170753479,-0.317729979753494,0.912221014499664,-0.258651316165924,-0.449721425771713,0.85276061296463,-0.265612959861755,-0.212162509560585,0.939576923847198,-0.268667578697205,0.187578469514847,-0.843168437480927,-0.503866374492645,0.36775740981102,-0.823037624359131,-0.432855099439621,0.207515686750412,-0.868485510349274,-0.450189024209976,0.162617295980453,-0.886506617069244,-0.433199286460876,0.207798838615417,-0.871394515037537,-0.444399923086166,0.0325877368450165,-0.888846516609192,-0.457044720649719,0.367941379547119,-0.82129842042923,-0.43599084019661,0.283919662237167,-0.860084354877472,-0.423844933509827,0.207469567656517,-0.868016541004181,-0.451113820075989,0.207785233855248,-0.871253609657288,-0.444682389497757,0.105291441082954,-0.885422646999359,-0.45270374417305,0.0320035293698311,-0.892152070999146,-0.450600117444992,0.207560643553734,-0.868943870067596,-0.449282974004745,0.27128204703331,-0.843198299407959,-0.464136511087418,
- 0.106831148266792,-0.889625430107117,-0.444019943475723,0.0297397281974554,-0.904432117938995,-0.425579696893692,0.107119835913181,-0.890407085418701,-0.442380607128143,0.011541685089469,-0.9030841588974,-0.42930856347084,0.271952927112579,-0.844119191169739,-0.46206533908844,0.10759512335062,-0.895930588245392,-0.430965930223465,0.107092276215553,-0.890332520008087,-0.442537277936935,0.107990905642509,-0.892753124237061,-0.437412619590759,0.102725498378277,-0.889386355876923,-0.445465385913849,0.0115694114938378,-0.903326332569122,-0.428798019886017,0.184702798724175,0.353016674518585,-0.91720449924469,0.366071730852127,0.285656899213791,-0.885658860206604,0.207877397537231,0.294031947851181,-0.932915985584259,0.155230417847633,0.262091368436813,-0.952476680278778,0.20879989862442,0.274703204631805,-0.938584446907043,0.0320982933044434,0.283458024263382,-0.958447337150574,0.366151660680771,0.28711611032486,-0.885153830051422,0.281500965356827,0.267561137676239,-0.921503245830536,0.20792780816555,0.293022751808167,-0.933222234249115,0.208219140768051,0.287088930606842,-0.934999883174896,0.109310105443001,0.292437136173248,-0.950016856193542,0.0325460880994797,0.288773655891418,-0.956844031810761,0.207997426390648,0.291620224714279,-0.933645904064178,0.268861204385757,0.310155630111694,-0.911875605583191,0.110771767795086,0.283477604389191,-0.952559769153595,0.0316385291516781,0.278003036975861,-0.9600590467453,0.108577854931355,0.296893507242203,-0.948717594146729,0.00934411026537418,0.28191351890564,-0.959394335746765,0.269533574581146,0.307951867580414,-0.912423849105835,0.10864283144474,0.268697321414948,-0.957078099250793,0.111027047038078,0.281903982162476,-0.952996909618378,0.108528427779675,0.29719352722168,-0.948629319667816,0.0968194678425789,0.305258959531784,-0.947334766387939,0.00910652708262205,0.286294400691986,-0.958098530769348,-0.115684129297733,-0.92015939950943,0.374063968658447,0.00151210720650852,-0.929528892040253,0.3687464594841,0.0355403758585453,-0.936244428157806,0.349547237157822,-0.120099760591984,-0.929972589015961,0.347458034753799,
- -0.185103297233582,-0.917760014533997,0.351359307765961,0.00166379730217159,-0.932683229446411,0.360692977905273,0.0416883230209351,-0.925365746021271,0.376776188611984,0.00176904757972807,-0.934834063053131,0.355080515146255,0.192856699228287,-0.917562007904053,0.347687005996704,0.00159223016817123,-0.93120288848877,0.364497750997543,-0.185189455747604,-0.916268467903137,0.355185747146606,-0.0913579165935516,-0.922003448009491,0.376249134540558,0.192924350500107,-0.917156279087067,0.348718494176865,0.00185887061525136,-0.936643123626709,0.350280165672302,0.0920891612768173,-0.936564803123474,0.338180363178253,0.0877221897244453,-0.923777997493744,0.372745245695114,0.00161431322339922,-0.931662082672119,0.363322347402573,-0.0868258699774742,-0.932629942893982,0.35023233294487,-0.164630949497223,-0.721830427646637,0.672203481197357,0.0106175830587745,-0.738457381725311,0.674216568470001,-0.213881626725197,-0.719842076301575,0.660365045070648,-0.163784071803093,-0.726830065250397,0.667002975940704,0.0137063106521964,-0.7163325548172,0.697624504566193,0.010691249743104,-0.734158158302307,0.678894340991974,-0.213834330439568,-0.719147741794586,0.661136448383331,0.0106222340837121,-0.738187670707703,0.674511849880219,-0.0710313320159912,-0.752819955348969,0.654382646083832,0.0106555940583348,-0.736245930194855,0.676630198955536,0.022208197042346,-0.748292863368988,0.662996649742126,0.15456834435463,-0.725912511348724,0.670193731784821,-0.0634559243917465,-0.727966845035553,0.682669460773468,0.0105909071862698,-0.74000084400177,0.67252254486084,0.100555278360844,-0.742141783237457,0.662656903266907,0.102637268602848,-0.727837204933167,0.678025543689728,0.0106618544086814,-0.735880255699158,0.677027761936188,0.155123025178909,-0.73014098405838,0.665455460548401,-0.11147690564394,0.722712755203247,-0.682099103927612,0.0173286888748407,0.733580529689789,-0.679381549358368,0.0499096997082233,0.74727338552475,-0.662639856338501,-0.114566326141357,0.735758662223816,-0.667483150959015,-0.171909913420677,0.724867165088654,-0.667094111442566,
- 0.0173283107578754,0.733563423156738,-0.679400086402893,0.0595670714974403,0.715973079204559,-0.69558197259903,0.0173101648688316,0.732798278331757,-0.680225729942322,0.20448100566864,0.717901706695557,-0.665435671806335,0.0173182897269726,0.733138978481293,-0.679858326911926,-0.171928986907005,0.724313855171204,-0.66769003868103,-0.0862781256437302,0.72152179479599,-0.686995208263397,0.204725563526154,0.714907288551331,-0.668576836585999,0.017330676317215,0.733667314052582,-0.679287910461426,0.112418226897717,0.735993444919586,-0.667589545249939,0.109677739441395,0.719761073589325,-0.685503304004669,0.0172997266054153,0.732354938983917,-0.680703282356262,-0.0821272805333138,0.739364981651306,-0.668277263641357,-0.112165980041027,0.754314005374908,0.646861016750336,0.0103641813620925,0.752836942672729,0.658125460147858,0.0440592281520367,0.738028168678284,0.673329949378967,-0.116419062018394,0.736928582191467,0.665870010852814,-0.184777989983559,0.734561741352081,0.65289831161499,0.0104327825829387,0.749005556106567,0.662481665611267,0.0506397373974323,0.758194386959076,0.650059163570404,0.0105161247774959,0.744289875030518,0.667773902416229,0.194044753909111,0.729093730449677,0.656329929828644,0.0104094436392188,0.750313997268677,0.660999655723572,-0.18481208384037,0.735928475856781,0.651347756385803,-0.085790641605854,0.757293164730072,0.647415637969971,0.194590240716934,0.734506368637085,0.650103867053986,0.0104909352958202,0.745722234249115,0.666174352169037,0.0959298834204674,0.734760284423828,0.671509325504303,0.0918192937970161,0.760566174983978,0.642735064029694,0.0102887013927102,0.757001161575317,0.653332531452179,-0.0830968543887138,0.74623429775238,0.660476565361023,-0.11333279311657,0.814064264297485,-0.569609761238098,0.0194815825670958,0.824719667434692,-0.565206110477448,0.0537924990057945,0.836081445217133,-0.545961678028107,-0.116132162511349,0.824028849601746,-0.554517805576324,-0.172831401228905,0.813395917415619,-0.55544251203537,0.0194688700139523,0.824180424213409,-0.565992593765259,0.0613934434950352,0.815728843212128,-0.575167179107666,
- 0.0195919591933489,0.829394221305847,-0.558320164680481,0.203834801912308,0.812950432300568,-0.545493304729462,0.0194626841694117,0.823918282985687,-0.566374540328979,-0.172839149832726,0.813108503818512,-0.555860757827759,-0.0818856209516525,0.813228905200958,-0.576154053211212,0.204291552305222,0.808661818504334,-0.551662027835846,0.0195694677531719,0.828442871570587,-0.559731602668762,0.11512940376997,0.829009830951691,-0.547255098819733,0.111243769526482,0.810335516929626,-0.575309693813324,0.0194299835711718,0.822535753250122,-0.568381428718567,-0.0780249908566475,0.827409565448761,-0.556152403354645,-0.155164375901222,0.560279130935669,0.813640773296356,0.0131634613499045,0.557250916957855,0.830239832401276,-0.209549710154533,0.548323452472687,0.809586644172668,-0.153840079903603,0.550738513469696,0.820378184318542,0.012441411614418,0.579559564590454,0.814834892749786,0.0132081313058734,0.559143006801605,0.828966021537781,-0.209476247429848,0.549435198307037,0.808851480484009,0.0131767941638827,0.557815551757813,0.829860329627991,-0.0687391012907028,0.537120521068573,0.840699970722198,0.0132434777915478,0.560641586780548,0.827952682971954,0.0199813786894083,0.543930530548096,0.838892340660095,0.15715391933918,0.554322421550751,0.817330598831177,-0.0606537312269211,0.569886028766632,0.819482207298279,0.0131623623892665,0.557206690311432,0.830269634723663,0.113712176680565,0.54449737071991,0.8310187458992,0.116099990904331,0.561809062957764,0.819079577922821,0.013262216001749,0.561435520648956,0.827414214611053,0.157593250274658,0.549522221088409,0.820481359958649,-0.118625171482563,-0.991443872451782,0.0544713363051414,0.00713423453271389,-0.998896300792694,0.046425212174654,0.0375258848071098,-0.998975813388824,0.0252810474485159,-0.120579525828362,-0.991817831993103,0.0419286414980888,-0.189842790365219,-0.98058819770813,0.0490581654012203,0.00702328979969025,-0.998553812503815,0.0533005930483341,0.0467302687466145,-0.996482491493225,0.0695624202489853,0.00711851380765438,-0.99885082244873,0.0473978742957115,
- 0.191197603940964,-0.980470716953278,0.046050064265728,0.00701708719134331,-0.998533308506012,0.0536845922470093,-0.189854085445404,-0.980559468269348,0.0495836734771729,-0.0915501862764359,-0.993434131145477,0.0686104968190193,0.191454768180847,-0.980178356170654,0.0509458780288696,0.00712619023397565,-0.998873233795166,0.0469204634428024,0.0907211154699326,-0.99528980255127,0.0341744534671307,0.0865460261702538,-0.993914604187012,0.0681450590491295,0.00696877483278513,-0.998368799686432,0.0566674321889877,-0.0871832296252251,-0.995265305042267,0.0429659187793732,-0.106212370097637,0.821084022521973,-0.560838639736176,0.0196248665452003,0.83078533411026,-0.556246876716614,0.0515460558235645,0.841849863529205,-0.537244617938995,-0.109591498970985,0.832035779953003,-0.543788731098175,-0.172642022371292,0.819908142089844,-0.545843958854675,0.0196251478046179,0.830796122550964,-0.556230783462524,0.061295572668314,0.815999329090118,-0.574794054031372,0.0196032579988241,0.82987254858017,-0.557608544826508,0.205886051058769,0.812754929065704,-0.545014083385468,0.0196177121251822,0.830481112003326,-0.556701242923737,-0.172653526067734,0.819536328315735,-0.546398162841797,-0.0846147686243057,0.819527804851532,-0.56675785779953,0.206157833337784,0.80968576669693,-0.549461483955383,0.0195965841412544,0.829590797424316,-0.558027863502502,0.1046526953578,0.831912279129028,-0.544949531555176,0.101254105567932,0.81593644618988,-0.5692058801651,0.0195266734808683,0.826628983020782,-0.562408447265625,-0.0810825824737549,0.831775426864624,-0.54915863275528,-0.155742540955544,-0.517087936401367,-0.841643810272217,0.0216147862374783,-0.516561090946198,-0.855977475643158,-0.205585643649101,-0.506530582904816,-0.837353765964508,-0.153552502393723,-0.501317262649536,-0.851529598236084,0.0247282907366753,-0.53304648399353,-0.845724523067474,0.0215825885534287,-0.511455655097961,-0.859038591384888,-0.205529645085335,-0.507715880870819,-0.836649358272552,0.0216182712465525,-0.517119884490967,-0.855640053749084,-0.0543059930205345,-0.49378103017807,-0.867889046669006,
- 0.0215410739183426,-0.505018949508667,-0.86283940076828,0.03417843952775,-0.488996297121048,-0.871616005897522,0.167103916406631,-0.500459253787994,-0.849480450153351,-0.0480928756296635,-0.520934343338013,-0.852240860462189,0.0215643532574177,-0.508608877658844,-0.860727608203888,0.119743078947067,-0.497411608695984,-0.859210848808289,0.120806232094765,-0.507051408290863,-0.853407859802246,0.0215422306209803,-0.505196571350098,-0.862735390663147,0.167645499110222,-0.495070725679398,-0.852525651454926,-0.123166121542454,0.707582592964172,0.695813894271851,1.62482210726012e-005,0.706074297428131,0.70813775062561,0.0352850258350372,0.69108909368515,0.721907794475555,-0.126113906502724,0.694035053253174,0.70880925655365,-0.188834294676781,0.692041277885437,0.696721315383911,1.36019580168067e-005,0.706242680549622,0.707969844341278,0.0425642915070057,0.715411603450775,0.697405576705933,0.000110993692942429,0.700023472309113,0.714119851589203,0.195011079311371,0.685254454612732,0.701710045337677,1.24629159472534e-005,0.706315100193024,0.70789760351181,-0.188835576176643,0.692119956016541,0.696642816066742,-0.0922732129693031,0.713658571243286,0.694389700889587,0.195545211434364,0.691340267658234,0.695564985275269,7.8236851550173e-005,0.702121138572693,0.712057530879974,0.0915210694074631,0.690638959407806,0.717385351657867,0.0879304632544518,0.713785529136658,0.694822609424591,-2.83140270767035e-005,0.708902478218079,0.705306589603424,-0.0885584950447083,0.697190165519714,0.711395382881165,0.12213384360075,-0.367224335670471,-0.922078967094421,-0.00450479425489903,-0.360600650310516,-0.932709455490112,-0.0434904284775257,-0.338962554931641,-0.93979412317276,0.125438570976257,-0.348586142063141,-0.928844928741455,0.18240624666214,-0.352845996618271,-0.917729616165161,-0.00450368644669652,-0.360702335834503,-0.93267023563385,-0.051181934773922,-0.372344076633453,-0.926682531833649,-0.00458182580769062,-0.353522658348084,-0.935414731502533,-0.185558259487152,-0.345873653888702,-0.919749736785889,-0.00448764115571976,-0.362170845270157,-0.9321009516716,
- 0.182428851723671,-0.354378134012222,-0.917134582996368,0.0911944881081581,-0.375308871269226,-0.922402858734131,-0.185889348387718,-0.350684762001038,-0.917859137058258,-0.00458906078711152,-0.352855563163757,-0.935666561126709,-0.0944940894842148,-0.340296983718872,-0.935558021068573,-0.0904955267906189,-0.373975068330765,-0.923013210296631,-0.00445708958432078,-0.364961564540863,-0.931011915206909,0.087117113173008,-0.351900666952133,-0.931974530220032,-0.156148821115494,0.986154317855835,-0.0558336339890957,0.0164626482874155,0.998777985572815,-0.0465998500585556,-0.203101575374603,0.977957785129547,-0.0484614744782448,-0.154253974556923,0.987325966358185,-0.0373252704739571,0.0125901577994227,0.997836112976074,-0.0645335987210274,0.016365684568882,0.99905914068222,-0.0401615798473358,-0.203035712242126,0.977903485298157,-0.0498124435544014,0.0164725314825773,0.998746991157532,-0.0472583994269371,-0.0676052942872047,0.997429370880127,-0.0237523168325424,0.0162590872496367,0.999318659305573,-0.0331335254013538,0.0216238014400005,0.999675631523132,-0.0134568698704243,0.163188517093658,0.986003220081329,-0.0341670326888561,-0.0614671371877193,0.996651828289032,-0.0539176501333714,0.0163208711892366,0.999174535274506,-0.0372008644044399,0.114235334098339,0.993090331554413,-0.0268680285662413,0.115477204322815,0.99256443977356,-0.038481954485178,0.0162599962204695,0.999316692352295,-0.0331933759152889,0.16365110874176,0.986120402812958,-0.0280154254287481,-0.120434634387493,-0.780594885349274,0.613324701786041,-0.00338337407447398,-0.791814506053925,0.610752284526825,0.0370887741446495,-0.803917050361633,0.593583881855011,-0.123734094202518,-0.793434739112854,0.595945596694946,-0.187238201498985,-0.781164646148682,0.595587015151978,-0.00334450067020953,-0.793185472488403,0.608970940113068,0.0429459027945995,-0.78703898191452,0.615406632423401,-0.00309189897961915,-0.801990509033203,0.597328782081604,0.194339618086815,-0.787251949310303,0.585206389427185,-0.00333864171989262,-0.793391585350037,0.608702421188354,-0.187235221266747,-0.781237363815308,0.595492362976074,
- -0.0947226732969284,-0.781457662582397,0.616726458072662,0.194998800754547,-0.780573606491089,0.593868911266327,-0.00317660626024008,-0.799060881137848,0.601241707801819,0.0975172743201256,-0.801834404468536,0.589535415172577,0.0934699177742004,-0.782014191150665,0.616212129592896,-0.00334095000289381,-0.793311834335327,0.608806371688843,-0.0905207768082619,-0.797845304012299,0.596027553081512,-0.169184893369675,-0.50596022605896,0.845801830291748,0.0134435258805752,-0.520650804042816,0.853663921356201,-0.212449997663498,-0.507543325424194,0.835023820400238,-0.167255192995071,-0.519931674003601,0.837673425674438,0.0148881878703833,-0.500746726989746,0.865465819835663,0.0134202651679516,-0.523065507411957,0.852186799049377,-0.212367624044418,-0.505995512008667,0.835983574390411,0.0134529192000628,-0.519671261310577,0.854260385036469,-0.0682729184627533,-0.539971947669983,0.838909506797791,0.0134673798456788,-0.518158674240112,0.855178594589233,0.0220149829983711,-0.533628463745117,0.845432460308075,0.155980452895164,-0.509439527988434,0.846251428127289,-0.0610863454639912,-0.509044945240021,0.85856956243515,0.0134245837107301,-0.522618353366852,0.852461040019989,0.103696644306183,-0.527622699737549,0.843126058578491,0.105828389525414,-0.509398639202118,0.853998482227325,0.0134698115289211,-0.517903506755829,0.855332970619202,0.156554818153381,-0.51491379737854,0.84282523393631,-0.114228017628193,0.502584218978882,-0.856948673725128,0.0189034137874842,0.514479994773865,-0.857294023036957,0.0480644144117832,0.531813144683838,-0.845496654510498,-0.117439322173595,0.519487023353577,-0.846369445323944,-0.171592220664024,0.50957465171814,-0.843142807483673,0.0189025122672319,0.514432609081268,-0.857322454452515,0.0574763752520084,0.493012577295303,-0.868121564388275,0.0188852865248919,0.513520240783691,-0.857869625091553,0.204447478055954,0.503373444080353,-0.839533567428589,0.0188923161476851,0.513893187046051,-0.857646107673645,-0.171607196331024,0.508946359157562,-0.843519151210785,-0.0829223915934563,0.500589787960052,-0.861703991889954,
- 0.204692617058754,0.499619096517563,-0.841713547706604,0.0189063400030136,0.514634072780609,-0.857201457023621,0.106297180056572,0.521030187606812,-0.846893429756165,0.103589035570621,0.500563740730286,-0.859479665756226,0.0188745371997356,0.512952208518982,-0.858209609985352,-0.0788296982645988,0.522797465324402,-0.848804295063019,-0.163496658205986,-0.416605144739151,0.89426451921463,0.0142132947221398,-0.430362612009048,0.90254420042038,-0.210789024829865,-0.419698297977448,0.8828484416008,-0.160277262330055,-0.440863788127899,0.883147954940796,0.0156830362975597,-0.419201791286469,0.907757639884949,0.0141205368563533,-0.442506521940231,0.89665412902832,-0.21074540913105,-0.418684035539627,0.883340299129486,0.0142168644815683,-0.429886758327484,0.90277087688446,-0.073080912232399,-0.451167762279511,0.889441847801209,0.0141513580456376,-0.438517570495605,0.898611187934875,0.0230925735086203,-0.454927414655685,0.890229046344757,0.154537081718445,-0.431160032749176,0.888942837715149,-0.0651908442378044,-0.415588587522507,0.907213449478149,0.0142092891037464,-0.430895686149597,0.902289867401123,0.110218435525894,-0.436693549156189,0.892832934856415,0.110948361456394,-0.429871529340744,0.896047413349152,0.0141553627327085,-0.437995940446854,0.898865520954132,0.154981046915054,-0.436009794473648,0.886496663093567,-0.1568224132061,0.76469898223877,0.625013709068298,0.0130586056038737,0.766751825809479,0.641810834407806,-0.207935616374016,0.752871036529541,0.624458193778992,-0.155624434351921,0.757732450962067,0.633736968040466,0.0141171384602785,0.783947169780731,0.620666980743408,0.0131082702428102,0.768254041671753,0.640010833740234,-0.207843944430351,0.754009664058685,0.623113393783569,0.013084227219224,0.767527163028717,0.640883028507233,-0.0716746300458908,0.751320064067841,0.656034231185913,0.0131598059087992,0.769810497760773,0.638136863708496,0.0213520620018244,0.757066190242767,0.652989208698273,0.155594155192375,0.760740756988525,0.630130112171173,-0.0643683895468712,0.77463686466217,0.629121959209442,0.0130115756765008,0.765326797962189,0.643510341644287,
- 0.115360677242279,0.753373980522156,0.647394418716431,0.117815181612968,0.767831206321716,0.629725992679596,0.0131844254210591,0.770553350448608,0.637239158153534,0.156009778380394,0.757142782211304,0.634346902370453,-0.107204213738441,0.622929930686951,-0.77489709854126,0.0210513137280941,0.633298814296722,-0.773621022701263,0.0509087964892387,0.649090349674225,-0.759006083011627,-0.110274717211723,0.637865245342255,-0.762212216854095,-0.169688254594803,0.62651115655899,-0.760716557502747,0.0210561379790306,0.633580148220062,-0.773390471935272,0.0584848523139954,0.621228158473969,-0.781444251537323,0.0211544595658779,0.639322578907013,-0.768647730350494,0.202205270528793,0.627416849136353,-0.751971483230591,0.0210385043174028,0.63255363702774,-0.774230778217316,-0.169711798429489,0.625428199768066,-0.76160204410553,-0.0803162977099419,0.619600713253021,-0.780797183513641,0.202573299407959,0.622935473918915,-0.755589485168457,0.0211585089564323,0.63955956697464,-0.768450319766998,0.109214931726456,0.644766509532928,-0.756537020206451,0.105129964649677,0.618110835552216,-0.779029309749603,0.0210098866373301,0.630889117717743,-0.775588512420654,-0.0764932781457901,0.638813853263855,-0.76554924249649,-0.11938463896513,-0.934390425682068,0.335651338100433,0.00224378774873912,-0.944124162197113,0.329582393169403,0.0417823679745197,-0.950174629688263,0.308905214071274,-0.122416339814663,-0.940327405929565,0.317488014698029,-0.191488936543465,-0.927549064159393,0.320912301540375,0.00222942628897727,-0.943852424621582,0.330360144376755,0.0490650795400143,-0.938319563865662,0.34227043390274,0.00238136737607419,-0.946693301200867,0.322127819061279,0.184343278408051,-0.930425524711609,0.316742926836014,0.00222208769991994,-0.943713426589966,0.330757051706314,-0.19150398671627,-0.927346169948578,0.321489274501801,-0.0956840142607689,-0.934600651264191,0.342587500810623,0.184718385338783,-0.928006410598755,0.323547899723053,0.00235023838467896,-0.946117341518402,0.323815405368805,0.0929470211267471,-0.945827066898346,0.31108233332634,
- 0.0887506082653999,-0.934990704059601,0.343388587236404,0.00217436673119664,-0.942807197570801,0.333331495523453,-0.0913666561245918,-0.943467676639557,0.318623393774033,-0.103028953075409,0.632562398910522,-0.767626106739044,0.0212039761245251,0.642228543758392,-0.766219854354858,0.0485130287706852,0.657670021057129,-0.751742362976074,-0.106178566813469,0.647357642650604,-0.754754424095154,-0.169490233063698,0.63504284620285,-0.753653526306152,0.0212043672800064,0.642251968383789,-0.766200244426727,0.058121345937252,0.622590720653534,-0.780386388301849,0.0211823806166649,0.640959739685059,-0.76728218793869,0.206933528184891,0.62831699848175,-0.749930858612061,0.0211970116943121,0.641819894313812,-0.766562402248383,-0.16950349509716,0.634500026702881,-0.754107594490051,-0.0845892801880836,0.62876683473587,-0.772979259490967,0.207283362746239,0.62365186214447,-0.753718733787537,0.0211757030338049,0.640567600727081,-0.767609894275665,0.103543929755688,0.647149622440338,-0.755298614501953,0.0998776778578758,0.624235510826111,-0.77482545375824,0.0211065020412207,0.636517524719238,-0.770973384380341,-0.0812128633260727,0.64501291513443,-0.759843945503235,-0.116111062467098,-0.497271299362183,0.85979038476944,0.0012099597370252,-0.507621347904205,0.861579418182373,0.0385951958596706,-0.525587320327759,0.849863886833191,-0.119336932897568,-0.515477418899536,0.848552703857422,-0.188678324222565,-0.50328665971756,0.843269228935242,0.00124881532974541,-0.509524881839752,0.86045515537262,0.044466894119978,-0.501774370670319,0.863854825496674,0.00150667747948319,-0.522113382816315,0.852874755859375,0.193429872393608,-0.513050079345703,0.836280167102814,0.00125459639821202,-0.509807705879211,0.860287487506866,-0.188673511147499,-0.503486514091492,0.843151032924652,-0.0907164886593819,-0.495141744613647,0.864063203334808,0.194095775485039,-0.503601133823395,0.841850757598877,0.00142135715577751,-0.517960906028748,0.855403244495392,0.0926659554243088,-0.525496959686279,0.845734000205994,0.0887104347348213,-0.497454166412354,0.862942516803741,
- 0.00125337473582476,-0.509749948978424,0.860321700572968,-0.0863123834133148,-0.518630504608154,0.850630700588226,-0.114649176597595,0.982270240783691,0.148327142000198,0.00902704615145922,0.987199485301971,0.159235313534737,0.0415042899549007,0.982781589031219,0.180049404501915,-0.117933206260204,0.978756546974182,0.167712807655334,-0.181132271885872,0.970665574073792,0.158112153410912,0.00902829505503178,0.987168848514557,0.159424364566803,0.0514502413570881,0.989482760429382,0.135192215442657,0.00901556853204966,0.987477898597717,0.157499447464943,0.197837769985199,0.9676353931427,0.15665876865387,0.00902499631047249,0.987249433994293,0.158924862742424,-0.181141287088394,0.970773041248322,0.157440662384033,-0.0897957980632782,0.985637187957764,0.14302471280098,0.198104232549667,0.968255817890167,0.152431592345238,0.00902249477803707,0.987310230731964,0.158546954393387,0.0980095937848091,0.980641305446625,0.1695197224617,0.0955787748098373,0.984586775302887,0.146470546722412,0.00901555176824331,0.987478375434875,0.157496675848961,-0.0855097994208336,0.981765627861023,0.169777438044548,-0.111180081963539,0.139741733670235,-0.98392641544342,0.017935311421752,0.150435030460358,-0.988457202911377,0.0526940673589706,0.171498104929924,-0.983774244785309,-0.114802293479443,0.162262409925461,-0.980046629905701,-0.1724623888731,0.154028981924057,-0.972898662090302,0.0179796852171421,0.153766095638275,-0.987943708896637,0.0589929483830929,0.142152488231659,-0.988085269927979,0.0181179028004408,0.164231672883034,-0.986255407333374,0.198757082223892,0.161845296621323,-0.966592848300934,0.017959963530302,0.152283683419228,-0.988173604011536,-0.172493293881416,0.15241239964962,-0.973147749900818,-0.0818546339869499,0.13693031668663,-0.987192928791046,0.199094191193581,0.155847877264023,-0.967508614063263,0.0181091371923685,0.163564041256905,-0.986366510391235,0.108343414962292,0.17346502840519,-0.978862404823303,0.104461841285229,0.139089271426201,-0.984754741191864,0.0179461389780045,0.151246726512909,-0.988333106040955,-0.0773644968867302,0.16390198469162,-0.983438313007355,
- -0.160847187042236,-0.053634949028492,0.985521018505096,0.00735397357493639,-0.0639704912900925,0.9979248046875,-0.208140477538109,-0.0612518079578877,0.976179182529449,-0.159713134169579,-0.0631135851144791,0.985143840312958,0.00655507389456034,-0.035625409334898,0.999343812465668,0.00738668162375689,-0.0600591264665127,0.998167514801025,-0.208091512322426,-0.0600736737251282,0.976262807846069,0.00735863950103521,-0.0634133368730545,0.997960209846497,-0.0737061947584152,-0.0874192267656326,0.993441224098206,0.00737636210396886,-0.061294361948967,0.998092472553253,0.014856668189168,-0.0807427540421486,0.996624350547791,0.155035942792892,-0.0583644881844521,0.986183285713196,-0.0659781843423843,-0.0481878742575645,0.996656835079193,0.00735223991796374,-0.064176969230175,0.99791145324707,0.111611150205135,-0.0730001777410507,0.991067051887512,0.11336413025856,-0.0542871244251728,0.99206930398941,0.00738793052732944,-0.0599090978503227,0.998176515102386,0.155386343598366,-0.0629261806607246,0.985847651958466,-0.10674013197422,0.290725111961365,-0.950834095478058,0.0197537485510111,0.300917357206345,-0.953445613384247,0.054689135402441,0.321641743183136,-0.945280849933624,-0.109608724713326,0.30808362364769,-0.945024013519287,-0.177014827728271,0.297674626111984,-0.938112795352936,0.0197477750480175,0.300362825393677,-0.953620553016663,0.0622362494468689,0.287738114595413,-0.955684781074524,0.0198324434459209,0.308267384767532,-0.951093018054962,0.202701836824417,0.303787797689438,-0.930926918983459,0.0197438877075911,0.30000239610672,-0.95373409986496,-0.177021980285645,0.297207236289978,-0.938259601593018,-0.0782375112175941,0.284523725509644,-0.955471158027649,0.203198298811913,0.296370059251785,-0.933206975460052,0.0198126956820488,0.306414395570755,-0.9516921043396,0.113246947526932,0.315338224172592,-0.942197918891907,0.109428115189075,0.283574402332306,-0.952686250209808,0.019712632521987,0.297113567590714,-0.954638659954071,-0.0744029656052589,0.307938575744629,-0.948492527008057,-0.156917914748192,0.942561268806458,0.294881373643875,
- 0.0101038888096809,0.950907349586487,0.309310764074326,-0.208855494856834,0.931226432323456,0.298658192157745,-0.155518218874931,0.938774824142456,0.307434767484665,0.0118357334285975,0.95843243598938,0.285074025392532,0.0101073440164328,0.950961172580719,0.309145033359528,-0.208770930767059,0.931702435016632,0.297229379415512,0.0101204756647348,0.951165437698364,0.308515578508377,-0.0716396048665047,0.941604554653168,0.329011529684067,0.0101681305095553,0.951904118061066,0.306227624416351,0.0195182058960199,0.945261001586914,0.325730949640274,0.156608179211617,0.940345764160156,0.302032619714737,-0.0639356449246407,0.953778624534607,0.293630331754684,0.0100792925804853,0.950523674488068,0.31048858165741,0.112576059997082,0.941139221191406,0.318721890449524,0.114884980022907,0.947312295436859,0.298999786376953,0.0101798828691244,0.952085554599762,0.305662661790848,0.157034873962402,0.938472449779511,0.307586640119553,-0.116335429251194,-0.743183612823486,0.658896148204803,0.0066940700635314,-0.753677606582642,0.657210171222687,0.0444695688784122,-0.767105460166931,0.639977872371674,-0.119202747941017,-0.755145370960236,0.644628703594208,-0.187653481960297,-0.742027819156647,0.643568873405457,0.00668302224949002,-0.753230690956116,0.657722651958466,0.0529317744076252,-0.739422857761383,0.67115730047226,0.00670841662213206,-0.754258275032043,0.656543731689453,0.191172018647194,-0.74056339263916,0.644219815731049,0.00668751494958997,-0.753411710262299,0.657515048980713,-0.187652140855789,-0.742064356803894,0.643527090549469,-0.0980229899287224,-0.740546882152557,0.664817154407501,0.191525399684906,-0.735911548137665,0.649424493312836,0.00667850812897086,-0.753051936626434,0.657927215099335,0.0937436893582344,-0.757647037506104,0.645897150039673,0.0904309898614883,-0.740012943744659,0.666485607624054,0.0066308337263763,-0.75112247467041,0.660129547119141,-0.0937769114971161,-0.757377564907074,0.6462082862854,-0.103332526981831,0.301204144954681,-0.947944343090057,0.0198639463633299,0.311235249042511,-0.950125277042389,
- 0.0524456985294819,0.331577062606812,-0.941969275474548,-0.106665462255478,0.320219427347183,-0.941319286823273,-0.176833063364029,0.308727711439133,-0.934567987918854,0.0198677871376276,0.311597853899002,-0.950006365776062,0.0621371902525425,0.288187980651855,-0.95555567741394,0.0198410991579294,0.309081345796585,-0.950828731060028,0.205020681023598,0.304111957550049,-0.930313110351563,0.0198629666119814,0.311142295598984,-0.950155735015869,-0.176843851804733,0.308111399412155,-0.93476927280426,-0.0838897377252579,0.29608279466629,-0.951471328735352,0.205356746912003,0.298466593027115,-0.932065606117249,0.0198334995657206,0.308366805315018,-0.951060771942139,0.106157690286636,0.318567544221878,-0.94193696975708,0.102807179093361,0.291220664978027,-0.951115787029266,0.0197871085256338,0.304021805524826,-0.952459573745728,-0.0805952921509743,0.31575945019722,-0.945410192012787,-0.11662882566452,-0.258626341819763,0.958910942077637,-0.00335435988381505,-0.268617898225784,0.96324098110199,0.0367470420897007,-0.28852391242981,0.95676726102829,-0.122298538684845,-0.293692082166672,0.948044419288635,-0.189566642045975,-0.283297657966614,0.940110087394714,-0.00305433850735426,-0.28526845574379,0.958442807197571,0.0461997948586941,-0.2454544454813,0.968306720256805,-0.003358667017892,-0.268380403518677,0.96330726146698,0.188591867685318,-0.263779908418655,0.945966839790344,-0.00308428797870874,-0.283611983060837,0.958934187889099,-0.189610660076141,-0.281515836715698,0.940636277198792,-0.0938646867871284,-0.268510907888412,0.958692491054535,0.188978597521782,-0.257450729608536,0.947631895542145,-0.00337231415323913,-0.267620503902435,0.963518500328064,0.0927870720624924,-0.277658611536026,0.956188499927521,0.0903002694249153,-0.258026152849197,0.96190869808197,-0.00331212999299169,-0.270970612764359,0.962581932544708,-0.0913737863302231,-0.282916188240051,0.95478230714798,-0.115997299551964,0.986095428466797,-0.118997856974602,0.00696888985112309,0.994020462036133,-0.108971528708935,0.0437990464270115,0.995215594768524,-0.0873369723558426,
- -0.120053879916668,0.988153994083405,-0.0955968275666237,-0.183180898427963,0.977719187736511,-0.102517805993557,0.00699476059526205,0.994340837001801,-0.106006473302841,0.0504614040255547,0.991824924945831,-0.11720497906208,0.00709306029602885,0.995483994483948,-0.0946651920676231,0.196300715208054,0.9763143658638,-0.0909744203090668,0.00698157446458936,0.994178533554077,-0.107518866658211,-0.183200106024742,0.977548480033875,-0.104099474847317,-0.0916113331913948,0.988325536251068,-0.121737629175186,0.196646511554718,0.975687682628632,-0.09676643460989,0.00708888238295913,0.995437860488892,-0.0951495245099068,0.102170526981354,0.9912428855896,-0.0836595222353935,0.0985214859247208,0.988080084323883,-0.118284583091736,0.00697846757248044,0.994140028953552,-0.107874676585197,-0.087265856564045,0.991699814796448,-0.094425342977047,-0.109750673174858,-0.109847135841846,-0.987870633602142,0.0140730505809188,-0.101134575903416,-0.994773209095001,0.04944758862257,-0.0795963332056999,-0.995599985122681,-0.113001480698586,-0.0898524522781372,-0.989523828029633,-0.176267012953758,-0.0963793024420738,-0.979612767696381,0.0140702789649367,-0.10129452496767,-0.994756996631622,0.0591119974851608,-0.124747529625893,-0.990426182746887,0.0140576586127281,-0.1020213291049,-0.994682908058167,0.204353183507919,-0.0993810668587685,-0.973839402198792,0.0140588935464621,-0.10195068269968,-0.994690120220184,-0.176283806562424,-0.0971460416913033,-0.979533910751343,-0.0826667100191116,-0.11494916677475,-0.989925801753998,0.20460145175457,-0.103722028434277,-0.973334491252899,0.0140814669430256,-0.100648954510689,-0.994822442531586,0.10945438593626,-0.0897796973586082,-0.989928960800171,0.106662429869175,-0.114086374640465,-0.987728416919708,0.0140432743355632,-0.102849818766117,-0.994597733020782,-0.0785681307315826,-0.0894236266613007,-0.992890059947968,-0.122353442013264,0.973114013671875,-0.195137694478035,0.0062679098919034,0.982449233531952,-0.186424791812897,0.0362209603190422,0.985401630401611,-0.166348099708557,-0.123379871249199,0.974217772483826,-0.188884437084198,
- -0.17906865477562,0.964501082897186,-0.194092959165573,0.00614923052489758,0.979975521564484,-0.199023529887199,0.0483441799879074,0.973841726779938,-0.222025126218796,0.00614102510735393,0.979799389839172,-0.199889078736305,0.191102176904678,0.9620640873909,-0.194712236523628,0.00613151537254453,0.979594171047211,-0.200892060995102,-0.179091513156891,0.964112401008606,-0.195994168519974,-0.0828669741749763,0.973037958145142,-0.215245023369789,0.191167429089546,0.961851835250854,-0.19569393992424,0.0061859842389822,0.98075670003891,-0.195136427879334,0.100470624864101,0.978003740310669,-0.18279604613781,0.0962195172905922,0.970467090606689,-0.221213445067406,0.00603227643296123,0.977402091026306,-0.211303055286407,-0.0803547203540802,0.976646602153778,-0.199260026216507,-0.109038181602955,0.035782802850008,-0.993393421173096,0.0164365340024233,0.0448618307709694,-0.998857975006104,0.0504022277891636,0.0662447661161423,-0.996529698371887,-0.111784659326077,0.0536708310246468,-0.992282032966614,-0.172796785831451,0.0459125526249409,-0.98388683795929,0.0164193045347929,0.043716486543417,-0.998909056186676,0.057883445173502,0.0309689734131098,-0.997842907905579,0.0165662076324224,0.0535252951085567,-0.998429179191589,0.202015712857246,0.053674478083849,-0.977910399436951,0.0164116024971008,0.0432049445807934,-0.998931527137756,-0.172804921865463,0.0453930981457233,-0.983909487724304,-0.0753108263015747,0.0276950262486935,-0.996775448322296,0.20251601934433,0.0458978116512299,-0.978202760219574,0.0165429245680571,0.0519640259444714,-0.998512029647827,0.110626257956028,0.0622283145785332,-0.991912126541138,0.106831423938274,0.0289196353405714,-0.993856489658356,0.0163798555731773,0.0411000140011311,-0.999020755290985,-0.0711935237050056,0.0530655272305012,-0.99605005979538,-0.108917035162449,0.0349989384412766,-0.993434548377991,0.016424922272563,0.0440899059176445,-0.998892545700073,0.0505685396492481,0.0654648169875145,-0.996572732925415,-0.111862488090992,0.0541810058057308,-0.992245554924011,-0.172788694500923,0.0464262813329697,-0.98386424779892,
- 0.0164271593093872,0.0442384220659733,-0.998885929584503,0.0581473633646965,0.029717268422246,-0.997865617275238,0.0165473874658346,0.0522629208862782,-0.998496353626251,0.202097952365875,0.0524093620479107,-0.977962017059326,0.0164064653217793,0.042864054441452,-0.998946189880371,-0.172810152173042,0.0450593009591103,-0.983924031257629,-0.0753641054034233,0.027364619076252,-0.996780514717102,0.202469646930695,0.0466272607445717,-0.978177964687347,0.0165541116148233,0.0527140684425831,-0.998472452163696,0.110708050429821,0.0629578903317451,-0.991856873035431,0.106826677918434,0.0288785211741924,-0.993858277797699,0.0163792259991169,0.0410584025084972,-0.999022483825684,-0.0712001100182533,0.0530251376330853,-0.996051669120789,-0.11725877225399,-0.553306519985199,0.824683129787445,0.00238170498050749,-0.564091742038727,0.82570868730545,0.0401501283049583,-0.58127635717392,0.812715172767639,-0.119294710457325,-0.56378310918808,0.81726211309433,-0.191447898745537,-0.550864815711975,0.812339603900909,0.00225873291492462,-0.558258891105652,0.829663753509521,0.0492260865867138,-0.544630169868469,0.837230563163757,0.0023688857909292,-0.56348705291748,0.826121628284454,0.191079452633858,-0.553293704986572,0.810774147510529,0.00225140177644789,-0.557910263538361,0.829898357391357,-0.191463351249695,-0.550349771976471,0.812685012817383,-0.0923250615596771,-0.543561220169067,0.834276497364044,0.191340416669846,-0.549180507659912,0.8135045170784,0.00237909145653248,-0.563971042633057,0.82579118013382,0.0925824865698814,-0.571037292480469,0.815686762332916,0.088605985045433,-0.543670654296875,0.834608554840088,0.00220331456512213,-0.555625319480896,0.831430017948151,-0.088216744363308,-0.564430236816406,0.820753633975983,-0.103292718529701,0.0471032038331032,-0.993535161018372,0.0165981650352478,0.0556723177433014,-0.998311102390289,0.0481699965894222,0.0766941159963608,-0.995890498161316,-0.106436118483543,0.0666432604193687,-0.992083787918091,-0.17260280251503,0.057503666728735,-0.983311533927917,0.016595508903265,0.055493276566267,-0.998321235179901,
- 0.0577860213816166,0.0314309000968933,-0.997834086418152,0.0165790468454361,0.0543874986469746,-0.998382270336151,0.202409699559212,0.0540377758443356,-0.977808892726898,0.0165864080190659,0.0548814386129379,-0.998355209827423,-0.172614768147469,0.0568270646035671,-0.983348786830902,-0.0812096446752548,0.0401774123311043,-0.995886921882629,0.202745288610458,0.0481372363865376,-0.978047728538513,0.0165734887123108,0.0540141388773918,-0.998402714729309,0.103108711540699,0.0652153566479683,-0.99252986907959,0.0998885035514832,0.0369544364511967,-0.994312167167664,0.016488641500473,0.0483336299657822,-0.998695135116577,-0.0777534022927284,0.0613375008106232,-0.99508398771286,-0.120385356247425,0.0970730483531952,0.987969756126404,-0.0013984494144097,0.0888015329837799,0.996048450469971,0.0387717522680759,0.0672871842980385,0.996980130672455,-0.123692236840725,0.0755011141300201,0.989444196224213,-0.183523938059807,0.0819803401827812,0.979590833187103,-0.00136044342070818,0.0863881483674049,0.996260643005371,0.0447862893342972,0.095190703868866,0.99445104598999,-0.00113939854782075,0.0723518133163452,0.997378528118134,0.19496762752533,0.0695873722434044,0.978338003158569,-0.00135440356098115,0.0860046148300171,0.996293842792511,-0.18352036178112,0.081830196082592,0.979604065418243,-0.0959094986319542,0.0992570891976357,0.990428924560547,0.195671007037163,0.0806950107216835,0.977343916893005,-0.00121810904238373,0.0773499384522438,0.997003257274628,0.0947847440838814,0.0647461786866188,0.993390142917633,0.0904790684580803,0.0988274961709976,0.9909827709198,-0.00136128673329949,0.0864417105913162,0.996255993843079,-0.0917158573865891,0.0730208903551102,0.99310439825058,-0.11878128349781,0.880162179470062,-0.459571003913879,0.00345190148800612,0.891465961933136,-0.453074544668198,0.0435602366924286,0.90013712644577,-0.433423161506653,-0.122633807361126,0.890137553215027,-0.438880801200867,-0.18292610347271,0.878562927246094,-0.441208869218826,0.00348108890466392,0.892712116241455,-0.450614035129547,0.0500726252794266,0.886598348617554,-0.459822058677673,
- 0.00360794668085873,0.898062527179718,-0.439853072166443,0.197388410568237,0.881131529808044,-0.4297034740448,0.00346437562257051,0.891999185085297,-0.45202374458313,-0.182947933673859,0.877825736999512,-0.442665010690689,-0.0922322794795036,0.881581842899323,-0.462932676076889,0.197742894291878,0.878472745418549,-0.434952110052109,0.00360459904186428,0.89792275428772,-0.440138339996338,0.0974948778748512,0.89868688583374,-0.427617371082306,0.093613937497139,0.883129954338074,-0.459693312644959,0.00346465385518968,0.892011165618896,-0.452000141143799,-0.0878152474761009,0.894496560096741,-0.438365638256073,-0.112371571362019,-0.451897293329239,-0.884964227676392,0.017627265304327,-0.445965886116028,-0.89487636089325,0.0490175113081932,-0.425883829593658,-0.903449058532715,-0.1156285405159,-0.433761686086655,-0.893577575683594,-0.169158831238747,-0.436819434165955,-0.883501172065735,0.0176236461848021,-0.446149826049805,-0.89478474855423,0.0589408129453659,-0.46678152680397,-0.8824063539505,0.0176126789301634,-0.446708858013153,-0.89450603723526,0.204697951674461,-0.436919838190079,-0.875899434089661,0.0176118984818459,-0.446747481822968,-0.894486725330353,-0.16917522251606,-0.43750137090683,-0.883160412311554,-0.0841320008039474,-0.457239121198654,-0.885355532169342,0.204931065440178,-0.440683752298355,-0.873957276344299,0.0176373422145844,-0.445453315973282,-0.895131409168243,0.104619152843952,-0.433448165655136,-0.895085215568542,0.101886168122292,-0.455172955989838,-0.88455456495285,0.0175970941781998,-0.447500467300415,-0.894110560417175,-0.0798155665397644,-0.433780282735825,-0.897476673126221,-0.110793180763721,0.833000481128693,-0.542065560817719,0.00240754196420312,0.843259394168854,-0.537501633167267,0.0428594425320625,0.853242516517639,-0.51975017786026,-0.115052551031113,0.846375286579132,-0.520011365413666,-0.185016795992851,0.832938671112061,-0.521518886089325,0.00247211172245443,0.846438586711884,-0.532480657100677,0.0491021759808064,0.837067842483521,-0.544891178607941,0.00254585244692862,0.850038290023804,-0.52671480178833,
- 0.190954998135567,0.835162103176117,-0.515791296958923,0.00247232080437243,0.846448838710785,-0.532464385032654,-0.185017600655556,0.832907199859619,-0.521568834781647,-0.0823215171694756,0.835253417491913,-0.54366797208786,0.19149985909462,0.830711305141449,-0.522730112075806,0.0025217963848263,0.84886771440506,-0.528599262237549,0.100991226732731,0.850379467010498,-0.516386985778809,0.0985028669238091,0.838421940803528,-0.53604644536972,0.00251264334656298,0.848421275615692,-0.529315590858459,-0.0774696171283722,0.852089703083038,-0.517630994319916,-0.107707165181637,-0.317103683948517,-0.942255079746246,0.0200000517070293,-0.310793876647949,-0.950267016887665,0.049926619976759,-0.289382934570313,-0.955910503864288,-0.110404781997204,-0.300122320652008,-0.947490036487579,-0.17182657122612,-0.304539918899536,-0.936873137950897,0.0199834145605564,-0.311859339475632,-0.94991809129715,0.0579457953572273,-0.324064135551453,-0.944258809089661,0.0201271884143353,-0.30258122086525,-0.952911078929901,0.203680381178856,-0.294842571020126,-0.933585643768311,0.0199758820235729,-0.312341183423996,-0.949759960174561,-0.171837538480759,-0.305105984210968,-0.936686933040619,-0.0798013731837273,-0.324911683797836,-0.942371547222137,0.204201549291611,-0.302339732646942,-0.931070685386658,0.020104018971324,-0.304087251424789,-0.952432036399841,0.113433264195919,-0.291668951511383,-0.949769496917725,0.109311558306217,-0.324680328369141,-0.939485847949982,0.0199439711868763,-0.31437948346138,-0.949087977409363,-0.0758809447288513,-0.3015376329422,-0.950429975986481,-0.107100158929825,-0.320880740880966,-0.941044688224792,0.019941933453083,-0.314509034156799,-0.94904500246048,0.050793718546629,-0.293137907981873,-0.954719960689545,-0.110482469201088,-0.299628645181656,-0.947637319564819,-0.171816974878311,-0.304047971963882,-0.937034547328949,0.0199912302196026,-0.311358988285065,-0.950082182884216,0.0586942471563816,-0.32729572057724,-0.943097293376923,0.0200764052569866,-0.30587637424469,-0.951859652996063,0.20391072332859,-0.298135787248611,-0.932488858699799,
- 0.0199807733297348,-0.312028259038925,-0.949862718582153,-0.171831592917442,-0.304799646139145,-0.936787605285645,-0.079750269651413,-0.324606388807297,-0.942481100559235,0.204366877675056,-0.304753422737122,-0.930247128009796,0.0200654473155737,-0.306585103273392,-0.951631844043732,0.113133646547794,-0.294118344783783,-0.949049592018127,0.109636753797531,-0.322127968072891,-0.94032621383667,0.0199834704399109,-0.311856329441071,-0.949919104576111,-0.0754545852541924,-0.299001276493073,-0.95126485824585,0.158534452319145,0.960690081119537,0.227906629443169,-0.0152937555685639,0.971153497695923,0.237964242696762,0.197299256920815,0.952238202095032,0.233057200908661,0.157560855150223,0.958902835845947,0.235965967178345,-0.0167466681450605,0.977679848670959,0.209432229399681,-0.0153104793280363,0.972215414047241,0.233586773276329,0.197241395711899,0.952587306499481,0.231674998998642,-0.0152965523302555,0.971331059932709,0.237238258123398,0.059947807341814,0.963420808315277,0.261202245950699,-0.0153095247223973,0.972154796123505,0.233839482069016,-0.0253951232880354,0.967092931270599,0.253152877092361,-0.167248457670212,0.959337949752808,0.227373465895653,0.0523709692060947,0.973429501056671,0.222917661070824,-0.0152946477755904,0.971210122108459,0.237733066082001,-0.114404447376728,0.962919056415558,0.244332835078239,-0.116323433816433,0.96760630607605,0.224069073796272,-0.0153158744797111,0.972557961940765,0.232156500220299,-0.167666703462601,0.958166599273682,0.231958717107773,-0.104448407888412,-0.307234644889832,-0.945884466171265,0.0201593730598688,-0.300482183694839,-0.953574359416962,0.0476241707801819,-0.279406428337097,-0.95899111032486,-0.107787497341633,-0.287904262542725,-0.951573967933655,-0.171601042151451,-0.293502539396286,-0.940430402755737,0.0201570596545935,-0.300632804632187,-0.95352691411972,0.0562634654343128,-0.316796958446503,-0.946823179721832,0.0202459823340178,-0.294797241687775,-0.955345332622528,0.208157584071159,-0.287075608968735,-0.935017645359039,0.0201378390192986,-0.301886409521103,-0.953131198883057,
- -0.171630397439003,-0.294879406690598,-0.939994215965271,-0.0879669934511185,-0.313654810190201,-0.945453584194183,0.20841471850872,-0.291288584470749,-0.933656394481659,0.0202650893479586,-0.293535351753235,-0.955733418464661,0.107224389910698,-0.280988961458206,-0.953702330589294,0.103495039045811,-0.311897605657578,-0.94446212053299,0.0201301202178001,-0.302389830350876,-0.952971756458282,-0.0834497585892677,-0.287599414587021,-0.954108357429504,0.0558477602899075,-0.97921234369278,0.194998055696487,0.1748066842556,-0.966416120529175,0.188368052244186,0.20950822532177,-0.963265359401703,0.168006345629692,0.0535729378461838,-0.982902407646179,0.176161259412766,-0.0114544881507754,-0.983261406421661,0.181839987635612,0.174814164638519,-0.966443777084351,0.188219100236893,0.215498760342598,-0.955179870128632,0.202957317233086,0.17516778409481,-0.967744290828705,0.181072428822517,0.358315050601959,-0.9166100025177,0.177303284406662,0.174812689423561,-0.966438293457031,0.188248530030251,-0.0114770857617259,-0.983194768428802,0.182198733091354,0.080578476190567,-0.976039350032806,0.202124327421188,0.358455032110214,-0.914911806583405,0.185597330331802,0.175016701221466,-0.967190802097321,0.184149712324142,0.271089464426041,-0.947030067443848,0.172176077961922,0.266068339347839,-0.941994965076447,0.204580426216125,0.17458912730217,-0.965607583522797,0.19266714155674,0.0854361951351166,-0.980197012424469,0.178646370768547,-0.000202040304429829,-0.909933507442474,0.414754092693329,0.168058007955551,-0.895434677600861,0.412253886461258,-0.0510218143463135,-0.913467586040497,0.403700053691864,0.000754629843868315,-0.911974489688873,0.410246223211288,0.163899883627892,-0.882057368755341,0.441714704036713,0.167524203658104,-0.892224133014679,0.419370621442795,-0.0510490797460079,-0.913172721862793,0.40436315536499,0.168045103549957,-0.895357012748718,0.412428021430969,0.0876914113759995,-0.917302072048187,0.388416230678558,0.168011099100113,-0.89515221118927,0.412885963916779,0.177375569939613,-0.901535987854004,0.394678115844727,
- 0.310163259506226,-0.857507944107056,0.410461783409119,0.0922315865755081,-0.902011930942535,0.421743810176849,0.168362945318222,-0.897271931171417,0.408114016056061,0.270944178104401,-0.877083122730255,0.396628856658936,0.271386921405792,-0.868022680282593,0.415795654058456,0.167994484305382,-0.895052134990692,0.413109630346298,0.311100214719772,-0.859791040420532,0.40493980050087,0.0135863134637475,-0.999746203422546,0.0179760549217463,0.181024760007858,-0.983436942100525,0.00904640834778547,-0.0389300100505352,-0.999188184738159,0.0103658884763718,0.0142462169751525,-0.999816715717316,0.0127881411463022,0.185165151953697,-0.981796562671661,0.0423032306134701,0.181070506572723,-0.98331207036972,0.0176358968019485,-0.0388953536748886,-0.999180197715759,0.0112381428480148,0.181026458740234,-0.98343414068222,0.00932277366518974,0.101577870547771,-0.994729280471802,-0.0139926839619875,0.181098282337189,-0.983153402805328,0.0247547030448914,0.192067801952362,-0.981367766857147,0.00524144852533937,0.330430209636688,-0.943428874015808,0.0275290198624134,0.110466837882996,-0.993342220783234,0.0326850078999996,0.18106584250927,-0.983330488204956,0.0166286956518888,0.278604030609131,-0.960371255874634,0.00817479752004147,0.280629605054855,-0.959290981292725,0.0317499898374081,0.181101948022842,-0.983122766017914,0.0259164236485958,0.330955266952515,-0.94339644908905,0.0217248052358627,-0.155422568321228,0.269134789705276,-0.950478971004486,-0.0402946621179581,0.299503833055496,-0.953243851661682,-0.00879516080021858,0.324533939361572,-0.945833265781403,-0.161344900727272,0.286100327968597,-0.944518089294434,-0.2254359126091,0.264374673366547,-0.937701821327209,-0.0402722060680389,0.299365729093552,-0.95328813791275,0.0104165030643344,0.27771270275116,-0.960607707500458,-0.0389799177646637,0.291414618492126,-0.955802321434021,0.151928812265396,0.319798588752747,-0.935225367546082,-0.040268562734127,0.299343317747116,-0.953295350074768,-0.225406482815742,0.26418548822403,-0.937762200832367,-0.126474156975746,0.268854141235352,-0.954841315746307,
- 0.15295173227787,0.315512239933014,-0.936513662338257,-0.0390957370400429,0.292127370834351,-0.955579996109009,0.0496199950575829,0.318088233470917,-0.946761727333069,0.0506398603320122,0.298386216163635,-0.953100860118866,-0.0396249778568745,0.295383960008621,-0.954556524753571,-0.126748144626617,0.290937781333923,-0.948309063911438,-0.151874870061874,-0.869384586811066,-0.47021746635437,0.0206612125039101,-0.874655723571777,-0.48430410027504,-0.203091636300087,-0.857737720012665,-0.472271114587784,-0.149667203426361,-0.860637784004211,-0.486726194620132,0.025382312014699,-0.884497880935669,-0.465853244066238,0.0206000898033381,-0.872069239616394,-0.48894876241684,-0.203035309910774,-0.85841429233551,-0.471064269542694,0.0206702090799809,-0.875036776065826,-0.483615130186081,-0.0598481483757496,-0.861813545227051,-0.503682076931,0.020530903711915,-0.869142591953278,-0.494135230779648,0.0347934626042843,-0.859360694885254,-0.51018488407135,0.166930422186852,-0.858136773109436,-0.485526233911514,-0.0535939894616604,-0.877570450305939,-0.476443082094193,0.0205719359219074,-0.87087869644165,-0.491067320108414,0.118908122181892,-0.860506236553192,-0.495368391275406,0.119975432753563,-0.865969002246857,-0.485493123531342,0.0205382164567709,-0.869452834129334,-0.493588864803314,0.167442873120308,-0.855078935623169,-0.490716725587845,0.116148628294468,-0.961239755153656,-0.250055313110352,-0.00409345235675573,-0.965617656707764,-0.259934216737747,-0.0385525934398174,-0.959117412567139,-0.28037029504776,0.119122430682182,-0.955985724925995,-0.26814392209053,0.184813395142555,-0.948452889919281,-0.257451325654984,-0.00408218521624804,-0.965810000896454,-0.259218782186508,-0.0493107959628105,-0.971686542034149,-0.231070846319199,-0.00398827902972698,-0.967391133308411,-0.253255695104599,-0.19681105017662,-0.948224604129791,-0.249269843101501,-0.0040789358317852,-0.96586537361145,-0.259012430906296,0.184813842177391,-0.948465466499329,-0.257404983043671,0.0922302678227425,-0.965211749076843,-0.244662791490555,-0.197065085172653,-0.949273586273193,-0.245040848851204,
- -0.00400695018470287,-0.967079937458038,-0.254441320896149,-0.0890907570719719,-0.960131764411926,-0.264971405267715,-0.0866623893380165,-0.965726017951965,-0.24466934800148,-0.00403573643416166,-0.966597139835358,-0.256269246339798,0.0885927155613899,-0.959510087966919,-0.267379462718964,-0.122644275426865,0.779024660587311,0.614881277084351,0.00987842492759228,0.778731167316437,0.627279996871948,0.0410974584519863,0.763963282108307,0.643949627876282,-0.125911548733711,0.766339778900146,0.629975914955139,-0.186471581459045,0.763762712478638,0.617976427078247,0.00987398251891136,0.778958380222321,0.626997888088226,0.0520904697477818,0.795886874198914,0.603200316429138,0.00977650750428438,0.783901512622833,0.620808243751526,0.192998439073563,0.768292307853699,0.610310196876526,0.00987335667014122,0.77899032831192,0.626958191394806,-0.186476066708565,0.763910114765167,0.617792844772339,-0.094068631529808,0.784981727600098,0.612335503101349,0.193281650543213,0.771140277385712,0.606617569923401,0.00978727452456951,0.783359467983246,0.6214919090271,0.0897505879402161,0.772813975811005,0.628254234790802,0.0875924453139305,0.785097539424896,0.613147139549255,0.00982610881328583,0.781396150588989,0.623957931995392,-0.0900009125471115,0.76985114812851,0.631845772266388,0.107943944633007,0.540461421012878,0.834415674209595,-0.0157068744301796,0.536496222019196,0.843756556510925,-0.0427277758717537,0.519216418266296,0.85357403755188,0.11079478263855,0.524584233760834,0.844118416309357,0.172188237309456,0.526217758655548,0.832734227180481,-0.015689367428422,0.537260413169861,0.843270480632782,-0.0534480698406696,0.562200367450714,0.825272083282471,-0.0155667653307319,0.542587339878082,0.839855134487152,-0.205004468560219,0.531114876270294,0.822125375270844,-0.0156853832304478,0.537434279918671,0.843159735202789,0.172193720936775,0.526434719562531,0.832595825195313,0.0764056295156479,0.547735035419464,0.833155751228333,-0.205237358808517,0.534714102745056,0.819730758666992,-0.0155911985784769,0.541529953479767,0.840536892414093,
- -0.106690190732479,0.529861867427826,0.841346442699432,-0.104402802884579,0.546770989894867,0.830747604370117,-0.0156282521784306,0.539921939373016,0.841570019721985,0.0726593360304832,0.528201401233673,0.846004664897919,-0.152558252215385,0.312163054943085,-0.937699437141418,0.0223400443792343,0.324195712804794,-0.945726215839386,-0.197789236903191,0.316685616970062,-0.927679717540741,-0.150372490286827,0.329861462116241,-0.93197625875473,0.0256865583360195,0.305158257484436,-0.951955199241638,0.0222959611564875,0.329589366912842,-0.943861067295074,-0.197733670473099,0.315386801958084,-0.928133904933929,0.0223454274237156,0.323529154062271,-0.945954322814941,-0.0577184893190861,0.347271770238876,-0.935986697673798,0.0222415216267109,0.336113780736923,-0.941558718681335,0.035058967769146,0.353132039308548,-0.934916377067566,0.163845852017403,0.329672008752823,-0.929769277572632,-0.0512034296989441,0.317049115896225,-0.947026014328003,0.0222724918276072,0.332418978214264,-0.942868888378143,0.115498416125774,0.338686048984528,-0.933783650398254,0.116707287728786,0.327211618423462,-0.937716364860535,0.0222444161772728,0.335768163204193,-0.941681981086731,0.164329886436462,0.335160583257675,-0.927719295024872,-0.158818542957306,-0.984428584575653,-0.0753461718559265,0.0156903825700283,-0.99633926153183,-0.0840349271893501,-0.2089674025774,-0.974452257156372,-0.0823142528533936,-0.156683102250099,-0.983192503452301,-0.0937181636691093,0.00480328872799873,-0.997768819332123,-0.0665908455848694,0.0156816728413105,-0.995786249637604,-0.0903541818261147,-0.20891672372818,-0.974577248096466,-0.0809521153569222,0.0156912133097649,-0.996392011642456,-0.0834071189165115,-0.0699132904410362,-0.99160373210907,-0.108785048127174,0.0156701318919659,-0.995053350925446,-0.0980985015630722,0.0147654348984361,-0.992871344089508,-0.118272930383682,0.151491850614548,-0.983954608440399,-0.0942539274692535,-0.0638223513960838,-0.994925856590271,-0.0777766779065132,0.0156767275184393,-0.995472192764282,-0.0937515124678612,0.109654352068901,-0.988772392272949,-0.101513840258121,
- 0.110615193843842,-0.989706158638,-0.0908077508211136,0.01567024551332,-0.995060622692108,-0.098024770617485,0.152016624808311,-0.983282685279846,-0.100230015814304,-0.116252802312374,-0.471728324890137,0.874046742916107,0.00759759405627847,-0.482447236776352,0.875892102718353,0.0404331684112549,-0.501837372779846,0.864016473293304,-0.11940336227417,-0.488519370555878,0.864344656467438,-0.189241871237755,-0.475687474012375,0.859016239643097,0.00759045220911503,-0.481993705034256,0.876141786575317,0.048393651843071,-0.469780504703522,0.881455779075623,0.00771206617355347,-0.489716172218323,0.871847808361053,0.188052505254745,-0.482327908277512,0.855567812919617,0.00758914742618799,-0.481910884380341,0.87618750333786,-0.189243599772453,-0.475584208965302,0.859073042869568,-0.0957495123147964,-0.467374265193939,0.878859102725983,0.188675701618195,-0.474208235740662,0.859958171844482,0.00767266983166337,-0.487214505672455,0.873248755931854,0.0913173630833626,-0.49523001909256,0.863949298858643,0.0877001732587814,-0.467276096343994,0.879750967025757,0.0075401240028441,-0.478797882795334,0.877892792224884,-0.091956801712513,-0.488392353057861,0.867765426635742,-0.106898464262486,0.728150367736816,-0.677030146121979,0.0174303632229567,0.737884759902954,-0.674701571464539,0.0486057363450527,0.751350343227386,-0.658111035823822,-0.109699301421642,0.7403644323349,-0.663194298744202,-0.177419811487198,0.728081524372101,-0.662132561206818,0.0174223035573959,0.737542450428009,-0.675076007843018,0.0597167313098907,0.71547257900238,-0.696084082126617,0.0173033084720373,0.732508063316345,-0.680538415908813,0.204510673880577,0.717541992664337,-0.665814518928528,0.0174205265939236,0.737466871738434,-0.675158679485321,-0.177423641085625,0.727946937084198,-0.662279486656189,-0.0852975472807884,0.72580486536026,-0.68259185552597,0.204763695597649,0.714434802532196,-0.669070065021515,0.0173193346709013,0.733187258243561,-0.679806232452393,0.107214622199535,0.736842393875122,-0.667509078979492,0.104722283780575,0.722819805145264,-0.683055460453033,
- 0.0173628274351358,0.735026121139526,-0.6778165102005,-0.0815152227878571,0.741933226585388,-0.665500104427338
- }
- TangentsW: *3009 {
- 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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementColor: 0 {
- Version: 101
- Name: "colorSet0"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- Colors: *12036 {
- a: 1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,
- 0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,
- 0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,
- 0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0.980392217636108,0,0,1,1,0,0,1,0.627451002597809,0,0,1,0.427451014518738,0,0,1,0.980392217636108,0,0,1,0.627451002597809,0,0,1,0.427451014518738,
- 0,0,1,0.317647069692612,0,0,1,0.356862753629684,0,0,1,0.627451002597809,0,0,1,0.466666698455811,0,0,1,0.427451014518738,0,0,1,0.317647069692612,0,0,1,0.427451014518738,0,0,1,0.466666698455811,0,0,1,0.317647069692612,0,0,1,0.466666698455811,0,0,1,0.298039227724075,0,0,1,0.627451002597809,0,0,1,0.788235366344452,0,0,1,0.466666698455811,0,0,1,0.298039227724075,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.466666698455811,0,0,1,0.788235366344452,0,0,1,0.454901993274689,0,0,1,0.454901993274689,0,0,1,0.788235366344452,0,0,1,0.796078503131866,0,0,1,0.980392217636108,0,0,1,1,0,0,1,0.627451002597809,0,0,1,0.427451014518738,0,0,1,0.980392217636108,0,0,1,0.627451002597809,0,0,1,0.427451014518738,0,0,1,0.317647069692612,0,0,1,0.356862753629684,0,0,1,0.627451002597809,0,0,1,0.466666698455811,0,0,1,0.427451014518738,0,0,1,0.317647069692612,0,0,1,0.427451014518738,0,0,1,0.466666698455811,0,0,1,0.317647069692612,0,0,1,0.466666698455811,0,0,1,0.298039227724075,0,0,1,0.627451002597809,0,0,1,0.788235366344452,0,0,1,0.466666698455811,0,0,1,0.298039227724075,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.466666698455811,0,0,1,0.788235366344452,0,0,1,0.454901993274689,0,0,1,0.454901993274689,0,0,1,0.788235366344452,0,0,1,0.796078503131866,0,0,1,0.980392217636108,0,0,1,1,0,0,1,0.627451002597809,0,0,1,0.427451014518738,0,0,1,0.980392217636108,0,0,1,0.627451002597809,0,0,1,0.427451014518738,0,0,1,0.317647069692612,0,0,1,0.356862753629684,0,0,1,0.627451002597809,0,0,1,0.466666698455811,0,0,1,0.427451014518738,0,0,1,0.317647069692612,0,0,1,0.427451014518738,0,0,1,0.466666698455811,0,0,1,0.317647069692612,0,0,1,0.466666698455811,0,0,1,0.298039227724075,0,0,1,0.627451002597809,0,0,1,0.788235366344452,0,0,1,0.466666698455811,0,0,1,0.298039227724075,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.466666698455811,0,0,1,0.788235366344452,0,0,1,0.454901993274689,0,0,1,0.454901993274689,0,0,1,0.788235366344452,0,0,1,0.796078503131866,0,0,1,0.980392217636108,0,0,1,1,0,0,1,0.627451002597809,0,0,1,0.427451014518738,0,0,1,0.980392217636108,
- 0,0,1,0.627451002597809,0,0,1,0.427451014518738,0,0,1,0.317647069692612,0,0,1,0.356862753629684,0,0,1,0.627451002597809,0,0,1,0.466666698455811,0,0,1,0.427451014518738,0,0,1,0.317647069692612,0,0,1,0.427451014518738,0,0,1,0.466666698455811,0,0,1,0.317647069692612,0,0,1,0.466666698455811,0,0,1,0.298039227724075,0,0,1,0.627451002597809,0,0,1,0.788235366344452,0,0,1,0.466666698455811,0,0,1,0.298039227724075,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.466666698455811,0,0,1,0.788235366344452,0,0,1,0.454901993274689,0,0,1,0.454901993274689,0,0,1,0.788235366344452,0,0,1,0.796078503131866,0,0,1,1,0,0,1,1,0,0,1,0.811764776706696,0,0,1,0.313725501298904,0,0,1,1,0,0,1,0.811764776706696,0,0,1,0.454901993274689,0,0,1,1,0,0,1,0.313725501298904,0,0,1,0.313725501298904,0,0,1,0.811764776706696,0,0,1,0.0156862754374743,0,0,1,0.454901993274689,0,0,1,0.313725501298904,0,0,1,0.00784313771873713,0,0,1,0.00784313771873713,0,0,1,0.313725501298904,0,0,1,0.0156862754374743,0,0,1,0.454901993274689,0,0,1,0.65490198135376,0,0,1,1,0,0,1,0.454901993274689,0,0,1,1,0,0,1,0.588235318660736,0,0,1,0.486274540424347,0,0,1,0.454901993274689,0,0,1,0.588235318660736,0,0,1,1,0,0,1,1,0,0,1,0.588235318660736,0,0,1,0.486274540424347,0,0,1,0.588235318660736,0,0,1,0.811764776706696,0,0,1,0.588235318660736,0,0,1,1,0,0,1,0.811764776706696,0,0,1,1,0,0,1,1,0,0,1,0.811764776706696,0,0,1,0.313725501298904,0,0,1,1,0,0,1,0.811764776706696,0,0,1,0.454901993274689,0,0,1,1,0,0,1,0.313725501298904,0,0,1,0.313725501298904,0,0,1,0.811764776706696,0,0,1,0.0156862754374743,0,0,1,0.454901993274689,0,0,1,0.313725501298904,0,0,1,0.00784313771873713,0,0,1,0.00784313771873713,0,0,1,0.313725501298904,0,0,1,0.0156862754374743,0,0,1,0.454901993274689,0,0,1,0.65490198135376,0,0,1,1,0,0,1,0.454901993274689,0,0,1,1,0,0,1,0.588235318660736,0,0,1,0.486274540424347,0,0,1,0.454901993274689,0,0,1,0.588235318660736,0,0,1,1,0,0,1,1,0,0,1,0.588235318660736,0,0,1,0.486274540424347,0,0,1,0.588235318660736,0,0,1,0.811764776706696,0,0,1,0.588235318660736,0,0,1,1,0,0,1,0.811764776706696,
- 0,0,1,1,0,0,1,1,0,0,1,0.811764776706696,0,0,1,0.313725501298904,0,0,1,1,0,0,1,0.811764776706696,0,0,1,0.454901993274689,0,0,1,1,0,0,1,0.313725501298904,0,0,1,0.313725501298904,0,0,1,0.811764776706696,0,0,1,0.0156862754374743,0,0,1,0.454901993274689,0,0,1,0.313725501298904,0,0,1,0.00784313771873713,0,0,1,0.00784313771873713,0,0,1,0.313725501298904,0,0,1,0.0156862754374743,0,0,1,0.454901993274689,0,0,1,0.65490198135376,0,0,1,1,0,0,1,0.454901993274689,0,0,1,1,0,0,1,0.588235318660736,0,0,1,0.486274540424347,0,0,1,0.454901993274689,0,0,1,0.588235318660736,0,0,1,1,0,0,1,1,0,0,1,0.588235318660736,0,0,1,0.486274540424347,0,0,1,0.588235318660736,0,0,1,0.811764776706696,0,0,1,0.588235318660736,0,0,1,1,0,0,1,0.811764776706696,0,0,1,1,0,0,1,1,0,0,1,0.811764776706696,0,0,1,0.313725501298904,0,0,1,1,0,0,1,0.811764776706696,0,0,1,0.454901993274689,0,0,1,1,0,0,1,0.313725501298904,0,0,1,0.313725501298904,0,0,1,0.811764776706696,0,0,1,0.0156862754374743,0,0,1,0.454901993274689,0,0,1,0.313725501298904,0,0,1,0.00784313771873713,0,0,1,0.00784313771873713,0,0,1,0.313725501298904,0,0,1,0.0156862754374743,0,0,1,0.454901993274689,0,0,1,0.65490198135376,0,0,1,1,0,0,1,0.454901993274689,0,0,1,1,0,0,1,0.588235318660736,0,0,1,0.486274540424347,0,0,1,0.454901993274689,0,0,1,0.588235318660736,0,0,1,1,0,0,1,1,0,0,1,0.588235318660736,0,0,1,0.486274540424347,0,0,1,0.588235318660736,0,0,1,0.811764776706696,0,0,1,0.588235318660736,0,0,1,1,0,0,1,0.811764776706696,0,0,1,1,0,0,1,1,0,0,1,0.811764776706696,0,0,1,0.313725501298904,0,0,1,1,0,0,1,0.811764776706696,0,0,1,0.454901993274689,0,0,1,1,0,0,1,0.313725501298904,0,0,1,0.313725501298904,0,0,1,0.811764776706696,0,0,1,0.0156862754374743,0,0,1,0.454901993274689,0,0,1,0.313725501298904,0,0,1,0.00784313771873713,0,0,1,0.00784313771873713,0,0,1,0.313725501298904,0,0,1,0.0156862754374743,0,0,1,0.454901993274689,0,0,1,0.65490198135376,0,0,1,1,0,0,1,0.454901993274689,0,0,1,1,0,0,1,0.588235318660736,0,0,1,0.486274540424347,0,0,1,0.454901993274689,0,0,1,0.588235318660736,0,0,1,1,0,0,1,1,0,0,1,0.588235318660736,0,
- 0,1,0.486274540424347,0,0,1,0.588235318660736,0,0,1,0.811764776706696,0,0,1,0.588235318660736,0,0,1,1,0,0,1,0.811764776706696,0,0,1,0.701960802078247,0,0,1,0.980392217636108,0,0,1,1,0,0,1,0.427451014518738,0,0,1,0.980392217636108,0,0,1,0.701960802078247,0,0,1,1,0,0,1,0.701960802078247,0,0,1,1,0,0,1,0.701960802078247,0,0,1,0.466666698455811,0,0,1,0.427451014518738,0,0,1,1,0,0,1,0.466666698455811,0,0,1,0.701960802078247,0,0,1,0,0,0,1,0.427451014518738,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.466666698455811,0,0,1,1,0,0,1,0,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.454901993274689,0,0,1,0.313725501298904,0,0,1,0.00784313771873713,0,0,1,0.454901993274689,0,0,1,1,0,0,1,0.313725501298904,0,0,1,0.00784313771873713,0,0,1,0.313725501298904,0,0,1,0.0156862754374743,0,0,1,0.313725501298904,0,0,1,1,0,0,1,0.5686274766922,0,0,1,0.313725501298904,0,0,1,0.5686274766922,0,0,1,0.0156862754374743,0,0,1,1,0,0,1,1,0,0,1,0.5686274766922,0,0,1,0.811764776706696,0,0,1,0.0156862754374743,0,0,1,0.5686274766922,0,0,1,0.5686274766922,0,0,1,1,0,0,1,0.811764776706696,0,0,1,0.454901993274689,0,0,1,0.313725501298904,0,0,1,0.00784313771873713,0,0,1,0.454901993274689,0,0,1,1,0,0,1,0.313725501298904,0,0,1,0.00784313771873713,0,0,1,0.313725501298904,0,0,1,0.0156862754374743,0,0,1,0.313725501298904,0,0,1,1,0,0,1,0.5686274766922,0,0,1,0.5686274766922,0,0,1,0.0156862754374743,0,0,1,0.313725501298904,0,0,1,1,0,0,1,1,0,0,1,0.5686274766922,0,0,1,0.811764776706696,0,0,1,0.0156862754374743,0,0,1,0.5686274766922,0,0,1,0.5686274766922,0,0,1,1,0,0,1,0.811764776706696,0,0,1,0.701960802078247,0,0,1,0.980392217636108,0,0,1,1,0,0,1,0.427451014518738,0,0,1,0.980392217636108,0,0,1,0.701960802078247,0,0,1,1,0,0,1,0.701960802078247,0,0,1,1,0,0,1,0.701960802078247,0,0,1,0.466666698455811,0,0,1,0.427451014518738,0,0,1,1,0,0,1,0.466666698455811,0,0,1,0.701960802078247,0,0,1,0,0,0,1,0.427451014518738,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.466666698455811,0,0,1,1,0,0,1,0,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.701960802078247,
- 0,0,1,0.980392217636108,0,0,1,1,0,0,1,0.360784322023392,0,0,1,0.980392217636108,0,0,1,0.701960802078247,0,0,1,0,0,0,1,0.701960802078247,0,0,1,1,0,0,1,0.701960802078247,0,0,1,0.466666698455811,0,0,1,0.360784322023392,0,0,1,0,0,0,1,0.466666698455811,0,0,1,0.701960802078247,0,0,1,0.274509817361832,0,0,1,0.360784322023392,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.466666698455811,0,0,1,0,0,0,1,0.274509817361832,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.454901993274689,0,0,1,0.00784313771873713,0,0,1,0.313725501298904,0,0,1,0.454901993274689,0,0,1,0.313725501298904,0,0,1,1,0,0,1,0.00784313771873713,0,0,1,0.0156862754374743,0,0,1,0.313725501298904,0,0,1,0.313725501298904,0,0,1,0.647058844566345,0,0,1,1,0,0,1,0.313725501298904,0,0,1,0.0156862754374743,0,0,1,0.647058844566345,0,0,1,1,0,0,1,0.647058844566345,0,0,1,1,0,0,1,0.0156862754374743,0,0,1,0.811764776706696,0,0,1,0.647058844566345,0,0,1,0.647058844566345,0,0,1,0.811764776706696,0,0,1,1,0,0,1,0.701960802078247,0,0,1,0.980392217636108,0,0,1,1,0,0,1,0.427451014518738,0,0,1,0.980392217636108,0,0,1,0.701960802078247,0,0,1,1,0,0,1,0.701960802078247,0,0,1,1,0,0,1,0.701960802078247,0,0,1,0.466666698455811,0,0,1,0.427451014518738,0,0,1,1,0,0,1,0.466666698455811,0,0,1,0.701960802078247,0,0,1,0,0,0,1,0.427451014518738,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.466666698455811,0,0,1,1,0,0,1,0,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.454901993274689,0,0,1,0.313725501298904,0,0,1,0.00784313771873713,0,0,1,0.454901993274689,0,0,1,1,0,0,1,0.313725501298904,0,0,1,0.00784313771873713,0,0,1,0.313725501298904,0,0,1,0.0156862754374743,0,0,1,0.313725501298904,0,0,1,1,0,0,1,0.5686274766922,0,0,1,0.313725501298904,0,0,1,0.5686274766922,0,0,1,0.0156862754374743,0,0,1,1,0,0,1,1,0,0,1,0.5686274766922,0,0,1,0.811764776706696,0,0,1,0.0156862754374743,0,0,1,0.5686274766922,0,0,1,0.5686274766922,0,0,1,1,0,0,1,0.811764776706696,0,0,1,0.454901993274689,0,0,1,0.313725501298904,0,0,1,0.00784313771873713,0,0,1,0.454901993274689,0,0,1,1,0,0,1,0.313725501298904,
- 0,0,1,0.00784313771873713,0,0,1,0.313725501298904,0,0,1,0.0156862754374743,0,0,1,0.313725501298904,0,0,1,1,0,0,1,0.5686274766922,0,0,1,0.5686274766922,0,0,1,0.0156862754374743,0,0,1,0.313725501298904,0,0,1,1,0,0,1,1,0,0,1,0.5686274766922,0,0,1,0.811764776706696,0,0,1,0.0156862754374743,0,0,1,0.5686274766922,0,0,1,0.5686274766922,0,0,1,1,0,0,1,0.811764776706696,0,0,1,0.701960802078247,0,0,1,0.980392217636108,0,0,1,1,0,0,1,0.427451014518738,0,0,1,0.980392217636108,0,0,1,0.701960802078247,0,0,1,1,0,0,1,0.701960802078247,0,0,1,1,0,0,1,0.701960802078247,0,0,1,0.466666698455811,0,0,1,0.427451014518738,0,0,1,1,0,0,1,0.466666698455811,0,0,1,0.701960802078247,0,0,1,0,0,0,1,0.427451014518738,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.466666698455811,0,0,1,1,0,0,1,0,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.701960802078247,0,0,1,0.980392217636108,0,0,1,1,0,0,1,0.360784322023392,0,0,1,0.980392217636108,0,0,1,0.701960802078247,0,0,1,0,0,0,1,0.701960802078247,0,0,1,1,0,0,1,0.701960802078247,0,0,1,0.466666698455811,0,0,1,0.360784322023392,0,0,1,0,0,0,1,0.466666698455811,0,0,1,0.701960802078247,0,0,1,0.274509817361832,0,0,1,0.360784322023392,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.466666698455811,0,0,1,0,0,0,1,0.274509817361832,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.701960802078247,0,0,1,0.980392217636108,0,0,1,1,0,0,1,0.427451014518738,0,0,1,0.980392217636108,0,0,1,0.701960802078247,0,0,1,1,0,0,1,0.701960802078247,0,0,1,1,0,0,1,0.701960802078247,0,0,1,0.466666698455811,0,0,1,0.427451014518738,0,0,1,1,0,0,1,0.466666698455811,0,0,1,0.701960802078247,0,0,1,0,0,0,1,0.427451014518738,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.466666698455811,0,0,1,1,0,0,1,0,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.454901993274689,0,0,1,0.313725501298904,0,0,1,0.00784313771873713,0,0,1,0.454901993274689,0,0,1,1,0,0,1,0.313725501298904,0,0,1,0.00784313771873713,0,0,1,0.313725501298904,0,0,1,0.0156862754374743,0,0,1,0.313725501298904,0,0,1,1,0,0,1,0.5686274766922,0,0,
- 1,0.313725501298904,0,0,1,0.5686274766922,0,0,1,0.0156862754374743,0,0,1,1,0,0,1,1,0,0,1,0.5686274766922,0,0,1,0.811764776706696,0,0,1,0.0156862754374743,0,0,1,0.5686274766922,0,0,1,0.5686274766922,0,0,1,1,0,0,1,0.811764776706696,0,0,1,0.454901993274689,0,0,1,0.313725501298904,0,0,1,0.00784313771873713,0,0,1,0.454901993274689,0,0,1,1,0,0,1,0.313725501298904,0,0,1,0.00784313771873713,0,0,1,0.313725501298904,0,0,1,0.0156862754374743,0,0,1,0.313725501298904,0,0,1,1,0,0,1,0.5686274766922,0,0,1,0.5686274766922,0,0,1,0.0156862754374743,0,0,1,0.313725501298904,0,0,1,1,0,0,1,1,0,0,1,0.5686274766922,0,0,1,0.811764776706696,0,0,1,0.0156862754374743,0,0,1,0.5686274766922,0,0,1,0.5686274766922,0,0,1,1,0,0,1,0.811764776706696,0,0,1,0.701960802078247,0,0,1,0.980392217636108,0,0,1,1,0,0,1,0.427451014518738,0,0,1,0.980392217636108,0,0,1,0.701960802078247,0,0,1,1,0,0,1,0.701960802078247,0,0,1,1,0,0,1,0.701960802078247,0,0,1,0.466666698455811,0,0,1,0.427451014518738,0,0,1,1,0,0,1,0.466666698455811,0,0,1,0.701960802078247,0,0,1,0,0,0,1,0.427451014518738,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.466666698455811,0,0,1,1,0,0,1,0,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.701960802078247,0,0,1,0.980392217636108,0,0,1,1,0,0,1,0.360784322023392,0,0,1,0.980392217636108,0,0,1,0.701960802078247,0,0,1,0,0,0,1,0.701960802078247,0,0,1,1,0,0,1,0.701960802078247,0,0,1,0.466666698455811,0,0,1,0.360784322023392,0,0,1,0,0,0,1,0.466666698455811,0,0,1,0.701960802078247,0,0,1,0.274509817361832,0,0,1,0.360784322023392,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.466666698455811,0,0,1,0,0,0,1,0.274509817361832,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.701960802078247,0,0,1,0.980392217636108,0,0,1,1,0,0,1,0.427451014518738,0,0,1,0.980392217636108,0,0,1,0.701960802078247,0,0,1,1,0,0,1,0.701960802078247,0,0,1,1,0,0,1,0.701960802078247,0,0,1,0.466666698455811,0,0,1,0.427451014518738,0,0,1,1,0,0,1,0.466666698455811,0,0,1,0.701960802078247,0,0,1,0,0,0,1,0.427451014518738,0,0,1,0.466666698455811,0,0,1,0.454901993274689,
- 0,0,1,0.466666698455811,0,0,1,1,0,0,1,0,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.454901993274689,0,0,1,0.313725501298904,0,0,1,0.00784313771873713,0,0,1,0.454901993274689,0,0,1,1,0,0,1,0.313725501298904,0,0,1,0.00784313771873713,0,0,1,0.313725501298904,0,0,1,0.0156862754374743,0,0,1,0.313725501298904,0,0,1,1,0,0,1,0.5686274766922,0,0,1,0.313725501298904,0,0,1,0.5686274766922,0,0,1,0.0156862754374743,0,0,1,1,0,0,1,1,0,0,1,0.5686274766922,0,0,1,0.811764776706696,0,0,1,0.0156862754374743,0,0,1,0.5686274766922,0,0,1,0.5686274766922,0,0,1,1,0,0,1,0.811764776706696,0,0,1,0.454901993274689,0,0,1,0.313725501298904,0,0,1,0.00784313771873713,0,0,1,0.454901993274689,0,0,1,1,0,0,1,0.313725501298904,0,0,1,0.00784313771873713,0,0,1,0.313725501298904,0,0,1,0.0156862754374743,0,0,1,0.313725501298904,0,0,1,1,0,0,1,0.5686274766922,0,0,1,0.5686274766922,0,0,1,0.0156862754374743,0,0,1,0.313725501298904,0,0,1,1,0,0,1,1,0,0,1,0.5686274766922,0,0,1,0.811764776706696,0,0,1,0.0156862754374743,0,0,1,0.5686274766922,0,0,1,0.5686274766922,0,0,1,1,0,0,1,0.811764776706696,0,0,1,0.701960802078247,0,0,1,0.980392217636108,0,0,1,1,0,0,1,0.427451014518738,0,0,1,0.980392217636108,0,0,1,0.701960802078247,0,0,1,1,0,0,1,0.701960802078247,0,0,1,1,0,0,1,0.701960802078247,0,0,1,0.466666698455811,0,0,1,0.427451014518738,0,0,1,1,0,0,1,0.466666698455811,0,0,1,0.701960802078247,0,0,1,0,0,0,1,0.427451014518738,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.466666698455811,0,0,1,1,0,0,1,0,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.701960802078247,0,0,1,0.980392217636108,0,0,1,1,0,0,1,0.360784322023392,0,0,1,0.980392217636108,0,0,1,0.701960802078247,0,0,1,0,0,0,1,0.701960802078247,0,0,1,1,0,0,1,0.701960802078247,0,0,1,0.466666698455811,0,0,1,0.360784322023392,0,0,1,0,0,0,1,0.466666698455811,0,0,1,0.701960802078247,0,0,1,0.274509817361832,0,0,1,0.360784322023392,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.466666698455811,0,0,1,0,0,0,1,0.274509817361832,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.701960802078247,
- 0,0,1,0.980392217636108,0,0,1,1,0,0,1,0.427451014518738,0,0,1,0.980392217636108,0,0,1,0.701960802078247,0,0,1,1,0,0,1,0.701960802078247,0,0,1,1,0,0,1,0.701960802078247,0,0,1,0.466666698455811,0,0,1,0.427451014518738,0,0,1,1,0,0,1,0.466666698455811,0,0,1,0.701960802078247,0,0,1,0,0,0,1,0.427451014518738,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.466666698455811,0,0,1,1,0,0,1,0,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.454901993274689,0,0,1,0.313725501298904,0,0,1,0.00784313771873713,0,0,1,0.454901993274689,0,0,1,1,0,0,1,0.313725501298904,0,0,1,0.00784313771873713,0,0,1,0.313725501298904,0,0,1,0.0156862754374743,0,0,1,0.313725501298904,0,0,1,1,0,0,1,0.5686274766922,0,0,1,0.313725501298904,0,0,1,0.5686274766922,0,0,1,0.0156862754374743,0,0,1,1,0,0,1,1,0,0,1,0.5686274766922,0,0,1,0.811764776706696,0,0,1,0.0156862754374743,0,0,1,0.5686274766922,0,0,1,0.5686274766922,0,0,1,1,0,0,1,0.811764776706696,0,0,1,0.454901993274689,0,0,1,0.313725501298904,0,0,1,0.00784313771873713,0,0,1,0.454901993274689,0,0,1,1,0,0,1,0.313725501298904,0,0,1,0.00784313771873713,0,0,1,0.313725501298904,0,0,1,0.0156862754374743,0,0,1,0.313725501298904,0,0,1,1,0,0,1,0.5686274766922,0,0,1,0.5686274766922,0,0,1,0.0156862754374743,0,0,1,0.313725501298904,0,0,1,1,0,0,1,1,0,0,1,0.5686274766922,0,0,1,0.811764776706696,0,0,1,0.0156862754374743,0,0,1,0.5686274766922,0,0,1,0.5686274766922,0,0,1,1,0,0,1,0.811764776706696,0,0,1,0.701960802078247,0,0,1,0.980392217636108,0,0,1,1,0,0,1,0.427451014518738,0,0,1,0.980392217636108,0,0,1,0.701960802078247,0,0,1,1,0,0,1,0.701960802078247,0,0,1,1,0,0,1,0.701960802078247,0,0,1,0.466666698455811,0,0,1,0.427451014518738,0,0,1,1,0,0,1,0.466666698455811,0,0,1,0.701960802078247,0,0,1,0,0,0,1,0.427451014518738,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.466666698455811,0,0,1,1,0,0,1,0,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.701960802078247,0,0,1,0.980392217636108,0,0,1,1,0,0,1,0.360784322023392,0,0,1,0.980392217636108,0,0,1,0.701960802078247,0,0,1,0,0,0,1,0.701960802078247,
- 0,0,1,1,0,0,1,0.701960802078247,0,0,1,0.466666698455811,0,0,1,0.360784322023392,0,0,1,0,0,0,1,0.466666698455811,0,0,1,0.701960802078247,0,0,1,0.274509817361832,0,0,1,0.360784322023392,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.466666698455811,0,0,1,0,0,0,1,0.274509817361832,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.454901993274689,0,0,1,0.00784313771873713,0,0,1,0.313725501298904,0,0,1,0.454901993274689,0,0,1,0.313725501298904,0,0,1,1,0,0,1,0.00784313771873713,0,0,1,0.0156862754374743,0,0,1,0.313725501298904,0,0,1,0.313725501298904,0,0,1,0.647058844566345,0,0,1,1,0,0,1,0.313725501298904,0,0,1,0.0156862754374743,0,0,1,0.647058844566345,0,0,1,1,0,0,1,0.647058844566345,0,0,1,1,0,0,1,0.0156862754374743,0,0,1,0.811764776706696,0,0,1,0.647058844566345,0,0,1,0.647058844566345,0,0,1,0.811764776706696,0,0,1,1,0,0,1,0.454901993274689,0,0,1,0.00784313771873713,0,0,1,0.313725501298904,0,0,1,0.454901993274689,0,0,1,0.313725501298904,0,0,1,1,0,0,1,0.00784313771873713,0,0,1,0.0156862754374743,0,0,1,0.313725501298904,0,0,1,0.313725501298904,0,0,1,0.647058844566345,0,0,1,1,0,0,1,0.313725501298904,0,0,1,0.0156862754374743,0,0,1,0.647058844566345,0,0,1,1,0,0,1,0.647058844566345,0,0,1,1,0,0,1,0.0156862754374743,0,0,1,0.811764776706696,0,0,1,0.647058844566345,0,0,1,0.647058844566345,0,0,1,0.811764776706696,0,0,1,1,0,0,1,0.454901993274689,0,0,1,0.00784313771873713,0,0,1,0.313725501298904,0,0,1,0.454901993274689,0,0,1,0.313725501298904,0,0,1,1,0,0,1,0.00784313771873713,0,0,1,0.0156862754374743,0,0,1,0.313725501298904,0,0,1,0.313725501298904,0,0,1,0.647058844566345,0,0,1,1,0,0,1,0.313725501298904,0,0,1,0.0156862754374743,0,0,1,0.647058844566345,0,0,1,1,0,0,1,0.647058844566345,0,0,1,1,0,0,1,0.0156862754374743,0,0,1,0.811764776706696,0,0,1,0.647058844566345,0,0,1,0.647058844566345,0,0,1,0.811764776706696,0,0,1,1,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,
- 1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,
- 0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,
- 0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,
- 0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1
- }
- ColorIndex: *3009 {
- a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,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,259,260,261,262,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,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,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,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,
- 534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,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,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,
- 1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,
- 1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1855,1856,
- 1857,1858,1859,1860,1861,1862,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1924,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1946,1947,1948,1949,1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2129,2130,2131,2132,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144,2145,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2202,2203,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,2228,2229,2230,2231,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,2252,2253,2254,2255,2256,2257,2258,2259,2260,2261,2262,2263,2264,2265,2266,
- 2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,2303,2304,2305,2306,2307,2308,2309,2310,2311,2312,2313,2314,2315,2316,2317,2318,2319,2320,2321,2322,2323,2324,2325,2326,2327,2328,2329,2330,2331,2332,2333,2334,2335,2336,2337,2338,2339,2340,2341,2342,2343,2344,2345,2346,2347,2348,2349,2350,2351,2352,2353,2354,2355,2356,2357,2358,2359,2360,2361,2362,2363,2364,2365,2366,2367,2368,2369,2370,2371,2372,2373,2374,2375,2376,2377,2378,2379,2380,2381,2382,2383,2384,2385,2386,2387,2388,2389,2390,2391,2392,2393,2394,2395,2396,2397,2398,2399,2400,2401,2402,2403,2404,2405,2406,2407,2408,2409,2410,2411,2412,2413,2414,2415,2416,2417,2418,2419,2420,2421,2422,2423,2424,2425,2426,2427,2428,2429,2430,2431,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,2461,2462,2463,2464,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2477,2478,2479,2480,2481,2482,2483,2484,2485,2486,2487,2488,2489,2490,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,2503,2504,2505,2506,2507,2508,2509,2510,2511,2512,2513,2514,2515,2516,2517,2518,2519,2520,2521,2522,2523,2524,2525,2526,2527,2528,2529,2530,2531,2532,2533,2534,2535,2536,2537,2538,2539,2540,2541,2542,2543,2544,2545,2546,2547,2548,2549,2550,2551,2552,2553,2554,2555,2556,2557,2558,2559,2560,2561,2562,2563,2564,2565,2566,2567,2568,2569,2570,2571,2572,2573,2574,2575,2576,2577,2578,2579,2580,2581,2582,2583,2584,2585,2586,2587,2588,2589,2590,2591,2592,2593,2594,2595,2596,2597,2598,2599,2600,2601,2602,2603,2604,2605,2606,2607,2608,2609,2610,2611,2612,2613,2614,2615,2616,2617,2618,2619,2620,2621,2622,2623,2624,2625,2626,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2664,2665,2666,2667,2668,2669,2670,2671,2672,2673,2674,2675,2676,
- 2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2687,2688,2689,2690,2691,2692,2693,2694,2695,2696,2697,2698,2699,2700,2701,2702,2703,2704,2705,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2726,2727,2728,2729,2730,2731,2732,2733,2734,2735,2736,2737,2738,2739,2740,2741,2742,2743,2744,2745,2746,2747,2748,2749,2750,2751,2752,2753,2754,2755,2756,2757,2758,2759,2760,2761,2762,2763,2764,2765,2766,2767,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2780,2781,2782,2783,2784,2785,2786,2787,2788,2789,2790,2791,2792,2793,2794,2795,2796,2797,2798,2799,2800,2801,2802,2803,2804,2805,2806,2807,2808,2809,2810,2811,2812,2813,2814,2815,2816,2817,2818,2819,2820,2821,2822,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2834,2835,2836,2837,2838,2839,2840,2841,2842,2843,2844,2845,2846,2847,2848,2849,2850,2851,2852,2853,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2865,2866,2867,2868,2869,2870,2871,2872,2873,2874,2875,2876,2877,2878,2879,2880,2881,2882,2883,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,2898,2899,2900,2901,2902,2903,2904,2905,2906,2907,2908,2909,2910,2911,2912,2913,2914,2915,2916,2917,2918,2919,2920,2921,2922,2923,2924,2925,2926,2927,2928,2929,2930,2931,2932,2933,2934,2935,2936,2937,2938,2939,2940,2941,2942,2943,2944,2945,2946,2947,2948,2949,2950,2951,2952,2953,2954,2955,2956,2957,2958,2959,2960,2961,2962,2963,2964,2965,2966,2967,2968,2969,2970,2971,2972,2973,2974,2975,2976,2977,2978,2979,2980,2981,2982,2983,2984,2985,2986,2987,2988,2989,2990,2991,2992,2993,2994,2995,2996,2997,2998,2999,3000,3001,3002,3003,3004,3005,3006,3007,3008
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "UVmap_0"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *5498 {
- a: 0.456787109375,1.2685546875,0.48779296875,1.4208984375,0.3388671875,1.479248046875,0.5556640625,1.3642578125,0.362060546875,1.55029296875,0.62646484375,1.556640625,0.56201171875,1.61083984375,0.703125,1.822265625,0.439453125,1.587890625,0.323486328125,1.6220703125,0.2261962890625,1.57421875,0.335205078125,1.75732421875,0.40283203125,1.7978515625,0.354248046875,1.99658203125,0.51123046875,1.845703125,0.60888671875,1.83447265625,0.52197265625,2.140625,0.63330078125,2.0791015625,0.72412109375,2.0986328125,0.5634765625,2.2421875,0.63916015625,2.3095703125,0.45361328125,2.3583984375,0.456787109375,2.2734375,0.38232421875,2.25,0.31298828125,2.3203125,0.384033203125,2.0517578125,0.32421875,2.1806640625,0.2496337890625,2.15625,0.29931640625,3.306640625,0.44091796875,3.484375,0.197998046875,3.466796875,0.1336669921875,3.125,0.450439453125,3.40625,0.71826171875,3.302734375,0.25390625,3.091796875,0.27197265625,2.7548828125,0.6533203125,3.1953125,0.8359375,2.990234375,0.52099609375,3.05859375,0.76806640625,2.974609375,0.71630859375,2.744140625,0.3603515625,2.7890625,0.61376953125,2.78125,0.343505859375,2.5009765625,0.2861328125,2.4365234375,0.51123046875,2.6357421875,0.3857421875,2.4033203125,0.349609375,2.19140625,0.51123046875,2.330078125,0.60302734375,2.5498046875,0.759765625,2.4716796875,0.51953125,2.44140625,0.308349609375,0.41259765625,0.1204833984375,0.4755859375,0.09381103515625,0.29736328125,0.159912109375,0.19921875,0.10272216796875,0.158203125,0.1572265625,0.169921875,0.08441162109375,0.224609375,0.060699462890625,0.1474609375,0.053436279296875,0.36767578125,0.0181427001953125,0.2177734375,0.015899658203125,0.36962890625,0.210693359375,0.888916015625,0.06622314453125,0.986373901367188,0.0099639892578125,0.8890380859375,0.1357421875,0.624755859375,0.22119140625,0.658203125,0.07513427734375,0.50732421875,0.1429443359375,0.4970703125,0.13330078125,0.69091796875,0.2130126953125,0.7431640625,0.0787353515625,0.787109375,0.036407470703125,0.731689453125,0.12298583984375,0.3310546875,0.30712890625,0.41259765625,
- 0.158203125,0.46484375,0.1585693359375,0.19921875,0.0130844116210938,0.4755859375,0.08319091796875,0.224609375,0.1416015625,0.01220703125,0.0168914794921875,0.2177734375,0.07000732421875,0.7755126953125,0.155029296875,0.17236328125,0.067626953125,0.1376953125,0.2225341796875,0.658203125,0.144287109375,0.4970703125,0.136962890625,0.624755859375,0.2119140625,0.888916015625,0.076416015625,0.50732421875,0.09625244140625,0.8033447265625,0.0675048828125,0.986373901367188,0.0112228393554688,0.8890380859375,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.43359375,0.3388671875,1.0009765625,0.39404296875,0.638671875,0.0107421875,0.96630859375,0.00244140625,0.456787109375,1.2685546875,0.48779296875,1.4208984375,0.3388671875,1.479248046875,0.5556640625,1.3642578125,0.48779296875,1.4208984375,0.456787109375,1.2685546875,0.48779296875,1.4208984375,0.362060546875,1.55029296875,0.3388671875,1.479248046875,0.5556640625,1.3642578125,0.62646484375,1.556640625,0.48779296875,1.4208984375,0.56201171875,1.61083984375,0.48779296875,1.4208984375,0.62646484375,1.556640625,0.62646484375,1.556640625,0.703125,1.822265625,0.56201171875,1.61083984375,0.362060546875,1.55029296875,0.48779296875,1.4208984375,0.439453125,1.587890625,0.56201171875,1.61083984375,0.439453125,1.587890625,0.48779296875,1.4208984375,0.439453125,1.587890625,0.323486328125,1.6220703125,0.362060546875,1.55029296875,0.2261962890625,1.57421875,0.362060546875,1.55029296875,0.323486328125,1.6220703125,0.323486328125,1.6220703125,0.335205078125,1.75732421875,0.2261962890625,1.57421875,0.335205078125,1.75732421875,0.323486328125,1.6220703125,0.40283203125,1.7978515625,0.323486328125,1.6220703125,0.439453125,1.587890625,0.40283203125,1.7978515625,0.40283203125,1.7978515625,0.354248046875,1.99658203125,0.335205078125,1.75732421875,0.56201171875,1.61083984375,0.51123046875,1.845703125,0.439453125,1.587890625,0.40283203125,1.7978515625,0.439453125,1.587890625,0.51123046875,1.845703125,0.60888671875,1.83447265625,0.51123046875,1.845703125,0.56201171875,
- 1.61083984375,0.60888671875,1.83447265625,0.56201171875,1.61083984375,0.703125,1.822265625,0.51123046875,1.845703125,0.52197265625,2.140625,0.40283203125,1.7978515625,0.51123046875,1.845703125,0.60888671875,1.83447265625,0.52197265625,2.140625,0.703125,1.822265625,0.63330078125,2.0791015625,0.60888671875,1.83447265625,0.52197265625,2.140625,0.60888671875,1.83447265625,0.63330078125,2.0791015625,0.63330078125,2.0791015625,0.703125,1.822265625,0.72412109375,2.0986328125,0.72412109375,2.0986328125,0.5634765625,2.2421875,0.63330078125,2.0791015625,0.5634765625,2.2421875,0.52197265625,2.140625,0.63330078125,2.0791015625,0.5634765625,2.2421875,0.72412109375,2.0986328125,0.63916015625,2.3095703125,0.63916015625,2.3095703125,0.45361328125,2.3583984375,0.5634765625,2.2421875,0.456787109375,2.2734375,0.52197265625,2.140625,0.5634765625,2.2421875,0.45361328125,2.3583984375,0.456787109375,2.2734375,0.5634765625,2.2421875,0.45361328125,2.3583984375,0.38232421875,2.25,0.456787109375,2.2734375,0.38232421875,2.25,0.52197265625,2.140625,0.456787109375,2.2734375,0.38232421875,2.25,0.45361328125,2.3583984375,0.31298828125,2.3203125,0.40283203125,1.7978515625,0.52197265625,2.140625,0.384033203125,2.0517578125,0.38232421875,2.25,0.384033203125,2.0517578125,0.52197265625,2.140625,0.354248046875,1.99658203125,0.40283203125,1.7978515625,0.384033203125,2.0517578125,0.31298828125,2.3203125,0.32421875,2.1806640625,0.38232421875,2.25,0.384033203125,2.0517578125,0.38232421875,2.25,0.32421875,2.1806640625,0.384033203125,2.0517578125,0.32421875,2.1806640625,0.354248046875,1.99658203125,0.32421875,2.1806640625,0.31298828125,2.3203125,0.2496337890625,2.15625,0.2496337890625,2.15625,0.354248046875,1.99658203125,0.32421875,2.1806640625,0.456787109375,1.2685546875,0.48779296875,1.4208984375,0.3388671875,1.479248046875,0.5556640625,1.3642578125,0.48779296875,1.4208984375,0.456787109375,1.2685546875,0.48779296875,1.4208984375,0.362060546875,1.55029296875,0.3388671875,1.479248046875,0.5556640625,1.3642578125,0.62646484375,1.556640625,0.48779296875,1.4208984375,
- 0.56201171875,1.61083984375,0.48779296875,1.4208984375,0.62646484375,1.556640625,0.62646484375,1.556640625,0.703125,1.822265625,0.56201171875,1.61083984375,0.362060546875,1.55029296875,0.48779296875,1.4208984375,0.439453125,1.587890625,0.56201171875,1.61083984375,0.439453125,1.587890625,0.48779296875,1.4208984375,0.439453125,1.587890625,0.323486328125,1.6220703125,0.362060546875,1.55029296875,0.2261962890625,1.57421875,0.362060546875,1.55029296875,0.323486328125,1.6220703125,0.323486328125,1.6220703125,0.335205078125,1.75732421875,0.2261962890625,1.57421875,0.335205078125,1.75732421875,0.323486328125,1.6220703125,0.40283203125,1.7978515625,0.323486328125,1.6220703125,0.439453125,1.587890625,0.40283203125,1.7978515625,0.40283203125,1.7978515625,0.354248046875,1.99658203125,0.335205078125,1.75732421875,0.56201171875,1.61083984375,0.51123046875,1.845703125,0.439453125,1.587890625,0.40283203125,1.7978515625,0.439453125,1.587890625,0.51123046875,1.845703125,0.60888671875,1.83447265625,0.51123046875,1.845703125,0.56201171875,1.61083984375,0.60888671875,1.83447265625,0.56201171875,1.61083984375,0.703125,1.822265625,0.51123046875,1.845703125,0.52197265625,2.140625,0.40283203125,1.7978515625,0.51123046875,1.845703125,0.60888671875,1.83447265625,0.52197265625,2.140625,0.703125,1.822265625,0.63330078125,2.0791015625,0.60888671875,1.83447265625,0.52197265625,2.140625,0.60888671875,1.83447265625,0.63330078125,2.0791015625,0.63330078125,2.0791015625,0.703125,1.822265625,0.72412109375,2.0986328125,0.72412109375,2.0986328125,0.5634765625,2.2421875,0.63330078125,2.0791015625,0.5634765625,2.2421875,0.52197265625,2.140625,0.63330078125,2.0791015625,0.5634765625,2.2421875,0.72412109375,2.0986328125,0.63916015625,2.3095703125,0.63916015625,2.3095703125,0.45361328125,2.3583984375,0.5634765625,2.2421875,0.456787109375,2.2734375,0.52197265625,2.140625,0.5634765625,2.2421875,0.45361328125,2.3583984375,0.456787109375,2.2734375,0.5634765625,2.2421875,0.45361328125,2.3583984375,0.38232421875,2.25,0.456787109375,2.2734375,0.38232421875,2.25,0.52197265625,
- 2.140625,0.456787109375,2.2734375,0.38232421875,2.25,0.45361328125,2.3583984375,0.31298828125,2.3203125,0.40283203125,1.7978515625,0.52197265625,2.140625,0.384033203125,2.0517578125,0.38232421875,2.25,0.384033203125,2.0517578125,0.52197265625,2.140625,0.354248046875,1.99658203125,0.40283203125,1.7978515625,0.384033203125,2.0517578125,0.31298828125,2.3203125,0.32421875,2.1806640625,0.38232421875,2.25,0.384033203125,2.0517578125,0.38232421875,2.25,0.32421875,2.1806640625,0.384033203125,2.0517578125,0.32421875,2.1806640625,0.354248046875,1.99658203125,0.32421875,2.1806640625,0.31298828125,2.3203125,0.2496337890625,2.15625,0.2496337890625,2.15625,0.354248046875,1.99658203125,0.32421875,2.1806640625,0.456787109375,1.2685546875,0.48779296875,1.4208984375,0.3388671875,1.479248046875,0.5556640625,1.3642578125,0.48779296875,1.4208984375,0.456787109375,1.2685546875,0.48779296875,1.4208984375,0.362060546875,1.55029296875,0.3388671875,1.479248046875,0.5556640625,1.3642578125,0.62646484375,1.556640625,0.48779296875,1.4208984375,0.56201171875,1.61083984375,0.48779296875,1.4208984375,0.62646484375,1.556640625,0.62646484375,1.556640625,0.703125,1.822265625,0.56201171875,1.61083984375,0.362060546875,1.55029296875,0.48779296875,1.4208984375,0.439453125,1.587890625,0.56201171875,1.61083984375,0.439453125,1.587890625,0.48779296875,1.4208984375,0.439453125,1.587890625,0.323486328125,1.6220703125,0.362060546875,1.55029296875,0.2261962890625,1.57421875,0.362060546875,1.55029296875,0.323486328125,1.6220703125,0.323486328125,1.6220703125,0.335205078125,1.75732421875,0.2261962890625,1.57421875,0.335205078125,1.75732421875,0.323486328125,1.6220703125,0.40283203125,1.7978515625,0.323486328125,1.6220703125,0.439453125,1.587890625,0.40283203125,1.7978515625,0.40283203125,1.7978515625,0.354248046875,1.99658203125,0.335205078125,1.75732421875,0.56201171875,1.61083984375,0.51123046875,1.845703125,0.439453125,1.587890625,0.40283203125,1.7978515625,0.439453125,1.587890625,0.51123046875,1.845703125,0.60888671875,1.83447265625,0.51123046875,1.845703125,
- 0.56201171875,1.61083984375,0.60888671875,1.83447265625,0.56201171875,1.61083984375,0.703125,1.822265625,0.51123046875,1.845703125,0.52197265625,2.140625,0.40283203125,1.7978515625,0.51123046875,1.845703125,0.60888671875,1.83447265625,0.52197265625,2.140625,0.703125,1.822265625,0.63330078125,2.0791015625,0.60888671875,1.83447265625,0.52197265625,2.140625,0.60888671875,1.83447265625,0.63330078125,2.0791015625,0.63330078125,2.0791015625,0.703125,1.822265625,0.72412109375,2.0986328125,0.72412109375,2.0986328125,0.5634765625,2.2421875,0.63330078125,2.0791015625,0.5634765625,2.2421875,0.52197265625,2.140625,0.63330078125,2.0791015625,0.5634765625,2.2421875,0.72412109375,2.0986328125,0.63916015625,2.3095703125,0.63916015625,2.3095703125,0.45361328125,2.3583984375,0.5634765625,2.2421875,0.456787109375,2.2734375,0.52197265625,2.140625,0.5634765625,2.2421875,0.45361328125,2.3583984375,0.456787109375,2.2734375,0.5634765625,2.2421875,0.45361328125,2.3583984375,0.38232421875,2.25,0.456787109375,2.2734375,0.38232421875,2.25,0.52197265625,2.140625,0.456787109375,2.2734375,0.38232421875,2.25,0.45361328125,2.3583984375,0.31298828125,2.3203125,0.40283203125,1.7978515625,0.52197265625,2.140625,0.384033203125,2.0517578125,0.38232421875,2.25,0.384033203125,2.0517578125,0.52197265625,2.140625,0.354248046875,1.99658203125,0.40283203125,1.7978515625,0.384033203125,2.0517578125,0.31298828125,2.3203125,0.32421875,2.1806640625,0.38232421875,2.25,0.384033203125,2.0517578125,0.38232421875,2.25,0.32421875,2.1806640625,0.384033203125,2.0517578125,0.32421875,2.1806640625,0.354248046875,1.99658203125,0.32421875,2.1806640625,0.31298828125,2.3203125,0.2496337890625,2.15625,0.2496337890625,2.15625,0.354248046875,1.99658203125,0.32421875,2.1806640625,0.29931640625,3.306640625,0.44091796875,3.484375,0.197998046875,3.466796875,0.1336669921875,3.125,0.29931640625,3.306640625,0.197998046875,3.466796875,0.44091796875,3.484375,0.29931640625,3.306640625,0.450439453125,3.40625,0.71826171875,3.302734375,0.44091796875,3.484375,0.450439453125,3.40625,0.29931640625,
- 3.306640625,0.1336669921875,3.125,0.25390625,3.091796875,0.27197265625,2.7548828125,0.25390625,3.091796875,0.1336669921875,3.125,0.450439453125,3.40625,0.6533203125,3.1953125,0.71826171875,3.302734375,0.8359375,2.990234375,0.71826171875,3.302734375,0.6533203125,3.1953125,0.450439453125,3.40625,0.29931640625,3.306640625,0.52099609375,3.05859375,0.6533203125,3.1953125,0.450439453125,3.40625,0.52099609375,3.05859375,0.29931640625,3.306640625,0.25390625,3.091796875,0.52099609375,3.05859375,0.8359375,2.990234375,0.6533203125,3.1953125,0.76806640625,2.974609375,0.76806640625,2.974609375,0.6533203125,3.1953125,0.52099609375,3.05859375,0.71630859375,2.744140625,0.8359375,2.990234375,0.76806640625,2.974609375,0.52099609375,3.05859375,0.25390625,3.091796875,0.3603515625,2.7890625,0.25390625,3.091796875,0.27197265625,2.7548828125,0.3603515625,2.7890625,0.61376953125,2.78125,0.76806640625,2.974609375,0.52099609375,3.05859375,0.71630859375,2.744140625,0.76806640625,2.974609375,0.61376953125,2.78125,0.343505859375,2.5009765625,0.3603515625,2.7890625,0.27197265625,2.7548828125,0.27197265625,2.7548828125,0.2861328125,2.4365234375,0.343505859375,2.5009765625,0.51123046875,2.6357421875,0.52099609375,3.05859375,0.3603515625,2.7890625,0.3603515625,2.7890625,0.343505859375,2.5009765625,0.51123046875,2.6357421875,0.51123046875,2.6357421875,0.61376953125,2.78125,0.52099609375,3.05859375,0.2861328125,2.4365234375,0.3857421875,2.4033203125,0.343505859375,2.5009765625,0.343505859375,2.5009765625,0.3857421875,2.4033203125,0.51123046875,2.6357421875,0.349609375,2.19140625,0.3857421875,2.4033203125,0.2861328125,2.4365234375,0.51123046875,2.330078125,0.3857421875,2.4033203125,0.349609375,2.19140625,0.60302734375,2.5498046875,0.71630859375,2.744140625,0.61376953125,2.78125,0.60302734375,2.5498046875,0.61376953125,2.78125,0.51123046875,2.6357421875,0.71630859375,2.744140625,0.60302734375,2.5498046875,0.759765625,2.4716796875,0.3857421875,2.4033203125,0.51953125,2.44140625,0.51123046875,2.6357421875,0.51953125,2.44140625,0.60302734375,2.5498046875,
- 0.51123046875,2.6357421875,0.3857421875,2.4033203125,0.51123046875,2.330078125,0.51953125,2.44140625,0.51953125,2.44140625,0.759765625,2.4716796875,0.60302734375,2.5498046875,0.759765625,2.4716796875,0.51953125,2.44140625,0.51123046875,2.330078125,0.29931640625,3.306640625,0.44091796875,3.484375,0.197998046875,3.466796875,0.1336669921875,3.125,0.29931640625,3.306640625,0.197998046875,3.466796875,0.44091796875,3.484375,0.29931640625,3.306640625,0.450439453125,3.40625,0.71826171875,3.302734375,0.44091796875,3.484375,0.450439453125,3.40625,0.29931640625,3.306640625,0.1336669921875,3.125,0.25390625,3.091796875,0.27197265625,2.7548828125,0.25390625,3.091796875,0.1336669921875,3.125,0.450439453125,3.40625,0.6533203125,3.1953125,0.71826171875,3.302734375,0.8359375,2.990234375,0.71826171875,3.302734375,0.6533203125,3.1953125,0.450439453125,3.40625,0.29931640625,3.306640625,0.52099609375,3.05859375,0.6533203125,3.1953125,0.450439453125,3.40625,0.52099609375,3.05859375,0.29931640625,3.306640625,0.25390625,3.091796875,0.52099609375,3.05859375,0.8359375,2.990234375,0.6533203125,3.1953125,0.76806640625,2.974609375,0.76806640625,2.974609375,0.6533203125,3.1953125,0.52099609375,3.05859375,0.71630859375,2.744140625,0.8359375,2.990234375,0.76806640625,2.974609375,0.52099609375,3.05859375,0.25390625,3.091796875,0.3603515625,2.7890625,0.25390625,3.091796875,0.27197265625,2.7548828125,0.3603515625,2.7890625,0.61376953125,2.78125,0.76806640625,2.974609375,0.52099609375,3.05859375,0.71630859375,2.744140625,0.76806640625,2.974609375,0.61376953125,2.78125,0.343505859375,2.5009765625,0.3603515625,2.7890625,0.27197265625,2.7548828125,0.27197265625,2.7548828125,0.2861328125,2.4365234375,0.343505859375,2.5009765625,0.51123046875,2.6357421875,0.52099609375,3.05859375,0.3603515625,2.7890625,0.3603515625,2.7890625,0.343505859375,2.5009765625,0.51123046875,2.6357421875,0.51123046875,2.6357421875,0.61376953125,2.78125,0.52099609375,3.05859375,0.2861328125,2.4365234375,0.3857421875,2.4033203125,0.343505859375,2.5009765625,0.343505859375,2.5009765625,
- 0.3857421875,2.4033203125,0.51123046875,2.6357421875,0.349609375,2.19140625,0.3857421875,2.4033203125,0.2861328125,2.4365234375,0.51123046875,2.330078125,0.3857421875,2.4033203125,0.349609375,2.19140625,0.60302734375,2.5498046875,0.71630859375,2.744140625,0.61376953125,2.78125,0.60302734375,2.5498046875,0.61376953125,2.78125,0.51123046875,2.6357421875,0.71630859375,2.744140625,0.60302734375,2.5498046875,0.759765625,2.4716796875,0.3857421875,2.4033203125,0.51953125,2.44140625,0.51123046875,2.6357421875,0.51953125,2.44140625,0.60302734375,2.5498046875,0.51123046875,2.6357421875,0.3857421875,2.4033203125,0.51123046875,2.330078125,0.51953125,2.44140625,0.51953125,2.44140625,0.759765625,2.4716796875,0.60302734375,2.5498046875,0.759765625,2.4716796875,0.51953125,2.44140625,0.51123046875,2.330078125,0.29931640625,3.306640625,0.44091796875,3.484375,0.197998046875,3.466796875,0.1336669921875,3.125,0.29931640625,3.306640625,0.197998046875,3.466796875,0.44091796875,3.484375,0.29931640625,3.306640625,0.450439453125,3.40625,0.71826171875,3.302734375,0.44091796875,3.484375,0.450439453125,3.40625,0.29931640625,3.306640625,0.1336669921875,3.125,0.25390625,3.091796875,0.27197265625,2.7548828125,0.25390625,3.091796875,0.1336669921875,3.125,0.450439453125,3.40625,0.6533203125,3.1953125,0.71826171875,3.302734375,0.8359375,2.990234375,0.71826171875,3.302734375,0.6533203125,3.1953125,0.450439453125,3.40625,0.29931640625,3.306640625,0.52099609375,3.05859375,0.6533203125,3.1953125,0.450439453125,3.40625,0.52099609375,3.05859375,0.29931640625,3.306640625,0.25390625,3.091796875,0.52099609375,3.05859375,0.8359375,2.990234375,0.6533203125,3.1953125,0.76806640625,2.974609375,0.76806640625,2.974609375,0.6533203125,3.1953125,0.52099609375,3.05859375,0.71630859375,2.744140625,0.8359375,2.990234375,0.76806640625,2.974609375,0.52099609375,3.05859375,0.25390625,3.091796875,0.3603515625,2.7890625,0.25390625,3.091796875,0.27197265625,2.7548828125,0.3603515625,2.7890625,0.61376953125,2.78125,0.76806640625,2.974609375,0.52099609375,3.05859375,0.71630859375,
- 2.744140625,0.76806640625,2.974609375,0.61376953125,2.78125,0.343505859375,2.5009765625,0.3603515625,2.7890625,0.27197265625,2.7548828125,0.27197265625,2.7548828125,0.2861328125,2.4365234375,0.343505859375,2.5009765625,0.51123046875,2.6357421875,0.52099609375,3.05859375,0.3603515625,2.7890625,0.3603515625,2.7890625,0.343505859375,2.5009765625,0.51123046875,2.6357421875,0.51123046875,2.6357421875,0.61376953125,2.78125,0.52099609375,3.05859375,0.2861328125,2.4365234375,0.3857421875,2.4033203125,0.343505859375,2.5009765625,0.343505859375,2.5009765625,0.3857421875,2.4033203125,0.51123046875,2.6357421875,0.349609375,2.19140625,0.3857421875,2.4033203125,0.2861328125,2.4365234375,0.51123046875,2.330078125,0.3857421875,2.4033203125,0.349609375,2.19140625,0.60302734375,2.5498046875,0.71630859375,2.744140625,0.61376953125,2.78125,0.60302734375,2.5498046875,0.61376953125,2.78125,0.51123046875,2.6357421875,0.71630859375,2.744140625,0.60302734375,2.5498046875,0.759765625,2.4716796875,0.3857421875,2.4033203125,0.51953125,2.44140625,0.51123046875,2.6357421875,0.51953125,2.44140625,0.60302734375,2.5498046875,0.51123046875,2.6357421875,0.3857421875,2.4033203125,0.51123046875,2.330078125,0.51953125,2.44140625,0.51953125,2.44140625,0.759765625,2.4716796875,0.60302734375,2.5498046875,0.759765625,2.4716796875,0.51953125,2.44140625,0.51123046875,2.330078125,0.29931640625,3.306640625,0.44091796875,3.484375,0.197998046875,3.466796875,0.1336669921875,3.125,0.29931640625,3.306640625,0.197998046875,3.466796875,0.44091796875,3.484375,0.29931640625,3.306640625,0.450439453125,3.40625,0.71826171875,3.302734375,0.44091796875,3.484375,0.450439453125,3.40625,0.29931640625,3.306640625,0.1336669921875,3.125,0.25390625,3.091796875,0.27197265625,2.7548828125,0.25390625,3.091796875,0.1336669921875,3.125,0.450439453125,3.40625,0.6533203125,3.1953125,0.71826171875,3.302734375,0.8359375,2.990234375,0.71826171875,3.302734375,0.6533203125,3.1953125,0.450439453125,3.40625,0.29931640625,3.306640625,0.52099609375,3.05859375,0.6533203125,3.1953125,0.450439453125,
- 3.40625,0.52099609375,3.05859375,0.29931640625,3.306640625,0.25390625,3.091796875,0.52099609375,3.05859375,0.8359375,2.990234375,0.6533203125,3.1953125,0.76806640625,2.974609375,0.76806640625,2.974609375,0.6533203125,3.1953125,0.52099609375,3.05859375,0.71630859375,2.744140625,0.8359375,2.990234375,0.76806640625,2.974609375,0.52099609375,3.05859375,0.25390625,3.091796875,0.3603515625,2.7890625,0.25390625,3.091796875,0.27197265625,2.7548828125,0.3603515625,2.7890625,0.61376953125,2.78125,0.76806640625,2.974609375,0.52099609375,3.05859375,0.71630859375,2.744140625,0.76806640625,2.974609375,0.61376953125,2.78125,0.343505859375,2.5009765625,0.3603515625,2.7890625,0.27197265625,2.7548828125,0.27197265625,2.7548828125,0.2861328125,2.4365234375,0.343505859375,2.5009765625,0.51123046875,2.6357421875,0.52099609375,3.05859375,0.3603515625,2.7890625,0.3603515625,2.7890625,0.343505859375,2.5009765625,0.51123046875,2.6357421875,0.51123046875,2.6357421875,0.61376953125,2.78125,0.52099609375,3.05859375,0.2861328125,2.4365234375,0.3857421875,2.4033203125,0.343505859375,2.5009765625,0.343505859375,2.5009765625,0.3857421875,2.4033203125,0.51123046875,2.6357421875,0.349609375,2.19140625,0.3857421875,2.4033203125,0.2861328125,2.4365234375,0.51123046875,2.330078125,0.3857421875,2.4033203125,0.349609375,2.19140625,0.60302734375,2.5498046875,0.71630859375,2.744140625,0.61376953125,2.78125,0.60302734375,2.5498046875,0.61376953125,2.78125,0.51123046875,2.6357421875,0.71630859375,2.744140625,0.60302734375,2.5498046875,0.759765625,2.4716796875,0.3857421875,2.4033203125,0.51953125,2.44140625,0.51123046875,2.6357421875,0.51953125,2.44140625,0.60302734375,2.5498046875,0.51123046875,2.6357421875,0.3857421875,2.4033203125,0.51123046875,2.330078125,0.51953125,2.44140625,0.51953125,2.44140625,0.759765625,2.4716796875,0.60302734375,2.5498046875,0.759765625,2.4716796875,0.51953125,2.44140625,0.51123046875,2.330078125,0.308349609375,0.41259765625,0.1204833984375,0.4755859375,0.09381103515625,0.29736328125,0.159912109375,0.19921875,0.308349609375,0.41259765625,
- 0.09381103515625,0.29736328125,0.159912109375,0.19921875,0.10272216796875,0.158203125,0.1572265625,0.169921875,0.09381103515625,0.29736328125,0.08441162109375,0.224609375,0.159912109375,0.19921875,0.10272216796875,0.158203125,0.159912109375,0.19921875,0.08441162109375,0.224609375,0.10272216796875,0.158203125,0.08441162109375,0.224609375,0.060699462890625,0.1474609375,0.09381103515625,0.29736328125,0.053436279296875,0.36767578125,0.08441162109375,0.224609375,0.060699462890625,0.1474609375,0.08441162109375,0.224609375,0.0181427001953125,0.2177734375,0.08441162109375,0.224609375,0.053436279296875,0.36767578125,0.0181427001953125,0.2177734375,0.0181427001953125,0.2177734375,0.053436279296875,0.36767578125,0.015899658203125,0.36962890625,0.308349609375,0.41259765625,0.1204833984375,0.4755859375,0.09381103515625,0.29736328125,0.159912109375,0.19921875,0.308349609375,0.41259765625,0.09381103515625,0.29736328125,0.159912109375,0.19921875,0.10272216796875,0.158203125,0.1572265625,0.169921875,0.09381103515625,0.29736328125,0.08441162109375,0.224609375,0.159912109375,0.19921875,0.10272216796875,0.158203125,0.159912109375,0.19921875,0.08441162109375,0.224609375,0.10272216796875,0.158203125,0.08441162109375,0.224609375,0.060699462890625,0.1474609375,0.09381103515625,0.29736328125,0.053436279296875,0.36767578125,0.08441162109375,0.224609375,0.060699462890625,0.1474609375,0.08441162109375,0.224609375,0.0181427001953125,0.2177734375,0.08441162109375,0.224609375,0.053436279296875,0.36767578125,0.0181427001953125,0.2177734375,0.0181427001953125,0.2177734375,0.053436279296875,0.36767578125,0.015899658203125,0.36962890625,0.308349609375,0.41259765625,0.1204833984375,0.4755859375,0.09381103515625,0.29736328125,0.159912109375,0.19921875,0.308349609375,0.41259765625,0.09381103515625,0.29736328125,0.159912109375,0.19921875,0.10272216796875,0.158203125,0.1572265625,0.169921875,0.09381103515625,0.29736328125,0.08441162109375,0.224609375,0.159912109375,0.19921875,0.10272216796875,0.158203125,0.159912109375,0.19921875,0.08441162109375,0.224609375,
- 0.10272216796875,0.158203125,0.08441162109375,0.224609375,0.060699462890625,0.1474609375,0.09381103515625,0.29736328125,0.053436279296875,0.36767578125,0.08441162109375,0.224609375,0.060699462890625,0.1474609375,0.08441162109375,0.224609375,0.0181427001953125,0.2177734375,0.08441162109375,0.224609375,0.053436279296875,0.36767578125,0.0181427001953125,0.2177734375,0.0181427001953125,0.2177734375,0.053436279296875,0.36767578125,0.015899658203125,0.36962890625,0.210693359375,0.888916015625,0.210693359375,0.888916015625,0.210693359375,0.888916015625,0.06622314453125,0.986373901367188,0.0099639892578125,0.8890380859375,0.06622314453125,0.986373901367188,0.0099639892578125,0.8890380859375,0.210693359375,0.888916015625,0.06622314453125,0.986373901367188,0.0099639892578125,0.8890380859375,0.1357421875,0.624755859375,0.210693359375,0.888916015625,0.0099639892578125,0.8890380859375,0.22119140625,0.658203125,0.210693359375,0.888916015625,0.1357421875,0.624755859375,0.1357421875,0.624755859375,0.0099639892578125,0.8890380859375,0.07513427734375,0.50732421875,0.22119140625,0.658203125,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,0.1429443359375,0.4970703125,0.1357421875,0.624755859375,0.07513427734375,0.50732421875,0.13330078125,0.69091796875,0.2130126953125,0.7431640625,0.210693359375,0.888916015625,0.13330078125,0.69091796875,0.210693359375,0.888916015625,0.0787353515625,0.787109375,0.036407470703125,0.731689453125,0.13330078125,0.69091796875,0.0787353515625,0.787109375,0.210693359375,0.888916015625,0.06622314453125,0.986373901367188,0.0787353515625,0.787109375,0.036407470703125,0.731689453125,0.0787353515625,0.787109375,0.0099639892578125,0.8890380859375,0.0787353515625,0.787109375,0.06622314453125,0.986373901367188,0.0099639892578125,0.8890380859375,0.210693359375,0.888916015625,0.06622314453125,0.986373901367188,0.0099639892578125,0.8890380859375,0.1357421875,0.624755859375,0.210693359375,0.888916015625,0.0099639892578125,0.8890380859375,0.22119140625,0.658203125,0.210693359375,0.888916015625,0.1357421875,0.624755859375,
- 0.1357421875,0.624755859375,0.0099639892578125,0.8890380859375,0.07513427734375,0.50732421875,0.22119140625,0.658203125,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,0.1429443359375,0.4970703125,0.1357421875,0.624755859375,0.07513427734375,0.50732421875,0.13330078125,0.69091796875,0.2130126953125,0.7431640625,0.210693359375,0.888916015625,0.13330078125,0.69091796875,0.210693359375,0.888916015625,0.0787353515625,0.787109375,0.036407470703125,0.731689453125,0.13330078125,0.69091796875,0.0787353515625,0.787109375,0.210693359375,0.888916015625,0.06622314453125,0.986373901367188,0.0787353515625,0.787109375,0.036407470703125,0.731689453125,0.0787353515625,0.787109375,0.0099639892578125,0.8890380859375,0.0787353515625,0.787109375,0.06622314453125,0.986373901367188,0.0099639892578125,0.8890380859375,0.210693359375,0.888916015625,0.06622314453125,0.986373901367188,0.0099639892578125,0.8890380859375,0.1357421875,0.624755859375,0.210693359375,0.888916015625,0.0099639892578125,0.8890380859375,0.22119140625,0.658203125,0.210693359375,0.888916015625,0.1357421875,0.624755859375,0.1357421875,0.624755859375,0.0099639892578125,0.8890380859375,0.07513427734375,0.50732421875,0.22119140625,0.658203125,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,0.1429443359375,0.4970703125,0.1357421875,0.624755859375,0.07513427734375,0.50732421875,0.13330078125,0.69091796875,0.2130126953125,0.7431640625,0.210693359375,0.888916015625,0.13330078125,0.69091796875,0.210693359375,0.888916015625,0.0787353515625,0.787109375,0.036407470703125,0.731689453125,0.13330078125,0.69091796875,0.0787353515625,0.787109375,0.210693359375,0.888916015625,0.06622314453125,0.986373901367188,0.0787353515625,0.787109375,0.036407470703125,0.731689453125,0.0787353515625,0.787109375,0.0099639892578125,0.8890380859375,0.0787353515625,0.787109375,0.06622314453125,0.986373901367188,0.0099639892578125,0.8890380859375,0.210693359375,0.888916015625,0.06622314453125,0.986373901367188,0.0099639892578125,0.8890380859375,0.1357421875,0.624755859375,0.210693359375,0.888916015625,
- 0.0099639892578125,0.8890380859375,0.22119140625,0.658203125,0.210693359375,0.888916015625,0.1357421875,0.624755859375,0.1357421875,0.624755859375,0.0099639892578125,0.8890380859375,0.07513427734375,0.50732421875,0.22119140625,0.658203125,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,0.1429443359375,0.4970703125,0.1357421875,0.624755859375,0.07513427734375,0.50732421875,0.13330078125,0.69091796875,0.2130126953125,0.7431640625,0.210693359375,0.888916015625,0.13330078125,0.69091796875,0.210693359375,0.888916015625,0.0787353515625,0.787109375,0.036407470703125,0.731689453125,0.13330078125,0.69091796875,0.0787353515625,0.787109375,0.210693359375,0.888916015625,0.06622314453125,0.986373901367188,0.0787353515625,0.787109375,0.036407470703125,0.731689453125,0.0787353515625,0.787109375,0.0099639892578125,0.8890380859375,0.0787353515625,0.787109375,0.06622314453125,0.986373901367188,0.0099639892578125,0.8890380859375,0.22119140625,0.658203125,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,0.22119140625,0.658203125,0.210693359375,0.888916015625,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,0.1357421875,0.624755859375,0.07513427734375,0.50732421875,0.1357421875,0.624755859375,0.210693359375,0.888916015625,0.1357421875,0.624755859375,0.07513427734375,0.50732421875,0.210693359375,0.888916015625,0.06622314453125,0.986373901367188,0.0099639892578125,0.8890380859375,0.07513427734375,0.50732421875,0.06622314453125,0.986373901367188,0.0099639892578125,0.8890380859375,0.22119140625,0.658203125,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,0.22119140625,0.658203125,0.210693359375,0.888916015625,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,0.1357421875,0.624755859375,0.07513427734375,0.50732421875,0.1357421875,0.624755859375,0.210693359375,0.888916015625,0.07000732421875,0.7755126953125,0.07000732421875,0.7755126953125,0.07513427734375,0.50732421875,0.1357421875,0.624755859375,0.210693359375,0.888916015625,0.06622314453125,0.986373901367188,0.07000732421875,0.7755126953125,0.0099639892578125,
- 0.8890380859375,0.07513427734375,0.50732421875,0.07000732421875,0.7755126953125,0.07000732421875,0.7755126953125,0.06622314453125,0.986373901367188,0.0099639892578125,0.8890380859375,0.12298583984375,0.3310546875,0.30712890625,0.41259765625,0.158203125,0.46484375,0.1585693359375,0.19921875,0.30712890625,0.41259765625,0.12298583984375,0.3310546875,0.0130844116210938,0.4755859375,0.12298583984375,0.3310546875,0.158203125,0.46484375,0.12298583984375,0.3310546875,0.08319091796875,0.224609375,0.1585693359375,0.19921875,0.0130844116210938,0.4755859375,0.08319091796875,0.224609375,0.12298583984375,0.3310546875,0.1416015625,0.01220703125,0.1585693359375,0.19921875,0.08319091796875,0.224609375,0.0168914794921875,0.2177734375,0.08319091796875,0.224609375,0.0130844116210938,0.4755859375,0.1416015625,0.01220703125,0.08319091796875,0.224609375,0.0168914794921875,0.2177734375,0.12298583984375,0.3310546875,0.30712890625,0.41259765625,0.158203125,0.46484375,0.30712890625,0.41259765625,0.12298583984375,0.3310546875,0.0130844116210938,0.4755859375,0.12298583984375,0.3310546875,0.158203125,0.46484375,0.12298583984375,0.3310546875,0.08319091796875,0.224609375,0.0130844116210938,0.4755859375,0.08319091796875,0.224609375,0.12298583984375,0.3310546875,0.08319091796875,0.224609375,0.0168914794921875,0.2177734375,0.08319091796875,0.224609375,0.0130844116210938,0.4755859375,0.08319091796875,0.224609375,0.0168914794921875,0.2177734375,0.12298583984375,0.3310546875,0.30712890625,0.41259765625,0.158203125,0.46484375,0.1585693359375,0.19921875,0.30712890625,0.41259765625,0.12298583984375,0.3310546875,0.0130844116210938,0.4755859375,0.12298583984375,0.3310546875,0.158203125,0.46484375,0.12298583984375,0.3310546875,0.08319091796875,0.224609375,0.1585693359375,0.19921875,0.0130844116210938,0.4755859375,0.08319091796875,0.224609375,0.12298583984375,0.3310546875,0.1416015625,0.01220703125,0.1585693359375,0.19921875,0.08319091796875,0.224609375,0.0168914794921875,0.2177734375,0.08319091796875,0.224609375,0.0130844116210938,0.4755859375,0.1416015625,
- 0.01220703125,0.08319091796875,0.224609375,0.0168914794921875,0.2177734375,0.22119140625,0.658203125,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,0.22119140625,0.658203125,0.210693359375,0.888916015625,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,0.1357421875,0.624755859375,0.07513427734375,0.50732421875,0.1357421875,0.624755859375,0.210693359375,0.888916015625,0.07000732421875,0.7755126953125,0.1357421875,0.624755859375,0.07000732421875,0.7755126953125,0.07513427734375,0.50732421875,0.210693359375,0.888916015625,0.06622314453125,0.986373901367188,0.07000732421875,0.7755126953125,0.0099639892578125,0.8890380859375,0.07513427734375,0.50732421875,0.07000732421875,0.7755126953125,0.07000732421875,0.7755126953125,0.06622314453125,0.986373901367188,0.0099639892578125,0.8890380859375,0.22119140625,0.658203125,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,0.22119140625,0.658203125,0.210693359375,0.888916015625,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,0.1357421875,0.624755859375,0.07513427734375,0.50732421875,0.1357421875,0.624755859375,0.210693359375,0.888916015625,0.07000732421875,0.7755126953125,0.07000732421875,0.7755126953125,0.07513427734375,0.50732421875,0.1357421875,0.624755859375,0.210693359375,0.888916015625,0.06622314453125,0.986373901367188,0.07000732421875,0.7755126953125,0.0099639892578125,0.8890380859375,0.07513427734375,0.50732421875,0.07000732421875,0.7755126953125,0.07000732421875,0.7755126953125,0.06622314453125,0.986373901367188,0.0099639892578125,0.8890380859375,0.12298583984375,0.3310546875,0.30712890625,0.41259765625,0.158203125,0.46484375,0.1585693359375,0.19921875,0.30712890625,0.41259765625,0.12298583984375,0.3310546875,0.0130844116210938,0.4755859375,0.12298583984375,0.3310546875,0.158203125,0.46484375,0.12298583984375,0.3310546875,0.08319091796875,0.224609375,0.1585693359375,0.19921875,0.0130844116210938,0.4755859375,0.08319091796875,0.224609375,0.12298583984375,0.3310546875,0.1416015625,0.01220703125,0.1585693359375,0.19921875,0.08319091796875,
- 0.224609375,0.0168914794921875,0.2177734375,0.08319091796875,0.224609375,0.0130844116210938,0.4755859375,0.1416015625,0.01220703125,0.08319091796875,0.224609375,0.0168914794921875,0.2177734375,0.12298583984375,0.3310546875,0.30712890625,0.41259765625,0.158203125,0.46484375,0.155029296875,0.17236328125,0.30712890625,0.41259765625,0.12298583984375,0.3310546875,0.0130844116210938,0.4755859375,0.12298583984375,0.3310546875,0.158203125,0.46484375,0.12298583984375,0.3310546875,0.08319091796875,0.224609375,0.155029296875,0.17236328125,0.0130844116210938,0.4755859375,0.08319091796875,0.224609375,0.12298583984375,0.3310546875,0.067626953125,0.1376953125,0.155029296875,0.17236328125,0.08319091796875,0.224609375,0.0168914794921875,0.2177734375,0.08319091796875,0.224609375,0.0130844116210938,0.4755859375,0.067626953125,0.1376953125,0.08319091796875,0.224609375,0.0168914794921875,0.2177734375,0.12298583984375,0.3310546875,0.30712890625,0.41259765625,0.158203125,0.46484375,0.1585693359375,0.19921875,0.30712890625,0.41259765625,0.12298583984375,0.3310546875,0.0130844116210938,0.4755859375,0.12298583984375,0.3310546875,0.158203125,0.46484375,0.12298583984375,0.3310546875,0.08319091796875,0.224609375,0.1585693359375,0.19921875,0.0130844116210938,0.4755859375,0.08319091796875,0.224609375,0.12298583984375,0.3310546875,0.1416015625,0.01220703125,0.1585693359375,0.19921875,0.08319091796875,0.224609375,0.0168914794921875,0.2177734375,0.08319091796875,0.224609375,0.0130844116210938,0.4755859375,0.1416015625,0.01220703125,0.08319091796875,0.224609375,0.0168914794921875,0.2177734375,0.22119140625,0.658203125,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,0.22119140625,0.658203125,0.210693359375,0.888916015625,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,0.1357421875,0.624755859375,0.07513427734375,0.50732421875,0.1357421875,0.624755859375,0.210693359375,0.888916015625,0.07000732421875,0.7755126953125,0.1357421875,0.624755859375,0.07000732421875,0.7755126953125,0.07513427734375,0.50732421875,0.210693359375,0.888916015625,
- 0.06622314453125,0.986373901367188,0.07000732421875,0.7755126953125,0.0099639892578125,0.8890380859375,0.07513427734375,0.50732421875,0.07000732421875,0.7755126953125,0.07000732421875,0.7755126953125,0.06622314453125,0.986373901367188,0.0099639892578125,0.8890380859375,0.22119140625,0.658203125,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,0.22119140625,0.658203125,0.210693359375,0.888916015625,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,0.1357421875,0.624755859375,0.07513427734375,0.50732421875,0.1357421875,0.624755859375,0.210693359375,0.888916015625,0.07000732421875,0.7755126953125,0.07000732421875,0.7755126953125,0.07513427734375,0.50732421875,0.1357421875,0.624755859375,0.210693359375,0.888916015625,0.06622314453125,0.986373901367188,0.07000732421875,0.7755126953125,0.0099639892578125,0.8890380859375,0.07513427734375,0.50732421875,0.07000732421875,0.7755126953125,0.07000732421875,0.7755126953125,0.06622314453125,0.986373901367188,0.0099639892578125,0.8890380859375,0.12298583984375,0.3310546875,0.30712890625,0.41259765625,0.158203125,0.46484375,0.1585693359375,0.19921875,0.30712890625,0.41259765625,0.12298583984375,0.3310546875,0.0130844116210938,0.4755859375,0.12298583984375,0.3310546875,0.158203125,0.46484375,0.12298583984375,0.3310546875,0.08319091796875,0.224609375,0.1585693359375,0.19921875,0.0130844116210938,0.4755859375,0.08319091796875,0.224609375,0.12298583984375,0.3310546875,0.1416015625,0.01220703125,0.1585693359375,0.19921875,0.08319091796875,0.224609375,0.0168914794921875,0.2177734375,0.08319091796875,0.224609375,0.0130844116210938,0.4755859375,0.1416015625,0.01220703125,0.08319091796875,0.224609375,0.0168914794921875,0.2177734375,0.12298583984375,0.3310546875,0.30712890625,0.41259765625,0.158203125,0.46484375,0.155029296875,0.17236328125,0.30712890625,0.41259765625,0.12298583984375,0.3310546875,0.0130844116210938,0.4755859375,0.12298583984375,0.3310546875,0.158203125,0.46484375,0.12298583984375,0.3310546875,0.08319091796875,0.224609375,0.155029296875,0.17236328125,0.0130844116210938,
- 0.4755859375,0.08319091796875,0.224609375,0.12298583984375,0.3310546875,0.067626953125,0.1376953125,0.155029296875,0.17236328125,0.08319091796875,0.224609375,0.0168914794921875,0.2177734375,0.08319091796875,0.224609375,0.0130844116210938,0.4755859375,0.067626953125,0.1376953125,0.08319091796875,0.224609375,0.0168914794921875,0.2177734375,0.12298583984375,0.3310546875,0.30712890625,0.41259765625,0.158203125,0.46484375,0.1585693359375,0.19921875,0.30712890625,0.41259765625,0.12298583984375,0.3310546875,0.0130844116210938,0.4755859375,0.12298583984375,0.3310546875,0.158203125,0.46484375,0.12298583984375,0.3310546875,0.08319091796875,0.224609375,0.1585693359375,0.19921875,0.0130844116210938,0.4755859375,0.08319091796875,0.224609375,0.12298583984375,0.3310546875,0.1416015625,0.01220703125,0.1585693359375,0.19921875,0.08319091796875,0.224609375,0.0168914794921875,0.2177734375,0.08319091796875,0.224609375,0.0130844116210938,0.4755859375,0.1416015625,0.01220703125,0.08319091796875,0.224609375,0.0168914794921875,0.2177734375,0.22119140625,0.658203125,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,0.22119140625,0.658203125,0.210693359375,0.888916015625,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,0.1357421875,0.624755859375,0.07513427734375,0.50732421875,0.1357421875,0.624755859375,0.210693359375,0.888916015625,0.07000732421875,0.7755126953125,0.1357421875,0.624755859375,0.07000732421875,0.7755126953125,0.07513427734375,0.50732421875,0.210693359375,0.888916015625,0.06622314453125,0.986373901367188,0.07000732421875,0.7755126953125,0.0099639892578125,0.8890380859375,0.07513427734375,0.50732421875,0.07000732421875,0.7755126953125,0.07000732421875,0.7755126953125,0.06622314453125,0.986373901367188,0.0099639892578125,0.8890380859375,0.22119140625,0.658203125,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,0.22119140625,0.658203125,0.210693359375,0.888916015625,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,0.1357421875,0.624755859375,0.07513427734375,0.50732421875,0.1357421875,0.624755859375,
- 0.210693359375,0.888916015625,0.07000732421875,0.7755126953125,0.07000732421875,0.7755126953125,0.07513427734375,0.50732421875,0.1357421875,0.624755859375,0.210693359375,0.888916015625,0.06622314453125,0.986373901367188,0.07000732421875,0.7755126953125,0.0099639892578125,0.8890380859375,0.07513427734375,0.50732421875,0.07000732421875,0.7755126953125,0.07000732421875,0.7755126953125,0.06622314453125,0.986373901367188,0.0099639892578125,0.8890380859375,0.12298583984375,0.3310546875,0.30712890625,0.41259765625,0.158203125,0.46484375,0.1585693359375,0.19921875,0.30712890625,0.41259765625,0.12298583984375,0.3310546875,0.0130844116210938,0.4755859375,0.12298583984375,0.3310546875,0.158203125,0.46484375,0.12298583984375,0.3310546875,0.08319091796875,0.224609375,0.1585693359375,0.19921875,0.0130844116210938,0.4755859375,0.08319091796875,0.224609375,0.12298583984375,0.3310546875,0.1416015625,0.01220703125,0.1585693359375,0.19921875,0.08319091796875,0.224609375,0.0168914794921875,0.2177734375,0.08319091796875,0.224609375,0.0130844116210938,0.4755859375,0.1416015625,0.01220703125,0.08319091796875,0.224609375,0.0168914794921875,0.2177734375,0.12298583984375,0.3310546875,0.30712890625,0.41259765625,0.158203125,0.46484375,0.155029296875,0.17236328125,0.30712890625,0.41259765625,0.12298583984375,0.3310546875,0.0130844116210938,0.4755859375,0.12298583984375,0.3310546875,0.158203125,0.46484375,0.12298583984375,0.3310546875,0.08319091796875,0.224609375,0.155029296875,0.17236328125,0.0130844116210938,0.4755859375,0.08319091796875,0.224609375,0.12298583984375,0.3310546875,0.067626953125,0.1376953125,0.155029296875,0.17236328125,0.08319091796875,0.224609375,0.0168914794921875,0.2177734375,0.08319091796875,0.224609375,0.0130844116210938,0.4755859375,0.067626953125,0.1376953125,0.08319091796875,0.224609375,0.0168914794921875,0.2177734375,0.12298583984375,0.3310546875,0.30712890625,0.41259765625,0.158203125,0.46484375,0.1585693359375,0.19921875,0.30712890625,0.41259765625,0.12298583984375,0.3310546875,0.0130844116210938,0.4755859375,0.12298583984375,
- 0.3310546875,0.158203125,0.46484375,0.12298583984375,0.3310546875,0.08319091796875,0.224609375,0.1585693359375,0.19921875,0.0130844116210938,0.4755859375,0.08319091796875,0.224609375,0.12298583984375,0.3310546875,0.1416015625,0.01220703125,0.1585693359375,0.19921875,0.08319091796875,0.224609375,0.0168914794921875,0.2177734375,0.08319091796875,0.224609375,0.0130844116210938,0.4755859375,0.1416015625,0.01220703125,0.08319091796875,0.224609375,0.0168914794921875,0.2177734375,0.22119140625,0.658203125,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,0.22119140625,0.658203125,0.210693359375,0.888916015625,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,0.1357421875,0.624755859375,0.07513427734375,0.50732421875,0.1357421875,0.624755859375,0.210693359375,0.888916015625,0.07000732421875,0.7755126953125,0.1357421875,0.624755859375,0.07000732421875,0.7755126953125,0.07513427734375,0.50732421875,0.210693359375,0.888916015625,0.06622314453125,0.986373901367188,0.07000732421875,0.7755126953125,0.0099639892578125,0.8890380859375,0.07513427734375,0.50732421875,0.07000732421875,0.7755126953125,0.07000732421875,0.7755126953125,0.06622314453125,0.986373901367188,0.0099639892578125,0.8890380859375,0.22119140625,0.658203125,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,0.22119140625,0.658203125,0.210693359375,0.888916015625,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,0.1357421875,0.624755859375,0.07513427734375,0.50732421875,0.1357421875,0.624755859375,0.210693359375,0.888916015625,0.07000732421875,0.7755126953125,0.07000732421875,0.7755126953125,0.07513427734375,0.50732421875,0.1357421875,0.624755859375,0.210693359375,0.888916015625,0.06622314453125,0.986373901367188,0.07000732421875,0.7755126953125,0.0099639892578125,0.8890380859375,0.07513427734375,0.50732421875,0.07000732421875,0.7755126953125,0.07000732421875,0.7755126953125,0.06622314453125,0.986373901367188,0.0099639892578125,0.8890380859375,0.12298583984375,0.3310546875,0.30712890625,0.41259765625,0.158203125,0.46484375,0.1585693359375,
- 0.19921875,0.30712890625,0.41259765625,0.12298583984375,0.3310546875,0.0130844116210938,0.4755859375,0.12298583984375,0.3310546875,0.158203125,0.46484375,0.12298583984375,0.3310546875,0.08319091796875,0.224609375,0.1585693359375,0.19921875,0.0130844116210938,0.4755859375,0.08319091796875,0.224609375,0.12298583984375,0.3310546875,0.1416015625,0.01220703125,0.1585693359375,0.19921875,0.08319091796875,0.224609375,0.0168914794921875,0.2177734375,0.08319091796875,0.224609375,0.0130844116210938,0.4755859375,0.1416015625,0.01220703125,0.08319091796875,0.224609375,0.0168914794921875,0.2177734375,0.12298583984375,0.3310546875,0.30712890625,0.41259765625,0.158203125,0.46484375,0.155029296875,0.17236328125,0.30712890625,0.41259765625,0.12298583984375,0.3310546875,0.0130844116210938,0.4755859375,0.12298583984375,0.3310546875,0.158203125,0.46484375,0.12298583984375,0.3310546875,0.08319091796875,0.224609375,0.155029296875,0.17236328125,0.0130844116210938,0.4755859375,0.08319091796875,0.224609375,0.12298583984375,0.3310546875,0.067626953125,0.1376953125,0.155029296875,0.17236328125,0.08319091796875,0.224609375,0.0168914794921875,0.2177734375,0.08319091796875,0.224609375,0.0130844116210938,0.4755859375,0.067626953125,0.1376953125,0.08319091796875,0.224609375,0.0168914794921875,0.2177734375,0.2225341796875,0.658203125,0.144287109375,0.4970703125,0.136962890625,0.624755859375,0.2225341796875,0.658203125,0.136962890625,0.624755859375,0.2119140625,0.888916015625,0.144287109375,0.4970703125,0.076416015625,0.50732421875,0.136962890625,0.624755859375,0.136962890625,0.624755859375,0.09625244140625,0.8033447265625,0.2119140625,0.888916015625,0.136962890625,0.624755859375,0.076416015625,0.50732421875,0.09625244140625,0.8033447265625,0.2119140625,0.888916015625,0.09625244140625,0.8033447265625,0.0675048828125,0.986373901367188,0.076416015625,0.50732421875,0.0112228393554688,0.8890380859375,0.09625244140625,0.8033447265625,0.09625244140625,0.8033447265625,0.0112228393554688,0.8890380859375,0.0675048828125,0.986373901367188,0.2225341796875,0.658203125,
- 0.144287109375,0.4970703125,0.136962890625,0.624755859375,0.2225341796875,0.658203125,0.136962890625,0.624755859375,0.2119140625,0.888916015625,0.144287109375,0.4970703125,0.076416015625,0.50732421875,0.136962890625,0.624755859375,0.136962890625,0.624755859375,0.09625244140625,0.8033447265625,0.2119140625,0.888916015625,0.136962890625,0.624755859375,0.076416015625,0.50732421875,0.09625244140625,0.8033447265625,0.2119140625,0.888916015625,0.09625244140625,0.8033447265625,0.0675048828125,0.986373901367188,0.076416015625,0.50732421875,0.0112228393554688,0.8890380859375,0.09625244140625,0.8033447265625,0.09625244140625,0.8033447265625,0.0112228393554688,0.8890380859375,0.0675048828125,0.986373901367188,0.2225341796875,0.658203125,0.144287109375,0.4970703125,0.136962890625,0.624755859375,0.2225341796875,0.658203125,0.136962890625,0.624755859375,0.2119140625,0.888916015625,0.144287109375,0.4970703125,0.076416015625,0.50732421875,0.136962890625,0.624755859375,0.136962890625,0.624755859375,0.09625244140625,0.8033447265625,0.2119140625,0.888916015625,0.136962890625,0.624755859375,0.076416015625,0.50732421875,0.09625244140625,0.8033447265625,0.2119140625,0.888916015625,0.09625244140625,0.8033447265625,0.0675048828125,0.986373901367188,0.076416015625,0.50732421875,0.0112228393554688,0.8890380859375,0.09625244140625,0.8033447265625,0.09625244140625,0.8033447265625,0.0112228393554688,0.8890380859375,0.0675048828125,0.986373901367188,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,
- 0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,
- 1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,
- 0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,
- 0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,
- 0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,
- 0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,
- 0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,
- 0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,
- 0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,
- 0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,
- 0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,
- 0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,
- 0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875
- }
- UVIndex: *3009 {
- a: 0,1,2,3,1,0,1,4,2,3,5,1,6,1,5,5,7,6,4,1,8,6,8,1,8,9,4,10,4,9,9,11,10,11,9,12,9,8,12,12,13,11,6,14,8,12,8,14,15,14,6,15,6,7,14,16,12,14,15,16,7,17,15,16,15,17,17,7,18,18,19,17,19,16,17,19,18,20,20,21,19,22,16,19,21,22,19,21,23,22,23,16,22,23,21,24,12,16,25,23,25,16,13,12,25,24,26,23,25,23,26,25,26,13,26,24,27,27,13,26,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,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,259,260,261,262,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,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,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,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,28,29,30,31,28,30,29,28,32,33,29,32,28,31,34,35,34,31,32,36,33,37,33,36,32,28,38,36,32,38,28,34,38,37,36,39,39,36,38,40,37,39,38,34,41,34,35,41,42,39,38,40,39,42,43,41,35,35,44,43,45,38,41,41,43,45,45,42,38,44,46,43,43,46,45,47,46,44,48,46,47,49,40,42,49,42,45,40,49,
- 50,46,51,45,51,49,45,46,48,51,51,50,49,50,51,48,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,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,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,52,53,54,55,52,54,55,56,57,54,58,55,56,55,58,56,58,59,54,60,58,59,58,61,58,60,61,61,60,62,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,
- 938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,63,64,65,66,63,65,67,63,66,66,65,68,67,66,69,69,66,68,70,71,970,70,971,72,73,70,72,972,973,72,73,72,974,72,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,74,75,76,77,75,74,78,74,76,74,79,77,78,79,74,80,77,79,81,79,78,80,79,81,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,82,1132,82,1133,1134,1135,82,1136,1137,82,82,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,83,1191,1192,1193,1194,1195,1196,1197,83,1198,1199,1200,84,83,1201,1202,1203,1204,84,1205,1206,85,86,87,85,87,88,86,89,87,87,90,88,87,89,90,88,90,91,89,92,90,90,92,91,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,
- 1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,
- 1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,93,94,95,93,96,94,95,94,97,94,96,98,97,94,99,99,94,98,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1855,1856,1857,1858,1859,1860,1861,1862,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1924,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1946,1947,1948,1949,1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,
- 2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2129,2130,2131,2132,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144,2145,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2202,2203,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,2228,2229,2230,2231,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,2252,2253,2254,2255,2256,2257,2258,2259,2260,2261,2262,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,2303,2304,2305,2306,2307,2308,2309,2310,2311,2312,2313,2314,2315,2316,2317,2318,2319,2320,2321,2322,2323,2324,2325,2326,2327,2328,2329,2330,2331,2332,2333,2334,2335,2336,2337,2338,2339,2340,2341,2342,2343,2344,2345,2346,2347,2348,2349,2350,2351,2352,2353,2354,2355,2356,2357,2358,2359,2360,2361,2362,2363,2364,2365,2366,2367,2368,2369,2370,2371,2372,2373,2374,2375,2376,2377,2378,2379,2380,2381,2382,2383,2384,2385,2386,2387,2388,2389,2390,2391,2392,2393,2394,2395,2396,2397,2398,2399,2400,2401,2402,2403,2404,2405,2406,2407,2408,2409,2410,2411,2412,2413,2414,2415,2416,2417,2418,2419,2420,2421,2422,2423,2424,2425,2426,2427,2428,2429,2430,2431,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,2461,2462,2463,2464,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2477,2478,2479,2480,2481,2482,2483,2484,2485,2486,2487,2488,2489,2490,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,2503,2504,2505,2506,2507,2508,2509,2510,2511,2512,2513,2514,2515,2516,2517,2518,2519,2520,2521,2522,2523,2524,2525,2526,
- 2527,2528,2529,2530,2531,2532,2533,2534,2535,2536,2537,2538,2539,2540,2541,2542,2543,2544,2545,2546,2547,2548,2549,2550,2551,2552,2553,2554,2555,2556,2557,2558,2559,2560,2561,2562,2563,2564,2565,2566,2567,2568,2569,2570,2571,2572,2573,2574,2575,2576,2577,2578,2579,2580,2581,2582,2583,2584,2585,2586,2587,2588,2589,2590,2591,2592,2593,2594,2595,2596,2597,2598,2599,2600,2601,2602,2603,2604,2605,2606,2607,2608,2609,2610,2611,2612,2613,2614,2615,2616,2617,2618,2619,2620,2621,2622,2623,2624,2625,2626,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2664,2665,2666,2667,2668,2669,2670,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2687,2688,2689,2690,2691,2692,2693,2694,2695,2696,2697,2698,2699,2700,2701,2702,2703,2704,2705,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2726,2727,2728,2729,2730,2731,2732,2733,2734,2735,2736,2737,2738,2739,2740,2741,2742,2743,2744,2745,2746,2747,2748
- }
- }
- LayerElementUV: 1 {
- Version: 101
- Name: "LightMapUV"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *1940 {
- a: 0.6123046875,0.847900390625,0.6162109375,0.867919921875,0.5966796875,0.87567138671875,0.62548828125,0.8604736328125,0.599609375,0.88507080078125,0.634765625,0.8858642578125,0.62646484375,0.89306640625,0.64501953125,0.92095947265625,0.60986328125,0.8900146484375,0.5947265625,0.89453125,0.58154296875,0.88818359375,0.59619140625,0.91241455078125,0.60498046875,0.91778564453125,0.5986328125,0.944000244140625,0.61962890625,0.924072265625,0.63232421875,0.922607421875,0.62109375,0.963043212890625,0.6357421875,0.954925537109375,0.64794921875,0.957489013671875,0.62646484375,0.976455688476563,0.63623046875,0.9853515625,0.61181640625,0.991806030273438,0.6123046875,0.9805908203125,0.6025390625,0.977493286132813,0.59326171875,0.986770629882813,0.6025390625,0.9512939453125,0.5947265625,0.96832275390625,0.5849609375,0.965118408203125,0.8583984375,0.847900390625,0.8623046875,0.867919921875,0.8427734375,0.87567138671875,0.87109375,0.8604736328125,0.845703125,0.88507080078125,0.880859375,0.8858642578125,0.8720703125,0.89306640625,0.890625,0.92095947265625,0.85595703125,0.8900146484375,0.84033203125,0.89453125,0.82763671875,0.88818359375,0.84228515625,0.91241455078125,0.85107421875,0.91778564453125,0.8447265625,0.944000244140625,0.865234375,0.924072265625,0.87841796875,0.922607421875,0.86669921875,0.963043212890625,0.88134765625,0.954925537109375,0.8935546875,0.957489013671875,0.87255859375,0.976455688476563,0.88232421875,0.9853515625,0.85791015625,0.991806030273438,0.8583984375,0.9805908203125,0.84814453125,0.977493286132813,0.83935546875,0.986770629882813,0.8486328125,0.9512939453125,0.8408203125,0.96832275390625,0.83056640625,0.965118408203125,0.6943359375,0.847900390625,0.6982421875,0.867919921875,0.6787109375,0.87567138671875,0.70751953125,0.8604736328125,0.681640625,0.88507080078125,0.716796875,0.8858642578125,0.7080078125,0.89306640625,0.72705078125,0.92095947265625,0.69189453125,0.8900146484375,0.6767578125,0.89453125,0.66357421875,0.88818359375,0.67822265625,0.91241455078125,0.68701171875,0.91778564453125,
- 0.6806640625,0.944000244140625,0.70166015625,0.924072265625,0.71435546875,0.922607421875,0.703125,0.963043212890625,0.7177734375,0.954925537109375,0.7294921875,0.957489013671875,0.70849609375,0.976455688476563,0.71826171875,0.9853515625,0.69384765625,0.991806030273438,0.6943359375,0.9805908203125,0.6845703125,0.977493286132813,0.67529296875,0.986770629882813,0.6845703125,0.9512939453125,0.6767578125,0.96832275390625,0.6669921875,0.965118408203125,0.7763671875,0.847900390625,0.7802734375,0.867919921875,0.7607421875,0.87567138671875,0.78955078125,0.8604736328125,0.763671875,0.88507080078125,0.798828125,0.8858642578125,0.7900390625,0.89306640625,0.80908203125,0.92095947265625,0.77392578125,0.8900146484375,0.7587890625,0.89453125,0.74560546875,0.88818359375,0.76025390625,0.91241455078125,0.76904296875,0.91778564453125,0.7626953125,0.944000244140625,0.783203125,0.924072265625,0.79638671875,0.922607421875,0.78466796875,0.963043212890625,0.7998046875,0.954925537109375,0.8115234375,0.957489013671875,0.79052734375,0.976455688476563,0.80029296875,0.9853515625,0.77587890625,0.991806030273438,0.7763671875,0.9805908203125,0.76611328125,0.977493286132813,0.75732421875,0.986770629882813,0.7666015625,0.9512939453125,0.7587890625,0.96832275390625,0.74853515625,0.965118408203125,0.2587890625,0.968826293945313,0.277099609375,0.991806030273438,0.2459716796875,0.989532470703125,0.2376708984375,0.945343017578125,0.2783203125,0.981704711914063,0.312744140625,0.96832275390625,0.2529296875,0.9410400390625,0.25537109375,0.8974609375,0.304443359375,0.954437255859375,0.327880859375,0.92791748046875,0.287353515625,0.936767578125,0.319091796875,0.9259033203125,0.3125,0.89605712890625,0.266845703125,0.90191650390625,0.29931640625,0.90087890625,0.2646484375,0.8646240234375,0.257080078125,0.8563232421875,0.2861328125,0.882080078125,0.27001953125,0.85205078125,0.265380859375,0.8245849609375,0.2861328125,0.842529296875,0.2978515625,0.8709716796875,0.318115234375,0.86083984375,0.287109375,0.85693359375,0.48828125,0.968826293945313,0.50634765625,0.991806030273438,
- 0.475341796875,0.989532470703125,0.467041015625,0.945343017578125,0.5078125,0.981704711914063,0.5419921875,0.96832275390625,0.482666015625,0.9410400390625,0.48486328125,0.8974609375,0.53369140625,0.954437255859375,0.55712890625,0.92791748046875,0.5166015625,0.936767578125,0.54833984375,0.9259033203125,0.5419921875,0.89605712890625,0.496337890625,0.90191650390625,0.52880859375,0.90087890625,0.494140625,0.8646240234375,0.48681640625,0.8563232421875,0.515625,0.882080078125,0.49951171875,0.85205078125,0.494873046875,0.8245849609375,0.515625,0.842529296875,0.52734375,0.8709716796875,0.54736328125,0.86083984375,0.5166015625,0.85693359375,0.1441650390625,0.968826293945313,0.162353515625,0.991806030273438,0.131103515625,0.989532470703125,0.1229248046875,0.945343017578125,0.16357421875,0.981704711914063,0.1981201171875,0.96832275390625,0.1383056640625,0.9410400390625,0.140625,0.8974609375,0.189697265625,0.954437255859375,0.2132568359375,0.92791748046875,0.1727294921875,0.936767578125,0.2044677734375,0.9259033203125,0.1978759765625,0.89605712890625,0.152099609375,0.90191650390625,0.1845703125,0.90087890625,0.14990234375,0.8646240234375,0.1424560546875,0.8563232421875,0.17138671875,0.882080078125,0.1552734375,0.85205078125,0.150634765625,0.8245849609375,0.17138671875,0.842529296875,0.1832275390625,0.8709716796875,0.203369140625,0.86083984375,0.1724853515625,0.85693359375,0.37353515625,0.968826293945313,0.391845703125,0.991806030273438,0.360595703125,0.989532470703125,0.352294921875,0.945343017578125,0.39306640625,0.981704711914063,0.427490234375,0.96832275390625,0.367919921875,0.9410400390625,0.3701171875,0.8974609375,0.419189453125,0.954437255859375,0.442626953125,0.92791748046875,0.402099609375,0.936767578125,0.433837890625,0.9259033203125,0.42724609375,0.89605712890625,0.381591796875,0.90191650390625,0.4140625,0.90087890625,0.37939453125,0.8646240234375,0.371826171875,0.8563232421875,0.40087890625,0.882080078125,0.384765625,0.85205078125,0.380126953125,0.8245849609375,0.40087890625,0.842529296875,0.41259765625,0.8709716796875,
- 0.432861328125,0.86083984375,0.40185546875,0.85693359375,0.0294952392578125,0.968826293945313,0.047698974609375,0.991806030273438,0.0164642333984375,0.989532470703125,0.0081939697265625,0.945343017578125,0.048919677734375,0.981704711914063,0.0833740234375,0.96832275390625,0.023651123046875,0.9410400390625,0.025970458984375,0.8974609375,0.07501220703125,0.954437255859375,0.09844970703125,0.92791748046875,0.0579833984375,0.936767578125,0.0897216796875,0.9259033203125,0.08306884765625,0.89605712890625,0.037322998046875,0.90191650390625,0.06988525390625,0.90087890625,0.03515625,0.8646240234375,0.027801513671875,0.8563232421875,0.056732177734375,0.882080078125,0.04058837890625,0.85205078125,0.03594970703125,0.8245849609375,0.056732177734375,0.842529296875,0.06854248046875,0.8709716796875,0.08868408203125,0.86083984375,0.05780029296875,0.85693359375,0.76708984375,0.25439453125,0.77978515625,0.21484375,0.7431640625,0.20947265625,0.7236328125,0.22314453125,0.71484375,0.21142578125,0.71728515625,0.22265625,0.728515625,0.20751953125,0.712890625,0.20263671875,0.7578125,0.201171875,0.72705078125,0.19384765625,0.75830078125,0.193359375,0.216796875,0.22509765625,0.177490234375,0.23779296875,0.1719970703125,0.20166015625,0.185791015625,0.181640625,0.173828125,0.17333984375,0.1851806640625,0.17578125,0.1700439453125,0.18701171875,0.1650390625,0.1708984375,0.16357421875,0.2158203125,0.1561279296875,0.185546875,0.1556396484375,0.21630859375,0.5283203125,0.22509765625,0.489013671875,0.23779296875,0.4833984375,0.20166015625,0.497314453125,0.181640625,0.4853515625,0.17333984375,0.49658203125,0.17578125,0.4814453125,0.18701171875,0.4765625,0.1708984375,0.474853515625,0.2158203125,0.467529296875,0.185546875,0.467041015625,0.21630859375,0.111328125,0.23779296875,0.1241455078125,0.19873046875,0.087890625,0.19287109375,0.06787109375,0.20703125,0.059539794921875,0.19482421875,0.061920166015625,0.20654296875,0.07305908203125,0.19091796875,0.057373046875,0.18603515625,0.1021728515625,0.1845703125,0.0716552734375,0.17724609375,0.10260009765625,
- 0.1767578125,0.038909912109375,0.07568359375,0.0167999267578125,0.09033203125,0.0081939697265625,0.07568359375,0.027435302734375,0.03662109375,0.040496826171875,0.04150390625,0.018157958984375,0.01904296875,0.028533935546875,0.017578125,0.94482421875,0.7509765625,0.95703125,0.7587890625,0.95654296875,0.7806396484375,0.9365234375,0.765380859375,0.93017578125,0.757080078125,0.9345703125,0.795166015625,0.92578125,0.7806396484375,0.3994140625,0.07568359375,0.37744140625,0.09033203125,0.36865234375,0.07568359375,0.387939453125,0.03662109375,0.401123046875,0.04150390625,0.378662109375,0.01904296875,0.38916015625,0.017578125,0.42041015625,0.669189453125,0.4326171875,0.677001953125,0.432373046875,0.69873046875,0.412109375,0.683349609375,0.405517578125,0.67529296875,0.41015625,0.713134765625,0.401611328125,0.69873046875,0.44873046875,0.07568359375,0.426513671875,0.09033203125,0.41796875,0.07568359375,0.437255859375,0.03662109375,0.4501953125,0.04150390625,0.427978515625,0.01904296875,0.438232421875,0.017578125,0.96142578125,0.390625,0.9736328125,0.3984375,0.97314453125,0.419921875,0.953125,0.40478515625,0.9462890625,0.396484375,0.951171875,0.4345703125,0.9423828125,0.419921875,0.301025390625,0.09228515625,0.279052734375,0.10693359375,0.270263671875,0.09228515625,0.28955078125,0.052734375,0.302734375,0.0576171875,0.2802734375,0.03515625,0.290771484375,0.03369140625,0.87939453125,0.669189453125,0.8916015625,0.677001953125,0.89111328125,0.69873046875,0.87109375,0.683349609375,0.8642578125,0.67529296875,0.869140625,0.713134765625,0.8603515625,0.69873046875,0.350341796875,0.09228515625,0.328125,0.10693359375,0.319580078125,0.09228515625,0.3388671875,0.052734375,0.351806640625,0.0576171875,0.32958984375,0.03515625,0.33984375,0.03369140625,0.50244140625,0.7509765625,0.5146484375,0.7587890625,0.51416015625,0.7806396484375,0.494140625,0.765380859375,0.487548828125,0.757080078125,0.4921875,0.795166015625,0.4833984375,0.7806396484375,0.75048828125,0.4697265625,0.712890625,0.45361328125,0.7431640625,0.44287109375,0.7431640625,0.49560546875,
- 0.77294921875,0.44091796875,0.7587890625,0.49072265625,0.74658203125,0.532958984375,0.77197265625,0.4921875,0.958984375,0.09033203125,0.94580078125,0.08544921875,0.94677734375,0.06640625,0.95751953125,0.125,0.93603515625,0.06787109375,0.935546875,0.10791015625,0.9345703125,0.1396484375,0.92578125,0.125,0.6640625,0.09033203125,0.650390625,0.08544921875,0.65185546875,0.06640625,0.662109375,0.125,0.64111328125,0.06787109375,0.64013671875,0.10791015625,0.6396484375,0.1396484375,0.630859375,0.125,0.896484375,0.47265625,0.8603515625,0.45703125,0.8896484375,0.447265625,0.88916015625,0.49755859375,0.91748046875,0.4453125,0.90380859375,0.49267578125,0.892578125,0.532958984375,0.9169921875,0.494140625,0.8173828125,0.16748046875,0.83349609375,0.205078125,0.84423828125,0.1748046875,0.78515625,0.17431640625,0.84619140625,0.14501953125,0.7958984375,0.15966796875,0.7783203125,0.15625,0.79443359375,0.14599609375,0.51318359375,0.0576171875,0.53564453125,0.04638671875,0.517578125,0.04541015625,0.480712890625,0.05615234375,0.5341796875,0.03662109375,0.49267578125,0.03955078125,0.467041015625,0.03515625,0.480712890625,0.02685546875,0.669921875,0.504150390625,0.70751953125,0.520263671875,0.6767578125,0.53076171875,0.67724609375,0.47802734375,0.6474609375,0.532958984375,0.66162109375,0.48291015625,0.67333984375,0.44091796875,0.64794921875,0.48193359375,0.90966796875,0.09033203125,0.896484375,0.08544921875,0.8974609375,0.06640625,0.908203125,0.125,0.88720703125,0.06787109375,0.88623046875,0.10791015625,0.8857421875,0.1396484375,0.876953125,0.125,0.2049560546875,0.09033203125,0.191650390625,0.08544921875,0.19287109375,0.06640625,0.203369140625,0.125,0.1822509765625,0.06787109375,0.181396484375,0.10791015625,0.1807861328125,0.1396484375,0.172119140625,0.125,0.109619140625,0.4560546875,0.07373046875,0.44091796875,0.102783203125,0.4306640625,0.1026611328125,0.48095703125,0.1309814453125,0.4287109375,0.11737060546875,0.4765625,0.10601806640625,0.5166015625,0.1302490234375,0.4775390625,0.2587890625,0.16650390625,0.22119140625,0.14990234375,0.25146484375,
- 0.1396484375,0.252197265625,0.1982421875,0.281005859375,0.13720703125,0.266845703125,0.1875,0.27001953125,0.205078125,0.2802734375,0.18896484375,0.5224609375,0.504150390625,0.56005859375,0.520263671875,0.529296875,0.53076171875,0.529296875,0.47802734375,0.499755859375,0.532958984375,0.51416015625,0.48291015625,0.52587890625,0.44091796875,0.50048828125,0.48193359375,0.794921875,0.07421875,0.78173828125,0.0693359375,0.78271484375,0.0498046875,0.79345703125,0.1083984375,0.77197265625,0.0517578125,0.771484375,0.091796875,0.77099609375,0.123046875,0.76220703125,0.10888671875,0.61474609375,0.10693359375,0.6015625,0.10205078125,0.6025390625,0.0830078125,0.61279296875,0.1416015625,0.591796875,0.08447265625,0.59130859375,0.12451171875,0.59033203125,0.15576171875,0.58154296875,0.1416015625,0.257080078125,0.4560546875,0.22119140625,0.44091796875,0.250244140625,0.4306640625,0.250244140625,0.48095703125,0.278564453125,0.4287109375,0.264892578125,0.4765625,0.25341796875,0.5166015625,0.27783203125,0.4775390625,0.6533203125,0.208984375,0.69091796875,0.22509765625,0.66064453125,0.23583984375,0.65966796875,0.17724609375,0.630859375,0.23779296875,0.64501953125,0.1875,0.64208984375,0.17041015625,0.6318359375,0.18603515625,0.60302734375,0.4697265625,0.5654296875,0.45361328125,0.595703125,0.44287109375,0.595703125,0.49560546875,0.62548828125,0.44091796875,0.611328125,0.49072265625,0.59912109375,0.532958984375,0.62451171875,0.4921875,0.97509765625,0.48388671875,0.9619140625,0.47900390625,0.962890625,0.4599609375,0.9736328125,0.518310546875,0.95263671875,0.46142578125,0.95166015625,0.50146484375,0.951171875,0.532958984375,0.9423828125,0.518310546875,0.254150390625,0.0576171875,0.2408447265625,0.052734375,0.241943359375,0.03369140625,0.25244140625,0.09228515625,0.2314453125,0.03515625,0.2305908203125,0.0751953125,0.22998046875,0.10693359375,0.22119140625,0.09228515625,0.1771240234375,0.4892578125,0.2130126953125,0.504638671875,0.1839599609375,0.514404296875,0.18408203125,0.46435546875,0.1556396484375,0.5166015625,0.1693115234375,0.46923828125,
- 0.1806640625,0.4287109375,0.1563720703125,0.4677734375,0.5712890625,0.208984375,0.60888671875,0.22509765625,0.57861328125,0.23583984375,0.57763671875,0.17724609375,0.548828125,0.23779296875,0.56298828125,0.1875,0.56005859375,0.17041015625,0.5498046875,0.18603515625,0.8173828125,0.504150390625,0.85498046875,0.520263671875,0.82470703125,0.53076171875,0.82470703125,0.47802734375,0.794921875,0.532958984375,0.80908203125,0.48291015625,0.8212890625,0.44091796875,0.79541015625,0.48193359375,0.53271484375,0.10693359375,0.51953125,0.10205078125,0.5205078125,0.0830078125,0.53125,0.1416015625,0.509765625,0.08447265625,0.50927734375,0.12451171875,0.50830078125,0.15576171875,0.499755859375,0.1416015625,0.84423828125,0.07421875,0.8310546875,0.0693359375,0.83203125,0.0498046875,0.8427734375,0.1083984375,0.8212890625,0.0517578125,0.82080078125,0.091796875,0.81982421875,0.123046875,0.81103515625,0.10888671875,0.02960205078125,0.4892578125,0.06549072265625,0.504638671875,0.036468505859375,0.514404296875,0.036529541015625,0.46435546875,0.0081939697265625,0.5166015625,0.0218505859375,0.46923828125,0.033233642578125,0.4287109375,0.00893402099609375,0.4677734375,0.9482421875,0.18408203125,0.96484375,0.2216796875,0.97509765625,0.19140625,0.91650390625,0.1904296875,0.9775390625,0.16162109375,0.92724609375,0.17578125,0.90966796875,0.1728515625,0.92578125,0.16259765625,0.71044921875,0.04443359375,0.69921875,0.02197265625,0.6982421875,0.03955078125,0.708984375,0.07666015625,0.689453125,0.0234375,0.6923828125,0.06494140625,0.68798828125,0.09033203125,0.68017578125,0.07666015625,0.611328125,0.041015625,0.6337890625,0.02978515625,0.6162109375,0.02880859375,0.5791015625,0.03955078125,0.63232421875,0.02001953125,0.5908203125,0.02294921875,0.5654296875,0.0185546875,0.5791015625,0.0107421875,0.10333251953125,0.07421875,0.1258544921875,0.0625,0.1080322265625,0.0615234375,0.07098388671875,0.072265625,0.12445068359375,0.052734375,0.0830078125,0.0556640625,0.057373046875,0.0517578125,0.07098388671875,0.04345703125,0.398681640625,0.24853515625,0.421142578125,
- 0.2236328125,0.424072265625,0.25439453125,0.385009765625,0.22802734375,0.450927734375,0.234375,0.408935546875,0.1904296875,0.44677734375,0.189453125,0.76904296875,0.7138671875,0.79736328125,0.687744140625,0.76220703125,0.684326171875,0.79248046875,0.729736328125,0.78515625,0.6533203125,0.83642578125,0.7021484375,0.83740234375,0.657958984375,0.71240234375,0.624267578125,0.73828125,0.595947265625,0.74169921875,0.63134765625,0.6962890625,0.600830078125,0.77294921875,0.608154296875,0.72412109375,0.556884765625,0.76806640625,0.555908203125,0.69140625,0.1240234375,0.7099609375,0.14404296875,0.71240234375,0.119140625,0.68017578125,0.140625,0.734375,0.13525390625,0.69970703125,0.17138671875,0.73095703125,0.17236328125,0.172607421875,0.73779296875,0.200927734375,0.768310546875,0.20458984375,0.730224609375,0.1556396484375,0.762939453125,0.2381591796875,0.7548828125,0.1854248046875,0.810302734375,0.2330322265625,0.8115234375,0.9169921875,0.8280029296875,0.94775390625,0.8563232421875,0.90966796875,0.8599853515625,0.9423828125,0.81103515625,0.9345703125,0.89349365234375,0.98974609375,0.8408203125,0.9912109375,0.888427734375,0.58251953125,0.721923828125,0.6103515625,0.69140625,0.6142578125,0.729736328125,0.5654296875,0.69677734375,0.64794921875,0.704833984375,0.59521484375,0.6494140625,0.642578125,0.648193359375,0.12225341796875,0.60791015625,0.1484375,0.57958984375,0.15185546875,0.614990234375,0.10650634765625,0.58447265625,0.182861328125,0.591796875,0.134033203125,0.54052734375,0.17822265625,0.539306640625,0.129150390625,0.322265625,0.1546630859375,0.298828125,0.1229248046875,0.29541015625,0.1502685546875,0.33642578125,0.1435546875,0.267578125,0.189697265625,0.3115234375,0.190673828125,0.27197265625,0.317138671875,0.51025390625,0.3408203125,0.48486328125,0.34375,0.5166015625,0.30322265625,0.4892578125,0.371826171875,0.49609375,0.327880859375,0.44970703125,0.367431640625,0.44873046875,0.423095703125,0.34619140625,0.399658203125,0.32080078125,0.396484375,0.3525390625,0.437255859375,0.3251953125,0.36865234375,0.33203125,0.41259765625,
- 0.2861328125,0.372802734375,0.28515625,0.19482421875,0.404296875,0.22021484375,0.380859375,0.1884765625,0.37744140625,0.2158203125,0.41845703125,0.2091064453125,0.349609375,0.255126953125,0.3935546875,0.256103515625,0.35400390625,0.2347412109375,0.31396484375,0.25732421875,0.28955078125,0.26025390625,0.31982421875,0.22119140625,0.2939453125,0.286865234375,0.30029296875,0.2449951171875,0.255859375,0.282958984375,0.2548828125,0.408447265625,0.632080078125,0.43701171875,0.605712890625,0.401611328125,0.602294921875,0.431884765625,0.647705078125,0.424560546875,0.5712890625,0.475830078125,0.6201171875,0.47705078125,0.575927734375,0.61376953125,0.624267578125,0.64013671875,0.595947265625,0.6435546875,0.63134765625,0.59814453125,0.600830078125,0.67431640625,0.608154296875,0.62548828125,0.556884765625,0.669921875,0.555908203125,0.0950927734375,0.14501953125,0.11517333984375,0.12646484375,0.09014892578125,0.1240234375,0.1116943359375,0.15576171875,0.1064453125,0.10205078125,0.1427001953125,0.13623046875,0.1435546875,0.10546875,0.83544921875,0.7945556640625,0.86572265625,0.7662353515625,0.82763671875,0.7625732421875,0.8603515625,0.8115234375,0.8525390625,0.729248046875,0.90771484375,0.78173828125,0.9091796875,0.734130859375,0.64794921875,0.8203125,0.67626953125,0.7896728515625,0.6796875,0.827880859375,0.630859375,0.7950439453125,0.71337890625,0.8031005859375,0.66064453125,0.747802734375,0.70849609375,0.74658203125,0.025146484375,0.70556640625,0.053436279296875,0.675048828125,0.05712890625,0.713134765625,0.0081939697265625,0.680419921875,0.090576171875,0.6884765625,0.0379638671875,0.633056640625,0.0855712890625,0.6318359375,0.31884765625,0.60791015625,0.344970703125,0.57958984375,0.348388671875,0.614990234375,0.30322265625,0.58447265625,0.37939453125,0.591796875,0.330810546875,0.54052734375,0.374755859375,0.539306640625,0.480712890625,0.31396484375,0.5029296875,0.28955078125,0.505859375,0.31982421875,0.467041015625,0.2939453125,0.53271484375,0.30029296875,0.490966796875,0.255859375,0.52880859375,0.2548828125,0.515625,0.624267578125,
- 0.54150390625,0.595947265625,0.544921875,0.63134765625,0.499755859375,0.600830078125,0.576171875,0.608154296875,0.52734375,0.556884765625,0.5712890625,0.555908203125,0.12225341796875,0.706298828125,0.1484375,0.677734375,0.15185546875,0.713134765625,0.10650634765625,0.682861328125,0.182861328125,0.690185546875,0.134033203125,0.638916015625,0.17822265625,0.6376953125,0.0131683349609375,0.1611328125,0.033233642578125,0.142578125,0.0081939697265625,0.14013671875,0.0297393798828125,0.17236328125,0.024505615234375,0.1181640625,0.060821533203125,0.15283203125,0.061614990234375,0.12158203125,0.05792236328125,0.73779296875,0.086181640625,0.768310546875,0.08990478515625,0.730224609375,0.04095458984375,0.762939453125,0.12335205078125,0.7548828125,0.07073974609375,0.810302734375,0.11834716796875,0.8115234375,0.9169921875,0.92633056640625,0.94775390625,0.95465087890625,0.90966796875,0.958343505859375,0.9423828125,0.909423828125,0.9345703125,0.991806030273438,0.98974609375,0.939178466796875,0.9912109375,0.986770629882813,0.484130859375,0.65576171875,0.51220703125,0.686279296875,0.51611328125,0.648193359375,0.467041015625,0.680908203125,0.54931640625,0.673095703125,0.496826171875,0.728515625,0.54443359375,0.729736328125,0.2205810546875,0.60791015625,0.246826171875,0.57958984375,0.250244140625,0.614990234375,0.204833984375,0.58447265625,0.28125,0.591796875,0.232421875,0.54052734375,0.2763671875,0.539306640625,0.8740234375,0.28125,0.896484375,0.2568359375,0.8994140625,0.287109375,0.8603515625,0.2607421875,0.92626953125,0.26708984375,0.88427734375,0.22314453125,0.92236328125,0.22216796875,0.2205810546875,0.706298828125,0.246826171875,0.677734375,0.250244140625,0.713134765625,0.204833984375,0.682861328125,0.28125,0.690185546875,0.232421875,0.638916015625,0.2763671875,0.6376953125,0.90869140625,0.624267578125,0.93505859375,0.595947265625,0.9384765625,0.63134765625,0.89306640625,0.600830078125,0.9697265625,0.608154296875,0.9208984375,0.556884765625,0.96484375,0.555908203125,0.314208984375,0.18359375,0.332763671875,0.16357421875,0.335205078125,
- 0.18896484375,0.30322265625,0.1669921875,0.357177734375,0.17236328125,0.32275390625,0.13623046875,0.35400390625,0.13525390625,0.402099609375,0.73779296875,0.430419921875,0.768310546875,0.43408203125,0.730224609375,0.385009765625,0.762939453125,0.467529296875,0.7548828125,0.4150390625,0.810302734375,0.46240234375,0.8115234375,0.74609375,0.8203125,0.7744140625,0.7896728515625,0.7783203125,0.827880859375,0.7294921875,0.7950439453125,0.8115234375,0.8031005859375,0.75927734375,0.747802734375,0.806640625,0.74658203125,0.6806640625,0.721923828125,0.708984375,0.69140625,0.71240234375,0.729736328125,0.66357421875,0.69677734375,0.74609375,0.704833984375,0.693359375,0.6494140625,0.7412109375,0.648193359375,0.023895263671875,0.60791015625,0.05010986328125,0.57958984375,0.053497314453125,0.614990234375,0.0081939697265625,0.58447265625,0.08453369140625,0.591796875,0.0357666015625,0.54052734375,0.079833984375,0.539306640625,0.316650390625,0.2646484375,0.33935546875,0.240234375,0.34228515625,0.2705078125,0.30322265625,0.24462890625,0.368896484375,0.2509765625,0.326904296875,0.20654296875,0.36474609375,0.20556640625,0.31884765625,0.706298828125,0.344970703125,0.677734375,0.348388671875,0.713134765625,0.30322265625,0.682861328125,0.37939453125,0.690185546875,0.330810546875,0.638916015625,0.374755859375,0.6376953125,0.810546875,0.624267578125,0.8369140625,0.595947265625,0.84033203125,0.63134765625,0.794921875,0.600830078125,0.87109375,0.608154296875,0.822265625,0.556884765625,0.86669921875,0.555908203125,0.396240234375,0.16748046875,0.414794921875,0.1474609375,0.417236328125,0.17236328125,0.385009765625,0.15087890625,0.439208984375,0.15625,0.404541015625,0.11962890625,0.435791015625,0.119140625,0.287353515625,0.73779296875,0.315673828125,0.768310546875,0.3193359375,0.730224609375,0.270263671875,0.762939453125,0.352783203125,0.7548828125,0.300048828125,0.810302734375,0.34765625,0.8115234375,0.54931640625,0.7540283203125,0.57763671875,0.78466796875,0.58154296875,0.74658203125,0.53271484375,0.779296875,0.61474609375,0.7713623046875,0.5625,
- 0.8267822265625,0.60986328125,0.827880859375,0.9833984375,0.712646484375,0.95263671875,0.684326171875,0.9912109375,0.6806640625,0.9580078125,0.729736328125,0.96630859375,0.647216796875,0.91064453125,0.699951171875,0.90966796875,0.65234375,0.417236328125,0.542236328125,0.443359375,0.513916015625,0.44677734375,0.54931640625,0.401611328125,0.518798828125,0.477783203125,0.5263671875,0.42919921875,0.47509765625,0.47314453125,0.47412109375,0.0222930908203125,0.3134765625,0.045806884765625,0.2880859375,0.04888916015625,0.31982421875,0.0081939697265625,0.29248046875,0.07672119140625,0.29931640625,0.032958984375,0.2529296875,0.072509765625,0.251953125,0.833984375,0.42041015625,0.859375,0.39697265625,0.82763671875,0.39404296875,0.85498046875,0.4345703125,0.84814453125,0.3662109375,0.89453125,0.40966796875,0.8955078125,0.3701171875,0.7685546875,0.33837890625,0.7939453125,0.31494140625,0.76220703125,0.31201171875,0.78955078125,0.3525390625,0.78271484375,0.2841796875,0.82861328125,0.328125,0.82958984375,0.28857421875,0.595703125,0.412109375,0.619140625,0.38671875,0.62255859375,0.41845703125,0.58154296875,0.39111328125,0.650390625,0.3974609375,0.6064453125,0.3515625,0.64599609375,0.3505859375,0.65380859375,0.322265625,0.67919921875,0.298828125,0.6474609375,0.29541015625,0.6748046875,0.33642578125,0.66796875,0.267578125,0.7138671875,0.3115234375,0.71484375,0.27197265625,0.439453125,0.44482421875,0.416015625,0.41943359375,0.4130859375,0.451171875,0.45361328125,0.423828125,0.385009765625,0.43017578125,0.428955078125,0.38427734375,0.389404296875,0.38330078125,0.6943359375,0.412109375,0.7177734375,0.38671875,0.720703125,0.41845703125,0.68017578125,0.39111328125,0.74853515625,0.3974609375,0.705078125,0.3515625,0.74462890625,0.3505859375,0.34130859375,0.412109375,0.317626953125,0.38671875,0.314697265625,0.41845703125,0.355224609375,0.39111328125,0.286865234375,0.3974609375,0.33056640625,0.3515625,0.291015625,0.3505859375,0.55517578125,0.322265625,0.58056640625,0.298828125,0.548828125,0.29541015625,0.576171875,0.33642578125,0.56982421875,
- 0.267578125,0.61572265625,0.3115234375,0.61669921875,0.27197265625,0.047271728515625,0.404296875,0.07275390625,0.380859375,0.04095458984375,0.37744140625,0.06829833984375,0.41845703125,0.0616455078125,0.349609375,0.10772705078125,0.3935546875,0.10870361328125,0.35400390625,0.923828125,0.3076171875,0.947265625,0.3330078125,0.9501953125,0.30126953125,0.90966796875,0.32861328125,0.97802734375,0.32177734375,0.9345703125,0.3681640625,0.97412109375,0.369140625,0.49755859375,0.412109375,0.52099609375,0.38671875,0.52392578125,0.41845703125,0.4833984375,0.39111328125,0.5517578125,0.3974609375,0.50830078125,0.3515625,0.5478515625,0.3505859375
- }
- UVIndex: *3009 {
- a: 0,1,2,3,1,0,1,4,2,3,5,1,6,1,5,5,7,6,4,1,8,6,8,1,8,9,4,10,4,9,9,11,10,11,9,12,9,8,12,12,13,11,6,14,8,12,8,14,15,14,6,15,6,7,14,16,12,14,15,16,7,17,15,16,15,17,17,7,18,18,19,17,19,16,17,19,18,20,20,21,19,22,16,19,21,22,19,21,23,22,23,16,22,23,21,24,12,16,25,23,25,16,13,12,25,24,26,23,25,23,26,25,26,13,26,24,27,27,13,26,28,29,30,31,29,28,29,32,30,31,33,29,34,29,33,33,35,34,32,29,36,34,36,29,36,37,32,38,32,37,37,39,38,39,37,40,37,36,40,40,41,39,34,42,36,40,36,42,43,42,34,43,34,35,42,44,40,42,43,44,35,45,43,44,43,45,45,35,46,46,47,45,47,44,45,47,46,48,48,49,47,50,44,47,49,50,47,49,51,50,51,44,50,51,49,52,40,44,53,51,53,44,41,40,53,52,54,51,53,51,54,53,54,41,54,52,55,55,41,54,56,57,58,59,57,56,57,60,58,59,61,57,62,57,61,61,63,62,60,57,64,62,64,57,64,65,60,66,60,65,65,67,66,67,65,68,65,64,68,68,69,67,62,70,64,68,64,70,71,70,62,71,62,63,70,72,68,70,71,72,63,73,71,72,71,73,73,63,74,74,75,73,75,72,73,75,74,76,76,77,75,78,72,75,77,78,75,77,79,78,79,72,78,79,77,80,68,72,81,79,81,72,69,68,81,80,82,79,81,79,82,81,82,69,82,80,83,83,69,82,84,85,86,87,85,84,85,88,86,87,89,85,90,85,89,89,91,90,88,85,92,90,92,85,92,93,88,94,88,93,93,95,94,95,93,96,93,92,96,96,97,95,90,98,92,96,92,98,99,98,90,99,90,91,98,100,96,98,99,100,91,101,99,100,99,101,101,91,102,102,103,101,103,100,101,103,102,104,104,105,103,106,100,103,105,106,103,105,107,106,107,100,106,107,105,108,96,100,109,107,109,100,97,96,109,108,110,107,109,107,110,109,110,97,110,108,111,111,97,110,112,113,114,115,112,114,113,112,116,117,113,116,112,115,118,119,118,115,116,120,117,121,117,120,116,112,122,120,116,122,112,118,122,121,120,123,123,120,122,124,121,123,122,118,125,118,119,125,126,123,122,124,123,126,127,125,119,119,128,127,129,122,125,125,127,129,129,126,122,128,130,127,127,130,129,131,130,128,132,130,131,133,124,126,133,126,129,124,133,134,130,135,129,135,133,129,130,132,135,135,134,133,134,135,132,136,137,138,139,136,138,137,136,140,141,137,140,136,139,142,143,142,139,140,144,141,145,141,144,140,136,146,144,140,146,136,142,146,145,144,147,147,144,146,
- 148,145,147,146,142,149,142,143,149,150,147,146,148,147,150,151,149,143,143,152,151,153,146,149,149,151,153,153,150,146,152,154,151,151,154,153,155,154,152,156,154,155,157,148,150,157,150,153,148,157,158,154,159,153,159,157,153,154,156,159,159,158,157,158,159,156,160,161,162,163,160,162,161,160,164,165,161,164,160,163,166,167,166,163,164,168,165,169,165,168,164,160,170,168,164,170,160,166,170,169,168,171,171,168,170,172,169,171,170,166,173,166,167,173,174,171,170,172,171,174,175,173,167,167,176,175,177,170,173,173,175,177,177,174,170,176,178,175,175,178,177,179,178,176,180,178,179,181,172,174,181,174,177,172,181,182,178,183,177,183,181,177,178,180,183,183,182,181,182,183,180,184,185,186,187,184,186,185,184,188,189,185,188,184,187,190,191,190,187,188,192,189,193,189,192,188,184,194,192,188,194,184,190,194,193,192,195,195,192,194,196,193,195,194,190,197,190,191,197,198,195,194,196,195,198,199,197,191,191,200,199,201,194,197,197,199,201,201,198,194,200,202,199,199,202,201,203,202,200,204,202,203,205,196,198,205,198,201,196,205,206,202,207,201,207,205,201,202,204,207,207,206,205,206,207,204,208,209,210,211,208,210,209,208,212,213,209,212,208,211,214,215,214,211,212,216,213,217,213,216,212,208,218,216,212,218,208,214,218,217,216,219,219,216,218,220,217,219,218,214,221,214,215,221,222,219,218,220,219,222,223,221,215,215,224,223,225,218,221,221,223,225,225,222,218,224,226,223,223,226,225,227,226,224,228,226,227,229,220,222,229,222,225,220,229,230,226,231,225,231,229,225,226,228,231,231,230,229,230,231,228,232,233,234,235,232,234,235,236,237,234,238,235,236,235,238,236,238,239,234,240,238,239,238,241,238,240,241,241,240,242,243,244,245,246,243,245,246,247,248,245,249,246,247,246,249,247,249,250,245,251,249,250,249,252,249,251,252,252,251,253,254,255,256,257,254,256,257,258,259,256,260,257,258,257,260,258,260,261,256,262,260,261,260,263,260,262,263,263,262,264,265,266,267,268,265,267,268,269,270,267,271,268,269,268,271,269,271,272,267,273,271,272,271,274,271,273,274,274,273,275,276,277,278,279,276,278,280,276,279,279,278,281,
- 280,279,282,282,279,281,283,284,285,283,285,286,287,283,286,285,288,286,287,286,289,286,288,289,290,291,292,293,290,292,294,290,293,293,292,295,294,293,296,296,293,295,297,298,299,297,299,300,301,297,300,299,302,300,301,300,303,300,302,303,304,305,306,307,304,306,308,304,307,307,306,309,308,307,310,310,307,309,311,312,313,311,313,314,315,311,314,313,316,314,315,314,317,314,316,317,318,319,320,321,318,320,322,318,321,321,320,323,322,321,324,324,321,323,325,326,327,325,327,328,329,325,328,327,330,328,329,328,331,328,330,331,332,333,334,335,332,334,336,332,335,335,334,337,336,335,338,338,335,337,339,340,341,339,341,342,343,339,342,341,344,342,343,342,345,342,344,345,346,347,348,349,347,346,350,346,348,346,351,349,350,351,346,352,349,351,353,351,350,352,351,353,354,355,356,354,357,355,356,355,358,355,357,359,355,359,358,357,360,359,361,358,359,359,360,361,362,363,364,362,365,363,364,363,366,363,365,367,367,366,363,365,368,367,369,366,367,367,368,369,370,371,372,373,371,370,374,370,372,370,375,373,374,375,370,376,373,375,377,375,374,376,375,377,378,379,380,381,379,378,382,378,380,378,383,381,382,383,378,384,381,383,385,383,382,384,383,385,386,387,388,386,388,389,387,390,388,388,391,389,388,390,391,389,391,392,390,393,391,391,393,392,394,395,396,397,395,394,398,394,396,394,399,397,398,399,394,400,397,399,401,399,398,400,399,401,402,403,404,402,405,403,404,403,406,403,405,407,403,407,406,405,408,407,409,406,407,407,408,409,410,411,412,410,413,411,412,411,414,411,413,415,415,414,411,413,416,415,417,414,415,415,416,417,418,419,420,421,419,418,422,418,420,418,423,421,422,423,418,424,421,423,425,423,422,424,423,425,426,427,428,429,427,426,430,426,428,426,431,429,430,431,426,432,429,431,433,431,430,432,431,433,434,435,436,437,435,434,438,434,436,434,439,437,438,439,434,440,437,439,441,439,438,440,439,441,442,443,444,442,445,443,444,443,446,443,445,447,443,447,446,445,448,447,449,446,447,447,448,449,450,451,452,450,453,451,452,451,454,451,453,455,455,454,451,453,456,455,457,454,455,455,456,457,458,459,460,461,459,458,462,458,460,
- 458,463,461,462,463,458,464,461,463,465,463,462,464,463,465,466,467,468,469,467,466,470,466,468,466,471,469,470,471,466,472,469,471,473,471,470,472,471,473,474,475,476,477,475,474,478,474,476,474,479,477,478,479,474,480,477,479,481,479,478,480,479,481,482,483,484,482,485,483,484,483,486,483,485,487,483,487,486,485,488,487,489,486,487,487,488,489,490,491,492,490,493,491,492,491,494,491,493,495,495,494,491,493,496,495,497,494,495,495,496,497,498,499,500,501,499,498,502,498,500,498,503,501,502,503,498,504,501,503,505,503,502,504,503,505,506,507,508,509,507,506,510,506,508,506,511,509,510,511,506,512,509,511,513,511,510,512,511,513,514,515,516,517,515,514,518,514,516,514,519,517,518,519,514,520,517,519,521,519,518,520,519,521,522,523,524,522,525,523,524,523,526,523,525,527,523,527,526,525,528,527,529,526,527,527,528,529,530,531,532,530,533,531,532,531,534,531,533,535,535,534,531,533,536,535,537,534,535,535,536,537,538,539,540,541,539,538,542,538,540,538,543,541,542,543,538,544,541,543,545,543,542,544,543,545,546,547,548,549,547,546,550,546,548,546,551,549,550,551,546,552,549,551,553,551,550,552,551,553,554,555,556,554,556,557,555,558,556,556,559,557,556,558,559,557,559,560,558,561,559,559,561,560,562,563,564,562,564,565,563,566,564,564,567,565,564,566,567,565,567,568,566,569,567,567,569,568,570,571,572,570,572,573,571,574,572,572,575,573,572,574,575,573,575,576,574,577,575,575,577,576,578,579,580,578,581,579,580,579,582,579,581,583,582,579,584,584,579,583,585,586,587,585,588,586,587,586,589,586,588,590,589,586,591,591,586,590,592,593,594,592,595,593,594,593,596,593,595,597,596,593,598,598,593,597,599,600,601,599,602,600,601,600,603,600,602,604,603,600,605,605,600,604,606,607,608,606,609,607,608,607,610,607,609,611,610,607,612,612,607,611,613,614,615,613,616,614,615,614,617,614,616,618,617,614,619,619,614,618,620,621,622,620,623,621,622,621,624,621,623,625,624,621,626,626,621,625,627,628,629,627,630,628,629,628,631,628,630,632,631,628,633,633,628,632,634,635,636,634,637,635,636,635,638,635,637,639,638,635,640,640,635,639,
- 641,642,643,641,644,642,643,642,645,642,644,646,645,642,647,647,642,646,648,649,650,648,651,649,650,649,652,649,651,653,652,649,654,654,649,653,655,656,657,655,658,656,657,656,659,656,658,660,659,656,661,661,656,660,662,663,664,662,665,663,664,663,666,663,665,667,666,663,668,668,663,667,669,670,671,669,672,670,671,670,673,670,672,674,673,670,675,675,670,674,676,677,678,676,679,677,678,677,680,677,679,681,680,677,682,682,677,681,683,684,685,683,686,684,685,684,687,684,686,688,687,684,689,689,684,688,690,691,692,690,693,691,692,691,694,691,693,695,694,691,696,696,691,695,697,698,699,697,700,698,699,698,701,698,700,702,701,698,703,703,698,702,704,705,706,704,707,705,706,705,708,705,707,709,708,705,710,710,705,709,711,712,713,711,714,712,713,712,715,712,714,716,715,712,717,717,712,716,718,719,720,718,721,719,720,719,722,719,721,723,722,719,724,724,719,723,725,726,727,725,728,726,727,726,729,726,728,730,729,726,731,731,726,730,732,733,734,732,735,733,734,733,736,733,735,737,736,733,738,738,733,737,739,740,741,739,742,740,741,740,743,740,742,744,743,740,745,745,740,744,746,747,748,746,749,747,748,747,750,747,749,751,750,747,752,752,747,751,753,754,755,753,756,754,755,754,757,754,756,758,757,754,759,759,754,758,760,761,762,760,763,761,762,761,764,761,763,765,764,761,766,766,761,765,767,768,769,767,770,768,769,768,771,768,770,772,771,768,773,773,768,772,774,775,776,774,777,775,776,775,778,775,777,779,778,775,780,780,775,779,781,782,783,781,784,782,783,782,785,782,784,786,785,782,787,787,782,786,788,789,790,788,791,789,790,789,792,789,791,793,792,789,794,794,789,793,795,796,797,795,798,796,797,796,799,796,798,800,799,796,801,801,796,800,802,803,804,802,805,803,804,803,806,803,805,807,806,803,808,808,803,807,809,810,811,809,812,810,811,810,813,810,812,814,813,810,815,815,810,814,816,817,818,816,819,817,818,817,820,817,819,821,820,817,822,822,817,821,823,824,825,823,826,824,825,824,827,824,826,828,827,824,829,829,824,828,830,831,832,830,833,831,832,831,834,831,833,835,834,831,836,836,831,835,837,838,839,837,840,838,839,838,841,
- 838,840,842,841,838,843,843,838,842,844,845,846,844,847,845,846,845,848,845,847,849,848,845,850,850,845,849,851,852,853,851,854,852,853,852,855,852,854,856,855,852,857,857,852,856,858,859,860,858,861,859,860,859,862,859,861,863,862,859,864,864,859,863,865,866,867,865,868,866,867,866,869,866,868,870,869,866,871,871,866,870,872,873,874,872,875,873,874,873,876,873,875,877,876,873,878,878,873,877,879,880,881,879,882,880,881,880,883,880,882,884,883,880,885,885,880,884,886,887,888,886,889,887,888,887,890,887,889,891,890,887,892,892,887,891,893,894,895,893,896,894,895,894,897,894,896,898,897,894,899,899,894,898,900,901,902,900,903,901,902,901,904,901,903,905,904,901,906,906,901,905,907,908,909,907,910,908,909,908,911,908,910,912,911,908,913,913,908,912,914,915,916,914,917,915,916,915,918,915,917,919,918,915,920,920,915,919,921,922,923,921,924,922,923,922,925,922,924,926,925,922,927,927,922,926,928,929,930,928,931,929,930,929,932,929,931,933,932,929,934,934,929,933,935,936,937,935,938,936,937,936,939,936,938,940,939,936,941,941,936,940,942,943,944,942,945,943,944,943,946,943,945,947,946,943,948,948,943,947,949,950,951,949,952,950,951,950,953,950,952,954,953,950,955,955,950,954,956,957,958,956,959,957,958,957,960,957,959,961,960,957,962,962,957,961,963,964,965,963,966,964,965,964,967,964,966,968,967,964,969,969,964,968
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *1865 {
- 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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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: *1003 {
- 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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- 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: "LayerElementColor"
- 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: 2267733799072, "Geometry::", "Mesh" {
- Vertices: *696 {
- a: -6.65234375,367.402587890625,-83.451904296875,-1.15234375,338.595794677734,-88.5633850097656,-6.720703125,339.938537597656,-71.2431030273438,-6.5107421875,343.035278320313,-103.555541992188,-6.7509765625,326.999816894531,-65.8331909179688,-6.3896484375,307.380554199219,-119.977844238281,-1.017578125,297.647521972656,-106.686462402344,-6.31640625,255.021224975586,-127.945571899414,-1.2265625,314.760223388672,-75.8530578613281,-1.3671875,309.545196533203,-53.9587097167969,-6.9443359375,320.256225585938,-35.9713134765625,-6.8671875,269.699432373047,-44.5857238769531,-1.3154296875,262.293060302734,-59.1180725097656,-6.78125,225.197479248047,-55.0417785644531,-3.9443359375,252.097213745117,-87.7699737548828,-0.97265625,253.692337036133,-110.981491088867,-3.9384765625,195.857879638672,-85.2690734863281,-0.974609375,206.374374389648,-107.722305297852,-6.322265625,201.555068969727,-123.846298217773,-1.0478515625,171.715606689453,-94.4025573730469,-6.4140625,158.101806640625,-107.211669921875,-6.66015625,155.517059326172,-69.3520812988281,-1.197265625,171.673858642578,-71.6054382324219,-1.2880859375,177.014465332031,-58.1076049804688,-6.8349609375,163.958206176758,-43.1550750732422,-1.2705078125,216.025360107422,-63.1396789550781,-2.57421875,196.532073974609,-27.8868713378906,-7.05078125,200.942932128906,-12.3890991210938,-39.255859375,73.3717193603516,102.590469360352,-29.4423828125,49.3900451660156,87.9359436035156,-34.1171875,43.8316955566406,104.669586181641,-36.333984375,57.6175384521484,75.3665618896484,-31.7138671875,30.0304260253906,105.329254150391,-31.3720703125,30.1745300292969,47.7389831542969,-23.7041015625,17.6236572265625,56.8990478515625,-23.2294921875,-15.5830993652344,22.3436584472656,-24.87109375,23.0381622314453,91.7266387939453,-22.8583984375,10.8130187988281,110.518096923828,-29.0302734375,13.6983947753906,131.083160400391,-21.216796875,-30.1730651855469,105.697052001953,-15.4033203125,-31.1678771972656,89.5079040527344,-14.4912109375,-67.8189697265625,80.6507568359375,-18.0302734375,-31.4093627929688,59.0964965820313,
- -16.7421875,-21.5986938476563,37.8300170898438,-8.69921875,-84.2953491210938,42.2114868164063,-8.830078125,-66.4857788085938,24.7085571289063,-14.267578125,-66.4431762695313,7.90936279296875,-2.4560546875,-103.058837890625,25.371826171875,-6.279296875,-112.2744140625,8.6787109375,-3.8515625,-127.461547851563,43.3724365234375,-1.2421875,-110.801940917969,46.7800903320313,-1.400390625,-110.421844482422,61.2900695800781,-3.845703125,-128.503753662109,70.8751525878906,-8.0478515625,-72.6225891113281,69.9047546386719,-4.0576171875,-102.762298583984,96.3646545410156,-8.265625,-104.677642822266,112.435638427734,-6.65234375,70.2318725585938,-351.643127441406,-1.15234375,42.7287292480469,-341.666778564453,-6.720703125,52.5518493652344,-327.337799072266,-6.5107421875,39.0775451660156,-356.869720458984,-6.7509765625,44.0517272949219,-316.183624267578,-6.3896484375,-0.0113525390625,-353.264282226563,-1.017578125,-1.79519653320313,-336.887969970703,-6.31640625,-49.3400268554688,-333.985534667969,-1.2265625,28.4418334960938,-318.741760253906,-1.3671875,34.8726501464844,-297.173248291016,-6.9443359375,53.1421661376953,-286.951599121094,-6.8681640625,5.0517578125,-269.1328125,-1.3154296875,-8.62872314453125,-278.014465332031,-6.78125,-38.7163391113281,-255.937042236328,-3.9443359375,-31.7843017578125,-297.729614257813,-0.97265625,-42.0089416503906,-318.630035400391,-3.9384765625,-79.2388000488281,-267.445831298828,-0.974609375,-81.3578491210938,-292.148864746094,-6.322265625,-93.5935974121094,-303.701995849609,-1.0478515625,-104.713256835938,-263.283569335938,-6.4140625,-122.907836914063,-267.568969726563,-6.66015625,-106.216156005859,-233.489593505859,-1.197265625,-93.3508911132813,-243.519836425781,-1.2880859375,-81.9767456054688,-234.500183105469,-6.8349609375,-85.8078308105469,-215.023651123047,-1.2705078125,-50.7082824707031,-258.363555908203,-2.57421875,-49.9637145996094,-218.086761474609,-7.05078125,-38.3952331542969,-206.871795654297,-6.65234375,50.2886047363281,276.288604736328,-1.15234375,35.6875305175781,250.934600830078,
- -6.720703125,23.2823181152344,263.096771240234,-6.5107421875,50.0255126953125,244.699340820313,-6.7509765625,10.8209228515625,256.662719726563,-6.3896484375,39.6871337890625,206.829711914063,-1.017578125,23.2497863769531,207.916778564453,-6.31640625,12.1352844238281,161.598175048828,-1.2265625,10.6294250488281,240.846221923828,-1.3671875,-9.49478149414063,250.924163818359,-6.9443359375,-16.388671875,270.69140625,-6.8681640625,-42.2873229980469,226.425567626953,-1.3154296875,-35.9153442382813,211.409851074219,-6.78125,-62.8824768066406,185.613616943359,-3.9443359375,-20.5208129882813,185.183288574219,-0.97265625,-1.7139892578125,171.484252929688,-3.9384765625,-58.5862121582031,143.708709716797,-0.974609375,-34.6261291503906,137.331878662109,-6.322265625,-25.3720397949219,123.275421142578,-1.0478515625,-67.1080322265625,119.344116210938,-6.4140625,-66.0462646484375,100.681274414063,-6.66015625,-96.7104187011719,123.037628173828,-1.197265625,-84.5984497070313,133.966003417969,-1.2880859375,-91.5056762695313,146.733581542969,-6.8349609375,-111.351928710938,146.341430664063,-1.2705078125,-62.5752868652344,173.382720947266,-2.57421875,-102.110321044922,181.109405517578,-7.05078125,-111.146606445313,194.450073242188,-1.1923828125,-81.7501831054688,-16.7267456054688,-6.818359375,-78.5873413085938,-69.6254272460938,-7.2080078125,-118.123168945313,-24.8399658203125,-7.2900390625,-79.4085693359375,31.4976806640625,-0.919921875,-66.31884765625,-60.05517578125,-6.396484375,-12.0867614746094,-94.4383239746094,-1.25,-58.1006774902344,19.4266662597656,-7.048828125,-1.85626220703125,56.7160034179688,-0.5947265625,-6.2454833984375,-70.4251708984375,-6.30078125,46.442626953125,-56.701904296875,-3.8720703125,-7.9989013671875,-21.6785888671875,-0.5048828125,38.9299163818359,-44.7683258056641,-6.4462890625,66.2513275146484,-5.44886779785156,-1.0498046875,5.67620849609375,39.7982788085938,-0.681640625,48.2014770507813,2.74249267578125,-1.1005859375,54.5691528320313,99.6257934570313,-7.0595703125,55.5471496582031,116.480743408203,-3.884765625,63.8679809570313,52.7546997070313,
- -1.0009765625,78.8681488037109,102.442367553711,-6.9326171875,103.357955932617,136.778854370117,-6.666015625,113.859893798828,89.5962219238281,-0.744140625,85.719482421875,53.780029296875,-6.4619140625,114.281234741211,45.8740081787109,-0.8359375,91.2122497558594,78.9739685058594,-1.1923828125,60.7234649658203,-38.4845428466797,-6.8173828125,48.9788818359375,-90.1597900390625,-7.208984375,23.5321655273438,-36.1113891601563,-7.2919921875,76.4472351074219,7.16500854492188,-0.9189453125,63.4325866699219,-84.3994445800781,-6.39453125,105.896759033203,-132.567108154297,-1.2509765625,93.5330657958984,-10.3800201416016,-7.0498046875,157.956878662109,9.70785522460938,-0.5927734375,118.215606689453,-111.141815185547,-6.298828125,172.639434814453,-112.688690185547,-3.8720703125,130.15315246582,-63.8478240966797,-0.5029296875,168.760681152344,-99.1309204101563,-6.4453125,205.980773925781,-69.0114135742188,-1.05078125,160.461761474609,-8.64175415039063,-0.681640625,190.938781738281,-56.1032104492188,-1.1025390625,224.125030517578,35.1416320800781,-7.0625,229.773773193359,51.0520782470703,-3.8857421875,219.956085205078,-12.4609069824219,-1.0029296875,248.243072509766,31.0555725097656,-6.935546875,281.35205078125,57.18212890625,-6.66796875,278.251159667969,8.94354248046875,-0.7451171875,241.223785400391,-17.5818786621094,-6.4619140625,266.4384765625,-33.1552734375,-0.8369140625,253.537475585938,5.07261657714844,-1.19140625,-54.8905029296875,177.372192382813,-6.818359375,-85.0193481445313,133.777526855469,-7.2080078125,-88.5284423828125,193.412963867188,-7.2900390625,-23.310302734375,213.893798828125,-0.919921875,-69.4602661132813,133.745788574219,-6.396484375,-47.9673767089844,73.2367248535156,-1.25,-13.9794921875,191.2509765625,-7.048828125,53.2930297851563,185.925842285156,-0.5947265625,-28.56103515625,88.54052734375,-6.30078125,21.3797149658203,66.8543243408203,-3.8720703125,0.11688232421875,127.996765136719,-0.5048828125,22.8241119384766,80.8817291259766,-6.4462890625,68.5784606933594,94.9895935058594,-1.0498046875,48.7905883789063,167.961486816406,
- -0.681640625,59.4195556640625,112.567016601563,-1.1005859375,124.173889160156,184.913146972656,-7.0595703125,135.336853027344,197.579025268555,-3.884765625,102.59196472168,142.27946472168,-1.0009765625,145.0400390625,172.146499633789,-6.9326171875,185.492767333984,184.076751708984,-6.666015625,164.665802001953,140.455825805664,-0.7451171875,120.427185058594,129.612731933594,-6.4619140625,138.037109375,105.7763671875,-0.8359375,140.286193847656,146.058654785156,-1.193359375,-42.997802734375,-72.133544921875,-6.818359375,-83.3413696289063,-106.494689941406,-7.2099609375,-71.3675842285156,-47.9681701660156,-7.29296875,-3.07467651367188,-44.9809265136719,-0.919921875,-68.3155517578125,-110.534301757813,-6.3955078125,-63.1377563476563,-174.538146972656,-1.2529296875,0.107696533203125,-69.2633972167969,-7.052734375,63.7369995117188,-91.7424926757813,-0.5947265625,-40.4437255859375,-164.751342773438,-6.30078125,2.22390747070313,-198.571014404297,-3.873046875,-2.5684814453125,-134.014770507813,-0.5048828125,7.23373413085938,-185.389312744141,-6.4482421875,55.0778503417969,-183.547149658203,-1.052734375,54.758544921875,-107.939697265625,-0.68359375,50.7571716308594,-164.200836181641,-1.10546875,131.964385986328,-110.980926513672,-7.0654296875,146.01350402832,-101.61930847168,-3.8876953125,100.126937866211,-146.615249633789,-1.0068359375,148.83708190918,-128.69221496582,-6.939453125,190.997833251953,-127.587127685547,-6.6708984375,159.635513305664,-164.370346069336,-0.748046875,114.096710205078,-163.450164794922,-6.46484375,124.970855712891,-191.018402099609,-0.83984375,137.522521972656,-152.674743652344,-1.1904296875,-78.5639038085938,-131.520935058594,-6.8154296875,-128.442565917969,-149.420104980469,-7.20703125,-96.5715942382813,-98.8928833007813,-7.291015625,-31.6244506835938,-120.216247558594,-0.91796875,-115.811340332031,-158.504699707031,-6.392578125,-133.570129394531,-220.213684082031,-1.25,-37.222412109375,-144.057373046875,-7.0498046875,14.3690490722656,-187.557708740234,-0.591796875,-108.882110595703,-219.071563720703,
- -6.2978515625,-80.9073181152344,-265.781341552734,-3.8701171875,-62.5928039550781,-203.691436767578,-0.501953125,-71.5650634765625,-255.217407226563,-6.4453125,-26.1529235839844,-270.389251708984,-1.0498046875,0.249053955078125,-199.540985107422,-0.6806640625,-23.3635559082031,-250.765899658203,-1.1025390625,71.4059143066406,-229.652679443359,-7.0625,87.8560180664063,-225.854919433594,-3.884765625,29.0356140136719,-251.747589111328,-1.00390625,80.9368133544922,-252.180374145508,-6.9365234375,120.771392822266,-266.035247802734,-6.66796875,78.4400634765625,-289.373413085938,-0.7451171875,36.1603393554688,-272.429504394531,-6.4619140625,36.597900390625,-302.062255859375,-0.8369140625,61.8818054199219,-270.622100830078
- }
- PolygonVertexIndex: *1005 {
- a: 0,1,-3,3,1,-1,1,4,-3,3,5,-2,6,1,-6,5,7,-7,4,1,-9,6,8,-2,8,9,-5,10,4,-10,9,11,-11,11,9,-13,9,8,-13,12,13,-12,6,14,-9,12,8,-15,15,14,-7,15,6,-8,14,16,-13,14,15,-17,7,17,-16,16,15,-18,17,7,-19,18,19,-18,19,16,-18,19,18,-21,20,21,-20,22,16,-20,21,22,-20,21,23,-23,23,16,-23,23,21,-25,12,16,-26,23,25,-17,13,12,-26,26,23,-25,25,23,-27,25,26,-14,24,27,-27,27,13,-27,28,29,-31,31,29,-29,29,32,-31,31,33,-30,34,29,-34,33,35,-35,32,29,-37,34,36,-30,36,37,-33,38,32,-38,37,39,-39,39,37,-41,37,36,-41,40,41,-40,34,42,-37,40,36,-43,43,42,-35,43,34,-36,42,44,-41,42,43,-45,35,45,-44,44,43,-46,45,35,-47,46,47,-46,47,44,-46,47,46,-49,48,49,-48,50,44,-48,49,50,-48,49,51,-51,51,44,-51,51,49,-53,40,44,-54,51,53,-45,41,40,-54,54,51,-53,53,51,-55,53,54,-42,52,55,-55,55,41,-55,56,57,-59,59,57,-57,57,60,-59,59,61,-58,62,57,-62,61,63,-63,60,57,-65,62,64,-58,64,65,-61,66,60,-66,65,67,-67,67,65,-69,65,64,-69,68,69,-68,62,70,-65,68,64,-71,71,70,-63,71,62,-64,70,72,-69,70,71,-73,63,73,-72,72,71,-74,73,63,-75,74,75,-74,75,72,-74,75,74,-77,76,77,-76,78,72,-76,77,78,-76,77,79,-79,79,72,-79,79,77,-81,68,72,-82,79,81,-73,69,68,-82,82,79,-81,81,79,-83,81,82,-70,80,83,-83,83,69,-83,84,85,-87,87,85,-85,85,88,-87,87,89,-86,90,85,-90,89,91,-91,88,85,-93,90,92,-86,92,93,-89,94,88,-94,93,95,-95,95,93,-97,93,92,-97,96,97,-96,90,98,-93,96,92,-99,99,98,-91,99,90,-92,98,100,-97,98,99,-101,91,101,-100,100,99,-102,101,91,-103,102,103,-102,103,100,-102,103,102,-105,104,105,-104,106,100,-104,105,106,-104,105,107,-107,107,100,-107,107,105,-109,96,100,-110,107,109,-101,97,96,-110,110,107,-109,109,107,-111,109,110,-98,108,111,-111,111,97,-111,112,113,-115,115,112,-115,113,112,-117,117,113,-117,112,115,-119,119,118,-116,116,120,-118,121,117,-121,116,112,-123,120,116,-123,112,118,-123,121,120,-124,123,120,-123,123,124,-122,122,118,-126,118,119,-126,126,123,-123,124,123,-127,127,125,-120,119,128,-128,129,122,-126,125,127,-130,129,126,-123,128,130,-128,127,130,-130,131,130,-129,132,130,-132,133,124,-127,133,126,-130,124,133,-135,130,135,-130,135,133,-130,
- 130,132,-136,135,134,-134,134,135,-133,136,137,-139,139,136,-139,137,136,-141,141,137,-141,136,139,-143,143,142,-140,140,144,-142,145,141,-145,140,136,-147,144,140,-147,136,142,-147,145,144,-148,147,144,-147,147,148,-146,146,142,-150,142,143,-150,150,147,-147,148,147,-151,151,149,-144,143,152,-152,153,146,-150,149,151,-154,153,150,-147,152,154,-152,151,154,-154,155,154,-153,156,154,-156,157,148,-151,157,150,-154,148,157,-159,154,159,-154,159,157,-154,154,156,-160,159,158,-158,158,159,-157,160,161,-163,163,160,-163,161,160,-165,165,161,-165,160,163,-167,167,166,-164,164,168,-166,169,165,-169,164,160,-171,168,164,-171,160,166,-171,169,168,-172,171,168,-171,171,172,-170,170,166,-174,166,167,-174,174,171,-171,172,171,-175,175,173,-168,167,176,-176,177,170,-174,173,175,-178,177,174,-171,176,178,-176,175,178,-178,179,178,-177,180,178,-180,181,172,-175,181,174,-178,172,181,-183,178,183,-178,183,181,-178,178,180,-184,183,182,-182,182,183,-181,184,185,-187,187,184,-187,185,184,-189,189,185,-189,184,187,-191,191,190,-188,188,192,-190,193,189,-193,188,184,-195,192,188,-195,184,190,-195,193,192,-196,195,192,-195,195,196,-194,194,190,-198,190,191,-198,198,195,-195,196,195,-199,199,197,-192,191,200,-200,201,194,-198,197,199,-202,201,198,-195,200,202,-200,199,202,-202,203,202,-201,204,202,-204,205,196,-199,205,198,-202,196,205,-207,202,207,-202,207,205,-202,202,204,-208,207,206,-206,206,207,-205,208,209,-211,211,208,-211,209,208,-213,213,209,-213,208,211,-215,215,214,-212,212,216,-214,217,213,-217,212,208,-219,216,212,-219,208,214,-219,217,216,-220,219,216,-219,219,220,-218,218,214,-222,214,215,-222,222,219,-219,220,219,-223,223,221,-216,215,224,-224,225,218,-222,221,223,-226,225,222,-219,224,226,-224,223,226,-226,227,226,-225,228,226,-228,229,220,-223,229,222,-226,220,229,-231,226,231,-226,231,229,-226,226,228,-232,231,230,-230,230,231,-229
- }
- Edges: *558 {
- a: 0,1,2,3,5,6,7,9,10,12,14,15,16,19,20,21,24,25,27,29,30,31,34,35,37,39,40,42,43,47,48,50,53,54,55,58,60,61,65,67,68,69,70,72,76,77,78,79,81,83,84,87,88,90,94,95,97,98,99,104,105,107,110,112,114,115,117,120,121,122,123,125,126,127,129,130,132,134,135,136,139,140,141,144,145,147,149,150,151,154,155,157,159,160,162,163,167,168,170,173,174,175,178,180,181,185,187,188,189,190,192,196,197,198,199,201,203,204,207,208,210,214,215,217,218,219,224,225,227,230,232,234,235,237,240,241,242,243,245,246,247,249,250,252,254,255,256,259,260,261,264,265,267,269,270,271,274,275,277,279,280,282,283,287,288,290,293,294,295,298,300,301,305,307,308,309,310,312,316,317,318,319,321,323,324,327,328,330,334,335,337,338,339,344,345,347,350,352,354,355,357,360,361,362,363,365,366,367,369,370,372,374,375,376,379,380,381,384,385,387,389,390,391,394,395,397,399,400,402,403,407,408,410,413,414,415,418,420,421,425,427,428,429,430,432,436,437,438,439,441,443,444,447,448,450,454,455,457,458,459,464,465,467,470,472,474,475,477,480,481,482,483,485,487,488,489,491,493,494,495,497,498,499,501,503,505,506,509,511,514,515,518,519,520,523,524,526,528,530,533,534,536,537,538,540,542,544,546,549,550,553,555,557,558,560,561,563,566,568,569,570,571,573,577,579,584,585,586,587,588,590,592,593,594,596,598,599,600,602,603,604,606,608,610,611,614,616,619,620,623,624,625,628,629,631,633,635,638,639,641,642,643,645,647,649,651,654,655,658,660,662,663,665,666,668,671,673,674,675,676,678,682,684,689,690,691,692,693,695,697,698,699,701,703,704,705,707,708,709,711,713,715,716,719,721,724,725,728,729,730,733,734,736,738,740,743,744,746,747,748,750,752,754,756,759,760,763,765,767,768,770,771,773,776,778,779,780,781,783,787,789,794,795,796,797,798,800,802,803,804,806,808,809,810,812,813,814,816,818,820,821,824,826,829,830,833,834,835,838,839,841,843,845,848,849,851,852,853,855,857,859,861,864,865,868,870,872,873,875,876,878,881,883,884,885,886,888,892,894,899,900,901,902,903,905,907,908,909,911,913,914,915,917,918,919,921,923,925,926,929,931,934,935,938,939,
- 940,943,944,946,948,950,953,954,956,957,958,960,962,964,966,969,970,973,975,977,978,980,981,983,986,988,989,990,991,993,997,999,1004
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Normals: *3015 {
- a: -0.984099447727203,-0.173201501369476,-0.0393639765679836,-0.989552557468414,-0.125657469034195,0.0706823170185089,-0.941502332687378,-0.141225337982178,-0.305988252162933,-0.945850014686584,-0.157641664147377,0.283754974603653,-0.989552557468414,-0.125657469034195,0.0706823170185089,-0.984099447727203,-0.173201501369476,-0.0393639765679836,-0.989552557468414,-0.125657469034195,0.0706823170185089,-0.944794058799744,-0.267691612243652,-0.188958793878555,-0.941502332687378,-0.141225337982178,-0.305988252162933,-0.945850014686584,-0.157641664147377,0.283754974603653,-0.946762144565582,-0.094676211476326,0.307697683572769,-0.989552557468414,-0.125657469034195,0.0706823170185089,-0.986948072910309,-0.0315823368728161,0.157911688089371,-0.989552557468414,-0.125657469034195,0.0706823170185089,-0.946762144565582,-0.094676211476326,0.307697683572769,-0.946762144565582,-0.094676211476326,0.307697683572769,-0.949348151683807,-0.0156917050480843,0.313834100961685,-0.986948072910309,-0.0315823368728161,0.157911688089371,-0.944794058799744,-0.267691612243652,-0.188958793878555,-0.989552557468414,-0.125657469034195,0.0706823170185089,-0.997775554656982,-0.0471390038728714,-0.0471390038728714,-0.986948072910309,-0.0315823368728161,0.157911688089371,-0.997775554656982,-0.0471390038728714,-0.0471390038728714,-0.989552557468414,-0.125657469034195,0.0706823170185089,-0.997775554656982,-0.0471390038728714,-0.0471390038728714,-0.977226555347443,-0.0788085907697678,-0.197021469473839,-0.944794058799744,-0.267691612243652,-0.188958793878555,-0.960302531719208,-0.0787133201956749,-0.267625272274017,-0.944794058799744,-0.267691612243652,-0.188958793878555,-0.977226555347443,-0.0788085907697678,-0.197021469473839,-0.977226555347443,-0.0788085907697678,-0.197021469473839,-0.923754572868347,0.0552673675119877,-0.378976255655289,-0.960302531719208,-0.0787133201956749,-0.267625272274017,-0.923754572868347,0.0552673675119877,-0.378976255655289,-0.977226555347443,-0.0788085907697678,-0.197021469473839,-0.987872242927551,0.0395148880779743,-0.150156587362289,
- -0.977226555347443,-0.0788085907697678,-0.197021469473839,-0.997775554656982,-0.0471390038728714,-0.0471390038728714,-0.987872242927551,0.0395148880779743,-0.150156587362289,-0.987872242927551,0.0395148880779743,-0.150156587362289,-0.923035740852356,-0.1025595292449,-0.370792120695114,-0.923754572868347,0.0552673675119877,-0.378976255655289,-0.986948072910309,-0.0315823368728161,0.157911688089371,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.997775554656982,-0.0471390038728714,-0.0471390038728714,-0.987872242927551,0.0395148880779743,-0.150156587362289,-0.997775554656982,-0.0471390038728714,-0.0471390038728714,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.988790571689606,-0.00784754473716021,0.149103343486786,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.986948072910309,-0.0315823368728161,0.157911688089371,-0.988790571689606,-0.00784754473716021,0.149103343486786,-0.986948072910309,-0.0315823368728161,0.157911688089371,-0.949348151683807,-0.0156917050480843,0.313834100961685,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.999597251415253,-0.0236125327646732,-0.0157416891306639,-0.987872242927551,0.0395148880779743,-0.150156587362289,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.988790571689606,-0.00784754473716021,0.149103343486786,-0.999597251415253,-0.0236125327646732,-0.0157416891306639,-0.949348151683807,-0.0156917050480843,0.313834100961685,-0.986948072910309,0.0315823368728161,0.157911688089371,-0.988790571689606,-0.00784754473716021,0.149103343486786,-0.999597251415253,-0.0236125327646732,-0.0157416891306639,-0.988790571689606,-0.00784754473716021,0.149103343486786,-0.986948072910309,0.0315823368728161,0.157911688089371,-0.986948072910309,0.0315823368728161,0.157911688089371,-0.949348151683807,-0.0156917050480843,0.313834100961685,-0.952165842056274,0.0629531145095825,0.299027293920517,-0.952165842056274,0.0629531145095825,0.299027293920517,-0.979327261447906,0.157956004142761,0.126364797353745,-0.986948072910309,0.0315823368728161,0.157911688089371,
- -0.979327261447906,0.157956004142761,0.126364797353745,-0.999597251415253,-0.0236125327646732,-0.0157416891306639,-0.986948072910309,0.0315823368728161,0.157911688089371,-0.979327261447906,0.157956004142761,0.126364797353745,-0.952165842056274,0.0629531145095825,0.299027293920517,-0.961942911148071,0.197119444608688,0.189234673976898,-0.961942911148071,0.197119444608688,0.189234673976898,-0.945556342601776,0.32306507229805,-0.0393981784582138,-0.979327261447906,0.157956004142761,0.126364797353745,-0.979999899864197,0.197580605745316,-0.0237096734344959,-0.999597251415253,-0.0236125327646732,-0.0157416891306639,-0.979327261447906,0.157956004142761,0.126364797353745,-0.945556342601776,0.32306507229805,-0.0393981784582138,-0.979999899864197,0.197580605745316,-0.0237096734344959,-0.979327261447906,0.157956004142761,0.126364797353745,-0.945556342601776,0.32306507229805,-0.0393981784582138,-0.987132668495178,0.134250044822693,-0.0868676751852036,-0.979999899864197,0.197580605745316,-0.0237096734344959,-0.987132668495178,0.134250044822693,-0.0868676751852036,-0.999597251415253,-0.0236125327646732,-0.0157416891306639,-0.979999899864197,0.197580605745316,-0.0237096734344959,-0.987132668495178,0.134250044822693,-0.0868676751852036,-0.945556342601776,0.32306507229805,-0.0393981784582138,-0.94382917881012,0.259553015232086,-0.204496309161186,-0.987872242927551,0.0395148880779743,-0.150156587362289,-0.999597251415253,-0.0236125327646732,-0.0157416891306639,-0.996335446834564,-0.0711668133735657,-0.0474445447325706,-0.987132668495178,0.134250044822693,-0.0868676751852036,-0.996335446834564,-0.0711668133735657,-0.0474445447325706,-0.999597251415253,-0.0236125327646732,-0.0157416891306639,-0.923035740852356,-0.1025595292449,-0.370792120695114,-0.987872242927551,0.0395148880779743,-0.150156587362289,-0.996335446834564,-0.0711668133735657,-0.0474445447325706,-0.980459988117218,-0.0156873594969511,-0.196091994643211,-0.987132668495178,0.134250044822693,-0.0868676751852036,-0.94382917881012,0.259553015232086,-0.204496309161186,-0.996335446834564,-0.0711668133735657,-0.0474445447325706,
- -0.987132668495178,0.134250044822693,-0.0868676751852036,-0.980459988117218,-0.0156873594969511,-0.196091994643211,-0.996335446834564,-0.0711668133735657,-0.0474445447325706,-0.980459988117218,-0.0156873594969511,-0.196091994643211,-0.923035740852356,-0.1025595292449,-0.370792120695114,-0.94382917881012,0.259553015232086,-0.204496309161186,-0.970280230045319,-0.0788845717906952,-0.228765249252319,-0.980459988117218,-0.0156873594969511,-0.196091994643211,-0.970280230045319,-0.0788845717906952,-0.228765249252319,-0.923035740852356,-0.1025595292449,-0.370792120695114,-0.980459988117218,-0.0156873594969511,-0.196091994643211,-0.941357553005219,-0.321630477905273,-0.101980395615101,-0.948416590690613,-0.316138863563538,0.0237104147672653,-0.920290350914001,-0.196643248200417,-0.33822637796402,-0.890592515468597,-0.401948839426041,0.212796449661255,-0.948416590690613,-0.316138863563538,0.0237104147672653,-0.941357553005219,-0.321630477905273,-0.101980395615101,-0.948416590690613,-0.316138863563538,0.0237104147672653,-0.898780882358551,-0.346897900104523,-0.268057435750961,-0.920290350914001,-0.196643248200417,-0.33822637796402,-0.890592515468597,-0.401948839426041,0.212796449661255,-0.898167073726654,-0.354539632797241,0.259995728731155,-0.948416590690613,-0.316138863563538,0.0237104147672653,-0.957577228546143,-0.251167804002762,0.141281872987747,-0.948416590690613,-0.316138863563538,0.0237104147672653,-0.898167073726654,-0.354539632797241,0.259995728731155,-0.898167073726654,-0.354539632797241,0.259995728731155,-0.913612425327301,-0.28353488445282,0.291410863399506,-0.957577228546143,-0.251167804002762,0.141281872987747,-0.898780882358551,-0.346897900104523,-0.268057435750961,-0.948416590690613,-0.316138863563538,0.0237104147672653,-0.976771771907806,-0.204806983470917,-0.0630175322294235,-0.957577228546143,-0.251167804002762,0.141281872987747,-0.976771771907806,-0.204806983470917,-0.0630175322294235,-0.948416590690613,-0.316138863563538,0.0237104147672653,-0.976771771907806,-0.204806983470917,-0.0630175322294235,-0.961584270000458,-0.173400446772575,-0.212809637188911,
- -0.898780882358551,-0.346897900104523,-0.268057435750961,-0.946998059749603,-0.149941354990005,-0.284099400043488,-0.898780882358551,-0.346897900104523,-0.268057435750961,-0.961584270000458,-0.173400446772575,-0.212809637188911,-0.961584270000458,-0.173400446772575,-0.212809637188911,-0.941270589828491,0.0156878419220448,-0.337288588285446,-0.946998059749603,-0.149941354990005,-0.284099400043488,-0.941270589828491,0.0156878419220448,-0.337288588285446,-0.961584270000458,-0.173400446772575,-0.212809637188911,-0.988150000572205,-0.0869572013616562,-0.126483201980591,-0.961584270000458,-0.173400446772575,-0.212809637188911,-0.976771771907806,-0.204806983470917,-0.0630175322294235,-0.988150000572205,-0.0869572013616562,-0.126483201980591,-0.988150000572205,-0.0869572013616562,-0.126483201980591,-0.913839221000671,-0.126046791672707,-0.3860182762146,-0.941270589828491,0.0156878419220448,-0.337288588285446,-0.957577228546143,-0.251167804002762,0.141281872987747,-0.987440645694733,-0.157990500330925,-3.50809382278883e-017,-0.976771771907806,-0.204806983470917,-0.0630175322294235,-0.988150000572205,-0.0869572013616562,-0.126483201980591,-0.976771771907806,-0.204806983470917,-0.0630175322294235,-0.987440645694733,-0.157990500330925,-3.50809382278883e-017,-0.963021218776703,-0.228914856910706,0.142085090279579,-0.987440645694733,-0.157990500330925,-3.50809382278883e-017,-0.957577228546143,-0.251167804002762,0.141281872987747,-0.963021218776703,-0.228914856910706,0.142085090279579,-0.957577228546143,-0.251167804002762,0.141281872987747,-0.913612425327301,-0.28353488445282,0.291410863399506,-0.987440645694733,-0.157990500330925,-3.50809382278883e-017,-0.981789767742157,-0.188503637909889,-0.0235629547387362,-0.988150000572205,-0.0869572013616562,-0.126483201980591,-0.987440645694733,-0.157990500330925,-3.50809382278883e-017,-0.963021218776703,-0.228914856910706,0.142085090279579,-0.981789767742157,-0.188503637909889,-0.0235629547387362,-0.913612425327301,-0.28353488445282,0.291410863399506,-0.967754244804382,-0.196698009967804,0.157358407974243,
- -0.963021218776703,-0.228914856910706,0.142085090279579,-0.981789767742157,-0.188503637909889,-0.0235629547387362,-0.963021218776703,-0.228914856910706,0.142085090279579,-0.967754244804382,-0.196698009967804,0.157358407974243,-0.967754244804382,-0.196698009967804,0.157358407974243,-0.913612425327301,-0.28353488445282,0.291410863399506,-0.931591868400574,-0.205265998840332,0.300004154443741,-0.931591868400574,-0.205265998840332,0.300004154443741,-0.982912182807922,-0.062906377017498,0.172992557287216,-0.967754244804382,-0.196698009967804,0.157358407974243,-0.982912182807922,-0.062906377017498,0.172992557287216,-0.981789767742157,-0.188503637909889,-0.0235629547387362,-0.967754244804382,-0.196698009967804,0.157358407974243,-0.982912182807922,-0.062906377017498,0.172992557287216,-0.931591868400574,-0.205265998840332,0.300004154443741,-0.968203842639923,-0.0551010295748711,0.244018852710724,-0.968203842639923,-0.0551010295748711,0.244018852710724,-0.986149191856384,0.149894669651985,0.0710027366876602,-0.982912182807922,-0.062906377017498,0.172992557287216,-0.99894767999649,0.0235971882939339,0.0393286496400833,-0.981789767742157,-0.188503637909889,-0.0235629547387362,-0.982912182807922,-0.062906377017498,0.172992557287216,-0.986149191856384,0.149894669651985,0.0710027366876602,-0.99894767999649,0.0235971882939339,0.0393286496400833,-0.982912182807922,-0.062906377017498,0.172992557287216,-0.986149191856384,0.149894669651985,0.0710027366876602,-0.999380588531494,-0.0157382767647505,-0.031476553529501,-0.99894767999649,0.0235971882939339,0.0393286496400833,-0.999380588531494,-0.0157382767647505,-0.031476553529501,-0.981789767742157,-0.188503637909889,-0.0235629547387362,-0.99894767999649,0.0235971882939339,0.0393286496400833,-0.999380588531494,-0.0157382767647505,-0.031476553529501,-0.986149191856384,0.149894669651985,0.0710027366876602,-0.984587788581848,0.141780629754066,-0.102397121489048,-0.988150000572205,-0.0869572013616562,-0.126483201980591,-0.981789767742157,-0.188503637909889,-0.0235629547387362,-0.970854341983795,-0.228900596499443,-0.0710381120443344,
- -0.999380588531494,-0.0157382767647505,-0.031476553529501,-0.970854341983795,-0.228900596499443,-0.0710381120443344,-0.981789767742157,-0.188503637909889,-0.0235629547387362,-0.913839221000671,-0.126046791672707,-0.3860182762146,-0.988150000572205,-0.0869572013616562,-0.126483201980591,-0.970854341983795,-0.228900596499443,-0.0710381120443344,-0.974928438663483,-0.117934897542,-0.188695833086967,-0.999380588531494,-0.0157382767647505,-0.031476553529501,-0.984587788581848,0.141780629754066,-0.102397121489048,-0.970854341983795,-0.228900596499443,-0.0710381120443344,-0.999380588531494,-0.0157382767647505,-0.031476553529501,-0.974928438663483,-0.117934897542,-0.188695833086967,-0.970854341983795,-0.228900596499443,-0.0710381120443344,-0.974928438663483,-0.117934897542,-0.188695833086967,-0.913839221000671,-0.126046791672707,-0.3860182762146,-0.984587788581848,0.141780629754066,-0.102397121489048,-0.955306172370911,-0.165796935558319,-0.24474786221981,-0.974928438663483,-0.117934897542,-0.188695833086967,-0.955306172370911,-0.165796935558319,-0.24474786221981,-0.913839221000671,-0.126046791672707,-0.3860182762146,-0.974928438663483,-0.117934897542,-0.188695833086967,-0.983764111995697,-0.173142492771149,0.0472206771373749,-0.988973200321198,-0.0784899368882179,0.125583902001381,-0.942779958248138,-0.274977475404739,-0.188555985689163,-0.946261584758759,0.00788551289588213,0.323306024074554,-0.988973200321198,-0.0784899368882179,0.125583902001381,-0.983764111995697,-0.173142492771149,0.0472206771373749,-0.988973200321198,-0.0784899368882179,0.125583902001381,-0.94582062959671,-0.323155373334885,-0.0315273515880108,-0.942779958248138,-0.274977475404739,-0.188555985689163,-0.946261584758759,0.00788551289588213,0.323306024074554,-0.946291029453278,0.0709718242287636,0.315430343151093,-0.988973200321198,-0.0784899368882179,0.125583902001381,-0.985934436321259,0.0552123263478279,0.157749503850937,-0.988973200321198,-0.0784899368882179,0.125583902001381,-0.946291029453278,0.0709718242287636,0.315430343151093,-0.946291029453278,0.0709718242287636,0.315430343151093,
- -0.950959444046021,0.141465023159981,0.275070905685425,-0.985934436321259,0.0552123263478279,0.157749503850937,-0.94582062959671,-0.323155373334885,-0.0315273515880108,-0.988973200321198,-0.0784899368882179,0.125583902001381,-0.99737536907196,-0.0706801414489746,-0.0157066993415356,-0.985934436321259,0.0552123263478279,0.157749503850937,-0.99737536907196,-0.0706801414489746,-0.0157066993415356,-0.988973200321198,-0.0784899368882179,0.125583902001381,-0.99737536907196,-0.0706801414489746,-0.0157066993415356,-0.977074861526489,-0.165472343564034,-0.133953809738159,-0.94582062959671,-0.323155373334885,-0.0315273515880108,-0.958966612815857,-0.20436991751194,-0.196509540081024,-0.94582062959671,-0.323155373334885,-0.0315273515880108,-0.977074861526489,-0.165472343564034,-0.133953809738159,-0.977074861526489,-0.165472343564034,-0.133953809738159,-0.923869788646698,-0.142133802175522,-0.355334550142288,-0.958966612815857,-0.20436991751194,-0.196509540081024,-0.923869788646698,-0.142133802175522,-0.355334550142288,-0.977074861526489,-0.165472343564034,-0.133953809738159,-0.987872242927551,-0.0395148880779743,-0.150156587362289,-0.977074861526489,-0.165472343564034,-0.133953809738159,-0.99737536907196,-0.0706801414489746,-0.0157066993415356,-0.987872242927551,-0.0395148880779743,-0.150156587362289,-0.987872242927551,-0.0395148880779743,-0.150156587362289,-0.922949492931366,-0.276095986366272,-0.268207550048828,-0.923869788646698,-0.142133802175522,-0.355334550142288,-0.985934436321259,0.0552123263478279,0.157749503850937,-0.999845147132874,0.00787279661744833,-0.0157455932348967,-0.99737536907196,-0.0706801414489746,-0.0157066993415356,-0.987872242927551,-0.0395148880779743,-0.150156587362289,-0.99737536907196,-0.0706801414489746,-0.0157066993415356,-0.999845147132874,0.00787279661744833,-0.0157455932348967,-0.988546967506409,0.0706104934215546,0.133375376462936,-0.999845147132874,0.00787279661744833,-0.0157455932348967,-0.985934436321259,0.0552123263478279,0.157749503850937,-0.988546967506409,0.0706104934215546,0.133375376462936,
- -0.985934436321259,0.0552123263478279,0.157749503850937,-0.950959444046021,0.141465023159981,0.275070905685425,-0.999845147132874,0.00787279661744833,-0.0157455932348967,-0.999504387378693,-0.0314804539084435,-6.99006495096098e-018,-0.987872242927551,-0.0395148880779743,-0.150156587362289,-0.999845147132874,0.00787279661744833,-0.0157455932348967,-0.988546967506409,0.0706104934215546,0.133375376462936,-0.999504387378693,-0.0314804539084435,-6.99006495096098e-018,-0.950959444046021,0.141465023159981,0.275070905685425,-0.986794292926788,0.110520958900452,0.11841531842947,-0.988546967506409,0.0706104934215546,0.133375376462936,-0.999504387378693,-0.0314804539084435,-6.99006495096098e-018,-0.988546967506409,0.0706104934215546,0.133375376462936,-0.986794292926788,0.110520958900452,0.11841531842947,-0.986794292926788,0.110520958900452,0.11841531842947,-0.950959444046021,0.141465023159981,0.275070905685425,-0.953583955764771,0.204902336001396,0.22066405415535,-0.953583955764771,0.204902336001396,0.22066405415535,-0.979785799980164,0.197537466883659,0.0316059924662113,-0.986794292926788,0.110520958900452,0.11841531842947,-0.979785799980164,0.197537466883659,0.0316059924662113,-0.999504387378693,-0.0314804539084435,-6.99006495096098e-018,-0.986794292926788,0.110520958900452,0.11841531842947,-0.979785799980164,0.197537466883659,0.0316059924662113,-0.953583955764771,0.204902336001396,0.22066405415535,-0.963381409645081,0.260586768388748,0.0631725490093231,-0.963381409645081,0.260586768388748,0.0631725490093231,-0.945321559906006,0.259963423013687,-0.196941986680031,-0.979785799980164,0.197537466883659,0.0316059924662113,-0.980275452136993,0.158108934760094,-0.118581712245941,-0.999504387378693,-0.0314804539084435,-6.99006495096098e-018,-0.979785799980164,0.197537466883659,0.0316059924662113,-0.945321559906006,0.259963423013687,-0.196941986680031,-0.980275452136993,0.158108934760094,-0.118581712245941,-0.979785799980164,0.197537466883659,0.0316059924662113,-0.945321559906006,0.259963423013687,-0.196941986680031,-0.986702144145966,0.0789361670613289,-0.14208510518074,
- -0.980275452136993,0.158108934760094,-0.118581712245941,-0.986702144145966,0.0789361670613289,-0.14208510518074,-0.999504387378693,-0.0314804539084435,-6.99006495096098e-018,-0.980275452136993,0.158108934760094,-0.118581712245941,-0.986702144145966,0.0789361670613289,-0.14208510518074,-0.945321559906006,0.259963423013687,-0.196941986680031,-0.944384336471558,0.118048042058945,-0.306924909353256,-0.987872242927551,-0.0395148880779743,-0.150156587362289,-0.999504387378693,-0.0314804539084435,-6.99006495096098e-018,-0.996179699897766,-0.0869680717587471,-0.00790618825703859,-0.986702144145966,0.0789361670613289,-0.14208510518074,-0.996179699897766,-0.0869680717587471,-0.00790618825703859,-0.999504387378693,-0.0314804539084435,-6.99006495096098e-018,-0.922949492931366,-0.276095986366272,-0.268207550048828,-0.987872242927551,-0.0395148880779743,-0.150156587362289,-0.996179699897766,-0.0869680717587471,-0.00790618825703859,-0.980218827724457,-0.109784506261349,-0.164676755666733,-0.986702144145966,0.0789361670613289,-0.14208510518074,-0.944384336471558,0.118048042058945,-0.306924909353256,-0.996179699897766,-0.0869680717587471,-0.00790618825703859,-0.986702144145966,0.0789361670613289,-0.14208510518074,-0.980218827724457,-0.109784506261349,-0.164676755666733,-0.996179699897766,-0.0869680717587471,-0.00790618825703859,-0.980218827724457,-0.109784506261349,-0.164676755666733,-0.922949492931366,-0.276095986366272,-0.268207550048828,-0.944384336471558,0.118048042058945,-0.306924909353256,-0.969406008720398,-0.181271031498909,-0.165508329868317,-0.980218827724457,-0.109784506261349,-0.164676755666733,-0.969406008720398,-0.181271031498909,-0.165508329868317,-0.922949492931366,-0.276095986366272,-0.268207550048828,-0.980218827724457,-0.109784506261349,-0.164676755666733,-0.983124971389771,-0.0786499977111816,-0.165164992213249,-0.988455832004547,-0.141207963228226,-0.0549142137169838,-0.941502332687378,0.141225337982178,-0.305988252162933,-0.944413602352142,-0.322674632072449,0.0629609003663063,-0.988455832004547,-0.141207963228226,-0.0549142137169838,
- -0.983124971389771,-0.0786499977111816,-0.165164992213249,-0.988455832004547,-0.141207963228226,-0.0549142137169838,-0.94602632522583,-0.0236506573855877,-0.323225647211075,-0.941502332687378,0.141225337982178,-0.305988252162933,-0.944413602352142,-0.322674632072449,0.0629609003663063,-0.947943031787872,-0.292282432317734,0.126392394304276,-0.988455832004547,-0.141207963228226,-0.0549142137169838,-0.986702144145966,-0.14208510518074,0.0789361670613289,-0.988455832004547,-0.141207963228226,-0.0549142137169838,-0.947943031787872,-0.292282432317734,0.126392394304276,-0.947943031787872,-0.292282432317734,0.126392394304276,-0.951312065124512,-0.243724584579468,0.188690006732941,-0.986702144145966,-0.14208510518074,0.0789361670613289,-0.94602632522583,-0.0236506573855877,-0.323225647211075,-0.988455832004547,-0.141207963228226,-0.0549142137169838,-0.997467637062073,0.00785407610237598,-0.0706866830587387,-0.986702144145966,-0.14208510518074,0.0789361670613289,-0.997467637062073,0.00785407610237598,-0.0706866830587387,-0.988455832004547,-0.141207963228226,-0.0549142137169838,-0.997467637062073,0.00785407610237598,-0.0706866830587387,-0.976620197296143,0.102387592196465,-0.18902325630188,-0.94602632522583,-0.0236506573855877,-0.323225647211075,-0.95899623632431,0.157212495803833,-0.23581874370575,-0.94602632522583,-0.0236506573855877,-0.323225647211075,-0.976620197296143,0.102387592196465,-0.18902325630188,-0.976620197296143,0.102387592196465,-0.18902325630188,-0.923639535903931,0.323668539524078,-0.205253228545189,-0.95899623632431,0.157212495803833,-0.23581874370575,-0.923639535903931,0.323668539524078,-0.205253228545189,-0.976620197296143,0.102387592196465,-0.18902325630188,-0.987286627292633,0.142169266939163,-0.0710846334695816,-0.976620197296143,0.102387592196465,-0.18902325630188,-0.997467637062073,0.00785407610237598,-0.0706866830587387,-0.987286627292633,0.142169266939163,-0.0710846334695816,-0.987286627292633,0.142169266939163,-0.0710846334695816,-0.922863304615021,0.220856189727783,-0.315508842468262,-0.923639535903931,0.323668539524078,-0.205253228545189,
- -0.986702144145966,-0.14208510518074,0.0789361670613289,-0.999845147132874,0.0157455932348967,0.00787279661744833,-0.997467637062073,0.00785407610237598,-0.0706866830587387,-0.987286627292633,0.142169266939163,-0.0710846334695816,-0.997467637062073,0.00785407610237598,-0.0706866830587387,-0.999845147132874,0.0157455932348967,0.00787279661744833,-0.988577425479889,-0.117687791585922,0.0941502302885056,-0.999845147132874,0.0157455932348967,0.00787279661744833,-0.986702144145966,-0.14208510518074,0.0789361670613289,-0.988577425479889,-0.117687791585922,0.0941502302885056,-0.986702144145966,-0.14208510518074,0.0789361670613289,-0.951312065124512,-0.243724584579468,0.188690006732941,-0.999845147132874,0.0157455932348967,0.00787279661744833,-0.999690115451813,-0.00787157565355301,-0.023614726960659,-0.987286627292633,0.142169266939163,-0.0710846334695816,-0.999845147132874,0.0157455932348967,0.00787279661744833,-0.988577425479889,-0.117687791585922,0.0941502302885056,-0.999690115451813,-0.00787157565355301,-0.023614726960659,-0.951312065124512,-0.243724584579468,0.188690006732941,-0.986671388149261,-0.10261382162571,0.126293942332268,-0.988577425479889,-0.117687791585922,0.0941502302885056,-0.999690115451813,-0.00787157565355301,-0.023614726960659,-0.988577425479889,-0.117687791585922,0.0941502302885056,-0.986671388149261,-0.10261382162571,0.126293942332268,-0.986671388149261,-0.10261382162571,0.126293942332268,-0.951312065124512,-0.243724584579468,0.188690006732941,-0.951312065124512,-0.188690006732941,0.243724584579468,-0.951312065124512,-0.188690006732941,0.243724584579468,-0.978686571121216,0.00789263378828764,0.205208465456963,-0.986671388149261,-0.10261382162571,0.126293942332268,-0.978686571121216,0.00789263378828764,0.205208465456963,-0.999690115451813,-0.00787157565355301,-0.023614726960659,-0.986671388149261,-0.10261382162571,0.126293942332268,-0.978686571121216,0.00789263378828764,0.205208465456963,-0.951312065124512,-0.188690006732941,0.243724584579468,-0.963171243667603,-0.0157896913588047,0.26842474937439,
- -0.963171243667603,-0.0157896913588047,0.26842474937439,-0.946202754974365,0.236550688743591,0.22078064084053,-0.978686571121216,0.00789263378828764,0.205208465456963,-0.979510545730591,0.150086298584938,0.134287729859352,-0.999690115451813,-0.00787157565355301,-0.023614726960659,-0.978686571121216,0.00789263378828764,0.205208465456963,-0.946202754974365,0.236550688743591,0.22078064084053,-0.979510545730591,0.150086298584938,0.134287729859352,-0.978686571121216,0.00789263378828764,0.205208465456963,-0.946202754974365,0.236550688743591,0.22078064084053,-0.98633337020874,0.157813340425491,0.0473439991474152,-0.979510545730591,0.150086298584938,0.134287729859352,-0.98633337020874,0.157813340425491,0.0473439991474152,-0.999690115451813,-0.00787157565355301,-0.023614726960659,-0.979510545730591,0.150086298584938,0.134287729859352,-0.98633337020874,0.157813340425491,0.0473439991474152,-0.946202754974365,0.236550688743591,0.22078064084053,-0.944413602352142,0.322674632072449,0.0629609003663063,-0.987286627292633,0.142169266939163,-0.0710846334695816,-0.999690115451813,-0.00787157565355301,-0.023614726960659,-0.996179699897766,-0.00790618825703859,-0.0869680717587471,-0.98633337020874,0.157813340425491,0.0473439991474152,-0.996179699897766,-0.00790618825703859,-0.0869680717587471,-0.999690115451813,-0.00787157565355301,-0.023614726960659,-0.922863304615021,0.220856189727783,-0.315508842468262,-0.987286627292633,0.142169266939163,-0.0710846334695816,-0.996179699897766,-0.00790618825703859,-0.0869680717587471,-0.980942964553833,0.141255781054497,-0.133408233523369,-0.98633337020874,0.157813340425491,0.0473439991474152,-0.944413602352142,0.322674632072449,0.0629609003663063,-0.996179699897766,-0.00790618825703859,-0.0869680717587471,-0.98633337020874,0.157813340425491,0.0473439991474152,-0.980942964553833,0.141255781054497,-0.133408233523369,-0.996179699897766,-0.00790618825703859,-0.0869680717587471,-0.980942964553833,0.141255781054497,-0.133408233523369,-0.922863304615021,0.220856189727783,-0.315508842468262,-0.944413602352142,0.322674632072449,0.0629609003663063,
- -0.970552027225494,0.126250669360161,-0.205157324671745,-0.980942964553833,0.141255781054497,-0.133408233523369,-0.970552027225494,0.126250669360161,-0.205157324671745,-0.922863304615021,0.220856189727783,-0.315508842468262,-0.980942964553833,0.141255781054497,-0.133408233523369,-0.993605554103851,0.11040061712265,-0.0236572753638029,-0.970642805099487,0.157828092575073,0.181502312421799,-0.980244815349579,0.197630003094673,0.00790520012378693,-0.967994034290314,0.165267258882523,-0.188876897096634,-0.993605554103851,0.11040061712265,-0.0236572753638029,-0.980244815349579,0.197630003094673,0.00790520012378693,-0.970642805099487,0.157828092575073,0.181502312421799,-0.993605554103851,0.11040061712265,-0.0236572753638029,-0.988973200321198,0.0784899368882179,0.125583902001381,-0.956260442733765,0.00790297891944647,0.292410224676132,-0.970642805099487,0.157828092575073,0.181502312421799,-0.988973200321198,0.0784899368882179,0.125583902001381,-0.993605554103851,0.11040061712265,-0.0236572753638029,-0.967994034290314,0.165267258882523,-0.188876897096634,-0.989552557468414,0.0706823170185089,-0.125657469034195,-0.940454363822937,0.197574451565742,-0.276604235172272,-0.989552557468414,0.0706823170185089,-0.125657469034195,-0.967994034290314,0.165267258882523,-0.188876897096634,-0.988973200321198,0.0784899368882179,0.125583902001381,-0.989461004734039,-0.0314114615321159,0.141351565718651,-0.956260442733765,0.00790297891944647,0.292410224676132,-0.944530606269836,-0.236132651567459,0.228261545300484,-0.956260442733765,0.00790297891944647,0.292410224676132,-0.989461004734039,-0.0314114615321159,0.141351565718651,-0.988973200321198,0.0784899368882179,0.125583902001381,-0.993605554103851,0.11040061712265,-0.0236572753638029,-0.999969005584717,1.74832852910177e-018,-0.00787377171218395,-0.989461004734039,-0.0314114615321159,0.141351565718651,-0.988973200321198,0.0784899368882179,0.125583902001381,-0.999969005584717,1.74832852910177e-018,-0.00787377171218395,-0.993605554103851,0.11040061712265,-0.0236572753638029,-0.989552557468414,0.0706823170185089,-0.125657469034195,
- -0.999969005584717,1.74832852910177e-018,-0.00787377171218395,-0.944530606269836,-0.236132651567459,0.228261545300484,-0.989461004734039,-0.0314114615321159,0.141351565718651,-0.986425518989563,-0.134153857827187,0.0946968495845795,-0.986425518989563,-0.134153857827187,0.0946968495845795,-0.989461004734039,-0.0314114615321159,0.141351565718651,-0.999969005584717,1.74832852910177e-018,-0.00787377171218395,-0.986425518989563,-0.134153857827187,0.0946968495845795,-0.962302029132843,-0.236631661653519,0.134091258049011,-0.944530606269836,-0.236132651567459,0.228261545300484,-0.999969005584717,1.74832852910177e-018,-0.00787377171218395,-0.989552557468414,0.0706823170185089,-0.125657469034195,-0.997529208660126,0.0314182415604591,-0.0628364831209183,-0.989552557468414,0.0706823170185089,-0.125657469034195,-0.940454363822937,0.197574451565742,-0.276604235172272,-0.997529208660126,0.0314182415604591,-0.0628364831209183,-0.998206853866577,-0.055019274353981,0.0235796887427568,-0.986425518989563,-0.134153857827187,0.0946968495845795,-0.999969005584717,1.74832852910177e-018,-0.00787377171218395,-0.962302029132843,-0.236631661653519,0.134091258049011,-0.986425518989563,-0.134153857827187,0.0946968495845795,-0.998206853866577,-0.055019274353981,0.0235796887427568,-0.976135909557343,0.14956921339035,-0.157441273331642,-0.997529208660126,0.0314182415604591,-0.0628364831209183,-0.940454363822937,0.197574451565742,-0.276604235172272,-0.940454363822937,0.197574451565742,-0.276604235172272,-0.949552774429321,0.164798408746719,-0.266816467046738,-0.976135909557343,0.14956921339035,-0.157441273331642,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.999969005584717,1.74832852910177e-018,-0.00787377171218395,-0.997529208660126,0.0314182415604591,-0.0628364831209183,-0.997529208660126,0.0314182415604591,-0.0628364831209183,-0.976135909557343,0.14956921339035,-0.157441273331642,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.998206853866577,-0.055019274353981,0.0235796887427568,
- -0.999969005584717,1.74832852910177e-018,-0.00787377171218395,-0.949552774429321,0.164798408746719,-0.266816467046738,-0.992218255996704,-0.0393737405538559,-0.118121221661568,-0.976135909557343,0.14956921339035,-0.157441273331642,-0.976135909557343,0.14956921339035,-0.157441273331642,-0.992218255996704,-0.0393737405538559,-0.118121221661568,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.986425518989563,-0.0946968495845795,-0.134153857827187,-0.992218255996704,-0.0393737405538559,-0.118121221661568,-0.949552774429321,0.164798408746719,-0.266816467046738,-0.979510545730591,-0.197481960058212,-0.0394963920116425,-0.992218255996704,-0.0393737405538559,-0.118121221661568,-0.986425518989563,-0.0946968495845795,-0.134153857827187,-0.98777973651886,-0.134338036179543,0.0790223777294159,-0.962302029132843,-0.236631661653519,0.134091258049011,-0.998206853866577,-0.055019274353981,0.0235796887427568,-0.98777973651886,-0.134338036179543,0.0790223777294159,-0.998206853866577,-0.055019274353981,0.0235796887427568,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.962302029132843,-0.236631661653519,0.134091258049011,-0.98777973651886,-0.134338036179543,0.0790223777294159,-0.975139439105988,-0.196600690484047,0.102232359349728,-0.992218255996704,-0.0393737405538559,-0.118121221661568,-0.989827394485474,-0.141403913497925,-0.0157115459442139,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.989827394485474,-0.141403913497925,-0.0157115459442139,-0.98777973651886,-0.134338036179543,0.0790223777294159,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.992218255996704,-0.0393737405538559,-0.118121221661568,-0.979510545730591,-0.197481960058212,-0.0394963920116425,-0.989827394485474,-0.141403913497925,-0.0157115459442139,-0.989827394485474,-0.141403913497925,-0.0157115459442139,-0.975139439105988,-0.196600690484047,0.102232359349728,-0.98777973651886,-0.134338036179543,0.0790223777294159,-0.975139439105988,-0.196600690484047,0.102232359349728,-0.989827394485474,-0.141403913497925,-0.0157115459442139,
- -0.979510545730591,-0.197481960058212,-0.0394963920116425,-0.993204295635223,0.102473460137844,-0.0551780164241791,-0.972096621990204,0.197580605745316,0.126451596617699,-0.979174554347992,0.197414219379425,-0.0473794117569923,-0.968203842639923,0.102330483496189,-0.228275701403618,-0.993204295635223,0.102473460137844,-0.0551780164241791,-0.979174554347992,0.197414219379425,-0.0473794117569923,-0.972096621990204,0.197580605745316,0.126451596617699,-0.993204295635223,0.102473460137844,-0.0551780164241791,-0.989461004734039,0.109940111637115,0.0942343771457672,-0.956290185451508,0.0948386937379837,0.276612848043442,-0.972096621990204,0.197580605745316,0.126451596617699,-0.989461004734039,0.109940111637115,0.0942343771457672,-0.993204295635223,0.102473460137844,-0.0551780164241791,-0.968203842639923,0.102330483496189,-0.228275701403618,-0.989461004734039,0.0314114615321159,-0.141351565718651,-0.939662396907806,0.11054852604866,-0.323749244213104,-0.989461004734039,0.0314114615321159,-0.141351565718651,-0.968203842639923,0.102330483496189,-0.228275701403618,-0.989461004734039,0.109940111637115,0.0942343771457672,-0.989827394485474,0.0157115459442139,0.141403913497925,-0.956290185451508,0.0948386937379837,0.276612848043442,-0.944647669792175,-0.165313333272934,0.283394277095795,-0.956290185451508,0.0948386937379837,0.276612848043442,-0.989827394485474,0.0157115459442139,0.141403913497925,-0.989461004734039,0.109940111637115,0.0942343771457672,-0.993204295635223,0.102473460137844,-0.0551780164241791,-0.999969005584717,1.74832852910177e-018,-0.00787377171218395,-0.989827394485474,0.0157115459442139,0.141403913497925,-0.989461004734039,0.109940111637115,0.0942343771457672,-0.999969005584717,1.74832852910177e-018,-0.00787377171218395,-0.993204295635223,0.102473460137844,-0.0551780164241791,-0.989461004734039,0.0314114615321159,-0.141351565718651,-0.999969005584717,1.74832852910177e-018,-0.00787377171218395,-0.944647669792175,-0.165313333272934,0.283394277095795,-0.989827394485474,0.0157115459442139,0.141403913497925,-0.986671388149261,-0.10261382162571,0.126293942332268,
- -0.986671388149261,-0.10261382162571,0.126293942332268,-0.989827394485474,0.0157115459442139,0.141403913497925,-0.999969005584717,1.74832852910177e-018,-0.00787377171218395,-0.986671388149261,-0.10261382162571,0.126293942332268,-0.961942911148071,-0.189234673976898,0.197119444608688,-0.944647669792175,-0.165313333272934,0.283394277095795,-0.999969005584717,1.74832852910177e-018,-0.00787377171218395,-0.989461004734039,0.0314114615321159,-0.141351565718651,-0.99737536907196,0.0157066993415356,-0.0706801414489746,-0.989461004734039,0.0314114615321159,-0.141351565718651,-0.939662396907806,0.11054852604866,-0.323749244213104,-0.99737536907196,0.0157066993415356,-0.0706801414489746,-0.998114347457886,-0.0471550077199936,0.0392958410084248,-0.986671388149261,-0.10261382162571,0.126293942332268,-0.999969005584717,1.74832852910177e-018,-0.00787377171218395,-0.961942911148071,-0.189234673976898,0.197119444608688,-0.986671388149261,-0.10261382162571,0.126293942332268,-0.998114347457886,-0.0471550077199936,0.0392958410084248,-0.975894033908844,0.0944413542747498,-0.196752816438675,-0.99737536907196,0.0157066993415356,-0.0706801414489746,-0.939662396907806,0.11054852604866,-0.323749244213104,-0.939662396907806,0.11054852604866,-0.323749244213104,-0.95048987865448,0.0864081680774689,-0.298500955104828,-0.975894033908844,0.0944413542747498,-0.196752816438675,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.999969005584717,1.74832852910177e-018,-0.00787377171218395,-0.99737536907196,0.0157066993415356,-0.0706801414489746,-0.99737536907196,0.0157066993415356,-0.0706801414489746,-0.975894033908844,0.0944413542747498,-0.196752816438675,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.998114347457886,-0.0471550077199936,0.0392958410084248,-0.999969005584717,1.74832852910177e-018,-0.00787377171218395,-0.95048987865448,0.0864081680774689,-0.298500955104828,-0.992218255996704,-0.0708727315068245,-0.102371722459793,-0.975894033908844,0.0944413542747498,-0.196752816438675,
- -0.975894033908844,0.0944413542747498,-0.196752816438675,-0.992218255996704,-0.0708727315068245,-0.102371722459793,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.986671388149261,-0.126293942332268,-0.10261382162571,-0.992218255996704,-0.0708727315068245,-0.102371722459793,-0.95048987865448,0.0864081680774689,-0.298500955104828,-0.98015296459198,-0.197611466050148,0.0158089175820351,-0.992218255996704,-0.0708727315068245,-0.102371722459793,-0.986671388149261,-0.126293942332268,-0.10261382162571,-0.987687170505524,-0.110620968043804,0.110620968043804,-0.961942911148071,-0.189234673976898,0.197119444608688,-0.998114347457886,-0.0471550077199936,0.0392958410084248,-0.987687170505524,-0.110620968043804,0.110620968043804,-0.998114347457886,-0.0471550077199936,0.0392958410084248,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.961942911148071,-0.189234673976898,0.197119444608688,-0.987687170505524,-0.110620968043804,0.110620968043804,-0.974898219108582,-0.16510371863842,0.149379566311836,-0.992218255996704,-0.0708727315068245,-0.102371722459793,-0.989674627780914,-0.141382083296776,0.0235636811703444,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.989674627780914,-0.141382083296776,0.0235636811703444,-0.987687170505524,-0.110620968043804,0.110620968043804,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.992218255996704,-0.0708727315068245,-0.102371722459793,-0.98015296459198,-0.197611466050148,0.0158089175820351,-0.989674627780914,-0.141382083296776,0.0235636811703444,-0.989674627780914,-0.141382083296776,0.0235636811703444,-0.974898219108582,-0.16510371863842,0.149379566311836,-0.987687170505524,-0.110620968043804,0.110620968043804,-0.974898219108582,-0.16510371863842,0.149379566311836,-0.989674627780914,-0.141382083296776,0.0235636811703444,-0.98015296459198,-0.197611466050148,0.0158089175820351,-0.993698358535767,0.0709784477949142,-0.0867514461278915,-0.970431208610535,0.236690536141396,0.047338105738163,-0.979908049106598,0.165952160954475,-0.110634781420231,
- -0.967664361000061,0.0157343801110983,-0.251750081777573,-0.993698358535767,0.0709784477949142,-0.0867514461278915,-0.979908049106598,0.165952160954475,-0.110634781420231,-0.970431208610535,0.236690536141396,0.047338105738163,-0.993698358535767,0.0709784477949142,-0.0867514461278915,-0.989918947219849,0.133560493588448,0.0471389964222908,-0.956559121608734,0.18973071873188,0.221352517604828,-0.970431208610535,0.236690536141396,0.047338105738163,-0.989918947219849,0.133560493588448,0.0471389964222908,-0.993698358535767,0.0709784477949142,-0.0867514461278915,-0.967664361000061,0.0157343801110983,-0.251750081777573,-0.989674627780914,-0.0235636811703444,-0.141382083296776,-0.937822341918945,-0.0157617200165987,-0.346757858991623,-0.989674627780914,-0.0235636811703444,-0.141382083296776,-0.967664361000061,0.0157343801110983,-0.251750081777573,-0.989918947219849,0.133560493588448,0.0471389964222908,-0.990071713924408,0.0628616958856583,0.125723391771317,-0.956559121608734,0.18973071873188,0.221352517604828,-0.942809045314789,-0.0471404492855072,0.32998314499855,-0.956559121608734,0.18973071873188,0.221352517604828,-0.990071713924408,0.0628616958856583,0.125723391771317,-0.989918947219849,0.133560493588448,0.0471389964222908,-0.993698358535767,0.0709784477949142,-0.0867514461278915,-0.999938011169434,-0.0078735277056694,-0.0078735277056694,-0.990071713924408,0.0628616958856583,0.125723391771317,-0.989918947219849,0.133560493588448,0.0471389964222908,-0.999938011169434,-0.0078735277056694,-0.0078735277056694,-0.993698358535767,0.0709784477949142,-0.0867514461278915,-0.989674627780914,-0.0235636811703444,-0.141382083296776,-0.999938011169434,-0.0078735277056694,-0.0078735277056694,-0.942809045314789,-0.0471404492855072,0.32998314499855,-0.990071713924408,0.0628616958856583,0.125723391771317,-0.98633337020874,-0.0473439991474152,0.157813340425491,-0.98633337020874,-0.0473439991474152,0.157813340425491,-0.990071713924408,0.0628616958856583,0.125723391771317,-0.999938011169434,-0.0078735277056694,-0.0078735277056694,-0.98633337020874,-0.0473439991474152,0.157813340425491,
- -0.962182223796844,-0.102527603507042,0.252375662326813,-0.942809045314789,-0.0471404492855072,0.32998314499855,-0.999938011169434,-0.0078735277056694,-0.0078735277056694,-0.989674627780914,-0.0235636811703444,-0.141382083296776,-0.99737536907196,-0.0157066993415356,-0.0706801414489746,-0.989674627780914,-0.0235636811703444,-0.141382083296776,-0.937822341918945,-0.0157617200165987,-0.346757858991623,-0.99737536907196,-0.0157066993415356,-0.0706801414489746,-0.99799108505249,-0.0314327888190746,0.0550073832273483,-0.98633337020874,-0.0473439991474152,0.157813340425491,-0.999938011169434,-0.0078735277056694,-0.0078735277056694,-0.962182223796844,-0.102527603507042,0.252375662326813,-0.98633337020874,-0.0473439991474152,0.157813340425491,-0.99799108505249,-0.0314327888190746,0.0550073832273483,-0.975320279598236,0.0157309714704752,-0.220233619213104,-0.99737536907196,-0.0157066993415356,-0.0706801414489746,-0.937822341918945,-0.0157617200165987,-0.346757858991623,-0.937822341918945,-0.0157617200165987,-0.346757858991623,-0.948997735977173,-0.0313718244433403,-0.313718259334564,-0.975320279598236,0.0157309714704752,-0.220233619213104,-0.999938011169434,0.0078735277056694,-0.0078735277056694,-0.999938011169434,-0.0078735277056694,-0.0078735277056694,-0.99737536907196,-0.0157066993415356,-0.0706801414489746,-0.99737536907196,-0.0157066993415356,-0.0706801414489746,-0.975320279598236,0.0157309714704752,-0.220233619213104,-0.999938011169434,0.0078735277056694,-0.0078735277056694,-0.999938011169434,0.0078735277056694,-0.0078735277056694,-0.99799108505249,-0.0314327888190746,0.0550073832273483,-0.999938011169434,-0.0078735277056694,-0.0078735277056694,-0.948997735977173,-0.0313718244433403,-0.313718259334564,-0.992741703987122,-0.10242572426796,-0.0630312189459801,-0.975320279598236,0.0157309714704752,-0.220233619213104,-0.975320279598236,0.0157309714704752,-0.220233619213104,-0.992741703987122,-0.10242572426796,-0.0630312189459801,-0.999938011169434,0.0078735277056694,-0.0078735277056694,-0.987533092498779,-0.150105029344559,-0.0474015884101391,
- -0.992741703987122,-0.10242572426796,-0.0630312189459801,-0.948997735977173,-0.0313718244433403,-0.313718259334564,-0.978808522224426,-0.181553184986115,0.0947234109044075,-0.992741703987122,-0.10242572426796,-0.0630312189459801,-0.987533092498779,-0.150105029344559,-0.0474015884101391,-0.987132668495178,-0.0552794300019741,0.150044173002243,-0.962182223796844,-0.102527603507042,0.252375662326813,-0.99799108505249,-0.0314327888190746,0.0550073832273483,-0.987132668495178,-0.0552794300019741,0.150044173002243,-0.99799108505249,-0.0314327888190746,0.0550073832273483,-0.999938011169434,0.0078735277056694,-0.0078735277056694,-0.962182223796844,-0.102527603507042,0.252375662326813,-0.987132668495178,-0.0552794300019741,0.150044173002243,-0.974356293678284,-0.0942925438284874,0.204300507903099,-0.992741703987122,-0.10242572426796,-0.0630312189459801,-0.990500032901764,-0.11791667342186,0.0707499980926514,-0.999938011169434,0.0078735277056694,-0.0078735277056694,-0.990500032901764,-0.11791667342186,0.0707499980926514,-0.987132668495178,-0.0552794300019741,0.150044173002243,-0.999938011169434,0.0078735277056694,-0.0078735277056694,-0.992741703987122,-0.10242572426796,-0.0630312189459801,-0.978808522224426,-0.181553184986115,0.0947234109044075,-0.990500032901764,-0.11791667342186,0.0707499980926514,-0.990500032901764,-0.11791667342186,0.0707499980926514,-0.974356293678284,-0.0942925438284874,0.204300507903099,-0.987132668495178,-0.0552794300019741,0.150044173002243,-0.974356293678284,-0.0942925438284874,0.204300507903099,-0.990500032901764,-0.11791667342186,0.0707499980926514,-0.978808522224426,-0.181553184986115,0.0947234109044075,-0.993605554103851,0.0473145507276058,-0.102514855563641,-0.971399128437042,0.23692661523819,-0.0157951079308987,-0.980520606040955,0.126518785953522,-0.150241062045097,-0.968203842639923,-0.0551010295748711,-0.244018852710724,-0.993605554103851,0.0473145507276058,-0.102514855563641,-0.980520606040955,0.126518785953522,-0.150241062045097,-0.971399128437042,0.23692661523819,-0.0157951079308987,-0.993605554103851,0.0473145507276058,-0.102514855563641,
- -0.989827394485474,0.141403913497925,0.0157115459442139,-0.957127630710602,0.237304374575615,0.166113048791885,-0.971399128437042,0.23692661523819,-0.0157951079308987,-0.989827394485474,0.141403913497925,0.0157115459442139,-0.993605554103851,0.0473145507276058,-0.102514855563641,-0.968203842639923,-0.0551010295748711,-0.244018852710724,-0.989522039890289,-0.0549734458327293,-0.133506938815117,-0.938026189804077,-0.102473445236683,-0.331068068742752,-0.989522039890289,-0.0549734458327293,-0.133506938815117,-0.968203842639923,-0.0551010295748711,-0.244018852710724,-0.989827394485474,0.141403913497925,0.0157115459442139,-0.989461004734039,0.0942343771457672,0.109940111637115,-0.957127630710602,0.237304374575615,0.166113048791885,-0.943129301071167,0.0392970517277718,0.330095231533051,-0.957127630710602,0.237304374575615,0.166113048791885,-0.989461004734039,0.0942343771457672,0.109940111637115,-0.989827394485474,0.141403913497925,0.0157115459442139,-0.993605554103851,0.0473145507276058,-0.102514855563641,-0.999938011169434,-0.0078735277056694,-0.0078735277056694,-0.989461004734039,0.0942343771457672,0.109940111637115,-0.989827394485474,0.141403913497925,0.0157115459442139,-0.999938011169434,-0.0078735277056694,-0.0078735277056694,-0.993605554103851,0.0473145507276058,-0.102514855563641,-0.989522039890289,-0.0549734458327293,-0.133506938815117,-0.999938011169434,-0.0078735277056694,-0.0078735277056694,-0.943129301071167,0.0392970517277718,0.330095231533051,-0.989461004734039,0.0942343771457672,0.109940111637115,-0.986149191856384,-0.00788919348269701,0.165673062205315,-0.986149191856384,-0.00788919348269701,0.165673062205315,-0.989461004734039,0.0942343771457672,0.109940111637115,-0.999938011169434,-0.0078735277056694,-0.0078735277056694,-0.986149191856384,-0.00788919348269701,0.165673062205315,-0.962811231613159,-0.0315675809979439,0.268324434757233,-0.943129301071167,0.0392970517277718,0.330095231533051,-0.999938011169434,-0.0078735277056694,-0.0078735277056694,-0.989522039890289,-0.0549734458327293,-0.133506938815117,
- -0.997529208660126,-0.0314182415604591,-0.0628364831209183,-0.989522039890289,-0.0549734458327293,-0.133506938815117,-0.938026189804077,-0.102473445236683,-0.331068068742752,-0.997529208660126,-0.0314182415604591,-0.0628364831209183,-0.997898638248444,-0.0157149396836758,0.0628597587347031,-0.986149191856384,-0.00788919348269701,0.165673062205315,-0.999938011169434,-0.0078735277056694,-0.0078735277056694,-0.962811231613159,-0.0315675809979439,0.268324434757233,-0.986149191856384,-0.00788919348269701,0.165673062205315,-0.997898638248444,-0.0157149396836758,0.0628597587347031,-0.976347684860229,-0.0393688566982746,-0.212591841816902,-0.997529208660126,-0.0314182415604591,-0.0628364831209183,-0.938026189804077,-0.102473445236683,-0.331068068742752,-0.938026189804077,-0.102473445236683,-0.331068068742752,-0.95048987865448,-0.109974034130573,-0.290645658969879,-0.976347684860229,-0.0393688566982746,-0.212591841816902,-0.999938011169434,0.0078735277056694,-0.0078735277056694,-0.999938011169434,-0.0078735277056694,-0.0078735277056694,-0.997529208660126,-0.0314182415604591,-0.0628364831209183,-0.997529208660126,-0.0314182415604591,-0.0628364831209183,-0.976347684860229,-0.0393688566982746,-0.212591841816902,-0.999938011169434,0.0078735277056694,-0.0078735277056694,-0.999938011169434,0.0078735277056694,-0.0078735277056694,-0.997898638248444,-0.0157149396836758,0.0628597587347031,-0.999938011169434,-0.0078735277056694,-0.0078735277056694,-0.95048987865448,-0.109974034130573,-0.290645658969879,-0.992218255996704,-0.118121221661568,-0.0393737405538559,-0.976347684860229,-0.0393688566982746,-0.212591841816902,-0.976347684860229,-0.0393688566982746,-0.212591841816902,-0.992218255996704,-0.118121221661568,-0.0393737405538559,-0.999938011169434,0.0078735277056694,-0.0078735277056694,-0.987409830093384,-0.15798556804657,-0.00789927877485752,-0.992218255996704,-0.118121221661568,-0.0393737405538559,-0.95048987865448,-0.109974034130573,-0.290645658969879,-0.979510545730591,-0.150086298584938,0.134287729859352,-0.992218255996704,-0.118121221661568,-0.0393737405538559,
- -0.987409830093384,-0.15798556804657,-0.00789927877485752,-0.987317442893982,-0.0157970786094666,0.157970786094666,-0.962811231613159,-0.0315675809979439,0.268324434757233,-0.997898638248444,-0.0157149396836758,0.0628597587347031,-0.987317442893982,-0.0157970786094666,0.157970786094666,-0.997898638248444,-0.0157149396836758,0.0628597587347031,-0.999938011169434,0.0078735277056694,-0.0078735277056694,-0.962811231613159,-0.0315675809979439,0.268324434757233,-0.987317442893982,-0.0157970786094666,0.157970786094666,-0.974687337875366,-0.039301909506321,0.220090687274933,-0.992218255996704,-0.118121221661568,-0.0393737405538559,-0.990285873413086,-0.0943129435181618,0.1021723523736,-0.999938011169434,0.0078735277056694,-0.0078735277056694,-0.990285873413086,-0.0943129435181618,0.1021723523736,-0.987317442893982,-0.0157970786094666,0.157970786094666,-0.999938011169434,0.0078735277056694,-0.0078735277056694,-0.992218255996704,-0.118121221661568,-0.0393737405538559,-0.979510545730591,-0.150086298584938,0.134287729859352,-0.990285873413086,-0.0943129435181618,0.1021723523736,-0.990285873413086,-0.0943129435181618,0.1021723523736,-0.974687337875366,-0.039301909506321,0.220090687274933,-0.987317442893982,-0.0157970786094666,0.157970786094666,-0.974687337875366,-0.039301909506321,0.220090687274933,-0.990285873413086,-0.0943129435181618,0.1021723523736,-0.979510545730591,-0.150086298584938,0.134287729859352,-0.993852913379669,0.00788772199302912,-0.110428102314472,-0.971580982208252,0.213273867964745,-0.102687411010265,-0.979816317558289,0.0632139518857002,-0.189641863107681,-0.967963933944702,-0.133783623576164,-0.212479889392853,-0.993852913379669,0.00788772199302912,-0.110428102314472,-0.979816317558289,0.0632139518857002,-0.189641863107681,-0.971580982208252,0.213273867964745,-0.102687411010265,-0.993852913379669,0.00788772199302912,-0.110428102314472,-0.989186525344849,0.141312345862389,-0.0392534323036671,-0.956051468849182,0.28444504737854,0.071111261844635,-0.971580982208252,0.213273867964745,-0.102687411010265,-0.989186525344849,0.141312345862389,-0.0392534323036671,
- -0.993852913379669,0.00788772199302912,-0.110428102314472,-0.967963933944702,-0.133783623576164,-0.212479889392853,-0.989522039890289,-0.102093540132046,-0.102093540132046,-0.939428150653839,-0.213147565722466,-0.26840803027153,-0.989522039890289,-0.102093540132046,-0.102093540132046,-0.967963933944702,-0.133783623576164,-0.212479889392853,-0.989186525344849,0.141312345862389,-0.0392534323036671,-0.990071713924408,0.125723391771317,0.0628616958856583,-0.956051468849182,0.28444504737854,0.071111261844635,-0.944852709770203,0.149601668119431,0.291329592466354,-0.956051468849182,0.28444504737854,0.071111261844635,-0.990071713924408,0.125723391771317,0.0628616958856583,-0.989186525344849,0.141312345862389,-0.0392534323036671,-0.993852913379669,0.00788772199302912,-0.110428102314472,-0.999969005584717,-0.00787377171218395,-1.74832852910177e-018,-0.990071713924408,0.125723391771317,0.0628616958856583,-0.989186525344849,0.141312345862389,-0.0392534323036671,-0.999969005584717,-0.00787377171218395,-1.74832852910177e-018,-0.993852913379669,0.00788772199302912,-0.110428102314472,-0.989522039890289,-0.102093540132046,-0.102093540132046,-0.999969005584717,-0.00787377171218395,-1.74832852910177e-018,-0.944852709770203,0.149601668119431,0.291329592466354,-0.990071713924408,0.125723391771317,0.0628616958856583,-0.98633337020874,0.0473439991474152,0.157813340425491,-0.98633337020874,0.0473439991474152,0.157813340425491,-0.990071713924408,0.125723391771317,0.0628616958856583,-0.999969005584717,-0.00787377171218395,-1.74832852910177e-018,-0.98633337020874,0.0473439991474152,0.157813340425491,-0.963381409645081,0.0631725490093231,0.260586768388748,-0.944852709770203,0.149601668119431,0.291329592466354,-0.999969005584717,-0.00787377171218395,-1.74832852910177e-018,-0.989522039890289,-0.102093540132046,-0.102093540132046,-0.99737536907196,-0.0549734458327293,-0.0471200942993164,-0.989522039890289,-0.102093540132046,-0.102093540132046,-0.939428150653839,-0.213147565722466,-0.26840803027153,-0.99737536907196,-0.0549734458327293,-0.0471200942993164,
- -0.99799108505249,0.00785819720476866,0.0628655776381493,-0.98633337020874,0.0473439991474152,0.157813340425491,-0.999969005584717,-0.00787377171218395,-1.74832852910177e-018,-0.963381409645081,0.0631725490093231,0.260586768388748,-0.98633337020874,0.0473439991474152,0.157813340425491,-0.99799108505249,0.00785819720476866,0.0628655776381493,-0.975803375244141,-0.110171347856522,-0.188865169882774,-0.99737536907196,-0.0549734458327293,-0.0471200942993164,-0.939428150653839,-0.213147565722466,-0.26840803027153,-0.939428150653839,-0.213147565722466,-0.26840803027153,-0.948618531227112,-0.211675196886063,-0.23519466817379,-0.975803375244141,-0.110171347856522,-0.188865169882774,-0.999969005584717,1.74832852910177e-018,-0.00787377171218395,-0.999969005584717,-0.00787377171218395,-1.74832852910177e-018,-0.99737536907196,-0.0549734458327293,-0.0471200942993164,-0.99737536907196,-0.0549734458327293,-0.0471200942993164,-0.975803375244141,-0.110171347856522,-0.188865169882774,-0.999969005584717,1.74832852910177e-018,-0.00787377171218395,-0.999969005584717,1.74832852910177e-018,-0.00787377171218395,-0.99799108505249,0.00785819720476866,0.0628655776381493,-0.999969005584717,-0.00787377171218395,-1.74832852910177e-018,-0.948618531227112,-0.211675196886063,-0.23519466817379,-0.992002964019775,-0.125968635082245,0.0078730396926403,-0.975803375244141,-0.110171347856522,-0.188865169882774,-0.975803375244141,-0.110171347856522,-0.188865169882774,-0.992002964019775,-0.125968635082245,0.0078730396926403,-0.999969005584717,1.74832852910177e-018,-0.00787377171218395,-0.987533092498779,-0.150105029344559,0.0474015884101391,-0.992002964019775,-0.125968635082245,0.0078730396926403,-0.948618531227112,-0.211675196886063,-0.23519466817379,-0.978808522224426,-0.0947234109044075,0.181553184986115,-0.992002964019775,-0.125968635082245,0.0078730396926403,-0.987533092498779,-0.150105029344559,0.0474015884101391,-0.987872242927551,0.0395148880779743,0.150156587362289,-0.963381409645081,0.0631725490093231,0.260586768388748,-0.99799108505249,0.00785819720476866,0.0628655776381493,
- -0.987872242927551,0.0395148880779743,0.150156587362289,-0.99799108505249,0.00785819720476866,0.0628655776381493,-0.999969005584717,1.74832852910177e-018,-0.00787377171218395,-0.963381409645081,0.0631725490093231,0.260586768388748,-0.987872242927551,0.0395148880779743,0.150156587362289,-0.974687337875366,0.039301909506321,0.220090687274933,-0.992002964019775,-0.125968635082245,0.0078730396926403,-0.990530550479889,-0.0550294741988182,0.125781655311584,-0.999969005584717,1.74832852910177e-018,-0.00787377171218395,-0.990530550479889,-0.0550294741988182,0.125781655311584,-0.987872242927551,0.0395148880779743,0.150156587362289,-0.999969005584717,1.74832852910177e-018,-0.00787377171218395,-0.992002964019775,-0.125968635082245,0.0078730396926403,-0.978808522224426,-0.0947234109044075,0.181553184986115,-0.990530550479889,-0.0550294741988182,0.125781655311584,-0.990530550479889,-0.0550294741988182,0.125781655311584,-0.974687337875366,0.039301909506321,0.220090687274933,-0.987872242927551,0.0395148880779743,0.150156587362289,-0.974687337875366,0.039301909506321,0.220090687274933,-0.990530550479889,-0.0550294741988182,0.125781655311584,-0.978808522224426,-0.0947234109044075,0.181553184986115
- }
- NormalsW: *1005 {
- 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
- }
- }
- LayerElementBinormal: 0 {
- Version: 102
- Name: "UVmap_0"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *3015 {
- a: 0.0915577933192253,-0.684572100639343,0.723172426223755,0.137209177017212,-0.670286953449249,0.729307293891907,-0.110607102513313,-0.72817325592041,0.676409482955933,0.0704123675823212,-0.952983677387238,-0.294727474451065,0.0986906588077545,-0.947779595851898,-0.303272277116776,0.17651005089283,-0.928920269012451,-0.325502038002014,0.0541446954011917,0.130470097064972,0.989972710609436,-0.223138093948364,0.103338897228241,0.969293832778931,-0.320168048143387,0.0914176478981972,0.942939698696136,0.0709238722920418,-0.953400254249573,-0.293253898620605,0.00743540376424789,-0.961954712867737,-0.273107886314392,0.0988610312342644,-0.948253870010376,-0.301730304956436,-0.00754638202488422,-0.970433294773102,-0.241251543164253,0.101799920201302,-0.956148624420166,-0.27462100982666,0.0160122290253639,-0.968444466590881,-0.24871452152729,0.041169848293066,-0.98353773355484,-0.175950542092323,-0.0329691134393215,-0.988265693187714,-0.149144843220711,0.00546405976638198,-0.986583471298218,-0.16316631436348,0.0588061809539795,-0.705847084522247,0.705919086933136,0.137761533260345,-0.679542720317841,0.720585525035858,0.00139759469311684,-0.721742630004883,0.692160189151764,0.0513789057731628,-0.991088151931763,0.122900567948818,0.0410399585962296,-0.991571128368378,0.122891947627068,0.133630007505417,-0.98343151807785,0.122497506439686,0.0157320201396942,-0.853632509708405,0.520638108253479,-0.0332288779318333,-0.860189497470856,0.508891046047211,0.126850515604019,-0.830531716346741,0.542333900928497,0.125270754098892,-0.978873670101166,-0.161596983671188,0.297282785177231,-0.942811191082001,-0.150765016674995,0.111771903932095,-0.980402588844299,-0.162227615714073,0.0410378389060497,-0.981137096881866,0.188907146453857,-0.115163303911686,-0.983820974826813,0.137236639857292,0.0289380252361298,-0.982298314571381,0.185074836015701,-0.065559446811676,-0.997746348381042,0.0142964757978916,0.0666938573122025,-0.995494723320007,0.0673963278532028,-0.0434806309640408,-0.998784422874451,0.023218771442771,0.0720036029815674,-0.996541500091553,0.0414787344634533,
- 0.0452008955180645,-0.998120963573456,0.0413687005639076,-0.0461214259266853,-0.998103439807892,0.0407716333866119,-0.0390115603804588,-0.999219000339508,-0.00629734806716442,0.0905850529670715,-0.994651913642883,0.049617525190115,-0.0544188991189003,-0.998434126377106,-0.0129589093849063,0.0438821688294411,-0.996215999126434,0.075020357966423,-0.0162803307175636,-0.997181534767151,0.073238916695118,0.0435223057866097,-0.996232509613037,0.0750104933977127,-0.0522231422364712,-0.995291650295258,0.08165442943573,0.04358946159482,-0.99632853269577,0.0736849680542946,-0.0163171105086803,-0.996760725975037,0.078751727938652,0.0177596099674702,-0.997710049152374,0.0652632042765617,-0.0161968525499105,-0.998007237911224,0.0609857551753521,0.0428356043994427,-0.99673980474472,0.0683745667338371,0.050902608782053,-0.956510603427887,0.287222027778625,0.0754208192229271,-0.957041025161743,0.279971927404404,0.105353325605392,-0.956838548183441,0.270851880311966,-0.0162890087813139,-0.997085452079773,0.0745333060622215,0.0224377885460854,-0.99722158908844,0.0710328072309494,-0.0516256801784039,-0.995644629001617,0.0776309072971344,-0.0162137839943171,-0.997853755950928,0.0634430274367332,0.018147936090827,-0.9975306391716,0.0678478553891182,0.0224836058914661,-0.997404754161835,0.0683980584144592,0.110852688550949,-0.951263606548309,0.287766218185425,0.0202392879873514,-0.948479533195496,0.316191464662552,0.0536920726299286,-0.95050448179245,0.306036680936813,0.0226652398705482,-0.998067438602448,0.0578584335744381,0.0165217667818069,-0.998235940933228,0.0570266582071781,-0.0237039383500814,-0.998390197753906,0.051528412848711,-0.017114507034421,-0.995597779750824,0.0921538770198822,0.0407201573252678,-0.996474325656891,0.0733547657728195,-0.035010039806366,-0.994579672813416,0.0979058593511581,-0.040152121335268,-0.995839834213257,0.081797681748867,-0.144042432308197,-0.983144283294678,0.112601451575756,-0.0197956096380949,-0.996936917304993,0.075664795935154,-0.155995965003967,-0.987433075904846,0.025322575122118,0.0227144844830036,-0.998229384422302,0.0549741461873055,
- -0.0243827756494284,-0.998582005500793,0.0473240464925766,-0.144276067614555,-0.983294546604156,0.110978618264198,-0.0406216643750668,-0.995940744876862,0.0803238153457642,-0.176512748003006,-0.976913690567017,0.120345234870911,-0.187481015920639,-0.979930281639099,0.0677321404218674,-0.325151920318604,-0.942971765995026,0.0712775886058807,-0.150502040982246,-0.986366033554077,0.0665666460990906,-0.198586404323578,-0.978666186332703,0.0526878349483013,0.0226841438561678,-0.998130559921265,0.0567526109516621,-0.152235761284828,-0.986880302429199,0.0537732616066933,-0.324938952922821,-0.943941831588745,0.0582126937806606,-0.198657467961311,-0.97832190990448,0.0584934912621975,-0.151619106531143,-0.98671543598175,0.058346189558506,-0.324342548847198,-0.945400416851044,0.031938549131155,-0.139340773224831,-0.988691389560699,0.0554402396082878,-0.198527082800865,-0.978908896446228,0.0482127889990807,-0.140848383307457,-0.987195134162903,0.0748844742774963,0.0224269926548004,-0.997177541255951,0.0716522186994553,-0.198827505111694,-0.977117419242859,0.0755592733621597,-0.137809559702873,-0.989791989326477,0.0363392271101475,-0.323918044567108,-0.94592410326004,0.0174549836665392,-0.269744873046875,-0.962653636932373,0.0231468267738819,-0.0535679124295712,-0.994434058666229,0.0907273069024086,0.0222633853554726,-0.996467411518097,0.0809760913252831,0.0674965530633926,-0.994902193546295,0.0749256536364555,-0.142179653048515,-0.985496520996094,0.0926379188895226,0.0677242651581764,-0.995203375816345,0.0705954432487488,0.0223570000380278,-0.99688333272934,0.0756554901599884,0.132592990994453,-0.989566802978516,-0.0563619248569012,-0.0139410365372896,-0.985741496086121,-0.167688295245171,0.0756376981735229,-0.992081165313721,-0.10027003288269,0.00732841342687607,-0.999036073684692,0.0432808175683022,-0.136297821998596,-0.990503251552582,0.0180611070245504,-0.264113903045654,-0.964477717876434,-0.00515757128596306,0.068957656621933,-0.996526956558228,0.0466796308755875,-0.137957006692886,-0.989703118801117,0.0381520502269268,
- 0.00711794290691614,-0.998991668224335,0.0443296171724796,0.071064718067646,-0.99746435880661,0.00383738218806684,0.0178226381540298,-0.999799489974976,-0.0091292355209589,0.105557233095169,-0.994337677955627,0.0122594404965639,-0.238461390137672,-0.963430106639862,-0.122224152088165,0.081027515232563,-0.996711850166321,2.53263824561145e-005,0.0206636730581522,-0.999513626098633,-0.0233572795987129,0.0763665437698364,-0.996882140636444,0.019853001460433,0.10062999278307,-0.99461966753006,0.0246031209826469,0.0144541300833225,-0.999865829944611,0.00771861616522074,0.245810002088547,-0.860766768455505,0.445710629224777,0.291537344455719,-0.840337932109833,0.456988155841827,0.0540200173854828,-0.92009437084198,0.387953877449036,0.204427927732468,-0.771747052669525,-0.602175772190094,0.23685921728611,-0.75631445646286,-0.60982471704483,0.312228858470917,-0.715787470340729,-0.624629080295563,0.0919908136129379,-0.202856585383415,0.974877893924713,-0.178304746747017,-0.269334942102432,0.946396470069885,-0.275318324565887,-0.288710325956345,0.916976749897003,0.205085232853889,-0.772543668746948,-0.60092955827713,0.145632058382034,-0.797892808914185,-0.584943115711212,0.237199768424034,-0.757240056991577,-0.608542382717133,0.132701456546783,-0.819510877132416,-0.557487428188324,0.243076086044312,-0.773161590099335,-0.585777401924133,0.156621515750885,-0.810585498809814,-0.564287841320038,0.188380837440491,-0.844667255878448,-0.501048743724823,0.117925733327866,-0.870704650878906,-0.477458894252777,0.152947783470154,-0.858471035957336,-0.489524722099304,0.214297533035278,-0.881061971187592,0.421670973300934,0.29308220744133,-0.845814824104309,0.445757985115051,0.162627279758453,-0.900025308132172,0.404359608888626,0.216300666332245,-0.950390338897705,-0.223545089364052,0.213816121220589,-0.95094221830368,-0.223587974905968,0.303423404693604,-0.926851809024811,-0.221088215708733,0.18888621032238,-0.961804270744324,0.198127567768097,0.135054334998131,-0.973757207393646,0.183186262845993,0.291614979505539,-0.929628610610962,0.22528101503849,
- 0.277103990316391,-0.828675448894501,-0.486323446035385,0.436029374599457,-0.770825922489166,-0.464441448450089,0.258338123559952,-0.833777189254761,-0.487931549549103,0.20916411280632,-0.964882075786591,-0.158911690115929,0.0578144602477551,-0.976680040359497,-0.206769675016403,0.201416447758675,-0.966099560260773,-0.161502316594124,0.101506069302559,-0.939566314220428,-0.326973527669907,0.229738682508469,-0.932665348052979,-0.278128921985626,0.123530156910419,-0.939644932746887,-0.319073438644409,0.233494699001312,-0.924297094345093,-0.301919102668762,0.214255720376968,-0.928789258003235,-0.302398800849915,0.121963858604431,-0.945133566856384,-0.303063273429871,0.126191362738609,-0.929361402988434,-0.346934020519257,0.25167915225029,-0.921815752983093,-0.294810801744461,0.110926248133183,-0.929109573364258,-0.352776050567627,0.206743597984314,-0.940295219421387,-0.2703737616539,0.152024582028389,-0.950153708457947,-0.272206723690033,0.214248269796371,-0.938705563545227,-0.270054966211319,0.118019700050354,-0.957308173179626,-0.26387956738472,0.214254945516586,-0.938194096088409,-0.271820902824402,0.152255475521088,-0.951596736907959,-0.266986757516861,0.182692646980286,-0.942425727844238,-0.280102252960205,0.151488766074181,-0.946804761886597,-0.283922255039215,0.205310270190239,-0.938637495040894,-0.277141511440277,0.222896903753281,-0.973166406154633,-0.0571333132684231,0.24443045258522,-0.967588007450104,-0.0634612664580345,0.274513334035873,-0.958860695362091,-0.072309136390686,0.152075409889221,-0.950471341609955,-0.271066963672638,0.187671959400177,-0.943183422088623,-0.274197727441788,0.118420712649822,-0.956170856952667,-0.267794340848923,0.151598870754242,-0.947492957115173,-0.281557857990265,0.183210775256157,-0.943061172962189,-0.277614265680313,0.187583863735199,-0.942368745803833,-0.277044117450714,0.280064612627029,-0.958433449268341,-0.0544894300401211,0.194779276847839,-0.980456531047821,-0.0276779886335135,0.225870221853256,-0.973438501358032,-0.037419255822897,0.187256500124931,-0.939397990703583,-0.287169724702835,
- 0.181031256914139,-0.94035530090332,-0.288027107715607,0.144501239061356,-0.945190250873566,-0.292805165052414,0.152717217803001,-0.954945921897888,-0.25447154045105,0.205280542373657,-0.940337300300598,-0.271340489387512,0.13177227973938,-0.959868729114532,-0.247564673423767,0.125997096300125,-0.956483244895935,-0.263181775808334,0.021916326135397,-0.973101794719696,-0.229330569505692,0.149344861507416,-0.951094806194305,-0.27039760351181,0.00544056668877602,-0.949310898780823,-0.314291626214981,0.187162026762962,-0.938555777072906,-0.289971798658371,0.143630534410477,-0.944083690643311,-0.296776711940765,0.0216157976537943,-0.972736120223999,-0.230905160307884,0.125470981001854,-0.956162214279175,-0.264595806598663,-0.000799048691987991,-0.974754869937897,-0.223276346921921,-0.0138326771557331,-0.962156653404236,-0.272145658731461,-0.163237735629082,-0.952958226203918,-0.255390405654907,0.013220427557826,-0.961491346359253,-0.274517118930817,-0.0338537693023682,-0.957883059978485,-0.285155922174454,0.187226250767708,-0.939127624034882,-0.288072347640991,0.0108141489326954,-0.957904100418091,-0.286884695291519,-0.163609176874161,-0.949419677257538,-0.268019318580627,-0.0336722992360592,-0.959539890289307,-0.279552489519119,0.0116793662309647,-0.959212601184845,-0.282444506883621,-0.164272412657738,-0.941788554191589,-0.29334083199501,0.0241008978337049,-0.95784205198288,-0.286282539367676,-0.0339958295226097,-0.956555843353271,-0.289560556411743,0.0235834009945393,-0.963385760784149,-0.267080098390579,0.187686607241631,-0.94331955909729,-0.27371871471405,-0.0331346169114113,-0.964199542999268,-0.263099640607834,0.0245864801108837,-0.952186167240143,-0.304527699947357,-0.164586752653122,-0.937332332134247,-0.307114601135254,-0.10421958565712,-0.945825695991516,-0.307493269443512,0.117122799158096,-0.959774434566498,-0.255176931619644,0.187957718968391,-0.945877194404602,-0.264553189277649,0.239631801843643,-0.932396948337555,-0.270578056573868,0.0231053959578276,-0.968085289001465,-0.249553635716438,0.239647760987282,-0.931214272975922,-0.274606972932816,
- 0.187806859612465,-0.944444715976715,-0.269727557897568,0.286539286375046,-0.87373822927475,-0.393035620450974,0.138745248317719,-0.858461380004883,-0.493755042552948,0.236909180879593,-0.871683537960052,-0.429001122713089,0.171757280826569,-0.937970995903015,-0.301180720329285,0.0250510014593601,-0.946340441703796,-0.322199106216431,-0.100149765610695,-0.93706202507019,-0.334491908550262,0.239660173654556,-0.924451649188995,-0.296567380428314,0.0245361179113388,-0.952793955802917,-0.30262479186058,0.171586453914642,-0.93836373090744,-0.300052613019943,0.239361137151718,-0.910979449748993,-0.335890889167786,0.179083123803139,-0.919175922870636,-0.35077777504921,0.264144271612167,-0.90652072429657,-0.329314351081848,-0.0823456048965454,-0.892347633838654,-0.443773537874222,0.244697213172913,-0.908037900924683,-0.339985996484756,0.181001722812653,-0.913563370704651,-0.364198446273804,0.241340100765228,-0.915530025959015,-0.321807205677032,0.259977370500565,-0.911851167678833,-0.31770932674408,0.176781713962555,-0.925511717796326,-0.334927320480347,0.087441474199295,-0.232657507061958,0.968619883060455,0.139798894524574,-0.21496257185936,0.9665647149086,-0.10531235486269,-0.290984392166138,0.950913965702057,0.0677984282374382,-0.972650766372681,0.222157627344131,0.10376064479351,-0.972303926944733,0.209425151348114,0.178902849555016,-0.966952323913574,0.181650757789612,0.0523623488843441,0.607895910739899,0.792288422584534,-0.222469583153725,0.574265956878662,0.787861585617065,-0.315371990203857,0.551940321922302,0.771947085857391,0.0683098435401917,-0.972274005413055,0.223645240068436,0.00862324144691229,-0.969722449779511,0.244057267904282,0.103931270539761,-0.971946954727173,0.210991844534874,-0.0095059908926487,-0.960855543613434,0.276886999607086,0.106888458132744,-0.965251088142395,0.238464653491974,0.0172384679317474,-0.9631467461586,0.268423438072205,0.0424804538488388,-0.939859449863434,0.338909715414047,-0.0328581966459751,-0.930456817150116,0.364925146102905,0.00399231212213635,-0.935809016227722,0.352485120296478,
- 0.0564288832247257,-0.259222835302353,0.964167654514313,0.140402629971504,-0.227191999554634,0.963675737380981,0.00456466898322105,-0.277880311012268,0.960604846477509,0.0516935996711254,-0.796837568283081,0.601978123188019,0.0470014438033104,-0.797041118144989,0.602093279361725,0.138551369309425,-0.789863526821136,0.597427248954773,0.020036218687892,-0.477887243032455,0.878192603588104,-0.0361374244093895,-0.491161018610001,0.87031888961792,0.12391459196806,-0.449007987976074,0.884893894195557,0.126243695616722,-0.928403556346893,0.349470406770706,0.293719738721848,-0.892948806285858,0.341132342815399,0.10962225496769,-0.930412769317627,0.349735677242279,0.0384076833724976,-0.755879461765289,0.653583288192749,-0.11448510736227,-0.783317685127258,0.610988259315491,0.0281600877642632,-0.758339285850525,0.651251554489136,-0.0649191364645958,-0.856817483901978,0.511516690254211,0.064264141023159,-0.829086303710938,0.555415213108063,-0.0447533652186394,-0.853569328784943,0.519053518772125,0.0694252923130989,-0.842451989650726,0.534279704093933,0.0513497591018677,-0.843438923358917,0.534765362739563,-0.0474593639373779,-0.843946516513824,0.534323811531067,-0.0402901582419872,-0.868712544441223,0.493675321340561,0.0928202420473099,-0.83586198091507,0.541035294532776,-0.0537921413779259,-0.871031880378723,0.488272309303284,0.0438796207308769,-0.825236439704895,0.563080310821533,-0.0153627023100853,-0.826959311962128,0.562051892280579,0.0495913289487362,-0.82491660118103,0.563074946403503,-0.0535579957067966,-0.821001529693604,0.568408250808716,0.0496988296508789,-0.826058745384216,0.561388432979584,-0.0154090337455273,-0.823902189731598,0.566522538661957,0.0154998917132616,-0.831609010696411,0.555145144462585,-0.0152566013857722,-0.833761990070343,0.551913201808929,0.0427850857377052,-0.829028725624084,0.55756688117981,0.0492500588297844,-0.684455871582031,0.727388858795166,0.076718881726265,-0.689035534858704,0.72065544128418,0.103318259119987,-0.692939341068268,0.713554799556732,-0.0153728723526001,-0.826292753219604,0.563031017780304,
- 0.0260854754596949,-0.828213810920715,0.559804916381836,-0.0529648885130882,-0.823310971260071,0.565113961696625,-0.0152781791985035,-0.832400441169739,0.553964078426361,0.0158922486007214,-0.830166280269623,0.55728942155838,0.0261182487010956,-0.829254329204559,0.55826073884964,0.108745872974396,-0.679613351821899,0.725465476512909,0.0157069060951471,-0.662320196628571,0.749056339263916,0.0520887151360512,-0.669830083847046,0.740685164928436,0.0263015050441027,-0.835072755813599,0.549510419368744,0.0142451822757721,-0.836182236671448,0.548266649246216,-0.0288029611110687,-0.839131832122803,0.543165028095245,-0.0218361839652061,-0.815149903297424,0.578838407993317,0.0396957285702229,-0.826119422912598,0.562095165252686,-0.039398156106472,-0.8113893866539,0.583176672458649,-0.0444802455604076,-0.820600867271423,0.569768309593201,-0.141469433903694,-0.795879542827606,0.588695228099823,-0.0245382599532604,-0.824617803096771,0.565157771110535,-0.153225556015968,-0.842603027820587,0.516277134418488,0.0263495910912752,-0.836599469184875,0.547181010246277,-0.0295025557279587,-0.841462135314941,0.539510011672974,-0.141703233122826,-0.796825289726257,0.587358176708221,-0.0449455715715885,-0.821433544158936,0.568530559539795,-0.173951700329781,-0.786690235137939,0.592333734035492,-0.184543147683144,-0.815302610397339,0.548840284347534,-0.32578644156456,-0.780793070793152,0.533128082752228,-0.147816732525826,-0.821326792240143,0.550974249839783,-0.197221398353577,-0.821426272392273,0.535128593444824,0.0263284593820572,-0.835928559303284,0.548206508159637,-0.149528220295906,-0.828102469444275,0.540266215801239,-0.325558930635452,-0.788188815116882,0.52227383852005,-0.197292059659958,-0.818245887756348,0.539953231811523,-0.148922875523567,-0.825710356235504,0.544081211090088,-0.324931681156158,-0.802643358707428,0.500182926654816,-0.14423531293869,-0.828231990337372,0.54150527715683,-0.19716377556324,-0.823806047439575,0.531479179859161,-0.145720019936562,-0.816852450370789,0.558137774467468,0.0260705500841141,-0.827739953994751,0.560505926609039,
- -0.197462424635887,-0.808684766292572,0.554109752178192,-0.142780557274818,-0.838658034801483,0.525610506534576,-0.324491918087006,-0.810326218605042,0.487930685281754,-0.266068190336227,-0.822794616222382,0.50221186876297,-0.0549046471714973,-0.815694689750671,0.575871229171753,0.0259114634245634,-0.822688937187195,0.567901015281677,0.0674876123666763,-0.824160099029541,0.562321722507477,-0.14701135456562,-0.806275308132172,0.572981417179108,0.0677281022071838,-0.826587200164795,0.558718681335449,0.0260051153600216,-0.82566237449646,0.563564836978912,0.134561389684677,-0.884250164031982,0.44720795750618,-0.0151922106742859,-0.937835454940796,0.346747547388077,0.076117604970932,-0.909121453762054,0.409517139196396,0.00436487793922424,-0.843839347362518,0.536578118801117,-0.14129775762558,-0.848624110221863,0.509776651859283,-0.260427325963974,-0.838371336460114,0.478864371776581,0.0690298303961754,-0.839676439762115,0.538682103157043,-0.142940297722816,-0.837545692920685,0.527337849140167,0.00407576560974121,-0.843071043491364,0.537786781787872,0.0712586045265198,-0.86187881231308,0.502082884311676,0.0149733871221542,-0.870801389217377,0.491406947374344,0.107943996787071,-0.854475677013397,0.508152961730957,-0.234701082110405,-0.895707964897156,0.377654105424881,0.0767382010817528,-0.86427903175354,0.49712473154068,0.0179054960608482,-0.877829194068909,0.478639125823975,0.0717845410108566,-0.854151129722595,0.51504647731781,0.103059023618698,-0.848594486713409,0.518908798694611,0.0115508139133453,-0.862365067005157,0.50615519285202,0.0896441340446472,-0.994153499603271,-0.0601895824074745,0.143610939383507,-0.988717794418335,-0.0425799749791622,-0.108236476778984,-0.986572921276093,-0.122306011617184,0.0707979425787926,-0.386630684137344,-0.919513165950775,0.104709394276142,-0.37471878528595,-0.921206712722778,0.182290241122246,-0.345439016819,-0.920566201210022,0.0554293021559715,-0.674353837966919,0.736325085163116,-0.223032802343369,-0.676093578338623,0.70224916934967,-0.319382071495056,-0.66368967294693,0.676395773887634,
- 0.0713159888982773,-0.388024479150772,-0.918885827064514,0.00478005362674594,-0.409927010536194,-0.912105858325958,0.104885905981064,-0.376196384429932,-0.920584201812744,-0.00860933493822813,-0.439274907112122,-0.898311495780945,0.107953377068043,-0.402090579271317,-0.909213602542877,0.0132612362504005,-0.432800590991974,-0.901392161846161,0.0382004231214523,-0.498420178890228,-0.866093575954437,-0.0354072339832783,-0.521710515022278,-0.852387487888336,0.00452470779418945,-0.509465575218201,-0.860479235649109,0.0550544410943985,-0.994565844535828,-0.0883618518710136,0.144198834896088,-0.988021850585938,-0.0549514703452587,-0.000134814079501666,-0.994090855121613,-0.108552165329456,0.0508792623877525,-0.731232702732086,-0.680227994918823,0.0424672663211823,-0.731482744216919,-0.680536210536957,0.141046434640884,-0.72526615858078,-0.673865735530853,0.015176048502326,-0.947489261627197,-0.319427490234375,-0.0345273055136204,-0.942585289478302,-0.332175940275192,0.122467592358589,-0.949473083019257,-0.288968116044998,0.127036392688751,-0.505348086357117,-0.853513360023499,0.292601078748703,-0.491160154342651,-0.820454955101013,0.112490564584732,-0.505895853042603,-0.855228185653687,0.0406999439001083,-0.775324404239655,-0.630250453948975,-0.111160717904568,-0.738757729530334,-0.664740860462189,0.0290195941925049,-0.773209691047668,-0.633486151695251,-0.0614774450659752,-0.653727233409882,-0.754228949546814,0.066707506775856,-0.691547811031342,-0.719243884086609,-0.0411510653793812,-0.660583317279816,-0.749624073505402,0.0721088722348213,-0.672322988510132,-0.736737430095673,0.0469951555132866,-0.673211514949799,-0.737955093383789,-0.0437244884669781,-0.67287415266037,-0.738463699817657,-0.0365657210350037,-0.638362228870392,-0.768867075443268,0.0879589021205902,-0.676709890365601,-0.730976700782776,-0.0503528341650963,-0.633378863334656,-0.772201895713806,0.0432931110262871,-0.697838604450226,-0.714945495128632,-0.0166217237710953,-0.697078227996826,-0.716802477836609,0.0451637208461761,-0.697821915149689,-0.714846074581146,
- -0.0499906279146671,-0.702245831489563,-0.71017724275589,0.0452489852905273,-0.696708798408508,-0.715925514698029,-0.0166535694152117,-0.701035678386688,-0.71293181180954,0.0134245902299881,-0.690972030162811,-0.722756862640381,-0.0165490657091141,-0.688199162483215,-0.725333154201508,0.0422254949808121,-0.693042933940887,-0.719658672809601,0.0473448075354099,-0.835569322109222,-0.547341167926788,0.0752246677875519,-0.829689741134644,-0.553133189678192,0.100377276539803,-0.823769927024841,-0.5579674243927,-0.0166293028742075,-0.698016464710236,-0.715888619422913,0.0224425978958607,-0.695403814315796,-0.718268752098084,-0.0493714585900307,-0.699379205703735,-0.713043689727783,-0.0165637899190187,-0.689982295036316,-0.723636627197266,0.0138164833188057,-0.692831814289093,-0.720966815948486,0.0224706418812275,-0.693524777889252,-0.72008228302002,0.105819799005985,-0.833215415477753,-0.54272848367691,0.0215435083955526,-0.851654529571533,-0.523660659790039,0.0501972809433937,-0.84613573551178,-0.530598282814026,0.0225826818495989,-0.685864806175232,-0.72737854719162,0.0121621340513229,-0.684951603412628,-0.728487074375153,-0.0227878242731094,-0.681336402893066,-0.731615662574768,-0.0161908846348524,-0.710356473922729,-0.703655898571014,0.0368555299937725,-0.697726011276245,-0.715416073799133,-0.0371615849435329,-0.71474289894104,-0.698399364948273,-0.0423565246164799,-0.703193962574005,-0.709735333919525,-0.148244455456734,-0.718664467334747,-0.679371058940887,-0.018898231908679,-0.698604464530945,-0.715258479118347,-0.160448059439659,-0.65308153629303,-0.740095317363739,0.0226129163056612,-0.683754086494446,-0.7293621301651,-0.0234713889658451,-0.6782546043396,-0.734452068805695,-0.14847756922245,-0.717521905899048,-0.680526852607727,-0.0428279675543308,-0.702134490013123,-0.710755288600922,-0.175311207771301,-0.720048308372498,-0.671413719654083,-0.18596051633358,-0.681928992271423,-0.707383632659912,-0.323262721300125,-0.661124289035797,-0.67706423997879,-0.154852747917175,-0.684689581394196,-0.712194383144379,-0.200627863407135,-0.669134736061096,-0.715546786785126,
- 0.0225941631942987,-0.685065448284149,-0.728131115436554,-0.156614392995834,-0.67503947019577,-0.720967233181,-0.323049992322922,-0.651777505874634,-0.686166822910309,-0.20072740316391,-0.673397541046143,-0.711508452892303,-0.155983567237854,-0.678525805473328,-0.717824518680573,-0.322459697723389,-0.632758677005768,-0.704014360904694,-0.143011495471001,-0.677327632904053,-0.721647500991821,-0.200543403625488,-0.66571319103241,-0.718754649162292,-0.144624605774879,-0.691611051559448,-0.707642495632172,0.022435674443841,-0.695865511894226,-0.717821657657623,-0.200978070497513,-0.685695707798004,-0.699592173099518,-0.141419261693954,-0.663450062274933,-0.734734416007996,-0.322034001350403,-0.621937274932861,-0.713784456253052,-0.266002088785172,-0.637445747852325,-0.723122298717499,-0.0513682141900063,-0.708595216274261,-0.703742921352386,0.0223339386284351,-0.702545762062073,-0.711288094520569,0.0678629726171494,-0.69686084985733,-0.713988482952118,-0.146038174629211,-0.704332947731018,-0.694685578346252,0.0681009665131569,-0.693740367889404,-0.716998338699341,0.0223922431468964,-0.698740363121033,-0.715024828910828,0.130377009510994,-0.591702103614807,-0.795544266700745,-0.010971836745739,-0.507101535797119,-0.861816465854645,0.0763971209526062,-0.561319947242737,-0.824065268039703,0.00320103019475937,-0.674781024456024,-0.738011062145233,-0.139818280935287,-0.649696886539459,-0.747224748134613,-0.260363459587097,-0.617158830165863,-0.742513239383698,0.0693905651569366,-0.676294326782227,-0.73335599899292,-0.141590133309364,-0.664929509162903,-0.733362853527069,0.00288026058115065,-0.67597621679306,-0.736917912960052,0.0715952962636948,-0.644161522388458,-0.761531352996826,0.0136284604668617,-0.634909451007843,-0.772466361522675,0.102819412946701,-0.648206293582916,-0.754491209983826,-0.234655827283859,-0.52747654914856,-0.816520154476166,0.0783114284276962,-0.640037417411804,-0.764342486858368,0.0165451895445585,-0.623400866985321,-0.781727313995361,0.0735383629798889,-0.655720770359039,-0.751413583755493,0.0978160500526428,-0.657953083515167,-0.746679127216339,
- 0.0102539584040642,-0.648029804229736,-0.761545956134796,-0.0616183429956436,-0.705793499946594,-0.705732822418213,-0.24002593755722,-0.684228360652924,-0.68863582611084,-0.146466121077538,-0.698451578617096,-0.700509250164032,0.0162819977849722,-0.709637999534607,-0.704378426074982,-0.0602554902434349,-0.695687830448151,-0.715812683105469,-0.142101645469666,-0.675897538661957,-0.723166465759277,-0.240393981337547,-0.661568522453308,-0.710308253765106,-0.0613321661949158,-0.703675746917725,-0.707869172096252,-0.144941180944443,-0.68705552816391,-0.712001979351044,-0.208843648433685,-0.718382358551025,-0.663559436798096,-0.239024996757507,-0.717113435268402,-0.654687225818634,-0.143435180187225,-0.718701481819153,-0.680363535881042,-0.0605059042572975,-0.697548508644104,-0.713978350162506,0.0154882352799177,-0.711804926395416,-0.702206432819366,0.0375516936182976,-0.715131282806396,-0.69798082113266,0.0519653111696243,-0.720602631568909,-0.691398203372955,0.0369795449078083,-0.717981994152069,-0.695078730583191,0.0147636216133833,-0.713776528835297,-0.70021790266037,-0.1436597853899,-0.714426517486572,-0.684804141521454,-0.0768263638019562,-0.713572561740875,-0.696356236934662,-0.210723310709,-0.711937963962555,-0.66988068819046,0.00460797548294067,-0.704481959342957,-0.709707021713257,-0.203226268291473,-0.736937582492828,-0.644687533378601,-0.0755002647638321,-0.721067368984222,-0.688739120960236,-0.144218102097511,-0.703185141086578,-0.696226835250854,-0.0619857124984264,-0.708508789539337,-0.702974498271942,0.00555056240409613,-0.709263682365417,-0.704921424388886,-0.0776780843734741,-0.708687961101532,-0.70123279094696,-0.144306123256683,-0.701324582099915,-0.698082804679871,0.00551770348101854,-0.713387191295624,-0.700748383998871,-0.0617253743112087,-0.706585049629211,-0.70493096113205,0.0396536588668823,-0.704526722431183,-0.708568811416626,0.00557606108486652,-0.706030249595642,-0.708159744739532,0.00812756922096014,-0.711615204811096,-0.702522456645966,-0.0735012739896774,-0.732117116451263,-0.677201688289642,
- 0.0280300304293633,-0.705780446529388,-0.707876026630402,0.0300712250173092,-0.714509308338165,-0.698979496955872,-0.0779691562056541,-0.707005858421326,-0.702896535396576,0.0055164797231555,-0.713539838790894,-0.700592935085297,0.0282286629080772,-0.706633925437927,-0.707016050815582,0.0697849318385124,-0.691321432590485,-0.719169557094574,0.0089305192232132,-0.713231384754181,-0.700871765613556,0.00557476794347167,-0.706194996833801,-0.707995533943176,0.0396374762058258,-0.704609155654907,-0.708487689495087,0.0223990101367235,-0.705514430999756,-0.708341538906097,0.0365803427994251,-0.719962000846863,-0.69304883480072,0.0510395392775536,-0.722431123256683,-0.689556658267975,0.0212901290506125,-0.717174708843231,-0.696568191051483,0.0226985029876232,-0.712412893772125,-0.70139342546463,0.0296128615736961,-0.712557315826416,-0.70098876953125,0.00552954664453864,-0.711906611919403,-0.702252447605133,0.0758136659860611,-0.706843197345734,-0.703295886516571,0.0304949060082436,-0.716309368610382,-0.697116255760193,0.0231181550770998,-0.717701137065887,-0.695967376232147,0.00311699509620667,-0.715274751186371,-0.698836386203766,0.0210543181747198,-0.719621002674103,-0.694047808647156,0.0492595285177231,-0.725929141044617,-0.6860032081604,0.0447447746992111,-0.734698295593262,-0.676916778087616,0.0599612668156624,-0.739697098731995,-0.670263290405273,0.00179325789213181,-0.719422936439514,-0.694569945335388,-0.00557181471958756,-0.707620441913605,-0.706570863723755,0.00556888990104198,-0.706942617893219,-0.707248985767365,0.0223765969276428,-0.705752730369568,-0.708104848861694,0.0222729742527008,-0.706852853298187,-0.70700991153717,0.0054439902305603,-0.707917392253876,-0.706274330615997,-0.00557878194376826,-0.70850533246994,-0.705683469772339,-0.00562521442770958,-0.714402198791504,-0.699712693691254,0.0230585467070341,-0.716951489448547,-0.69674164056778,0.00550102209672332,-0.715462207794189,-0.698629796504974,0.0664161071181297,-0.725824236869812,-0.684666454792023,0.109154976904392,-0.731472194194794,-0.673077762126923,
- 0.00324441492557526,-0.714874088764191,-0.699245750904083,0.00530943274497986,-0.708345115184784,-0.70584636926651,0.111698336899281,-0.700637519359589,-0.704720199108124,-0.00558015238493681,-0.70867931842804,-0.705508768558502,0.160335317254066,-0.731847763061523,-0.662337839603424,0.109456971287727,-0.728014826774597,-0.676766991615295,0.067548893392086,-0.723349928855896,-0.687169551849365,0.159513413906097,-0.641036152839661,-0.750751793384552,0.115304224193096,-0.648580074310303,-0.752362191677094,0.16353902220726,-0.640282034873962,-0.750529110431671,0.0410237833857536,-0.713242828845978,-0.699715495109558,0.0750207528471947,-0.704817235469818,-0.705410957336426,0.0230879597365856,-0.717321455478668,-0.696359813213348,0.045985072851181,-0.73565274477005,-0.675796151161194,0.0243866592645645,-0.733535289764404,-0.67921370267868,-0.00574796739965677,-0.729991853237152,-0.683431684970856,0.0806924030184746,-0.719204127788544,-0.690097272396088,0.0439194180071354,-0.726392865180969,-0.685874998569489,0.0730539336800575,-0.720783472061157,-0.689299941062927,0.110711127519608,-0.713088691234589,-0.692277193069458,0.112836942076683,-0.712962687015533,-0.692063629627228,-0.00562996184453368,-0.715005159378052,-0.699096500873566,0.116434179246426,-0.741637229919434,-0.660618901252747,0.0469773076474667,-0.74006450176239,-0.670893251895905,-0.0057987654581666,-0.736443221569061,-0.676474511623383,0.113185249269009,-0.680550813674927,-0.723905861377716,0.164755836129189,-0.672971844673157,-0.721085548400879,0.108794160187244,-0.681108713150024,-0.724054396152496,0.113973699510098,-0.721987724304199,-0.682454228401184,0.0755830854177475,-0.728783369064331,-0.680560171604156,0.0454639829695225,-0.733326375484467,-0.678354978561401,0.0716308727860451,-0.716250777244568,-0.694157063961029,0.112299643456936,-0.708707928657532,-0.696506977081299,0.168500378727913,-0.696204423904419,-0.697787225246429,-0.0635645762085915,-0.874753773212433,-0.480380356311798,-0.234126746654511,-0.850703716278076,-0.470624893903732,-0.151441127061844,-0.865667402744293,-0.47716411948204,
- 0.0196816325187683,-0.878521502017975,-0.477297246456146,-0.0621203035116196,-0.867676198482513,-0.493233203887939,-0.146853610873222,-0.849864423274994,-0.506126999855042,-0.234461814165115,-0.835515081882477,-0.496932983398438,-0.0632432922720909,-0.87319004535675,-0.483259350061417,-0.142271101474762,-0.859225511550903,-0.491416782140732,-0.212690949440002,-0.874758243560791,-0.435385853052139,-0.23320484161377,-0.872265100479126,-0.42984801530838,-0.140953987836838,-0.880292415618896,-0.453009158372879,-0.0623794160783291,-0.868954956531525,-0.490944057703018,0.0188790336251259,-0.880018413066864,-0.474564135074615,0.0391425266861916,-0.881820619106293,-0.469957858324051,0.0548861026763916,-0.885374665260315,-0.461626678705215,0.0385567918419838,-0.883788645267487,-0.466295063495636,0.0181109849363565,-0.881442189216614,-0.471944808959961,-0.141151651740074,-0.877488732337952,-0.458355486392975,-0.0809051916003227,-0.879702270030975,-0.468591660261154,-0.214564800262451,-0.87026035785675,-0.443406224250793,0.00739523768424988,-0.874288260936737,-0.485350728034973,-0.207056105136871,-0.887573003768921,-0.411511808633804,-0.0795420110225677,-0.88515692949295,-0.458443254232407,-0.141642332077026,-0.870035290718079,-0.472203403711319,-0.0639506429433823,-0.876624822616577,-0.476906061172485,0.00376873230561614,-0.878009259700775,-0.478628993034363,-0.0818033590912819,-0.876019179821014,-0.475288033485413,-0.141717255115509,-0.868828177452087,-0.474398344755173,0.00372895831242204,-0.880744159221649,-0.473577678203583,-0.0636865049600601,-0.875345706939697,-0.479284942150116,0.0413143895566463,-0.874366402626038,-0.483504414558411,0.00380007131025195,-0.875827670097351,-0.482609063386917,0.0108481794595718,-0.879044890403748,-0.476615607738495,-0.0776019170880318,-0.892644882202148,-0.444030672311783,0.0292184725403786,-0.875218093395233,-0.482845336198807,0.0313254669308662,-0.88137149810791,-0.471384078264236,-0.0820944383740425,-0.874809980392456,-0.477459937334061,0.00372777390293777,-0.880824983119965,-0.473427295684814,
- 0.0294024161994457,-0.875760734081268,-0.481849193572998,0.0683889910578728,-0.865158438682556,-0.496813863515854,0.0115933567285538,-0.880058884620667,-0.474723130464554,0.00379842566326261,-0.875942826271057,-0.482400059700012,0.0412990152835846,-0.874420166015625,-0.483408719301224,0.0204373523592949,-0.875419616699219,-0.48293149471283,0.0381576865911484,-0.885119378566742,-0.463797032833099,0.0539600029587746,-0.886609613895416,-0.459360331296921,0.0193243101239204,-0.883031010627747,-0.468916654586792,0.0228999108076096,-0.880025923252106,-0.474373281002045,0.0308691337704659,-0.880050480365753,-0.473875910043716,0.00374366086907685,-0.879737555980682,-0.475444942712784,0.0743714645504951,-0.875468969345093,-0.477517515420914,0.0316815860569477,-0.882397949695587,-0.46943587064743,0.0233273357152939,-0.883553206920624,-0.4677494764328,0.00913285464048386,-0.883061528205872,-0.469168454408646,0.0190878659486771,-0.884614586830139,-0.465932071208954,0.052107110619545,-0.889058470726013,-0.454818665981293,0.0474233254790306,-0.895120799541473,-0.443294286727905,0.0562658831477165,-0.896834969520569,-0.438772529363632,0.00759229809045792,-0.886286437511444,-0.463075309991837,-0.00690479762852192,-0.87690931558609,-0.480606317520142,0.00379071827046573,-0.876481175422668,-0.481421202421188,0.020409170538187,-0.875615537166595,-0.482577353715897,0.0203013382852077,-0.876363694667816,-0.481221973896027,0.0120738670229912,-0.876779675483704,-0.480740636587143,-0.00690954178571701,-0.87751179933548,-0.479505270719528,-0.00693993363529444,-0.8813716173172,-0.472372651100159,0.0232710018754005,-0.883090615272522,-0.468625158071518,0.00370946200564504,-0.882071077823639,-0.471101671457291,0.0623944103717804,-0.887938022613525,-0.455711632966995,0.109188869595528,-0.890420615673065,-0.441847145557404,0.00935946404933929,-0.882583320140839,-0.47006294131279,0.0118879694491625,-0.877181708812714,-0.480011582374573,0.111730188131332,-0.869650781154633,-0.480857491493225,-0.00691036134958267,-0.877615928649902,-0.479314684867859,
- 0.158568546175957,-0.887835919857025,-0.431976348161697,0.109490387141705,-0.888133347034454,-0.446353018283844,0.0634813010692596,-0.886318743228912,-0.458703726530075,0.157721176743507,-0.825634062290192,-0.541712462902069,0.115331679582596,-0.832977712154388,-0.541153371334076,0.161915317177773,-0.824821293354034,-0.541713297367096,0.0454670079052448,-0.879562079906464,-0.473606705665588,0.0735910758376122,-0.874145865440369,-0.480055600404739,0.0232956651598215,-0.883293151855469,-0.468241900205612,0.0507262162864208,-0.89535915851593,-0.442446529865265,0.0246371738612652,-0.894116699695587,-0.447155773639679,-0.00702177500352263,-0.891765415668488,-0.45244374871254,0.079282820224762,-0.883643746376038,-0.461397796869278,0.0484022609889507,-0.888493180274963,-0.456330180168152,0.0789680033922195,-0.883697748184204,-0.461348414421082,0.110743820667267,-0.878131031990051,-0.465426325798035,0.11432870477438,-0.877824068069458,-0.465138554573059,-0.00694371247664094,-0.881851434707642,-0.471476465463638,0.11792253702879,-0.896599888801575,-0.426852375268936,0.0516667664051056,-0.898085713386536,-0.436775267124176,-0.00705546280369163,-0.89604377746582,-0.443909615278244,0.113215535879135,-0.855723202228546,-0.504896104335785,0.162834227085114,-0.848006010055542,-0.504351854324341,0.110280394554138,-0.856110870838165,-0.504888474941254,0.115438178181648,-0.883674621582031,-0.453644543886185,0.0815543159842491,-0.889083325862885,-0.450421780347824,0.0499762445688248,-0.89316338300705,-0.446946948766708,0.077606163918972,-0.880817353725433,-0.467052578926086,0.113765627145767,-0.874837517738342,-0.470868140459061,0.166511118412018,-0.863919794559479,-0.475306928157806,-0.0602696090936661,-0.990897536277771,-0.1203733086586,-0.240768760442734,-0.963108777999878,-0.120216034352779,-0.152481019496918,-0.980896174907684,-0.12079806625843,0.014393818564713,-0.992981851100922,-0.117387600243092,-0.0589360669255257,-0.98919290304184,-0.134253740310669,-0.148081675171852,-0.976938605308533,-0.153827175498009,-0.241188496351242,-0.958607792854309,-0.151325315237045,
- -0.0600078962743282,-0.990577280521393,-0.123109079897404,-0.138820752501488,-0.980952739715576,-0.135869607329369,-0.211483597755432,-0.97419261932373,-0.0788890570402145,-0.239686071872711,-0.968095481395721,-0.0730871632695198,-0.137498795986176,-0.98606812953949,-0.0936150774359703,-0.0591898746788502,-0.98953115940094,-0.131623223423958,0.0135925151407719,-0.993349730968475,-0.114330589771271,0.0390966236591339,-0.993369340896606,-0.108114816248417,0.0534793622791767,-0.993601977825165,-0.0994736328721046,0.0385173596441746,-0.993833005428314,-0.103982694447041,0.0128876883536577,-0.993665099143982,-0.111641123890877,-0.137696012854576,-0.985468685626984,-0.0994550734758377,-0.0766729786992073,-0.991166293621063,-0.108216553926468,-0.213345602154732,-0.973010063171387,-0.0879492163658142,0.0059560127556324,-0.992173850536346,-0.124721944332123,-0.205886095762253,-0.977186262607574,-0.0521338768303394,-0.0753987580537796,-0.992367386817932,-0.0975815281271935,-0.138187885284424,-0.983745872974396,-0.114665850996971,-0.0606347173452377,-0.991332530975342,-0.116546995937824,0.00874524191021919,-0.99301940202713,-0.117626324295998,-0.0774887502193451,-0.990331828594208,-0.11505800485611,-0.138259321451187,-0.983465790748596,-0.116959221661091,0.00870357919484377,-0.993710100650787,-0.111644454300404,-0.0603694915771484,-0.991017937660217,-0.119327686727047,0.0412429496645927,-0.991493165493011,-0.123451799154282,0.00877739489078522,-0.992457926273346,-0.122271306812763,0.0094933994114399,-0.993345320224762,-0.114782467484474,-0.073479488492012,-0.993946433067322,-0.0816777348518372,0.0280890464782715,-0.992122709751129,-0.122080251574516,0.0301385466009378,-0.99350917339325,-0.109686806797981,-0.0777660459280014,-0.990036487579346,-0.117389380931854,0.00870132260024548,-0.9937464594841,-0.111321546137333,0.028287798166275,-0.992264032363892,-0.120880469679832,0.0687062814831734,-0.987853586673737,-0.139372766017914,0.0102793388068676,-0.993590414524078,-0.112571947276592,0.00877587683498859,-0.992484986782074,-0.122051328420639,
- 0.0412276834249496,-0.991507351398468,-0.123342551290989,0.0243186429142952,-0.99214768409729,-0.122685812413692,0.0381232462823391,-0.994138240814209,-0.101173043251038,0.0525373741984367,-0.993905425071716,-0.096912182867527,0.0231375377625227,-0.994142055511475,-0.105575911700726,0.0250709764659405,-0.993307650089264,-0.112745188176632,0.0296784806996584,-0.993211507797241,-0.112472921609879,0.00871787127107382,-0.993477821350098,-0.113691881299019,0.0746829733252525,-0.990253448486328,-0.117561608552933,0.0305589940398932,-0.993774473667145,-0.107138611376286,0.0254703089594841,-0.994048058986664,-0.105923272669315,0.00818354915827513,-0.994197845458984,-0.107255563139915,0.0228874906897545,-0.994524955749512,-0.101962380111218,0.05068688839674,-0.994479119777679,-0.0918814018368721,0.0460185743868351,-0.995796322822571,-0.0791958495974541,0.0570940636098385,-0.995686054229736,-0.0731409415602684,0.00666396226733923,-0.994907081127167,-0.100576624274254,-0.00687368353828788,-0.99277251958847,-0.119814701378345,0.00876964535564184,-0.992595553398132,-0.121149443089962,0.0243020765483379,-0.992177665233612,-0.122445352375507,0.0241932421922684,-0.992374002933502,-0.12086595594883,0.0110643357038498,-0.992723405361176,-0.119908012449741,-0.00688470574095845,-0.99292254447937,-0.118564940989017,-0.00695545552298427,-0.993850886821747,-0.110508106648922,0.0254607740789652,-0.994030952453613,-0.10608646273613,0.00868079159408808,-0.994070649147034,-0.1083899512887,0.0633745118975639,-0.993709027767181,-0.0923369973897934,0.107292458415031,-0.991052269935608,-0.0793963819742203,0.00840031355619431,-0.994092881679535,-0.108208023011684,0.0108847077935934,-0.992820262908936,-0.119119442999363,0.109558872878551,-0.986379861831665,-0.122685112059116,-0.00688656466081738,-0.992947578430176,-0.118353880941868,0.153263822197914,-0.98555314540863,-0.0720780119299889,0.107563301920891,-0.990611135959625,-0.0843789950013161,0.0644866153597832,-0.99331533908844,-0.095740482211113,0.160491541028023,-0.967419922351837,-0.195808932185173,
- 0.112781152129173,-0.974863529205322,-0.19215002655983,0.156540095806122,-0.96812516450882,-0.195522308349609,0.0388296619057655,-0.993125200271606,-0.110429935157299,0.0739023014903069,-0.989968180656433,-0.120422020554543,0.0254320558160543,-0.993979096412659,-0.106577888131142,0.0437909215688705,-0.995926439762115,-0.0788220837712288,0.0268615633249283,-0.99627411365509,-0.0819539278745651,-0.00714891403913498,-0.996079981327057,-0.0881678760051727,0.0795765072107315,-0.991845369338989,-0.0995517000555992,0.0417956300079823,-0.994920432567596,-0.0915783867239952,0.0753381475806236,-0.992264926433563,-0.098663404583931,0.108674809336662,-0.988479316234589,-0.105349473655224,0.110137067735195,-0.988324046134949,-0.105287671089172,-0.00696436408907175,-0.993963599205017,-0.109489358961582,0.113525420427322,-0.991524040699005,-0.0631842538714409,0.0448347553610802,-0.996387422084808,-0.072124607861042,-0.00723011186346412,-0.996875941753387,-0.0786516517400742,0.110892899334431,-0.9824298620224,-0.150114685297012,0.1659245043993,-0.974238455295563,-0.152737081050873,0.106315046548843,-0.982972204685211,-0.1498763859272,0.111256331205368,-0.989554822444916,-0.0916693434119225,0.0779273808002472,-0.99317878484726,-0.0867365375161171,0.0433680191636086,-0.995726943016052,-0.081530824303627,0.073914498090744,-0.991701126098633,-0.105192914605141,0.109668530523777,-0.987761080265045,-0.110909126698971,0.169789001345634,-0.978117704391479,-0.120239093899727,-0.0614027082920074,-0.988393664360046,0.138952270150185,-0.236905336380005,-0.96250057220459,0.132169142365456,-0.147277787327766,-0.979673802852631,0.136192873120308,0.0200896207243204,-0.989416539669037,0.143706202507019,-0.0600418671965599,-0.990356504917145,0.124856635928154,-0.142983257770538,-0.984209179878235,0.104346185922623,-0.237289354205132,-0.966115772724152,0.101558737456799,-0.0611227117478848,-0.988815605640411,0.136043697595596,-0.138483390212059,-0.98288369178772,0.121499590575695,-0.20835816860199,-0.96239447593689,0.174309387803078,-0.235895693302155,-0.955288112163544,0.178263962268829,
- -0.136973947286606,-0.976985812187195,0.163513883948326,-0.0602955296635628,-0.990007281303406,0.127476379275322,0.0192862674593925,-0.988978922367096,0.146794885396957,0.0345975942909718,-0.988019406795502,0.150402277708054,0.0514810010790825,-0.985888123512268,0.159293010830879,0.0340428948402405,-0.987441301345825,0.154275506734848,0.0185127593576908,-0.988548040390015,0.14976666867733,-0.137196689844131,-0.977903544902802,0.157740071415901,-0.0771004110574722,-0.985545516014099,0.150849565863609,-0.210197255015373,-0.963568091392517,0.165389329195023,0.00600115954875946,-0.990813791751862,0.135100185871124,-0.202842071652412,-0.95846825838089,0.200483679771423,-0.0757656246423721,-0.983959496021271,0.161503225564957,-0.137755647301674,-0.98013973236084,0.142652153968811,-0.0617717988789082,-0.987823069095612,0.142792940139771,0.00667403824627399,-0.98981386423111,0.142210990190506,-0.0779593735933304,-0.986510038375854,0.143945649266243,-0.137836515903473,-0.980454683303833,0.140391811728477,0.0066212909296155,-0.988957226276398,0.1480533182621,-0.06150883436203,-0.988231360912323,0.140055730938911,0.0366000235080719,-0.989981889724731,0.136368811130524,0.00671517988666892,-0.990460574626923,0.137632787227631,0.00953077524900436,-0.989383637905121,0.145014554262161,-0.0737679824233055,-0.981391727924347,0.177281066775322,0.030863095074892,-0.990151107311249,0.136558845639229,0.0331361591815948,-0.98810225725174,0.150186583399773,-0.0782502889633179,-0.986826598644257,0.141598731279373,0.00661897100508213,-0.988918900489807,0.14830955862999,0.0310333594679832,-0.990004479885101,0.137579306960106,0.0662059634923935,-0.990437269210815,0.121040545403957,0.0103145204484463,-0.98905086517334,0.147214218974113,0.00671314308419824,-0.990428984165192,0.137859880924225,0.0365821309387684,-0.98996514081955,0.136494547128677,0.0225508883595467,-0.990293383598328,0.137151330709457,0.0336388237774372,-0.987010717391968,0.15709313750267,0.0505351945757866,-0.985519170761108,0.161858573555946,0.0214377902448177,-0.987896919250488,0.153623506426811,
- 0.02482945099473,-0.988830804824829,0.146959811449051,0.0326654613018036,-0.988542914390564,0.147363796830177,0.00663997326046228,-0.989264130592346,0.145987540483475,0.0720008313655853,-0.987213969230652,0.142213121056557,0.0334075316786766,-0.987844347953796,0.151814132928848,0.0252445265650749,-0.987777531147003,0.153812453150749,0.00675796344876289,-0.988358557224274,0.151992797851563,0.0212014485150576,-0.987354457378387,0.157104223966599,0.0487301386892796,-0.984794616699219,0.166748657822609,0.044173289090395,-0.982846617698669,0.179056763648987,0.0567288622260094,-0.980974912643433,0.185660988092422,0.00531867891550064,-0.987357914447784,0.158417493104935,-0.00889973249286413,-0.990086019039154,0.140180006623268,0.00670423172414303,-0.990290403366089,0.138853043317795,0.0225292854011059,-0.990249395370483,0.137472286820412,0.0224245004355907,-0.990034461021423,0.139028325676918,0.00943313259631395,-0.990102350711823,0.140029743313789,-0.0089079923927784,-0.989912152290344,0.141402885317802,-0.0089590335264802,-0.988796472549438,0.149000808596611,0.025229362770915,-0.9878169298172,0.153561905026436,0.00659369304776192,-0.988496899604797,0.151097908616066,0.0628900900483131,-0.984006941318512,0.166659355163574,0.109288148581982,-0.977734327316284,0.179141670465469,0.0069478964433074,-0.988487303256989,0.151144340634346,0.00926992110908031,-0.990000307559967,0.140760406851768,0.111821807920933,-0.984453618526459,0.135451436042786,-0.00890895631164312,-0.989891648292542,0.141545817255974,0.15384267270565,-0.970736622810364,0.184398487210274,0.109588973224163,-0.97860050201416,0.174159482121468,0.0639811903238297,-0.984503209590912,0.163278937339783,0.159241870045662,-0.985402703285217,0.0601964853703976,0.11540949344635,-0.991175472736359,0.0652071312069893,0.157230377197266,-0.985711336135864,0.0604298375546932,0.0396373905241489,-0.988053262233734,0.148928374052048,0.0712583139538765,-0.987655222415924,0.139496877789497,0.0252059325575829,-0.987877726554871,0.153174713253975,0.0446102358400822,-0.982552051544189,0.180558755993843,
- 0.026670228689909,-0.98376876115799,0.17744767665863,-0.00910463463515043,-0.985216438770294,0.171072125434875,0.0768497660756111,-0.984124958515167,0.159975647926331,0.0425866767764091,-0.984922170639038,0.167674496769905,0.0758586004376411,-0.984165191650391,0.160201445221901,0.110837452113628,-0.982004821300507,0.152910619974136,0.109315201640129,-0.982178568840027,0.152890160679817,-0.00896720495074987,-0.988611400127411,0.150223657488823,0.112851843237877,-0.974423706531525,0.194326758384705,0.0456363335251808,-0.981280446052551,0.187099069356918,-0.00916616339236498,-0.983516454696655,0.180586278438568,0.113301113247871,-0.987687289714813,0.1078737154603,0.164500012993813,-0.980926394462585,0.103552833199501,0.105338886380196,-0.988497674465179,0.108517445623875,0.110496744513512,-0.979828834533691,0.166510984301567,0.0784327462315559,-0.981970906257629,0.171993106603622,0.0441516377031803,-0.98310512304306,0.177637234330177,0.0744512006640434,-0.985298454761505,0.153766274452209,0.108840703964233,-0.983058393001556,0.147479057312012,0.168256834149361,-0.976298570632935,0.136127918958664,-0.0601836033165455,-0.875693023204803,0.479102909564972,-0.236442744731903,-0.853903830051422,0.463619589805603,-0.147643655538559,-0.868409991264343,0.47335559129715,0.0150232315063477,-0.875574946403503,0.482848733663559,-0.058871828019619,-0.882391393184662,0.466818481683731,-0.143182247877121,-0.883946597576141,0.44512614607811,-0.236674845218658,-0.868067681789398,0.436398416757584,-0.0599294230341911,-0.877009212970734,0.476721316576004,-0.143444180488586,-0.876416921615601,0.459692478179932,-0.211857885122299,-0.837854564189911,0.503106415271759,-0.235664635896683,-0.830861926078796,0.504113852977753,-0.141955003142357,-0.855235576629639,0.498418390750885,-0.0591231063008308,-0.881126463413239,0.469170331954956,0.0142200756818056,-0.874083161354065,0.485568314790726,0.0392080657184124,-0.870543539524078,0.49052694439888,0.0541561394929886,-0.865583062171936,0.497828364372253,0.0386229306459427,-0.868510007858276,0.494164645671844,
- 0.0135089978575706,-0.87275505065918,0.487971395254135,-0.142176389694214,-0.858249843120575,0.493146181106567,-0.0792160183191299,-0.868492305278778,0.489332318305969,-0.213741421699524,-0.842169046401978,0.495041251182556,0.00747039914131165,-0.879490256309509,0.475858420133591,-0.206194251775742,-0.824702024459839,0.526640951633453,-0.0779020860791206,-0.863032042980194,0.49910631775856,-0.142728537321091,-0.865954101085663,0.479324489831924,-0.0605435706675053,-0.873813927173615,0.482476800680161,0.00689613446593285,-0.875809073448181,0.482608467340469,-0.0800717249512672,-0.872011184692383,0.482892572879791,-0.142815306782722,-0.86719161272049,0.477056294679642,0.00687357550486922,-0.872944056987762,0.487771958112717,-0.0602808371186256,-0.875187158584595,0.48001417517662,0.0413761585950851,-0.877964615821838,0.476934164762497,0.00691371550783515,-0.878041863441467,0.478533893823624,0.0109157413244247,-0.874686777591705,0.484565854072571,-0.0759892538189888,-0.854962229728699,0.513093709945679,0.0340265333652496,-0.8786461353302,0.476259648799896,0.0365230888128281,-0.871170401573181,0.489620417356491,-0.0803541913628578,-0.87316620349884,0.480753809213638,0.00687254592776299,-0.87281334400177,0.488005757331848,0.0341616086661816,-0.878247737884521,0.47698438167572,0.0671531334519386,-0.884033679962158,0.462574303150177,0.011659293435514,-0.873637139797211,0.48643833398819,0.00691284844651818,-0.877931714057922,0.478735864162445,0.0413605570793152,-0.877911806106567,0.477032542228699,0.0258198585361242,-0.878050208091736,0.477871537208557,0.0382288508117199,-0.86713308095932,0.496607273817062,0.0532352179288864,-0.864347159862518,0.500070095062256,0.0246153734624386,-0.869475424289703,0.493362694978714,0.0237795747816563,-0.873268127441406,0.486659288406372,0.0360482707619667,-0.872610449790955,0.487084805965424,0.00688155740499496,-0.873957812786102,0.485953092575073,0.0729610174894333,-0.873419046401978,0.481472611427307,0.0366278551518917,-0.870851576328278,0.490179538726807,0.0242068637162447,-0.869694888591766,0.492995828390121,
- 0.00352451950311661,-0.871592283248901,0.490218788385391,0.0243606381118298,-0.867634057998657,0.496606200933456,0.0513950139284134,-0.861859858036041,0.504535615444183,0.0467488169670105,-0.855476140975952,0.515727818012238,0.0605210438370705,-0.850947976112366,0.521751642227173,0.00218984507955611,-0.868659973144531,0.495404183864594,-0.00378284347243607,-0.877029776573181,0.480421096086502,0.00690910778939724,-0.877456724643707,0.479606121778488,0.0258076172322035,-0.87796413898468,0.478030294179916,0.0256985630840063,-0.877196609973907,0.479443192481995,0.00590967293828726,-0.876752436161041,0.480905622243881,-0.00379175809212029,-0.876408636569977,0.481553286314011,-0.0038519911468029,-0.872161507606506,0.489202857017517,0.0241658557206392,-0.870040237903595,0.492388010025024,0.00686167506501079,-0.871432721614838,0.490467071533203,0.0670649185776711,-0.86090761423111,0.504321694374084,0.112110368907452,-0.850780129432678,0.513424217700958,0.00366311520338058,-0.871894955635071,0.489679306745529,0.00576730072498322,-0.876447379589081,0.481463223695755,0.114615336060524,-0.872962594032288,0.474130362272263,-0.00379396276548505,-0.876254796981812,0.481833279132843,0.152913808822632,-0.843315601348877,0.515205025672913,0.11240741610527,-0.853395879268646,0.508999228477478,0.0682113468647003,-0.862617552280426,0.5012366771698,0.16203847527504,-0.900363087654114,0.403844058513641,0.11806783080101,-0.904118895530701,0.41064465045929,0.156373217701912,-0.900949597358704,0.404768437147141,0.0393613763153553,-0.871751546859741,0.488364696502686,0.0722127258777618,-0.874815165996552,0.479044675827026,0.0241717733442783,-0.869990468025208,0.492475748062134,0.0441920682787895,-0.855523288249969,0.515874981880188,0.0255788564682007,-0.85783189535141,0.513293445110321,-0.00400641327723861,-0.860866963863373,0.508814454078674,0.0777614787220955,-0.864259779453278,0.496999353170395,0.0422353297472,-0.862223148345947,0.504764795303345,0.0773959010839462,-0.864244639873505,0.497082710266113,0.113653540611267,-0.864410817623138,0.489772439002991,
- 0.110249944031239,-0.864796102046967,0.48987004160881,-0.0038568873424083,-0.871812462806702,0.489824712276459,0.113617941737175,-0.842870354652405,0.525985479354858,0.0451987162232399,-0.852008759975433,0.521572828292847,-0.00406980141997337,-0.856057345867157,0.516864776611328,0.116043977439404,-0.885758459568024,0.449406027793884,0.167388662695885,-0.880812346935272,0.442888885736465,0.106449760496616,-0.88641494512558,0.450485318899155,0.111360520124435,-0.857877194881439,0.501642882823944,0.0799834281206131,-0.857977271080017,0.507422566413879,0.0437619090080261,-0.857011139392853,0.513436496257782,0.076008640229702,-0.867538869380951,0.491527378559113,0.109782412648201,-0.867623209953308,0.4849514067173,0.171167865395546,-0.865122258663177,0.471449851989746
- }
- BinormalsW: *1005 {
- 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
- }
- }
- LayerElementBinormal: 1 {
- Version: 102
- Name: "LightMapUV"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *3015 {
- a: -0.0130233373492956,-0.150662735104561,0.988499522209167,0.0873128324747086,-0.132192343473434,0.98737108707428,-0.27720919251442,-0.191795006394386,0.941472113132477,0.28801816701889,-0.0044022873044014,0.957614898681641,0.0779144316911697,-0.0535971485078335,0.995518326759338,-0.026358675211668,-0.0767578259110451,0.99670135974884,0.000527586787939072,0.487101793289185,0.873345136642456,-0.300055354833603,0.475131332874298,0.827174127101898,-0.335778951644897,0.470534592866898,0.815996170043945,0.237868785858154,0.258211433887482,0.936346828937531,0.27421835064888,0.263563454151154,0.924845218658447,0.0411401130259037,0.22376923263073,0.973773598670959,0.147571533918381,0.215185031294823,0.965359091758728,0.0448387712240219,0.197713628411293,0.979233801364899,0.279194295406342,0.234406009316444,0.931184411048889,0.241335481405258,0.423852622509003,0.872986912727356,0.27755406498909,0.426359295845032,0.860918939113617,0.131020933389664,0.412660181522369,0.901412904262543,-0.2238829433918,0.106316357851028,0.968800008296967,0.0522055961191654,0.144686728715897,0.98809939622879,-0.0529733598232269,0.1313496530056,0.989919722080231,0.159608483314514,-0.0614281818270683,0.985267341136932,-0.0441614165902138,-0.0623283386230469,0.9970782995224,0.0789526328444481,-0.0620968714356422,0.994942545890808,-0.0636536851525307,0.463560372591019,0.883776009082794,-0.211840629577637,0.416231215000153,0.884237110614777,-0.285270005464554,0.388291001319885,0.87627112865448,-0.277823477983475,0.356398373842239,0.892073094844818,-0.279196441173553,0.355848103761673,0.891864120960236,-0.212155729532242,0.381524175405502,0.899682879447937,-0.204883307218552,0.108732730150223,0.972728133201599,-0.370784878730774,0.118712604045868,0.921100378036499,-0.275337636470795,0.113328233361244,0.954644441604614,-0.373211234807968,0.0922222137451172,0.92315137386322,-0.203428834676743,0.0837682262063026,0.975499749183655,-0.146641418337822,0.0804373696446419,0.985913872718811,-0.201294347643852,0.0504767447710037,0.978229343891144,
- -0.0495552606880665,0.0514756701886654,0.997443974018097,-0.148085758090019,0.0509660206735134,0.987660467624664,-0.140454009175301,0.184837087988853,0.972680866718292,-0.384507030248642,0.214290380477905,0.897905290126801,-0.360064059495926,0.211862534284592,0.908552765846252,0.155902147293091,0.058308158069849,0.986050069332123,-0.00679135182872415,0.06759412586689,0.997689843177795,-0.0503653772175312,0.0697767436504364,0.996290445327759,-0.147572740912437,0.0617454648017883,0.987122058868408,-0.0499382987618446,0.0600839667022228,0.996943414211273,-0.00692818826064467,0.0591719560325146,0.998223781585693,0.148442387580872,0.0558115243911743,0.987344861030579,-0.00692443363368511,0.059403482824564,0.998210072517395,0.15601110458374,0.0555993542075157,0.986189246177673,0.149007871747017,0.0116008343175054,0.988767981529236,0.15760862827301,0.0118812751024961,0.987430214881897,0.313576608896255,0.0168751962482929,0.949412941932678,-0.00659203622490168,0.0798002555966377,0.99678909778595,-0.0175793655216694,0.0797533839941025,0.996659636497498,-0.146741673350334,0.0784752741456032,0.986057043075562,-0.00656360667198896,0.0815354064106941,0.996648848056793,0.148010790348053,0.0799196809530258,0.985751390457153,-0.0176200866699219,0.0815759971737862,0.996511459350586,0.312230825424194,0.0652674213051796,0.947761654853821,0.159742578864098,0.0678266361355782,0.984825849533081,0.148235976696014,0.0679503530263901,0.986614882946014,-0.0173314232379198,0.0687059909105301,0.997486412525177,0.148235976696014,0.0679503530263901,0.986614882946014,0.159742578864098,0.0678266361355782,0.984825849533081,0.155534878373146,-0.0672337114810944,0.985539734363556,0.314131140708923,-0.0719591379165649,0.94664865732193,0.294551432132721,-0.0714680701494217,0.952959537506104,0.302538275718689,0.0564318560063839,0.95146518945694,0.13939568400383,0.0742967873811722,0.987445652484894,0.159830436110497,0.07219647616148,0.984500885009766,0.138266026973724,0.0667339563369751,0.988144278526306,-0.0171262118965387,0.0596270076930523,0.998073816299438,
- 0.159737929701805,0.0675990432500839,0.984842240810394,0.139273017644882,0.0734731629490852,0.987524569034576,0.302506357431412,0.0556945838034153,0.951518774032593,0.205704107880592,0.0665405914187431,0.976349413394928,0.201700016856194,0.0450204201042652,0.97841215133667,0.000335332006216049,0.122021399438381,0.992527484893799,0.138714015483856,0.0697271674871445,0.987874805927277,-0.0156581122428179,0.0422140695154667,0.998985886573792,-0.0167260952293873,0.0420887172222137,0.998973846435547,0.137197628617287,0.0596274919807911,0.988747358322144,-0.00597333814948797,0.103807233273983,0.994579493999481,-0.00331500172615051,0.102919697761536,0.994684219360352,0.136513650417328,0.0551010221242905,0.989104628562927,-0.00570886954665184,0.104571714997292,0.994500994682312,-0.0700182989239693,0.125501617789268,0.989619493484497,-0.00314979581162333,0.103729084134102,0.994600594043732,-0.0799507647752762,0.0560922585427761,0.99521940946579,-0.0171890128403902,0.0623993426561356,0.997903227806091,-0.0114497318863869,0.0629633516073227,0.997950196266174,-0.0672081038355827,0.144602388143539,0.987204849720001,0.000883020460605621,0.123600512742996,0.992331683635712,-0.162876844406128,0.173030897974968,0.971355438232422,-0.147339880466461,0.0665197446942329,0.986846566200256,-0.0173626411706209,0.0700922012329102,0.997389435768127,-0.052385475486517,0.0692479088902473,0.996223151683807,-0.0758447572588921,0.0851558446884155,0.993476748466492,-0.0534608960151672,0.0851647928357124,0.994931638240814,-0.0176984518766403,0.0850903764367104,0.996216118335724,-0.384713560342789,0.24815633893013,0.889052271842957,-0.138566091656685,0.211974769830704,0.96740186214447,-0.0607239603996277,0.197910606861115,0.978337347507477,-0.196104556322098,0.156635075807571,0.967991948127747,-0.0694985315203667,0.129051640629768,0.989199459552765,-0.16948576271534,0.151000186800957,0.973896086215973,-0.0532699152827263,0.0823248997330666,0.99518084526062,-0.0762700587511063,0.0821702554821968,0.993695616722107,-0.19671793282032,0.0806336104869843,0.977138936519623,
- -0.0358922220766544,-0.15561880171299,0.987164914608002,-0.188218295574188,-0.215044900774956,0.958295106887817,-0.333364635705948,-0.267846554517746,0.903950393199921,-0.146800309419632,0.225079745054245,0.963218033313751,-0.241496428847313,0.255674988031387,0.936114192008972,-0.194055750966072,0.240584135055542,0.951031982898712,-0.216328099370003,-0.140868157148361,0.966104745864868,-0.348839730024338,-0.183287292718887,0.919084668159485,-0.192326277494431,-0.133023530244827,0.972273290157318,-0.245838835835457,0.860816061496735,-0.445599555969238,-0.29155308008194,0.840393602848053,-0.456875801086426,-0.0540690198540688,0.920137166976929,-0.387845456600189,-0.206271857023239,0.773978292942047,0.598673164844513,-0.237840011715889,0.758979141712189,0.606121122837067,-0.31283763051033,0.718746900558472,0.620915114879608,-0.0917516127228737,0.202125921845436,-0.975052237510681,0.178645640611649,0.268569946289063,-0.946549534797668,0.275552898645401,0.287919133901596,-0.917155027389526,-0.207188114523888,0.775082945823669,0.596925020217896,-0.147779524326324,0.800408005714417,0.580954551696777,-0.238313645124435,0.760265052318573,0.604321002960205,-0.133294969797134,0.820704519748688,0.555586695671082,-0.243553549051285,0.77445113658905,0.583872556686401,-0.157565072178841,0.811654448509216,0.562485814094543,-0.188398361206055,0.844684958457947,0.50101238489151,-0.117942914366722,0.870722413063049,0.477422386407852,-0.152958765625954,0.858491182327271,0.489486157894135,-0.213369026780128,0.880279302597046,-0.423771232366562,-0.292779356241226,0.844738721847534,-0.447991907596588,-0.162272050976753,0.899044454097748,-0.406677812337875,-0.216349989175797,0.950437784194946,0.223295122385025,-0.213812500238419,0.951001524925232,0.223338901996613,-0.303446710109711,0.926903188228607,0.220840528607368,-0.188711538910866,0.961489856243134,-0.199813291430473,-0.134656012058258,0.973510324954987,-0.184785053133965,-0.291049867868423,0.929412722587585,-0.226896315813065,-0.277414590120316,0.827641308307648,0.487904667854309,
- -0.43611615896225,0.769796073436737,0.46606507897377,-0.258511990308762,0.832791388034821,0.48952043056488,-0.208016768097878,0.966130912303925,0.152709752321243,-0.0556585192680359,0.978046417236328,0.2008166462183,-0.199809610843658,0.96742570400238,0.15544630587101,-0.102120667695999,0.93891167640686,0.328658282756805,-0.230027496814728,0.93205463886261,0.279931515455246,-0.123708739876747,0.938993573188782,0.320916473865509,-0.234329998493195,0.922304570674896,0.307316929101944,-0.21423277258873,0.927008867263794,0.307829201221466,-0.122499361634254,0.943301618099213,0.308506369590759,-0.126803308725357,0.926812827587128,0.353466957807541,-0.253805905580521,0.919342279434204,0.300653249025345,-0.113095559179783,0.926571726799011,0.358711928129196,-0.20703150331974,0.940623879432678,0.269006848335266,-0.152085289359093,0.950533092021942,0.270844876766205,-0.21424263715744,0.939095258712769,0.26870122551918,-0.117482855916023,0.958797216415405,0.258661717176437,-0.214233428239822,0.9396733045578,0.266680151224136,-0.152478277683258,0.952989280223846,0.261843204498291,-0.183736965060234,0.943701326847076,0.275079309940338,-0.151716589927673,0.948228657245636,0.279006153345108,-0.206376999616623,0.939874589443207,0.272110790014267,-0.221298262476921,0.972868144512177,0.0674880594015121,-0.24281519651413,0.967259347438812,0.0738247781991959,-0.271376490592957,0.95895379781723,0.0822341218590736,-0.152311086654663,0.951944291591644,0.26571324467659,-0.187833026051521,0.944691717624664,0.26884263753891,-0.117863848805428,0.957744419574738,0.262362033128738,-0.151811897754669,0.948824346065521,0.276921451091766,-0.18419361114502,0.944252729415894,0.272872626781464,-0.187726363539696,0.943690001964569,0.272411435842514,-0.275904595851898,0.958785653114319,0.0678743347525597,-0.192500114440918,0.98041307926178,0.041640643030405,-0.223762631416321,0.973284423351288,0.0514558777213097,-0.187118574976921,0.938170492649078,0.291243553161621,-0.180149257183075,0.939236044883728,0.292201906442642,-0.143588453531265,0.944029808044434,0.296968281269073,
- -0.154524713754654,0.956918895244598,0.245821669697762,-0.208410367369652,0.941981434822083,0.263127863407135,-0.13479571044445,0.961538672447205,0.239318698644638,-0.129044979810715,0.958301723003387,0.254961550235748,-0.023570004850626,0.975068330764771,0.220649808645248,-0.151169374585152,0.953205525875092,0.261815130710602,-0.00558191165328026,0.949547231197357,0.313574463129044,-0.187186688184738,0.938775062561035,0.289244771003723,-0.143794059753418,0.944292485713959,0.296032130718231,-0.0207794364541769,0.97170501947403,0.23528228700161,-0.123926259577274,0.955207526683807,0.268739402294159,0.00193172716535628,0.973765254020691,0.227547079324722,0.0134529639035463,0.962561190128326,0.270730406045914,0.163192704319954,0.953359127044678,0.253918319940567,-0.0134956520050764,0.961891412734985,0.273098826408386,0.0336925312876701,0.95935720205307,0.280176043510437,-0.187398627400398,0.940677523612976,0.282856404781342,-0.0117927268147469,0.959382474422455,0.281862169504166,0.163466304540634,0.95083212852478,0.263053357601166,0.0335122644901276,0.960965096950531,0.274632483720779,-0.0126207079738379,0.96061247587204,0.277605026960373,0.164267316460609,0.941855490207672,0.293128818273544,-0.0240952968597412,0.957904756069183,0.286073267459869,0.0339890196919441,0.95661997795105,0.289349108934402,-0.0236271731555462,0.962935507297516,0.268695026636124,-0.187635943293571,0.942849516868591,0.27536803483963,0.0331867188215256,0.963763952255249,0.264684319496155,-0.0248445961624384,0.94899195432663,0.314319968223572,0.164792031049728,0.933996617794037,0.317007690668106,0.102741539478302,0.942711770534515,0.317393749952316,-0.118319101631641,0.956461071968079,0.266800969839096,-0.187617599964142,0.942680060863495,0.275960177183151,-0.239666044712067,0.929001569747925,0.281986594200134,-0.023204542696476,0.967142760753632,0.253172874450684,-0.239658430218697,0.930142998695374,0.278204709291458,-0.187698423862457,0.943429410457611,0.273331940174103,-0.288527876138687,0.870459079742432,0.398814022541046,-0.139241084456444,0.854587435722351,0.500292122364044,
- -0.236604437232018,0.868108749389648,0.436354905366898,-0.172303274273872,0.936702728271484,0.30479434132576,-0.0251489654183388,0.94505101442337,0.325954169034958,0.0995809212327003,0.935790479183197,0.338200956583023,-0.239662259817123,0.92475563287735,0.295616388320923,-0.0245111007243395,0.953094005584717,0.301680475473404,-0.171442776918411,0.938692629337311,0.299104779958725,-0.239378497004509,0.911474823951721,0.334532082080841,-0.178898945450783,0.919698357582092,0.349499702453613,-0.263698279857636,0.907102108001709,0.328068733215332,0.0823456048965454,0.892347633838654,0.443773537874222,-0.244697213172913,0.908037900924683,0.339985996484756,-0.181001722812653,0.913563370704651,0.364198446273804,-0.24108612537384,0.916073620319366,0.320447653532028,-0.259503185749054,0.9124436378479,0.316393256187439,-0.176584482192993,0.926035463809967,0.333580881357193,-0.0870777741074562,0.230437397956848,-0.969183266162872,-0.139684095978737,0.212682694196701,-0.967085540294647,0.106053829193115,0.288834929466248,-0.951486706733704,-0.0692346394062042,0.971585869789124,-0.226335197687149,-0.104252986609936,0.971265316009521,-0.213951408863068,-0.17896893620491,0.966043889522552,-0.186358466744423,-0.0520000830292702,-0.609959006309509,-0.790724992752075,0.223135232925415,-0.576383590698242,-0.786125063896179,0.315673291683197,-0.554139077663422,-0.770246922969818,-0.0699262246489525,0.97106546163559,-0.228346660733223,-0.0102752381935716,0.968515455722809,-0.248741686344147,-0.10448282212019,0.970771491527557,-0.216070026159287,0.00932419300079346,0.960559129714966,-0.277919501066208,-0.10700149834156,0.964975297451019,-0.239527195692062,-0.0175868421792984,0.962866306304932,-0.269405424594879,-0.0424945801496506,0.93984466791153,-0.338948786258698,0.0328446216881275,0.930441915988922,-0.36496439576149,-0.00399981066584587,0.935793340206146,-0.35252645611763,-0.0554656609892845,0.256480634212494,-0.964956641197205,-0.140256017446518,0.22418349981308,-0.964401423931122,-0.00433681206777692,0.274858355522156,-0.96147495508194,
- -0.0520216524600983,0.795593559741974,-0.603593111038208,-0.0468890368938446,0.795816421508789,-0.603719830513,-0.138656869530678,0.788631498813629,-0.59902822971344,-0.0199162662029266,0.47637739777565,-0.879015326499939,0.0364869236946106,0.489735513925552,-0.871107280254364,-0.12339685857296,0.447570711374283,-0.885693967342377,-0.126729220151901,0.928995549678802,-0.347716718912125,-0.293985545635223,0.893550276756287,-0.339323580265045,-0.109964802861214,0.931025326251984,-0.347993791103363,-0.0370605550706387,0.751791179180145,-0.658359110355377,0.116847977042198,0.779381632804871,-0.615557372570038,-0.0263520926237106,0.754358053207397,-0.65593409538269,0.0704019516706467,0.849512577056885,-0.522850036621094,-0.0612793415784836,0.821161270141602,-0.567396879196167,0.0469727367162704,0.845701932907104,-0.5315842628479,-0.0702638775110245,0.844582617282867,-0.53079491853714,-0.0515585131943226,0.845614314079285,-0.531298577785492,0.046847403049469,0.846152245998383,-0.530878186225891,0.0426318757236004,0.860879361629486,-0.507019996643066,-0.0872556865215302,0.828715205192566,-0.552826881408691,0.0595263093709946,0.863808393478394,-0.500291705131531,-0.0441110841929913,0.824428677558899,-0.564244329929352,0.0153748486191034,0.826162993907928,-0.563221335411072,-0.0495169721543789,0.824125826358795,-0.56423819065094,0.0527674704790115,0.824075877666473,-0.564016461372375,-0.0499779470264912,0.829018473625183,-0.556983470916748,0.0153636913746595,0.826894462108612,-0.562147200107574,-0.0162926763296127,0.828687429428101,-0.559474408626556,0.0153013737872243,0.830924272537231,-0.556175112724304,-0.0436397045850754,0.826071500778198,-0.561873197555542,-0.0477517992258072,0.69202584028244,-0.720291674137115,-0.0751568228006363,0.696579039096832,-0.71353280544281,-0.100278235971928,0.700259983539581,-0.706809818744659,0.0153339290991426,0.82883083820343,-0.55928909778595,-0.0261649582535028,0.830737411975861,-0.556049287319183,0.0522895976901054,0.825919687747955,-0.561357736587524,0.0153202032670379,0.829716622829437,-0.557974576950073,
- -0.0166398715227842,0.827400326728821,-0.561366200447083,-0.0260332506150007,0.826555728912354,-0.562252521514893,-0.104675129055977,0.689638912677765,-0.716548264026642,-0.0134264230728149,0.672729015350342,-0.73976719379425,-0.0500722788274288,0.680257976055145,-0.731260538101196,-0.0263749100267887,0.837403416633606,-0.545948684215546,-0.0135827753692865,0.838571667671204,-0.544622004032135,0.0295069739222527,0.841476798057556,-0.539486944675446,0.0203827153891325,0.809970378875732,-0.586116433143616,-0.0424368493258953,0.82120954990387,-0.569046556949615,0.0367278717458248,0.806463479995728,-0.590142130851746,0.0418114885687828,0.815790414810181,-0.576834321022034,0.140182629227638,0.790663659572601,-0.595986545085907,0.0230919793248177,0.819576263427734,-0.572504639625549,0.153126537799835,0.842217266559601,-0.516935467720032,-0.0263364911079407,0.836183607578278,-0.54781699180603,0.0293766483664513,0.841043829917908,-0.540168762207031,0.142347916960716,0.799429774284363,-0.583651423454285,0.0462923347949982,0.823833167552948,-0.564938902854919,0.174873933196068,0.789216458797455,-0.588690459728241,0.185657277703285,0.818258821964264,-0.544044017791748,0.325693488121033,0.784055769443512,-0.528375148773193,0.14857691526413,0.824341118335724,-0.546247780323029,0.197285279631615,0.818565607070923,-0.539470970630646,-0.0262340698391199,0.832931697368622,-0.552753686904907,0.148817002773285,0.825291454792023,-0.54474550485611,0.325676709413528,0.784604728221893,-0.527570068836212,0.197362050414085,0.814723432064056,-0.545228362083435,0.148072957992554,0.822343647480011,-0.549386262893677,0.324767857789993,0.805667519569397,-0.495404571294785,0.143816456198692,0.831303656101227,-0.536890089511871,0.197083801031113,0.826856076717377,-0.526751399040222,0.145599126815796,0.817809164524078,-0.556766629219055,-0.0261007957160473,0.828700244426727,-0.559083878993988,0.197448521852493,0.809615731239319,-0.552753508090973,0.142676159739494,0.83938068151474,-0.524484097957611,0.324447095394135,0.811039805412292,-0.486773580312729,
- 0.265803933143616,0.823553323745728,-0.501106977462769,0.0539951659739017,0.819288372993469,-0.570833563804626,-0.0260200761258602,0.826137363910675,-0.562867701053619,-0.0678263306617737,0.827577829360962,-0.557238280773163,0.146751031279564,0.80846232175827,-0.569958627223969,-0.0679347440600395,0.828670620918274,-0.555598795413971,-0.0260713752359152,0.827766180038452,-0.56046724319458,-0.134363234043121,0.884043097496033,-0.447676658630371,0.0152852647006512,0.937627673149109,-0.347305059432983,-0.076089933514595,0.908858001232147,-0.410106599330902,-0.00513069331645966,0.845865964889526,-0.533370852470398,0.140977546572685,0.850695073604584,-0.506402373313904,0.259629607200623,0.840473651885986,-0.475601255893707,-0.0689763724803925,0.83914053440094,-0.539523303508759,0.143016919493675,0.83700954914093,-0.528167724609375,-0.00387516617774963,0.842536866664886,-0.538624823093414,-0.0711857080459595,0.861157119274139,-0.503330111503601,-0.0146986767649651,0.870133519172668,-0.492596864700317,-0.107409551739693,0.853838384151459,-0.509335994720459,0.234701082110405,0.895707964897156,-0.377654105424881,-0.0767382010817528,0.86427903175354,-0.49712473154068,-0.0179054960608482,0.877829194068909,-0.478639125823975,-0.0714361742138863,0.853426992893219,-0.516293883323669,-0.102495275437832,0.847907602787018,-0.52014172077179,-0.0112628638744354,0.86164391040802,-0.507388412952423,0.0900560393929482,-0.993958950042725,-0.0627340972423553,0.143736481666565,-0.988584041595459,-0.0451837629079819,-0.107401326298714,-0.986354947090149,-0.124775119125843,0.0722564309835434,-0.390553504228592,-0.917740225791931,0.10521923750639,-0.378990441560745,-0.919399440288544,0.182361721992493,-0.349917083978653,-0.918859243392944,0.0555785223841667,-0.67512059211731,0.735610783100128,-0.222764030098915,-0.676934361457825,0.701524078845978,-0.319259941577911,-0.664521813392639,0.675635993480682,0.0729569420218468,-0.392436146736145,-0.916881203651428,0.00640734285116196,-0.414337635040283,-0.910100758075714,0.10545702278614,-0.380986630916595,-0.918546676635742,
- -0.0084323575720191,-0.440241754055023,-0.897839665412903,0.108070507645607,-0.403087735176086,-0.908757925033569,0.0136044695973396,-0.433720350265503,-0.900944828987122,0.0392385348677635,-0.501098155975342,-0.864500463008881,-0.0344007313251495,-0.524394690990448,-0.850780129432678,0.00506820483133197,-0.512301683425903,-0.858790576457977,0.0544678568840027,-0.994750440120697,-0.0866314917802811,0.144110798835754,-0.988137543201447,-0.0530696511268616,-0.000271635159151629,-0.99429726600647,-0.106644406914711,0.0495655126869679,-0.725536346435547,-0.686396598815918,0.0429450497031212,-0.725729167461395,-0.68663889169693,0.140580639243126,-0.719627678394318,-0.679980278015137,0.0142338741570711,-0.951730847358704,-0.306603640317917,-0.0373045355081558,-0.946669638156891,-0.320039242506027,0.118390157818794,-0.953626871109009,-0.276730209589005,0.128043800592422,-0.501966953277588,-0.85535603761673,0.293156534433365,-0.487670838832855,-0.822335958480835,0.113205820322037,-0.502543807029724,-0.857108056545258,0.0427876822650433,-0.769116759300232,-0.637674570083618,-0.107495538890362,-0.73282265663147,-0.67187488079071,0.0318000763654709,-0.767109990119934,-0.640726983547211,-0.0596914887428284,-0.650491893291473,-0.757164001464844,0.0676786825060844,-0.688139319419861,-0.722415328025818,-0.0404067449271679,-0.657004117965698,-0.752803325653076,0.0703380480408669,-0.678698122501373,-0.731041312217712,0.0465353280305862,-0.679531872272491,-0.732168734073639,-0.0450471602380276,-0.679140090942383,-0.732625126838684,-0.0360571667551994,-0.635872662067413,-0.770951390266418,0.0891319289803505,-0.674508512020111,-0.732866883277893,-0.0491425320506096,-0.631137013435364,-0.774113059043884,0.0422747060656548,-0.693264544010162,-0.719442307949066,-0.0165842343121767,-0.69247168302536,-0.721254467964172,0.0455133132636547,-0.693238317966461,-0.719269871711731,-0.0493870005011559,-0.699451267719269,-0.712971925735474,0.0454636290669441,-0.693892896175385,-0.718641579151154,-0.0166311580687761,-0.698246359825134,-0.715664446353912,
- 0.0142174586653709,-0.694730460643768,-0.719129741191864,-0.0165795963257551,-0.691905498504639,-0.721797704696655,0.0430546440184116,-0.696769416332245,-0.716001868247986,0.0478772968053818,-0.837561905384064,-0.544240772724152,0.0757614970207214,-0.831697225570679,-0.550036370754242,0.101454213261604,-0.825657069683075,-0.554975271224976,-0.0165943540632725,-0.693709552288055,-0.720063745975494,0.0225068144500256,-0.691078841686249,-0.722428858280182,-0.0484423227608204,-0.695062637329102,-0.717315375804901,-0.0165966637432575,-0.693992853164673,-0.719790697097778,0.0146771147847176,-0.696901261806488,-0.717016875743866,0.022410836070776,-0.697513818740845,-0.716220796108246,0.106917262077332,-0.83509236574173,-0.539619743824005,0.0221602898091078,-0.853614151477814,-0.520434200763702,0.0507426969707012,-0.84812593460083,-0.527359068393707,0.0225926470011473,-0.685171246528625,-0.728031635284424,0.0120140612125397,-0.68424254655838,-0.729155540466309,-0.0229471158236265,-0.680619478225708,-0.732277691364288,-0.0171222072094679,-0.70633852481842,-0.707667231559753,0.0351152680814266,-0.693885266780853,-0.71922892332077,-0.0388999991118908,-0.710903823375702,-0.702212631702423,-0.0440033935010433,-0.699484646320343,-0.713291704654694,-0.149017542600632,-0.714860498905182,-0.683204412460327,-0.0197764784097672,-0.694745182991028,-0.718984127044678,-0.161031112074852,-0.649620294570923,-0.743009150028229,0.0226597096771002,-0.680449724197388,-0.732444405555725,-0.0242279097437859,-0.674827456474304,-0.737577855587006,-0.147491276264191,-0.722329318523407,-0.67563807964325,-0.0407349430024624,-0.706823647022247,-0.706216037273407,-0.173908889293671,-0.724789023399353,-0.666660785675049,-0.185111522674561,-0.685112357139587,-0.704524517059326,-0.323321759700775,-0.664235830307007,-0.673983514308929,-0.154270961880684,-0.687819123268127,-0.709299266338348,-0.200494021177292,-0.66378527879715,-0.720549285411835,0.0226737037301064,-0.679452061653137,-0.733369469642639,-0.157607018947601,-0.669483125209808,-0.72591495513916,
- -0.322884619235992,-0.645725965499878,-0.691941857337952,-0.200584679841995,-0.667364478111267,-0.717210233211517,-0.157087758183479,-0.672400653362274,-0.72332626581192,-0.32296884059906,-0.648710787296295,-0.689104914665222,-0.144733339548111,-0.692582547664642,-0.706669390201569,-0.20089727640152,-0.681425452232361,-0.7037752866745,-0.14590223133564,-0.703100502490997,-0.695961356163025,0.0222512874752283,-0.70783656835556,-0.706025660037994,-0.201160073280334,-0.697075247764587,-0.688201129436493,-0.140716940164566,-0.657393157482147,-0.740292489528656,-0.321759015321732,-0.615671753883362,-0.719318807125092,-0.264370113611221,-0.631547033786774,-0.728873729705811,-0.0526143573224545,-0.714304685592651,-0.697854280471802,0.0222444590181112,-0.708268463611603,-0.705592632293701,0.0674141421914101,-0.702665269374847,-0.70831972360611,-0.146659657359123,-0.709992349147797,-0.688768327236176,0.067648209631443,-0.69965124130249,-0.711274862289429,0.0223022550344467,-0.704587936401367,-0.709266185760498,0.130177900195122,-0.592127919197083,-0.795259833335876,-0.0110671371221542,-0.507612407207489,-0.861514449119568,0.0763697624206543,-0.561854779720306,-0.823703110218048,0.00471495091915131,-0.669115245342255,-0.743143737316132,-0.139117300510406,-0.643733620643616,-0.752498090267181,-0.258753687143326,-0.611413717269897,-0.747810006141663,0.0693375691771507,-0.677029669284821,-0.732682108879089,-0.141673594713211,-0.665652990341187,-0.732690036296844,0.00268340110778809,-0.676708698272705,-0.7362459897995,0.0715230628848076,-0.645264685153961,-0.760603785514832,0.0133587419986725,-0.635965824127197,-0.771601617336273,0.102283120155334,-0.649258315563202,-0.753658950328827,-0.234268456697464,-0.526154816150665,-0.817483603954315,0.0786706507205963,-0.638841152191162,-0.765305757522583,0.0168589949607849,-0.622153401374817,-0.782713890075684,0.0731978565454483,-0.656824707984924,-0.750482082366943,0.0972503274679184,-0.659045517444611,-0.745789110660553,0.00997130572795868,-0.649119317531586,-0.760621249675751,0.0612285584211349,0.702908456325531,0.708640158176422,
- 0.240087807178497,0.68128627538681,0.691525042057037,0.145912334322929,0.695586502552032,0.703469276428223,-0.0184283088892698,0.70374059677124,0.710218012332916,0.0594262182712555,0.689513921737671,0.721830427646637,0.140916913747787,0.669785439968109,0.729061007499695,0.240294069051743,0.669436514377594,0.702932178974152,0.0623019114136696,0.710842847824097,0.700586140155792,0.144608616828918,0.694722771644592,0.70459121465683,0.209344282746315,0.716677844524384,0.665242731571198,0.239090994000435,0.715422809123993,0.656510353088379,0.143524587154388,0.717015504837036,0.682121336460114,0.0601241439580917,0.694711208343506,0.716771602630615,-0.0164780672639608,0.709101557731628,0.704913854598999,-0.0381031446158886,0.71236914396286,0.700769901275635,-0.0528863295912743,0.718777418136597,0.693225920200348,-0.037364736199379,0.716064453125,0.6970334649086,-0.0154472962021828,0.711916565895081,0.702094256877899,0.143614619970322,0.715296506881714,0.683904767036438,0.0766741335391998,0.714439630508423,0.695483386516571,0.210469380021095,0.712815761566162,0.669026494026184,-0.00538252294063568,0.70605856180191,0.708132982254028,0.202730417251587,0.73852676153183,0.643023073673248,0.0752020999789238,0.722734391689301,0.687022387981415,0.144089490175247,0.705858469009399,0.693543076515198,0.0623492449522018,0.711192011833191,0.700227558612823,-0.00552900088950992,0.71197497844696,0.702183127403259,0.0776318684220314,0.708954513072968,0.700968563556671,0.144293785095215,0.701586604118347,0.697821974754334,-0.0055155917070806,0.713650584220886,0.700480163097382,0.0616284757852554,0.705868482589722,0.705656886100769,-0.0397969596087933,0.70379626750946,0.709286332130432,-0.00558172212913632,0.705308318138123,0.708878695964813,-0.0082104355096817,0.711782217025757,0.702352285385132,0.0734685808420181,0.732295513153076,0.677012383937836,-0.0280717015266418,0.705959498882294,0.707695662975311,-0.030232347548008,0.715194344520569,0.698271572589874,0.0778489261865616,0.707701504230499,0.702209532260895,-0.00551101239398122,0.714221060276031,0.699898540973663,
- -0.0283472314476967,0.707143008708954,0.706502139568329,-0.0699743703007698,0.691813230514526,0.718678057193756,-0.0091625303030014,0.713697671890259,0.700394034385681,-0.00557935191318393,0.705610811710358,0.708577692508698,-0.0397533737123013,0.704018533229828,0.709068179130554,-0.0224541500210762,0.704927861690521,0.708923578262329,-0.035139974206686,0.727044939994812,0.68569004535675,-0.0475964397192001,0.729176640510559,0.682668328285217,-0.0205902792513371,0.72440105676651,0.689071238040924,-0.0226940531283617,0.712356686592102,0.70145058631897,-0.0295996591448784,0.712500989437103,0.701046586036682,-0.00552999554201961,0.71185040473938,0.702309429645538,-0.0754840150475502,0.706001460552216,0.704176247119904,-0.0302918404340744,0.715447068214417,0.698009967803955,-0.0230477545410395,0.716815710067749,0.696881651878357,-0.000595852732658386,0.723151981830597,0.690688729286194,-0.0202508177608252,0.727869689464569,0.685416519641876,-0.0453950315713882,0.733444392681122,0.678231954574585,-0.0425169952213764,0.73897111415863,0.672394275665283,-0.0579177066683769,0.744009435176849,0.665654182434082,-0.000315107405185699,0.724023103713989,0.68977564573288,0.00555834732949734,0.705910086631775,0.708279728889465,-0.00558233167976141,0.705230534076691,0.708956122398376,-0.0225387196987867,0.704026877880096,0.709815621376038,-0.0222915802150965,0.706655442714691,0.707206666469574,-0.00550670176744461,0.707717955112457,0.706473648548126,0.00557724060490727,0.708309590816498,0.705879986286163,0.00564935337752104,0.717467904090881,0.696568727493286,-0.0233031958341599,0.72002512216568,0.693556606769562,-0.00547623261809349,0.71852308511734,0.695481538772583,-0.0655536353588104,0.727700114250183,0.682755649089813,-0.108981043100357,0.733440637588501,0.670960485935211,-0.00263962126336992,0.716773808002472,0.697300791740417,-0.00534740835428238,0.708224415779114,0.70596718788147,-0.111707575619221,0.70051783323288,0.704837739467621,0.00557921174913645,0.708559930324554,0.705628633499146,-0.160253763198853,0.733390390872955,0.660649180412292,
- -0.109321258962154,0.729574859142303,0.675106942653656,-0.0668614059686661,0.724852979183197,0.685651302337646,-0.159494951367378,0.64092481136322,0.750850677490234,-0.115311361849308,0.648464739322662,0.752460479736328,-0.1635412722826,0.640166819095612,0.750626862049103,-0.0409379564225674,0.712850093841553,0.700120627880096,-0.0748728960752487,0.704438924789429,0.705804407596588,-0.023055886849761,0.716918051242828,0.696776211261749,-0.0466242842376232,0.73849755525589,0.672642171382904,-0.0246152058243752,0.736363649368286,0.67613810300827,0.00577018596231937,0.732813596725464,0.680405020713806,-0.0797535330057144,0.716839373111725,0.692662000656128,-0.0433774776756763,0.723946690559387,0.688490867614746,-0.0722981914877892,0.718379139900208,0.691884696483612,-0.11064588278532,0.713888823986053,0.691462516784668,-0.112936601042748,0.713752567768097,0.691232681274414,0.00563635211437941,0.715816736221313,0.698265433311462,-0.116826415061951,0.744785130023956,0.65699827671051,-0.0477123521268368,0.743317425251007,0.667235195636749,0.00582441035658121,0.739700078964233,0.672911584377289,-0.113163322210312,0.680859923362732,0.723618566989899,-0.164804667234421,0.673272371292114,0.720793843269348,-0.108832597732544,0.681409895420074,0.723765194416046,-0.113799892365932,0.720605611801147,0.683942437171936,-0.0751589983701706,0.727446973323822,0.682035326957703,-0.045161422342062,0.731972694396973,0.679835677146912,-0.071233406662941,0.714980781078339,0.695505797863007,-0.112132921814919,0.707388877868652,0.697873413562775,-0.168289601802826,0.694886386394501,0.699150621891022,0.0636941716074944,0.875382840633392,0.479215919971466,0.234107136726379,0.851352214813232,0.469460785388947,0.151622623205185,0.866284608840942,0.475984841585159,-0.0190209969878197,0.879754364490509,0.47504785656929,0.0623834431171417,0.86897486448288,0.49090850353241,0.147224292159081,0.851155281066895,0.503844916820526,0.234497308731079,0.832850694656372,0.501368820667267,0.0627608373761177,0.870830237865448,0.487561106681824,0.142407119274139,0.856657207012177,0.495841324329376,
- 0.212254822254181,0.875787615776062,0.433525234460831,0.233148366212845,0.873248755931854,0.42787691950798,0.140882030129433,0.881287574768066,0.451092511415482,0.0626475811004639,0.870274305343628,0.488567173480988,-0.0182055681943893,0.881267249584198,0.47226756811142,-0.0387649089097977,0.883091390132904,0.46759694814682,-0.0538396239280701,0.886769533157349,0.459065586328506,-0.0381206125020981,0.885242581367493,0.463564872741699,-0.0173414722084999,0.882859766483307,0.469316452741623,0.141156941652298,0.877412259578705,0.45850020647049,0.0809241905808449,0.879625260829926,0.468733161687851,0.214597269892693,0.870181322097778,0.443545609712601,-0.00634166598320007,0.872817873954773,0.488004922866821,0.207717105746269,0.88612300157547,0.414294183254242,0.079929456114769,0.883623063564301,0.461325854063034,0.141694262623787,0.869200944900513,0.473721921443939,0.0637790486216545,0.875794291496277,0.478452354669571,-0.00378090469166636,0.877164602279663,0.480174899101257,0.0815618559718132,0.877016603946686,0.473486721515656,0.141656592488289,0.869807124137878,0.472619235515594,-0.00371463922783732,0.881719648838043,0.471759170293808,0.0636191368103027,0.875018715858459,0.479890406131744,-0.0414111912250519,0.874028384685516,0.484106928110123,-0.0038048115093261,0.875495672225952,0.483211040496826,-0.0109309703111649,0.879157781600952,0.476405501365662,0.0775706097483635,0.892763018608093,0.443798363208771,-0.0292597152292728,0.875339806079865,0.482622057199478,-0.03148477897048,0.881831228733063,0.470513045787811,0.0819801092147827,0.875285804271698,0.476606786251068,-0.00372102716937661,0.881285071372986,0.472570449113846,-0.029467087239027,0.87595123052597,0.481498748064041,-0.0684939622879028,0.865342617034912,0.496478378772736,-0.0117210894823074,0.880232214927673,0.474398523569107,-0.00380323361605406,0.875606238842011,0.483010679483414,-0.0413970947265625,0.874077677726746,0.484019190073013,-0.0204859972000122,0.875081062316895,0.483542680740356,-0.0382566377520561,0.884790241718292,0.464416563510895,-0.0541976392269135,0.886293411254883,0.459942132234573,
- -0.0193742699921131,0.882694900035858,0.469546943902969,-0.0229549929499626,0.880482614040375,0.473522335290909,-0.0310262814164162,0.880506098270416,0.473018318414688,-0.0037369872443378,0.880195081233978,0.474597364664078,-0.0751415118575096,0.876768171787262,0.475006878376007,-0.0321479700505733,0.883736371994019,0.466879725456238,-0.0234952252358198,0.884927988052368,0.465134859085083,-0.00929406378418207,0.882721483707428,0.469804883003235,-0.01914107427001,0.884259283542633,0.466603934764862,-0.0523542910814285,0.888733386993408,0.455425083637238,-0.0475251525640488,0.894990921020508,0.443545520305634,-0.0563582181930542,0.896703720092773,0.439028561115265,-0.00765983015298843,0.886146008968353,0.463342875242233,0.00690420856699348,0.876834511756897,0.480742782354355,-0.00379179255105555,0.876406252384186,0.481557637453079,-0.0204200688749552,0.875539839267731,0.482714265584946,-0.0202722400426865,0.876565158367157,0.480856120586395,-0.0119794961065054,0.876983821392059,0.48037052154541,0.00691111013293266,0.877710998058319,0.47914057970047,0.00693272985517979,0.880456686019897,0.474075853824615,-0.0231600869446993,0.882177710533142,0.470346927642822,-0.00372287700884044,0.881159067153931,0.472805380821228,-0.0625941827893257,0.887641370296478,0.456261873245239,-0.109229311347008,0.890116512775421,0.442449539899826,-0.00950139760971069,0.882283329963684,0.470622926950455,-0.0119261089712381,0.877099335193634,0.480161190032959,-0.111739419400692,0.869568645954132,0.481003820896149,0.00690972292795777,0.877534806728363,0.479463219642639,-0.158596932888031,0.887491047382355,0.432673752307892,-0.109536379575729,0.887780547142029,0.447043061256409,-0.0637134835124016,0.885971248149872,0.459342509508133,-0.157757773995399,0.82579517364502,0.541456282138824,-0.115317225456238,0.833146810531616,0.540896058082581,-0.161910325288773,0.824990451335907,0.541457056999207,-0.0458914078772068,0.880871117115021,0.471126407384872,-0.0743303522467613,0.875399529933929,0.477651417255402,-0.0234593693166971,0.884634912014008,0.465693831443787,
- -0.050297886133194,0.894107401371002,0.44501918554306,-0.0244784746319056,0.89285683631897,0.449674904346466,0.00701180938631296,0.890499770641327,0.454929620027542,-0.0795185640454292,0.884029507637024,0.46061772108078,-0.0485366806387901,0.888895213603973,0.455532014369965,-0.0791554301977158,0.884091854095459,0.460560709238052,-0.110776379704475,0.877860069274902,0.465929478406906,-0.11427891254425,0.877560377120972,0.465648025274277,0.00694155180826783,0.88157707452774,0.471989095211029,-0.117780588567257,0.895868301391602,0.428424745798111,-0.0514026135206223,0.897323071956635,0.438371151685715,0.00704935053363442,0.895267486572266,0.445473283529282,-0.113214924931526,0.855729162693024,0.504886090755463,-0.16283555328846,0.84801173210144,0.504341781139374,-0.110281467437744,0.856116652488709,0.504878401756287,-0.115481205284595,0.88390064239502,0.453192830085754,-0.0816591903567314,0.889299392700195,0.449976205825806,-0.0500510521233082,0.893383264541626,0.446498870849609,-0.0777344107627869,0.881089925765991,0.466516852378845,-0.113819487392902,0.875123620033264,0.470323026180267,-0.166577637195587,0.864206194877625,0.474762707948685,0.0603951588273048,0.991048693656921,0.119058921933174,0.240745738148689,0.963278591632843,0.118894815444946,0.152653485536575,0.981031656265259,0.119473747909069,-0.0137264681980014,0.993289053440094,0.114841677248478,0.0591910928487778,0.989532768726349,0.131610557436943,0.148435145616531,0.977291107177734,0.151225298643112,0.24123477935791,0.957774937152863,0.156438231468201,0.0595407597720623,0.989988207817078,0.127977967262268,0.138962626457214,0.980218470096588,0.140929743647575,0.211047634482384,0.974455773830414,0.0767794623970985,0.239622592926025,0.968274533748627,0.0708906874060631,0.137425124645233,0.986279845237732,0.0914680883288383,0.0594497956335545,0.989870965480804,0.128923937678337,-0.0129122566431761,0.993654191493988,0.111734874546528,-0.0387230440974236,0.993670403957367,0.105449587106705,-0.0524162277579308,0.993943810462952,0.0965828076004982,-0.038085799664259,0.994166672229767,0.100906163454056,
- -0.0121113732457161,0.994003295898438,0.108678288757801,0.137701466679573,0.985451579093933,0.0996178314089775,0.0766920745372772,0.991147339344025,0.108376443386078,0.213378086686134,0.972988605499268,0.0881080254912376,-0.00488529028370976,0.991797387599945,0.127727374434471,0.206546992063522,0.976875185966492,0.0552565343677998,0.0757883787155151,0.992013216018677,0.100826881825924,0.138241559267044,0.983536183834076,0.116386860609055,0.0604683682322502,0.991136014461517,0.118291735649109,-0.00875737424939871,0.992810606956482,0.119375817477703,0.0772452875971794,0.990586221218109,0.113013483583927,0.138196527957916,0.983712375164032,0.114942066371441,-0.00868922472000122,0.993938565254211,0.109593011438847,0.0603041872382164,0.990939378738403,0.120011426508427,-0.041338674724102,0.991403698921204,0.12413676828146,-0.00878210458904505,0.992373585700989,0.122953608632088,-0.0095774969086051,0.993371784687042,0.114545978605747,0.073448047041893,0.993970096111298,0.0814182907342911,-0.0281308554112911,0.992152571678162,0.121827892959118,-0.0303002465516329,0.993611931800842,0.108707025647163,0.0776507779955864,0.990160048007965,0.116419866681099,-0.00869456026703119,0.993854224681854,0.110354922711849,-0.0283533297479153,0.992310285568237,0.120484761893749,-0.0688109174370766,0.987899959087372,0.138992697000504,-0.0104090087115765,0.993630290031433,0.112207159399986,-0.00878065265715122,0.9923996925354,0.122743219137192,-0.041324682533741,0.991416811943054,0.124036654829979,-0.0243663843721151,0.992060422897339,0.123378865420818,-0.038221150636673,0.994063198566437,0.101870864629745,-0.0527787953615189,0.993828356266022,0.0975686311721802,-0.0231866929680109,0.994065165519714,0.106286630034447,-0.0251272488385439,0.993414700031281,0.111785419285297,-0.0298379845917225,0.993315577507019,0.111507251858711,-0.00871119741350412,0.993586897850037,0.112735107541084,-0.0754502043128014,0.990525424480438,0.114746987819672,-0.0310319196432829,0.994064807891846,0.104269921779633,-0.0256418604403734,0.994352400302887,0.102984741330147,
- -0.00834662280976772,0.994118988513947,0.107972107827663,-0.0229398235678673,0.994445979595184,0.102718405425549,-0.0509379766881466,0.994403004646301,0.0925639346241951,-0.046121921390295,0.995769262313843,0.0794765949249268,-0.0571876689791679,0.995659649372101,0.0734267383813858,-0.00673224776983261,0.994876265525818,0.100876823067665,0.00687231961637735,0.992753863334656,0.119969248771667,-0.00877071358263493,0.992576658725739,0.1213039457798,-0.0243127681314945,0.992158234119415,0.122600577771664,-0.0241646729409695,0.992425084114075,0.120451480150223,-0.010968760587275,0.992775022983551,0.119488433003426,0.00688834208995104,0.99297159910202,0.118152111768723,0.00693864235654473,0.993635654449463,0.112428091466427,-0.0253474675118923,0.993825078010559,0.108024500310421,-0.00869425013661385,0.993859112262726,0.110310658812523,-0.0635772421956062,0.993638157844543,0.0929573476314545,-0.107329204678535,0.990994155406952,0.0800696238875389,-0.00854388903826475,0.994022786617279,0.108838841319084,-0.010923326946795,0.992799460887909,0.119288973510265,-0.109567210078239,0.986358225345612,0.122851520776749,0.00688508478924632,0.992927670478821,0.118521995842457,-0.153291746973991,0.985491752624512,0.0728540122509003,-0.107605077326298,0.990540385246277,0.0851519182324409,-0.0647222548723221,0.993230164051056,0.0964618101716042,-0.160530313849449,0.967473685741425,0.19551132619381,-0.112768270075321,0.974924325942993,0.191848441958427,-0.156534999608994,0.968186616897583,0.195221498608589,-0.0392691567540169,0.99341356754303,0.107644759118557,-0.0746388882398605,0.990237534046173,0.117723181843758,-0.0255992859601974,0.994277656078339,0.103714436292648,-0.0433447062969208,0.99571567773819,0.081680066883564,-0.0266995634883642,0.996043562889099,0.0847613364458084,0.00712509360164404,0.995830535888672,0.0909436494112015,-0.0798113495111465,0.991913139820099,0.0986838787794113,-0.0419350787997246,0.994996011257172,0.0906887650489807,-0.0755290985107422,0.992337346076965,0.0977861657738686,-0.108704283833504,0.988415360450745,0.105917692184448,
- -0.110089629888535,0.988268256187439,0.105858989059925,0.00695931166410446,0.993899762630463,0.110067218542099,-0.113390207290649,0.991427600383759,0.0649164691567421,-0.0445594899356365,0.99627023935318,0.0738923698663712,0.0072153271175921,0.996737360954285,0.0803908407688141,-0.110892347991467,0.982431650161743,0.150103151798248,-0.165925890207291,0.974239945411682,0.152725577354431,-0.106316052377224,0.98297381401062,0.149864941835403,-0.111297301948071,0.989596784114838,0.0911656692624092,-0.0780342444777489,0.993213474750519,0.0862429141998291,-0.0434456579387188,0.995764136314392,0.0810337588191032,-0.0740450695157051,0.991754591464996,0.104594878852367,-0.109719790518284,0.987824022769928,0.11029639840126,-0.169859781861305,0.978180348873138,0.119627997279167,-0.0613986141979694,-0.988399863243103,0.138909712433815,-0.23690602183342,-0.962506294250488,0.132126197218895,-0.147272109985352,-0.97968065738678,0.136150136590004,0.0201739557087421,-0.989461839199066,0.143381804227829,-0.0600091740489006,-0.990400850772858,0.124519303441048,-0.142937675118446,-0.984251022338867,0.104013442993164,-0.237292975187302,-0.966157913208008,0.101148836314678,-0.0610854774713516,-0.988870978355408,0.135657206177711,-0.138496667146683,-0.982931673526764,0.121095225214958,-0.208314061164856,-0.962365508079529,0.174522027373314,-0.235889658331871,-0.955248713493347,0.178482964634895,-0.136965572834015,-0.976951122283936,0.163728803396225,-0.0602781251072884,-0.990031480789185,0.127296552062035,0.0193311758339405,-0.989003658294678,0.146622270345688,0.0346229150891304,-0.988045394420624,0.150225281715393,0.0515312701463699,-0.985907554626465,0.15915659070015,0.034063633531332,-0.987463116645813,0.154130816459656,0.0185491852462292,-0.988568603992462,0.149626776576042,-0.137202709913254,-0.977928102016449,0.157582089304924,-0.077119842171669,-0.98556786775589,0.150693863630295,-0.210229128599167,-0.963587880134583,0.165233939886093,0.00562630547210574,-0.990959107875824,0.134046480059624,-0.203074842691422,-0.958645820617676,0.199396103620529,
- -0.0759078562259674,-0.984133541584015,0.160372242331505,-0.137766271829605,-0.980181217193604,0.142355814576149,-0.0617430321872234,-0.987868130207062,0.142493352293968,0.00667674839496613,-0.989857077598572,0.141910016536713,-0.0778354033827782,-0.986373603343964,0.144944384694099,-0.137801364064217,-0.980318069458008,0.141376793384552,0.00661224918439984,-0.988807320594788,0.149051710963249,-0.0614433661103249,-0.98833167552948,0.139374911785126,0.0366974696516991,-0.990072309970856,0.135683849453926,0.00672128470614553,-0.990554928779602,0.136951759457588,0.00961464643478394,-0.989348292350769,0.145249977707863,-0.0737353265285492,-0.981347858905792,0.177537381649017,0.0309050437062979,-0.990115106105804,0.13681024312973,0.0332984104752541,-0.987948358058929,0.151159659028053,-0.0781302377581596,-0.986696600914001,0.142567738890648,0.00661026034504175,-0.988774240016937,0.149271190166473,0.0310991611331701,-0.989947617053986,0.137973695993423,0.0663099214434624,-0.990383923053741,0.121419847011566,0.0104438485577703,-0.988995492458344,0.14757713675499,0.00671933498233557,-0.99052482843399,0.137169256806374,0.0366808995604515,-0.990056991577148,0.13580034673214,0.0225974638015032,-0.990387916564941,0.136459216475487,0.033738236874342,-0.987117409706116,0.156400218605995,0.050776407122612,-0.985613942146301,0.161204501986504,0.0214857347309589,-0.988005518913269,0.152916699647903,0.024855948984623,-0.988765060901642,0.14739690721035,0.0327387005090714,-0.98847484588623,0.147802978754044,0.00663603376597166,-0.989199817180634,0.146423488855362,0.0718199014663696,-0.987322211265564,0.141551151871681,0.0332948863506317,-0.987951755523682,0.151138544082642,0.0252026487141848,-0.987886190414429,0.153120487928391,0.00684074964374304,-0.988414824008942,0.151622995734215,0.0212278980761766,-0.987415730953217,0.156714960932732,0.0488601177930832,-0.984847664833069,0.166396781802177,0.0422108396887779,-0.981955528259277,0.184341222047806,0.0549742020666599,-0.980040490627289,0.191045612096787,0.0040464554913342,-0.986437201499939,0.164089813828468,
- -0.00889090169221163,-0.990270137786865,0.138874396681786,0.00671595009043813,-0.990472495555878,0.137546822428703,0.0226176418364048,-0.990428745746613,0.136159330606461,0.022619316354394,-0.99043208360672,0.136134400963783,0.0100870430469513,-0.990505695343018,0.137101277709007,-0.00888852775096893,-0.99031925201416,0.138523787260056,-0.0089787095785141,-0.98834764957428,0.151948466897011,0.0254090614616871,-0.987345933914185,0.156532362103462,0.00656691892072558,-0.988042235374451,0.154043555259705,0.0620342195034027,-0.983609080314636,0.169307753443718,0.109114900231361,-0.977227866649628,0.181988194584847,0.00634546205401421,-0.988076269626617,0.153834939002991,0.00985433720052242,-0.99036318063736,0.138143613934517,0.111963778734207,-0.984788179397583,0.132877320051193,-0.00889143161475658,-0.990259110927582,0.138952657580376,0.153758034110069,-0.970320165157318,0.186647683382034,0.109453797340393,-0.978213429450989,0.176404595375061,0.0632986724376678,-0.984194159507751,0.165394023060799,0.15922337770462,-0.985414803028107,0.0600480511784554,0.115416571497917,-0.991184532642365,0.0650558695197105,0.157232984900475,-0.985720157623291,0.060278944671154,0.0395496934652328,-0.988140523433685,0.148371517658234,0.0711109191179276,-0.987741947174072,0.138957783579826,0.0251713059842587,-0.987967133522034,0.152602642774582,0.0452651046216488,-0.981745958328247,0.1847323179245,0.0269173346459866,-0.983011543750763,0.181559756398201,-0.00913107953965664,-0.984499931335449,0.175147175788879,0.0770053789019585,-0.984019935131073,0.160546377301216,0.0426787622272968,-0.98481822013855,0.168260455131531,0.0759848058223724,-0.984061300754547,0.160778895020485,0.111095778644085,-0.982668578624725,0.148392125964165,0.108918219804764,-0.982917010784149,0.148360878229141,-0.008936433121562,-0.989299178123474,0.145627751946449,0.113241791725159,-0.973429977893829,0.199023500084877,0.0463893190026283,-0.980317175388336,0.1919015198946,-0.00919657852500677,-0.98263293504715,0.185332521796227,0.113473519682884,-0.988025486469269,0.104543700814247,
- 0.164110496640205,-0.981334149837494,0.100255951285362,0.105036526918411,-0.988885343074799,0.105229087173939,0.110668078064919,-0.979468703269959,0.168504104018211,0.0788575485348701,-0.981593549251556,0.17394170165062,0.0444600358605385,-0.982734322547913,0.179601803421974,0.0751067250967026,-0.984776377677917,0.156762555241585,0.109110876917839,-0.982561767101288,0.150556057691574,0.168602630496025,-0.975805521011353,0.139201134443283,-0.0601795986294746,-0.87571394443512,0.479065388441086,-0.236443221569061,-0.85392439365387,0.463581442832947,-0.147637769579887,-0.868431508541107,0.473318040370941,0.0151080321520567,-0.875731885433197,0.482561230659485,-0.0588397681713104,-0.882552206516266,0.466518461704254,-0.143135070800781,-0.884103238582611,0.44483008980751,-0.236676439642906,-0.868252098560333,0.43603041768074,-0.0598929189145565,-0.877197504043579,0.476379305124283,-0.143456622958183,-0.876604616641998,0.459330767393112,-0.211813434958458,-0.837752342224121,0.503295183181763,-0.235659673810005,-0.830747306346893,0.504304885864258,-0.141946956515312,-0.855126738548279,0.498607337474823,-0.0591060295701027,-0.881212532520294,0.469010502099991,0.014265226200223,-0.874167263507843,0.485415548086166,0.0392331629991531,-0.87063056230545,0.490370601415634,0.0542057752609253,-0.865649521350861,0.497707396745682,0.0386435016989708,-0.868581712245941,0.494036972522736,0.0135455746203661,-0.872823596000671,0.487847924232483,-0.142182156443596,-0.858328819274902,0.493007063865662,-0.0792344212532043,-0.868568241596222,0.489194363355637,-0.213773518800735,-0.842242300510406,0.494902819395065,0.00710122939199209,-0.879998981952667,0.474922358989716,-0.206428676843643,-0.825251579284668,0.525687217712402,-0.0780371055006981,-0.863596260547638,0.498108088970184,-0.142738625407219,-0.866097688674927,0.479062259197235,-0.0605153515934944,-0.873961746692657,0.482212334871292,0.00689729023724794,-0.875955820083618,0.482342183589935,-0.0799545124173164,-0.871530890464783,0.483778238296509,-0.142782047390938,-0.866716504096985,0.477928638458252,
- 0.00686969328671694,-0.87245100736618,0.488653242588043,-0.0602166429162025,-0.875521302223206,0.47941255569458,0.041472639888525,-0.87829065322876,0.47632509469986,0.00691630411893129,-0.878370583057404,0.477930217981339,0.0109983598813415,-0.874570310115814,0.484773963689804,-0.0759581997990608,-0.854830086231232,0.513318479061127,0.0340680181980133,-0.878523826599121,0.47648224234581,0.0366834066808224,-0.870682299137115,0.490475952625275,-0.0802407115697861,-0.872702479362488,0.481613755226135,0.00686880480498075,-0.872338175773621,0.488854676485062,0.0342267639935017,-0.878055214881897,0.477333843708038,0.0672562122344971,-0.883849680423737,0.462910771369934,0.0117867859080434,-0.873456716537476,0.486759185791016,0.0069154747761786,-0.878265261650085,0.478123754262924,0.0414583198726177,-0.878242254257202,0.476415395736694,0.0258672088384628,-0.878382742404938,0.477257400751114,0.0383274964988232,-0.867478251457214,0.495996445417404,0.0534733906388283,-0.864667415618896,0.499490797519684,0.024664169177413,-0.869826972484589,0.492739945650101,0.0238055735826492,-0.873052358627319,0.487045049667358,0.0361206382513046,-0.872391521930695,0.487471431493759,0.00687987031415105,-0.873743534088135,0.486338317394257,0.0727817118167877,-0.873754382133484,0.480891048908234,0.0365164019167423,-0.871190786361694,0.489584743976593,0.0241657681763172,-0.870041012763977,0.492386698722839,0.00360825657844543,-0.871775209903717,0.489892840385437,0.0243875589221716,-0.867829144001007,0.496264100074768,0.0515233501791954,-0.86203408241272,0.50422477722168,0.044809490442276,-0.852767705917358,0.52036464214325,0.0587398707866669,-0.848178625106812,0.526443302631378,0.000903889536857605,-0.865804076194763,0.500382304191589,-0.0037737344391644,-0.877662539482117,0.479264289140701,0.0069140805862844,-0.878088235855103,0.478449016809464,0.0258974451571703,-0.878594994544983,0.476864963769913,0.0258966442197561,-0.878589451313019,0.476875424385071,0.00657190382480621,-0.878166913986206,0.47830918431282,-0.00377167505212128,-0.877805352210999,0.479002743959427,
- -0.00387244857847691,-0.870699048042297,0.491800993680954,0.0243421606719494,-0.868551552295685,0.495000749826431,0.00685012666508555,-0.869966089725494,0.493064016103745,0.0661945790052414,-0.859602510929108,0.506657481193542,0.111941874027252,-0.849297881126404,0.515909075737,0.0030541867017746,-0.870562672615051,0.492048263549805,0.00635919719934464,-0.8777135014534,0.479143649339676,0.114752262830734,-0.87418395280838,0.471841394901276,-0.00377588160336018,-0.877513587474823,0.479536950588226,0.152827903628349,-0.842132210731506,0.517162382602692,0.112276084721088,-0.852238953113556,0.510962843894959,0.0675175487995148,-0.861584067344666,0.50310480594635,0.162019684910774,-0.900426805019379,0.403709501028061,0.118074610829353,-0.904180884361267,0.410506427288055,0.15637594461441,-0.901011049747467,0.404630273580551,0.0392756424844265,-0.872030079364777,0.487873941659927,0.0720666497945786,-0.875086665153503,0.478570491075516,0.0241377912461758,-0.870276391506195,0.491971969604492,0.0448310896754265,-0.853297650814056,0.519493341445923,0.0258213672786951,-0.855672419071198,0.516873300075531,-0.00403442000970244,-0.858754515647888,0.512371361255646,0.0779155939817429,-0.863959789276123,0.497496396303177,0.0423253104090691,-0.861918866634369,0.505276679992676,0.0775217637419701,-0.863943576812744,0.497586280107498,0.113903284072876,-0.866626918315887,0.485781848430634,0.109872162342072,-0.867084324359894,0.485893875360489,-0.00382495857775211,-0.874078571796417,0.485769748687744,0.113987490534782,-0.840284705162048,0.530026972293854,0.0459336712956429,-0.849413514137268,0.525725066661835,-0.00410228408873081,-0.853552877902985,0.520990073680878,0.116209715604782,-0.887250900268555,0.446409463882446,0.16699306666851,-0.882359445095062,0.439948976039886,0.106160879135132,-0.887938380241394,0.447543889284134,0.111523561179638,-0.85683661699295,0.503382086753845,0.0804070457816124,-0.856935977935791,0.509112596511841,0.044063176959753,-0.855970025062561,0.51514458656311,0.0766625478863716,-0.865991830825806,0.494146972894669,
- 0.110039919614792,-0.866072237491608,0.487657785415649,0.171519041061401,-0.86357569694519,0.474150061607361
- }
- BinormalsW: *1005 {
- 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
- }
- }
- LayerElementTangent: 0 {
- Version: 102
- Name: "UVmap_0"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *3015 {
- a: 0.152202025055885,-0.708069443702698,-0.689544916152954,0.0442654602229595,-0.731386125087738,-0.680525481700897,0.318338602781296,-0.670685589313507,-0.669956266880035,-0.316875159740448,0.258788108825684,-0.912479519844055,-0.105099678039551,0.293128162622452,-0.950278997421265,-0.0198114402592182,0.327274471521378,-0.944721639156342,0.133619397878647,-0.983457148075104,0.122303336858749,0.239945024251938,-0.95794689655304,0.157366156578064,0.105194263160229,-0.985747635364532,0.131285771727562,-0.316761076450348,0.25724920630455,-0.912954151630402,-0.321848034858704,0.256280362606049,-0.911446213722229,-0.104939423501492,0.291590243577957,-0.950769603252411,-0.160862028598785,0.239294394850731,-0.95752888917923,-0.102090962231159,0.264556437730789,-0.95895117521286,-0.321535468101501,0.230546563863754,-0.918402552604675,-0.319290608167648,0.153915449976921,-0.935074090957642,-0.312491774559021,0.151937201619148,-0.937690794467926,-0.160946235060692,0.16017384827137,-0.973879277706146,0.322344660758972,-0.655836224555969,-0.682622075080872,0.0425152853131294,-0.722794532775879,-0.689753949642181,0.0666498914361,-0.69055449962616,-0.720202922821045,-0.152622908353806,-0.129409804940224,-0.979775130748749,0.0525346919894218,-0.120683997869492,-0.991299986839294,-0.054118487983942,-0.130662992596626,-0.989948689937592,0.0647816956043243,-0.518738329410553,-0.852475166320801,0.209580764174461,-0.503848612308502,-0.837981224060059,0.302114486694336,-0.488424330949783,-0.818638205528259,0.249251499772072,0.188707605004311,-0.949875295162201,0.137793928384781,0.198616072535515,-0.970342457294464,0.180375441908836,0.180554628372192,-0.966884136199951,0.208192571997643,-0.176519751548767,-0.962027370929718,0.365260034799576,-0.170417115092278,-0.915173828601837,0.277455687522888,-0.16998328268528,-0.945581316947937,0.377332001924515,-0.0380519032478333,-0.925295948982239,0.201445236802101,-0.0527213551104069,-0.978079915046692,0.149056568741798,-0.0294660832732916,-0.988389551639557,0.199608951807022,-0.026347866281867,-0.979521334171295,
- 0.0490005202591419,-0.0391459539532661,-0.998031437397003,0.148260742425919,-0.047202605754137,-0.987821280956268,0.150288164615631,0.000363132334314287,-0.988642275333405,0.373897820711136,-0.0122105246409774,-0.927389621734619,0.379099011421204,-0.00865261722356081,-0.925315678119659,-0.154944837093353,-0.0809706971049309,-0.984599351882935,0.00669741118326783,-0.0733557417988777,-0.997283339500427,0.0504973269999027,-0.0727920308709145,-0.996067941188812,0.146223023533821,-0.088505782186985,-0.985284507274628,0.0504393950104713,-0.0714662820100784,-0.996166884899139,0.00660732109099627,-0.0788679867982864,-0.996863186359406,-0.148249790072441,-0.0671796500682831,-0.986665546894073,0.00689682364463806,-0.0611038208007813,-0.998107612133026,-0.155237436294556,-0.0742463767528534,-0.985083162784576,-0.140364915132523,-0.29159215092659,-0.94618809223175,-0.142285779118538,-0.288227558135986,-0.946931719779968,-0.296038419008255,-0.29019621014595,-0.910026073455811,0.00667630089446902,-0.0746499970555305,-0.997187435626984,0.0173752177506685,-0.0706509873270988,-0.997349739074707,0.146435037255287,-0.0844413638114929,-0.985609769821167,0.0068569234572351,-0.0635608434677124,-0.997954428195953,-0.148202747106552,-0.0697932317852974,-0.986491203308105,0.0173158850520849,-0.0680165812373161,-0.997533917427063,-0.294023394584656,-0.307979643344879,-0.90481972694397,-0.159762054681778,-0.31526055932045,-0.935460805892944,-0.139321714639664,-0.310611814260483,-0.940271139144897,0.0170774515718222,-0.0574783496558666,-0.99820077419281,-0.148392856121063,-0.0588508769869804,-0.987175941467285,-0.159284874796867,-0.0471127368509769,-0.986107885837555,-0.160126954317093,-0.0882485061883926,-0.98314380645752,-0.311576545238495,-0.0824185758829117,-0.946639955043793,-0.303569942712784,-0.0827536582946777,-0.949208796024323,-0.302932679653168,-0.0658783689141274,-0.950732290744781,-0.142020910978317,-0.0920717865228653,-0.985572457313538,-0.159817636013031,-0.0715512633323669,-0.984549999237061,-0.128776639699936,-0.00508668599650264,-0.991660594940186,
- 0.0170118920505047,-0.0545944385230541,-0.998363673686981,-0.159182369709015,-0.0428560487926006,-0.986318588256836,-0.14178355038166,-0.0904529616236687,-0.985756397247314,-0.302870064973831,-0.0643346011638641,-0.950857937335968,-0.208588317036629,-0.0823629051446915,-0.974529266357422,-0.198788091540337,-0.0296765472739935,-0.979593098163605,0.0141240740194917,-0.0802073776721954,-0.996678233146667,-0.135156556963921,-0.0461723729968071,-0.989747881889343,0.0127937598153949,-0.0563424900174141,-0.998329520225525,0.0170523356646299,-0.0563726760447025,-0.998264253139496,-0.133200734853745,-0.0334243811666965,-0.990525305271149,0.0183830987662077,-0.0678453743457794,-0.997526466846466,0.0116385146975517,-0.062033724039793,-0.998006284236908,-0.133902236819267,-0.0379806943237782,-0.990266442298889,0.0269288178533316,-0.0429782010614872,-0.99871301651001,0.0784424617886543,-0.066831074655056,-0.994675993919373,0.0136836916208267,-0.0519555397331715,-0.998555660247803,0.0757020935416222,-0.086156077682972,-0.993401408195496,0.0173891503363848,-0.0712703242897987,-0.997305452823639,0.00823809113353491,-0.0787622183561325,-0.996859490871429,0.0811023786664009,-0.0478428304195404,-0.995556890964508,0.0316285900771618,-0.0292664505541325,-0.99907124042511,0.190851271152496,-0.0770084783434868,-0.978593647480011,0.145735740661621,-0.0976705625653267,-0.984490513801575,0.017598133534193,-0.0805930197238922,-0.996591746807098,0.0525349043309689,-0.0714487433433533,-0.996059834957123,0.0731711313128471,-0.103796720504761,-0.991903364658356,0.0522410273551941,-0.0671235993504524,-0.996376097202301,0.0174790471792221,-0.0752730816602707,-0.997009754180908,0.36114302277565,0.101188488304615,-0.927004098892212,0.154641762375832,0.163561269640923,-0.974337518215179,0.0399329215288162,0.1034911647439,-0.993828415870667,0.196581944823265,-0.0409980677068233,-0.979629874229431,0.0836180150508881,-0.0296685844659805,-0.996056139469147,0.198570787906647,-0.049142450094223,-0.978853762149811,0.050601813942194,-0.0432369038462639,-0.997782647609711,
- 0.0808512941002846,-0.0496451407670975,-0.995489060878754,0.196589663624763,-0.0420676432549953,-0.979582965373993,0.0475973300635815,-0.000451687054010108,-0.998866498470306,0.195909470319748,0.0124457273632288,-0.98054301738739,0.369949877262115,0.0278238859027624,-0.928635001182556,0.228741526603699,0.066594235599041,-0.971206724643707,0.228015050292015,0.0185117069631815,-0.973481714725494,0.195630222558975,0.0269528608769178,-0.980307281017303,0.229618087410927,-0.00179296277929097,-0.973279178142548,0.371320426464081,0.0146032497286797,-0.928389966487885,0.196186751127243,-0.00473345536738634,-0.98055511713028,0.231135413050652,-0.394505262374878,-0.889349222183228,0.124546952545643,-0.440327614545822,-0.889156699180603,0.387488692998886,-0.338759243488312,-0.857376635074615,-0.406268835067749,0.492791622877121,-0.769481658935547,-0.21072182059288,0.572751820087433,-0.792181611061096,-0.12790335714817,0.619840443134308,-0.774234175682068,0.303386986255646,-0.926771521568298,-0.221474424004555,0.400500148534775,-0.898398876190186,-0.180219516158104,0.27796670794487,-0.937004685401917,-0.2115578353405,-0.405937492847443,0.491541922092438,-0.770455420017242,-0.414834171533585,0.487512856721878,-0.768273293972015,-0.21033838391304,0.571527600288391,-0.793167054653168,-0.255804926156998,0.515088975429535,-0.818075299263,-0.203519001603127,0.549797594547272,-0.810125052928925,-0.410811126232147,0.466103762388229,-0.783569693565369,-0.397251486778259,0.401047229766846,-0.82544070482254,-0.389109045267105,0.401847541332245,-0.828922629356384,-0.244239255785942,0.447148978710175,-0.860467910766602,0.382451981306076,-0.321545749902725,-0.866221010684967,0.120866805315018,-0.429713368415833,-0.894839465618134,0.13953298330307,-0.384718686342239,-0.912426471710205,-0.190420240163803,0.183502301573753,-0.964399814605713,0.0141336619853973,0.23186856508255,-0.972644448280334,-0.0918706208467484,0.202489450573921,-0.974965572357178,0.101188391447067,-0.181622266769409,-0.978148400783539,0.238989502191544,-0.147408172488213,-0.959768116474152,
- 0.327343344688416,-0.124308682978153,-0.936692953109741,0.162506252527237,0.539272367954254,-0.826303362846375,0.045511856675148,0.534312009811401,-0.844061255455017,0.0928282514214516,0.524164140224457,-0.84654289484024,0.177780851721764,0.197319135069847,-0.964084625244141,0.332666784524918,0.214126378297806,-0.918413162231445,0.250252395868301,0.210164651274681,-0.945095002651215,0.322034507989883,0.342007398605347,-0.882793724536896,0.150252491235733,0.316334962844849,-0.936673045158386,0.0911035761237144,0.330916911363602,-0.939252018928528,0.144346415996552,0.340010583400726,-0.929277658462524,-0.00340336561203003,0.308876425027847,-0.95109611749649,0.0931899845600128,0.314898371696472,-0.944539368152618,0.0873801931738853,0.358783960342407,-0.929321706295013,0.318677753210068,0.36656242609024,-0.874114692211151,0.318912327289581,0.369471848011017,-0.872803211212158,-0.200755879282951,0.229694664478302,-0.952332735061646,-0.0430060736835003,0.268787980079651,-0.962238788604736,0.00384576502256095,0.27728345990181,-0.960780560970306,0.0981371849775314,0.275680154561996,-0.956226825714111,0.0034518875181675,0.279008805751801,-0.960282444953918,-0.0421813726425171,0.263633608818054,-0.963700294494629,-0.198024213314056,0.243786498904228,-0.949396967887878,-0.0448570251464844,0.280356377363205,-0.958847403526306,-0.202221482992172,0.236377790570259,-0.950385212898254,-0.151351079344749,0.0233502667397261,-0.98820424079895,-0.152642086148262,0.0262354705482721,-0.987933337688446,-0.299924582242966,-0.0139336343854666,-0.953861176967621,-0.0428260043263435,0.267662554979324,-0.962560594081879,-0.0294630825519562,0.273626625537872,-0.961384654045105,0.0976528972387314,0.279599219560623,-0.95513778924942,-0.0444834679365158,0.278021663427353,-0.959544241428375,-0.197544947266579,0.241316869854927,-0.950127422809601,-0.0300188288092613,0.276419103145599,-0.960568249225616,-0.294747620820999,-0.0318316556513309,-0.95504492521286,-0.159727290272713,-0.00386466714553535,-0.987153708934784,-0.146876901388168,0.00394274760037661,-0.989146947860718,
- -0.0319975428283215,0.286352604627609,-0.957589864730835,-0.199544161558151,0.251654356718063,-0.947022795677185,-0.206327855587006,0.260624974966049,-0.943135023117065,-0.200322791934013,0.222234547138214,-0.954192101955414,-0.350959002971649,0.188079074025154,-0.917308032512665,-0.338781177997589,0.191096991300583,-0.92125415802002,-0.340971201658249,0.207378342747688,-0.916914880275726,-0.18276572227478,0.221620455384254,-0.957852303981781,-0.202849417924881,0.238177746534348,-0.949801802635193,-0.18399466574192,0.307979881763458,-0.933431506156921,-0.0325455851852894,0.289101421833038,-0.956745088100433,-0.206934899091721,0.264605432748795,-0.941892743110657,-0.182801529765129,0.223220154643059,-0.957474052906036,-0.341165155172348,0.208853483200073,-0.916507840156555,-0.250161319971085,0.21637199819088,-0.943717360496521,-0.249779865145683,0.266867905855179,-0.930801570415497,-0.0293809790164232,0.263443320989609,-0.964227318763733,-0.1835997402668,0.267539203166962,-0.945893287658691,-0.0309433732181787,0.286187291145325,-0.957674026489258,-0.0321740657091141,0.287238091230392,-0.957318723201752,-0.183757156133652,0.280111700296402,-0.942215859889984,-0.0272367261350155,0.275923728942871,-0.960793554782867,-0.0311407502740622,0.280582547187805,-0.959324598312378,-0.183704197406769,0.27559769153595,-0.943556427955627,-0.0228993445634842,0.300941616296768,-0.953367710113525,0.0256439764052629,0.286863833665848,-0.957628190517426,-0.0307872351258993,0.290592849254608,-0.956351399421692,0.0261206850409508,0.267656981945038,-0.963160157203674,-0.0293695833534002,0.273156702518463,-0.961521089076996,-0.0317122526466846,0.264125883579254,-0.963966727256775,0.0251787956804037,0.305112957954407,-0.951983273029327,-0.0205183122307062,0.314546942710876,-0.949020147323608,0.140446409583092,0.292082339525223,-0.946024715900421,0.0992058739066124,0.26696714758873,-0.958585798740387,-0.027581574395299,0.264164417982101,-0.964083194732666,0.0043002488091588,0.27971488237381,-0.960073471069336,0.026544451713562,0.250126361846924,-0.967849373817444,
- 0.00329401437193155,0.283627480268478,-0.958928883075714,-0.0285907126963139,0.269241005182266,-0.962648332118988,0.287737995386124,0.469780683517456,-0.83457350730896,0.0656453967094421,0.505452930927277,-0.860353410243988,-0.0362758934497833,0.43332713842392,-0.900506317615509,0.141471490263939,0.326039493083954,-0.934710681438446,0.0247166771441698,0.322788089513779,-0.946148574352264,0.143376916646957,0.319081574678421,-0.936819076538086,-0.00221314607188106,0.304948717355728,-0.952366232872009,0.0252278763800859,0.303209662437439,-0.952589869499207,0.141678676009178,0.324907422065735,-0.935073435306549,-0.0121713737025857,0.343104898929596,-0.93921834230423,0.13207571208477,0.375775426626205,-0.91725081205368,0.308424562215805,0.402904897928238,-0.861708700656891,0.154292315244675,0.428502053022385,-0.890269577503204,0.165871694684029,0.384679824113846,-0.908024251461029,0.129433840513229,0.389221608638763,-0.912005186080933,0.170719355344772,0.366491883993149,-0.914624869823456,0.311944991350174,0.390691250562668,-0.866054654121399,0.13514056801796,0.359888076782227,-0.923156321048737,0.156723022460938,-0.957022547721863,-0.244019955396652,0.0488697700202465,-0.973463118076324,-0.223565027117729,0.316346764564514,-0.916359901428223,-0.245375722646713,-0.316215664148331,-0.232138857245445,-0.919847369194031,-0.10566795617342,-0.220146536827087,-0.96972668170929,-0.0142086949199438,-0.187149420380592,-0.982228696346283,0.138528600335121,-0.790127813816071,0.597082793712616,0.23649662733078,-0.752189636230469,0.615044832229614,0.108196422457695,-0.787241578102112,0.607078492641449,-0.316105574369431,-0.233711868524551,-0.919486820697784,-0.32320111989975,-0.233669251203537,-0.917027771472931,-0.105500154197216,-0.221717342734337,-0.969386994838715,-0.166862040758133,-0.271492838859558,-0.94786536693573,-0.102502919733524,-0.2492585927248,-0.962997019290924,-0.322856217622757,-0.259444206953049,-0.910193681716919,-0.320513218641281,-0.334106862545013,-0.886365652084351,-0.307565718889236,-0.337990641593933,-0.889474928379059,
- -0.167084902524948,-0.348156958818436,-0.922425806522369,0.319748610258102,-0.910150706768036,-0.263413637876511,0.0471071973443031,-0.97068178653717,-0.235706999897957,0.0722602680325508,-0.95801192522049,-0.277473628520966,-0.158937349915504,-0.601665616035461,-0.782775461673737,0.05507493019104,-0.599774777889252,-0.798271358013153,-0.0523021034896374,-0.608239352703094,-0.792028665542603,0.0695768147706985,-0.875573098659515,-0.47804918885231,0.209806591272354,-0.855207443237305,-0.473921328783035,0.300114214420319,-0.833044111728668,-0.464724600315094,0.253861367702484,-0.310322344303131,-0.916108310222626,0.138391062617302,-0.313389807939529,-0.939486443996429,0.182503923773766,-0.32703360915184,-0.927222371101379,0.20940288901329,-0.633454918861389,-0.74490624666214,0.365181893110275,-0.605154097080231,-0.707411289215088,0.282117128372192,-0.618994772434235,-0.732977092266083,0.377160668373108,-0.495642811059952,-0.782360553741455,0.202965125441551,-0.534073770046234,-0.820713341236115,0.148679405450821,-0.519478559494019,-0.841449022293091,0.201258167624474,-0.512731492519379,-0.834626615047455,0.0510449334979057,-0.532555282115936,-0.844854593276978,0.14783787727356,-0.534969985485077,-0.831835985183716,0.149950429797173,-0.493737995624542,-0.856584906578064,0.373562157154083,-0.474453121423721,-0.797085642814636,0.378907710313797,-0.47021421790123,-0.797074377536774,-0.16126960515976,-0.562082290649414,-0.81120628118515,0.00859603844583035,-0.56220668554306,-0.82695209980011,0.0527549311518669,-0.560818135738373,-0.826256573200226,0.145739391446114,-0.569556891918182,-0.808928430080414,0.0526536703109741,-0.559134364128113,-0.827403366565704,0.00851273164153099,-0.566677331924438,-0.823895812034607,-0.150115251541138,-0.550854444503784,-0.820990264415741,0.0087829502299428,-0.552067875862122,-0.833752930164337,-0.161563441157341,-0.556473672389984,-0.815005719661713,-0.142650857567787,-0.725626826286316,-0.673139274120331,-0.148484066128731,-0.722621381282806,-0.675108015537262,-0.29155045747757,-0.706981420516968,-0.644341230392456,
- 0.00857786182314157,-0.563185811042786,-0.826285779476166,0.0176229141652584,-0.559527397155762,-0.828624486923218,0.145955979824066,-0.566213428974152,-0.811233162879944,0.00874536391347647,-0.554118752479553,-0.832391679286957,-0.15007421374321,-0.553026437759399,-0.81953626871109,0.0175742991268635,-0.557984113693237,-0.829665660858154,-0.289569795131683,-0.71980094909668,-0.630900919437408,-0.161215260624886,-0.741024374961853,-0.651837766170502,-0.141638994216919,-0.739149451255798,-0.65848046541214,0.0172988343983889,-0.54923814535141,-0.835486948490143,-0.150239482522011,-0.543887317180634,-0.825599610805511,-0.159397184848785,-0.532581388950348,-0.83123379945755,-0.16049998998642,-0.568608641624451,-0.806798577308655,-0.306758195161819,-0.545448780059814,-0.779990434646606,-0.298538744449615,-0.547414183616638,-0.78180068731308,-0.297823935747147,-0.533506691455841,-0.79162585735321,-0.141443893313408,-0.57232391834259,-0.807736933231354,-0.160109147429466,-0.554788768291473,-0.816440165042877,-0.12861542403698,-0.500998079776764,-0.855838179588318,0.0172255001962185,-0.546909809112549,-0.837014317512512,-0.15926918387413,-0.528891861438751,-0.833610653877258,-0.141209647059441,-0.57100647687912,-0.808709740638733,-0.29775407910347,-0.532223761081696,-0.792515218257904,-0.204051569104195,-0.559654355049133,-0.803212285041809,-0.194525241851807,-0.517084419727325,-0.833536803722382,0.015177134424448,-0.568138480186462,-0.822793006896973,-0.134796902537346,-0.535164773464203,-0.833923518657684,0.0127975139766932,-0.54796028137207,-0.836406469345093,0.0172577891498804,-0.547934770584106,-0.836343050003052,-0.132895827293396,-0.524619102478027,-0.840900421142578,0.0194553788751364,-0.557832896709442,-0.829725205898285,0.0116575686261058,-0.552698135375977,-0.833299994468689,-0.133573830127716,-0.52837610244751,-0.838437080383301,0.0280449017882347,-0.536826431751251,-0.843226432800293,0.0749350637197495,-0.554798126220703,-0.828603625297546,0.0136567186564207,-0.544376015663147,-0.838730156421661,0.0720053240656853,-0.571420311927795,-0.817492544651031,
- 0.0176449827849865,-0.560228109359741,-0.828150391578674,0.0082855150103569,-0.566595613956451,-0.823954343795776,0.0776711255311966,-0.538907945156097,-0.838776171207428,0.0327431187033653,-0.525157511234283,-0.85037487745285,0.19325102865696,-0.555943965911865,-0.808443188667297,0.145237430930138,-0.577131569385529,-0.80363267660141,0.0178777873516083,-0.567619562149048,-0.823096871376038,0.0554199926555157,-0.559639930725098,-0.826880753040314,0.0693307965993881,-0.586250066757202,-0.807158052921295,0.0551258325576782,-0.55604875087738,-0.829319596290588,0.0177412834018469,-0.56328558921814,-0.826071918010712,0.360634863376617,-0.376659959554672,-0.853270053863525,0.154523864388466,-0.344823479652405,-0.925861299037933,0.0428026393055916,-0.407350867986679,-0.912268161773682,0.197868689894676,-0.525245189666748,-0.827626407146454,0.0803370028734207,-0.52307391166687,-0.848492562770844,0.200788050889969,-0.532163619995117,-0.822487711906433,0.0534867830574512,-0.53607839345932,-0.842472016811371,0.0773767456412315,-0.540634989738464,-0.837691247463226,0.19787485897541,-0.526477575302124,-0.826841533184052,0.0504793636500835,-0.499601393938065,-0.864783406257629,0.197349607944489,-0.479220569133759,-0.855219721794128,0.369475811719894,-0.440048068761826,-0.818440794944763,0.230333760380745,-0.428686231374741,-0.873598575592041,0.233159646391869,-0.469214856624603,-0.851747632026672,0.197105213999748,-0.466222435235977,-0.862430393695831,0.234732151031494,-0.487408220767975,-0.841031670570374,0.370868057012558,-0.451285362243652,-0.81166398525238,0.197579473257065,-0.494240701198578,-0.846574544906616,0.159465447068214,0.073979951441288,-0.984427630901337,0.0482819713652134,0.0499746948480606,-0.997582793235779,0.319152414798737,0.0820323005318642,-0.944146394729614,-0.32104617357254,0.863943159580231,-0.387983947992325,-0.109504282474518,0.916322112083435,-0.385178714990616,-0.0153481001034379,0.93513959646225,-0.353946834802628,0.14100655913353,-0.724780857563019,-0.67439591884613,0.235139429569244,-0.736436128616333,-0.634327411651611,
- 0.107557021081448,-0.734555304050446,-0.669970154762268,-0.320931494235992,0.863318085670471,-0.38946744799614,-0.318404167890549,0.86402028799057,-0.389984607696533,-0.109335236251354,0.915716469287872,-0.386664211750031,-0.162311315536499,0.887045443058014,-0.432210206985474,-0.106307655572891,0.904645502567291,-0.412692576646805,-0.31816378235817,0.852792263031006,-0.414146304130554,-0.316140443086624,0.816179096698761,-0.483639240264893,-0.306189298629761,0.817567408084869,-0.487679839134216,-0.16247646510601,0.84867936372757,-0.503333568572998,0.319379359483719,0.101387649774551,-0.942187547683716,0.046496793627739,0.0622356534004211,-0.996977925300598,0.07112155854702,0.108267731964588,-0.99157440662384,-0.154370978474617,0.667166113853455,-0.728737950325012,0.0570510737597942,0.681814730167389,-0.729296863079071,-0.0553277879953384,0.673831820487976,-0.736810326576233,0.0694836899638176,0.319691330194473,-0.944970726966858,0.212181225419044,0.317883253097534,-0.92408299446106,0.300059765577316,0.312956124544144,-0.901122987270355,0.253353506326675,0.84847366809845,-0.464655190706253,0.139351263642311,0.870748162269592,-0.471570640802383,0.18319083750248,0.856496453285217,-0.482550472021103,0.21108415722847,0.623208522796631,-0.753030300140381,0.36678808927536,0.591164767742157,-0.718325018882751,0.28192925453186,0.614354193210602,-0.736942887306213,0.378299742937088,0.684017181396484,-0.623706519603729,0.204360261559486,0.71503734588623,-0.668549537658691,0.153530821204185,0.737168610095978,-0.658035516738892,0.202517464756966,0.733142912387848,-0.649221181869507,0.0533830486238003,0.739408314228058,-0.671137630939484,0.152817845344543,0.725967168807983,-0.670535922050476,0.154687032103539,0.756493031978607,-0.635445058345795,0.374948710203171,0.70234340429306,-0.605084478855133,0.37994047999382,0.702901065349579,-0.601311326026917,-0.156667828559875,0.702020764350891,-0.69471001625061,0.00579851819202304,0.71682220697403,-0.697231888771057,0.0549411699175835,0.716228246688843,-0.69570004940033,0.15088427066803,0.697594940662384,-0.700425028800964,
- 0.0548709630966187,0.717311084270477,-0.694589078426361,0.00570644205436111,0.712952435016632,-0.701189279556274,-0.150114834308624,0.713237166404724,-0.684659242630005,0.00600271997973323,0.725350975990295,-0.688353061676025,-0.156958967447281,0.706755518913269,-0.689826488494873,-0.143084421753883,0.536631643772125,-0.831596851348877,-0.144084468483925,0.539839684963226,-0.829344809055328,-0.291427493095398,0.511860847473145,-0.808126509189606,0.00577677041292191,0.715908586978912,-0.698170125484467,0.0107678575441241,0.71857613325119,-0.695364952087402,0.151088014245033,0.700468957424164,-0.697506844997406,0.00596197135746479,0.723654985427856,-0.690136253833771,-0.150079265236855,0.711430668830872,-0.686543941497803,0.0107092233374715,0.720389783382416,-0.693486750125885,-0.289495646953583,0.496336936950684,-0.818438708782196,-0.16129358112812,0.513960123062134,-0.842513740062714,-0.1421088129282,0.519811391830444,-0.842378318309784,0.0104709034785628,0.727686405181885,-0.685830056667328,-0.150222390890121,0.719020783901215,-0.678559005260468,-0.16112257540226,0.724742114543915,-0.669916689395905,-0.161918491125107,0.696321845054626,-0.699226915836334,-0.306018352508545,0.673629581928253,-0.672737658023834,-0.305981338024139,0.673452854156494,-0.672931432723999,-0.305305570363998,0.685503005981445,-0.660964548587799,-0.142113953828812,0.695312261581421,-0.704517185688019,-0.161624878644943,0.708111763000488,-0.687353730201721,-0.128176599740982,0.757246553897858,-0.640428364276886,0.010405445471406,0.729670107364655,-0.683720171451569,-0.161024421453476,0.727627038955688,-0.666805863380432,-0.141870364546776,0.696491241455078,-0.703400850296021,-0.305239796638489,0.686588168144226,-0.659867703914642,-0.203880220651627,0.693744242191315,-0.690761744976044,-0.19421598315239,0.731247961521149,-0.653878152370453,0.0141965840011835,0.712010204792023,-0.702025592327118,-0.134883001446724,0.728792071342468,-0.671318590641022,0.0175371821969748,0.727827489376068,-0.685536026954651,0.0104460930451751,0.728439033031464,-0.685030937194824,
- -0.132833495736122,0.737739443778992,-0.661888062953949,0.0184133779257536,0.720576107501984,-0.693131327629089,0.0163586344569921,0.723885238170624,-0.68972647190094,-0.133573725819588,0.73453426361084,-0.665295124053955,0.0268342103809118,0.737333178520203,-0.674996078014374,0.081818200647831,0.718555748462677,-0.690639913082123,0.0184781011193991,0.73095828294754,-0.682171940803528,0.0789317861199379,0.704818487167358,-0.704982757568359,0.0107822837308049,0.71812903881073,-0.695826470851898,0.0129186818376184,0.712246835231781,-0.701810240745544,0.0845405235886574,0.731388449668884,-0.67670077085495,0.0315344966948032,0.746483683586121,-0.664656102657318,0.193199053406715,0.699674248695374,-0.687844514846802,0.150420844554901,0.691144526004791,-0.706889569759369,0.0109914587810636,0.711595118045807,-0.702503800392151,0.0549597069621086,0.717162787914276,-0.694735169410706,0.0762847065925598,0.692105531692505,-0.717753827571869,0.0546645298600197,0.720181822776794,-0.691628515720367,0.0108721842989326,0.71533203125,-0.698700129985809,0.362388104200363,0.77531361579895,-0.517265558242798,0.158570945262909,0.850079953670502,-0.502214431762695,0.0423017330467701,0.827561140060425,-0.559779524803162,0.194269672036171,0.724373757839203,-0.661469519138336,0.0871627852320671,0.743632256984711,-0.66288286447525,0.200733318924904,0.717632293701172,-0.666865825653076,0.0530179589986801,0.736589133739471,-0.67425924539566,0.0842540115118027,0.730043649673462,-0.67818695306778,0.194274693727493,0.7232586145401,-0.662687182426453,0.0500006936490536,0.764848709106445,-0.642266750335693,0.193817481398582,0.759563565254211,-0.620884835720062,0.371148824691772,0.728732585906982,-0.575497508049011,0.230259910225868,0.785906851291656,-0.573873519897461,0.227807119488716,0.757900297641754,-0.611302733421326,0.193590328097343,0.769037246704102,-0.609183669090271,0.229392394423485,0.74437290430069,-0.62712687253952,0.372498720884323,0.719944596290588,-0.585597515106201,0.194025278091431,0.7484011054039,-0.634231805801392,0.0946104824542999,0.699762284755707,-0.708083033561707,
- -0.0155029557645321,0.711984574794769,-0.702024042606354,0.132920250296593,0.687828361988068,-0.713599562644959,0.250444889068604,0.684909284114838,-0.684234380722046,0.0954842418432236,0.709809958934784,-0.697891533374786,0.137576282024384,0.71000349521637,-0.690628588199615,-0.00796966999769211,0.733087539672852,-0.680087566375732,0.0947962552309036,0.701891839504242,-0.705947279930115,-0.0303981136530638,0.722353160381317,-0.690855920314789,-0.204818233847618,0.695603549480438,-0.688611030578613,-0.026829669252038,0.678850948810577,-0.73378574848175,-0.0368556529283524,0.690874457359314,-0.722034752368927,0.0953257530927658,0.707981467247009,-0.699768006801605,0.250495225191116,0.682656943798065,-0.686463177204132,0.139196470379829,0.695407330989838,-0.705005705356598,0.335924357175827,0.664602279663086,-0.667426884174347,0.139349564909935,0.692463636398315,-0.707867085933685,0.250538945198059,0.680595219135284,-0.688491404056549,-0.0359702371060848,0.695294260978699,-0.717824518680573,-0.122738160192966,0.699876844882965,-0.703638970851898,-0.202883869409561,0.702197909355164,-0.682463347911835,-0.328391134738922,0.669288158416748,-0.666492879390717,-0.210393115878105,0.675914645195007,-0.706310331821442,-0.123558297753334,0.692152559757233,-0.711096465587616,-0.0336619280278683,0.70666116476059,-0.706750929355621,0.0943702161312103,0.697012960910797,-0.710821568965912,0.00558458035811782,0.704943299293518,-0.709241688251495,-0.122200906276703,0.704822421073914,-0.698779106140137,-0.0332825966179371,0.708507716655731,-0.704917788505554,0.00561704766005278,0.700770080089569,-0.713365077972412,0.0945406854152679,0.698963046073914,-0.708881318569183,0.138612329959869,0.7061488032341,-0.694363355636597,0.00555912125855684,0.70818167924881,-0.70600837469101,-0.328322887420654,0.661698758602142,-0.67406153678894,-0.124757789075375,0.680454134941101,-0.722092568874359,-0.161799445748329,0.695612549781799,-0.699960112571716,-0.161432579159737,0.686643481254578,-0.708844304084778,-0.12201539427042,0.70650976896286,-0.697105586528778,
- 0.0056182499974966,0.70061469078064,-0.713517785072327,-0.161764919757843,0.694745481014252,-0.700828671455383,-0.262878388166428,0.68270069360733,-0.681773245334625,-0.328301995992661,0.659956336021423,-0.675777673721313,0.00556041812524199,0.708017468452454,-0.706173062324524,0.138616964221001,0.70606654882431,-0.694446086883545,0.0665868893265724,0.707998812198639,-0.703067481517792,0.139454886317253,0.690404772758484,-0.709854662418365,0.336066275835037,0.662614285945892,-0.669329345226288,0.0669496655464172,0.696184873580933,-0.714733779430389,-0.0553886331617832,0.699600458145142,-0.712384223937988,-0.161517277359962,0.68866890668869,-0.706857323646545,0.00560538982972503,0.702274203300476,-0.711884558200836,-0.261203527450562,0.666617035865784,-0.698136448860168,-0.161353051662445,0.684765458106995,-0.710676789283752,-0.0552147813141346,0.694174289703369,-0.717686116695404,0.217138171195984,0.682650029659271,-0.69773918390274,0.0670241937041283,0.693655908107758,-0.717181444168091,0.336331784725189,0.658780097961426,-0.672970831394196,0.336962133646011,0.648985922336578,-0.682109832763672,0.307821691036224,0.652449011802673,-0.692499876022339,0.217153131961823,0.678277015686035,-0.701986312866211,0.00556337786838412,0.706548929214478,-0.707642376422882,0.00556630548089743,0.707270920276642,-0.706920742988586,0.0665944293141365,0.707761287689209,-0.703305900096893,0.0666291564702988,0.706662535667419,-0.704406559467316,0.217092305421829,0.690276801586151,-0.690209329128265,0.00555639108642936,0.705661594867706,-0.708527266979218,0.00550937652587891,0.699690997600555,-0.71442437171936,-0.0552397184073925,0.694948554039001,-0.716934502124786,0.00563338492065668,0.698651432991028,-0.715440034866333,0.306493788957596,0.667847812175751,-0.678263127803802,0.0599008053541183,0.680733561515808,-0.730077922344208,0.217136338353157,0.683069705963135,-0.697328984737396,0.217095643281937,0.689837872982025,-0.690646946430206,0.0550126917660236,0.71243017911911,-0.699583351612091,0.00555501459166408,0.705486834049225,-0.708701252937317,
- 0.035458892583847,0.674856543540955,-0.737096607685089,0.0593471564352512,0.68442976474762,-0.72665935754776,0.306246131658554,0.670526921749115,-0.67572695016861,-0.122941322624683,0.741669476032257,-0.65940272808075,0.0469877533614635,0.760127365589142,-0.648072957992554,0.0148235764354467,0.762280404567719,-0.647077143192291,-0.15036053955555,0.687922954559326,-0.71003782749176,-0.261432349681854,0.668758690357208,-0.695999264717102,-0.0552274137735367,0.694566667079926,-0.717305421829224,-0.14891816675663,0.663903892040253,-0.732840359210968,-0.0546663887798786,0.677420735359192,-0.733561635017395,0.00538118369877338,0.683410465717316,-0.730014503002167,-0.259737819433212,0.653261780738831,-0.711185872554779,-0.14954037964344,0.674022793769836,-0.723416149616241,-0.209204211831093,0.664694964885712,-0.71722674369812,0.056973360478878,0.699967384338379,-0.711898684501648,-0.086658775806427,0.686796307563782,-0.721665501594543,0.00550452619791031,0.699074864387512,-0.715027332305908,-0.0817618668079376,0.655727982521057,-0.750557005405426,-0.148608148097992,0.658982455730438,-0.737331509590149,0.00532640516757965,0.676453530788422,-0.73646605014801,0.0518846102058887,0.731642186641693,-0.6797114610672,-0.115821436047554,0.712818205356598,-0.691719353199005,-0.0916828513145447,0.718398153781891,-0.689563870429993,-0.0851581320166588,0.677302539348602,-0.73075944185257,-0.208303809165955,0.655913889408112,-0.725524961948395,-0.149078071117401,0.666472613811493,-0.730472445487976,-0.209695756435394,0.669576823711395,-0.712526977062225,-0.0873538926243782,0.691186010837555,-0.71737802028656,-0.110302828252316,0.690145134925842,-0.715215384960175,0.0974934250116348,0.473608434200287,-0.875322818756104,-0.0145864896476269,0.487098604440689,-0.873225152492523,0.135213792324066,0.460051774978638,-0.877536118030548,0.249387159943581,0.466613858938217,-0.848573863506317,0.0984199345111847,0.486453622579575,-0.868145346641541,0.140182748436928,0.488628834486008,-0.861156582832336,-0.00746787618845701,0.512714982032776,-0.858526527881622,
- 0.0977021232247353,0.476485520601273,-0.873736679553986,-0.0269421767443419,0.499644607305527,-0.86581152677536,-0.200677916407585,0.475188225507736,-0.856693983078003,-0.0253696888685226,0.447342962026596,-0.894002735614777,-0.033149927854538,0.461517572402954,-0.886511504650116,0.0982559099793434,0.484165728092194,-0.869441986083984,0.249449208378792,0.463784456253052,-0.850105345249176,0.139408767223358,0.470537811517715,-0.871297538280487,0.33767157793045,0.451542615890503,-0.825885832309723,0.139571905136108,0.4668308198452,-0.873263239860535,0.249506145715714,0.461073011159897,-0.851562321186066,-0.0322979465126991,0.466826200485229,-0.883759081363678,-0.117031037807465,0.475265145301819,-0.872024536132813,-0.198673114180565,0.483376353979111,-0.852570414543152,-0.328003227710724,0.456389665603638,-0.827116906642914,-0.206486850976944,0.450799107551575,-0.868414282798767,-0.117961756885052,0.465027213096619,-0.877402245998383,-0.0300731379538774,0.480574429035187,-0.876438140869141,0.0972406342625618,0.470136374235153,-0.877220630645752,0.00691324425861239,0.478643774986267,-0.877981960773468,-0.116405047476292,0.482020348310471,-0.868392884731293,-0.0297180842608213,0.482753336429596,-0.8752521276474,0.00693477829918265,0.47359237074852,-0.880716860294342,0.0974138304591179,0.472513645887375,-0.875923156738281,0.138780638575554,0.484248608350754,-0.863853693008423,0.00689606741070747,0.482624024152756,-0.875800490379334,-0.327907204627991,0.447159469127655,-0.832181036472321,-0.119246996939182,0.450486838817596,-0.884783446788788,-0.160081297159195,0.472719520330429,-0.866550803184509,-0.159682437777519,0.461144953966141,-0.872838377952576,-0.11619994789362,0.484211385250092,-0.867200613021851,0.00693541439250112,0.473441958427429,-0.880797684192657,-0.160047605633736,0.471713483333588,-0.867105185985565,-0.264553934335709,0.464425712823868,-0.845174491405487,-0.327881693840027,0.44516059756279,-0.833262026309967,0.00689697405323386,0.482415020465851,-0.87591564655304,0.138785228133202,0.484151691198349,-0.863907277584076,
- 0.069460041821003,0.48310849070549,-0.872800946235657,0.139681547880173,0.464302718639374,-0.874592483043671,0.337820768356323,0.449113100767136,-0.8271484375,0.0697778835892677,0.469051748514175,-0.880409836769104,-0.0569504350423813,0.472578912973404,-0.87944632768631,-0.159771278500557,0.463661134243011,-0.871488094329834,0.0069268518127501,0.475459665060043,-0.879710257053375,-0.26293483376503,0.444684535264969,-0.856224834918976,-0.159612119197845,0.459177792072296,-0.873887836933136,-0.0567766949534416,0.465950816869736,-0.882987141609192,0.218053728342056,0.459655612707138,-0.860911905765533,0.0698429346084595,0.466058313846588,-0.881992995738983,0.338111519813538,0.444245606660843,-0.829654395580292,0.338800221681595,0.431900262832642,-0.835868775844574,0.305619537830353,0.433844178915024,-0.847570598125458,0.21811281144619,0.453406244516373,-0.864204585552216,0.00378418527543545,0.480591416358948,-0.876936495304108,0.00690121343359351,0.481436133384705,-0.876453995704651,0.0694683268666267,0.482753276824951,-0.872996807098389,0.0694999173283577,0.481393843889236,-0.873744666576386,0.217910677194595,0.471527487039566,-0.854503810405731,0.003775515826419,0.479490429162979,-0.877538979053497,0.00371935358271003,0.472358047962189,-0.881399035453796,-0.0567998103797436,0.466827034950256,-0.882522702217102,0.0069452254101634,0.471116274595261,-0.882043778896332,0.30442750453949,0.451774001121521,-0.83858460187912,0.059838991612196,0.449586719274521,-0.891230225563049,0.218044117093086,0.460573107004166,-0.860423862934113,0.217920899391174,0.47077938914299,-0.854913592338562,0.0549479685723782,0.488553643226624,-0.870802104473114,0.00377401476725936,0.479299813508987,-0.87764310836792,0.0365481935441494,0.442489951848984,-0.896028399467468,0.0592854879796505,0.45408833026886,-0.888981997966766,0.304202735424042,0.454942464828491,-0.836951613426209,-0.120100975036621,0.528467655181885,-0.840415179729462,0.0469203405082226,0.548748850822449,-0.834669470787048,0.016222981736064,0.551107704639435,-0.834276437759399,
- -0.149688854813576,0.462745666503906,-0.873761832714081,-0.263154298067093,0.447279840707779,-0.854804396629334,-0.0567896962165833,0.466443538665771,-0.882726073265076,-0.147989347577095,0.431387424468994,-0.889946222305298,-0.0562207028269768,0.4453444480896,-0.893592476844788,0.0035624373704195,0.452429741621017,-0.891793072223663,-0.26149582862854,0.42821016907692,-0.865017890930176,-0.148765668272972,0.445357173681259,-0.882907688617706,-0.208176717162132,0.437971532344818,-0.874553263187408,0.0569097511470318,0.473141551017761,-0.8791463971138,-0.0864470228552818,0.457641810178757,-0.884924232959747,0.00371229741722345,0.471461772918701,-0.881878674030304,-0.0814764723181725,0.419666260480881,-0.90401428937912,-0.147663608193398,0.425681918859482,-0.892743170261383,0.00349524198099971,0.443895876407623,-0.896071553230286,0.051818486303091,0.512557208538055,-0.857088088989258,-0.113071769475937,0.491767734289169,-0.863353490829468,-0.0915553122758865,0.497076719999313,-0.862863004207611,-0.0849598199129105,0.446240276098251,-0.890871167182922,-0.207177177071571,0.426932811737061,-0.880230665206909,-0.148244306445122,0.435915350914001,-0.887694478034973,-0.208688259124756,0.443735986948013,-0.871520400047302,-0.0871867090463638,0.463325530290604,-0.881888866424561,-0.107583723962307,0.463241100311279,-0.879678010940552,0.0945057049393654,0.114386260509491,-0.988930940628052,-0.0171377472579479,0.128058925271034,-0.991618454456329,0.128567948937416,0.101501308381557,-0.98649275302887,0.251830279827118,0.117215447127819,-0.960646688938141,0.0953429937362671,0.1282949000597,-0.987142384052277,0.133611351251602,0.134353503584862,-0.981884479522705,-0.00956141110509634,0.158268213272095,-0.98734986782074,0.0946720764040947,0.117127500474453,-0.988594114780426,-0.0280943177640438,0.141043767333031,-0.989604651927948,-0.200672298669815,0.122274473309517,-0.971997737884521,-0.0285287611186504,0.0822723582386971,-0.996201574802399,-0.0339789874851704,0.0991529002785683,-0.994491994380951,0.0951856374740601,0.125658959150314,-0.987496614456177,
- 0.251874834299088,0.114055566489697,-0.961015403270721,0.137897044420242,0.112526051700115,-0.984033703804016,0.342971414327621,0.111832983791828,-0.93266499042511,0.138059958815575,0.108354695141315,-0.984478890895844,0.251911878585815,0.111275613307953,-0.96133154630661,-0.0331707336008549,0.104943312704563,-0.993924856185913,-0.117810100317001,0.11678172647953,-0.986145436763763,-0.198691561818123,0.131353214383125,-0.971219837665558,-0.333280086517334,0.115623593330383,-0.935711264610291,-0.206411227583885,0.095442533493042,-0.973799347877502,-0.118629671633244,0.106092102825642,-0.987254619598389,-0.0310579631477594,0.120023936033249,-0.992285072803497,0.0942718684673309,0.110552400350571,-0.989389181137085,0.00689243199303746,0.11768788844347,-0.993026733398438,-0.117275133728981,0.123657822608948,-0.985370635986328,-0.0307384599000216,0.122297547757626,-0.992017388343811,0.0069449688307941,0.11170607060194,-0.993717133998871,0.0944419428706169,0.113338567316532,-0.989057660102844,0.137270390987396,0.128008127212524,-0.982227444648743,0.00685143889859319,0.122332833707333,-0.992465496063232,-0.333198100328445,0.105085290968418,-0.936982452869415,-0.119827941060066,0.090104915201664,-0.988697409629822,-0.162349954247475,0.115979000926018,-0.979893565177917,-0.161982029676437,0.103431507945061,-0.981358230113983,-0.117091439664364,0.126000925898552,-0.985095620155334,0.00694779539480805,0.111383140087128,-0.993753254413605,-0.16231544315815,0.114764228463173,-0.980042278766632,-0.263599753379822,0.116762205958366,-0.957539439201355,-0.333174794912338,0.102741844952106,-0.93725061416626,0.00685338396579027,0.122112855315208,-0.99249255657196,0.137274995446205,0.127897873520851,-0.982241272926331,0.0681981444358826,0.124082639813423,-0.989925503730774,0.138169303536415,0.105518318712711,-0.984771609306335,0.343116968870163,0.109104141592979,-0.932934641838074,0.0686078444123268,0.106934174895287,-0.991896212100983,-0.0581831485033035,0.111139602959156,-0.992100179195404,-0.162066951394081,0.106252148747444,-0.981042802333832,
- 0.00692701851949096,0.113753467798233,-0.993484854698181,-0.261969149112701,0.0942675173282623,-0.960461258888245,-0.161903217434883,0.100851759314537,-0.981639564037323,-0.0580094382166862,0.104309424757957,-0.992851674556732,0.220643028616905,0.106410808861256,-0.969532549381256,0.0686916708946228,0.103312455117702,-0.992274165153503,0.343395203351974,0.103744499385357,-0.933443546295166,0.344051867723465,0.0902289301156998,-0.934605300426483,0.310070306062698,0.0873220339417458,-0.946694910526276,0.220694154500961,0.0995620414614677,-0.970248162746429,0.0087599866092205,0.119753152132034,-0.992765069007874,0.00686135608702898,0.121210977435112,-0.992603063583374,0.0682040452957153,0.123841650784016,-0.989955306053162,0.0682427287101746,0.122258707880974,-0.99014937877655,0.220517352223396,0.119385458528996,-0.968049287796021,0.00875132717192173,0.118503369390965,-0.992915093898773,0.00869520008563995,0.110446490347385,-0.993844032287598,-0.0580136366188526,0.104472808539867,-0.992834270000458,0.00697342958301306,0.108451560139656,-0.994077265262604,0.308847874403,0.107509337365627,-0.945015728473663,0.0543349869549274,0.0855828672647476,-0.994848370552063,0.220634877681732,0.107387498021126,-0.96942675113678,0.22052626311779,0.118576787412167,-0.968146562576294,0.0496066175401211,0.128700241446495,-0.990442037582397,0.00874986406415701,0.118292331695557,-0.992940366268158,0.0358975045382977,0.0784443616867065,-0.996271967887878,0.0537968315184116,0.0905463919043541,-0.994438171386719,0.30861759185791,0.111088126897812,-0.944676995277405,-0.127187043428421,0.176457136869431,-0.976056516170502,0.0417657345533371,0.197864070534706,-0.979339301586151,0.0165417902171612,0.200505003333092,-0.979553043842316,-0.155117139220238,0.103182822465897,-0.982492744922638,-0.262190461158752,0.097216784954071,-0.960106790065765,-0.0580262169241905,0.104964829981327,-0.992781639099121,-0.153790190815926,0.0712372809648514,-0.985532283782959,-0.0573784783482552,0.0803117081522942,-0.995116949081421,0.00853685382753611,0.0881061255931854,-0.996074497699738,
- -0.260524392127991,0.0757036879658699,-0.962494671344757,-0.154344409704208,0.0841288194060326,-0.984428822994232,-0.212023451924324,0.0807416886091232,-0.973923444747925,0.051514558494091,0.1114347204566,-0.992435693740845,-0.0823391079902649,0.0964952409267426,-0.991921842098236,0.00868806708604097,0.109427735209465,-0.993956804275513,-0.0776008367538452,0.0545520707964897,-0.995491027832031,-0.153489142656326,0.0644693747162819,-0.986045122146606,0.00846819579601288,0.0785898566246033,-0.996871173381805,0.0465481504797935,0.156014814972878,-0.986657321453094,-0.12001309543848,0.133783400058746,-0.98371696472168,-0.0872181951999664,0.140930742025375,-0.9861701130867,-0.0808203220367432,0.0829270854592323,-0.993272960186005,-0.211085572838783,0.0685916990041733,-0.975058078765869,-0.153909996151924,0.0739746168255806,-0.98531186580658,-0.212523952126503,0.0873946100473404,-0.973239839076996,-0.0829621031880379,0.102096445858479,-0.9913090467453,-0.114480413496494,0.10160805284977,-0.988215565681458,0.0947505682706833,-0.144358441233635,-0.984978675842285,-0.0161115825176239,-0.132130920886993,-0.991101324558258,0.129956275224686,-0.155667081475258,-0.979223728179932,0.249354630708694,-0.134234637022018,-0.959063768386841,0.0956187173724175,-0.130213424563408,-0.986864507198334,0.134666875004768,-0.123795539140701,-0.983127415180206,-0.00880205724388361,-0.102402068674564,-0.994704127311707,0.0949314385652542,-0.141439750790596,-0.985384583473206,-0.032623179256916,-0.118087828159332,-0.992467224597931,-0.201230645179749,-0.132225289940834,-0.970578551292419,-0.0271465983241796,-0.176891431212425,-0.983855903148651,-0.0384714305400848,-0.159698441624641,-0.986415922641754,0.0954589620232582,-0.132842421531677,-0.986529529094696,0.249418050050735,-0.137421160936356,-0.958595871925354,0.140175551176071,-0.144207343459129,-0.979568839073181,0.342719405889511,-0.132377311587334,-0.93006443977356,0.140311300754547,-0.148114040493965,-0.978966295719147,0.249476656317711,-0.140487194061279,-0.958136081695557,-0.0376694202423096,-0.153979867696762,-0.987355768680573,
- -0.122566193342209,-0.140783324837685,-0.982424318790436,-0.199308842420578,-0.123382173478603,-0.972138285636902,-0.332371950149536,-0.12939789891243,-0.934229671955109,-0.206789702177048,-0.158193752169609,-0.965511679649353,-0.123395763337612,-0.151471465826035,-0.980729281902313,-0.0355710797011852,-0.139036625623703,-0.989648163318634,0.0945103541016579,-0.148212388157845,-0.984429240226746,0.00891302898526192,-0.14214962720871,-0.989805042743683,-0.122021667659283,-0.133857756853104,-0.983459711074829,-0.0352564230561256,-0.136798024177551,-0.989971458911896,0.00895228330045938,-0.147992014884949,-0.988948047161102,0.0946817100048065,-0.145465716719627,-0.984822392463684,0.139666110277176,-0.130053579807281,-0.981620848178864,0.00888207461684942,-0.137571379542351,-0.99045205116272,-0.332289457321167,-0.1399135440588,-0.932742178440094,-0.124600291252136,-0.167302638292313,-0.978000402450562,-0.162964016199112,-0.139780580997467,-0.976680159568787,-0.162517070770264,-0.153596132993698,-0.974677622318268,-0.121835298836231,-0.131503567099571,-0.983800292015076,0.00895399879664183,-0.148248255252838,-0.988909661769867,-0.16293166577816,-0.140815109014511,-0.976536929607391,-0.26193755865097,-0.134303882718086,-0.955694079399109,-0.332266062498093,-0.142246812582016,-0.932397484779358,0.00888361409306526,-0.137798473238945,-0.990420460700989,0.139670819044113,-0.130180403590202,-0.981603443622589,0.0665356069803238,-0.135395422577858,-0.988555073738098,0.140408739447594,-0.150956109166145,-0.978518187999725,0.342860132455826,-0.135096982121468,-0.929621279239655,0.0669025331735611,-0.151896849274635,-0.986129522323608,-0.0598482005298138,-0.148211777210236,-0.987143099308014,-0.162612333893776,-0.150734454393387,-0.97510838508606,0.00893843546509743,-0.145926222205162,-0.98925518989563,-0.260404288768768,-0.156243965029716,-0.952773571014404,-0.162461504340172,-0.15524610877037,-0.974425435066223,-0.0596743039786816,-0.15507610142231,-0.98609858751297,0.216100767254829,-0.146961122751236,-0.965247690677643,0.0669777989387512,-0.155383825302124,-0.98558098077774,
- 0.343121320009232,-0.140281602740288,-0.928756594657898,0.343737691640854,-0.153335556387901,-0.926462411880493,0.305533915758133,-0.15998087823391,-0.938645362854004,0.216140955686569,-0.153539851307869,-0.964213967323303,0.00669175945222378,-0.140241384506226,-0.990094721317291,0.00889034196734428,-0.138791620731354,-0.990281701087952,0.0665429309010506,-0.135716944932938,-0.988510489463806,0.066578321158886,-0.137275740504265,-0.988292932510376,0.216000527143478,-0.13471232354641,-0.96705561876297,0.00668076239526272,-0.141464248299599,-0.989920914173126,0.00661215418949723,-0.149062126874924,-0.988805830478668,-0.0596807152032852,-0.154825121164322,-0.986137628555298,0.00897262990474701,-0.151036620140076,-0.988487541675568,0.304325520992279,-0.140129283070564,-0.942204833030701,0.0596574954688549,-0.173444554209709,-0.983035087585449,0.216094747185707,-0.146092370152473,-0.965380907058716,0.216007560491562,-0.135460391640663,-0.966949462890625,0.0547613054513931,-0.12999452650547,-0.990001320838928,0.00667947484180331,-0.14160718023777,-0.989900410175323,0.0368004180490971,-0.180861636996269,-0.98281991481781,0.0591030903160572,-0.168489277362823,-0.983929991722107,0.304098010063171,-0.136599108576775,-0.942796528339386,-0.123292818665504,-0.0803473219275475,-0.989112317562103,0.0467286258935928,-0.0601556003093719,-0.997094631195068,0.0173334535211325,-0.0584270171821117,-0.998141288757324,-0.153730913996696,-0.153301134705544,-0.976148426532745,-0.260608494281769,-0.15342952311039,-0.953175127506256,-0.0596906170248985,-0.154437258839607,-0.986197829246521,-0.15236222743988,-0.185315921902657,-0.970795452594757,-0.0590508952736855,-0.178751304745674,-0.982120752334595,0.00641018571332097,-0.171133205294609,-0.985227048397064,-0.25901472568512,-0.174647018313408,-0.94995254278183,-0.152940154075623,-0.17227540910244,-0.973103523254395,-0.210309356451035,-0.172842085361481,-0.962234675884247,0.0567271932959557,-0.147356629371643,-0.987455368041992,-0.0859319940209389,-0.162573948502541,-0.982947289943695,0.00660106865689158,-0.150284945964813,-0.988620698451996,
- -0.0812316760420799,-0.203969359397888,-0.975601315498352,-0.152058035135269,-0.191935360431671,-0.969556152820587,0.00632189167663455,-0.180647239089012,-0.983527660369873,0.0516311153769493,-0.102573178708553,-0.993384599685669,-0.116184532642365,-0.123521439731121,-0.985517024993896,-0.0907625257968903,-0.118226006627083,-0.988830029964447,-0.0844072550535202,-0.176183149218559,-0.980731844902039,-0.209362983703613,-0.184901803731918,-0.9601970911026,-0.152495726943016,-0.182358995079994,-0.971334278583527,-0.210811704397202,-0.166260048747063,-0.963283956050873,-0.0865321755409241,-0.157166913151741,-0.983773827552795,-0.110673978924751,-0.155933558940887,-0.981547772884369,0.0929220989346504,-0.482803761959076,-0.87078469991684,-0.0111927716061473,-0.474723696708679,-0.880063831806183,0.134764209389687,-0.491800904273987,-0.860215365886688,0.250639349222183,-0.464188069105148,-0.849534928798676,0.0937586352229118,-0.470449984073639,-0.877431571483612,0.139495089650154,-0.463295191526413,-0.875156402587891,-0.00393277080729604,-0.44829997420311,-0.893874645233154,0.0930861979722977,-0.480408728122711,-0.872090816497803,-0.0305578466504812,-0.460352271795273,-0.887210249900818,-0.20268702507019,-0.465930134057999,-0.861293971538544,-0.0221952423453331,-0.513987183570862,-0.857510685920715,-0.0368617400527,-0.498600959777832,-0.866047501564026,0.0936003923416138,-0.472815066576004,-0.876176297664642,0.250686168670654,-0.466991096735001,-0.847983360290527,0.138956502079964,-0.481384366750717,-0.865424990653992,0.338440358638763,-0.453138023614883,-0.824696362018585,0.139120265841484,-0.48504364490509,-0.86335289478302,0.250725507736206,-0.469468355178833,-0.846602737903595,-0.0359983928501606,-0.493394464254379,-0.869060456752777,-0.116115406155586,-0.479494392871857,-0.869828939437866,-0.200699731707573,-0.45808544754982,-0.865954577922821,-0.327410697937012,-0.451792359352112,-0.829870998859406,-0.208445951342583,-0.488833039999008,-0.847108364105225,-0.117000997066498,-0.48925393819809,-0.86425769329071,-0.0337427966296673,-0.479743957519531,-0.876759588718414,
- 0.0926879718899727,-0.486196607351303,-0.868919909000397,0.00379994953982532,-0.482593566179276,-0.875836312770844,-0.115526981651783,-0.473064810037613,-0.873420417308807,-0.0333736874163151,-0.477503567934036,-0.877995729446411,0.00384060456417501,-0.487756818532944,-0.87297111749649,0.0928590595722198,-0.483720153570175,-0.870282709598541,0.138326421380043,-0.467712640762329,-0.872989654541016,0.00376786710694432,-0.478519082069397,-0.87806910276413,-0.327313929796219,-0.461023330688477,-0.824817001819611,-0.118252277374268,-0.503222763538361,-0.856027603149414,-0.161210104823112,-0.475120604038239,-0.865027010440826,-0.160662904381752,-0.488692790269852,-0.857535302639008,-0.115330688655376,-0.470929533243179,-0.874599456787109,0.00384244555607438,-0.487990647554398,-0.872840404510498,-0.161181539297104,-0.475856691598892,-0.864627599716187,-0.259589463472366,-0.463134706020355,-0.847419381141663,-0.327288269996643,-0.463009238243103,-0.823714077472687,0.00376945780590177,-0.478721082210541,-0.877959072589874,0.138331085443497,-0.467811584472656,-0.872935771942139,0.0676440522074699,-0.475400686264038,-0.877165019512177,0.139229089021683,-0.487500965595245,-0.861950278282166,0.338586419820786,-0.455491155385971,-0.823338985443115,0.0680916011333466,-0.490907847881317,-0.868546485900879,-0.0587227828800678,-0.487176597118378,-0.871327042579651,-0.160770103335381,-0.486116886138916,-0.858978092670441,0.00382628361694515,-0.48593807220459,-0.87398499250412,-0.258017301559448,-0.482854455709457,-0.83682656288147,-0.160639047622681,-0.489260792732239,-0.857215821743011,-0.0585479214787483,-0.493527203798294,-0.867757499217987,0.218621492385864,-0.477691501379013,-0.85089099407196,0.0681831538677216,-0.494154959917068,-0.866696119308472,0.338870644569397,-0.460180103778839,-0.820610105991364,0.339542776346207,-0.471941471099854,-0.813622713088989,0.310580283403397,-0.48070901632309,-0.820035815238953,0.218638926744461,-0.483003407716751,-0.847882509231567,0.00690553290769458,-0.480435997247696,-0.877002596855164,0.00377630977891386,-0.479591250419617,-0.877483904361725,
- 0.0676487237215042,-0.475559592247009,-0.877078533172607,0.0676902309060097,-0.47697389125824,-0.876307010650635,0.218570053577423,-0.468153238296509,-0.8561891913414,0.00690064206719399,-0.481568217277527,-0.876381456851959,0.00686719967052341,-0.489218026399612,-0.872134506702423,-0.0585648790001869,-0.492918103933334,-0.868102610111237,0.00386182451620698,-0.490451872348785,-0.871459722518921,0.309233278036118,-0.462635576725006,-0.830868899822235,0.0579771362245083,-0.510201036930084,-0.858098804950714,0.218619212508202,-0.477138876914978,-0.851201593875885,0.218573823571205,-0.468724191188812,-0.855875670909882,0.0528526827692986,-0.471241116523743,-0.880419433116913,0.00689942995086312,-0.481848150491714,-0.876227557659149,0.0373603627085686,-0.516030371189117,-0.855755150318146,0.0573991201817989,-0.505813717842102,-0.86073100566864,0.308982402086258,-0.45943945646286,-0.832733631134033,-0.125210285186768,-0.424704521894455,-0.896631717681885,0.0446101762354374,-0.408290266990662,-0.911761462688446,0.0180513318628073,-0.407134473323822,-0.913189828395844,-0.15019690990448,-0.488352239131927,-0.859623730182648,-0.258227735757828,-0.480320423841476,-0.838218808174133,-0.0585624128580093,-0.493005961179733,-0.868052780628204,-0.148847192525864,-0.516254305839539,-0.843401491641998,-0.0579616762697697,-0.513870298862457,-0.855907678604126,0.00677826907485724,-0.50883024930954,-0.860840320587158,-0.256611347198486,-0.499063491821289,-0.827699363231659,-0.149414211511612,-0.50498503446579,-0.850097358226776,-0.209748521447182,-0.501534342765808,-0.839326560497284,0.0548904240131378,-0.486750483512878,-0.871814787387848,-0.081818200647831,-0.499098658561707,-0.862673938274384,0.006864451803267,-0.489839881658554,-0.871785402297974,-0.0770729184150696,-0.53529566526413,-0.841141045093536,-0.148544609546661,-0.522034168243408,-0.839889764785767,0.00674040010198951,-0.516880869865417,-0.856030941009521,0.0496374517679214,-0.446725755929947,-0.893292903900146,-0.117962345480919,-0.463893324136734,-0.878002226352692,-0.0867047682404518,-0.459608882665634,-0.883878946304321,
- -0.0803000703454018,-0.510899722576141,-0.855881750583649,-0.208775490522385,-0.512181997299194,-0.833116114139557,-0.148974239826202,-0.513780772686005,-0.844888150691986,-0.210255175828934,-0.495814263820648,-0.842591822147369,-0.0824444517493248,-0.494167774915695,-0.865448534488678,-0.112408339977264,-0.492535173892975,-0.863002598285675
- }
- TangentsW: *1005 {
- 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
- }
- }
- LayerElementTangent: 1 {
- Version: 102
- Name: "LightMapUV"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *3015 {
- a: -0.177140280604362,0.973294496536255,0.146011456847191,-0.114726886153221,0.983227014541626,0.141782775521278,-0.19164676964283,0.971221029758453,0.141426503658295,-0.149710834026337,0.987486660480499,0.0495675653219223,-0.12130593508482,0.990624845027924,0.0628277212381363,-0.175651669502258,0.981890857219696,0.0709719732403755,-0.144171819090843,0.864258110523224,-0.481946498155594,-0.131647348403931,0.838207364082336,-0.529223620891571,0.0287387184798718,0.871006667613983,-0.490429878234863,-0.220876038074493,0.953140079975128,-0.206731244921684,-0.168658703565598,0.95998477935791,-0.223569944500923,-0.138178437948227,0.966507911682129,-0.216261819005013,-0.0644685253500938,0.976062595844269,-0.207715809345245,-0.137022882699966,0.972172558307648,-0.190013691782951,-0.160287201404572,0.967517554759979,-0.195493683218956,-0.213069558143616,0.900769352912903,-0.378438860177994,-0.147315382957459,0.904417872428894,-0.400408178567886,-0.0936325788497925,0.910337388515472,-0.403136193752289,-0.23925019800663,0.957621037960052,-0.160378620028496,-0.134388849139214,0.981466233730316,-0.136615097522736,-0.0404721200466156,0.990214824676514,-0.133554577827454,-0.0214168187230825,0.997611820697784,0.0656672418117523,-0.0499393753707409,0.996941864490509,0.0601079538464546,-0.12063280493021,0.990128338336945,0.0713690966367722,-0.0198084823787212,0.884810566902161,-0.46552973985672,0.012321000918746,0.905837059020996,-0.423447012901306,-0.161199435591698,0.88180011510849,-0.443219482898712,0.0251631867140532,0.931012570858002,-0.364118665456772,-0.171503901481628,0.89538449048996,-0.410941690206528,0.00426572188735008,0.920993208885193,-0.389555275440216,-0.0552366524934769,0.990942180156708,-0.12240307033062,0.0958960503339767,0.991389334201813,-0.0891690030694008,-0.0448137372732162,0.99043482542038,-0.130502134561539,0.0859701782464981,0.994203507900238,-0.0645642951130867,-0.0603736154735088,0.993364036083221,-0.0978924632072449,0.0510364770889282,0.995976090431213,-0.0736673250794411,-0.0671478733420372,0.995611011981964,-0.0651909410953522,
- -0.0445920079946518,0.997561097145081,-0.0536971464753151,0.046680174767971,0.997918367385864,-0.0444963276386261,0.0661898776888847,0.981974482536316,-0.177045404911041,-0.0126316072419286,0.971370875835419,-0.237232550978661,0.130504190921783,0.975735485553741,-0.1758092045784,-0.0403493121266365,0.997799038887024,-0.0526233725249767,0.0162413623183966,0.997588634490967,-0.0674767047166824,-0.0436749458312988,0.996448278427124,-0.071995697915554,0.0482775084674358,0.997309505939484,-0.055165309458971,-0.0441626310348511,0.99707967042923,-0.0623043477535248,0.0161834713071585,0.998123645782471,-0.0590537004172802,-0.0160699244588614,0.998410582542419,-0.0540210045874119,0.0161850787699223,0.998109877109528,-0.0592852458357811,-0.0399259552359581,0.997953653335571,-0.0499464832246304,-0.00948911905288696,0.999902009963989,-0.0103014493361115,-0.033061545342207,0.999430537223816,-0.00674855289980769,-0.0201939214020967,0.999734461307526,-0.011099886149168,0.0163232889026403,0.996686518192291,-0.0796840935945511,-0.0222782045602798,0.996534943580627,-0.0801363587379456,0.0507475137710571,0.996132612228394,-0.0717250630259514,0.0163347404450178,0.9965460896492,-0.0814194232225418,-0.019652022048831,0.996770441532135,-0.0778622925281525,-0.0222460143268108,0.996387362480164,-0.0819591879844666,-0.0353551357984543,0.99774444103241,-0.0570620708167553,0.0203924812376499,0.997197151184082,-0.0719864070415497,-0.0178741291165352,0.997657835483551,-0.0660253614187241,-0.0224716328084469,0.997357487678528,-0.0690875574946404,-0.0178741291165352,0.997657835483551,-0.0660253614187241,0.0203924812376499,0.997197151184082,-0.0719864070415497,0.0417426377534866,0.997237384319305,0.061444029211998,0.00772870052605867,0.997284233570099,0.0732435286045074,0.081362672150135,0.995454370975494,0.0495065189898014,0.0430230163037777,0.996419787406921,-0.0727782025933266,0.146584466099739,0.9846470952034,-0.0947792530059814,0.0196921657770872,0.996890306472778,-0.0763019919395447,0.147650495171547,0.985188543796539,-0.0871943309903145,-0.0226284191012383,0.997941434383392,-0.0600073859095573,
- 0.0204289425164461,0.997212588787079,-0.0717616379261017,0.146701008081436,0.984708905220032,-0.0939532741904259,0.0432468578219414,0.996461272239685,-0.0720741897821426,0.179865673184395,0.978118717670441,-0.104556530714035,0.184344634413719,0.979345262050629,-0.0830660685896873,0.325458377599716,0.938477456569672,-0.115486435592175,0.147229671478271,0.984981238842011,-0.0901964157819748,0.198381125926971,0.979377269744873,-0.0382760427892208,-0.0229257550090551,0.998834908008575,-0.0424667149782181,0.148643791675568,0.985644280910492,-0.0800660252571106,0.325403720140457,0.940666377544403,-0.0962258204817772,0.198970481753349,0.974868953227997,-0.100206308066845,0.149272173643112,0.98590761423111,-0.0755250751972198,0.325408458709717,0.940581560134888,-0.0970341041684151,0.143758505582809,0.982968091964722,-0.114486783742905,0.198973193764687,0.97478324174881,-0.10103216022253,0.138480842113495,0.98935866355896,-0.0446371026337147,-0.0225807502865791,0.997771918773651,-0.0627800896763802,0.198668479919434,0.978262603282928,-0.0594418384134769,0.145093560218811,0.980340301990509,-0.13371904194355,0.325457334518433,0.938270688056946,-0.117156513035297,0.287502437829971,0.950101435184479,-0.121036447584629,0.0489835068583488,0.997002363204956,-0.0598908923566341,-0.0224475227296352,0.997261106967926,-0.0704739540815353,-0.0676125884056091,0.995057821273804,-0.0727222487330437,0.140771597623825,0.987281918525696,-0.0738779604434967,-0.0667655095458031,0.993822038173676,-0.0886573418974876,-0.02218372002244,0.996093511581421,-0.085474006831646,0.000833586498629302,0.963275671005249,-0.268513202667236,0.070056177675724,0.976475954055786,-0.203928530216217,-0.0602353885769844,0.97763329744339,-0.201506897807121,0.0155296567827463,0.987531960010529,-0.15665078163147,0.14401051402092,0.982508420944214,-0.118060924112797,0.283656656742096,0.95385080575943,-0.0985278412699699,-0.0669179856777191,0.994061291217804,-0.0858142673969269,0.140541613101959,0.987534821033478,-0.0708736926317215,0.000482876173919067,0.996620357036591,-0.0821440070867538,
- -0.077636644244194,0.985250353813171,0.152494207024574,-0.057201724499464,0.976478159427643,0.207890272140503,-0.192024052143097,0.957987368106842,0.213042229413986,0.296034097671509,0.939133286476135,-0.174334347248077,-0.0153554286807776,0.963539063930511,-0.267126739025116,0.0322574563324451,0.97050154209137,-0.238927319645882,-0.108436487615108,0.986880660057068,0.119616642594337,-0.162222310900688,0.977694928646088,0.1334038823843,-0.0413372665643692,0.990988731384277,0.127407163381577,0.231104716658592,-0.394397735595703,-0.889404892921448,0.124510109424591,-0.440221428871155,-0.88921445608139,0.387481868267059,-0.338642865419388,-0.857425689697266,-0.405335754156113,0.489279836416245,-0.772209942340851,-0.209614142775536,0.569216012954712,-0.795018911361694,-0.126407042145729,0.616406381130219,-0.777215838432312,0.303459405899048,-0.926931142807007,-0.220705822110176,0.40034818649292,-0.898627877235413,-0.179413735866547,0.277734160423279,-0.937248110771179,-0.210783556103706,-0.404868185520172,0.487527996301651,-0.773562014102936,-0.414074033498764,0.483372122049332,-0.771293759346008,-0.209075525403023,0.567497491836548,-0.79638808965683,-0.255496174097061,0.513185024261475,-0.819367349147797,-0.202947348356247,0.547979652881622,-0.811499059200287,-0.410450220108032,0.46424001455307,-0.784864366054535,-0.397243171930313,0.401010006666183,-0.825462818145752,-0.389103829860687,0.40180915594101,-0.82894366979599,-0.244232386350632,0.447110444307327,-0.860489845275879,0.382970750331879,-0.323682308197021,-0.865195453166962,0.121598556637764,-0.431824922561646,-0.893723249435425,0.139945954084396,-0.387005418539047,-0.911395609378815,-0.190364181995392,0.18325600028038,-0.964457750320435,0.0141884069889784,0.231625065207481,-0.972701668739319,-0.091793529689312,0.202253967523575,-0.975021660327911,0.10151381790638,-0.183279812335968,-0.977805435657501,0.239214211702347,-0.149030297994614,-0.959461688995361,0.327845871448517,-0.125912010669708,-0.936303079128265,0.161975353956223,0.540858030319214,-0.82537055015564,
- 0.044672567397356,0.535794615745544,-0.843165874481201,0.0923429653048515,0.52572900056839,-0.845625221729279,0.179122015833855,0.191111251711845,-0.965086400508881,0.33303427696228,0.207795783877373,-0.919733166694641,0.251537203788757,0.203973114490509,-0.94610995054245,0.321840137243271,0.343800485134125,-0.882167875766754,0.149809956550598,0.318129777908325,-0.93613588809967,0.0908609181642532,0.332760691642761,-0.938623905181885,0.142986416816711,0.345378875732422,-0.927506625652313,-0.00462774420157075,0.314179241657257,-0.949352383613586,0.0924849435687065,0.320344656705856,-0.94277560710907,0.0864897668361664,0.365316867828369,-0.926856577396393,0.316986560821533,0.37272247672081,-0.872122526168823,0.318149477243423,0.375790804624558,-0.870380461215973,-0.200458958745003,0.228345021605492,-0.952719688415527,-0.0427909158170223,0.267443239688873,-0.962623119354248,0.00414757709950209,0.275960773229599,-0.961159944534302,0.0987792238593102,0.270456165075302,-0.957651376724243,0.00459796702489257,0.273986041545868,-0.961722671985626,-0.0413687415421009,0.258554637432098,-0.965110421180725,-0.197055667638779,0.238800942897797,-0.950864553451538,-0.0440803244709969,0.275502026081085,-0.960289299488068,-0.201132714748383,0.231409788131714,-0.951837778091431,-0.153679087758064,0.033549252897501,-0.987551212310791,-0.155198633670807,0.0363875441253185,-0.987213015556335,-0.302765786647797,-0.00395194487646222,-0.953056812286377,-0.0419801622629166,0.262376040220261,-0.964052140712738,-0.0284180920571089,0.268372863531113,-0.96289587020874,0.0983242988586426,0.274160861968994,-0.956644237041473,-0.0437509603798389,0.2734434902668,-0.960892558097839,-0.196628853678703,0.23661096394062,-0.951500058174133,-0.0291144158691168,0.271874129772186,-0.961892306804657,-0.298645257949829,-0.018390754237771,-0.954186975955963,-0.16246685385704,0.0100064007565379,-0.986663281917572,-0.15006822347641,0.0177597720175982,-0.988516211509705,-0.032794401049614,0.290349006652832,-0.956358730792999,-0.200340792536736,0.255800098180771,-0.945743024349213,
- -0.206964105367661,0.264797449111938,-0.941832363605499,-0.198931887745857,0.213579207658768,-0.956457138061523,-0.349109530448914,0.179663822054863,-0.919697463512421,-0.337589591741562,0.1825080960989,-0.923430621623993,-0.339829415082932,0.198806062340736,-0.91923463344574,-0.182559832930565,0.212801918387413,-0.95988917350769,-0.20149339735508,0.229584902524948,-0.952203333377838,-0.183990433812141,0.307250529527664,-0.933672666549683,-0.0324033722281456,0.288388222455978,-0.956965148448944,-0.206821292638779,0.263859122991562,-0.942126989364624,-0.182898476719856,0.227667108178139,-0.956407785415649,-0.341729313135147,0.213177070021629,-0.915301501750946,-0.250155121088028,0.220783308148384,-0.942696750164032,-0.249800637364388,0.265405029058456,-0.931214272975922,-0.0296301059424877,0.261988461017609,-0.964616060256958,-0.183579698204994,0.266097486019135,-0.94630366563797,-0.0311188548803329,0.281206279993057,-0.959142684936523,-0.0311543177813292,0.282121181488037,-0.95887279510498,-0.183696955442429,0.275005728006363,-0.943730533123016,-0.0280813854187727,0.271016389131546,-0.962165057659149,-0.0313129089772701,0.275661498308182,-0.960744738578796,-0.18364192545414,0.270678043365479,-0.944991528987885,-0.0229358728975058,0.30073219537735,-0.95343291759491,0.0256492383778095,0.286654502153397,-0.957690596580505,-0.0307947546243668,0.290381371974945,-0.956415474414825,0.0260811001062393,0.269272327423096,-0.962710976600647,-0.0296915601938963,0.274774789810181,-0.961050093173981,-0.0316577255725861,0.265710949897766,-0.96353280544281,0.0249241404235363,0.314907282590866,-0.948795139789581,-0.0187985505908728,0.324317574501038,-0.945761442184448,0.141531258821487,0.301981568336487,-0.942749202251434,0.0977759882807732,0.278604775667191,-0.955415725708008,-0.0298071783035994,0.275355726480484,-0.960880219936371,0.00144763081334531,0.29079332947731,-0.956784904003143,0.0264578200876713,0.253746449947357,-0.966908872127533,0.00239438493736088,0.287121146917343,-0.957891404628754,-0.0292940810322762,0.272777229547501,-0.961631238460541,
- 0.285743921995163,0.475828975439072,-0.831827759742737,0.0645869672298431,0.511975347995758,-0.856568574905396,-0.0382131226360798,0.440445005893707,-0.896966099739075,0.140806004405022,0.329665541648865,-0.933538615703583,0.024616988375783,0.326543867588043,-0.94486141204834,0.143772587180138,0.32279172539711,-0.935486495494843,-0.0019738741684705,0.304025590419769,-0.95266181230545,0.0252521838992834,0.302265107631683,-0.952889382839203,0.141852512955666,0.323956221342087,-0.935377061367035,-0.0118251526728272,0.341786891222,-0.939703106880188,0.132325023412704,0.374494642019272,-0.917738437652588,0.3088059425354,0.401594430208206,-0.862183749675751,0.154292315244675,0.428502053022385,-0.890269577503204,0.165871694684029,0.384679824113846,-0.908024251461029,0.129433840513229,0.389221608638763,-0.912005186080933,0.17107780277729,0.365130931138992,-0.915102064609528,0.312339574098587,0.389305531978607,-0.866536319255829,0.13539819419384,0.358538210391998,-0.923643708229065,0.156925395131111,-0.957559525966644,-0.241772890090942,0.0491969659924507,-0.973963737487793,-0.221301287412643,0.31609895825386,-0.917039692401886,-0.243145376443863,-0.315904349088669,-0.2365562915802,-0.91882848739624,-0.105182252824306,-0.224684685468674,-0.968738079071045,-0.0133506953716278,-0.191783800721169,-0.981346368789673,0.138664990663528,-0.788536190986633,0.599151611328125,0.235868692398071,-0.750568151473999,0.617262840270996,0.107314303517342,-0.785695433616638,0.609234273433685,-0.315751940011978,-0.238683253526688,-0.918330550193787,-0.323152780532837,-0.23862312734127,-0.915768146514893,-0.104953944683075,-0.226808801293373,-0.968267738819122,-0.166872307658196,-0.272539496421814,-0.947563111782074,-0.10238490998745,-0.250323683023453,-0.962733387947083,-0.32283741235733,-0.260483354330063,-0.909903526306152,-0.320511311292648,-0.33414825797081,-0.886350631713867,-0.307567149400711,-0.338031709194183,-0.889458835124969,-0.167084723711014,-0.34819895029068,-0.922410011291504,0.319917052984238,-0.910927176475525,-0.260508686304092,
- 0.0475419759750366,-0.971381008625031,-0.232720136642456,0.0722743049263954,-0.95888340473175,-0.274443507194519,-0.158830285072327,-0.603309690952301,-0.781530916690826,0.0551706552505493,-0.601398825645447,-0.797041833400726,-0.0520217269659042,-0.609835863113403,-0.790818512439728,0.0696112439036369,-0.876395404338837,-0.476534754037857,0.209746092557907,-0.856024563312531,-0.472470670938492,0.300327450037003,-0.833817183971405,-0.463197946548462,0.253619343042374,-0.30854520201683,-0.916775345802307,0.137825503945351,-0.311670631170273,-0.940141260623932,0.182297736406326,-0.325285792350769,-0.92787754535675,0.209645494818687,-0.6383016705513,-0.740688681602478,0.364432722330093,-0.610214948654175,-0.703439056873322,0.282291740179062,-0.62384045124054,-0.728789746761322,0.376175791025162,-0.508061528205872,-0.774832367897034,0.203886151313782,-0.546180546283722,-0.812475979328156,0.147993206977844,-0.5321906208992,-0.833589315414429,0.200966969132423,-0.509214282035828,-0.836847245693207,0.0508340671658516,-0.529094278812408,-0.847039043903351,0.148032933473587,-0.53147429227829,-0.834039151668549,0.149301543831825,-0.507272481918335,-0.848754227161407,0.374900937080383,-0.486828655004501,-0.788953185081482,0.378049343824387,-0.483356177806854,-0.789585828781128,-0.16120645403862,-0.563266396522522,-0.810397088527679,0.00857429299503565,-0.563376188278198,-0.82615602016449,0.0528247319161892,-0.561979532241821,-0.825462639331818,0.146027460694313,-0.565099596977234,-0.811996579170227,0.0523888133466244,-0.554736614227295,-0.830375075340271,0.00859429407864809,-0.562301993370056,-0.826887309551239,-0.150031253695488,-0.555239796638489,-0.818046092987061,0.0087047154083848,-0.556329905986786,-0.830916047096252,-0.161334693431854,-0.560854256153107,-0.812042891979218,-0.143159359693527,-0.718411087989807,-0.680728256702423,-0.149280801415443,-0.715352535247803,-0.68263167142868,-0.292610019445419,-0.699731111526489,-0.651732981204987,0.00864728633314371,-0.559443831443787,-0.828823149204254,0.0175046883523464,-0.555773675441742,-0.831149339675903,
- 0.146199271082878,-0.562401354312897,-0.813836872577667,0.00867153331637383,-0.55812931060791,-0.829708695411682,-0.149993151426315,-0.557156205177307,-0.816749036312103,0.0176999606192112,-0.561973869800568,-0.826965570449829,-0.291066080331802,-0.710201323032379,-0.641010642051697,-0.161421179771423,-0.731587886810303,-0.662361204624176,-0.142364338040352,-0.729563772678375,-0.668931305408478,0.0171867068856955,-0.545678079128265,-0.837818622589111,-0.150300815701485,-0.540196061134338,-0.828008353710175,-0.159268364310265,-0.528868496417999,-0.833625614643097,-0.160691037774086,-0.575962722301483,-0.80152690410614,-0.306391000747681,-0.552813291549683,-0.774933576583862,-0.298879027366638,-0.554645597934723,-0.776556372642517,-0.298210322856903,-0.540833652019501,-0.786491930484772,-0.142719328403473,-0.579508423805237,-0.802372217178345,-0.16032412648201,-0.562209844589233,-0.811305284500122,-0.128733277320862,-0.501646280288696,-0.855440676212311,0.0172455217689276,-0.547545492649078,-0.836598217487335,-0.159292459487915,-0.529556810855865,-0.833183944225311,-0.140559747815132,-0.567354261875153,-0.811388969421387,-0.297547668218613,-0.528501629829407,-0.795079529285431,-0.203261762857437,-0.556086242198944,-0.805886328220367,-0.193462178111076,-0.512393474578857,-0.83667516708374,0.017055282369256,-0.563627183437347,-0.825853228569031,-0.133958533406258,-0.530509889125824,-0.837027251720428,0.0117717264220119,-0.552224576473236,-0.833612263202667,0.0174009371548891,-0.55247974395752,-0.833344697952271,-0.133691802620888,-0.52903026342392,-0.838005661964417,0.0173726864159107,-0.562862753868103,-0.826367795467377,0.010405813343823,-0.557877540588379,-0.829858064651489,-0.134515359997749,-0.533600807189941,-0.834970533847809,0.0298827085644007,-0.53227710723877,-0.84604275226593,0.0757358148694038,-0.550184726715088,-0.83160138130188,0.0147659098729491,-0.539731979370117,-0.841707408428192,0.0722494944930077,-0.570050239562988,-0.81842702627182,0.0176002122461796,-0.558806717395782,-0.829111158847809,0.00861036125570536,-0.565264463424683,-0.82486480474472,
- 0.0778627097606659,-0.537781715393066,-0.839480936527252,0.0331844724714756,-0.524054825305939,-0.851037800312042,0.193614318966866,-0.554819464683533,-0.80912846326828,0.145577996969223,-0.572018444538116,-0.807218790054321,0.0177193339914083,-0.562588691711426,-0.826547026634216,0.0550049170851707,-0.554573237895966,-0.830314993858337,0.0698801428079605,-0.583230435848236,-0.809295415878296,0.0548709705471992,-0.552939116954803,-0.831412971019745,0.017643766477704,-0.560189425945282,-0.828176617622375,0.360708713531494,-0.377145677804947,-0.853024244308472,0.15451468527317,-0.345388203859329,-0.925652325153351,0.0428518205881119,-0.407938301563263,-0.912003338336945,0.197850316762924,-0.521975219249725,-0.829697012901306,0.0808976143598557,-0.519699037075043,-0.850510835647583,0.201818495988846,-0.528837144374847,-0.824378907680511,0.0535557046532631,-0.536916851997375,-0.84193354845047,0.0772350579500198,-0.541464745998383,-0.837168276309967,0.197878897190094,-0.527332007884979,-0.826295912265778,0.0505821257829666,-0.500844419002533,-0.864058077335358,0.197370260953903,-0.48043218255043,-0.854534924030304,0.36963152885437,-0.441283345222473,-0.817705035209656,0.230333760380745,-0.428686231374741,-0.873598575592041,0.233159646391869,-0.469214856624603,-0.851747632026672,0.197105213999748,-0.466222435235977,-0.862430393695831,0.234838366508484,-0.488675028085709,-0.840266406536102,0.371024250984192,-0.452574491500854,-0.810874402523041,0.197596102952957,-0.495496928691864,-0.845836043357849,0.159233182668686,0.0765495598316193,-0.984268724918365,0.0479069501161575,0.0525553151965141,-0.997468233108521,0.319434434175491,0.0846125185489655,-0.943823277950287,-0.320721060037613,0.862176954746246,-0.392159342765808,-0.109014496207237,0.914563596248627,-0.389473050832748,-0.0144742242991924,0.933473229408264,-0.358354955911636,0.140947818756104,-0.72406667470932,-0.675174951553345,0.235394060611725,-0.735663294792175,-0.63512921333313,0.107918925583363,-0.733802616596222,-0.670736372470856,-0.320562452077866,0.861321747303009,-0.394163429737091,
- -0.318375557661057,0.861913740634918,-0.394641190767288,-0.108784466981888,0.913733839988709,-0.391479820013046,-0.162320598959923,0.886565864086151,-0.433189332485199,-0.106188558042049,0.904201626777649,-0.413694828748703,-0.318149298429489,0.852324843406677,-0.415118515491486,-0.316013276576996,0.814537703990936,-0.486481189727783,-0.306304037570953,0.815848469734192,-0.490478664636612,-0.162460431456566,0.84697037935257,-0.506209254264832,0.319479942321777,0.0995610728859901,-0.94234824180603,0.0467688702046871,0.0603707283735275,-0.997079789638519,0.0711211711168289,0.106355130672455,-0.991781413555145,-0.154797807335854,0.673356354236603,-0.722930729389191,0.05669229850173,0.687935709953308,-0.723554015159607,-0.0565008483827114,0.679850280284882,-0.731171250343323,0.0696827918291092,0.306833356618881,-0.949208915233612,0.211710602045059,0.305505335330963,-0.928356111049652,0.301691830158234,0.300060838460922,-0.904956221580505,0.252845883369446,0.85047835111618,-0.461254298686981,0.138178929686546,0.872707188129425,-0.468282788991928,0.182749703526497,0.858467519283295,-0.479203552007675,0.21067088842392,0.630853652954102,-0.746753931045532,0.367878943681717,0.598506331443787,-0.711656808853149,0.281629204750061,0.621953785419464,-0.730656206607819,0.378585666418076,0.687094628810883,-0.620140194892883,0.204040691256523,0.718318223953247,-0.665121257305145,0.153728410601616,0.7403604388237,-0.654395997524261,0.203139320015907,0.727245330810547,-0.655628561973572,0.0537843592464924,0.73360401391983,-0.677445530891418,0.152433201670647,0.720108807086945,-0.676910221576691,0.154806345701218,0.758586764335632,-0.632914781570435,0.374671578407288,0.704457819461823,-0.60279381275177,0.380098909139633,0.704914748668671,-0.598848938941956,-0.156945690512657,0.706538140773773,-0.690052092075348,0.00590488454326987,0.721273243427277,-0.692625463008881,0.0546519160270691,0.720665633678436,-0.691125333309174,0.151082932949066,0.700396955013275,-0.69758015871048,0.0546932518482208,0.720035374164581,-0.691778659820557,0.00577142788097262,0.715684413909912,-0.69839996099472,
- -0.150041833519936,0.709576845169067,-0.688468039035797,0.00591787416487932,0.72181636095047,-0.692059338092804,-0.156733557581902,0.703081905841827,-0.693621218204498,-0.142907127737999,0.533516466617584,-0.833629250526428,-0.143802911043167,0.536741673946381,-0.831401884555817,-0.291054338216782,0.508811295032501,-0.810184359550476,0.00587641866877675,0.720082819461823,-0.693863332271576,0.0106329787522554,0.722736537456512,-0.691041886806488,0.151388466358185,0.704752326011658,-0.693113029003143,0.0058698384091258,0.719809770584106,-0.694146573543549,-0.149997547268867,0.707444846630096,-0.690668165683746,0.0108338193967938,0.716528117656708,-0.697474122047424,-0.289092183113098,0.49317255616188,-0.820491790771484,-0.161210000514984,0.510698795318604,-0.844510555267334,-0.14191497862339,0.51655787229538,-0.844409942626953,0.0104493824765086,0.728339552879334,-0.685136735439301,-0.150234296917915,0.719695568084717,-0.677840650081635,-0.161099970340729,0.725415408611298,-0.669193029403687,-0.16182267665863,0.700397372245789,-0.695166945457459,-0.306222945451736,0.677585124969482,-0.668659746646881,-0.305765211582184,0.677504122257233,-0.668951272964478,-0.305072575807571,0.689287602901459,-0.657125055789948,-0.141303092241287,0.699222564697266,-0.70080041885376,-0.161519765853882,0.711898624897003,-0.6834557056427,-0.127443328499794,0.760217905044556,-0.637045502662659,0.0103031499311328,0.732752561569214,-0.68041718006134,-0.160912334918976,0.730806648731232,-0.663346707820892,-0.142895475029945,0.691504240036011,-0.708097994327545,-0.305526167154312,0.681759834289551,-0.664723455905914,-0.205077692866325,0.688789904117584,-0.695349991321564,-0.195025339722633,0.72826623916626,-0.656957685947418,0.0127808414399624,0.709108233451843,-0.704983770847321,-0.135548055171967,0.725839257240295,-0.674376845359802,0.0190063510090113,0.732709467411041,-0.680276095867157,0.0102723017334938,0.733677685260773,-0.679419994354248,-0.131654232740402,0.742785394191742,-0.656457960605621,0.0211155377328396,0.726004004478455,-0.687366306781769,
- 0.0180245656520128,0.72945100069046,-0.683795511722565,-0.132273361086845,0.740145325660706,-0.659309267997742,0.0197854619473219,0.723338186740875,-0.690210402011871,0.0787322297692299,0.703863859176636,-0.705958127975464,0.014119959436357,0.716333389282227,-0.697615325450897,0.0765444040298462,0.693357527256012,-0.7165167927742,0.0111578311771154,0.706332385540009,-0.707792401313782,0.0096809109672904,0.70111358165741,-0.712983906269073,0.0857044085860252,0.736837267875671,-0.670615792274475,0.0342269577085972,0.751659572124481,-0.658662617206573,0.195426285266876,0.705003201961517,-0.681747078895569,0.149989515542984,0.685242116451263,-0.712703585624695,0.0111714331433177,0.705899298191071,-0.70822411775589,0.0555093288421631,0.711476624011993,-0.700513899326324,0.075082965195179,0.686298668384552,-0.723434031009674,0.0552238374948502,0.714440822601318,-0.697513222694397,0.0110556036233902,0.709573030471802,-0.704545140266418,0.362459689378738,0.774988532066345,-0.517702579498291,0.158564314246178,0.849775016307831,-0.502732336521149,0.0423511154949665,0.827198088169098,-0.560312151908875,0.1942388266325,0.729610621929169,-0.655697822570801,0.0882773101329803,0.748800337314606,-0.656890511512756,0.202804163098335,0.722533285617828,-0.660920679569244,0.0530872419476509,0.735913276672363,-0.674991428852081,0.084113597869873,0.729384064674377,-0.678913772106171,0.194277510046959,0.722573280334473,-0.66343355178833,0.0501039586961269,0.763918220996857,-0.643365025520325,0.193836256861687,0.758679330348969,-0.621959149837494,0.371297001838684,0.727795422077179,-0.576586842536926,0.230654045939446,0.786792457103729,-0.572500288486481,0.227683305740356,0.758908927440643,-0.610096335411072,0.193563222885132,0.770046770572662,-0.60791552066803,0.229501277208328,0.74339896440506,-0.628241300582886,0.37264683842659,0.718944728374481,-0.586730599403381,0.19404000043869,0.747456312179565,-0.635340511798859,-0.0948632061481476,-0.702660262584686,0.705173373222351,0.0145129691809416,-0.714800179004669,0.699178159236908,-0.133527904748917,-0.69072562456131,0.710681736469269,
- -0.250296086072922,-0.690967381000519,0.678171038627625,-0.0960025489330292,-0.715808868408203,0.691665530204773,-0.138789534568787,-0.715772211551666,0.684403121471405,0.0105618806555867,-0.725909888744354,0.687708795070648,-0.0941617488861084,-0.694632411003113,0.713175594806671,0.0319426730275154,-0.714982330799103,0.698412537574768,0.204306498169899,-0.697359621524811,0.686985015869141,0.0262350756675005,-0.680632472038269,0.73215514421463,0.0365059450268745,-0.692624092102051,0.720374345779419,-0.0955670177936554,-0.710765898227692,0.696906685829163,-0.250432074069977,-0.685464680194855,0.68368273973465,-0.139046534895897,-0.698236525058746,0.702233493328094,-0.335780590772629,-0.666575908660889,0.665528297424316,-0.13924677670002,-0.694446384906769,0.705942332744598,-0.250497728586197,-0.682540595531464,0.686577916145325,0.036150086671114,-0.694399178028107,0.718681395053864,0.122833304107189,-0.698991656303406,0.704501688480377,0.203147292137146,-0.701306879520416,0.683300733566284,0.328379333019257,-0.667624652385712,0.668164908885956,0.210870921611786,-0.674177885055542,0.707826018333435,0.123740002512932,-0.690411746501923,0.712755262851715,0.0342083089053631,-0.703990876674652,0.709384679794312,-0.0941304117441177,-0.694274961948395,0.713527679443359,-0.00560592859983444,-0.702204883098602,0.711952865123749,0.122230276465416,-0.704554378986359,0.699044287204742,0.033335980027914,-0.708248198032379,0.705175995826721,-0.00561912171542645,-0.70050185918808,0.713628470897675,-0.0946038737893105,-0.699686646461487,0.708158671855927,-0.138571262359619,-0.706876873970032,0.693630397319794,-0.00555343739688396,-0.70890074968338,0.705286502838135,0.328320801258087,-0.661519050598145,0.674238860607147,0.124777063727379,-0.680262267589569,0.7222700715065,0.161792233586311,-0.695430755615234,0.700142383575439,0.161402478814125,-0.685929954051971,0.70954167842865,0.122092142701149,-0.705812990665436,0.697797656059265,-0.00562361255288124,-0.699920237064362,0.714198887348175,0.161744177341461,-0.694227337837219,0.701346755027771,
- 0.262828022241592,-0.682202279567719,0.682291388511658,0.32829561829567,-0.659452140331268,0.676272809505463,-0.00555581878870726,-0.708599627017975,0.705588936805725,-0.138583764433861,-0.706655502319336,0.693853437900543,-0.0665683224797249,-0.708582878112793,0.702480614185333,-0.139824777841568,-0.682941913604736,0.716965436935425,-0.336571156978607,-0.655183792114258,0.676353514194489,-0.0671682059764862,-0.688662469387054,0.721964299678802,0.0553904548287392,-0.699657678604126,0.712327897548676,0.161519706249237,-0.688727200031281,0.706800043582916,-0.00560494745150208,-0.702331185340881,0.711828351020813,0.261298984289169,-0.6675084233284,0.697248458862305,0.16139130294323,-0.685666263103485,0.709798991680145,0.0552442036569119,-0.695088565349579,0.716798365116119,-0.217159733176231,-0.674299836158752,0.705805480480194,-0.0672713369131088,-0.684995472431183,0.725434958934784,-0.336875140666962,-0.650402665138245,0.6808021068573,-0.337250471115112,-0.644116461277008,0.686568319797516,-0.308212727308273,-0.647527158260345,0.696931481361389,-0.217160314321518,-0.673364400863647,0.706697821617126,-0.00557683315128088,-0.708257734775543,0.705931961536407,-0.00555282458662987,-0.708978116512299,0.705208659172058,-0.0665397346019745,-0.70947802066803,0.701579213142395,-0.0666229352355003,-0.706859946250916,0.704209089279175,-0.217090725898743,-0.690481245517731,0.690005242824554,-0.00555793801322579,-0.705858051776886,0.70833146572113,-0.00548462150618434,-0.696547091007233,0.717490136623383,0.0551369562745094,-0.691763460636139,0.720016121864319,-0.00565748568624258,-0.695503115653992,0.718500852584839,-0.306679397821426,-0.66580331325531,0.68018651008606,-0.0602166801691055,-0.678612232208252,0.732024192810059,-0.217144533991814,-0.681075930595398,0.699273884296417,-0.217094704508781,-0.689961791038513,0.690523445606232,-0.0549939200282097,-0.712547898292542,0.699464917182922,-0.00555595895275474,-0.705606758594513,0.708581864833832,-0.0358257479965687,-0.673179805278778,0.738610506057739,-0.0595967881381512,-0.682766616344452,0.728201866149902,
- -0.306396961212158,-0.668901801109314,0.677267491817474,0.12296524643898,-0.74176561832428,0.659290015697479,-0.046970259398222,-0.760225772857666,0.647958815097809,-0.0147988637909293,-0.762377262115479,0.646963775157928,0.150383919477463,-0.688329935073853,0.709638357162476,0.26147472858429,-0.669157147407532,0.695600211620331,0.05524080991745,-0.694983065128326,0.716900944709778,0.148719280958176,-0.660737931728363,0.735736310482025,0.0545638613402843,-0.674345254898071,0.736397504806519,-0.00535735208541155,-0.680383920669556,0.732836306095123,0.260027647018433,-0.655855715274811,0.708688139915466,0.149698480963707,-0.676649510860443,0.720927059650421,0.209466576576233,-0.667292773723602,0.714733600616455,-0.0570999570190907,-0.699151337146759,0.712690055370331,0.0865288600325584,-0.68597537279129,0.722461462020874,-0.00549798225983977,-0.698243796825409,0.71583890914917,0.081200435757637,-0.652150332927704,0.753728330135345,0.148373797535896,-0.655311048030853,0.740643501281738,-0.00529835047200322,-0.672890663146973,0.739722967147827,-0.0519324317574501,-0.731354594230652,0.680017292499542,0.115751944482327,-0.712534368038177,0.69202333688736,0.0916372239589691,-0.718112468719482,0.689867436885834,0.0853902772068977,-0.678772807121277,0.729366838932037,0.208457201719284,-0.657395720481873,0.72413843870163,0.149169996380806,-0.667959094047546,0.729094624519348,0.209831073880196,-0.670932710170746,0.711210370063782,0.0875678285956383,-0.692535877227783,0.716048836708069,0.110624127089977,-0.691472232341766,0.713882684707642,-0.0974088087677956,-0.472444772720337,0.875960886478424,0.0148984966799617,-0.485964447259903,0.873851597309113,-0.135010227560997,-0.458888471126556,0.878176331520081,-0.249438419938087,-0.46428519487381,0.849835097789764,-0.0982533618807793,-0.484130144119263,0.869462072849274,-0.139793381094933,-0.486376702785492,0.862493753433228,0.00625451887026429,-0.51703155040741,0.855943500995636,-0.0980127304792404,-0.480784714221954,0.871343553066254,0.0262137167155743,-0.504035353660584,0.8632852435112,
- 0.201139122247696,-0.473288297653198,0.857636988162994,0.0258835311979055,-0.445419639348984,0.894947707653046,0.0334544256329536,-0.459614425897598,0.88748836517334,-0.0980851426720619,-0.481790214776993,0.870779812335968,-0.249499261379242,-0.461407154798508,0.851383328437805,-0.139514252543449,-0.468148410320282,0.872566819190979,-0.337839990854263,-0.448797225952148,0.827312171459198,-0.139691680669785,-0.464067816734314,0.874715685844421,-0.249560803174973,-0.458352625370026,0.853013634681702,0.0322748273611069,-0.466969907283783,0.883684039115906,0.117017924785614,-0.475407898426056,0.871948599815369,0.198638021945953,-0.48351863026619,0.85249787569046,0.328025281429291,-0.459195494651794,0.825553715229034,0.205821886658669,-0.453642696142197,0.867090344429016,0.117699570953846,-0.467935264110565,0.875890076160431,0.0298275705426931,-0.482081890106201,0.875618398189545,-0.0973532870411873,-0.471681714057922,0.876378297805786,-0.00690659414976835,-0.480189770460129,0.877137422561646,0.116574384272099,-0.480203211307526,0.869376361370087,0.0300059262663126,-0.480987221002579,0.87621396780014,-0.00694245845079422,-0.4717738032341,0.881692290306091,-0.0974578484892845,-0.473118782043457,0.875591576099396,-0.138751789927483,-0.484858423471451,0.863516211509705,-0.00689345318824053,-0.483226031064987,0.875468492507935,0.327904433012009,-0.446937561035156,0.832301318645477,0.119267366826534,-0.450252532958984,0.884899973869324,0.160073757171631,-0.472494006156921,0.866675138473511,0.159651100635529,-0.460265338420868,0.873308300971985,0.116280630230904,-0.483350723981857,0.867669820785522,-0.00693903770297766,-0.472585141658783,0.881257832050323,0.160035699605942,-0.471359491348267,0.867299735546112,0.264526784420013,-0.464082360267639,0.845371603965759,0.327877134084702,-0.444817751646042,0.83344691991806,-0.00689432397484779,-0.483025640249252,0.875579059123993,-0.138755992054939,-0.484769642353058,0.863565385341644,-0.0694457143545151,-0.483721494674683,0.872462511062622,-0.139654472470284,-0.464929699897766,0.87426370382309,
- -0.337782710790634,-0.449736714363098,0.826825082302094,-0.069764032959938,-0.469683915376663,0.880073845386505,0.0569282546639442,-0.471727401018143,0.879904806613922,0.159740835428238,-0.462795197963715,0.871953845024109,-0.00693045463413,-0.474612087011337,0.880167782306671,0.26271578669548,-0.442117601633072,0.857620239257813,0.159518823027611,-0.456596702337265,0.875256061553955,0.0567074231803417,-0.463334500789642,0.884367227554321,-0.218046918511391,-0.460308343172073,0.860564768314362,-0.0698283687233925,-0.466732144355774,0.881637752056122,-0.338073343038559,-0.444895505905151,0.829321682453156,-0.338785946369171,-0.432169288396835,0.835735499858856,-0.305602520704269,-0.434115171432495,0.847437977790833,-0.21811044216156,-0.453680634498596,0.864061176776886,-0.00378525955602527,-0.480727881193161,0.876861691474915,-0.00690062344074249,-0.481572568416595,0.876379072666168,-0.0694651231169701,-0.482890605926514,0.872921109199524,-0.0695084109902382,-0.481026887893677,0.873946070671082,-0.217915907502174,-0.471147805452347,0.854712009429932,-0.00377264409326017,-0.479125708341599,0.877738177776337,-0.00373276439495385,-0.474061220884323,0.880484104156494,0.0568451248109341,-0.468549907207489,0.88160628080368,-0.00693804398179054,-0.472820043563843,0.881131708621979,-0.304386496543884,-0.4523566365242,0.838285326957703,-0.0597651563584805,-0.450188517570496,0.890931248664856,-0.218037992715836,-0.461147546768188,0.860117673873901,-0.217918813228607,-0.470932871103287,0.854829609394073,-0.0549291856586933,-0.488699734210968,0.870721161365509,-0.00377518450841308,-0.47944837808609,0.877561986446381,-0.0364247262477875,-0.443181037902832,0.895691812038422,-0.0592004656791687,-0.454777717590332,0.888635218143463,-0.304154187440872,-0.455618888139725,0.836601257324219,0.120052881538868,-0.528215944766998,0.84058028459549,-0.0469558835029602,-0.548492133617401,0.83483624458313,-0.0162726994603872,-0.550854384899139,0.834442734718323,0.149559289216995,-0.460248976945877,0.875101685523987,0.262946456670761,-0.444821387529373,0.856150150299072,
- 0.0567222647368908,-0.463893830776215,0.88407301902771,0.148135468363762,-0.433975756168365,0.888662457466125,0.0562899857759476,-0.447865068912506,0.892327487468719,-0.0035820109769702,-0.454915583133698,0.890527486801147,0.261424243450165,-0.427413284778595,0.865433573722839,0.148721873760223,-0.444554030895233,0.883319735527039,0.208105534315109,-0.43717560172081,0.874968349933624,-0.0568463504314423,-0.473644107580185,0.878879845142365,0.0865128412842751,-0.458147197961807,0.884656250476837,-0.00371633423492312,-0.471974462270737,0.881604373455048,0.0816815420985222,-0.421225756406784,0.903270184993744,0.14775575697422,-0.427287340164185,0.891960620880127,-0.00350755383260548,-0.445459455251694,0.895295262336731,-0.0518198125064373,-0.512547194957733,0.857093989849091,0.113069869577885,-0.491757839918137,0.863359391689301,0.0915540233254433,-0.497066736221313,0.862868785858154,0.0849012956023216,-0.44579228758812,0.891101002693176,0.207135871052742,-0.426482707262039,0.880458533763886,0.148219063878059,-0.435464531183243,0.887919902801514,0.208640486001968,-0.443194508552551,0.871807217597961,0.0871163904666901,-0.462784796953201,0.882179796695709,0.107480704784393,-0.462706625461578,0.879971861839294,-0.0944255217909813,-0.113069266080856,0.989090085029602,0.0174585040658712,-0.126775681972504,0.991777777671814,-0.128363132476807,-0.100184492766857,0.986653923988342,-0.251867532730103,-0.11458382755518,0.960954368114471,-0.0951848775148392,-0.125646278262138,0.98749828338623,-0.133218556642532,-0.131764814257622,0.982288599014282,0.0083118136972189,-0.163232147693634,0.986552774906158,-0.0949665755033493,-0.122006237506866,0.987975716590881,0.0273838713765144,-0.146059572696686,0.988896727561951,0.201130792498589,-0.12015999853611,0.972166657447815,0.0290571209043264,-0.080137811601162,0.996360182762146,0.0342757180333138,-0.0970240756869316,0.994691669940948,-0.095023512840271,-0.122954130172729,0.98785263299942,-0.251910597085953,-0.111372515559196,0.961320579051971,-0.138002425432205,-0.109835535287857,0.984322965145111,
- -0.343135505914688,-0.108753249049187,0.93296879529953,-0.138179644942284,-0.105248935520649,0.984799087047577,-0.25195038318634,-0.108213134109974,0.961670875549316,0.0331481881439686,-0.105104677379131,0.993908524513245,0.117797672748566,-0.116942428052425,0.986127853393555,0.198656663298607,-0.131512314081192,0.971205472946167,0.333297520875931,-0.118810445070267,0.935305774211884,0.205749899148941,-0.0985758304595947,0.973627150058746,0.11838112026453,-0.109354205429554,0.986928343772888,0.0308182202279568,-0.121730126440525,0.992084681987762,-0.0943786576390266,-0.112300582230091,0.989182114601135,-0.00687701255083084,-0.119437351822853,0.992817938327789,0.117435656487942,-0.121603012084961,0.985607326030731,0.0310194958001375,-0.120297774672508,0.992253124713898,-0.00696291867643595,-0.109654627740383,0.993945360183716,-0.0944836735725403,-0.114023670554161,0.988975048065186,-0.137241587042809,-0.12869955599308,0.982141137123108,-0.00684540253132582,-0.123015128076077,0.99238121509552,0.333195716142654,-0.104834586381912,0.937011480331421,0.119847223162651,-0.0898440927267075,0.988718807697296,0.162342712283134,-0.115723490715027,0.979924976825714,0.16195185482502,-0.102439597249031,0.981467247009277,0.117167912423611,-0.125026524066925,0.985210657119751,-0.00695625552907586,-0.110416539013386,0.993861079216003,0.162304028868675,-0.114363610744476,0.980091094970703,0.263572454452515,-0.116370089352131,0.957594692707062,0.333170741796494,-0.102355130016804,0.937294363975525,-0.00684726517647505,-0.122804746031761,0.992407321929932,-0.137245804071426,-0.128598496317863,0.9821537733078,-0.0681810975074768,-0.124777264893055,0.989839375019073,-0.138142257928848,-0.106222786009312,0.984699666500092,-0.343079924583435,-0.10980349779129,0.932866215705872,-0.0685912519693375,-0.107646502554417,0.991820275783539,0.0581588707864285,-0.110178664326668,0.992208778858185,0.162037655711174,-0.105274483561516,0.981152951717377,-0.00693541020154953,-0.112796701490879,0.993593871593475,0.26174920797348,-0.0913657024502754,0.960801541805267,
- 0.161813229322433,-0.0979476496577263,0.981948435306549,0.0579338110983372,-0.101367361843586,0.993160784244537,-0.220636919140816,-0.107145585119724,0.969453036785126,-0.0686742067337036,-0.104070194065571,0.992196202278137,-0.343358039855957,-0.104471653699875,0.93337607383728,-0.344038039445877,-0.0905280485749245,0.934581458568573,-0.310053050518036,-0.0876226201653481,0.946672797203064,-0.220692083239555,-0.0998698696494102,0.970216989517212,-0.00876105669885874,-0.119907706975937,0.992746412754059,-0.00685999076813459,-0.12136548012495,0.99258416891098,-0.0682002454996109,-0.123997241258621,0.989936172962189,-0.0682528465986252,-0.121843300759792,0.990199863910675,-0.220522090792656,-0.118955187499523,0.96810108423233,-0.00874846521764994,-0.118090569972992,0.992964386940002,-0.00870862230658531,-0.112366490066051,0.993628680706024,0.0580632388591766,-0.106413200497627,0.99262535572052,-0.00695664202794433,-0.110372275114059,0.993865966796875,-0.308806210756302,-0.10816165804863,0.944954931735992,-0.0542623624205589,-0.0862535461783409,0.994794428348541,-0.22062936425209,-0.108034372329712,0.969356119632721,-0.22052438557148,-0.118750654160976,0.968125760555267,-0.0495882108807564,-0.128865972161293,0.990421414375305,-0.00875102914869785,-0.118460424244404,0.992920219898224,-0.0357781127095222,-0.07921202480793,0.996215641498566,-0.0537132173776627,-0.0913163423538208,0.994372367858887,-0.308568239212036,-0.111846588551998,0.944603621959686,0.12713810801506,-0.176162168383598,0.976116180419922,-0.0418004579842091,-0.197563901543617,0.979398429393768,-0.0165898595005274,-0.200207695364952,0.97961300611496,0.155006468296051,-0.100367553532124,0.982801795005798,0.261981725692749,-0.0944341123104095,0.960441470146179,0.0579526349902153,-0.102097928524017,0.993084847927094,0.153916552662849,-0.0741254389286041,0.985299527645111,0.0574540384113789,-0.0831223800778389,0.994881749153137,-0.00855674501508474,-0.0908819139003754,0.995824933052063,0.260452568531036,-0.0748094394803047,0.962584137916565,0.154306575655937,-0.0832297280430794,0.984511196613312,
- 0.211955517530441,-0.0798479244112968,0.974011898040771,-0.0514523275196552,-0.112000666558743,0.992375195026398,0.0824025347828865,-0.0970644801855087,0.991861045360565,-0.00869211461395025,-0.110005594789982,0.993892967700958,0.0777982696890831,-0.0562773980200291,0.995379567146301,0.153569266200066,-0.0662556812167168,0.98591411113739,-0.00848079752177,-0.0803290456533432,0.996732413768768,-0.0465494431555271,-0.156003341078758,0.986659049987793,0.120011158287525,-0.133772030472755,0.983718752861023,0.0872169658541679,-0.140919357538223,0.986171960830688,0.0807638987898827,-0.0824253112077713,0.99331933259964,0.211046069860458,-0.0680888891220093,0.97510176897049,0.153888091444969,-0.0734722912311554,0.985352873802185,0.212478518486023,-0.0867852494120598,0.973304390907288,0.0828943029046059,-0.101485908031464,0.991377413272858,0.114375405013561,-0.101003207266331,0.988289773464203,0.0947532206773758,-0.144315734505653,-0.984984695911407,-0.0161013193428516,-0.132089212536812,-0.991107046604156,0.129962712526321,-0.155624330043793,-0.979229688644409,0.249347820878029,-0.133899986743927,-0.959112346172333,0.0956392362713814,-0.129874899983406,-0.986907124519348,0.134715273976326,-0.123462446033955,-0.983162760734558,-0.00870427675545216,-0.102003946900368,-0.994745910167694,0.0949554070830345,-0.141051918268204,-0.985437870025635,-0.0325667522847652,-0.117687366902828,-0.99251663684845,-0.201276287436485,-0.132436141371727,-0.970540344715118,-0.0271991137415171,-0.177104100584984,-0.98381632566452,-0.0385012701153755,-0.159911289811134,-0.986380279064178,0.0954699516296387,-0.132661953568459,-0.986552715301514,0.249414578080177,-0.137243077158928,-0.95862227678299,0.140169307589531,-0.144028827548027,-0.979595959186554,0.342711836099625,-0.132232680916786,-0.930087685585022,0.140306279063225,-0.147968113422394,-0.97898918390274,0.249473944306374,-0.140342861413956,-0.958157956600189,-0.0376474633812904,-0.153823390603065,-0.987380921840668,-0.122553989291191,-0.140627130866051,-0.98244833946228,-0.199275255203247,-0.123228140175343,-0.972164809703827,
- -0.332378536462784,-0.128280386328697,-0.934381544589996,-0.206561103463173,-0.157114148139954,-0.965736865997314,-0.123308315873146,-0.150336757302284,-0.980914831161499,-0.0355298332870007,-0.13874314725399,-0.989690840244293,0.0945291444659233,-0.147911757230759,-0.984472632408142,0.00891099963337183,-0.141848653554916,-0.989848256111145,-0.1221007630229,-0.134859576821327,-0.983312904834747,-0.0353935547173023,-0.137773528695107,-0.989831268787384,0.0089589636772871,-0.148990407586098,-0.988798081874847,0.0947242081165314,-0.144782543182373,-0.98491895198822,0.139640539884567,-0.129362776875496,-0.981715738773346,0.0088774561882019,-0.136890351772308,-0.990546524524689,-0.332287043333054,-0.140163257718086,-0.932705521583557,-0.124619618058205,-0.16755984723568,-0.977953910827637,-0.162956058979034,-0.140035450458527,-0.976644992828369,-0.162483915686607,-0.154582619667053,-0.974527180194855,-0.121912315487862,-0.132475569844246,-0.983660340309143,0.0089604314416647,-0.149209886789322,-0.988764941692352,-0.162919133901596,-0.141214936971664,-0.976481378078461,-0.261911273002625,-0.13469697535038,-0.955645978450775,-0.332262009382248,-0.142631769180298,-0.932340145111084,0.00887893233448267,-0.137107864022255,-0.990516424179077,0.139644891023636,-0.129480272531509,-0.981699645519257,0.0665198117494583,-0.134702116250992,-0.988650918006897,0.140384882688522,-0.150257170200348,-0.978629171848297,0.34282448887825,-0.134403586387634,-0.929734945297241,0.0668871477246284,-0.151188775897026,-0.986239373683929,-0.059837207198143,-0.148649632930756,-0.987078011035919,-0.162597611546516,-0.151179701089859,-0.975041925907135,0.00894136168062687,-0.146362170577049,-0.989190757274628,-0.26045423746109,-0.155558079481125,-0.952872097492218,-0.162484616041183,-0.154561206698418,-0.974530458450317,-0.0596920102834702,-0.154382959008217,-0.986206352710724,0.216098129749298,-0.146582454442978,-0.965305745601654,0.0669694319367409,-0.154993876814842,-0.985643029212952,0.343102842569351,-0.139908507466316,-0.928819715976715,0.343984186649323,-0.158942222595215,-0.925425469875336,
- 0.305854499340057,-0.165608912706375,-0.937564253807068,0.216168507933617,-0.159348458051682,-0.963264882564545,0.00670348852872849,-0.138935789465904,-0.990278720855713,0.00888149254024029,-0.137485414743423,-0.990463972091675,0.0665129572153091,-0.134401693940163,-0.988692283630371,0.0665123835206032,-0.134376719594002,-0.988695621490479,0.215970948338509,-0.131714090704918,-0.967475056648254,0.00670663546770811,-0.138585194945335,-0.990327835083008,0.00658541033044457,-0.15200974047184,-0.988357067108154,-0.0596044398844242,-0.157800659537315,-0.985670566558838,0.00899224262684584,-0.153982311487198,-0.988032698631287,0.304501116275787,-0.142895296216011,-0.941732466220856,0.0599737875163555,-0.176275745034218,-0.98251211643219,0.216113269329071,-0.14884740114212,-0.964955806732178,0.215981692075729,-0.132781252264977,-0.967326760292053,0.0544704236090183,-0.127434879541397,-0.990350127220154,0.00670278538018465,-0.139014050364494,-0.990267753601074,0.0371524654328823,-0.183083176612854,-0.982395172119141,0.0593530461192131,-0.170722246170044,-0.983529925346375,0.304240792989731,-0.138807833194733,-0.942427694797516,-0.123316712677479,-0.0801994353532791,-0.989121317863464,0.0467111207544804,-0.0600052438676357,-0.997104525566101,0.0173096843063831,-0.058278001844883,-0.998150408267975,-0.153753489255905,-0.152737483382225,-0.976233124732971,-0.260648727416992,-0.152870893478394,-0.953253746032715,-0.0597052276134491,-0.153864219784737,-0.986286520957947,-0.152168959379196,-0.18953999876976,-0.970009922981262,-0.0589386634528637,-0.182870224118233,-0.981368780136108,0.00637245923280716,-0.175208210945129,-0.984510779380798,-0.258968502283096,-0.175238266587257,-0.949856221675873,-0.152914494276047,-0.172868475317955,-0.9730024933815,-0.210263818502426,-0.17343270778656,-0.962138473987579,0.0562195964157581,-0.142863124608994,-0.98814445734024,-0.0864346101880074,-0.158048093318939,-0.983641147613525,0.0066426694393158,-0.145689070224762,-0.98930811882019,-0.0806871801614761,-0.208660334348679,-0.974654018878937,
- -0.15183000266552,-0.196795895695686,-0.968617081642151,0.00627756491303444,-0.185393422842026,-0.982644319534302,0.0512510947883129,-0.0992623046040535,-0.993740677833557,-0.116734080016613,-0.120239771902561,-0.985857784748077,-0.0911122784018517,-0.114938706159592,-0.989185452461243,-0.0841824784874916,-0.178174436092377,-0.980391323566437,-0.209203347563744,-0.186894580721855,-0.959846019744873,-0.152406111359596,-0.184347346425056,-0.970972955226898,-0.210579037666321,-0.169324785470963,-0.962800920009613,-0.0861912369728088,-0.160241633653641,-0.983307540416718,-0.110146515071392,-0.15899021923542,-0.981116652488709,0.0929246991872787,-0.482765942811966,-0.870805382728577,-0.0111825289204717,-0.474686652421951,-0.880083799362183,0.134770661592484,-0.49176299571991,-0.860236048698425,0.250634253025055,-0.463891804218292,-0.84969824552536,0.0937787592411041,-0.470148265361786,-0.877591133117676,0.139543503522873,-0.462996155023575,-0.875306904315948,-0.0038353381678462,-0.447942584753037,-0.894054234027863,0.0931096896529198,-0.480064779520035,-0.872277677059174,-0.0304993651807308,-0.459994941949844,-0.887397587299347,-0.202733442187309,-0.466113746166229,-0.86118358373642,-0.022247739136219,-0.514172255992889,-0.857398331165314,-0.0368927121162415,-0.498787611722946,-0.8659388422966,0.0936111733317375,-0.472654402256012,-0.876261830329895,0.250683605670929,-0.466833651065826,-0.848070800304413,0.138949409127235,-0.481227040290833,-0.865513503551483,0.338432401418686,-0.453011065721512,-0.824769377708435,0.139114558696747,-0.484915196895599,-0.863425970077515,0.250723510980606,-0.46934100985527,-0.846673905849457,-0.0359756350517273,-0.493257075548172,-0.86913937330246,-0.11610285192728,-0.479356706142426,-0.869906485080719,-0.200665563344955,-0.457950800657272,-0.866033732891083,-0.327418893575668,-0.45080041885376,-0.830407023429871,-0.20821376144886,-0.487904578447342,-0.847700536251068,-0.116910979151726,-0.488257199525833,-0.864833354949951,-0.0337000973522663,-0.479484856128693,-0.87690281867981,0.0927063971757889,-0.485930681228638,-0.869066715240479,
- 0.00379785220138729,-0.482327193021774,-0.875982880592346,-0.115608133375645,-0.473949015140533,-0.87293016910553,-0.0335156172513962,-0.478365242481232,-0.877521157264709,0.00384754408150911,-0.488638132810593,-0.872478187084198,0.0929007008671761,-0.483115136623383,-0.870614290237427,0.138297513127327,-0.467100083827972,-0.873322010040283,0.00376311363652349,-0.477915406227112,-0.878397822380066,-0.327311158180237,-0.461244106292725,-0.824694633483887,-0.118272215127945,-0.503447234630585,-0.855892837047577,-0.161201342940331,-0.475346714258194,-0.864904403686523,-0.160626396536827,-0.489561975002289,-0.857046365737915,-0.115409672260284,-0.471788108348846,-0.874126195907593,0.00384912989102304,-0.488839566707611,-0.872365355491638,-0.161167711019516,-0.476211726665497,-0.864434719085693,-0.259562790393829,-0.463485717773438,-0.84723562002182,-0.32728374004364,-0.463349580764771,-0.823524594306946,0.0037646375130862,-0.478108912706375,-0.878292500972748,0.138301804661751,-0.467190951108933,-0.873272716999054,0.0676259621977806,-0.474785894155502,-0.877499341964722,0.139201954007149,-0.486886382102966,-0.862301826477051,0.338548898696899,-0.454882979393005,-0.823690533638,0.0680739507079124,-0.490284562110901,-0.868900001049042,-0.0587122403085232,-0.487563163042068,-0.871111392974854,-0.160753861069679,-0.486509650945663,-0.858758747577667,0.00382931646890938,-0.486323237419128,-0.873770594596863,-0.258067935705185,-0.482247471809387,-0.837160885334015,-0.160664424300194,-0.488656520843506,-0.857555687427521,-0.0585648939013481,-0.492916733026505,-0.868103265762329,0.218620121479034,-0.477357625961304,-0.851078689098358,0.0681735277175903,-0.493812382221222,-0.866891980171204,0.338851153850555,-0.459853649139404,-0.820801138877869,0.339804142713547,-0.47681799530983,-0.810665011405945,0.310922086238861,-0.485578566789627,-0.817031800746918,0.218648031353951,-0.48810401558876,-0.844954133033752,0.00691051594913006,-0.479279190301895,-0.877635419368744,0.00376719865016639,-0.478434145450592,-0.878115355968475,0.0676143914461136,-0.47439306974411,-0.877712666988373,
- 0.0676146969199181,-0.474403500556946,-0.877707004547119,0.218551114201546,-0.465494513511658,-0.857642292976379,0.00691163912415504,-0.479017585515976,-0.877778112888336,0.00685568433254957,-0.491816222667694,-0.870672047138214,-0.0584918111562729,-0.495536595582962,-0.866615355014801,0.00388227240182459,-0.49304872751236,-0.869993031024933,0.309420734643936,-0.465056031942368,-0.829446613788605,0.0583018139004707,-0.512664675712585,-0.85660719871521,0.218628600239754,-0.479565531015396,-0.849834501743317,0.21855740249157,-0.466348975896835,-0.85717636346817,0.0525547303259373,-0.468971520662308,-0.881648302078247,0.00690934201702476,-0.479551821947098,-0.877486348152161,0.0377102643251419,-0.517959237098694,-0.854573667049408,0.0576555877923965,-0.507760584354401,-0.859566748142242,0.309134751558304,-0.46137472987175,-0.831606328487396,-0.125234603881836,-0.424569398164749,-0.896692335605621,0.0445922687649727,-0.408153146505356,-0.911823749542236,0.0180276893079281,-0.406998246908188,-0.913251042366028,-0.150219351053238,-0.48785462975502,-0.859902322292328,-0.258268535137177,-0.479825526475906,-0.838489592075348,-0.0585764274001122,-0.492501080036163,-0.868338346481323,-0.148655980825424,-0.519924759864807,-0.841177523136139,-0.0578540414571762,-0.517458200454712,-0.85375052690506,0.0067616356536746,-0.512387216091156,-0.858727931976318,-0.256564617156982,-0.499582558870316,-0.827400684356689,-0.149388745427132,-0.505504250526428,-0.849793195724487,-0.209702000021935,-0.502052843570709,-0.839028000831604,0.0543702840805054,-0.482793748378754,-0.87404465675354,-0.0823248252272606,-0.495112597942352,-0.864919722080231,0.00688229408115149,-0.485784739255905,-0.8740513920784,-0.0765252932906151,-0.539345383644104,-0.838600277900696,-0.148318991065025,-0.526246428489685,-0.837296962738037,0.00672067934647202,-0.521006226539612,-0.853526413440704,0.049248218536377,-0.443754374980927,-0.894794225692749,-0.118521705269814,-0.460943877696991,-0.879479050636292,-0.0870582461357117,-0.456658929586411,-0.885371923446655,-0.0800734758377075,-0.512642979621887,-0.854860007762909,
- -0.208612695336342,-0.513922452926636,-0.83208441734314,-0.148885399103165,-0.515513360500336,-0.843847811222076,-0.210017636418343,-0.498511493206024,-0.841058194637299,-0.0821004435420036,-0.496880918741226,-0.863926410675049,-0.111871771514416,-0.495241910219193,-0.861522018909454
- }
- TangentsW: *1005 {
- 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
- }
- }
- LayerElementColor: 0 {
- Version: 101
- Name: "colorSet0"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- Colors: *4020 {
- a: 1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,
- 0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,
- 0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,
- 0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0
- }
- ColorIndex: *1005 {
- a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,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,259,260,261,262,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,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,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,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,
- 534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,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,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "UVmap_0"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *1664 {
- a: 0.4990234375,1.1295166015625,0.5107421875,1.318603515625,0.283935546875,1.445556640625,0.5615234375,1.3173828125,0.306396484375,1.472900390625,0.6533203125,1.53662109375,0.60888671875,1.572265625,0.7958984375,1.78955078125,0.420166015625,1.485107421875,0.292236328125,1.521484375,0.174560546875,1.478271484375,0.257568359375,1.7607421875,0.33740234375,1.80126953125,0.347412109375,2.0087890625,0.51513671875,1.84814453125,0.64892578125,1.830078125,0.52734375,2.1748046875,0.6494140625,2.1064453125,0.75048828125,2.1279296875,0.58642578125,2.3134765625,0.671875,2.3876953125,0.450927734375,2.416015625,0.453857421875,2.3212890625,0.3720703125,2.2958984375,0.294189453125,2.375,0.382080078125,2.068359375,0.186767578125,2.1904296875,0.1043701171875,2.1630859375,0.2003173828125,3.380859375,0.43359375,3.587890625,0.08258056640625,3.56640625,0.0078887939453125,3.169921875,0.4453125,3.49609375,0.810546875,3.412109375,0.1475830078125,3.130859375,0.224609375,2.7421875,0.7392578125,3.287109375,0.9033203125,3.009765625,0.5263671875,3.09375,0.822265625,2.9921875,0.794921875,2.7119140625,0.32763671875,2.7802734375,0.66796875,2.755859375,0.28271484375,2.3271484375,0.2122802734375,2.25390625,0.517578125,2.4833984375,0.374755859375,2.2138671875,0.331787109375,1.96875,0.484130859375,2.134765625,0.62939453125,2.3837890625,0.828125,2.2900390625,0.5283203125,2.2587890625,0.4990234375,1.1295166015625,0.5107421875,1.318603515625,0.283935546875,1.445556640625,0.5615234375,1.3173828125,0.5107421875,1.318603515625,0.4990234375,1.1295166015625,0.5107421875,1.318603515625,0.306396484375,1.472900390625,0.283935546875,1.445556640625,0.5615234375,1.3173828125,0.6533203125,1.53662109375,0.5107421875,1.318603515625,0.60888671875,1.572265625,0.5107421875,1.318603515625,0.6533203125,1.53662109375,0.6533203125,1.53662109375,0.7958984375,1.78955078125,0.60888671875,1.572265625,0.306396484375,1.472900390625,0.5107421875,1.318603515625,0.420166015625,1.485107421875,0.60888671875,1.572265625,0.420166015625,1.485107421875,0.5107421875,1.318603515625,
- 0.420166015625,1.485107421875,0.292236328125,1.521484375,0.306396484375,1.472900390625,0.174560546875,1.478271484375,0.306396484375,1.472900390625,0.292236328125,1.521484375,0.292236328125,1.521484375,0.257568359375,1.7607421875,0.174560546875,1.478271484375,0.257568359375,1.7607421875,0.292236328125,1.521484375,0.33740234375,1.80126953125,0.292236328125,1.521484375,0.420166015625,1.485107421875,0.33740234375,1.80126953125,0.33740234375,1.80126953125,0.347412109375,2.0087890625,0.257568359375,1.7607421875,0.60888671875,1.572265625,0.51513671875,1.84814453125,0.420166015625,1.485107421875,0.33740234375,1.80126953125,0.420166015625,1.485107421875,0.51513671875,1.84814453125,0.64892578125,1.830078125,0.51513671875,1.84814453125,0.60888671875,1.572265625,0.64892578125,1.830078125,0.60888671875,1.572265625,0.7958984375,1.78955078125,0.51513671875,1.84814453125,0.52734375,2.1748046875,0.33740234375,1.80126953125,0.51513671875,1.84814453125,0.64892578125,1.830078125,0.52734375,2.1748046875,0.7958984375,1.78955078125,0.6494140625,2.1064453125,0.64892578125,1.830078125,0.52734375,2.1748046875,0.64892578125,1.830078125,0.6494140625,2.1064453125,0.6494140625,2.1064453125,0.7958984375,1.78955078125,0.75048828125,2.1279296875,0.75048828125,2.1279296875,0.58642578125,2.3134765625,0.6494140625,2.1064453125,0.58642578125,2.3134765625,0.52734375,2.1748046875,0.6494140625,2.1064453125,0.58642578125,2.3134765625,0.75048828125,2.1279296875,0.671875,2.3876953125,0.671875,2.3876953125,0.450927734375,2.416015625,0.58642578125,2.3134765625,0.453857421875,2.3212890625,0.52734375,2.1748046875,0.58642578125,2.3134765625,0.450927734375,2.416015625,0.453857421875,2.3212890625,0.58642578125,2.3134765625,0.450927734375,2.416015625,0.3720703125,2.2958984375,0.453857421875,2.3212890625,0.3720703125,2.2958984375,0.52734375,2.1748046875,0.453857421875,2.3212890625,0.3720703125,2.2958984375,0.450927734375,2.416015625,0.294189453125,2.375,0.33740234375,1.80126953125,0.52734375,2.1748046875,0.382080078125,2.068359375,0.3720703125,2.2958984375,0.382080078125,
- 2.068359375,0.52734375,2.1748046875,0.347412109375,2.0087890625,0.33740234375,1.80126953125,0.382080078125,2.068359375,0.186767578125,2.1904296875,0.3720703125,2.2958984375,0.294189453125,2.375,0.382080078125,2.068359375,0.3720703125,2.2958984375,0.186767578125,2.1904296875,0.382080078125,2.068359375,0.186767578125,2.1904296875,0.347412109375,2.0087890625,0.294189453125,2.375,0.1043701171875,2.1630859375,0.186767578125,2.1904296875,0.1043701171875,2.1630859375,0.347412109375,2.0087890625,0.186767578125,2.1904296875,0.4990234375,1.1295166015625,0.5107421875,1.318603515625,0.283935546875,1.445556640625,0.5615234375,1.3173828125,0.5107421875,1.318603515625,0.4990234375,1.1295166015625,0.5107421875,1.318603515625,0.306396484375,1.472900390625,0.283935546875,1.445556640625,0.5615234375,1.3173828125,0.6533203125,1.53662109375,0.5107421875,1.318603515625,0.60888671875,1.572265625,0.5107421875,1.318603515625,0.6533203125,1.53662109375,0.6533203125,1.53662109375,0.7958984375,1.78955078125,0.60888671875,1.572265625,0.306396484375,1.472900390625,0.5107421875,1.318603515625,0.420166015625,1.485107421875,0.60888671875,1.572265625,0.420166015625,1.485107421875,0.5107421875,1.318603515625,0.420166015625,1.485107421875,0.292236328125,1.521484375,0.306396484375,1.472900390625,0.174560546875,1.478271484375,0.306396484375,1.472900390625,0.292236328125,1.521484375,0.292236328125,1.521484375,0.257568359375,1.7607421875,0.174560546875,1.478271484375,0.257568359375,1.7607421875,0.292236328125,1.521484375,0.33740234375,1.80126953125,0.292236328125,1.521484375,0.420166015625,1.485107421875,0.33740234375,1.80126953125,0.33740234375,1.80126953125,0.347412109375,2.0087890625,0.257568359375,1.7607421875,0.60888671875,1.572265625,0.51513671875,1.84814453125,0.420166015625,1.485107421875,0.33740234375,1.80126953125,0.420166015625,1.485107421875,0.51513671875,1.84814453125,0.64892578125,1.830078125,0.51513671875,1.84814453125,0.60888671875,1.572265625,0.64892578125,1.830078125,0.60888671875,1.572265625,0.7958984375,1.78955078125,0.51513671875,1.84814453125,
- 0.52734375,2.1748046875,0.33740234375,1.80126953125,0.51513671875,1.84814453125,0.64892578125,1.830078125,0.52734375,2.1748046875,0.7958984375,1.78955078125,0.6494140625,2.1064453125,0.64892578125,1.830078125,0.52734375,2.1748046875,0.64892578125,1.830078125,0.6494140625,2.1064453125,0.6494140625,2.1064453125,0.7958984375,1.78955078125,0.75048828125,2.1279296875,0.75048828125,2.1279296875,0.58642578125,2.3134765625,0.6494140625,2.1064453125,0.58642578125,2.3134765625,0.52734375,2.1748046875,0.6494140625,2.1064453125,0.58642578125,2.3134765625,0.75048828125,2.1279296875,0.671875,2.3876953125,0.671875,2.3876953125,0.450927734375,2.416015625,0.58642578125,2.3134765625,0.453857421875,2.3212890625,0.52734375,2.1748046875,0.58642578125,2.3134765625,0.450927734375,2.416015625,0.453857421875,2.3212890625,0.58642578125,2.3134765625,0.450927734375,2.416015625,0.3720703125,2.2958984375,0.453857421875,2.3212890625,0.3720703125,2.2958984375,0.52734375,2.1748046875,0.453857421875,2.3212890625,0.3720703125,2.2958984375,0.450927734375,2.416015625,0.294189453125,2.375,0.33740234375,1.80126953125,0.52734375,2.1748046875,0.382080078125,2.068359375,0.3720703125,2.2958984375,0.382080078125,2.068359375,0.52734375,2.1748046875,0.347412109375,2.0087890625,0.33740234375,1.80126953125,0.382080078125,2.068359375,0.186767578125,2.1904296875,0.3720703125,2.2958984375,0.294189453125,2.375,0.382080078125,2.068359375,0.3720703125,2.2958984375,0.186767578125,2.1904296875,0.382080078125,2.068359375,0.186767578125,2.1904296875,0.347412109375,2.0087890625,0.294189453125,2.375,0.1043701171875,2.1630859375,0.186767578125,2.1904296875,0.1043701171875,2.1630859375,0.347412109375,2.0087890625,0.186767578125,2.1904296875,0.4990234375,1.1295166015625,0.5107421875,1.318603515625,0.283935546875,1.445556640625,0.5615234375,1.3173828125,0.5107421875,1.318603515625,0.4990234375,1.1295166015625,0.5107421875,1.318603515625,0.306396484375,1.472900390625,0.283935546875,1.445556640625,0.5615234375,1.3173828125,0.6533203125,1.53662109375,0.5107421875,1.318603515625,0.60888671875,
- 1.572265625,0.5107421875,1.318603515625,0.6533203125,1.53662109375,0.6533203125,1.53662109375,0.7958984375,1.78955078125,0.60888671875,1.572265625,0.306396484375,1.472900390625,0.5107421875,1.318603515625,0.420166015625,1.485107421875,0.60888671875,1.572265625,0.420166015625,1.485107421875,0.5107421875,1.318603515625,0.420166015625,1.485107421875,0.292236328125,1.521484375,0.306396484375,1.472900390625,0.174560546875,1.478271484375,0.306396484375,1.472900390625,0.292236328125,1.521484375,0.292236328125,1.521484375,0.257568359375,1.7607421875,0.174560546875,1.478271484375,0.257568359375,1.7607421875,0.292236328125,1.521484375,0.33740234375,1.80126953125,0.292236328125,1.521484375,0.420166015625,1.485107421875,0.33740234375,1.80126953125,0.33740234375,1.80126953125,0.347412109375,2.0087890625,0.257568359375,1.7607421875,0.60888671875,1.572265625,0.51513671875,1.84814453125,0.420166015625,1.485107421875,0.33740234375,1.80126953125,0.420166015625,1.485107421875,0.51513671875,1.84814453125,0.64892578125,1.830078125,0.51513671875,1.84814453125,0.60888671875,1.572265625,0.64892578125,1.830078125,0.60888671875,1.572265625,0.7958984375,1.78955078125,0.51513671875,1.84814453125,0.52734375,2.1748046875,0.33740234375,1.80126953125,0.51513671875,1.84814453125,0.64892578125,1.830078125,0.52734375,2.1748046875,0.7958984375,1.78955078125,0.6494140625,2.1064453125,0.64892578125,1.830078125,0.52734375,2.1748046875,0.64892578125,1.830078125,0.6494140625,2.1064453125,0.6494140625,2.1064453125,0.7958984375,1.78955078125,0.75048828125,2.1279296875,0.75048828125,2.1279296875,0.58642578125,2.3134765625,0.6494140625,2.1064453125,0.58642578125,2.3134765625,0.52734375,2.1748046875,0.6494140625,2.1064453125,0.58642578125,2.3134765625,0.75048828125,2.1279296875,0.671875,2.3876953125,0.671875,2.3876953125,0.450927734375,2.416015625,0.58642578125,2.3134765625,0.453857421875,2.3212890625,0.52734375,2.1748046875,0.58642578125,2.3134765625,0.450927734375,2.416015625,0.453857421875,2.3212890625,0.58642578125,2.3134765625,0.450927734375,2.416015625,
- 0.3720703125,2.2958984375,0.453857421875,2.3212890625,0.3720703125,2.2958984375,0.52734375,2.1748046875,0.453857421875,2.3212890625,0.3720703125,2.2958984375,0.450927734375,2.416015625,0.294189453125,2.375,0.33740234375,1.80126953125,0.52734375,2.1748046875,0.382080078125,2.068359375,0.3720703125,2.2958984375,0.382080078125,2.068359375,0.52734375,2.1748046875,0.347412109375,2.0087890625,0.33740234375,1.80126953125,0.382080078125,2.068359375,0.186767578125,2.1904296875,0.3720703125,2.2958984375,0.294189453125,2.375,0.382080078125,2.068359375,0.3720703125,2.2958984375,0.186767578125,2.1904296875,0.382080078125,2.068359375,0.186767578125,2.1904296875,0.347412109375,2.0087890625,0.294189453125,2.375,0.1043701171875,2.1630859375,0.186767578125,2.1904296875,0.1043701171875,2.1630859375,0.347412109375,2.0087890625,0.186767578125,2.1904296875,0.2003173828125,3.380859375,0.43359375,3.587890625,0.08258056640625,3.56640625,0.0078887939453125,3.169921875,0.2003173828125,3.380859375,0.08258056640625,3.56640625,0.43359375,3.587890625,0.2003173828125,3.380859375,0.4453125,3.49609375,0.810546875,3.412109375,0.43359375,3.587890625,0.4453125,3.49609375,0.2003173828125,3.380859375,0.0078887939453125,3.169921875,0.1475830078125,3.130859375,0.224609375,2.7421875,0.1475830078125,3.130859375,0.0078887939453125,3.169921875,0.4453125,3.49609375,0.7392578125,3.287109375,0.810546875,3.412109375,0.9033203125,3.009765625,0.810546875,3.412109375,0.7392578125,3.287109375,0.4453125,3.49609375,0.2003173828125,3.380859375,0.5263671875,3.09375,0.7392578125,3.287109375,0.4453125,3.49609375,0.5263671875,3.09375,0.2003173828125,3.380859375,0.1475830078125,3.130859375,0.5263671875,3.09375,0.9033203125,3.009765625,0.7392578125,3.287109375,0.822265625,2.9921875,0.822265625,2.9921875,0.7392578125,3.287109375,0.5263671875,3.09375,0.822265625,2.9921875,0.794921875,2.7119140625,0.9033203125,3.009765625,0.5263671875,3.09375,0.1475830078125,3.130859375,0.32763671875,2.7802734375,0.1475830078125,3.130859375,0.224609375,2.7421875,0.32763671875,2.7802734375,0.66796875,
- 2.755859375,0.822265625,2.9921875,0.5263671875,3.09375,0.794921875,2.7119140625,0.822265625,2.9921875,0.66796875,2.755859375,0.28271484375,2.3271484375,0.32763671875,2.7802734375,0.224609375,2.7421875,0.224609375,2.7421875,0.2122802734375,2.25390625,0.28271484375,2.3271484375,0.517578125,2.4833984375,0.5263671875,3.09375,0.32763671875,2.7802734375,0.32763671875,2.7802734375,0.28271484375,2.3271484375,0.517578125,2.4833984375,0.517578125,2.4833984375,0.66796875,2.755859375,0.5263671875,3.09375,0.2122802734375,2.25390625,0.374755859375,2.2138671875,0.28271484375,2.3271484375,0.28271484375,2.3271484375,0.374755859375,2.2138671875,0.517578125,2.4833984375,0.331787109375,1.96875,0.374755859375,2.2138671875,0.2122802734375,2.25390625,0.484130859375,2.134765625,0.374755859375,2.2138671875,0.331787109375,1.96875,0.62939453125,2.3837890625,0.794921875,2.7119140625,0.66796875,2.755859375,0.62939453125,2.3837890625,0.66796875,2.755859375,0.517578125,2.4833984375,0.794921875,2.7119140625,0.62939453125,2.3837890625,0.828125,2.2900390625,0.374755859375,2.2138671875,0.5283203125,2.2587890625,0.517578125,2.4833984375,0.5283203125,2.2587890625,0.62939453125,2.3837890625,0.517578125,2.4833984375,0.374755859375,2.2138671875,0.484130859375,2.134765625,0.5283203125,2.2587890625,0.5283203125,2.2587890625,0.828125,2.2900390625,0.62939453125,2.3837890625,0.828125,2.2900390625,0.5283203125,2.2587890625,0.484130859375,2.134765625,0.2003173828125,3.380859375,0.43359375,3.587890625,0.08258056640625,3.56640625,0.0078887939453125,3.169921875,0.2003173828125,3.380859375,0.08258056640625,3.56640625,0.43359375,3.587890625,0.2003173828125,3.380859375,0.4453125,3.49609375,0.810546875,3.412109375,0.43359375,3.587890625,0.4453125,3.49609375,0.2003173828125,3.380859375,0.0078887939453125,3.169921875,0.1475830078125,3.130859375,0.224609375,2.7421875,0.1475830078125,3.130859375,0.0078887939453125,3.169921875,0.4453125,3.49609375,0.7392578125,3.287109375,0.810546875,3.412109375,0.9033203125,3.009765625,0.810546875,3.412109375,0.7392578125,3.287109375,0.4453125,
- 3.49609375,0.2003173828125,3.380859375,0.5263671875,3.09375,0.7392578125,3.287109375,0.4453125,3.49609375,0.5263671875,3.09375,0.2003173828125,3.380859375,0.1475830078125,3.130859375,0.5263671875,3.09375,0.9033203125,3.009765625,0.7392578125,3.287109375,0.822265625,2.9921875,0.822265625,2.9921875,0.7392578125,3.287109375,0.5263671875,3.09375,0.822265625,2.9921875,0.794921875,2.7119140625,0.9033203125,3.009765625,0.5263671875,3.09375,0.1475830078125,3.130859375,0.32763671875,2.7802734375,0.1475830078125,3.130859375,0.224609375,2.7421875,0.32763671875,2.7802734375,0.66796875,2.755859375,0.822265625,2.9921875,0.5263671875,3.09375,0.794921875,2.7119140625,0.822265625,2.9921875,0.66796875,2.755859375,0.28271484375,2.3271484375,0.32763671875,2.7802734375,0.224609375,2.7421875,0.224609375,2.7421875,0.2122802734375,2.25390625,0.28271484375,2.3271484375,0.517578125,2.4833984375,0.5263671875,3.09375,0.32763671875,2.7802734375,0.32763671875,2.7802734375,0.28271484375,2.3271484375,0.517578125,2.4833984375,0.517578125,2.4833984375,0.66796875,2.755859375,0.5263671875,3.09375,0.2122802734375,2.25390625,0.374755859375,2.2138671875,0.28271484375,2.3271484375,0.28271484375,2.3271484375,0.374755859375,2.2138671875,0.517578125,2.4833984375,0.331787109375,1.96875,0.374755859375,2.2138671875,0.2122802734375,2.25390625,0.484130859375,2.134765625,0.374755859375,2.2138671875,0.331787109375,1.96875,0.62939453125,2.3837890625,0.794921875,2.7119140625,0.66796875,2.755859375,0.62939453125,2.3837890625,0.66796875,2.755859375,0.517578125,2.4833984375,0.794921875,2.7119140625,0.62939453125,2.3837890625,0.828125,2.2900390625,0.374755859375,2.2138671875,0.5283203125,2.2587890625,0.517578125,2.4833984375,0.5283203125,2.2587890625,0.62939453125,2.3837890625,0.517578125,2.4833984375,0.374755859375,2.2138671875,0.484130859375,2.134765625,0.5283203125,2.2587890625,0.5283203125,2.2587890625,0.828125,2.2900390625,0.62939453125,2.3837890625,0.828125,2.2900390625,0.5283203125,2.2587890625,0.484130859375,2.134765625,0.2003173828125,3.380859375,0.43359375,3.587890625,
- 0.08258056640625,3.56640625,0.0078887939453125,3.169921875,0.2003173828125,3.380859375,0.08258056640625,3.56640625,0.43359375,3.587890625,0.2003173828125,3.380859375,0.4453125,3.49609375,0.810546875,3.412109375,0.43359375,3.587890625,0.4453125,3.49609375,0.2003173828125,3.380859375,0.0078887939453125,3.169921875,0.1475830078125,3.130859375,0.224609375,2.7421875,0.1475830078125,3.130859375,0.0078887939453125,3.169921875,0.4453125,3.49609375,0.7392578125,3.287109375,0.810546875,3.412109375,0.9033203125,3.009765625,0.810546875,3.412109375,0.7392578125,3.287109375,0.4453125,3.49609375,0.2003173828125,3.380859375,0.5263671875,3.09375,0.7392578125,3.287109375,0.4453125,3.49609375,0.5263671875,3.09375,0.2003173828125,3.380859375,0.1475830078125,3.130859375,0.5263671875,3.09375,0.9033203125,3.009765625,0.7392578125,3.287109375,0.822265625,2.9921875,0.822265625,2.9921875,0.7392578125,3.287109375,0.5263671875,3.09375,0.822265625,2.9921875,0.794921875,2.7119140625,0.9033203125,3.009765625,0.5263671875,3.09375,0.1475830078125,3.130859375,0.32763671875,2.7802734375,0.1475830078125,3.130859375,0.224609375,2.7421875,0.32763671875,2.7802734375,0.66796875,2.755859375,0.822265625,2.9921875,0.5263671875,3.09375,0.794921875,2.7119140625,0.822265625,2.9921875,0.66796875,2.755859375,0.28271484375,2.3271484375,0.32763671875,2.7802734375,0.224609375,2.7421875,0.224609375,2.7421875,0.2122802734375,2.25390625,0.28271484375,2.3271484375,0.517578125,2.4833984375,0.5263671875,3.09375,0.32763671875,2.7802734375,0.32763671875,2.7802734375,0.28271484375,2.3271484375,0.517578125,2.4833984375,0.517578125,2.4833984375,0.66796875,2.755859375,0.5263671875,3.09375,0.2122802734375,2.25390625,0.374755859375,2.2138671875,0.28271484375,2.3271484375,0.28271484375,2.3271484375,0.374755859375,2.2138671875,0.517578125,2.4833984375,0.331787109375,1.96875,0.374755859375,2.2138671875,0.2122802734375,2.25390625,0.484130859375,2.134765625,0.374755859375,2.2138671875,0.331787109375,1.96875,0.62939453125,2.3837890625,0.794921875,2.7119140625,0.66796875,2.755859375,0.62939453125,
- 2.3837890625,0.66796875,2.755859375,0.517578125,2.4833984375,0.794921875,2.7119140625,0.62939453125,2.3837890625,0.828125,2.2900390625,0.374755859375,2.2138671875,0.5283203125,2.2587890625,0.517578125,2.4833984375,0.5283203125,2.2587890625,0.62939453125,2.3837890625,0.517578125,2.4833984375,0.374755859375,2.2138671875,0.484130859375,2.134765625,0.5283203125,2.2587890625,0.5283203125,2.2587890625,0.828125,2.2900390625,0.62939453125,2.3837890625,0.828125,2.2900390625,0.5283203125,2.2587890625,0.484130859375,2.134765625,0.2003173828125,3.380859375,0.43359375,3.587890625,0.08258056640625,3.56640625,0.0078887939453125,3.169921875,0.2003173828125,3.380859375,0.08258056640625,3.56640625,0.43359375,3.587890625,0.2003173828125,3.380859375,0.4453125,3.49609375,0.810546875,3.412109375,0.43359375,3.587890625,0.4453125,3.49609375,0.2003173828125,3.380859375,0.0078887939453125,3.169921875,0.1475830078125,3.130859375,0.224609375,2.7421875,0.1475830078125,3.130859375,0.0078887939453125,3.169921875,0.4453125,3.49609375,0.7392578125,3.287109375,0.810546875,3.412109375,0.9033203125,3.009765625,0.810546875,3.412109375,0.7392578125,3.287109375,0.4453125,3.49609375,0.2003173828125,3.380859375,0.5263671875,3.09375,0.7392578125,3.287109375,0.4453125,3.49609375,0.5263671875,3.09375,0.2003173828125,3.380859375,0.1475830078125,3.130859375,0.5263671875,3.09375,0.9033203125,3.009765625,0.7392578125,3.287109375,0.822265625,2.9921875,0.822265625,2.9921875,0.7392578125,3.287109375,0.5263671875,3.09375,0.822265625,2.9921875,0.794921875,2.7119140625,0.9033203125,3.009765625,0.5263671875,3.09375,0.1475830078125,3.130859375,0.32763671875,2.7802734375,0.1475830078125,3.130859375,0.224609375,2.7421875,0.32763671875,2.7802734375,0.66796875,2.755859375,0.822265625,2.9921875,0.5263671875,3.09375,0.794921875,2.7119140625,0.822265625,2.9921875,0.66796875,2.755859375,0.28271484375,2.3271484375,0.32763671875,2.7802734375,0.224609375,2.7421875,0.224609375,2.7421875,0.2122802734375,2.25390625,0.28271484375,2.3271484375,0.517578125,2.4833984375,0.5263671875,3.09375,
- 0.32763671875,2.7802734375,0.32763671875,2.7802734375,0.28271484375,2.3271484375,0.517578125,2.4833984375,0.517578125,2.4833984375,0.66796875,2.755859375,0.5263671875,3.09375,0.2122802734375,2.25390625,0.374755859375,2.2138671875,0.28271484375,2.3271484375,0.28271484375,2.3271484375,0.374755859375,2.2138671875,0.517578125,2.4833984375,0.331787109375,1.96875,0.374755859375,2.2138671875,0.2122802734375,2.25390625,0.484130859375,2.134765625,0.374755859375,2.2138671875,0.331787109375,1.96875,0.62939453125,2.3837890625,0.794921875,2.7119140625,0.66796875,2.755859375,0.62939453125,2.3837890625,0.66796875,2.755859375,0.517578125,2.4833984375,0.794921875,2.7119140625,0.62939453125,2.3837890625,0.828125,2.2900390625,0.374755859375,2.2138671875,0.5283203125,2.2587890625,0.517578125,2.4833984375,0.5283203125,2.2587890625,0.62939453125,2.3837890625,0.517578125,2.4833984375,0.374755859375,2.2138671875,0.484130859375,2.134765625,0.5283203125,2.2587890625,0.5283203125,2.2587890625,0.828125,2.2900390625,0.62939453125,2.3837890625,0.828125,2.2900390625,0.5283203125,2.2587890625,0.484130859375,2.134765625
- }
- UVIndex: *1005 {
- a: 0,1,2,3,1,0,1,4,2,3,5,1,6,1,5,5,7,6,4,1,8,6,8,1,8,9,4,10,4,9,9,11,10,11,9,12,9,8,12,12,13,11,6,14,8,12,8,14,15,14,6,15,6,7,14,16,12,14,15,16,7,17,15,16,15,17,17,7,18,18,19,17,19,16,17,19,18,20,20,21,19,22,16,19,21,22,19,21,23,22,23,16,22,23,21,24,12,16,25,23,25,16,13,12,25,26,23,24,25,23,26,25,26,13,24,27,26,27,13,26,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,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,259,260,261,262,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,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,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,28,29,30,31,28,30,29,28,32,33,29,32,28,31,34,35,34,31,32,36,33,37,33,36,32,28,38,36,32,38,28,34,38,37,36,39,39,36,38,39,40,37,38,34,41,34,35,41,42,39,38,40,39,42,43,41,35,35,44,43,45,38,41,41,43,45,45,42,38,44,46,43,43,46,45,47,46,44,48,46,47,49,40,42,49,42,45,40,49,50,46,51,45,51,49,45,46,48,51,51,50,49,50,51,48,
- 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,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,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,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831
- }
- }
- LayerElementUV: 1 {
- Version: 101
- Name: "LightMapUV"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *464 {
- a: 0.8193359375,0.1103515625,0.76513671875,0.107421875,0.72900390625,0.1708984375,0.765625,0.0927734375,0.72119140625,0.16455078125,0.70263671875,0.0673828125,0.6923828125,0.07958984375,0.63037109375,0.02685546875,0.71728515625,0.1328125,0.70703125,0.1689453125,0.71923828125,0.20166015625,0.638671875,0.1787109375,0.626953125,0.15625,0.5673828125,0.1533203125,0.61328125,0.10595703125,0.61865234375,0.068359375,0.51953125,0.1025390625,0.53955078125,0.068359375,0.533203125,0.0400390625,0.47998046875,0.0859375,0.458740234375,0.06201171875,0.45068359375,0.1240234375,0.477783203125,0.123046875,0.485107421875,0.146484375,0.46240234375,0.16796875,0.55029296875,0.1435546875,0.51513671875,0.1982421875,0.52294921875,0.2216796875,0.69287109375,0.598388671875,0.69580078125,0.544189453125,0.63232421875,0.5078125,0.71044921875,0.544677734375,0.638671875,0.5,0.736328125,0.48193359375,0.7236328125,0.4716796875,0.7763671875,0.4091796875,0.67041015625,0.49658203125,0.634765625,0.486328125,0.6015625,0.49853515625,0.625,0.41748046875,0.6474609375,0.40576171875,0.64990234375,0.3466796875,0.697265625,0.392578125,0.73486328125,0.39794921875,0.70068359375,0.298828125,0.73486328125,0.318359375,0.76318359375,0.3125,0.71728515625,0.25927734375,0.7412109375,0.23779296875,0.67919921875,0.2294921875,0.68017578125,0.2568359375,0.6572265625,0.26416015625,0.63525390625,0.24169921875,0.65966796875,0.32958984375,0.60498046875,0.29443359375,0.58154296875,0.30224609375,0.8896484375,0.5166015625,0.892578125,0.46240234375,0.8291015625,0.42578125,0.9072265625,0.462890625,0.83544921875,0.41796875,0.9326171875,0.39990234375,0.92041015625,0.3896484375,0.97314453125,0.3271484375,0.8671875,0.41455078125,0.8310546875,0.404296875,0.79833984375,0.41650390625,0.8212890625,0.33544921875,0.84375,0.32421875,0.8466796875,0.2646484375,0.89404296875,0.310546875,0.931640625,0.31591796875,0.8974609375,0.216796875,0.931640625,0.236328125,0.9599609375,0.23046875,0.9140625,0.17724609375,0.93798828125,0.15576171875,0.8759765625,0.14794921875,0.876953125,0.1748046875,
- 0.853515625,0.18212890625,0.83203125,0.15966796875,0.8564453125,0.24755859375,0.8017578125,0.21240234375,0.7783203125,0.22021484375,0.4140625,0.14794921875,0.41748046875,0.2021484375,0.353759765625,0.23828125,0.431640625,0.20166015625,0.35986328125,0.24609375,0.45751953125,0.2646484375,0.445068359375,0.27490234375,0.49755859375,0.3369140625,0.391845703125,0.24951171875,0.35595703125,0.26025390625,0.322998046875,0.24755859375,0.34619140625,0.32861328125,0.36865234375,0.34033203125,0.37158203125,0.39990234375,0.418701171875,0.35400390625,0.456298828125,0.3486328125,0.422119140625,0.447265625,0.45654296875,0.427734375,0.48486328125,0.43408203125,0.438720703125,0.4873046875,0.462646484375,0.50830078125,0.400634765625,0.5166015625,0.4013671875,0.4892578125,0.37841796875,0.482421875,0.3564453125,0.504638671875,0.38134765625,0.4169921875,0.326416015625,0.4521484375,0.30322265625,0.4443359375,0.2496337890625,0.18896484375,0.185791015625,0.13134765625,0.28173828125,0.1376953125,0.30224609375,0.248046875,0.1826171875,0.1572265625,0.08270263671875,0.1806640625,0.26416015625,0.2587890625,0.2430419921875,0.36669921875,0.10223388671875,0.21533203125,0.057373046875,0.29248046875,0.160400390625,0.26904296875,0.07952880859375,0.29736328125,0.0870361328125,0.37548828125,0.21484375,0.3564453125,0.12176513671875,0.36328125,0.2271728515625,0.482421875,0.2464599609375,0.502685546875,0.162841796875,0.43896484375,0.201904296875,0.513916015625,0.2137451171875,0.58203125,0.1719970703125,0.535888671875,0.13232421875,0.466796875,0.07794189453125,0.49267578125,0.159912109375,0.50146484375,0.4462890625,0.598876953125,0.382568359375,0.541259765625,0.478515625,0.547119140625,0.4990234375,0.657470703125,0.37939453125,0.566650390625,0.279296875,0.590087890625,0.460693359375,0.66845703125,0.439697265625,0.776611328125,0.298828125,0.625,0.25390625,0.7021484375,0.357177734375,0.6787109375,0.276123046875,0.70703125,0.28369140625,0.7850341796875,0.411376953125,0.7659912109375,0.318359375,0.772705078125,0.423828125,0.89208984375,0.443115234375,0.9124755859375,
- 0.359619140625,0.8486328125,0.398681640625,0.923583984375,0.410400390625,0.991806030273438,0.36865234375,0.94561767578125,0.328857421875,0.87628173828125,0.274658203125,0.90240478515625,0.356689453125,0.91107177734375,0.9052734375,0.598876953125,0.84130859375,0.541259765625,0.9375,0.547119140625,0.9580078125,0.657470703125,0.83837890625,0.566650390625,0.73828125,0.590087890625,0.91943359375,0.66845703125,0.8984375,0.776611328125,0.7578125,0.625,0.712890625,0.7021484375,0.81591796875,0.6787109375,0.73486328125,0.70703125,0.74267578125,0.7850341796875,0.87060546875,0.7659912109375,0.77734375,0.772705078125,0.8828125,0.89208984375,0.90185546875,0.9124755859375,0.818359375,0.8486328125,0.857421875,0.923583984375,0.869140625,0.991806030273438,0.82763671875,0.94561767578125,0.78759765625,0.87628173828125,0.7333984375,0.90240478515625,0.8154296875,0.91107177734375,0.060821533203125,0.9342041015625,0.1246337890625,0.991806030273438,0.02862548828125,0.985824584960938,0.0081939697265625,0.87548828125,0.1278076171875,0.966278076171875,0.227783203125,0.942901611328125,0.046417236328125,0.8646240234375,0.06744384765625,0.7564697265625,0.208251953125,0.9080810546875,0.253173828125,0.8309326171875,0.1500244140625,0.8543701171875,0.23095703125,0.8260498046875,0.2235107421875,0.748046875,0.09564208984375,0.76708984375,0.188720703125,0.76025390625,0.0833740234375,0.640869140625,0.0640869140625,0.62060546875,0.1475830078125,0.6845703125,0.1085205078125,0.609375,0.0968017578125,0.541259765625,0.138427734375,0.58740234375,0.17822265625,0.65673828125,0.2325439453125,0.630615234375,0.1505126953125,0.6220703125,0.51953125,0.9342041015625,0.58349609375,0.991806030273438,0.487548828125,0.985824584960938,0.467041015625,0.87548828125,0.58642578125,0.966278076171875,0.6865234375,0.942901611328125,0.50537109375,0.8646240234375,0.5263671875,0.7564697265625,0.6669921875,0.9080810546875,0.7119140625,0.8309326171875,0.60888671875,0.8543701171875,0.68994140625,0.8260498046875,0.68212890625,0.748046875,0.5546875,0.76708984375,0.6474609375,0.76025390625,
- 0.5419921875,0.640869140625,0.52294921875,0.62060546875,0.6064453125,0.6845703125,0.5673828125,0.609375,0.5556640625,0.541259765625,0.59716796875,0.58740234375,0.63720703125,0.65673828125,0.69140625,0.630615234375,0.609375,0.6220703125
- }
- UVIndex: *1005 {
- a: 0,1,2,3,1,0,1,4,2,3,5,1,6,1,5,5,7,6,4,1,8,6,8,1,8,9,4,10,4,9,9,11,10,11,9,12,9,8,12,12,13,11,6,14,8,12,8,14,15,14,6,15,6,7,14,16,12,14,15,16,7,17,15,16,15,17,17,7,18,18,19,17,19,16,17,19,18,20,20,21,19,22,16,19,21,22,19,21,23,22,23,16,22,23,21,24,12,16,25,23,25,16,13,12,25,26,23,24,25,23,26,25,26,13,24,27,26,27,13,26,28,29,30,31,29,28,29,32,30,31,33,29,34,29,33,33,35,34,32,29,36,34,36,29,36,37,32,38,32,37,37,39,38,39,37,40,37,36,40,40,41,39,34,42,36,40,36,42,43,42,34,43,34,35,42,44,40,42,43,44,35,45,43,44,43,45,45,35,46,46,47,45,47,44,45,47,46,48,48,49,47,50,44,47,49,50,47,49,51,50,51,44,50,51,49,52,40,44,53,51,53,44,41,40,53,54,51,52,53,51,54,53,54,41,52,55,54,55,41,54,56,57,58,59,57,56,57,60,58,59,61,57,62,57,61,61,63,62,60,57,64,62,64,57,64,65,60,66,60,65,65,67,66,67,65,68,65,64,68,68,69,67,62,70,64,68,64,70,71,70,62,71,62,63,70,72,68,70,71,72,63,73,71,72,71,73,73,63,74,74,75,73,75,72,73,75,74,76,76,77,75,78,72,75,77,78,75,77,79,78,79,72,78,79,77,80,68,72,81,79,81,72,69,68,81,82,79,80,81,79,82,81,82,69,80,83,82,83,69,82,84,85,86,87,85,84,85,88,86,87,89,85,90,85,89,89,91,90,88,85,92,90,92,85,92,93,88,94,88,93,93,95,94,95,93,96,93,92,96,96,97,95,90,98,92,96,92,98,99,98,90,99,90,91,98,100,96,98,99,100,91,101,99,100,99,101,101,91,102,102,103,101,103,100,101,103,102,104,104,105,103,106,100,103,105,106,103,105,107,106,107,100,106,107,105,108,96,100,109,107,109,100,97,96,109,110,107,108,109,107,110,109,110,97,108,111,110,111,97,110,112,113,114,115,112,114,113,112,116,117,113,116,112,115,118,119,118,115,116,120,117,121,117,120,116,112,122,120,116,122,112,118,122,121,120,123,123,120,122,123,124,121,122,118,125,118,119,125,126,123,122,124,123,126,127,125,119,119,128,127,129,122,125,125,127,129,129,126,122,128,130,127,127,130,129,131,130,128,132,130,131,133,124,126,133,126,129,124,133,134,130,135,129,135,133,129,130,132,135,135,134,133,134,135,132,136,137,138,139,136,138,137,136,140,141,137,140,136,139,142,143,142,139,140,144,141,145,141,144,140,136,146,144,140,146,136,142,146,145,144,147,147,144,146,
- 147,148,145,146,142,149,142,143,149,150,147,146,148,147,150,151,149,143,143,152,151,153,146,149,149,151,153,153,150,146,152,154,151,151,154,153,155,154,152,156,154,155,157,148,150,157,150,153,148,157,158,154,159,153,159,157,153,154,156,159,159,158,157,158,159,156,160,161,162,163,160,162,161,160,164,165,161,164,160,163,166,167,166,163,164,168,165,169,165,168,164,160,170,168,164,170,160,166,170,169,168,171,171,168,170,171,172,169,170,166,173,166,167,173,174,171,170,172,171,174,175,173,167,167,176,175,177,170,173,173,175,177,177,174,170,176,178,175,175,178,177,179,178,176,180,178,179,181,172,174,181,174,177,172,181,182,178,183,177,183,181,177,178,180,183,183,182,181,182,183,180,184,185,186,187,184,186,185,184,188,189,185,188,184,187,190,191,190,187,188,192,189,193,189,192,188,184,194,192,188,194,184,190,194,193,192,195,195,192,194,195,196,193,194,190,197,190,191,197,198,195,194,196,195,198,199,197,191,191,200,199,201,194,197,197,199,201,201,198,194,200,202,199,199,202,201,203,202,200,204,202,203,205,196,198,205,198,201,196,205,206,202,207,201,207,205,201,202,204,207,207,206,205,206,207,204,208,209,210,211,208,210,209,208,212,213,209,212,208,211,214,215,214,211,212,216,213,217,213,216,212,208,218,216,212,218,208,214,218,217,216,219,219,216,218,219,220,217,218,214,221,214,215,221,222,219,218,220,219,222,223,221,215,215,224,223,225,218,221,221,223,225,225,222,218,224,226,223,223,226,225,227,226,224,228,226,227,229,220,222,229,222,225,220,229,230,226,231,225,231,229,225,226,228,231,231,230,229,230,231,228
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *558 {
- 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,0,0,0,0,0,0,0,0,0
- }
- }
- LayerElementMaterial: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "AllSame"
- ReferenceInformationType: "IndexToDirect"
- Materials: *1 {
- a: 0
- }
- }
- Layer: 0 {
- Version: 100
- LayerElement: {
- Type: "LayerElementNormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementBinormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementTangent"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementMaterial"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementColor"
- 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
- }
- }
- }
- Model: 2268468968544, "Model::SM_Ivy_Preset_05", "Null" {
- Version: 232
- Properties70: {
- P: "RotationActive", "bool", "", "",1
- P: "InheritType", "enum", "", "",1
- P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
- P: "DefaultAttributeIndex", "int", "Integer", "",0
- }
- Shading: Y
- Culling: "CullingOff"
- }
- Model: 2268469003344, "Model::LOD_Group_SM_Ivy_Preset_05", "LodGroup" {
- Version: 232
- Properties70: {
- P: "RotationActive", "bool", "", "",1
- P: "InheritType", "enum", "", "",1
- P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
- P: "DefaultAttributeIndex", "int", "Integer", "",0
- }
- Shading: Y
- Culling: "CullingOff"
- }
- Model: 2268468973184, "Model::SM_Ivy_Preset_05_LOD0", "Mesh" {
- Version: 232
- Properties70: {
- P: "RotationActive", "bool", "", "",1
- P: "InheritType", "enum", "", "",1
- P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
- P: "DefaultAttributeIndex", "int", "Integer", "",0
- P: "currentUVSet", "KString", "", "U", "UVmap_0"
- }
- Shading: T
- Culling: "CullingOff"
- }
- Model: 2268469005664, "Model::SM_Ivy_Preset_05_LOD1", "Mesh" {
- Version: 232
- Properties70: {
- P: "RotationActive", "bool", "", "",1
- P: "InheritType", "enum", "", "",1
- P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
- P: "DefaultAttributeIndex", "int", "Integer", "",0
- P: "currentUVSet", "KString", "", "U", "UVmap_0"
- }
- Shading: T
- Culling: "CullingOff"
- }
- Model: 2268469007984, "Model::SM_Ivy_Preset_05_LOD2", "Mesh" {
- Version: 232
- Properties70: {
- P: "RotationActive", "bool", "", "",1
- P: "InheritType", "enum", "", "",1
- P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
- P: "DefaultAttributeIndex", "int", "Integer", "",0
- P: "currentUVSet", "KString", "", "U", "UVmap_0"
- }
- Shading: T
- Culling: "CullingOff"
- }
- Material: 2267913041120, "Material::MI_Ivy_Tileable_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: 2267913034880, "Material::MI_Ivy_Atlas_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
- }
- }
- Video: 2268161659952, "Video::file40", "Clip" {
- Type: "Clip"
- Properties70: {
- P: "Path", "KString", "XRefUrl", "", "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Ivy_Tileable_01_BC.png"
- }
- UseMipMap: 0
- Filename: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Ivy_Tileable_01_BC.png"
- RelativeFilename: "..\..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Ivy_Tileable_01_BC.png"
- }
- Video: 2268161675952, "Video::file42", "Clip" {
- Type: "Clip"
- Properties70: {
- P: "Path", "KString", "XRefUrl", "", "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Ivy_Atlas_01_BC.png"
- }
- UseMipMap: 0
- Filename: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Ivy_Atlas_01_BC.png"
- RelativeFilename: "..\..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Ivy_Atlas_01_BC.png"
- }
- Video: 2268161672352, "Video::file41", "Clip" {
- Type: "Clip"
- Properties70: {
- P: "Path", "KString", "XRefUrl", "", "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Ivy_Tileable_01_BC.png"
- }
- UseMipMap: 0
- Filename: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Ivy_Tileable_01_BC.png"
- RelativeFilename: "..\..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Ivy_Tileable_01_BC.png"
- }
- Video: 2268161652352, "Video::file43", "Clip" {
- Type: "Clip"
- Properties70: {
- P: "Path", "KString", "XRefUrl", "", "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Ivy_Atlas_01_BC.png"
- }
- UseMipMap: 0
- Filename: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Ivy_Atlas_01_BC.png"
- RelativeFilename: "..\..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Ivy_Atlas_01_BC.png"
- }
- Texture: 2267913054560, "Texture::file40", "" {
- Type: "TextureVideoClip"
- Version: 202
- TextureName: "Texture::file40"
- Properties70: {
- P: "CurrentTextureBlendMode", "enum", "", "",0
- P: "UVSet", "KString", "", "", "UVmap_0"
- P: "UseMaterial", "bool", "", "",1
- }
- Media: "Video::file40"
- FileName: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Ivy_Tileable_01_BC.png"
- RelativeFilename: "..\..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Ivy_Tileable_01_BC.png"
- ModelUVTranslation: 0,0
- ModelUVScaling: 1,1
- Texture_Alpha_Source: "None"
- Cropping: 0,0,0,0
- }
- Texture: 2267913039680, "Texture::file42", "" {
- Type: "TextureVideoClip"
- Version: 202
- TextureName: "Texture::file42"
- Properties70: {
- P: "CurrentTextureBlendMode", "enum", "", "",0
- P: "UVSet", "KString", "", "", "UVmap_0"
- P: "UseMaterial", "bool", "", "",1
- }
- Media: "Video::file42"
- FileName: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Ivy_Atlas_01_BC.png"
- RelativeFilename: "..\..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Ivy_Atlas_01_BC.png"
- ModelUVTranslation: 0,0
- ModelUVScaling: 1,1
- Texture_Alpha_Source: "None"
- Cropping: 0,0,0,0
- }
- Texture: 2267913032000, "Texture::file41", "" {
- Type: "TextureVideoClip"
- Version: 202
- TextureName: "Texture::file41"
- Properties70: {
- P: "CurrentTextureBlendMode", "enum", "", "",0
- P: "UVSet", "KString", "", "", "UVmap_0"
- P: "UseMaterial", "bool", "", "",1
- }
- Media: "Video::file41"
- FileName: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Ivy_Tileable_01_BC.png"
- RelativeFilename: "..\..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Ivy_Tileable_01_BC.png"
- ModelUVTranslation: 0,0
- ModelUVScaling: 1,1
- Texture_Alpha_Source: "None"
- Cropping: 0,0,0,0
- }
- Texture: 2267913029600, "Texture::file43", "" {
- Type: "TextureVideoClip"
- Version: 202
- TextureName: "Texture::file43"
- Properties70: {
- P: "CurrentTextureBlendMode", "enum", "", "",0
- P: "UVSet", "KString", "", "", "UVmap_0"
- P: "UseMaterial", "bool", "", "",1
- }
- Media: "Video::file43"
- FileName: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Ivy_Atlas_01_BC.png"
- RelativeFilename: "..\..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Ivy_Atlas_01_BC.png"
- ModelUVTranslation: 0,0
- ModelUVScaling: 1,1
- Texture_Alpha_Source: "None"
- Cropping: 0,0,0,0
- }
- AnimationStack: 2268394785472, "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: 2272349539584, "AnimLayer::BaseLayer", "" {
- }
- }
- ; Object connections
- ;------------------------------------------------------------------
- Connections: {
-
- ;Model::SM_Ivy_Preset_05, Model::RootNode
- C: "OO",2268468968544,0
-
- ;AnimLayer::BaseLayer, AnimStack::Take 001
- C: "OO",2272349539584,2268394785472
-
- ;NodeAttribute::, Model::SM_Ivy_Preset_05
- C: "OO",2266388311232,2268468968544
-
- ;Model::LOD_Group_SM_Ivy_Preset_05, Model::SM_Ivy_Preset_05
- C: "OO",2268469003344,2268468968544
-
- ;NodeAttribute::, Model::LOD_Group_SM_Ivy_Preset_05
- C: "OO",2268467036304,2268469003344
-
- ;Model::SM_Ivy_Preset_05_LOD0, Model::LOD_Group_SM_Ivy_Preset_05
- C: "OO",2268468973184,2268469003344
-
- ;Model::SM_Ivy_Preset_05_LOD1, Model::LOD_Group_SM_Ivy_Preset_05
- C: "OO",2268469005664,2268469003344
-
- ;Model::SM_Ivy_Preset_05_LOD2, Model::LOD_Group_SM_Ivy_Preset_05
- C: "OO",2268469007984,2268469003344
-
- ;Texture::file40, Material::MI_Ivy_Tileable_01
- C: "OP",2267913054560,2267913041120, "DiffuseColor"
-
- ;Texture::file41, Material::MI_Ivy_Tileable_01
- C: "OP",2267913032000,2267913041120, "TransparentColor"
-
- ;Texture::file42, Material::MI_Ivy_Atlas_01
- C: "OP",2267913039680,2267913034880, "DiffuseColor"
-
- ;Texture::file43, Material::MI_Ivy_Atlas_01
- C: "OP",2267913029600,2267913034880, "TransparentColor"
-
- ;Video::file40, Texture::file40
- C: "OO",2268161659952,2267913054560
-
- ;Video::file42, Texture::file42
- C: "OO",2268161675952,2267913039680
-
- ;Video::file41, Texture::file41
- C: "OO",2268161672352,2267913032000
-
- ;Video::file43, Texture::file43
- C: "OO",2268161652352,2267913029600
-
- ;Geometry::, Model::SM_Ivy_Preset_05_LOD0
- C: "OO",2267733785248,2268468973184
-
- ;Material::MI_Ivy_Tileable_01, Model::SM_Ivy_Preset_05_LOD0
- C: "OO",2267913041120,2268468973184
-
- ;Material::MI_Ivy_Atlas_01, Model::SM_Ivy_Preset_05_LOD0
- C: "OO",2267913034880,2268468973184
-
- ;Geometry::, Model::SM_Ivy_Preset_05_LOD1
- C: "OO",2267733791904,2268469005664
-
- ;Material::MI_Ivy_Tileable_01, Model::SM_Ivy_Preset_05_LOD1
- C: "OO",2267913041120,2268469005664
-
- ;Material::MI_Ivy_Atlas_01, Model::SM_Ivy_Preset_05_LOD1
- C: "OO",2267913034880,2268469005664
-
- ;Geometry::, Model::SM_Ivy_Preset_05_LOD2
- C: "OO",2267733799072,2268469007984
-
- ;Material::MI_Ivy_Tileable_01, Model::SM_Ivy_Preset_05_LOD2
- C: "OO",2267913041120,2268469007984
- }
- ;Takes section
- ;----------------------------------------------------
- Takes: {
- Current: "Take 001"
- Take: "Take 001" {
- FileName: "Take_001.tak"
- LocalTime: 1539538600,46186158000
- ReferenceTime: 1539538600,46186158000
- }
- }
|